/*

	Media Query mixin

	See https://github.com/sass-mq/sass-mq/ for original full version.

	@example scss
	 .element {
	   @include mq($from: mobile) {
		 color: red;
	   }

	   @include mq($to: tablet) {
		 color: blue;
	   }

	   @include mq(mobile, tablet) {
		 color: green;
	   }

	   @include mq($from: tablet, $and: '(orientation: landscape)') {
		 color: teal;
	   }

	   @include mq(em(950px)) {
		 color: hotpink;
	   }

	   @include mq(em(950px), $media-feature: height) {
		 color: hotpink;
	   }

	   @include mq(tablet, $media-type: screen) {
		 color: hotpink;
	   }

	   // Advanced use:
	   $custom-breakpoints: (L: 900px, XL: 1200px);
	   @include mq(L, $bp: $custom-breakpoints) {
		 color: hotpink;
	   }
	 }

*/
/*

	Margin / Padding Quick Resets

	example: top & bottom margin set to $spacing-unit
	.element {
		@include push--ends;
	}

	example: left & right padding set to $spacing-unit--small
	.element {
		@include soft--sides($spacing-unit--small);
	}

*/
/*

	Helper mixins

*/
/*

	Form input placeholder text

	example:

	input,
	textarea {
		@include input-placeholder {
			color: $grey;
		}
	}

*/
/*

	Retina images

	example:

	.element {
		@include retina {
			background-image: url(../img/background@2x.png);
		}
	}

*/
/*

	Content margins

	fore removing first/last child margins

	example: default
	.element {
		@include content-margins;
	}

	output:
	.element > *:first-child {
		margin-top: 0;
	}
	.element > *:last-child {
		margin-bottom: 0;
	}

	example: empty selector
	.element {
		@include content-margins('false');
	}

	output:
	.element:first-child {
		margin-top: 0;
	}
	.element:last-child {
		margin-bottom: 0;
	}

*/
/*

	CSS Triangle

	used for creating CSS only triangles

	example:
	.element {

		&::before {
			@include css-triangle(blue, down);
		}
	}

*/
/*

	Hide text

	example:

	.element {
		@include hide-text;
	}

*/
/*

	Responsive ratio

	Used for creating scalable elements that maintain the same ratio

	example:
	.element {
		@include responsive-ratio(400, 300);
	}

*/
/*

	Typography

	Text image replacement, with responsive ratio

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	.element {
		@include typography(200, 50, 'hello-world');
	}


*/
/*

	Icon

	For using fontastic icons in pseudo elements

*/
/*

	Colours

	background, colour, etc. match up with colour map in _variables.scss

	modify to suit per project

*/
/*

	Fluid Property

	http://www.adrenalinmedia.com.au/the-agency/insights/this-changes-everything-css-fluid-properties.aspx

	HTML:

	<h1 class="element">
		<span>Text to replace</span>
	</h1>

	example:
	h1 {
		@include fp(font-size, 50, 100); // 50px at 320, 100px at 1920;
	}

	output:
	h1 {
		font-size: calc(3.125vw + 40px); //This is the magic!
	}

	@media (max-width:320px){ //Clips the start to the min value
		font-size:50px;
	}

	@media (min-width:1920px){ //Clips the end to the max value
		font-size:100px;
	}


*/
/*

	Misc

*/
/*

	Animation

*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Josefin+Slab:100,300,400,600,700);
.underline {
  text-decoration: underline; }

.grid.simple .grid-body h1, .grid.simple .grid-body h2, .grid.simple .grid-body h3, .grid.simple .grid-body h4, .grid.simple .grid-body h5, .grid.simple .grid-body h6 {
  color: #505458; }

.grid h3, #main-table .grid.simple .grid-body h3 {
  color: #505458;
  font-weight: 600; }

.grid h4 {
  font-weight: 600; }

.grid h5 {
  font-weight: 600; }

.grid.simple .grid-title.no-border {
  border-bottom: 1px solid #e9ecee; }

.grid.simple.vertical.blue .grid-title.no-border {
  border-bottom: none; }

#main-table .grid.simple .grid-body.no-border {
  padding-top: 10px; }

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
  color: #f35958; }

.a-link {
  color: #416af0; }
  .a-link:hover, .a-link:active, .a-link:focus {
    color: #708ff4;
    text-decoration: underline; }

.modal-wrap {
  position: absolute;
  width: 100vw;
  height: 100vh;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  display: table; }
  .modal-wrap .modal-dialog {
    display: table-cell;
    vertical-align: middle; }
    .modal-wrap .modal-dialog .modal-content {
      width: 500px;
      margin: 0 auto;
      border-radius: 3px; }

html .progress {
  height: 35px;
  overflow: visible; }
  html .progress .progress-bar {
    padding-top: 7px; }
    html .progress .progress-bar.active {
      animation: glowing 3000ms infinite;
      background: #416af0;
      z-index: 500; }

@keyframes glowing {
  0% {
    box-shadow: 0 0 2px #6851CB; }
  50% {
    box-shadow: 0 0 10px #6851CB; }
  100% {
    box-shadow: 0 0 2px #6851CB; } }

.modal-dialog.center .modal-content {
  border-radius: 3px; }

html .toast.toast-success {
  background: #2ed3b6; }

html .toast.toast-info {
  background: #416af0; }

html .toast.toast-warning {
  background: #FD9644; }

html .toast.toast-error {
  background: #f35958; }

.btn.inline-btn {
  margin-right: 0.2rem; }

.btn.abs-top-btn {
  min-width: 100px;
  position: absolute;
  z-index: 1000;
  right: 26px;
  top: 110px; }

.btn.nav-btn {
  border-radius: 5px;
  padding: 5px;
  margin: 1px;
  font-size: 13px; }
  .btn.nav-btn.nav-btn-primary {
    background-color: #416af0;
    color: #ffffff;
    border: #416af0; }
  .btn.nav-btn.nav-btn-secondary {
    background-color: #e9ecee !important;
    color: #7a7a7a !important;
    border: 1px #6f7b8a; }

.btn-group-centered {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center; }

html .btn.btn-secondary {
  background: #031b4e;
  color: #ffffff; }
  html .btn.btn-secondary:hover {
    background: #052c7f; }

/* CSS Document */
/*p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
command,
details,
figcaption,
figure,
footer,
header,
hgroup,
mark,
meter,
nav,
output,
progress,
section,
summary,
time,
textarea {
    margin: 0;
    padding: 0;
    border: 0 !important;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}*/
li {
  list-style: none; }

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent; }

.hide {
  display: none; }

a {
  color: #00b0da;
  text-decoration: none;
  transition: .3s;
  cursor: pointer; }

a:hover {
  text-decoration: underline; }

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

img {
  border: 0; }

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0; }

input:not(input[type="checkbox"]),
textarea {
  -webkit-appearance: none;
  outline: none;
  transition: .3s; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-moz-inner-spin-button,
input[type="number"]::-moz-outer-spin-button,
input[type="number"]::-inner-spin-button,
input[type="number"]::-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  display: none; }

input:focus {
  outline: none; }

.ng-invalid-required {
  box-shadow: none; }

::-ms-clear {
  display: none; }

::-moz-selection {
  background-color: transparent; }

textarea {
  overflow: auto; }

/* Icon */
/*.icon:before {*/
/*background-image: url(../images/icon.png);*/
/*background-repeat: no-repeat;*/
/*background-size: 200px 110px;*/
/*content: '';*/
/*display: block;*/
/*transition: .3s;*/
/*}*/
/* Clear Float */
.clearfix:before,
.clearfix:after {
  clear: both;
  content: '';
  display: table; }

.clear {
  clear: both; }

.btn-primary {
  background-color: #6fb71b;
  border-radius: 2px;
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 8px;
  line-height: 22px;
  text-align: center; }

.btn-primary:hover {
  background-color: #97d953;
  text-decoration: none; }

.btn-success {
  /*background-color: rgba(2,127,193,1) !important;*/
  border-radius: 2px;
  color: #fff;
  display: block;
  font-weight: bold;
  line-height: 22px;
  text-align: center; }

.btn-success:hover {
  background-color: #219cdd;
  text-decoration: none; }

.btn-login {
  padding: 0;
  width: 100%; }

/*.btn-default {
    border: #fff solid 1px !important;
    border-radius: 2px;
    color: #fff;
    display:  block;
    font-size: 8px;
    font-weight: bold;
    line-height: 22px;
    text-align: center;
    padding: 0;
}

.btn-default:hover {
    border-color: #ccc;
    text-decoration: none;
}*/
body {
  color: #666666;
  font-family: "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  margin: 0;
  overflow-x: hidden;
  padding: 0; }

input,
textarea {
  border-radius: 0;
  color: #666666;
  font-family: "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif;
  font-size: 12px; }

/* Placeholder For Input */
::-webkit-input-placeholder {
  color: #fff; }

::-moz-placeholder {
  color: #fff;
  opacity: 1; }

:-ms-input-placeholder {
  color: #fff; }

/* Radio */
input[type='radio'] {
  display: none; }

input[type='radio'] + .radio {
  background-color: white;
  border: #d2d2d2 solid 1px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  float: left;
  height: 12px;
  margin: 6px 8px 0 0;
  width: 12px; }

input[type='radio']:checked + .radio:before {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  content: '';
  display: block;
  height: 6px;
  margin: 2px;
  width: 6px; }

/* Table */
.data {
  overflow-y: hidden;
  margin: 0 12px;
  padding: 0 0 10px 0; }

.table {
  border-width: 0;
  border-collapse: collapse; }

.table tr th:first-child,
.table tr td:first-child {
  /*padding-left: 0;*/ }

.table tr th:last-child,
.table tr td:last-child {
  padding-right: 0; }

.table th.align-center,
.table td.align-center {
  text-align: center; }

.table th.align-right,
.table td.align-right {
  text-align: right; }

.table td a.name {
  font-weight: bold; }

.table .icon-edit:before {
  background-position: -150px 0;
  height: 12px;
  width: 12px; }

.table .icon-edit:hover:before {
  background-position: -150px -20px; }

.table .icon-delete:before {
  background-position: -170px 0;
  height: 12px;
  width: 12px; }

.table .icon-delete:hover:before {
  background-position: -170px -20px; }

/* Select */
.mad-selectbox {
  background-color: white;
  border: #d2d2d2 solid 1px;
  height: 28px;
  position: relative;
  transition: .3s;
  width: 100%; }

.mad-selectbox:focus {
  outline: none; }

.mad-selectbox:before {
  background-image: url(../images/icon.png);
  background-position: -380px 0;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 7px;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 11px; }

.mad-selectbox a.mad-selectbox-toggle {
  color: #666;
  display: block;
  font-size: 12px;
  line-height: 20px;
  padding: 3px 10px;
  position: absolute;
  left: 0;
  right: 0;
  text-decoration: none;
  z-index: 1; }

/* List */
.mad-selectbox ul {
  background-color: white;
  border: #d2d2d2 solid 1px;
  max-height: 362px;
  position: absolute;
  top: 24px;
  left: -1px;
  right: -1px;
  overflow: hidden;
  overflow-y: auto;
  z-index: 10; }

.mad-selectbox ul li {
  transition: .3s; }

.mad-selectbox ul li a {
  color: #666;
  display: block;
  font-size: 12px;
  line-height: 20px;
  padding: 3px 10px;
  text-decoration: none; }

.mad-selectbox ul li:hover {
  background-color: rgba(0, 0, 0, 0.15); }

.mad-selectbox ul li.active,
.mad-selectbox ul li.active:hover {
  background-color: rgba(0, 0, 0, 0.4); }

.mad-selectbox ul li.active a,
.mad-selectbox ul li.active:hover a {
  color: #fff;
  font-weight: bold; }

/* Pagination */
/*.pagination {
    padding-bottom: 10px;
}

.pagination ul {
    float: right;
    padding-right: 10px;
}

.pagination li {
    float: left;
}

.pagination li a {
    color: #666666;
    display: inline-block;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    padding: 0 3px;
    position: relative;
}

.pagination li a:hover {
    color: #008abf;
    text-decoration: none;
}

.pagination li.active a {
    color: #008abf;
    cursor: default;
    font-weight: bold;
}

.pagination li a.icon {
    padding: 0;
    width: 4px;
}

.pagination li .icon:before {
    height: 7px;
    margin-top: -3px;
    position: absolute;
    top: 50%;
    width: 4px;
}*/
/* Prev */
/*.pagination li .icon-prev {
    margin-right: 5px;
}

.pagination li .icon-prev:before {
    background-position: 0 -50px;
}

.pagination li .icon-prev:hover:before {
    background-position: 0 -60px;
}

.pagination li .icon-prev.disabled:before,
.pagination li .icon-prev.disabled:hover:before {
    background-position: 0 -40px;
    cursor: default;
}

 Next
.pagination li .icon-next {
    margin-left: 5px;
}

.pagination li .icon-next:before {
    background-position: -10px -50px;
}

.pagination li .icon-next:hover:before {
    background-position: -10px -60px;
}

.pagination li .icon-next.disabled:before,
.pagination li .icon-next.disabled:hover:before {
    background-position: -10px -40px;
    cursor: default;
}

.wrapper {
    overflow: hidden;
    position: relative;
}*/
/* Header */
header {
  padding: 8px 12px;
  position: relative; }

/* Logo */
header h1 {
  background-image: url(../images/logo.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 156px 27px;
  float: left;
  text-indent: -9999px; }

header h1 a {
  width: 156px;
  display: block;
  height: 27px; }

/* Sign Up */
header .btn-sign-up {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 56px;
  border: none;
  padding: 0 12px; }

/* Nav */
header nav li {
  padding-right: 24px; }

header nav a {
  color: #6e6e6e;
  font-size: 12px;
  font-weight: bold;
  line-height: 24px; }

header nav .active a,
header nav .active a:hover {
  color: #027fc1;
  text-decoration: none; }

/* Search Icon */
header .search-wrapper {
  float: right; }

header .search-wrapper .icon-toggle {
  float: left;
  height: 27px;
  margin-left: 4px;
  position: relative;
  width: 27px; }

header .search-wrapper .icon-toggle:before {
  background-position: -140px -75px;
  height: 8px;
  margin: -4px 0 0 -6px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px; }

header .search-wrapper .icon-toggle:hover:before {
  background-position: -140px -95px; }

header .search-wrapper .icon-search {
  float: left;
  height: 27px;
  margin-left: 4px;
  position: relative;
  width: 27px; }

header .search-wrapper .icon-search:before {
  background-position: -130px 0;
  height: 9px;
  margin: -5px 0 0 -5px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px; }

header .icon-search:hover:before {
  background-position: -130px -20px; }

header .search-wrapper input {
  background-color: white;
  border: #d2d2d2 solid 1px;
  display: none;
  float: left;
  height: 27px;
  padding: 3px 10px;
  width: 120px; }

header.search-on .search-wrapper input {
  display: block; }

.collapse {
  clear: both;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .3s;
  transition: height .3s;
  width: 100%; }

.collapse.in {
  height: auto;
  /*padding-top: 16px;*/
  overflow-y: auto; }

/* Right Menu */
header .right-menu {
  margin-top: 18px; }

header .right-menu > ul > li {
  float: left;
  position: relative; }

header .right-menu > ul > li:nth-child(3) {
  clear: left; }

header .right-menu a:hover {
  text-decoration: none; }

/* Menu */
header .right-menu li .icon-menu,
header .right-menu li .icon-open {
  color: #008abf;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
  margin-right: 20px;
  padding-left: 19px;
  position: relative; }

header .right-menu li .icon-menu:before {
  background-position: -20px -75px;
  height: 12px;
  margin-top: -6px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px; }

/* Hover */
header .right-menu li .icon-menu:hover {
  color: #6e6e6e; }

header .right-menu li .icon-menu:hover:before {
  background-position: -20px -95px; }

/* Menu Flyout */
header .flyout-menu {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(0, 0, 0, 0.5) 0 1px 5px;
  position: absolute;
  left: 0;
  z-index: 10;
  width: 150px; }

header .flyout-menu li {
  border-bottom: #d2d2d2 solid 1px;
  padding: 0 10px; }

header .flyout-menu li:last-child {
  border-bottom: 0; }

/* Hover */
header .flyout-menu li:hover {
  background-color: rgba(0, 0, 0, 0.05); }

header .flyout-menu li a {
  color: #027fc1;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 32px; }

/* Open */
header .right-menu li .icon-open:before {
  background-position: -50px -75px;
  height: 12px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px; }

/* Hover */
header .right-menu li .icon-open:hover {
  color: #6e6e6e; }

header .right-menu li .icon-open:hover:before {
  background-position: -50px -95px; }

/* Input Group */
header .input-group {
  float: left; }

header .input-group .mad-selectbox {
  border-right-width: 0;
  border-color: #d7d7d7;
  border-radius: 4px 0 0 4px;
  float: left;
  width: 100px; }

header .input-group .mad-selectbox a.mad-selectbox-toggle {
  color: #333;
  font-weight: bold; }

header .input-group .icon-infor {
  background-color: #027fc1;
  border-radius: 0 4px 4px 0;
  float: left;
  height: 28px;
  margin-right: 10px;
  position: relative;
  width: 24px; }

header .input-group .icon-infor:before {
  background-position: 0 -90px;
  height: 10px;
  margin: -5px 0 0 -2px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px; }

header .input-group .icon-infor:hover {
  background-color: #219cdd; }

form[name='loginForm'] .input-group {
  width: 100%; }

/* Button */
header .right-menu .btn-success {
  float: left;
  height: 28px;
  line-height: 28px;
  margin-right: 10px;
  width: 90px; }

header .right-menu .btn-primary {
  height: 28px;
  line-height: 28px;
  width: 51px; }

/* Flyout Version */
header .right-menu .flyout-version {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(0, 0, 0, 0.5) 0 1px 5px;
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 2;
  width: 320px; }

/* Header */
header .right-menu .flyout-version .header {
  border-bottom: #d2d2d2 solid 1px; }

header .right-menu .flyout-version .icon-delete {
  float: left;
  height: 20px;
  margin-top: 10px;
  margin-left: 10px;
  position: relative;
  width: 20px; }

header .right-menu .flyout-version .icon-delete:before {
  background-position: -80px -75px;
  height: 11px;
  margin: -5px 0 0 -5px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px; }

header .right-menu .flyout-version .icon-delete:hover:before {
  background-position: -80px -95px; }

header .right-menu .flyout-version .header ul {
  margin-left: 152px; }

header .right-menu .flyout-version .header li {
  color: #027fc1;
  float: left;
  font-size: 12px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  width: 61px; }

header .right-menu .flyout-version .header li:first-child {
  width: 84px; }

/* Body */
header .right-menu .flyout-version .body {
  padding: 5px 0 10px 0; }

header .right-menu .flyout-version .body li {
  color: #666666;
  float: left;
  font-size: 12px;
  line-height: 30px;
  padding-left: 10px;
  width: 70px; }

header .right-menu .flyout-version .body li:first-child {
  font-weight: bold;
  width: 180px; }

/* Main Container */
.main-conatiner {
  background-color: #f0eeee; }

/* Footer */
footer {
  background-color: #303030;
  background-color: #fffeff;
  position: relative;
  -moz-box-shadow: inset 0 1px 0 0 #ddd;
  -webkit-box-shadow: inset 0 1px 0 0 #ddd;
  box-shadow: inset 0 1px 0 0 #ddd; }

footer p {
  color: #333;
  font-size: 12px;
  line-height: 24px;
  padding-left: 12px;
  text-align: center; }

/* Footer List */
footer ul {
  text-align: center;
  margin-bottom: 0px; }

footer ul li {
  display: inline-block;
  margin-right: 9px;
  padding-left: 9px;
  position: relative; }

footer ul li:before {
  background-color: #848484;
  content: '';
  display: block;
  height: 14px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px; }

footer ul li:first-child:before {
  background-color: transparent; }

footer ul li a {
  color: #333;
  font-size: 12px;
  line-height: 24px; }

footer ul li a:hover,
footer ul li a:active,
footer ul li a.active {
  color: #666; }

/* Home */
.home {
  background-color: white; }

/* Form group */
.home .form-group {
  background-color: #3d3d3d;
  margin: 0 12px;
  position: relative; }

/* Video */
.home .form-group .video {
  height: 228px;
  width: 100%; }

.home .form-group .video-wrapper {
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 1; }

.home .form-group .video .cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.home .form-group .video .infor {
  position: absolute;
  bottom: 2px;
  right: 10px;
  z-index: 999; }

.home .form-group .video .infor p {
  color: #fff;
  float: left;
  font-size: 14px;
  line-height: 56px; }

.home .form-group .video .infor a {
  float: left;
  height: 56px;
  margin-left: 18px;
  position: relative;
  width: 56px; }

.home .form-group .video .infor a.icon-pause:before {
  background-position: -100px -80px;
  height: 10px;
  margin: -5px 0 0 -4px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px; }

.home .form-group .video .infor a.icon-play:before {
  background-position: -120px -80px;
  height: 10px;
  margin: -5px 0 0 -5px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px; }

/* Form **/
.home .form-group form {
  padding: 15px 12px 15px 12px;
  text-align: center; }

.home .form-group h2 {
  border-bottom: #5a5a5a solid 1px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 6px;
  text-align: left; }

.home .form-group .input-group {
  padding-bottom: 4px;
  text-align: left; }

.home .form-group label {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 22px;
  text-transform: uppercase; }

.home .form-group .input-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-width: 0;
  color: #fff;
  display: block;
  height: 30px;
  line-height: 18px;
  padding: 6px 12px;
  width: 100%; }

.home .form-group .input-control.error {
  background-color: #ffb2b2; }

/* Button Group */
.home .form-group .button-group {
  padding: 11px 0; }

.home .form-group .btn-success {
  height: 30px;
  line-height: 30px; }

.home .form-group .link {
  font-size: 12px;
  font-weight: bold;
  line-height: 20px; }

.home .form-group .sign-box {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px; }

/* List Group */
.home .list-group {
  padding: 20px 12px 20px 12px; }

.home .list-group li {
  padding-bottom: 20px;
  text-align: center; }

.home .list-group h3 {
  color: #027fc1;
  font-size: 16px;
  font-weight: 300;
  padding: 38px 0 8px 0;
  position: relative; }

/* Icon */
.home .list-group h3:before {
  position: absolute;
  left: 50%; }

.home .list-group .proprosal h3:before {
  background-position: 0 0;
  height: 31px;
  margin-left: -13px;
  top: 2px;
  width: 26px; }

.home .list-group .design h3:before {
  background-position: -40px 0;
  height: 32px;
  margin-left: -16px;
  top: 0;
  width: 32px; }

.home .list-group .collaborate h3:before {
  background-position: -80px 0;
  height: 30px;
  margin-left: -17px;
  top: 1px;
  width: 33px; }

.home .list-group p {
  font-size: 12px;
  line-height: 18px;
  padding-bottom: 4px;
  text-align: left; }

.home .list-group a {
  font-size: 12px;
  font-weight: bold; }

/* Well */
.home .well {
  background-color: #027fc1 !important;
  padding: 10px 0 30px 0;
  text-align: center; }

.home .well h2 {
  color: #fff;
  font-size: 23px;
  font-weight: 300;
  line-height: 61px; }

/* Button Group */
.home .well .button-group {
  text-align: center; }

.home .well .button-group .btn {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  height: 24px;
  line-height: 23px;
  margin: 0 4px;
  width: 106px; }

.home .well .button-group .btn-primary {
  border: #fff solid 1px !important;
  padding: 0; }

.home .well .button-group .btn-default {
  background-color: #027fc1 !important;
  border: #fff solid 1px !important;
  border-radius: 2px;
  color: #fff;
  font-size: 8px;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
  padding: 0; }

.home .well .button-group .btn-default:hover {
  border-color: #ccc;
  text-decoration: none; }

.home .well .button-group .btn-default:hover {
  color: #fff; }

/* Link Box */
.link-box {
  background-color: #464646;
  padding: 12px 12px 12px 12px; }

.link-box .columns {
  float: left;
  width: 50%; }

.link-box h3 {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  padding: 5px 0; }

.link-box a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 18px; }

/* Manage */
.date-group {
  padding: 0 12px 20px 12px; }

/* Header */
.data-header {
  border-bottom: #d2d2d2 solid 1px;
  padding-top: 14px;
  position: relative; }

.data-header h2 {
  color: #008abf;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px; }

.data-header h2 a {
  color: #008abf;
  display: block;
  font-weight: 300;
  padding-left: 24px;
  position: relative;
  text-decoration: none; }

.data-header h2 a:before {
  background-position: -60px -40px;
  height: 14px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  left: 1px;
  width: 14px; }

.data-header h2 a:hover {
  opacity: .6; }

/* Tabs */
.data-header .tabs li {
  padding: 0 6px;
  margin-right: 4px;
  position: relative; }

.details-page .data-header .tabs li {
  float: left;
  margin-right: 20px; }

.data-header .tabs li a {
  color: #6e6e6e;
  font-size: 14px;
  line-height: 37px; }

.data-header .tabs li.active:before {
  background-color: #008abf;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 100%; }

/* New Project */
.data-header .tabs li.link-new-project.active:before {
  background-color: #6fb71b; }

.data-header .tabs li.link-new-project a,
.data-header .tabs li.link-new-project.active a {
  color: #6fb71b;
  font-weight: bold; }

.data-header .tabs li a:hover {
  opacity: .6;
  text-decoration: none; }

.data-header .tabs li.active a {
  color: #008abf;
  cursor: default;
  opacity: 1; }

/* Body */
.data-body {
  background-color: white;
  margin-top: 12px;
  width: 100%; }

.data-body .action {
  text-align: center;
  vertical-align: middle; }

.table .role {
  display: block; }

.table .icon {
  display: inline-block; }

.table .icon-delete {
  margin: 0 10px 0 20px; }

.table .col-1 {
  width: 26.02%; }

.table .col-2 {
  width: 26.62%; }

.table .col-3 {
  width: 16.46%; }

.table .col-4 {
  width: 18.68%; }

.table .col-5 {
  width: 12.22%; }

/* Create Well */
.well-create {
  background-color: white;
  display: none;
  margin-top: 10px;
  padding: 12px 12px 0 12px; }

.well-create.on {
  display: block; }

.well-create .form {
  padding-bottom: 3px; }

.well-create .input-group {
  padding-bottom: 6px; }

/* Small Column */
.well-create .column-sm {
  float: left;
  padding-right: 10px;
  width: 50%; }

.well-create .column-sm.last {
  padding-left: 10px;
  padding-right: 0; }

.well-create label {
  color: #333333;
  display: block;
  font-size: 12px;
  line-height: 22px; }

.well-create input[type='text'],
.well-create textarea {
  background-color: white;
  border: #d2d2d2 solid 1px;
  padding: 3px 10px;
  width: 100%; }

.well-create input[type='text'] {
  height: 28px;
  line-height: 20px; }

.well-create .input-group {
  width: 100%; }

.well-create textarea {
  height: 120px;
  line-height: 18px;
  resize: none; }

.well-create input[type='text'].error,
.well-create textarea.error,
.well-create .error .mad-selectbox {
  background-color: #ffbebe;
  border: #ff0000 solid 1px; }

/* Button Group */
.well-create .button-group {
  border-top: #d2d2d2 solid 1px;
  padding: 10px 0; }

.well-create .button-group .btn {
  float: right;
  line-height: 28px;
  width: 68px;
  padding: 0;
  border: none; }

.well-create .button-group .link {
  float: right;
  font-size: 12px;
  font-weight: bold;
  line-height: 28px;
  margin-right: 20px; }

/* Panel For Filter */
.mask {
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .3s;
  transition: opacity .3s; }

.mask.active {
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1; }

.filter-panel {
  background-color: #027fc1;
  padding-top: 4px;
  padding-left: 12px;
  position: absolute;
  top: 0;
  right: -260px;
  bottom: 0;
  width: 260px;
  -webkit-transition: right .3s;
  /* Safari */
  transition: right .3s;
  z-index: 99; }

.filter-panel.active {
  right: 0; }

.filter-panel h2 {
  border-bottom: #3599cd solid 1px;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  line-height: 33px;
  padding-left: 23px;
  position: relative; }

.filter-panel h2:before {
  background-position: -20px -40px;
  height: 14px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px; }

/* Form */
.filter-panel .form {
  padding: 9px 0 0 0; }

.filter-panel .input-group {
  margin-right: 10px;
  padding-bottom: 9px; }

.filter-panel .data-control {
  float: left;
  padding-right: 10px;
  position: relative;
  width: 50%; }

.filter-panel .data-control.last {
  padding-left: 10px;
  padding-right: 0; }

.filter-panel label {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 24px;
  text-transform: uppercase; }

.filter-panel input {
  background-color: rgba(255, 255, 255, 0.15);
  border: 0;
  color: #fff;
  display: block;
  font-size: 14px;
  height: 24px;
  line-height: 18px;
  padding: 3px 10px;
  width: 100%; }

.filter-panel input.hasDatepicker {
  background-image: url(../images/data-picker.png);
  background-size: 14px 10px;
  background-position: right 8px;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: 0s; }

/* Button Group */
.filter-panel .button-group {
  border-top: #3599cd solid 1px;
  margin-top: 5px;
  padding: 15px 10px 0 0;
  position: relative; }

.customers .filter-panel .button-group {
  margin-top: 8px; }

.filter-panel .button-group .icon-reset {
  color: #fff;
  float: left;
  font-size: 12px;
  font-weight: bold;
  line-height: 24px;
  padding-left: 15px;
  position: relative;
  text-decoration: none; }

.filter-panel .button-group .icon-reset:before {
  background-position: -40px -40px;
  height: 10px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px; }

.filter-panel .button-group .icon-reset:hover {
  opacity: .6; }

.filter-panel .button-group .btn-default {
  float: right;
  height: 24px;
  line-height: 24px;
  width: 68px; }

/* Auto Complete */
.filter-panel .location-control {
  background-color: rgba(255, 255, 255, 0.15);
  cursor: text;
  position: relative;
  min-height: 24px; }

.filter-panel .location-control input {
  background-color: transparent;
  float: left;
  min-width: 40px; }

.filter-panel .location-control .location-selected {
  background-color: white;
  border-radius: 2px;
  color: #027fc1;
  cursor: pointer;
  float: left;
  font-size: 12px;
  line-height: 18px;
  margin: 3px 0 0 3px;
  padding: 0 13px 0 4px;
  position: relative; }

.filter-panel .location-control .location-selected:before {
  background-position: -190px -10px;
  height: 5px;
  position: absolute;
  top: 6px;
  right: 3px;
  width: 5px; }

.filter-panel .location-control .location-selected:hover:before {
  background-position: -190px -20px; }

/* List */
.filter-panel .ui-autocomplete {
  background-color: white;
  padding-top: 4px;
  position: absolute;
  left: 10px;
  right: 10px;
  z-index: 10; }

.filter-panel .ui-autocomplete li {
  color: #000000;
  cursor: pointer;
  font-size: 12px;
  line-height: 24px;
  padding: 0 10px; }

.filter-panel .ui-autocomplete li:hover {
  background-color: #e5e5e5; }

.filter-panel .ui-autocomplete li .highlighted {
  color: #027fc1;
  font-weight: bold; }

/* Adv-Filter */
.well-adv-filter {
  padding-top: 8px; }

.well-adv-filter .columns {
  float: left;
  width: 50%; }

.well-adv-filter .header {
  color: #333333;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase; }

.well-adv-filter .selected-item {
  background-color: white;
  border: #d4d4d4 solid 1px;
  border-radius: 2px;
  color: #027fc1;
  cursor: pointer;
  clear: both;
  float: left;
  font-size: 12px;
  height: 24px;
  line-height: 25px;
  margin-top: 3px;
  padding: 0 14px 0 5px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.well-adv-filter .selected-item:before {
  background-position: -190px -10px;
  height: 5px;
  position: absolute;
  top: 10px;
  right: 3px;
  width: 5px; }

.well-adv-filter .selected-item:hover:before {
  background-position: -190px -20px; }

/* Customers */
.customers .table .col-1 {
  width: 23.38%; }

.customers .table .col-2 {
  width: 22.96%; }

.customers .table .col-3 {
  width: 25.6%; }

.customers .table .col-4 {
  width: 9.6%; }

.customers .table .col-5 {
  width: 18.46%; }

/* Date Picker */
.ui-datepicker {
  background-color: white;
  display: none;
  width: 12em; }

.ui-datepicker .ui-datepicker-header {
  padding: 5px 0;
  position: relative; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  cursor: pointer;
  display: block;
  height: 14px;
  position: absolute;
  top: 5px;
  text-indent: -9999px;
  width: 15px; }

.ui-datepicker .ui-datepicker-prev {
  left: 0; }

.ui-datepicker .ui-datepicker-next {
  right: 0; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: none; }

.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  background-image: url(../images/icon.png);
  background-repeat: no-repeat;
  background-size: 200px 110px;
  content: '';
  display: block;
  margin: 3px 0 0 5px;
  height: 7px;
  transition: .3s;
  width: 4px; }

.ui-datepicker .ui-datepicker-prev:before {
  background-position: 0 -50px; }

.ui-datepicker .ui-datepicker-next:before {
  background-position: -10px -50px; }

.ui-datepicker .ui-datepicker-prev:hover:before {
  background-position: 0 -60px; }

.ui-datepicker .ui-datepicker-next:hover:before {
  background-position: -10px -60px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 15px;
  font-size: 14px;
  line-height: 14px;
  text-align: center; }

.ui-datepicker table {
  border: 0;
  border-collapse: collapse;
  font-size: 12px;
  width: 100%; }

.ui-datepicker th {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: bold;
  padding: 5px 2px;
  text-align: center; }

.ui-datepicker td {
  border: #d2d2d2 solid 1px;
  padding: 1px; }

.ui-datepicker td span,
.ui-datepicker td a {
  color: #666;
  display: block;
  padding: 2px;
  text-align: right;
  text-decoration: none; }

.ui-datepicker td:hover {
  background-color: rgba(0, 0, 0, 0.1); }

/* Today */
.ui-datepicker td.ui-datepicker-today {
  background-color: rgba(0, 0, 0, 0.3); }

.ui-datepicker td.ui-datepicker-today a {
  color: #fff;
  font-weight: bold; }

/* Current Day */
.ui-datepicker td.ui-datepicker-current-day {
  background-color: #027fc1; }

.ui-datepicker td.ui-datepicker-current-day a {
  color: #fff; }

/* Range */
.range-wrapper {
  position: relative; }

/* Scale */
.range-wrapper .ngrs-scale i {
  color: #fff;
  float: left;
  font-size: 12px;
  font-style: normal;
  line-height: 21px;
  padding-top: 6px;
  text-align: center;
  width: 33%; }

.range-wrapper .ngrs-scale i:first-child {
  text-align: left; }

.range-wrapper .ngrs-scale i:last-child {
  text-align: right; }

.ngrs-range-slider .ngrs-runner {
  background-color: #2892ca;
  height: 4px;
  margin: 10px 9px 0 9px;
  position: relative; }

.ngrs-range-slider .ngrs-runner:before {
  background-color: #2892ca;
  content: '';
  display: block;
  height: 4px;
  position: absolute;
  left: -5px;
  width: 5px; }

.ngrs-range-slider .ngrs-runner:after {
  background-color: #2892ca;
  content: '';
  display: block;
  height: 4px;
  position: absolute;
  right: -5px;
  width: 5px; }

.ngrs-range-slider .ngrs-handle {
  background-color: #027fc1;
  border-radius: 50%;
  border: white solid 2px;
  height: 16px;
  width: 16px;
  cursor: pointer;
  margin: -5px 0 0 -5px;
  position: absolute;
  z-index: 2; }

.ngrs-range-slider .ngrs-tracker {
  background-color: white;
  border-radius: 50%;
  border: #373737 solid 4px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin: -2px 0 0 -10px;
  width: 20px;
  z-index: 1; }

.ngrs-range-slider .ngrs-value-runner {
  display: none; }

/* Project Details */
.details-container {
  background-color: transparent;
  margin-top: 16px;
  padding: 0;
  position: relative; }

.details-container aside {
  background-color: #027fc1; }

.details-container aside img {
  display: block;
  width: 100%; }

/* Panel */
.details-container aside .panel {
  border-bottom: #3599cd solid 1px;
  padding: 12px 0;
  margin: 0 12px; }

.details-container aside h3 {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
  padding-top: 1px; }

.details-container aside h4 {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px; }

.details-container aside p {
  color: #fff;
  font-size: 12px;
  line-height: 16px; }

.details-container aside ul {
  padding-top: 3px; }

.details-container aside li {
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 16px; }

.details-container aside li strong {
  font-weight: bold; }

/* Button Group */
.details-container aside .button-group {
  padding: 20px 0; }

.details-container aside .btn-default {
  height: 28px;
  line-height: 26px;
  margin: 0 auto;
  width: 86px; }

/* Container */
.details-container .container {
  background-color: white;
  padding: 4px 0 12px 0;
  min-height: 100%; }

.details-container .container h3 {
  border-bottom: #d2d2d2 solid 1px;
  color: #027fc1;
  font-size: 18px;
  font-weight: 300;
  line-height: 40px;
  margin: 0 12px;
  padding-left: 25px;
  position: relative; }

.details-container .container h3:before {
  background-position: -60px -60px;
  height: 14px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px; }

/* Panel */
.details-container .container .panel {
  border-bottom: #d2d2d2 solid 1px;
  margin: 0 10px; }

.details-container .container .panel-header {
  cursor: pointer;
  position: relative;
  padding: 0 10px; }

.details-container .container .panel-body {
  display: none;
  padding-bottom: 5px; }

.details-container .container .panel-body > div {
  border-top: #d2d2d2 solid 1px; }

.details-container .container h4 {
  color: #00b0da;
  font-size: 12px;
  font-weight: bold;
  line-height: 32px; }

.details-container .container .infor {
  color: #666666;
  font-size: 12px;
  line-height: 32px;
  position: absolute;
  top: 0;
  right: 64px; }

/* Icon */
.details-container .container .icon-arrow {
  display: block;
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px; }

.details-container .container .icon-arrow:before {
  background-position: -80px -50px;
  height: 4px;
  margin: 14px 0 0 11px;
  width: 7px; }

.details-container .container .panel-header:hover .icon-arrow:before {
  background-position: -80px -70px; }

/* Section */
.details-container .container section {
  border-top: #d2d2d2 solid 1px; }

.details-container .container .columns {
  padding: 5px 10px 5px 10px; }

.details-container .container dt,
.details-container .container dd {
  color: #666666;
  font-size: 12px;
  min-height: 24px;
  line-height: 24px; }

.details-container .container dt {
  float: left;
  font-weight: bold;
  width: 120px; }

.details-container .container .columns-max dt {
  width: 180px; }

.details-container .container h5 {
  color: #027fc1;
  font-size: 12px;
  font-weight: bold;
  line-height: 24px; }

/* Expand */
.details-container .container .on .panel-header {
  background-color: #f6f5f5; }

.details-container .container .on .icon-arrow:before {
  background-position: -80px -40px; }

.details-container .container .on .panel-header:hover .icon-arrow:before {
  background-position: -80px -60px; }

.details-container .container .on .panel-body {
  display: block; }

/* Button Group */
.details-container .container .button-group {
  padding: 10px 0; }

.details-container .container .button-group .btn {
  float: right;
  line-height: 28px;
  width: 68px;
  margin-right: 10px; }

/* Content */
.details-container .container .content {
  margin: 5px 12px;
  font-size: 12px; }

.details-container .container .content p {
  margin-bottom: 10px;
  text-align: justify; }

/* Map */
.map {
  display: block;
  position: relative; }

.map img {
  display: block;
  width: 100%; }

.map .mapWrap {
  position: relative;
  z-index: 1; }

/* Panel For Map */
.panel-map {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(0, 0, 0, 0.5) 1px 0 5px;
  z-index: 2; }

.panel-map .tabs {
  padding: 10px 0 0 0; }

.panel-map .tabs > ul {
  border-bottom: #d2d2d2 solid 1px; }

.panel-map .tabs > ul > li,
.panel-map .sub-tabs > ul > li {
  float: left;
  position: relative;
  text-align: center;
  width: 33.3333%; }

.panel-map .tabs > ul > li {
  width: 32.5%; }

.panel-map .tabs > ul > li a {
  color: #6e6e6e;
  display: inline-block;
  line-height: 30px;
  padding: 10px 5px 0 5px;
  position: relative;
  font-size: 12px; }

.panel-map .tabs > ul > li a:before {
  position: absolute;
  top: 0;
  left: 50%; }

.panel-map .tabs > ul > li a:after {
  content: '';
  display: block;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px; }

.panel-map .tabs > ul > li a.project-infor:before {
  background-position: -100px -40px;
  height: 13px;
  margin-left: -6px;
  width: 11px; }

.panel-map .tabs > ul > li a.outline:before {
  background-position: -120px -40px;
  height: 13px;
  margin-left: -7px;
  width: 13px; }

.panel-map .tabs > ul > li a.technical-infor:before {
  background-position: -140px -40px;
  height: 13px;
  margin-left: -7px;
  top: 1px;
  width: 13px; }

/* Hover */
.panel-map .tabs > ul > li a:hover,
.panel-map .tabs > ul > li.active a {
  color: #008abf;
  text-decoration: none; }

.panel-map .tabs > ul > li a.project-infor:hover:before,
.panel-map .tabs li.active a.project-infor:before {
  background-position: -100px -60px; }

.panel-map .tabs > ul > li a.outline:hover:before,
.panel-map .tabs > ul > li.active a.outline:before {
  background-position: -120px -60px; }

.panel-map .tabs > ul > li a.technical-infor:hover:before,
.panel-map .tabs > ul > li.active a.technical-infor:before {
  background-position: -140px -60px; }

/* Active */
.panel-map .tabs > ul > li.active a:after {
  color: #008abf;
  background-color: #008abf; }

/* Tab Container */
.panel-map .tab-container {
  display: none; }

.panel-map .tab-container.project {
  /*padding: 0 12px;*/ }

.panel-map .tab-container .input-group {
  padding-top: 5px; }

.panel-map .tab-container label {
  color: #9B9B9Bl;
  display: block;
  font-size: 12px;
  /*line-height: 24px;*/ }

.panel-map .tab-container input,
.panel-map .tab-container textarea {
  background-color: white;
  border: #d2d2d2 solid 1px;
  color: #606060;
  font-size: 12px;
  height: 28px;
  line-height: 20px;
  padding: 3px 10px;
  width: 100%; }

.panel-map .tab-container textarea {
  resize: none; }

.panel-map .tab-container textarea.address {
  height: 50px; }

.panel-map .tab-container textarea.descr {
  height: 90px; }

/* Button Group */
.panel-map .tab-container .button-group {
  padding: 10px 12px; }

.panel-map .tab-container.project .button-group {
  padding: 16px 0 20px 0; }

.panel-map .tab-container .button-group .btn-success {
  float: right;
  font-size: 12px;
  height: 28px;
  line-height: 28px;
  opacity: .5;
  width: 78px;
  -webkit-user-select: none; }

/* On State */
.panel-map .tab-container.active {
  display: block; }

/* Sub Tabs */
.panel-map .sub-tabs {
  margin-top: 6px; }

.panel-map .sub-tabs > ul > li {
  background-color: #027fc1;
  padding-top: 8px; }

.panel-map .sub-tabs li a {
  color: #fff;
  display: block;
  font-size: 11px;
  line-height: 18px;
  padding-top: 16px;
  position: relative; }

.panel-map .sub-tabs li a:hover {
  opacity: .6;
  text-decoration: none; }

.panel-map .sub-tabs li.active {
  background-color: #005f91; }

.panel-map .sub-tabs li.active a:hover {
  opacity: 1; }

/* Icon */
.panel-map .sub-tabs li a:before {
  position: absolute;
  top: 0;
  left: 50%; }

.panel-map .sub-tabs li a.line:before {
  background-position: -160px -40px;
  margin-left: -8px;
  height: 10px;
  top: 2px;
  width: 15px; }

.panel-map .sub-tabs li a.rectangle:before {
  background-position: -160px -60px;
  margin-left: -9px;
  height: 10px;
  top: 1px;
  width: 18px; }

.panel-map .sub-tabs li a.ellipse:before {
  background-position: -180px -40px;
  margin-left: -10px;
  height: 13px;
  width: 20px; }

/* Sub Tabs Container */
.panel-map .sub-tab-container {
  padding-top: 12px; }

.panel-map .sub-tab-container > .sub-tab {
  position: relative;
  z-index: 2; }

.panel-map .sub-tab-container > .button-group {
  position: relative;
  z-index: 1; }

.panel-map .sub-tab-container p {
  color: #666;
  font-size: 12px;
  line-height: 16px;
  padding: 0 10px; }

.panel-map .sub-tab-container .button-group {
  padding: 0 12px;
  padding-bottom: 15px; }

/* Accordion */
.panel-map .tab-container .accordion {
  border-bottom: #d2d2d2 solid 1px; }

/* Header */
.panel-map .tab-container .accordion-header {
  cursor: pointer;
  padding: 0 12px;
  position: relative; }

.panel-map .tab-container .accordion-header h3 {
  color: #027fc1;
  font-size: 12px;
  font-weight: bold;
  line-height: 32px; }

.panel-map .tab-container .expand .accordion-header h3 {
  padding-top: 5px;
  line-height: 23px; }

/* Arrow */
.panel-map .tab-container .icon-arrow {
  display: block;
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
  width: 32px; }

.panel-map .tab-container .icon-arrow:before {
  background-position: 0 -80px;
  height: 4px;
  margin: 15px 0 0 12px;
  width: 6px; }

.panel-map .tab-container .expand .icon-arrow:before {
  background-position: 0 -70px; }

/* Body */
.panel-map .tab-container .accordion-body {
  display: none;
  padding-bottom: 12px; }

.panel-map .tab-container .expand .accordion-body {
  display: block; }

.panel-map .tab-container .accordion .input-group {
  padding: 0 15px 5px 15px; }

.panel-map .tab-container .columns {
  float: left;
  width: 45%; }

.panel-map .tab-container .columns.last {
  float: right; }

.panel-map .tab-container .thur {
  color: #333333;
  float: left;
  font-size: 12px;
  line-height: 28px;
  padding-top: 24px;
  text-align: center;
  width: 10%; }

/* Dropdown */
.panel-map .accordion .mad-selectbox {
  height: 28px; }

.panel-map .accordion .mad-selectbox:before {
  top: 11px; }

.panel-map .accordion .mad-selectbox a.mad-selectbox-toggle {
  font-size: 12px;
  padding: 3px 10px; }

.panel-map .accordion .mad-selectbox ul {
  top: 30px; }

.panel-map .accordion .mad-selectbox ul li a {
  font-size: 14px;
  padding: 3px 10px;
  text-decoration: none; }

/* Radio */
.panel-map .checkbox-group {
  padding: 10px 15px 0 15px; }

/* select */
.selWrap .selEl {
  position: relative;
  background-color: #FFF;
  border: #D2D2D2 solid 1px;
  height: 32px;
  position: relative;
  transition: .3s;
  width: 100%; }

.selWrap .selEl.open {
  z-index: 11; }

.selWrap .val {
  color: #666;
  display: block;
  font-size: 14px;
  line-height: 32px;
  padding: 0px 10px;
  text-decoration: none;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  -webkit-user-select: none; }

.selWrap .val:before {
  background-image: url(../images/icon.png);
  background-position: -380px 0;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 7px;
  position: absolute;
  top: 12px;
  right: 10px;
  width: 11px; }

.selWrap .optionList {
  background-color: #FFF;
  border: #D2D2D2 solid 1px;
  max-height: 362px;
  position: absolute;
  top: 30px;
  left: -1px;
  right: -1px;
  overflow: hidden;
  overflow-y: auto;
  z-index: 10;
  display: none; }

.selWrap .open .optionList {
  display: block;
  z-index: 11; }

.selWrap .optionList li {
  -webkit-transition-duration: 0.25s;
  border-top: #D2D2D2 solid 1px; }

.selWrap .optionList li:first-child {
  border-top: none; }

.selWrap .optionList li:hover {
  background-color: rgba(0, 0, 0, 0.15); }

.selWrap .optionList .option {
  color: #666;
  display: block;
  font-size: 14px;
  line-height: 22px;
  padding: 3px 10px;
  text-decoration: none; }

/* shapeList */
.shapeList {
  display: block;
  max-height: 276px;
  min-height: 168px;
  overflow: auto;
  border-bottom: 1px solid #D2D2D2;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px; }

.panel-map .shapeList > li {
  background-color: transparent;
  border-bottom: 1px solid #d2d2d2;
  padding: 0; }

.panel-map .shapeList > li:last-child {
  border-bottom: none; }

.shapeList .shapeWrap {
  min-height: 83px;
  padding: 25px 20px 0; }

.shapeList .selWrap {
  display: block;
  margin-left: 52px;
  margin-right: 52px; }

.shapeList .objectColor {
  display: inline-block;
  height: 32px;
  width: 40px;
  float: right;
  margin-top: -32px; }

.shapeList .lnkDel {
  display: inline-block;
  float: left;
  background: url(../images/icon-close.png) 50% 50% no-repeat;
  background-size: 12px;
  height: 32px;
  width: 20px; }

.shapeList .moreDetails {
  overflow: hidden;
  margin-left: 52px;
  padding-top: 10px;
  padding-bottom: 20px; }

.shapeList .gr {
  width: 40%; }

.shapeList .gr.lt {
  float: left; }

.shapeList .gr.rt {
  float: right; }

.shapeList .gr small {
  font-size: 12px;
  color: #666; }

.shapeList .gr .lbl {
  line-height: 24px; }

/* !end mobi */
@media (min-width: 768px) {
  .ui-bootstrap-container {
    margin: 0 auto;
    width: 738px; }
  /* Icon */
  .icon:before {
    background-size: 400px 220px; }
  /* Clear Float */
  .btn-primary {
    border-radius: 5px;
    font-size: 16px;
    line-height: 38px; }
  .btn-success {
    border-radius: 5px;
    font-size: 16px;
    line-height: 43px; }
  .btn-default {
    border-radius: 5px;
    font-size: 16px;
    line-height: 43px; }
  input,
  textarea {
    font-size: 16px; }
  /* Radio */
  input[type='radio'] + .radio {
    height: 18px;
    margin: 6px 8px 0 0;
    width: 18px; }
  input[type='radio']:checked + .radio:before {
    height: 10px;
    margin: 3px;
    width: 10px; }
  /* Table */
  .data {
    margin: 0;
    padding: 0 0 20px 0; }
  .table th {
    font-size: 16px;
    height: 51px;
    padding-top: 1px; }
  .table td {
    font-size: 14px;
    line-height: 18px;
    padding: 16px 0; }
  .table .icon-edit:before {
    background-position: -300px 0;
    height: 24px;
    width: 23px; }
  .table .icon-edit:hover:before {
    background-position: -300px -40px; }
  .table .icon-delete:before {
    background-position: -340px 0;
    height: 24px;
    width: 23px; }
  .table .icon-delete:hover:before {
    background-position: -340px -40px; }
  /* Select */
  .mad-selectbox {
    height: 38px; }
  .mad-selectbox:before {
    height: 7px;
    top: 15px;
    right: 10px;
    width: 11px; }
  .mad-selectbox a.mad-selectbox-toggle {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 10px; }
  /* List */
  .mad-selectbox ul {
    top: 36px; }
  .mad-selectbox ul li a {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 10px; }
  /*     Pagination
        .pagination {
            padding-bottom: 20px;
        }

        .pagination li a {
            font-size: 14px;
            height: 20px;
            line-height: 20px;
            padding: 0 5px;
        }

        .pagination li a.icon {
            padding: 0;
            width: 8px;
        }

        .pagination li .icon:before {
            height: 14px;
            margin-top: -7px;
            width: 8px;
        }

         Prev
        .pagination li .icon-prev {
            margin-right: 11px;
        }

        .pagination li .icon-prev:before {
            background-position: 0 -100px;
        }

        .pagination li .icon-prev:hover:before {
            background-position: 0 -120px;
        }

        .pagination li .icon-prev.disabled:before,
        .pagination li .icon-prev.disabled:hover:before {
            background-position: 0 -80px;
        }

         Next
        .pagination li .icon-next {
            margin-left: 11px;
        }

        .pagination li .icon-next:before {
            background-position: -20px -100px;
        }

        .pagination li .icon-next:hover:before {
            background-position: -20px -120px;
        }

        .pagination li .icon-next.disabled:before,
        .pagination li .icon-next.disabled:hover:before {
            background-position: -20px -80px;
        }*/
  /* Header */
  header {
    padding: 15px 0; }
  /* Logo */
  header h1 {
    background-size: 312px 53px; }
  header h1 a {
    width: 312px;
    display: block;
    height: 53px; }
  /* Search */
  header .search-wrapper {
    margin-top: 10px; }
  header .search-wrapper .icon-toggle {
    height: 32px;
    margin-left: 12px;
    width: 32px; }
  header .search-wrapper .icon-toggle:before {
    background-position: -280px -150px;
    height: 16px;
    margin: -8px 0 0 -12px;
    width: 24px; }
  header .search-wrapper .icon-toggle:hover:before {
    background-position: -280px -190px; }
  header .search-wrapper .icon-search {
    height: 32px;
    margin-left: 12px;
    width: 32px; }
  header .search-wrapper .icon-search:before {
    background-position: -260px 0;
    height: 18px;
    margin: -9px 0 0 -3px;
    width: 20px; }
  header .icon-search:hover:before {
    background-position: -260px -40px; }
  header .search-wrapper input {
    height: 32px;
    width: 240px; }
  header .icon-search {
    height: 32px;
    width: 32px; }
  header .icon-search:before {
    margin: 8px 0 0 7px; }
  /* Sign Up */
  header .btn-sign-up {
    top: 27px;
    right: 0;
    width: 112px; }
  header nav li {
    float: left;
    padding: 0 36px 0 0; }
  header nav a {
    font-size: 16px;
    line-height: 43px; }
  /* Right Menu */
  header .right-menu > ul > li:nth-child(3) {
    clear: none; }
  /* Menu */
  header .right-menu li .icon-menu,
  header .right-menu li .icon-open {
    font-size: 16px;
    line-height: 38px;
    margin-right: 22px;
    padding-left: 38px; }
  header .right-menu li .icon-menu:before {
    background-position: -40px -150px;
    height: 23px;
    margin-top: -12px;
    width: 28px; }
  /* Hover */
  header .right-menu li .icon-menu:hover:before {
    background-position: -40px -190px; }
  /* Menu Flyout */
  header .flyout-menu {
    width: 188px; }
  header .flyout-menu li {
    padding: 0 20px; }
  /* Hover */
  header .flyout-menu li a {
    font-size: 14px;
    line-height: 40px; }
  /* Open */
  header .right-menu li .icon-open:before {
    background-position: -100px -150px;
    height: 23px;
    margin-top: -14px;
    width: 28px; }
  /* Hover */
  header .right-menu li .icon-open:hover:before {
    background-position: -100px -190px; }
  /* Input Group */
  header .input-group .mad-selectbox {
    border-radius: 4px 0 0 4px;
    width: 127px; }
  header .input-group .icon-infor {
    border-radius: 0 4px 4px 0;
    height: 38px;
    margin-right: 20px;
    width: 40px; }
  header .input-group .icon-infor:before {
    background-position: 0 -180px;
    height: 20px;
    margin: -10px 0 0 -4px;
    width: 8px; }
  /* Button */
  header .right-menu .btn-success {
    height: 38px;
    line-height: 38px;
    margin-right: 20px;
    width: 121px; }
  header .right-menu .btn-primary {
    height: 38px;
    line-height: 38px;
    width: 71px; }
  /* Flyout Version */
  header .right-menu .flyout-version {
    top: 38px;
    width: 368px; }
  /* Header */
  header .right-menu .flyout-version .icon-delete {
    height: 39px;
    margin-top: 0;
    margin-left: 8px;
    width: 39px; }
  header .right-menu .flyout-version .icon-delete:before {
    background-position: -160px -150px;
    height: 21px;
    margin: -10px 0 0 -10px;
    width: 20px; }
  header .right-menu .flyout-version .icon-delete:hover:before {
    background-position: -160px -190px; }
  header .right-menu .flyout-version .header ul {
    margin-left: 202px; }
  header .right-menu .flyout-version .header li {
    font-size: 14px;
    width: 61px; }
  header .right-menu .flyout-version .header li:first-child {
    width: 88px; }
  /* Body */
  header .right-menu .flyout-version .body {
    padding: 5px 0 10px 0; }
  header .right-menu .flyout-version .body li {
    font-size: 14px;
    padding-left: 20px;
    width: 72px; }
  header .right-menu .flyout-version .body li:first-child {
    width: 216px; }
  /* Footer */
  footer p {
    float: left;
    font-size: 14px;
    line-height: 32px;
    padding-left: 0;
    text-align: left; }
  /* Footer List */
  footer ul {
    float: right;
    text-align: left; }
  footer ul li {
    float: left;
    margin-right: 9px;
    padding-left: 9px; }
  footer ul li:before {
    height: 14px;
    margin-top: -7px; }
  footer ul li a {
    font-size: 14px;
    line-height: 32px; }
  /* Home */
  .home {
    padding-top: 10px; }
  /* Video */
  .home .form-group {
    margin: 0;
    padding: 0 0 10px 0; }
  .home .form-group .video {
    height: 455px; }
  .home .form-group .video .infor a.icon-pause:before {
    background-position: -200px -160px;
    height: 20px;
    margin: -10px 0 0 -8px;
    width: 16px; }
  .home .form-group .video .infor a.icon-play:before {
    background-position: -240px -160px;
    height: 20px;
    margin: -10px 0 0 -9px;
    width: 17px; }
  /* Form **/
  .home .form-group form {
    padding: 30px 30px 0 30px; }
  .home .form-group h2 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 12px; }
  .home .form-group .input-group {
    padding-bottom: 9px; }
  .home .form-group label {
    font-size: 14px;
    line-height: 35px; }
  .home .form-group .input-control {
    height: 38px;
    line-height: 26px;
    padding: 6px 12px; }
  /* Button Group */
  .home .form-group .button-group {
    padding: 22px 0; }
  .home .form-group .btn-success {
    font-size: 20px;
    height: 43px;
    line-height: 43px; }
  .home .form-group .link {
    font-size: 14px;
    line-height: 30px; }
  .home .form-group .sign-box {
    font-size: 14px;
    line-height: 30px; }
  /* List Group */
  .home .list-group {
    padding: 24px 0 0 0; }
  .home .list-group li {
    padding-bottom: 30px; }
  .home .list-group h3 {
    font-size: 32px;
    padding: 80px 0 16px 0; }
  /* Icon */
  .home .list-group .proprosal h3:before {
    height: 62px;
    margin-left: -26px;
    top: 3px;
    width: 52px; }
  .home .list-group .design h3:before {
    background-position: -80px 0;
    height: 64px;
    margin-left: -32px;
    top: 0;
    width: 64px; }
  .home .list-group .collaborate h3:before {
    background-position: -160px 0;
    height: 60px;
    margin-left: -33px;
    top: 3px;
    width: 65px; }
  .home .list-group p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px; }
  .home .list-group a {
    font-size: 20px; }
  /* Well */
  .home .well {
    padding: 12px 0 50px 0; }
  .home .well h2 {
    font-size: 46px;
    line-height: 90px; }
  /* Button Group */
  .home .well .button-group .btn {
    font-size: 20px;
    height: 48px;
    line-height: 46px;
    margin: 0 8px;
    width: 212px; }
  /* Link Box */
  .link-box {
    padding: 16px 0 50px 0; }
  .link-box .columns {
    float: left; }
  .link-box .about {
    width: 25.58%; }
  .link-box .support {
    width: 28.52%; }
  .link-box .settings {
    width: 24.22%; }
  .link-box .contactUs {
    width: 21.68%; }
  .link-box h3 {
    font-size: 20px;
    padding: 10px 0; }
  .link-box a {
    font-size: 14px;
    line-height: 36px; }
  /* Manage */
  .date-group {
    padding: 0 0 100px 0; }
  /* Header */
  .data-header {
    padding-top: 28px; }
  .data-header h2 {
    font-size: 36px;
    line-height: 57px;
    position: absolute; }
  .data-header h2 a {
    padding-left: 48px;
    position: relative; }
  .data-header h2 a:before {
    background-position: -120px -80px;
    height: 27px;
    margin-top: -13px;
    position: absolute;
    top: 50%;
    left: 1px;
    width: 27px; }
  .data-header h2 a:hover {
    opacity: .6; }
  /* Tabs */
  .data-header .tabs ul {
    float: right;
    margin-top: 20px; }
  .data-header .tabs li {
    float: left;
    padding: 0 6px;
    margin-left: 12px; }
  .data-header .tabs li:last-child {
    margin-right: 0;
    padding: 0; }
  .data-header .tabs li a {
    font-size: 14px;
    line-height: 37px; }
  /* Body */
  .data-body {
    margin-top: 20px;
    padding: 0 20px; }
  /* Create Well */
  .well-create {
    margin-top: 20px;
    padding: 24px 10px 0 10px; }
  .well-create .form {
    padding-bottom: 6px; }
  .well-create .column {
    float: left;
    padding: 0 20px;
    width: 50%; }
  .well-create .input-group {
    padding-bottom: 14px; }
  /* Small Column */
  .well-create label {
    font-size: 16px;
    line-height: 30px; }
  .well-create input[type='text'],
  .well-create textarea {
    padding: 6px 10px; }
  .well-create input[type='text'] {
    height: 38px;
    line-height: 24px; }
  .well-create textarea {
    height: 120px;
    line-height: 18px; }
  /* Button Group */
  .well-create .button-group {
    margin: 0 10px;
    padding: 20px 0; }
  .well-create .button-group .btn {
    line-height: 38px;
    width: 112px;
    padding: 0;
    border: none; }
  .well-create .button-group .link {
    font-size: 16px;
    line-height: 38px;
    margin-right: 30px; }
  /* Panel For Filter */
  .filter-panel {
    padding-top: 9px;
    padding-left: 30px;
    right: -415px;
    width: 415px; }
  .filter-panel.active {
    right: 0; }
  .filter-panel h2 {
    font-size: 36px;
    line-height: 67px;
    padding-left: 47px; }
  .filter-panel h2:before {
    background-position: -40px -80px;
    height: 27px;
    margin-top: -14px;
    width: 27px; }
  /* Form */
  .filter-panel .form {
    padding: 18px 0 0 0; }
  .filter-panel .input-group {
    margin-right: 30px;
    padding-bottom: 19px; }
  .filter-panel .data-control {
    padding-right: 10px; }
  .filter-panel .data-control.last {
    padding-left: 10px;
    padding-right: 0; }
  .filter-panel label {
    font-size: 16px;
    line-height: 35px; }
  .filter-panel input {
    height: 38px;
    padding: 6px 10px; }
  .filter-panel input.hasDatepicker {
    background-size: 28px 20px;
    font-size: 16px; }
  /* Button Group */
  .filter-panel .button-group {
    margin-top: 11px;
    padding: 30px 30px 0 0; }
  .customers .filter-panel .button-group {
    margin-top: 15px; }
  .filter-panel .button-group .icon-reset {
    font-size: 16px;
    line-height: 38px;
    padding-left: 30px; }
  .filter-panel .button-group .icon-reset:before {
    background-position: -80px -80px;
    height: 19px;
    margin-top: -10px;
    width: 20px; }
  .filter-panel .button-group .btn-default {
    height: 38px;
    line-height: 38px;
    width: 112px; }
  /* Auto Complete */
  .filter-panel .location-control {
    min-height: 38px; }
  .filter-panel .location-control input {
    min-width: 40px; }
  .filter-panel .location-control .location-selected {
    border-radius: 3px;
    font-size: 14px;
    line-height: 27px;
    margin: 6px 0 0 5px;
    padding: 0 26px 0 8px; }
  .filter-panel .location-control .location-selected:before {
    background-position: -380px -20px;
    height: 9px;
    top: 9px;
    right: 6px;
    width: 9px; }
  .filter-panel .location-control .location-selected:hover:before {
    background-position: -380px -40px; }
  /* List */
  .filter-panel .ui-autocomplete {
    padding-top: 8px;
    left: 30px;
    right: 30px; }
  .filter-panel .ui-autocomplete li {
    font-size: 14px;
    line-height: 35px;
    padding: 0 15px; }
  /* Adv-Filter */
  .well-adv-filter {
    padding-top: 16px; }
  .customers .well-adv-filter .columns {
    width: 33.3333%; }
  .well-adv-filter .header {
    font-size: 14px;
    line-height: 20px; }
  .well-adv-filter .selected-item {
    border-radius: 3px;
    font-size: 14px;
    height: 27px;
    line-height: 25px;
    margin-top: 5px;
    padding: 0 24px 0 8px; }
  .well-adv-filter .selected-item:before {
    background-position: -380px -20px;
    height: 9px;
    top: 9px;
    right: 6px;
    width: 9px; }
  .well-adv-filter .selected-item:hover:before {
    background-position: -380px -40px; }
  /* Customers */
  .customers .table .col-1 {
    width: 23.38%; }
  .customers .table .col-2 {
    width: 22.96%; }
  .customers .table .col-3 {
    width: 25.6%; }
  .customers .table .col-4 {
    width: 9.6%; }
  .customers .table .col-5 {
    width: 18.46%; }
  /* Date Picker */
  .ui-datepicker {
    width: 17em; }
  .ui-datepicker .ui-datepicker-header {
    padding: 10px 0; }
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    height: 28px;
    top: 10px;
    width: 28px; }
  .ui-datepicker .ui-datepicker-prev:before,
  .ui-datepicker .ui-datepicker-next:before {
    background-size: 400px 220px;
    margin: 7px 0 0 10px;
    height: 14px;
    width: 8px; }
  .ui-datepicker .ui-datepicker-prev:before {
    background-position: 0 -100px; }
  .ui-datepicker .ui-datepicker-next:before {
    background-position: -20px -100px; }
  .ui-datepicker .ui-datepicker-prev:hover:before {
    background-position: 0 -120px; }
  .ui-datepicker .ui-datepicker-next:hover:before {
    background-position: -20px -120px; }
  .ui-datepicker .ui-datepicker-title {
    margin: 0 30px;
    line-height: 28px; }
  .ui-datepicker table {
    font-size: 14px; }
  .ui-datepicker th {
    padding: 10px 4px; }
  .ui-datepicker td span,
  .ui-datepicker td a {
    padding: 4px; }
  /* Scale */
  .range-wrapper .ngrs-scale i {
    font-size: 14px;
    line-height: 43px; }
  .ngrs-range-slider .ngrs-runner {
    height: 4px;
    margin: 20px 9px 0 9px; }
  .ngrs-range-slider .ngrs-runner:before {
    height: 4px;
    left: -9px;
    width: 9px; }
  .ngrs-range-slider .ngrs-runner:after {
    height: 4px;
    right: -9px;
    width: 9px; }
  .ngrs-range-slider .ngrs-handle {
    height: 23px;
    width: 23px;
    margin: -9px 0 0 -9px;
    z-index: 2; }
  .ngrs-range-slider .ngrs-tracker {
    height: 20px;
    margin: -2px 0 0 -10px;
    width: 20px; }
  /* Project Details */
  .details-container {
    margin-top: 29px;
    padding: 0; }
  /* Panel */
  .details-container aside .panel {
    padding: 15px 0;
    margin: 0 15px; }
  .details-container aside h3 {
    font-size: 18px;
    line-height: 25px;
    padding-top: 1px; }
  .details-container aside h4 {
    font-size: 14px;
    line-height: 20px; }
  .details-container aside p {
    font-size: 14px;
    line-height: 20px; }
  .details-container aside ul {
    padding-top: 3px; }
  .details-container aside li {
    font-size: 14px;
    letter-spacing: -0.2px;
    line-height: 18px; }
  /* Button Group */
  .details-container aside .button-group {
    padding: 20px 0; }
  .details-container aside .btn-default {
    height: 38px;
    line-height: 36px;
    width: 112px; }
  /* Container */
  .details-container .container {
    padding: 8px 0 24px 0; }
  .details-container .container h3 {
    font-size: 24px;
    line-height: 62px;
    margin: 0 19px;
    padding-left: 49px; }
  .details-container .container h3:before {
    background-position: -120px -120px;
    height: 28px;
    margin-top: -14px;
    width: 29px; }
  /* Panel */
  .details-container .container .panel {
    margin: 0 20px; }
  .details-container .container .panel-header {
    padding: 0 20px; }
  .details-container .container .panel-body {
    padding-bottom: 10px; }
  .details-container .container h4 {
    font-size: 16px;
    line-height: 42px; }
  .details-container .container .infor {
    font-size: 14px;
    line-height: 42px;
    right: 128px; }
  /* Icon */
  .details-container .container .icon-arrow {
    height: 36px;
    top: 3px;
    right: 0;
    width: 36px; }
  .details-container .container .icon-arrow:before {
    background-position: -160px -100px;
    height: 8px;
    margin: 14px 0 0 11px;
    width: 14px; }
  .details-container .container .panel-header:hover .icon-arrow:before {
    background-position: -160px -140px; }
  /* Section */
  .details-container .container .columns {
    float: left;
    padding: 10px 20px 10px 20px;
    width: 50%; }
  .details-container .container dt,
  .details-container .container dd {
    font-size: 14px;
    line-height: 30px; }
  .details-container .container dt {
    width: 162px; }
  .details-container .container .columns-max dt {
    width: 200px; }
  .details-container .container h5 {
    font-size: 14px;
    line-height: 30px; }
  /* Expand */
  .details-container .container .on .icon-arrow:before {
    background-position: -160px -80px; }
  .details-container .container .on .panel-header:hover .icon-arrow:before {
    background-position: -160px -120px; }
  /* Map */
  .map {
    margin: 0 auto;
    padding: 12px 0;
    width: 738px; }
  /* Panel For Map */
  .panel-map {
    box-shadow: rgba(0, 0, 0, 0.5) 1px 0 5px; }
  .panel-map .tabs {
    padding: 10px 0; }
  .panel-map .tabs > ul > li a {
    line-height: 40px;
    padding: 21px 5px 0 5px;
    font-size: 14px; }
  .panel-map .tabs > ul > li a.project-infor:before {
    background-position: -200px -80px;
    height: 26px;
    margin-left: -11px;
    width: 21px; }
  .panel-map .tabs > ul > li a.outline:before {
    background-position: -240px -80px;
    height: 26px;
    margin-left: -13px;
    width: 26px; }
  .panel-map .tabs > ul > li a.technical-infor:before {
    background-position: -280px -80px;
    height: 25px;
    margin-left: -13px;
    width: 25px; }
  /* Hover */
  .panel-map .tabs > ul > li a.project-infor:hover:before,
  .panel-map .tabs li.active a.project-infor:before {
    background-position: -200px -120px; }
  .panel-map .tabs > ul > li a.outline:hover:before,
  .panel-map .tabs > ul > li.active a.outline:before {
    background-position: -240px -120px; }
  .panel-map .tabs > ul > li a.technical-infor:hover:before,
  .panel-map .tabs > ul > li.active a.technical-infor:before {
    background-position: -280px -120px; }
  /* Tab Container */
  .panel-map .tab-container.project {
    /*padding: 0 15px;*/ }
  .panel-map .tab-container .input-group {
    /*padding-top: 10px;*/ }
  .panel-map .tab-container label {
    font-size: 12px;
    color: #9B9B9B;
    /*line-height: 30px;*/ }
  .panel-map .tab-container input,
  .panel-map .tab-container textarea {
    font-size: 14px;
    height: 32px;
    line-height: 20px;
    padding: 5px 10px; }
  .panel-map .tab-container textarea.address {
    height: 57px; }
  .panel-map .tab-container textarea.descr {
    height: 50px; }
  /* Button Group */
  .panel-map .tab-container .button-group {
    padding: 31px 16px 21px 16px; }
  .panel-map .tab-container .button-group .btn-success {
    font-size: 16px;
    height: 39px;
    line-height: 39px;
    width: 138px;
    margin-left: 1px; }
  /* Sub Tabs */
  .panel-map .sub-tabs {
    margin-top: 6px; }
  .panel-map .sub-tabs li {
    padding-top: 8px; }
  .panel-map .sub-tabs li a {
    font-size: 11px;
    line-height: 24px;
    padding-top: 24px; }
  /* Icon */
  .panel-map .sub-tabs li a.line:before {
    background-position: -320px -80px;
    margin-left: -15px;
    height: 19px;
    top: 4px;
    width: 30px; }
  .panel-map .sub-tabs li a.rectangle:before {
    background-position: -320px -120px;
    margin-left: -18px;
    height: 20px;
    top: 2px;
    width: 36px; }
  .panel-map .sub-tabs li a.ellipse:before {
    background-position: -360px -80px;
    margin-left: -20px;
    height: 25px;
    width: 39px; }
  /* Sub Tabs Container */
  .panel-map .sub-tab-container {
    padding-top: 17px; }
  .panel-map .sub-tab-container p {
    font-size: 14px;
    line-height: 20px;
    padding: 0 20px; }
  .panel-map .sub-tab-container .button-group {
    padding: 20px 16px 10px 16px; }
  /* Header */
  .panel-map .tab-container .accordion-header {
    padding: 0 16px; }
  .panel-map .tab-container .accordion-header h3 {
    font-size: 16px;
    line-height: 43px; }
  .panel-map .tab-container .expand .accordion-header h3 {
    padding-top: 10px;
    line-height: 23px; }
  /* Arrow */
  .panel-map .tab-container .icon-arrow {
    height: 43px;
    width: 43px; }
  .panel-map .tab-container .icon-arrow:before {
    background-position: 0 -160px;
    height: 7px;
    margin: 19px 0 0 16px;
    width: 11px; }
  .panel-map .tab-container .expand .icon-arrow:before {
    background-position: 0 -140px; }
  /* Body */
  .panel-map .tab-container .accordion-body {
    padding-bottom: 12px; }
  .panel-map .tab-container .accordion .input-group {
    padding: 0 15px 5px 15px; }
  .panel-map .tab-container .columns {
    width: 45%; }
  .panel-map .tab-container .thur {
    font-size: 14px;
    line-height: 32px;
    padding-top: 30px;
    width: 10%; }
  /* Dropdown */
  .panel-map .accordion .mad-selectbox {
    height: 32px; }
  .panel-map .accordion .mad-selectbox:before {
    top: 12px; }
  .panel-map .accordion .mad-selectbox a.mad-selectbox-toggle {
    font-size: 14px;
    padding: 3px 10px; }
  .panel-map .accordion .mad-selectbox ul {
    top: 30px; }
  .panel-map .accordion .mad-selectbox ul li a {
    font-size: 14px;
    padding: 3px 10px; }
  /* Radio */
  .panel-map .checkbox-group {
    padding: 10px 15px 0 15px; }
  /* select */
  /* shapeList */
  .shapeList {
    display: block; }
  .panel-map .shapeList > li {
    background-color: transparent;
    border-bottom: 1px solid #d2d2d2;
    padding: 0; }
  .panel-map .shapeList > li:last-child {
    border-bottom: none; }
  .shapeList .shapeWrap {
    min-height: 83px; }
  .shapeList .moreDetails {
    margin-left: 52px; }
  .shapeList .gr {
    width: 98px; } }

/* !! end media*/
@media (min-width: 992px) {
  .ui-bootstrap-container {
    margin: 0 auto;
    width: 960px; }
  /* Right Menu */
  header .right-menu {
    margin-top: 0;
    position: absolute;
    top: 22px;
    right: 0; }
  /* Form group */
  .home .form-group {
    background-color: #3d3d3d;
    height: 455px;
    position: relative; }
  /* Video */
  .home .form-group .video {
    position: absolute;
    top: 0;
    left: 0;
    right: 309px;
    bottom: 0;
    width: auto; }
  /* Form **/
  .home .form-group form {
    float: right;
    padding: 31px 30px 0 30px;
    text-align: center;
    width: 309px; }
  /* List Group */
  .home .list-group {
    padding: 57px 0 65px 0; }
  .home .list-group li {
    float: left;
    text-align: center;
    width: 33.3333%; }
  .home .list-group li:nth-child(1) {
    padding-right: 12px; }
  .home .list-group li:nth-child(2) {
    padding: 0 6px; }
  .home .list-group li:nth-child(3) {
    padding-left: 12px; }
  .home .list-group h3 {
    padding: 97px 0 16px 0; }
  .home .list-group p {
    padding-bottom: 19px; }
  /* Well */
  .home .well {
    padding: 21px 0 70px 0; }
  .home .well h2 {
    line-height: 130px; }
  /* Nav */
  header nav li {
    padding: 0 20px; }
  .data-header .tabs li {
    margin-left: 28px; }
  .data-body .table {
    width: 100%; }
  /* Project Details */
  .details-container {
    position: relative; }
  .details-container aside {
    width: 324px; }
  .well-adv-filter .columns {
    width: 25%; }
  /* Map */
  .map {
    padding: 0;
    width: 100%; }
  /* Panel For Map */
  .panel-map {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 310px; }
  .panel-map .tabs {
    padding: 10px 0; }
  .panel-map .tab-container .columns {
    width: 120px; }
  .panel-map .tab-container .thur {
    width: 40px; }
  /* Container */
  .details-container .container {
    position: absolute;
    top: 0;
    left: 350px;
    right: 0;
    padding: 8px 0;
    min-height: 100%; }
  .details-container .container .columns {
    width: 100%; }
  .details-container .container dt {
    width: 200px; }
  .table .icon-delete {
    margin: 0 10px 0 40px; }
  /* Button Group */
  .details-container .container .button-group {
    margin: 0 10px;
    padding: 20px 0; }
  .details-container .container .button-group .btn {
    line-height: 38px;
    width: 112px;
    margin-right: 10px; }
  /* Content */
  .details-container .container .content {
    margin: 10px 19px;
    font-size: 14px; }
  .details-container .container .content p {
    margin-bottom: 10px;
    text-align: justify; } }

@media (min-width: 1200px) {
  .ui-bootstrap-container {
    margin: 0 auto;
    width: 1170px; }
  /*header .search-wrapper .icon-toggle {*/
  /*display: none;*/
  /*}*/
  .collapse {
    clear: none;
    float: right;
    height: auto;
    overflow: auto;
    width: auto; }
  header nav a {
    line-height: 53px; }
  /* List Group */
  .home .list-group {
    margin: 0 -24px;
    padding: 57px 0 65px 0; }
  .home .list-group li:nth-child(1),
  .home .list-group li:nth-child(2),
  .home .list-group li:nth-child(3) {
    padding: 0 24px; }
  /* Details */
  .details-container .container .columns {
    float: left;
    width: 50%; }
  .details-container .container dt {
    width: 162px; }
  .details-container .container .columns-max dt {
    width: 200px; }
  .details-container .container h5.last {
    padding-top: 10px; }
  header .input-group .mad-selectbox {
    width: 172px; } }

/* map canvas */
.map #map-canvas {
  height: 855px; }

/* address input */
.map #address {
  margin: 5px 0;
  padding: 5px 10px;
  outline: none;
  border: 1px solid #d2d2d2;
  width: 100%;
  font-size: 14px;
  line-height: 16px; }

/* shape type radio buttons */
#shape-type {
  margin-left: 5px;
  padding-top: 1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3); }

.radio-button {
  float: left;
  margin-left: 1px; }

.radio-button .radio-title {
  font-size: 13px;
  padding: 5px 10px;
  cursor: pointer;
  display: inline-block;
  background: #eeeeee;
  border-radius: 1px; }

.radio-button input {
  display: none; }

input[type="radio"]:checked + .radio-title {
  background: #ffffff;
  color: #0040c2;
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.3); }

/* info block */
#info {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 400px;
  overflow: auto;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.88); }

.selected-object {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #d2d2d2; }

/* properties block */
.properties {
  margin: 10px -5px; }

.properties .select {
  display: block;
  padding: 5px 5px 10px; }

.properties .input {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding: 0 5px; }

.properties:after {
  content: '';
  display: block;
  clear: both; }

/* result json textarea */
#result-json {
  width: 100%;
  resize: vertical;
  box-sizing: border-box;
  margin: 5px 0;
  font-size: 13px;
  font-family: monospace; }

/* quick hack for current footer display on tablet and mobile */
footer .ui-bootstrap-container {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px; }

@media (max-width: 980px) {
  footer ul {
    float: right;
    display: inline; }
  footer p {
    float: left;
    display: inline; }
  footer .ui-bootstrap-container {
    padding-left: 4px;
    padding-right: 4px; } }

@media (max-width: 480px) {
  footer ul {
    float: left;
    display: inline; }
  footer p {
    display: none; } }

/* tablet adjustments */
@media (max-width: 960px) and (orientation: portrait) {
  .content {
    padding-bottom: 300px; }
  #map-canvas {
    margin-right: 0; }
  #info {
    bottom: 0;
    width: auto;
    height: 300px;
    left: 0;
    right: 0;
    top: auto;
    padding: 0; }
  .selected-object,
  .result-json {
    float: left;
    width: 50%;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
    padding: 10px; }
  .selected-object {
    border-top: 0;
    border-left: 1px solid #d2d2d2; }
  #result-json {
    height: 220px; } }

.rzslider {
  margin: 15px 0 15px 0; }
  .rzslider span.rz-pointer {
    -webkit-transform: scale(0.66);
    -moz-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
    background-color: #416af0;
    outline: none; }

.header-help {
  font-size: 20px;
  line-height: 1; }
  .header-help i:before {
    color: #416af0; }
  .header-help:hover i:before {
    color: #708ff4; }

html li.active button.btn-header-nav {
  font-weight: 500; }

html .page-content {
  background: #F7F8FC; }

html .header .nav > li.active button.btn-header-nav {
  font-weight: 500; }

html .header .nav > li.active:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #416af0;
  display: block;
  position: absolute;
  bottom: -1px; }

i.version-plus::before {
  color: #416af0; }

i.version-plus {
  transform: scale(2);
  margin-left: 4px;
  margin-top: 7px; }

::selection {
  background-color: lightskyblue !important; }

::-moz-selection {
  /* Code for Firefox */
  background-color: lightskyblue !important; }

html, body {
  height: 100%;
  min-height: 100%; }

.clearfix ul {
  margin-bottom: 0 !important; }

html button:disabled {
  cursor: default !important; }

/*p {*/
/*margin: 0;*/
/*}*/
ul {
  padding: 0; }

.collapse {
  display: block; }

.hidden {
  display: none; }

.btn-login {
  border: none !important; }

.btn-login:focus {
  background: #027fc1; }

.btn-login:hover {
  background: #219cdd !important; }

.btn-primary:focus {
  background: #6fb71b; }

.btn-default:focus {
  color: white; }

.alert {
  margin-bottom: 0; }

table.form-table {
  width: 100%; }

table.form-table tr .form-control {
  margin: 5px 0; }

/*.ladda-button[data-style=zoom-in] .ladda-spinner {*/
/*margin-left: 0 !important;*/
/*}*/
/*.ladda-button .ladda-spinner {*/
/*margin-top: 0 !important;*/
/*}*/
.mainError {
  width: 100%;
  line-height: 30px;
  background: red;
  color: white;
  font-size: 1.3em;
  text-align: center;
  display: none; }

.mainError.active {
  display: block; }

/*Loading spinner*/
.loader-dark {
  margin: auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid #888888;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear; }

.loader-blue {
  margin: auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(25, 0, 255, 0.2);
  border-right: 1.1em solid rgba(25, 0, 255, 0.2);
  border-bottom: 1.1em solid rgba(25, 0, 255, 0.2);
  border-left: 1.1em solid #059ff8;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear; }

.loader {
  margin: auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear; }

.loader,
.loader-dark,
.loader-dark:after,
.loader-blue,
.loader:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
  border-width: 0.5em;
  top: 15%; }

.loading-anim {
  -webkit-animation: load8 1.5s infinite linear;
  animation: load8 1.5s infinite linear; }

.loader,
.loader-center {
  top: 50% !important; }

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.input-group {
  /*display: block;  */ }

.btn.filter-apply {
  background: transparent;
  padding: 0;
  border-color: white;
  font-weight: bold;
  color: white; }

.btn.filter-apply:hover {
  border-color: #ccc; }

.panel {
  margin-bottom: 0;
  border-radius: 0; }

td.noFound {
  text-align: center;
  border-bottom: none;
  font-weight: bold; }

.error-message {
  background: #F78383;
  padding: 5px;
  text-align: center;
  color: #6B2727; }

.data-body.content {
  min-height: 150px; }

.input-group label {
  font-weight: normal;
  margin-bottom: 0; }

.panel {
  z-index: 999; }

.icon.roof {
  background: url("data:image/svg+xml;utf8,%3Csvg%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20id%3D%22Layer_1%22%0A%20%20%20x%3D%220px%22%0A%20%20%20y%3D%220px%22%0A%20%20%20width%3D%2230%22%0A%20%20%20height%3D%2230%22%0A%20%20%20viewBox%3D%220%200%2029.999998%2030%22%3E%0A%20%20%20%3Cpath%20d%3D%22m%209.5068354%2C6.9837084%2020.4931626%2C0%200%2C2.0740148%20-20.4931626%2C0%200%2C-2.0740148%200%2C0%20z%20M%208.0771479%2C30%20l%204.3095701%2C0%200%2C-6.9749%20-4.3095701%2C0%200%2C6.9749%200%2C0%20z%20m%209.2226561%2C-11.612139%200%2C1.359241%200%2C10.252898%20-1.274414%2C0%200%2C-10.252898%20-12.858398%2C0%200%2C10.252898%20-1.274414%2C0%200%2C-10.252898%200%2C-1.359241%201.274414%2C0%2012.858398%2C0%201.274414%2C0%200%2C0%20z%20m%20-5.897461%2C-7.387946%200%2C-1.3563119%201.274414%2C0%2014.156249%2C0%201.274414%2C0%200%2C1.3563119%200%2C19.000085%20-1.274414%2C0%200%2C-19.000085%20-14.156249%2C0%200%2C3.143246%20-1.274414%2C0%200%2C-3.143246%200%2C0%20z%20M%200%2C15.730895%20l%200%2C2.076944%2019.195311%2C0%200%2C-2.076944%20-19.195311%2C0%20z%22%20style%3D%22clip-rule%3Aevenodd%3Bfill%3A%23ffffff%3Bfill-rule%3Aevenodd%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center 0px; }

.icon.obstruction {
  background: url("data:image/svg+xml;utf8,%3Csvg%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20x%3D%220px%22%0A%20%20%20y%3D%220px%22%0A%20%20%20width%3D%2230%22%0A%20%20%20height%3D%2230%22%0A%20%20%20viewBox%3D%220%200%2030%2029.999998%22%0A%20%20%20enable-background%3D%22new%200%200%20595.275%20841.89%22%3E%0A%3Cpath%0A%20%20%20%20%20d%3D%22m%201.0311489%2C7.1102836%2027.9347601%2C0%201.031149%2C0%200%2C1.0324657%200%2C11.0704797%200%2C2.059079%20-2.062298%2C0%20-2.821012%2C0%200%2C7.478789%201.426617%2C0%200%2C1.248903%20-5.665459%2C0%200%2C-1.248903%200.77922%2C0%200%2C-7.478789%20-13.3082649%2C0%200%2C7.431991%201.1014544%2C0%200%2C1.248904%20-5.6654599%2C0%200%2C-1.248904%201.1014545%2C0%200%2C-7.431991%20-2.8210124%2C0%20-2.0622977%2C0%200%2C-2.059079%200%2C-11.0704797%200%2C-1.0324657%201.0311489%2C0%200%2C0%20z%20m%201.0311488%2C12.1000204%2025.8724623%2C0%200%2C-0.541094%200%2C-9.5027725%20-7.250265%2C0%20-2.062298%2C0%20-7.250266%2C0%20-2.0622973%2C0%20-7.2502654%2C0%200%2C9.5027725%200%2C0.541094%20z%22%0A%20%20%20%20%20style%3D%22clip-rule%3Aevenodd%3Bfill%3A%23ffffff%3Bfill-rule%3Aevenodd%22%20%2F%3E%3Cpath%0A%20%20%20%20%20d%3D%22m%203.169611%2C14.591998%204.6167346%2C3.51272%20-0.6239622%2C0%20-3.9927724%2C-3.035973%200%2C-0.476747%200%2C0%20z%20m%2011.828918%2C-0.637614%205.460402%2C4.153259%20-0.623962%2C0%20-4.83644%2C-3.676511%200%2C-0.0029%20-5.4604021%2C-4.153258%200.6268921%2C0%204.83351%2C3.679435%200%2C0%20z%20m%200%2C3.211463%20-9.0577055%2C-6.890898%20-0.6239622%2C0%209.6816677%2C7.37057%200%2C0%200.612244%2C0.462124%200.623963%2C0%20-1.236207%2C-0.941796%200%2C0%20z%20m%2011.831847%2C-6.592565%20-0.395469%2C-0.301258%200.395469%2C0%200%2C0.301258%200%2C0%20z%20m%20-3.995702%2C-0.298333%20-0.623962%2C0%204.619664%2C3.51272%200%2C-0.473823%20-3.995702%2C-3.038897%200%2C0%20z%20m%20-4.224195%2C0%20-0.626891%2C0%208.846788%2C6.727107%200%2C-0.473823%20-8.219897%2C-6.253284%200%2C0%20z%20m%20-3.61195%2C0.465048%200%2C0%20-0.609315%2C-0.465048%20-0.623963%2C0%201.236207%2C0.938871%200%2C0%209.060635%2C6.890898%200.623962%2C0%20-9.687526%2C-7.364721%200%2C0%20z%20m%20-11.828918%2C7.069313%200%2C0.298333%200.3925396%2C0%20-0.3925396%2C-0.298333%200%2C0%20z%20m%200%2C-6.428775%200%2C0.476748%208.216967%2C6.25036%200.623963%2C0%20-8.84093%2C-6.727108%20z%22%0A%20%20%20%20%20style%3D%22clip-rule%3Aevenodd%3Bfill%3A%23ffffff%3Bfill-rule%3Aevenodd%22%20%2F%3E%3Crect%0A%20%20%20%20%20x%3D%220.0029429884%22%0A%20%20%20%20%20y%3D%220%22%0A%20%20%20%20%20width%3D%2229.997057%22%0A%20%20%20%20%20height%3D%2229.950254%22%0A%20%20%20%20%20style%3D%22clip-rule%3Aevenodd%3Bfill%3Anone%3Bfill-rule%3Aevenodd%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center 0px; }

.icon.installationArea {
  background: url("data:image/svg+xml;utf8,%3Csvg%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20x%3D%220px%22%0A%20%20%20y%3D%220px%22%0A%20%20%20width%3D%2230%22%0A%20%20%20height%3D%2230%22%0A%20%20%20viewBox%3D%220%200%2029.999999%2029.999999%22%0A%20%20%20enable-background%3D%22new%200%200%20595.275%20841.89%22%0A%3E%3Cpath%0A%20%20%20%20%20d%3D%22m%201.0311492%2C3.5762783e-6%2027.9376978%2C0%201.031149%2C0%200%2C1.0311493237217%200%2C27.9376981%200%2C1.031149%20-1.031149%2C0%20L%201.0311492%2C30%200%2C30%200%2C28.968851%200%2C1.0311529%200%2C3.5762783e-6%20l%201.0311492%2C0%200%2C0%20z%20M%209.312566%2C2.0593727%20l%20-7.2502676%2C0%200%2C7.0774337%200%2C2.0622986%200%2C7.250265%200%2C2.062299%200%2C7.426032%207.2502676%2C0%202.062298%2C0%207.250268%2C0%202.062298%2C0%207.250268%2C0%200%2C-7.426032%200%2C-2.062299%200%2C-7.250265%200%2C-2.0622986%200%2C-7.0774337%20-7.250268%2C0%20-2.062298%2C0%20-7.250268%2C0%20-2.062298%2C0%20z%22%0A%20%20%20%20%20style%3D%22clip-rule%3Aevenodd%3Bfill%3A%23ffffff%3Bfill-rule%3Aevenodd%22%20%2F%3E%3Cpath%0A%20%20%20%20%20d%3D%22m%203.4449757%2C14.201741%2012.3503553%2C12.350354%20-1.119032%2C0%20-11.2313233%2C-11.234252%200%2C-1.116102%200%2C0%20z%20m%200%2C7.546135%200%2C1.119032%203.6881159%2C3.688116%201.1161018%2C0%20-4.8042177%2C-4.807148%200%2C0%20z%20M%2022.866905%2C3.4420502%20l%203.688116%2C3.6881163%200%2C1.1161019%20-4.804218%2C-4.8042182%201.116102%2C0%200%2C0%20z%20m%20-7.543208%2C0%20-1.116102%2C0%2012.347426%2C12.3474268%200%2C-1.116102%20-11.231324%2C-11.2313248%200%2C0%20z%20m%20-7.5461371%2C0%20-1.1161019%2C0%2019.893563%2C19.8935618%200%2C-1.116102%20-18.7774611%2C-18.7774598%200%2C0%20z%20m%20-4.3325842%2C3.2135533%200%2C1.1190313%2018.7774613%2C18.7774602%201.119031%2C0%20L%203.4449757%2C6.6556035%20Z%22%0A%20%20%20%20%20style%3D%22clip-rule%3Aevenodd%3Bfill%3A%23ffffff%3Bfill-rule%3Aevenodd%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center 0px; }

.icon.delete {
  background: url("data:image/svg+xml;utf8,%3Csvg%0A%20%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20%20%20version%3D%221.1%22%0A%20%20%20x%3D%220px%22%0A%20%20%20y%3D%220px%22%0A%20%20%20width%3D%2220%22%0A%20%20%20height%3D%2220%22%0A%20%20%20viewBox%3D%220%200%2019.999999%2020%22%0A%20%20%20enable-background%3D%22new%200%200%20595.275%20841.89%22%0A%3E%3Cpath%0A%20%20%20%20%20d%3D%22M%202.5994584%2C0%20C%201.9308477%2C0%201.262237%2C0.25410691%200.75817538%2C0.756093%200.25411373%2C1.2601521%200%2C1.9287658%200%2C2.5994568%200%2C3.2701521%200.25203083%2C3.9408475%200.75192668%2C4.4407432%20l%200.006249%2C0%20L%205.2697358%2C8.9502173%206.3174342%2C10%205.2697358%2C11.049783%200.76025858%2C15.559257%20C%200.25619663%2C16.06332%200.0020829%2C16.73193%200.0020829%2C17.400543%20c%200%2C0.672773%200.25203083%2C1.343468%200.75192668%2C1.841282%20l%200.006249%2C0.0061%20C%201.2601541%2C19.74797%201.9287648%2C20%202.6015413%2C20%203.2701521%2C20%203.9387628%2C19.745893%204.4428244%2C19.241825%20l%204.5115601%2C-4.509478%201.0476985%2C-1.049783%201.047698%2C1.049783%204.51156%2C4.509478%200%2C0.0061%20C%2016.061237%2C19.74797%2016.729848%2C20%2017.402624%2C20%2018.071235%2C20%2018.739846%2C19.745893%2019.243908%2C19.241825%2019.747969%2C18.739848%2020%2C18.069153%2020%2C17.400543%2020%2C16.73193%2019.745886%2C16.059153%2019.24599%2C15.557175%20l%20-0.0021%2C0.0021%20L%2014.732329%2C11.049783%2013.684631%2C10%2014.732329%2C8.9502173%2019.24389%2C4.4407432%20C%2019.747969%2C3.9366797%2020%2C3.2680704%2020%2C2.5994568%2020%2C1.9266841%2019.745886%2C1.2580704%2019.24599%2C0.7540113%20l%20-0.0021%2C0.002082%200%2C0%20C%2018.739828%2C0.2541156%2018.071217%2C0%2017.404689%2C0%2016.736079%2C0%2016.067468%2C0.25410691%2015.563406%2C0.756093%20l%200%2C0%20-4.51156%2C4.5115602%20L%2010.004148%2C6.3174359%208.9543665%2C5.2676532%204.4428064%2C0.756093%204.4448864%2C0.7540113%20C%203.9408457%2C0.2541156%203.272235%2C0%202.5994584%2C0%20Z%22%0A%20%20%20%20%20style%3D%22clip-rule%3Aevenodd%3Bfill%3A%23027fc1%3Bfill-rule%3Aevenodd%22%20%2F%3E%3C%2Fsvg%3E") no-repeat center;
  width: 32px;
  height: 32px;
  float: left;
  display: block;
  cursor: pointer;
  background-size: 12px; }

.indicator {
  width: 40px;
  height: 32px;
  float: right; }

.indicator.Roof {
  background-color: #1060ff; }

.indicator.Obstruction {
  background-color: #ff6010; }

.indicator.InstallationArea {
  background-color: #409000; }

/*.dropdown-menu {*/
/*background: white;*/
/*font-size: 0.8em;*/
/*border: 1px solid rgb(0, 83, 128);*/
/*}*/
/*.dropdown-menu li a {*/
/*display: block;*/
/*padding: 3px 10px !important;*/
/*cursor: pointer;*/
/*color: black !important;*/
/*font-style: normal !important;*/
/*}*/
/*.dropdown-menu li {*/
/*padding-top: 0 !important;*/
/*}*/
/*.dropdown-menu li a:hover {*/
/*background: rgb(2, 127, 193);*/
/*color: white !important;*/
/*opacity: 1 !important;*/
/*}*/
.sub-tab-container {
  padding-top: 0 !important; }

.rw {
  padding: 0 15px; }

select.form-control.custom {
  border-radius: 0; }

.loader.inline {
  width: 2em;
  height: 2em;
  border-width: 0.3em; }

.grid-body .loader.inline {
  margin-top: 1.08rem; }

.tab-pane .loader.inline {
  margin-top: -1rem; }

.spinner.select {
  position: absolute;
  z-index: 5;
  right: 43px;
  height: 34px;
  padding-top: 3px; }

.spinner.select.signup {
  padding-top: 8px;
  right: 20px; }

.well-create .spinner.select {
  padding-top: 4px !important; }

.has-spinner.select {
  position: relative; }

.accordion-body {
  overflow: hidden; }

.well-create.no-spacing {
  padding: 0;
  margin: 0; }

.panel-map .tab-container .button-group .btn-success {
  opacity: 1; }

.panel-map .tab-container .button-group .btn-success[disabled] {
  opacity: 0.5; }

.all-page-error {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #ddd;
  z-index: 50;
  padding: 50px; }

.all-page-error span {
  background: #F16F6F;
  padding: 10px;
  display: block;
  text-align: center;
  color: #690000;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); }

.well-create select {
  height: 38px;
  line-height: 24px; }

.drop-box {
  background: #f8f8f8;
  border: 2px solid #ccc;
  padding: 5px;
  text-align: center; }

.drop-box.dragover {
  background: #eeeeee; }

.drop-box img {
  margin-top: 0;
  max-width: 500px;
  max-height: 250px;
  margin-bottom: 10px; }

.image-capture {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 630px;
  height: 630px; }

/*Default bootstrap*/
.btn.btn-default.default {
  font-size: 14px !important;
  line-height: 20px !important; }

.glyphicon.sorting {
  font-size: 0.6em; }

table.sortable th {
  cursor: pointer; }

table td.sortable, table th.sortable {
  cursor: pointer; }

form.forgot-password {
  padding: 10px; }

.btn.forgot-password {
  line-height: 32px;
  padding: 1px 10px;
  display: inline-block;
  font-size: 14px; }

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

/* New map layout */
.panel-map .save-btn-zone {
  position: fixed;
  top: 83px;
  padding: 15px;
  padding-right: 30px;
  width: 400px;
  z-index: 10;
  background: white; }

.panel-map .save-btn-zone .buttons {
  width: 88%;
  float: left; }

.panel-map .save-btn-zone .buttons a {
  width: 32%;
  display: inline-block;
  height: 30px;
  line-height: 30px; }

@media (min-width: 992px) {
  .panel-map {
    top: 0;
    left: 0;
    height: 100%;
    background: white;
    /*overflow-y: scroll;*/
    width: 400px; }
  .map {
    /*margin-left: 200px;*/ } }

@media (min-width: 768px) {
  .panel-map {
    box-shadow: none; }
  .panel-map .tab-container .button-group .btn-success {
    width: 49%; } }

.panel-content {
  height: calc(100% - 37px);
  overflow-y: auto;
  padding-bottom: 20px;
  padding-top: 20px; }

.panel-map .zone-header {
  padding: 5px 15px;
  background: #f1f1f1;
  border: 1px solid #888;
  color: #888;
  font-size: 1.2em;
  margin: 10px 2px; }

.panel-map .zone-header.active {
  color: #027FC1;
  border-color: #027FC1; }

footer .version {
  opacity: 0.3; }

.main-conatiner.layout {
  height: calc(100% - 115px);
  overflow: hidden; }

/* hamburger menu */
.hamburger {
  position: relative;
  display: none; }

.hamburger.active {
  display: block; }

.hamburger ul {
  position: absolute;
  background: white;
  right: 0;
  top: 45px;
  z-index: 5;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.5); }

.hamburger ul li {
  font-weight: bold; }

.hamburger ul li.active a {
  color: #008abf; }

.hamburger ul li:hover {
  background: #eeeeee; }

.hamburger ul li a {
  padding: 10px 15px;
  color: #666;
  display: block; }

.hamburger ul li a:hover {
  text-decoration: none; }

input.address-bar {
  position: absolute;
  z-index: 500;
  margin-top: 5px;
  width: 350px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }

.has-loading {
  position: relative; }

.custom-columns {
  width: 50%;
  float: left; }

.custom-columns.last {
  padding-left: 3px; }

.block .columns {
  width: 150px !important; }

.checkbox-group span.radio {
  margin-top: 1px; }

.checkbox-group label {
  font-weight: normal; }

/* Sidemenu */
@media (min-width: 768px) {
  .filter-panel.nav {
    padding-top: 9px !important;
    right: -200px !important;
    width: 200px !important; } }

.filter-panel.nav {
  background-color: #027fc1;
  padding-top: 4px;
  padding-left: 0;
  position: absolute;
  top: 0;
  right: -150px;
  bottom: 0;
  width: 150px;
  transition: right .3s;
  z-index: 999; }

.filter-panel.nav.active {
  right: 0 !important; }

.filter-panel.nav h2 {
  height: 40px;
  margin: 0 10px; }

.filter-panel.nav h2:before {
  transform: rotate(180deg);
  right: 5px;
  left: auto; }

.filter-panel.nav ul {
  width: 100%; }

.filter-panel.nav ul li {
  line-height: 1.8;
  font-size: 1.1em;
  padding: 0 10px; }

.filter-panel.nav ul li a {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none !important; }

.filter-panel.nav ul li.active {
  background: rgba(255, 255, 255, 0.2); }

.filter-panel.nav ul li:hover {
  background: rgba(255, 255, 255, 0.3); }

.filter-panel.nav ul li:hover a {
  color: rgba(0, 0, 0, 0.5); }

/*profile panel*/
.profile-panel {
  position: relative;
  display: inline-block;
  float: left;
  line-height: 30px;
  padding: 4px;
  cursor: pointer;
  z-index: 100;
  min-width: 120px; }

.profile-panel .avatar {
  display: inline-block; }

.profile-panel .avatar img {
  width: 30px;
  border: 1px solid transparent;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px; }

.profile-panel span.display-name {
  padding-right: 2px; }

.profile-panel ul {
  position: absolute;
  z-index: 99;
  background: white;
  width: calc(100% + 2px);
  display: none;
  left: -1px;
  top: 36px;
  border: 1px solid #ccc;
  border-top: none;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5); }

.profile-panel.show {
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 3px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5); }

.profile-panel.show ul {
  display: block; }

.profile-panel ul li a {
  padding: 0 10px;
  color: #555;
  display: block;
  width: 100%; }

.profile-panel ul li a:hover {
  background: #ddd; }

header.header {
  width: 98%; }

input[type='text'].label-like {
  border: none;
  background: inherit;
  /*font-weight: bold;*/ }

input[type='text'].label-like:hover {
  border: 1px solid #ccc; }

input[type='text'].label-like:focus {
  border: 1px solid #777; }

textarea.label-like {
  border: none !important;
  background: inherit; }

textarea.label-like:hover {
  border: 1px solid #ccc !important; }

textarea.label-like:focus {
  border: 1px solid #777 !important; }

.modal-center-helper {
  display: table;
  width: 100%;
  height: 100%; }

.modal-dialog.center {
  display: table-cell;
  vertical-align: middle;
  text-align: left !important; }

.modal-dialog.center .modal-content {
  /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  width: inherit;
  height: inherit;
  /* To center horizontally */
  margin: 0 auto;
  overflow: hidden; }

.pac-container {
  z-index: 1500; }

.close-cross {
  position: absolute;
  right: 0;
  top: 0;
  padding: 15px;
  cursor: pointer; }

.btn-success.grey {
  background: #828282 !important; }

a.link.grey {
  color: #333 !important;
  text-decoration: underline; }

.modal-body {
  overflow: visible; }

a.side-menu-btn {
  background: rgba(255, 255, 255, 0.7);
  z-index: 1400;
  border: 1px solid transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px; }

aside.side-menu {
  z-index: 1500 !important; }

.modal-content {
  border-radius: 0; }

/*New tabs in project*/
.panel-map .new-tabs {
  height: 100%; }

.panel-map .new-tabs ul.menu li {
  display: block;
  float: left;
  width: 33.3%;
  border: 1px solid #848484;
  border-right: none;
  background: #9B9B9B;
  font-weight: bold; }

.panel-map .new-tabs ul.menu li.active {
  background: white;
  border-bottom: none; }

.panel-map .new-tabs ul.menu li.active a {
  color: #9B9B9B; }

.panel-map .new-tabs ul.menu li:last-child {
  border-right: 1px solid #848484; }

.panel-map .new-tabs ul.menu li a {
  width: 100%;
  height: 100%;
  display: block;
  text-align: center;
  color: white;
  font-size: 1.2em;
  text-decoration: none !important;
  line-height: 1.5; }

/*Recent projects*/
.new-modal {
  color: #4F4F4F;
  overflow: hidden;
  margin: 10px;
  border: 1px solid #D2D2D2; }

.new-modal .header {
  position: relative !important;
  font-weight: bold;
  font-size: 1.5em;
  padding: 10px !important; }

.new-modal table {
  width: 100%; }

.new-modal table thead {
  font-weight: bold;
  font-size: 1.1em;
  border-bottom: 1px solid #D2D2D2; }

.new-modal table thead td:first-child {
  padding-left: 10px; }

.new-modal table thead td:last-child {
  padding-right: 10px; }

.new-modal table tbody td {
  padding: 3px 0; }

.new-modal table tbody tr:hover {
  cursor: pointer;
  background: #eee; }

.new-modal table tbody tr td:first-child {
  padding-left: 10px; }

.new-modal .footer {
  padding: 10px;
  overflow: hidden;
  margin-top: 10px; }

.new-modal .footer a.btn {
  width: 100px;
  height: 32px;
  line-height: 32px;
  float: left; }

.new-modal .footer .right {
  float: right;
  line-height: 32px; }

.new-modal .footer .right a {
  text-decoration: underline;
  color: #4F4F4F; }

/*New project controls*/
.panel-map .project-controls {
  width: 100%;
  background: #EFEFEF;
  padding: 10px;
  padding-bottom: 6px; }

.panel-map .project-controls ul.controls {
  display: block;
  margin: 0 auto; }

.panel-map .project-controls ul.controls a {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: url(../images/panel-controls.png) no-repeat;
  margin: 3px; }

.panel-map .project-controls ul.controls a.new {
  background-position: 0 0; }

.panel-map .project-controls ul.controls a.open {
  background-position: -48px 0; }

.panel-map .project-controls ul.controls a.save {
  background-position: -96px 0; }

.panel-map .project-controls ul.controls a.save-as {
  background-position: -144px 0; }

.panel-map .project-controls ul.controls a.export {
  background-position: -192px 0; }

.panel-map .project-controls ul.controls a.delete {
  background-position: -240px 0; }

.panel-map .project-controls .dropdown {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
  z-index: 100; }

.panel-map .project-controls .dropdown ul {
  position: absolute;
  background: #9B9B9B;
  border: 1px solid #ABAEB0;
  margin-top: 2px;
  display: none;
  top: 48px;
  margin-left: 3px;
  width: 110px; }

.panel-map .project-controls .dropdown ul.show {
  display: block; }

.panel-map .project-controls .dropdown ul a {
  display: block;
  width: 100%;
  line-height: 2.5;
  padding: 0 10px;
  background: #9B9B9B !important;
  height: auto;
  margin: 0;
  font-size: 1.1em;
  text-align: left;
  color: white !important;
  text-decoration: none !important;
  overflow: hidden;
  padding: 5px 10px; }

.panel-map .project-controls .dropdown ul a:hover {
  background: #bbb !important; }

.panel-map .project-controls span.icon {
  display: block;
  float: left;
  background: url(../images/panel-controls-export.png) no-repeat 0 0;
  -webkit-background-size: 60px 35px;
  background-size: 60px 35px;
  width: 30px;
  height: 35px;
  margin-right: 5px; }

.panel-map .project-controls span.icon.export-pdf {
  background-position: 0 0; }

.panel-map .project-controls span.icon.export-csv {
  background-position: -30px 0; }

.panel-map .project-controls span.icon + span {
  display: block;
  float: left;
  line-height: 35px; }

.block-title {
  font-weight: bold;
  color: #828282;
  padding-bottom: 15px;
  padding-left: 15px; }

.block h4 {
  color: #828282;
  padding-bottom: 15px; }

.block .box {
  padding: 5px 10px !important;
  border: #d2d2d2 solid 1px !important;
  line-height: 20px !important;
  height: 30px !important; }

.block .textarea-box {
  padding: 5px 10px !important;
  border: #d2d2d2 solid 1px !important;
  line-height: 20px !important; }

textarea.none-hover-border:hover {
  border: none !important; }

.static-value {
  font-size: 16px !important;
  color: #606060; }

.block input {
  height: 18px !important; }

.block input:focus {
  height: 30px !important; }

.block textarea:focus {
  height: 50px !important; }

.block input, .block textarea {
  font-size: 16px !important;
  padding: 0px !important;
  line-height: 15px !important;
  border: none !important; }

.block input:focus, .block textarea:focus {
  padding: 5px 10px !important;
  border: #d2d2d2 solid 1px !important;
  line-height: 20px !important; }

.block {
  padding: 0 15px; }

.block .input-group {
  padding-bottom: 10px !important; }

.block .input-group select {
  margin-bottom: 15px; }

.block .checkbox-group {
  padding: 0px; }

.block-separator {
  height: 1px;
  border-top: 2px solid;
  border-color: #C4C4C4;
  padding-bottom: 15px; }

.block .button-group {
  height: 50px;
  padding-top: 0px !important; }

.block .button-group .btn {
  width: 100% !important; }

.block .rw {
  padding: 0 0px;
  width: 100%; }

.block .inline-col {
  padding-right: 0px;
  padding-left: 15px;
  line-height: 30px; }

.italic {
  font-style: italic; }

.customers-autocomplete {
  position: relative; }

.customers-autocomplete ul.list {
  position: absolute;
  top: 30px;
  background: white;
  width: 100%;
  z-index: 100;
  border: 1px solid #D2D2D2;
  border-top: 0; }

.customers-autocomplete ul.list div.list {
  overflow-y: auto;
  max-height: 150px; }

.customers-autocomplete ul.list div.new {
  line-height: 1.8;
  padding: 0 10px;
  border-top: 1px solid #D2D2D2; }

.customers-autocomplete ul.list div.new:hover {
  background: #eee;
  cursor: pointer; }

.customers-autocomplete ul.list a {
  display: block;
  color: #333333;
  line-height: 1.8;
  padding: 0 10px;
  text-decoration: none !important; }

.customers-autocomplete ul.list a:hover {
  background: #eee; }

.customers-autocomplete input {
  /*border: none !important;*/
  padding: 0 !important;
  line-height: 1 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  transition: padding 0.2s, line-height 0.2s, height 0.2s;
  box-shadow: none !important; }

/*.customers-autocomplete input:hover {*/
/*border: #eee solid 1px !important;*/
/*padding: 5px 10px !important;*/
/*line-height: 20px !important;*/
/*}*/
.customers-autocomplete input:focus {
  padding: 5px 10px !important;
  border: #d2d2d2 solid 1px !important;
  line-height: 20px !important; }

.custom-input button {
  line-height: 16px !important;
  margin: 0px; }

.custom-input .input-group {
  display: table !important;
  padding: 0px !important; }

.custom-input input {
  border: none !important; }

.custom-input .input-group-btn {
  vertical-align: top !important; }

.customers-autocomplete div.disable {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  z-index: 100; }

.spinner.select.customers-autocomplete {
  padding-top: 35px;
  right: 30px; }

.input-group:not(.has-dropdown) {
  overflow: visible; }

.input-group.no-bottom-spacing {
  padding-bottom: 0 !important; }

.no-bottom-spacing {
  padding-bottom: 0 !important; }

a.new-version {
  text-decoration: underline;
  color: inherit;
  font-size: 1.1em;
  font-weight: bold; }

a.delete-version {
  text-decoration: underline;
  color: inherit;
  font-size: 1.1em; }

.new-modal.version-unsaved a.btn {
  width: calc(33.3% - 15px);
  margin: 5px;
  height: 30px;
  line-height: 30px;
  display: inline-block; }

/*New sketch controls*/
.panel-map .sketch-controls {
  width: 100%;
  padding-bottom: 35px; }

.panel-map .sketch-controls ul.controls {
  display: block;
  margin: 0 auto; }

.panel-map .sketch-controls ul.controls a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: url(../images/sketch-controls.jpg) no-repeat; }

.panel-map .sketch-controls ul.controls a.disabled {
  opacity: 0.6; }

.panel-map .sketch-controls ul.controls a.select {
  background-position: 0 0; }

.panel-map .sketch-controls ul.controls a.line {
  background-position: -47px 0; }

.panel-map .sketch-controls ul.controls a.ellipse {
  background-position: -94px 0; }

.panel-map .sketch-controls ul.controls a.copy {
  background-position: -162px 0;
  margin-left: 7px; }

.panel-map .sketch-controls ul.controls a.paste {
  background-position: -209px 0; }

.panel-map .sketch-controls ul.controls a.undo {
  background-position: -254px 0; }

.panel-map .sketch-controls ul.controls a.delete {
  background-position: -321px 0;
  margin-left: 7px; }

.panel-map .sketch-controls .dropdown {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
  z-index: 100; }

.panel-map .sketch-controls .dropdown ul {
  position: absolute;
  background: #9B9B9B;
  border: 1px solid #ABAEB0;
  margin-top: 2px;
  display: none;
  top: 48px;
  margin-left: 3px;
  width: 110px; }

.panel-map .sketch-controls .dropdown ul.show {
  display: block; }

.panel-map .sketch-controls .dropdown ul a {
  display: block;
  width: 100%;
  line-height: 2.5;
  padding: 0 10px;
  background: #9B9B9B !important;
  height: auto;
  margin: 0;
  font-size: 1.1em;
  text-align: left;
  color: white !important;
  text-decoration: none !important;
  overflow: hidden;
  padding: 5px 10px; }

.unclassified-object {
  display: inline-block;
  width: 208px;
  height: 203px;
  background: url(../images/unclassified-object.jpg) no-repeat; }

/*styles for new version modal content*/
.new-modal.new-version {
  padding: 10px;
  text-align: left; }

.new-modal.new-version .input-group {
  display: block; }

.new-modal.new-version .input-group label {
  text-transform: uppercase;
  color: #606060; }

.new-modal.new-version .input-group input[type='text'], .new-modal.new-version .input-group textarea {
  border: 1px solid #D2D2D2;
  width: 100%;
  padding: 3px;
  font-size: 1em; }

.new-modal.new-version .input-group textarea {
  height: 75px;
  resize: none; }

.new-modal.new-version .btn {
  width: calc(50% - 22px);
  margin: 0 10px;
  line-height: 30px;
  height: 30px;
  display: inline-block; }

.new-modal.new-version form .input-group .error {
  color: red; }

@media (min-width: 768px) {
  .modal-sm-plus {
    width: 320px; } }

tr.hover-pointer:hover {
  cursor: pointer;
  background: #eee !important; }

.symbol-circle {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 0px;
  background: #E6E6E6;
  border: 1px solid #666;
  color: #666;
  text-align: center;
  font: 14px Arial, sans-serif;
  font-weight: bold; }

#layoutObjectListTable tr:nth-child(even) {
  background-color: #DEDEDE; }

.new-modal.version-delete-confirmation a.btn {
  width: calc(50% - 22px);
  margin: 0 10px;
  line-height: 35px;
  height: 35px;
  display: inline-block; }

.can-varies {
  position: relative;
  /*margin-bottom: 5px;*/ }

.can-varies.varies input[type='text'], .can-varies.varies textarea {
  margin-bottom: 0 !important;
  background: transparent; }

.can-varies::after {
  content: 'varies';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: white;
  z-index: 2;
  padding: 6px 11px;
  line-height: 23px;
  display: none;
  margin: 2px; }

.can-varies.varies::after {
  display: block !important; }

#notification-list {
  display: block !important; }

.demo-map {
  height: 100%; }

footer {
  position: absolute;
  z-index: 10;
  width: 100%; }

footer p {
  margin: 0 !important; }

/*.page-container {*/
/*height: calc(100% - 32px) !important;*/
/*}*/
.page-content {
  height: 100% !important; }

.form-control.object-type {
  border-radius: 2px;
  min-height: 37px; }

/*Advanced dropdown*/
.advanced-select {
  position: relative;
  color: #444; }

.advanced-select span.advanced-select-selected {
  cursor: pointer;
  display: block;
  background-image: none;
  border-radius: 2px;
  border: 1px solid #e5e9ec;
  padding: 0 9px;
  transition: border .2s linear 0s;
  height: 35px;
  line-height: 33px;
  min-width: 100px; }

.topbar .advanced-select span.advanced-select-selected {
  min-height: 30px;
  height: 30px;
  line-height: 30px; }

.advanced-select span.advanced-select-selected.active {
  background: #f4f5f7; }

.advanced-select span.advanced-select-selected .glyphicon {
  float: right;
  line-height: 33px;
  font-size: 10px;
  padding-left: 10px; }

.advanced-select .advanced-select-dropdown {
  position: absolute;
  left: 0;
  top: 35px;
  border: 1px solid #e5e9ec;
  border-bottom: none;
  border-top: none;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 20;
  margin-top: -1px;
  background: white;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  width: 100%; }

.create-report-modal .advanced-select .advanced-select-dropdown {
  position: initial; }

.advanced-select .advanced-select-dropdown .advanced-select-searchbox {
  padding: 8px; }

.advanced-select .advanced-select-dropdown .advanced-select-searchbox input {
  background: #fffeff !important;
  vertical-align: baseline;
  line-height: 28px;
  border-radius: 2px;
  font-size: 12px;
  border: 1px solid #f1f1f1;
  width: 100%; }

.advanced-select .advanced-select-dropdown ul.advanced-select-list {
  max-height: 200px;
  overflow: auto;
  margin: 3px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: transparent; }

.topbar .advanced-select .advanced-select-dropdown ul.advanced-select-list {
  max-height: 200px;
  overflow: auto;
  margin: 3px 3px 10px 3px !important;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: transparent; }

.advanced-select .advanced-select-dropdown ul.advanced-select-list li {
  cursor: pointer;
  display: block;
  color: #6F7B8A;
  list-style: none;
  display: list-item;
  background-image: none;
  padding: 3px 10px 4px;
  line-height: 20px;
  min-height: 1em; }

.advanced-select .advanced-select-dropdown ul.advanced-select-list li:hover,
.advanced-select .advanced-select-dropdown ul.advanced-select-list li.selected {
  background: #416af0;
  border-radius: 3px;
  color: #fff; }

.advanced-select .advanced-select-dropdown ul.advanced-select-list li span.advanced-select-highlight {
  text-decoration: underline; }

.advanced-select.disabled span.advanced-select-selected {
  background: #eee;
  color: #aaa; }

.tab-pane .advanced-select {
  margin-bottom: 1rem; }

.tab-pane {
  overflow: hidden; }

.export.disabled {
  background: #f5f5f5 !important;
  color: #ccc !important; }

.welcome-modal .btn-block {
  height: 36px; }

/*create report modal styles*/
.tab-content > .active,
.pill-content > .active {
  display: block;
  padding: 19px; }

.tab-content > .tab-pane, .pill-content > .pill-pane {
  display: none;
  padding: 15px; }

.wizard .tab-pane {
  position: relative; }

.create-report-modal .btn-success {
  padding: 9px 12px !important;
  padding-top: 7px !important; }

.create-report-modal .panel {
  margin-bottom: 20px; }

.pagination.compact ul {
  box-shadow: none;
  font-size: 12px;
  padding: 0; }

.pagination.compact ul > li {
  display: inline-block;
  padding-left: 0; }

.pagination.compact ul > li > a {
  padding: 5px 10px; }

.pagination.compact ul > li.next > a:hover {
  background-color: #fffeff;
  color: #000; }

.pagination.compact ul > li.next.disabled > a:hover {
  color: #C2C6CB;
  opacity: .65;
  background-color: #fffeff; }

.pagination.compact ul > li.prev > a:hover {
  background-color: #fffeff;
  color: #000; }

.pagination.compact ul > li.prev.disabled > a:hover {
  color: #C2C6CB;
  opacity: .65;
  background-color: #fffeff; }

.pagination.compact ul > li:last-child > a,
.pagination.compact ul > li:last-child > span {
  margin-left: 8px; }

.pagination.compact ul > li > a,
.pagination ul > li > span {
  border: none;
  box-shadow: none;
  border-radius: 3px;
  color: #6F7B8A; }

.pagination.compact ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #C2C6CB !important;
  opacity: .65 !important;
  background-color: #fffeff !important; }

.pagination.compact ul > .active > a,
.pagination ul > .active > span {
  background-color: #F3F6F9;
  font-weight: 600; }

.pagination.compact ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #e8edf3; }

.pagination.compact.table-pagination {
  float: right;
  margin: 0;
  margin-left: 8px; }

.transition.ng-enter,
.transition.ng-leave {
  -webkit-transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -moz-transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -ms-transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  -o-transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all;
  transition: 300ms cubic-bezier(0.25, 0.25, 0.75, 0.75) all; }

.transition.ng-enter {
  left: 100%; }

.transition.ng-enter.ng-enter-active {
  left: 0; }

.transition.ng-leave {
  left: 0; }

.transition.ng-leave.ng-leave-active {
  left: -100%; }

.namelike.selected, .namelike.selected:focus {
  color: white;
  background-color: #416af0; }

.namelike.selected:hover {
  color: white;
  background-color: #708ff4; }

.loading-status {
  background: white;
  width: 400px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -100px;
  margin-left: -200px;
  text-align: center; }

.loading-status .loading-content {
  overflow: hidden;
  margin: 10px;
  border: 1px solid #D2D2D2; }

.loading-status .loading-content .info {
  font-size: 1.1em; }

/*brian's design fix*/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body.open-menu-right .page-container {
    position: relative;
    left: 0px !important; }
  body.open-menu-right .header {
    left: 0px !important; }
  body.open-menu-right .footer-widget {
    left: 0px !important; }
  body.open-menu-right .page-content .admin-bar {
    left: 0px !important; }
  body.open-menu-left .page-container {
    position: relative;
    right: 0px !important; }
  body.open-menu-left .header {
    right: 0px !important; }
  body.open-menu-left .footer-widget {
    right: 0px !important; }
  body.open-menu-left .page-content .admin-bar {
    right: 0px !important; } }

.moving,
.moving * {
  cursor: url(https://maps.gstatic.com/mapfiles/closedhand_8_8.cur), move !important; }

.btn-tenk:active, .btn-tenk:focus {
  background: #ff6600 !important; }

@media (max-width: 767px) {
  .logo {
    margin-top: 0 !important; } }

@media (max-width: 767px) {
  .header-seperation {
    width: 100% !important; } }

.header .header-seperation {
  width: initial; }

.logo {
  max-width: 150px; }

@media (min-width: 600px) {
  .logo.tenk {
    max-width: initial; } }

.btn-group.btn-group-sm .btn.btn-success {
  border: 1px solid #416af0;
  padding: 5px 10px; }
  .btn-group.btn-group-sm .btn.btn-success:hover {
    border: 1px solid #708ff4; }

.btn-group.btn-group-sm .btn.btn-success:focus {
  border: 1px solid #708ff4; }

.btn-group .btn.btn-default {
  border: 1px solid #e5e9ec;
  background: white; }

.btn-group .btn.btn-default:focus {
  color: black; }

/*
.btn.btn-success {
  padding: 0;
  border: none;
}
*/
.center-align {
  text-align: center; }

i.fa.centered {
  padding-top: 15px !important; }

i.fa.inactive {
  color: #ccc; }

.material-icons {
  vertical-align: middle; }

i.material-icons.centered {
  padding-top: 17px !important; }

i.material-icons.inactive {
  color: #ccc; }

.subscription-plan-compare-modal h4 {
  text-align: left;
  font-weight: bold;
  font-size: 2em; }

.subscription-plan-compare-modal .plan {
  overflow: hidden;
  padding: 15px;
  font-size: 1.2em;
  line-height: 2; }

.subscription-plan-compare-modal .plan.current {
  color: #ccc; }

.subscription-plan-compare-modal .plan.ongoing {
  background: #eee;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc; }

.btn.btn-default:hover, .btn.btn-default:focus, .btn.btn-default:active, .btn.btn-default.active, .btn.btn-default.disabled, .btn.btn-default[disabled] {
  background-color: #e9ecee !important;
  color: #6f7b8a !important; }

.content .panel-value {
  border-color: #416af0 !important; }

.map-distance-label {
  position: absolute;
  background: #1060ff;
  border-radius: 8px;
  font-size: 1em;
  padding: 0.1em 0.3em;
  color: white;
  pointer-events: none;
  opacity: 0.8;
  white-space: nowrap; }

.map-draw-distance-label {
  position: absolute;
  background: black;
  border-radius: 8px;
  font-size: 1em;
  padding: 0.1em 0.3em;
  color: white;
  pointer-events: none;
  white-space: nowrap; }

a.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed; }

.table-hover.hover-yellow > tbody > tr:hover > td {
  background-color: #f1eeb4; }

.btn-text {
  font-size: 1em !important;
  font-weight: bold !important;
  width: auto !important; }

.dropdown-menu.pull-center {
  right: auto;
  left: 50%;
  transform: translateX(-50%); }

.dropdown-menu.text-right > li > a {
  text-align: right !important; }

.btn.btn-xs {
  padding: 5px 12px; }

.btn.btn-borderless {
  padding-bottom: 7px; }

.layoutControlCanvas {
  position: absolute;
  pointer-events: none; }

.no-wrap {
  white-space: nowrap; }

.zEWidget-launcher {
  z-index: 1000 !important; }

input[g-places-autocomplete] {
  display: block !important; }

.cost-row {
  display: flex;
  align-items: center; }
  .cost-row .exchange {
    display: flex;
    justify-content: center; }

.top-controls {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: auto;
  position: absolute;
  padding: 10px; }
  .top-controls .interaction-modes {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    z-index: 1; }
    .top-controls .interaction-modes .interaction-mode {
      border-radius: 3px;
      transition: max-width .3s ease;
      background: #fffeff;
      margin-right: 5px; }
      .top-controls .interaction-modes .interaction-mode a {
        height: 50px;
        display: inline-block;
        color: #6f7b8a;
        text-decoration: none;
        border-radius: 3px; }
        .top-controls .interaction-modes .interaction-mode a i {
          width: 50px;
          height: 50px;
          font-size: 14pt;
          text-align: center;
          padding-top: 11px; }
      .top-controls .interaction-modes .interaction-mode a.snapping {
        -webkit-box-shadow: inset 0 0 0 3px #fffeff;
        -moz-box-shadow: inset 0 0 0 3px #fffeff;
        box-shadow: inset 0 0 0 3px #fffeff; }
      .top-controls .interaction-modes .interaction-mode a.guide {
        -webkit-box-shadow: inset 0 0 0 3px #00ff00;
        -moz-box-shadow: inset 0 0 0 3px #00ff00;
        box-shadow: inset 0 0 0 3px #00ff00; }
      .top-controls .interaction-modes .interaction-mode a.square-roofs {
        background-color: #595959 !important; }
      .top-controls .interaction-modes .interaction-mode a:hover {
        background: rgba(0, 0, 0, 0.09);
        color: #6f7b8a; }
      .top-controls .interaction-modes .interaction-mode a.active {
        background: #416af0;
        color: #fffeff; }
      .top-controls .interaction-modes .interaction-mode a.active:hover {
        background: #708ff4;
        color: #fffeff; }

@font-face {
  font-family: "pvcomplete";
  src: url("../fonts/pvcomplete.eot");
  src: url("../fonts/pvcomplete.eot?#iefix") format("embedded-opentype"), url("../fonts/pvcomplete.woff") format("woff"), url("../fonts/pvcomplete.ttf") format("truetype"), url("../fonts/pvcomplete.svg#pvcomplete") format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "pvcomplete" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "pvcomplete" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.2rem; }

.icon-circle-2:before {
  content: "\66"; }

.icon-cursor:before {
  content: "\6c"; }

.icon-object-group:before {
  content: "\6d"; }

.icon-object-ungroup:before {
  content: "\6e"; }

.icon-circle:before {
  content: "\59"; }

.icon-object:before {
  content: "\31"; }

.icon-paste:before {
  content: "\29"; }

.icon-delete-1:before {
  content: "\2a"; }

.icon-pin:before {
  content: "\2e"; }

.icon-settings:before {
  content: "\3a"; }

.icon-roof:before {
  content: "\3c"; }

.icon-radio-filled:before {
  content: "\3f"; }

.icon-radio-empty:before {
  content: "\40"; }

.icon-down:before {
  content: "\7e"; }

.icon-right:before {
  content: "\5c"; }

.icon-left:before {
  content: "\e000"; }

.icon-up:before {
  content: "\e001"; }

.icon-notice:before {
  content: "\e002"; }

.icon-delete-2:before {
  content: "\e00f"; }

.icon-new:before {
  content: "\e012"; }

.icon-copy:before {
  content: "\e018"; }

.icon-export:before {
  content: "\e01b"; }

.icon-open:before {
  content: "\e021"; }

.icon-undo:before {
  content: "\e022"; }

.icon-save-as-1:before {
  content: "\63"; }

.icon-save-as:before {
  content: "\68"; }

.icon-obstruction:before {
  content: "\6b"; }

.icon-obstruction-1:before {
  content: "\6f"; }

.icon-save:before {
  content: "\70"; }

.icon-menu:before {
  content: "\61"; }

.icon-sun:before {
  content: "\62"; }

.icon-pointer:before {
  content: "\65"; }

.icon-ellipsis-h:before {
  content: "\64"; }

.icon-ellipsis-v:before {
  content: "\67"; }

.icon-generate:before {
  content: "\6a"; }

.icon-add:before {
  content: "\69"; }

.icon-line-3:before {
  content: "\71"; }

.icon-line-2:before {
  content: "\72"; }

.icon-line:before {
  content: "\73"; }

.icon-circle-1:before {
  content: "\74"; }

.icon-bill:before {
  content: "\76"; }

.icon-cash:before {
  content: "\78"; }

.icon-cash-1:before {
  content: "\79"; }

.spin {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 30000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 30000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 30000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 30000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0; }

[class^="icon-"],
[class*=" icon-"],
[class^="icon-"]:hover,
[class*=" icon-"]:hover {
  background: none !important; }

@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg); }
  to {
    -ms-transform: rotate(360deg); } }

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg); }
  to {
    -moz-transform: rotate(360deg); } }

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.welcome.fa-sun-o::before {
  color: #fbb05e;
  -webkit-animation: pulsate 5s linear infinite;
  -moz-animation: pulsate 5s linear infinite;
  -ms-animation: pulsate 5s linear infinite;
  animation: pulsate 5s linear infinite; }

@-webkit-keyframes pulsate {
  0% {
    color: #F5D76E; }
  20% {
    color: #fbb05e; }
  40% {
    color: #FFA631; }
  60% {
    color: #FFA631; }
  80% {
    color: #fbb05e; }
  100% {
    color: #F5D76E; } }

@-moz-keyframes pulsate {
  0% {
    color: #F5D76E; }
  20% {
    color: #fbb05e; }
  40% {
    color: #FFA631; }
  60% {
    color: #FFA631; }
  80% {
    color: #fbb05e; }
  100% {
    color: #F5D76E; } }

@-ms-keyframes pulsate {
  0% {
    color: #F5D76E; }
  20% {
    color: #fbb05e; }
  40% {
    color: #FFA631; }
  60% {
    color: #FFA631; }
  80% {
    color: #fbb05e; }
  100% {
    color: #F5D76E; } }

@keyframes pulsate {
  0% {
    color: #F5D76E; }
  20% {
    color: #fbb05e; }
  40% {
    color: #FFA631; }
  60% {
    color: #FFA631; }
  80% {
    color: #fbb05e; }
  100% {
    color: #F5D76E; } }

:-moz-placeholder {
  color: #333843; }

::-moz-placeholder {
  color: #333843;
  opacity: .5; }

:-ms-input-placeholder {
  color: #333843; }

::-webkit-input-placeholder {
  color: #333843; }

.placeholder {
  color: #333843; }

html {
  font-size: 100%;
  height: 100%; }

body {
  direction: ltr;
  background-color: #fffeff;
  color: #6f7b8a;
  font-family: 'Open Sans', 'Arial';
  font-size: 13px;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1.5;
  font-style: normal;
  font-weight: normal;
  height: 100%; }

body input {
  font-family: 'Open Sans', 'Arial'; }

body.condense-menu .header-seperation {
  display: none; }

body.condense-menu .page-content {
  margin-left: 50px; }

body.condense-menu .footer-widget {
  display: none; }

body.condense-menu .scrollup {
  left: 34px; }

body.hide-top-content-header .header {
  width: auto; }

body.hide-top-content-header .header-quick-nav {
  display: none; }

body.hide-top-content-header .page-content .content {
  padding-top: 25px; }

body.hide-top-content-header .page-sidebar.mini .page-sidebar-wrapper > ul {
  padding: 0; }

body.hide-sidebar .header-seperation {
  display: none; }

body.hide-sidebar .page-sidebar {
  display: none; }

body.hide-sidebar .page-content {
  margin-left: 0; }

body.hide-sidebar .scrollup {
  left: 34px; }

body.menu-non-fixed .page-sidebar {
  position: absolute; }

body.right-side-bar .page-content {
  margin-right: 410px;
  margin-left: 0; }

body.right-side-bar .page-sidebar {
  z-index: 9;
  padding-top: 101px; }

body.right-side-bar .page-content.condensed {
  margin-left: 0;
  margin-right: 260px; }

body.right-side-bar .page-sidebar {
  right: 0; }

body.right-side-bar .header .header-seperation {
  float: right; }

body.right-side-bar .footer-widget {
  right: 0; }

body.bottom-header .header {
  bottom: 0; }

body.bottom-header .page-content .content {
  padding-top: 25px;
  padding-bottom: 83px; }

body.open-menu-right-desktop .page-container {
  position: relative;
  left: -260px; }

body.open-menu-right-desktop .header {
  left: -260px; }

body.open-menu-right-desktop .fonter-widget {
  display: none; }

body.open-menu-left-desktop .page-container {
  position: relative;
  right: -260px; }

body.open-menu-left-desktop .header {
  right: -260px; }

body.open-menu-left-desktop .fonter-widget {
  display: none; }

/*body.modal-open .page-container {
    position: inherit
}

body.modal-open .page-content {
    position: inherit
}*/
/*body.modal-open .chat-window-wrapper {*/
/*display: none*/
/*}*/
body.boxed-layout .footer-widget {
  display: none; }

.navbar,
.navbar-inverse {
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  border-bottom: solid 1px #e9ecee; }

.navbar .nav > li > .dropdown-menu::before {
  position: absolute;
  top: -7px;
  right: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #CCC;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: ''; }

.navbar .nav > li > .dropdown-menu::after {
  position: absolute;
  top: -6px;
  right: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  border-left: 6px solid transparent;
  content: ''; }

.navbar .notifications {
  background-color: #1B1E24;
  display: block;
  float: left;
  left: 0;
  margin: 0 10px 0 0;
  padding-top: 5px;
  position: relative; }

.header-seperation {
  background-color: #fffeff; }

.header {
  padding: 0 !important;
  margin: 0 !important;
  position: fixed;
  width: 100%;
  z-index: 999;
  min-height: 60px;
  left: 0;
  -webkit-backface-visibility: hidden;
  background-color: white; }

.header .navbar-inner {
  background-image: none !important;
  background-color: #fffeff !important;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  height: 60px; }
  .header .navbar-inner.navbar-sub {
    border-top: 1px solid #e9ecee;
    height: 40px; }
    .header .navbar-inner.navbar-sub .header-nav {
      margin-top: 0px; }
    .header .navbar-inner.navbar-sub .header-quick-nav {
      height: 40px; }
    .header .navbar-inner.navbar-sub .btn-header-nav {
      border-bottom: none;
      height: 40px;
      max-width: 90px; }

.header .navbar-inner [class*="span"] {
  min-height: 58px !important; }

.header .btn-navbar {
  background-color: #1f1f1f !important;
  margin-bottom: 0;
  padding-right: 0;
  padding-top: 10px;
  padding-bottom: 6px;
  background-image: none;
  box-shadow: none;
  color: #fffeff;
  border: 0; }

.header .btn-navbar:hover {
  text-decoration: none; }

.header .nav {
  display: block; }

.header .nav li.dropdown .dropdown-toggle i {
  padding-left: 10px; }

.header .nav li.dropdown.user .dropdown-toggle i {
  display: inline-block;
  margin-top: 5px;
  margin: 0;
  font-size: 16px;
  color: #808080 !important; }

.header .nav > li {
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
  float: left; }

.header .nav > li.dropdown .dropdown-toggle {
  margin: 0; }

.header .nav > li.dropdown .dropdown-toggle i {
  font-size: 15px;
  margin-left: auto;
  margin-right: auto; }

.header .nav > li.dropdown .dropdown-toggle .badge {
  position: absolute;
  font-size: 10px !important;
  font-weight: 700;
  top: 0;
  right: 2px;
  text-align: center;
  background-color: #f35958;
  padding: 4px 6px;
  -webkit-border-radius: 12px !important;
  -moz-border-radius: 12px !important;
  border-radius: 12px !important;
  text-shadow: none !important;
  color: #fffeff; }

.header .nav > li.dropdown .active {
  background-color: #0D0F12; }

.header .nav > li.dropdown.user .dropdown-toggle {
  padding: 8px 4px 7px 9px; }

.header .nav > li.dropdown.user .dropdown-toggle:hover {
  text-decoration: none; }

.header .nav > li.quicklinks i {
  display: inline-block;
  margin: 0;
  margin-top: 5px;
  font-size: 14px;
  color: #656565 !important; }

.header .nav > li.quicklinks a div.fa-bars::before {
  color: #6f7b8a; }

.header .nav > li.quicklinks > a {
  padding: 4px 2px !important; }

.header .nav .h-seperate {
  height: 6px;
  width: 2px;
  margin: 0 10px 0 10px;
  border-left: 1px solid #e1e1e1;
  display: inline;
  position: relative;
  top: 2px; }

.header .nav .dropdown-menu {
  margin-top: 3px; }

.header .header-seperation {
  /*width: 410px;*/
  display: block;
  float: left;
  height: 60px; }

.header .header-seperation .notifcation-center {
  margin-right: 15px !important; }

.header .header-quick-nav {
  padding-right: 10px;
  height: 60px;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  transition-property: transform, opacity; }

.header .header-quick-nav input {
  height: 12px !important; }

.header .notifcation-center {
  background-color: #fffeff;
  margin-top: 12px;
  margin-right: 15px !important;
  display: inline-flex;
  display: -ms-flexbox;
  direction: ltr; }

.header .notifcation-center li {
  min-width: 30px !important; }

.header .notifcation-center li a {
  color: #6f7b8a;
  padding: 10px !important;
  min-height: 17.5px; }

.header .notifcation-center li a i {
  font-size: 13px !important; }

.header a {
  text-decoration: none; }

.header .chat-toggler {
  position: relative;
  top: 10px;
  margin-right: 5px;
  display: inline-block;
  /*float: left;*/
  /*min-width: 163px*/ }

.header .chat-toggler .user-details {
  display: inline-block;
  float: left;
  line-height: 35px; }

.header .chat-toggler .user-details .username a {
  color: #1b1e24;
  font-size: 15px; }

.header .chat-toggler .user-details .company a {
  color: #8b8f92;
  font-weight: 400;
  text-align: right;
  font-size: 12px; }

.header .chat-toggler .acct-status {
  display: inline-block;
  float: left;
  margin-right: 1rem;
  line-height: 35px; }

.header .chat-toggler .acct-status .username a {
  color: #1b1e24;
  font-size: 15px; }

.header .chat-toggler .acct-status .company a {
  color: #8b8f92;
  font-weight: 400;
  text-align: right;
  font-size: 12px; }

.header .chat-toggler .iconset {
  display: inline-block;
  float: left;
  margin: 15px 10px; }

.header .chat-toggler .profile-pic {
  border-radius: 100px 100px 100px 100px;
  display: inline-block;
  height: 35px;
  overflow: hidden;
  width: 35px;
  float: left; }

.header .chat-toggler a {
  color: #1b1e24;
  font-size: 15px;
  display: inline-block;
  float: left; }

.header .chat-toggler > i {
  color: #808080;
  text-align: right;
  font-size: 20px;
  position: relative;
  padding: 8px;
  top: 8px; }

.header .chat-toggler .message-count {
  display: inline-block;
  float: left; }

.header .chat-toggler .message-count .badge {
  position: absolute;
  float: left;
  right: 0;
  top: 0; }

.header .chat-message-preview {
  border-left: 1px solid #e5e9ec;
  border-right: 1px solid #e5e9ec;
  padding: 4px 15px;
  margin-right: 12px; }

.header .chat-message-preview .user-details {
  display: inline-block;
  float: left; }

.header .chat-message-preview .user-details .username a {
  color: #22262e;
  font-weight: 600;
  text-align: right; }

.header .chat-message-preview .profile-pic {
  border-radius: 100px 100px 100px 100px;
  display: inline-block;
  float: left;
  height: 35px;
  overflow: hidden;
  width: 35px;
  margin-left: 10px; }

.header .chat-message-preview a {
  color: #6F7B8A; }

.header .chat-message-preview .chat-message {
  color: #8b8f92;
  background-color: #e5e9ec;
  padding: 5px;
  font-size: 12px;
  border-radius: 3px; }

.header .quick-section {
  margin-left: 20px;
  margin-top: 16px;
  margin-right: 10px;
  display: inline-block;
  float: left;
  direction: ltr; }

.header .search-form {
  display: inline-block;
  float: left;
  margin-left: 25px !important;
  top: -4.5px;
  position: relative; }

.header .popover-title {
  border-bottom: 0;
  padding-top: 14px; }

.menu-title {
  color: #808285;
  font-size: 10.5px;
  padding-left: 31px;
  padding-right: 31px;
  padding-top: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .2px; }

.menu-active {
  color: #416af0 !important; }

.menu-title a {
  color: #808285; }

.menu-title a:hover {
  text-decoration: none; }

.menu-title i {
  font-size: 10px;
  font-weight: normal; }

.page-sidebar {
  background-color: #fffeff !important;
  height: 100%;
  font-family: 'Open Sans';
  -webkit-backface-visibility: hidden; }

.page-sidebar.full-length {
  padding-bottom: 57px; }

.page-sidebar .outer-tab-nav-section {
  display: inline-block;
  width: 45px;
  position: absolute;
  height: 100%;
  background-color: #0aa699 !important; }

.page-sidebar .inner-menu {
  display: inline-block;
  width: 200px; }

.page-sidebar .inner-menu ul {
  width: 200px; }

.page-sidebar .page-sidebar-wrapper {
  position: relative;
  overflow-y: auto; }

.page-sidebar .page-sidebar-wrapper > ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.page-sidebar .page-sidebar-wrapper > ul > li {
  display: block;
  margin: 0;
  padding: 0;
  border: 0; }

.page-sidebar .page-sidebar-wrapper > ul > li > a {
  color: #6f7b8a;
  display: block;
  position: relative;
  margin: 0;
  border: 0;
  padding: 11.5px 31px 11.5px 31px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
  border-bottom: 1px solid #e9ecee; }

.page-sidebar .page-sidebar-wrapper > ul > li > a.open {
  background: #313131; }

.page-sidebar .page-sidebar-wrapper > ul > li > a i {
  font-size: 14px;
  margin-right: 5px;
  text-shadow: none; }

.page-sidebar .page-sidebar-wrapper > ul > li > a > .arrow.open:before {
  float: right;
  margin-top: 1px;
  margin-right: 3px;
  display: inline;
  font-family: FontAwesome;
  height: auto;
  font-size: 16px;
  content: "\f107";
  font-weight: 300;
  text-shadow: none; }

/*.page-sidebar .page-sidebar-wrapper>ul>li:last-child>a {*/
/*border-bottom: 1px solid transparent !important*/
/*}*/
.page-sidebar .page-sidebar-wrapper > ul > li a i {
  color: #6f7b8a;
  width: 20px;
  text-align: center;
  display: inline-block; }

.page-sidebar .page-sidebar-wrapper > ul > li.active > a {
  border-top-color: transparent !important;
  color: #fffeff;
  border: none;
  text-shadow: none; }

.page-sidebar .page-sidebar-wrapper > ul > li.active > a i {
  color: #fffeff; }

.page-sidebar .page-sidebar-wrapper > ul > li.active i {
  color: #fffeff; }

.page-sidebar .page-sidebar-wrapper > ul > li.active > ul.sub-menu {
  display: block; }

.page-sidebar .page-sidebar-wrapper > ul > li.active > ul.sub-menu > li ul.sub-menu {
  display: block; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu {
  display: none;
  list-style: none;
  clear: both;
  margin: 0;
  background-color: #e0e5e7;
  padding: 8px 0 10px 0; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li {
  background: none;
  margin: 0;
  padding: 0;
  margin-top: 1px !important; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li > a {
  margin-left: 0;
  padding-left: 5px;
  display: block;
  margin: 0 0 0 0;
  padding: 5px 0;
  padding-left: 53px !important;
  color: #e1eaf1;
  text-decoration: none;
  text-shadow: 0 1px 1px #000;
  font-size: 13px;
  font-weight: 300;
  background: none; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li > a:hover {
  background: #fffeff !important; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li:first-child > a {
  border-top: 0 !important; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li ul.sub-menu {
  display: none;
  list-style: none;
  clear: both;
  margin: 0 0 0 0;
  padding-left: 0; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li ul.sub-menu li {
  background: none;
  margin: 0;
  padding: 0; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li > ul.sub-menu > li > a {
  margin-left: 70px; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li > ul.sub-menu > li > ul.sub-menu > li > a {
  padding-left: 80px; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu li > a > .arrow:before {
  float: right;
  margin-top: 1px;
  margin-right: 20px;
  display: inline;
  font-size: 16px;
  font-family: FontAwesome;
  height: auto;
  content: "\f104";
  font-weight: 300;
  text-shadow: none; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu li > a > .arrow.open:before {
  float: right;
  margin-top: 1px;
  margin-right: 18px;
  display: inline;
  font-family: FontAwesome;
  height: auto;
  font-size: 16px;
  content: "\f107";
  font-weight: 300;
  text-shadow: none; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu li > ul.sub-menu > li > a {
  display: block;
  padding: 5px 0;
  color: #ccc;
  text-decoration: none;
  text-shadow: 0 1px 1px #000;
  font-size: 13px;
  font-weight: 300; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu li > ul.sub-menu > li > a > i {
  font-size: 13px; }

.page-sidebar .page-sidebar-wrapper > ul > li.start > a {
  border-top-color: transparent !important; }

.page-sidebar.mini {
  width: 50px;
  overflow: visible !important;
  background-color: #0aa699 !important;
  height: 100%;
  margin-top: 0;
  position: fixed;
  z-index: 90; }

.page-sidebar.mini .page-sidebar-wrapper > ul {
  width: 50px;
  padding: 60px 0 0; }

.page-sidebar.mini .page-sidebar-wrapper > ul > li > ul.sub-menu {
  position: absolute;
  margin-top: -46px;
  margin-left: 50px;
  width: auto;
  z-index: 110;
  min-width: 250px; }

.page-sidebar.mini .page-sidebar-wrapper > ul > li > a {
  padding: 13px;
  color: #416af0; }

.page-sidebar.mini .page-sidebar-wrapper > ul > li a i {
  color: #416af0; }

.page-sidebar.mini .page-sidebar-wrapper > p {
  display: none; }

.page-sidebar.mini .page-sidebar-wrapper > .side-bar-widgets {
  display: none; }

.page-sidebar.mini .user-info {
  display: none; }

.page-sidebar.mini .status-widget {
  display: none; }

.page-sidebar.mini .notification-alert {
  display: none; }

.page-sidebar.mini ul li span.title {
  display: none; }

.page-sidebar.mini ul li span.arrow {
  display: none; }

.page-sidebar.mini ul li span.badge {
  display: none; }

.page-sidebar.mini ul li ul li span.title {
  display: inline; }

.page-sidebar.mini ul li ul li span.arrow {
  display: inline; }

.page-sidebar.mini ul.big-items span.badge {
  display: inline-block; }

.page-sidebar.mini ul.small-items span.badge {
  display: inline-block; }

.page-sidebar.mini .profile-wrapper {
  display: none; }

.page-sidebar.mini .footer-widget {
  display: none; }

.page-sidebar ul.folders {
  list-style: none;
  margin: 0;
  padding: 0; }

.page-sidebar ul.folders > li {
  border: 0 none;
  display: block;
  margin: 0;
  padding: 0; }

.page-sidebar ul.folders > li > a {
  padding: 5px 31px;
  font-size: 13px;
  color: #416af0;
  display: block;
  position: relative; }

.page-sidebar ul.folders > li > a:hover {
  text-decoration: none; }

.page-sidebar ul.folders > li > input {
  margin: 5px 31px;
  font-size: 13px;
  width: 150px; }

.page-sidebar ul > li > a > .arrow:before {
  float: right;
  margin-top: 1px;
  margin-right: 5px;
  display: inline;
  font-size: 16px;
  font-family: FontAwesome;
  height: auto;
  content: "\f104";
  font-weight: 300;
  text-shadow: none; }

.nav-collapse.collapse {
  height: 100% !important; }

.page-sidebar .page-sidebar-wrapper > ul > li.open > a,
.page-sidebar .page-sidebar-wrapper > ul > li > a:hover,
.page-sidebar .page-sidebar-wrapper > ul > li:hover > a {
  background: #e0e5e7;
  color: #fffeff; }

.page-sidebar.mini .page-sidebar-wrapper > ul > li a > .label {
  display: none; }

.page-sidebar.mini .page-sidebar-wrapper > ul > li.open > a,
.page-sidebar.mini .page-sidebar-wrapper > ul > li > a:hover,
.page-sidebar.mini .page-sidebar-wrapper > ul > li:hover > a {
  background: #0b9c8f; }

.page-sidebar.mini .page-sidebar-wrapper > ul > li > a:hover,
.page-sidebar.mini .page-sidebar-wrapper > ul > li:hover > a {
  background: #0b9c8f; }

.page-sidebar.mini .page-sidebar-wrapper > ul > li.active > a i,
.page-sidebar .page-sidebar-wrapper > ul > li:hover > a i {
  color: #fffeff !important; }

.page-sidebar .page-sidebar-wrapper ul > li > a > .arrow:before,
.page-sidebar .page-sidebar-wrapper > ul > li > a > .arrow.open:before {
  color: #919091 !important; }

.page-sidebar .page-sidebar-wrapper ul > li.active > a .arrow:before,
.page-sidebar .page-sidebar-wrapper > ul > li.active > a .arrow.open:before {
  color: #fffeff !important; }

.page-sidebar .page-sidebar-wrapper ul > li.open > a i,
.page-sidebar .page-sidebar-wrapper > ul > li.open > a i {
  color: #fffeff !important; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li.active > a,
.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li > a:hover {
  color: #fffeff !important; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu li > ul.sub-menu > li.active > a,
.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu li > ul.sub-menu > li > a:hover,
.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu li.open > a {
  color: #fffeff !important; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu a .arrow:before,
.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu a .arrow.open:before {
  color: #919091 !important; }

.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu > li.active > a {
  font-weight: 600; }

.header .nav > li.dropdown,
.header .nav > li.dropdown > a {
  text-align: center; }

.header .nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #fffeff; }

.open {
  position: relative; }

.navbar .pull-right > li.open > .dropdown-menu,
.navbar .nav > li.open > .dropdown-menu.pull-right {
  margin-right: -10px;
  margin-top: 7px; }

.pace .pace-activity {
  top: 72px;
  border-top-color: #0aa699;
  border-left-color: #0aa699;
  right: 15px;
  left: auto; }

.pace .pace-progress {
  background: #0aa699; }

.pace .pace-progress-inner {
  box-shadow: 0 0 10px #0aa699, 0 0 5px #0aa699; }

.no-top .pace .pace-activity {
  top: 10px; }

.loading-animator {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  -webkit-animation: pace-spinner 400ms linear infinite;
  -moz-animation: pace-spinner 400ms linear infinite;
  -ms-animation: pace-spinner 400ms linear infinite;
  -o-animation: pace-spinner 400ms linear infinite;
  animation: pace-spinner 400ms linear infinite;
  border-color: rgba(0, 0, 0, 0.4) transparent transparent rgba(0, 0, 0, 0.4);
  border-image: none;
  border-radius: 10px 10px 10px 10px;
  border-right: 2px solid transparent;
  border-style: solid;
  border-width: 2px;
  display: block;
  height: 14px;
  margin-left: 40%;
  width: 14px;
  z-index: 2000; }

.page-container {
  -webkit-transition: -webkit-transform .3s ease, left .3s ease, right .3s ease;
  transition: transform .3s ease, left .3s ease, right .3s ease;
  margin: 0;
  padding: 0;
  position: relative;
  height: 100%;
  left: 0;
  z-index: 10;
  overflow: auto; }

.chat-window-wrapper {
  font-family: 'Arial';
  font-size: 13px;
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  background-color: #416af0;
  height: 100%;
  z-index: 5; }

.chat-window-wrapper .inner-content {
  height: 100%;
  overflow: hidden; }

.chat-window-wrapper .chat-header {
  height: 58px; }

.side-widget {
  font-family: 'Open Sans'; }

.chat-window-wrapper .side-widget {
  margin-top: 15px;
  margin-bottom: 100px;
  display: block; }

.chat-window-wrapper .side-widget-title {
  color: #808285;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2px;
  padding-left: 31px;
  padding-right: 31px;
  text-transform: uppercase;
  line-height: 2; }

.chat-window-wrapper .side-widget-content {
  display: block; }

.chat-window-wrapper .side-widget-content ul.groups {
  list-style: none;
  margin: 0;
  margin-top: 10px;
  padding-left: 0; }

.chat-window-wrapper .side-widget-content ul.groups li {
  line-height: 25px; }

.chat-window-wrapper .side-widget-content ul.groups > li > a {
  color: #416af0;
  font-size: 13px;
  padding: 5px 31px; }

.chat-window-wrapper .side-widget-content ul.groups > li > a:hover {
  text-decoration: none; }

.chat-window-wrapper .user-details-wrapper {
  display: block;
  margin: 8px;
  padding: 10px;
  border-radius: 3px; }

.chat-window-wrapper .user-details-wrapper .status-icon {
  margin-right: 0; }

.chat-window-wrapper .user-details-wrapper.active {
  background-color: #372b32; }

.chat-window-wrapper .user-details-wrapper.active:hover {
  background-color: #482f36;
  cursor: pointer; }

.chat-window-wrapper .user-details-wrapper:hover {
  background-color: #e0e5e7;
  cursor: pointer; }

.chat-window-wrapper .user-details-wrapper > .user-profile {
  display: inline-block;
  float: left;
  border-radius: 100px 100px 100px 100px;
  height: 35px;
  overflow: hidden;
  width: 35px;
  margin-right: 13px; }

.chat-window-wrapper .user-details-wrapper > .user-details {
  display: inline-block;
  float: left; }

.chat-window-wrapper .user-details-wrapper > .user-details > .user-name {
  display: block;
  color: #fffeff; }

.chat-window-wrapper .user-details-wrapper > .user-details > .user-more {
  display: block;
  color: #747b89;
  font-size: 11px;
  width: 120px; }

.chat-window-wrapper .chat-messages {
  position: relative;
  overflow: auto;
  height: calc(100% - 155px); }

.chat-window-wrapper .chat-messages .user-details-wrapper {
  padding: 6px; }

.chat-window-wrapper .chat-messages .user-details-wrapper:hover {
  background-color: #22262e;
  cursor: auto; }

.chat-window-wrapper .user-details-status-wrapper {
  display: inline-block;
  float: left;
  min-width: 32px;
  margin-top: 8px; }

.chat-window-wrapper .user-details-count-wrapper {
  display: inline-block;
  float: left;
  margin-top: 8px; }

.sidr {
  background-color: #fffeff;
  box-shadow: none; }

.sidr ul.chat-window li {
  border: 0; }

.sidr ul.chat-window li:nth-child(odd) {
  background-color: #fffeff; }

.sidr ul.chat-window li:nth-child(even) {
  background-color: #f5f6f8; }

.sidr ul.chat-window li:hover > a,
.sidr ul.chat-window li:hover > span,
.sidr ul.chat-window li.active > a,
.sidr ul.chat-window li.active > span,
.sidr ul.chat-window li.sidr-class-active > a,
.sidr ul.chat-window li.sidr-class-active > span {
  box-shadow: none;
  background-color: #fed8db;
  line-height: 16px; }

.scrollup {
  background-position: 0 0;
  width: 27px;
  height: 27px;
  position: fixed;
  bottom: 92px;
  left: 235px;
  display: none;
  text-indent: -9999px;
  z-index: 101; }

.scrollup:hover {
  background-position: -30px 0; }

.scrollup.to-edge {
  left: 35px; }

.footer-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 11px 21px;
  background-color: #e0e5e7;
  width: 250px;
  clear: both;
  -webkit-transition: -webkit-transform .3s ease;
  transition: transform .3s ease; }

.footer-widget .progress {
  position: relative;
  top: 15px;
  width: 70%; }

.footer-widget a {
  color: #6f7b8a; }

.footer-widget i {
  font-size: 14px;
  color: #5e646d; }

.footer-widget .details-status {
  background-color: #2d3139;
  border-radius: 3px 3px 3px 3px;
  color: #8B91A0;
  display: inline-block;
  font-size: 11px;
  padding: 6px;
  left: -22px;
  position: relative; }

.footer-widget a:hover,
.footer-widget a:hover i {
  color: #8B91A0;
  text-decoration: none; }

.chat-window-wrapper input[type="text"],
.chat-window-wrapper input[type="password"],
.chat-window-wrapper input[type="date"],
.chat-window-wrapper input[type="datetime"],
.chat-window-wrapper input[type="email"],
.chat-window-wrapper input[type="number"],
.chat-window-wrapper input[type="search"],
.chat-window-wrapper input[type="tel"],
.chat-window-wrapper input[type="time"],
.chat-window-wrapper input[type="url"],
.chat-window-wrapper textarea,
.chat-window-wrapper select {
  background-color: #0d0f12;
  height: 28px; }

.chat-header input[type="text"] {
  margin: 15px 0 15px 14px;
  width: 195px;
  border: transparent; }

.chat-header .iconset {
  margin: 20px 15px; }

.chat-messages-header {
  background-color: #1b1e24;
  color: #4c5264;
  padding: 8px;
  padding-left: 21px; }

.chat-messages-header .status {
  height: 10px;
  width: 10px;
  border-radius: 8px;
  background-color: #e5e9ec;
  display: inline-block;
  margin-right: 12px; }

.chat-messages-header .status.online {
  background-color: #0aa699; }

.chat-messages-header .status.busy {
  background-color: #f35958; }

.chat-messages-header .status.away {
  background-color: #0aa699; }

.chat-messages-header a > i {
  color: #4c5264;
  font-size: 10px;
  float: right;
  margin-top: 5px;
  margin-right: 5px; }

.chat-footer {
  position: absolute;
  bottom: 0;
  background-color: #e5e9ec;
  padding: 10px;
  padding-bottom: 0;
  width: 92.6%; }

.bubble {
  position: relative;
  width: 165px;
  min-height: 40px;
  padding: 0;
  background: #e5e9ec;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #22262e;
  padding: 10px;
  cursor: pointer; }

.bubble.old {
  background: #0d0f12;
  color: #4c5264; }

.bubble.old:after {
  border-color: transparent #0d0f12; }

.bubble.sender {
  background: #0ba195;
  color: #fffeff; }

.bubble.sender:after {
  border-color: transparent #0ba195;
  border-width: 9px 0 9px 7px;
  right: -7px !important;
  left: auto; }

.bubble:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 9px 7px 9px 0;
  border-color: transparent #e5e9ec;
  display: block;
  width: 0;
  z-index: 1;
  left: -7px;
  top: 12px; }

.chat-messages .sent_time {
  width: 100%;
  color: #4c5264;
  text-align: center;
  margin-top: 10px;
  font-weight: 600; }

.chat-messages .sent_time.off {
  display: none; }

.chat-input-wrapper {
  position: absolute;
  bottom: 0;
  background-color: #1b1e24;
  width: 256px;
  padding: 7px;
  z-index: 110; }

.chat-input-wrapper textarea {
  background-color: #fffeff;
  padding: 0;
  margin: 0;
  width: 100%; }

.user-chat-wrapper {
  display: block;
  padding: 10px 15px; }

.user-chat-wrapper .profile-wrapper {
  float: left;
  border-radius: 100px 100px 100px 100px;
  display: inline-block;
  height: 35px;
  overflow: hidden;
  width: 35px;
  margin: 0 10px 0 0; }

.user-chat-wrapper .user-chat {
  display: inline-block;
  float: left; }

.user-chat-wrapper .user-chat .user-name {
  color: #22262e;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.user-chat-wrapper .user-chat .user-chat-preview {
  display: block;
  float: left; }

.user-chat-wrapper .user-chat .more-details {
  display: inline-block;
  float: left;
  color: #8b8f92;
  margin-right: 10px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.ie8 .page-sidebar {
  position: absolute;
  width: 225px; }

.ie8 .page-sidebar ul {
  width: 225px; }

.ie8 .page-content {
  margin-left: 225px;
  margin-top: 0; }

.page-content {
  margin-top: 0;
  padding: 0;
  background-color: #f6f7f8;
  overflow: auto;
  position: relative;
  min-height: 100%;
  z-index: 6; }

.page-content.condensed {
  margin-left: 50px; }

.page-content.condensed .admin-bar-inner {
  margin-right: 50px !important; }

.page-content.condensed-layout {
  margin-left: 50px !important; }

.page-content .admin-bar {
  -moz-box-sizing: border-box;
  bottom: -115px;
  right: 0;
  left: 0;
  position: fixed;
  width: 100%; }

.page-content .admin-bar .admin-bar-inner {
  background: none repeat scroll 0 0 padding-box #fffeff;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.08);
  padding: 30px 35px 30px 40px;
  text-align: right; }

.page-content .header {
  padding: 20px !important; }

.page-content .header h3 {
  font-size: 20px;
  display: inline; }

.page-content .header i {
  font-size: 18px; }

.page-content .breadcrumb {
  font-family: 'Open Sans';
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 0 !important;
  border: none !important;
  margin-bottom: 0; }

.u-userLauncherColor {
  color: #fffeff;
  fill: #fffeff; }

.page-content .breadcrumb a {
  margin-left: 10px; }

.page-content .breadcrumb li p {
  font-size: 12.5px !important;
  font-weight: 400;
  color: #7b7d82; }

.page-content .breadcrumb li .active {
  font-weight: 600;
  font-size: 14px; }

.page-content .content {
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 83px; }

.inner-menu {
  display: inline-block;
  position: absolute;
  width: 200px;
  font-family: 'Open Sans';
  background-color: #fffeff;
  height: 100%; }

.inner-menu .inner-wrapper {
  padding: 20px 20px 0; }

.inner-menu .inner-wrapper .menu-title {
  padding-left: 0; }

.inner-menu .inner-wrapper .menu-title i {
  padding-right: 0; }

.inner-menu .inner-menu-content {
  margin-top: 50px; }

.inner-menu .menu-title {
  padding-right: 23px; }

.inner-menu ul.big-items {
  list-style: none outside none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0; }

.inner-menu ul.big-items li {
  text-align: right;
  padding: 8px 25px; }

.inner-menu ul.big-items li a {
  color: #8b91a0;
  font-size: 18px; }

.inner-menu ul.big-items li a:hover {
  text-decoration: none;
  color: #e5e9ec; }

.inner-menu ul.big-items li:hover {
  background-color: #e0e5e7; }

.inner-menu ul.big-items li.active {
  background-color: #e0e5e7; }

.inner-menu ul.big-items li.active a {
  background-color: #e0e5e7;
  color: #e5e9ec; }

.inner-menu ul.big-items li .badge {
  position: relative;
  top: -2px; }

.inner-menu ul.small-items {
  list-style: none outside none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0; }

.inner-menu ul.small-items li {
  text-align: right;
  padding: 8px 25px; }

.inner-menu ul.small-items li a {
  color: #8b91a0;
  font-size: 14px; }

.inner-menu ul.small-items li a:hover {
  text-decoration: none;
  color: #e5e9ec; }

.inner-menu ul.small-items li:hover {
  background-color: #e0e5e7; }

.inner-menu ul.small-items li.active {
  background-color: #e0e5e7; }

.inner-menu ul.small-items li.active a {
  background-color: #e0e5e7;
  color: #e5e9ec; }

.inner-menu ul.small-items li .badge {
  position: relative;
  top: -1px; }

.user-info-wrapper {
  display: block;
  margin: 20px 31px;
  margin-bottom: 0; }

.user-info-wrapper .profile-wrapper {
  height: 65px;
  width: 65px;
  border-radius: 100px;
  overflow: hidden;
  display: inline-block;
  margin-right: 11px;
  margin-top: 9px;
  float: left; }

.user-info-wrapper .user-info {
  color: #6f7b8a;
  display: inline-block; }

.user-info-wrapper .user-info .status {
  color: #929fa5;
  font-size: 13px;
  margin-bottom: 10px;
  margin-top: 2px;
  font-weight: normal; }

.user-info-wrapper .user-info .profile {
  float: right;
  display: inline; }

.user-info-wrapper .user-info .btn-set {
  margin-top: 10px; }

.user-info-wrapper .user-info .username {
  font-size: 19px; }

.user-info-wrapper .user-info .greeting {
  font-size: 19px;
  font-weight: 600;
  position: relative;
  top: 1.5px; }

.user-info-wrapper .user-info a {
  color: #416af0; }

.user-info-wrapper .user-info a:hover {
  text-decoration: none; }

.user-info-wrapper .user-info .status-icon {
  margin: 0 5px; }

.user-info-wrapper .user-info .collapse {
  width: 18px;
  height: 18px;
  background-color: #50545c;
  position: absolute;
  right: 15px;
  margin-top: 10px; }

.user-info-wrapper .user-info .collapse i {
  position: relative;
  margin-top: -8px;
  top: -2px;
  left: 3px; }

.user-info-wrapper .user-info .collapse:hover {
  background-color: #000000; }

.side-panel {
  border-width: 0;
  display: block;
  max-height: none;
  min-height: 100%;
  position: fixed;
  top: 0;
  width: 17em;
  background: linear-gradient(#F9F9F9, #EEEEEE) repeat scroll 0 0 #F9F9F9;
  border: 1px solid #AAAAAA;
  color: #333333;
  text-shadow: 0 1px 0 #fffeff;
  float: right;
  right: 0;
  z-index: 1200; }

.status-widget {
  margin-bottom: 9px;
  padding: 0 31px;
  animation-duration: .3s !important; }

.status-widget .title {
  color: #416af0;
  font-size: 13px; }

.status-widget .title i {
  float: right;
  font-size: 7px;
  margin-top: 6px;
  margin-right: 6px;
  color: #8b8f92; }

.status-widget p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 95%;
  color: #808285; }

.status-widget .progress {
  height: 10px;
  background-color: #2a2e36;
  background-image: -moz-linear-gradient(top, #2a2e36, #2a2e36);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#2a2e36), to(#2a2e36));
  background-image: -webkit-linear-gradient(top, #2a2e36, #2a2e36);
  background-image: -o-linear-gradient(top, #2a2e36, #2a2e36);
  background-image: linear-gradient(to bottom, #2a2e36, #2a2e36);
  background-repeat: repeat-x;
  margin-bottom: 5px;
  -webkit-transition: width 30s ease !important;
  -moz-transition: width 30s ease !important;
  -o-transition: width 30s ease !important;
  transition: width 30s ease !important; }

.status-widget-wrapper {
  font-size: 13px; }

.status-widget .title a:hover,
.status-widget .title a:active {
  text-decoration: none; }

.status-icon {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  top: 2px; }

.status-icon.green {
  background-position: -1px -1px;
  width: 14px;
  height: 14px; }

.status-icon.red {
  background-position: -17px -1px;
  width: 14px;
  height: 14px; }

.status-icon.blue {
  background-position: -33px -1px;
  width: 14px;
  height: 14px; }

.status-icon.yellow {
  background-position: -48px -1px;
  width: 15px;
  height: 14px; }

.status-icon.grey {
  background-position: -64px -1px;
  width: 14px;
  height: 14px; }

.user-info img {
  float: left;
  margin-right: 5px; }

.user-info .details {
  display: inline-block; }

.user-info .label {
  font-weight: 300;
  font-size: 11px; }

.mini .page-sidebar-wrapper {
  overflow: visible !important; }

.mini .scroll-element {
  visibility: hidden; }

.container {
  height: 100%; }

.pull-left {
  float: left !important; }

.pull-right {
  float: right !important; }

.sidebar-pad {
  padding: 1rem; }

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

.object-default p {
  max-width: 300px;
  margin-right: auto;
  margin-left: left; }

.object-default h3 {
  text-align: left; }

.object-default i[class^="icon-"]:before,
.object-default i[class*=" icon-"]:before {
  font-size: 5rem; }

.object-default i {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem; }

.object-default img {
  width: 100%; }

.tab-pane {
  /*margin-bottom: 100px*/ }

.modal .tab-pane,
.modal .tab-pane.active {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0; }

.modal ul.nav-tabs {
  margin-top: 0; }

.header.navbar {
  z-index: 1000; }

.header .header-seperation .notifcation-center {
  margin-top: 7px; }

.spinner input {
  width: 100%; }

.input-group.spinner {
  width: 100%; }

.spinner .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 38px;
  vertical-align: middle;
  display: table-cell; }

.spinner .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  height: 19.5px;
  max-width: 100%;
  margin-left: -1px;
  position: relative;
  border-radius: 0;
  background-color: #fffeff;
  border: 1px solid #e5e9ec;
  color: #6f7b8a; }

.spinner .input-group-btn-vertical > .btn:first-child {
  border-top-right-radius: 4px; }

svg > .cls-1,
svg > .cls-2 {
  transition: .12s; }

svg:hover > path,
svg:hover > rect {
  fill: #708ff4; }

svg:hover > line {
  stroke: #708ff4; }

.spinner .input-group-btn-vertical > .btn.azimuth-test {
  padding: 9px; }

.spinner .input-group-btn-vertical > .btn.azimuth-test-focus-button {
  background: rgba(0, 144, 217, 0.9);
  border-color: #708ff4;
  color: #fff; }

input[type="text"].azimuth-test-focus-textarea {
  border-color: #f1f1f1;
  background-color: #f4f5f7;
  outline: 0 !important; }

.spinner .input-group-btn-vertical > .btn:last-child {
  margin-top: -2px;
  border-bottom-right-radius: 4px; }

.spinner .input-group-btn-vertical i {
  position: absolute;
  top: 0;
  left: 4px;
  padding-left: 10px; }

.spinner .input-group-btn-vertical i::before {
  font-size: 10px; }

.spinner .input-group-btn-vertical > .btn:hover {
  color: #708ff4; }

#main-menu-wrapper .input-group-btn button {
  margin-top: -16px; }

.side-widget {
  font-family: 'Open Sans'; }

.side-widget ul {
  margin-left: 0;
  list-style: none;
  padding-left: 0; }

.side-widget ul li {
  padding: .6rem 1.2rem;
  font-weight: 600;
  font-size: 1rem; }

.side-widget ul ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem; }

.side-widget ul ul li {
  font-weight: 400;
  font-size: 0.9rem;
  padding-left: 30px; }

.side-widget ul li a {
  color: #f6f7f8; }

.side-widget ul li li a {
  color: #e0e5e7; }

.side-widget .side-widget-title {
  color: #fffeff;
  font-size: 1rem;
  padding-left: 1.2rem;
  padding-right: 1rem;
  margin-bottom: 2rem; }

.side-widget li a:hover,
.side-widget:active,
.side-widget.active {
  color: #708ff4; }

.side-widget ul li label {
  color: #f6f7f8;
  font-weight: 600;
  font-size: 1rem; }

.side-widget ul li i {
  width: 20px; }

.open-menu-right,
.open-menu-left {
  z-index: 2000; }

.horizontal-menu .header-seperation {
  display: none; }

.horizontal-menu .bar {
  width: 100%;
  background-color: #f4f5f7;
  position: fixed;
  margin-top: 56px;
  display: table;
  z-index: 50; }

.horizontal-menu .bar-inner {
  display: table-cell;
  width: 100%; }

.horizontal-menu .bar-inner > ul {
  margin: 0;
  padding: 0; }

.horizontal-menu .bar-inner > ul > li {
  display: inline-block;
  padding: 10px 15px;
  font-family: 'Open Sans';
  vertical-align: middle; }

.horizontal-menu .bar-inner > ul > li.classic {
  position: relative; }

.horizontal-menu .bar-inner > ul > li.open > a {
  opacity: 1; }

.horizontal-menu .bar-inner > ul > li.mega.open,
.horizontal-menu .bar-inner > ul > li.horizontal.open {
  position: inherit; }

.horizontal-menu .bar-inner > ul > li > a {
  color: #1b1e24; }

.horizontal-menu .bar-inner > ul > li > a > .arrow {
  display: inline-block; }

.horizontal-menu .bar-inner > ul > li > a > .arrow:before {
  float: right;
  display: inline;
  font-size: 16px;
  font-family: FontAwesome;
  height: auto;
  content: "\f107";
  font-weight: 300;
  text-shadow: none;
  margin-left: 8px;
  opacity: .5;
  position: relative;
  top: 6px; }

.horizontal-menu .bar-inner > ul > li a {
  opacity: .7; }

.horizontal-menu .bar-inner > ul > li a .description {
  opacity: .7;
  transition: opacity .1s linear 0s; }

.horizontal-menu .bar-inner > ul > li a:hover {
  opacity: 1; }

.horizontal-menu .bar-inner > ul > li a:hover .description {
  opacity: 1; }

.horizontal-menu .bar-inner > ul > li.open {
  background: #fff; }

.horizontal-menu .bar-inner > ul > li.open > .classic {
  max-height: 999px; }

.horizontal-menu .bar-inner > ul > li.open > .classic > li {
  opacity: 1; }

.horizontal-menu .bar-inner > ul > li.open > .mega,
.horizontal-menu .bar-inner > ul > li.open > .horizontal {
  display: block; }

.horizontal-menu .bar-inner > ul > li > .classic {
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: #fff;
  list-style: none;
  left: 0;
  right: 0;
  top: 40px;
  min-width: 220px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .3s linear 0s;
  transition: all .3s linear 0s; }

.horizontal-menu .bar-inner > ul > li > .classic > li {
  margin: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9ec;
  color: #22262e;
  opacity: 0;
  -webkit-transition: all .1s linear .1s;
  transition: all .1s linear .1s; }

.horizontal-menu .bar-inner > ul > li > .classic > li a {
  color: #1b1e24; }

.horizontal-menu .bar-inner > ul > li > .classic > li a .description {
  display: block;
  font-size: 12px;
  color: #6f7b8a; }

.horizontal-menu .bar-inner > ul > li > .classic > li:last-child {
  border-bottom: 0; }

.horizontal-menu .bar-inner > ul > li > .horizontal {
  margin: 0;
  top: 40px;
  padding: 0;
  position: absolute;
  background-color: #fff;
  list-style: none;
  display: none;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid #e5e9ec; }

.horizontal-menu .bar-inner > ul > li > .horizontal li {
  margin: 15px;
  color: #1b1e24;
  display: inline-block; }

.horizontal-menu .bar-inner > ul > li > .horizontal li a {
  color: #1b1e24; }

.horizontal-menu .bar-inner > ul > li > .horizontal li a .description {
  display: block;
  font-size: 12px;
  color: #6f7b8a; }

.horizontal-menu .bar-inner > ul > li > .mega {
  margin: 0;
  top: 40px;
  padding: 0;
  position: absolute;
  background-color: #fff;
  list-style: none;
  display: none;
  left: 0;
  right: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e9ec; }

.horizontal-menu .bar-inner > ul > li > .mega > li {
  margin: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e9ec;
  color: #1b1e24; }

.horizontal-menu .bar-inner > ul > li > .mega > li a {
  color: #1b1e24; }

.horizontal-menu .bar-inner > ul > li > .mega .sub-menu-heading {
  font-size: 14px;
  color: #1b1e24;
  margin-bottom: 10px;
  margin-top: 20px; }

.horizontal-menu .bar-inner > ul > li > .mega .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 10px; }

.horizontal-menu .bar-inner > ul > li > .mega .sub-menu > li {
  padding-left: 0;
  padding-bottom: 5px; }

.horizontal-menu .bar-inner > ul > li > .mega .sub-menu > li > a {
  color: #1b1e24; }

@media (min-width: 980px) {
  .horizontal-menu .page-content {
    margin-left: 0; }
  .horizontal-menu .page-content .content {
    padding-top: 123px; } }

.h-ribbon {
  width: 100%;
  height: 4px;
  background-color: #f35958; }

.h-ribbon .red {
  background-color: #f35958 !important; }

.notification-alert {
  width: 29px;
  height: 29px;
  position: absolute;
  float: right;
  right: -15px;
  z-index: 9999; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-family: 'Open Sans';
  font-weight: 300;
  color: #505458; }

h1 {
  line-height: 43px; }

h2 {
  line-height: 35px; }

h3 {
  line-height: 30px; }

h4 {
  line-height: 22px; }

h3 small,
h4 small,
h5 small {
  font-family: 'Open Sans';
  font-weight: 300;
  color: #444; }

h1.block,
h2.block,
h3.block,
h4.block,
h5.block,
h6.block {
  padding-bottom: 10px; }

a {
  text-shadow: none !important;
  color: #416af0;
  transition: color .1s linear 0s, background-color .1s linear 0s, opacity .1s linear 0s !important; }

a.icon:hover {
  text-decoration: none;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  -ms-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  opacity: .4; }

a,
a:focus,
a:hover,
a:active {
  outline: 0;
  text-decoration: none; }

i {
  font-size: 14px; }

label {
  display: block;
  margin-bottom: 5px; }

label.inline {
  display: inline-block;
  position: relative;
  top: 0;
  font-size: 13px; }

label.done {
  color: #416af0 !important;
  text-decoration: line-through; }

ul > li {
  padding-left: 6px;
  line-height: 20px; }

ul.progress-list {
  list-style: none;
  margin: 10px 5px 23px 0;
  padding: 0; }

ul.progress-list li .details-wrapper {
  display: inline-block;
  float: left; }

ul.progress-list li .details-wrapper .name {
  display: block;
  color: #000;
  font-size: 13px; }

ul.progress-list li .details-wrapper .description {
  display: block;
  color: #9a9a9a;
  font-size: 12px; }

ul.progress-list li .details-status {
  display: inline-block;
  background-color: #e5e9ec;
  color: #5c6370;
  font-size: 11px;
  padding: 6px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

ul.progress-list li .progress {
  margin-top: 10px; }

ul.my-friends {
  margin: 0;
  margin-top: 16px;
  padding: 0; }

ul.my-friends li {
  float: left;
  display: inline;
  margin-right: 5px;
  margin-bottom: 8px; }

ul.my-friends li .profile-pic {
  border-radius: 100px;
  display: inline-block;
  float: left;
  height: 35px;
  overflow: hidden;
  width: 35px; }

address {
  margin-bottom: 0; }

blockquote {
  padding: 0 0 0 18px;
  border-left: 5px solid #EEEEEE; }

blockquote p {
  font-size: 16px; }

blockquote small {
  line-height: 29px;
  color: #8b91a0; }

blockquote small:before {
  content: ""; }

blockquote.pull-right small:after {
  content: ""; }

.logo {
  margin: 5px 9px;
  width: auto;
  max-height: 50px; }

.normal {
  font-weight: normal; }

.semi-bold {
  font-weight: 600; }

.bold {
  font-weight: bold; }

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

.light {
  font-weight: 300 !important; }

.text-extra-small {
  font-size: 10.5px !important; }

.small-text {
  font-size: 12px !important; }

.normal-text {
  font-size: 13px !important; }

.large-text {
  font-size: 15px !important; }

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

.muted {
  color: #b6bfc5; }

.bg-blue {
  background-color: #416af0 !important; }

.bg-red {
  background-color: #f35958 !important; }

.bg-yellow {
  background-color: #fbb05e !important; }

.bg-green {
  background-color: #0aa699 !important; }

.bg-purple {
  color: #735f87 !important; }

.bg-grey {
  color: #8b91a0 !important; }

.text-black {
  color: #1b1e24 !important; }

.text-purple {
  color: #735f87 !important; }

.text-white {
  color: #fffeff !important; }

.text-grey {
  color: #8b91a0 !important; }

.text-success {
  color: #0aa699 !important; }

.text-info {
  color: #416af0 !important; }

.text-warning {
  color: #fbb05e !important; }

.text-error {
  color: #f35958 !important; }

.text-white-opacity {
  color: #fffeff;
  opacity: .6;
  filter: alpha(opacity=60); }

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

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

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

.color-bands {
  display: inline-block;
  width: 80px;
  height: 4px;
  margin-right: 2px;
  margin-bottom: 8px; }

.color-bands.green {
  background-color: #0aa699; }

.color-bands.purple {
  background-color: #735f87; }

.color-bands.red {
  background-color: #f35958; }

.color-bands.blue {
  background-color: #416af0; }

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

.icon-custom-2x {
  font-size: .9em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

[class^="icon-"],
[class*=" icon-"],
[class^="icon-"]:hover,
[class*=" icon-"]:hover {
  background: none !important; }

.page-title {
  padding: 0;
  letter-spacing: -1px;
  display: block;
  color: #666;
  margin: 0 0 10px;
  font-weight: 300;
  font-family: 'Open Sans'; }

.page-title h3 {
  display: inline-block;
  top: -5px;
  position: relative;
  width: 83%; }

.page-title p {
  color: #63696d;
  letter-spacing: .5px; }

.page-title i {
  display: inline-block;
  color: #73777c;
  font-size: 30px;
  margin-right: 12px;
  position: relative;
  top: 7px;
  float: left; }

.page-title small {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 300;
  color: #888; }

.page-title .actions {
  font-family: 'Arial'; }

.page-content .breadcrumb a,
.page-content .breadcrumb i,
.page-content .breadcrumb span,
.page-content .breadcrumb li {
  color: #515050;
  font-weight: 300;
  text-shadow: none; }

.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #515050;
  font-family: FontAwesome;
  content: "\f105"; }

.well {
  background-color: #d1dade;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  background-image: none; }

.well.well-large {
  padding: 24px;
  width: auto; }

.well.well-small {
  padding: 13px;
  width: auto; }

.well.green {
  background-color: #0aa699;
  color: #fffeff;
  border: none; }

span.iconset {
  display: block; }

.iconset {
  background: no-repeat;
  position: relative;
  top: 1px; }

.iconset.top-home {
  background-position: -6px -7px;
  width: 16px;
  height: 14px;
  top: -1px; }

.iconset.top-settings {
  background-position: -35px -6px;
  width: 16px;
  height: 16px;
  top: 1px; }

.iconset.top-messages {
  background-position: -63px -8px;
  width: 16px;
  height: 12px;
  top: 1px; }

.iconset.top-back {
  background-position: -92px -8px;
  width: 15px;
  height: 14px; }

.iconset.top-forward {
  background-position: -121px -8px;
  width: 15px;
  height: 14px; }

.iconset.top-reload {
  background-position: -147px -6px;
  width: 18px;
  height: 16px; }

.iconset.top-settings-dark {
  background-position: -176px -6px;
  width: 17px;
  height: 16px; }

.iconset.top-tiles {
  background-position: -206px -7px;
  width: 14px;
  height: 14px;
  top: 1.5px; }

.iconset.top-down-arrow {
  background-position: -238px -12px;
  width: 7px;
  height: 5px; }

.iconset.top-search {
  background-position: -261px -6px;
  width: 16px;
  height: 16px;
  top: 5px; }

.iconset.top-menu-toggle-dark {
  background-position: -288px -7px;
  width: 18px;
  height: 15px; }

.iconset.top-menu-toggle-white {
  background-position: -315px -7px;
  width: 18px;
  height: 15px; }

.iconset.top-chat-dark {
  background-position: -341px -6px;
  width: 21px;
  height: 16px; }

.iconset.top-chat-white {
  background-position: -369px -6px;
  width: 21px;
  height: 16px; }

.iconset .badge {
  top: -12px;
  right: -10px;
  position: relative;
  padding: 4px 6px;
  font-size: 10px; }

.iconplaceholder {
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background-color: #e5e9ec;
  padding: 3px;
  display: inline-block;
  margin-right: 5px;
  direction: ltr; }

.iconplaceholder i {
  font-size: 10px;
  color: #656c78;
  position: relative;
  left: 4px;
  top: -3px; }

.blog-bar {
  border-top: 1px solid #d7dbe0;
  margin-top: 18px;
  padding: 10px; }

.blog-bar a {
  color: #8b91a0;
  margin-right: 8px;
  text-decoration: none; }

.blog-bar a:hover {
  color: #d7dbe0; }

.no-padding {
  padding: 0 !important; }

.no-margin {
  margin: 0 !important; }

.spacing-bottom {
  margin-bottom: 30px; }

.inherit-size {
  width: inherit;
  height: inherit; }

.inherit-height {
  height: inherit; }

.v-align-bottom {
  vertical-align: bottom;
  display: table-cell; }

.v-align-top {
  vertical-align: top;
  display: table-cell; }

.v-align-middle {
  vertical-align: middle;
  display: table-cell; }

.h-align-middle {
  margin-left: auto;
  margin-right: auto;
  display: table; }

.padding-10 {
  padding: 10px; }

.padding-20 {
  padding: 20px; }

.p-t-5 {
  padding-top: 5px; }

.p-r-5 {
  padding-right: 5px; }

.p-l-5 {
  padding-left: 5px; }

.p-b-5 {
  padding-bottom: 5px; }

.p-t-10 {
  padding-top: 10px; }

.p-r-10 {
  padding-right: 10px; }

.p-l-10 {
  padding-left: 10px; }

.p-b-10 {
  padding-bottom: 10px; }

.p-t-15 {
  padding-top: 15px; }

.p-r-15 {
  padding-right: 15px; }

.p-l-15 {
  padding-left: 15px; }

.p-b-15 {
  padding-bottom: 15px; }

.p-t-20 {
  padding-top: 20px; }

.p-r-20 {
  padding-right: 20px; }

.p-l-20 {
  padding-left: 20px; }

.p-b-20 {
  padding-bottom: 20px; }

.p-t-25 {
  padding-top: 25px; }

.p-r-25 {
  padding-right: 25px; }

.p-l-25 {
  padding-left: 25px; }

.p-b-25 {
  padding-bottom: 25px; }

.p-t-30 {
  padding-top: 30px; }

.p-r-30 {
  padding-right: 30px; }

.p-l-30 {
  padding-left: 30px; }

.p-b-30 {
  padding-bottom: 30px; }

.p-t-35 {
  padding-top: 35px; }

.p-r-35 {
  padding-right: 35px; }

.p-l-35 {
  padding-left: 35px; }

.p-b-35 {
  padding-bottom: 35px; }

.p-t-40 {
  padding-top: 40px; }

.p-r-40 {
  padding-right: 40px; }

.p-l-40 {
  padding-left: 40px; }

.p-b-40 {
  padding-bottom: 40px; }

.p-t-45 {
  padding-top: 45px; }

.p-r-45 {
  padding-right: 45px; }

.p-l-45 {
  padding-left: 45px; }

.p-b-45 {
  padding-bottom: 45px; }

.p-t-50 {
  padding-top: 50px; }

.p-r-50 {
  padding-right: 50px; }

.p-l-50 {
  padding-left: 50px; }

.p-b-50 {
  padding-bottom: 50px; }

.p-t-55 {
  padding-top: 55px; }

.p-r-55 {
  padding-right: 55px; }

.p-l-55 {
  padding-left: 55px; }

.p-b-55 {
  padding-bottom: 55px; }

.p-t-60 {
  padding-top: 60px; }

.p-r-60 {
  padding-right: 60px; }

.p-l-60 {
  padding-left: 60px; }

.p-b-60 {
  padding-bottom: 60px; }

.p-t-65 {
  padding-top: 65px; }

.p-r-65 {
  padding-right: 65px; }

.p-l-65 {
  padding-left: 65px; }

.p-b-65 {
  padding-bottom: 65px; }

.p-t-70 {
  padding-top: 70px; }

.p-r-70 {
  padding-right: 70px; }

.p-l-70 {
  padding-left: 70px; }

.p-b-70 {
  padding-bottom: 70px; }

.p-t-75 {
  padding-top: 75px; }

.p-r-75 {
  padding-right: 75px; }

.p-l-75 {
  padding-left: 75px; }

.p-b-75 {
  padding-bottom: 75px; }

.p-t-80 {
  padding-top: 80px; }

.p-r-80 {
  padding-right: 80px; }

.p-l-80 {
  padding-left: 80px; }

.p-b-80 {
  padding-bottom: 80px; }

.p-t-85 {
  padding-top: 85px; }

.p-r-85 {
  padding-right: 85px; }

.p-l-85 {
  padding-left: 85px; }

.p-b-85 {
  padding-bottom: 85px; }

.p-t-90 {
  padding-top: 90px; }

.p-r-90 {
  padding-right: 90px; }

.p-l-90 {
  padding-left: 90px; }

.p-b-90 {
  padding-bottom: 90px; }

.p-t-95 {
  padding-top: 95px; }

.p-r-95 {
  padding-right: 95px; }

.p-l-95 {
  padding-left: 95px; }

.p-b-95 {
  padding-bottom: 95px; }

.p-t-100 {
  padding-top: 100px; }

.p-r-100 {
  padding-right: 100px; }

.p-l-100 {
  padding-left: 100px; }

.p-b-100 {
  padding-bottom: 100px; }

.m-t-5 {
  margin-top: 5px; }

.m-r-5 {
  margin-right: 5px; }

.m-l-5 {
  margin-left: 5px; }

.m-b-5 {
  margin-bottom: 5px; }

.m-t-10 {
  margin-top: 10px; }

.m-r-10 {
  margin-right: 10px; }

.m-l-10 {
  margin-left: 10px; }

.m-b-10 {
  margin-bottom: 10px; }

.m-t-15 {
  margin-top: 15px; }

.m-r-15 {
  margin-right: 15px; }

.m-l-15 {
  margin-left: 15px; }

.m-b-15 {
  margin-bottom: 15px; }

.m-t-20 {
  margin-top: 20px; }

.m-r-20 {
  margin-right: 20px; }

.m-l-20 {
  margin-left: 20px; }

.m-b-20 {
  margin-bottom: 20px; }

.m-t-25 {
  margin-top: 25px; }

.m-r-25 {
  margin-right: 25px; }

.m-l-25 {
  margin-left: 25px; }

.m-b-25 {
  margin-bottom: 25px; }

.m-t-30 {
  margin-top: 30px; }

.m-r-30 {
  margin-right: 30px; }

.m-l-30 {
  margin-left: 30px; }

.m-b-30 {
  margin-bottom: 30px; }

.m-t-35 {
  margin-top: 35px; }

.m-r-35 {
  margin-right: 35px; }

.m-l-35 {
  margin-left: 35px; }

.m-b-35 {
  margin-bottom: 35px; }

.m-t-40 {
  margin-top: 40px; }

.m-r-40 {
  margin-right: 40px; }

.m-l-40 {
  margin-left: 40px; }

.m-b-40 {
  margin-bottom: 40px; }

.m-t-45 {
  margin-top: 45px; }

.m-r-45 {
  margin-right: 45px; }

.m-l-45 {
  margin-left: 45px; }

.m-b-45 {
  margin-bottom: 45px; }

.m-t-50 {
  margin-top: 50px; }

.m-r-50 {
  margin-right: 50px; }

.m-l-50 {
  margin-left: 50px; }

.m-b-50 {
  margin-bottom: 50px; }

.m-t-55 {
  margin-top: 55px; }

.m-r-55 {
  margin-right: 55px; }

.m-l-55 {
  margin-left: 55px; }

.m-b-55 {
  margin-bottom: 55px; }

.m-t-60 {
  margin-top: 60px; }

.m-r-60 {
  margin-right: 60px; }

.m-l-60 {
  margin-left: 60px; }

.m-b-60 {
  margin-bottom: 60px; }

.m-t-65 {
  margin-top: 65px; }

.m-r-65 {
  margin-right: 65px; }

.m-l-65 {
  margin-left: 65px; }

.m-b-65 {
  margin-bottom: 65px; }

.hide {
  display: none; }

.margin-top-10 {
  margin-top: 10px; }

.margin-top-20 {
  margin-top: 20px; }

.margin-bottom-10 {
  margin-bottom: 10px; }

.margin-bottom-20 {
  margin-bottom: 20px; }

.inline {
  display: inline-block !important; }

.b-blank {
  border-color: #000; }

.b-r {
  border-right: 1px solid; }

.b-l {
  border-left: 1px solid; }

.b-t {
  border-top: 1px solid; }

.b-b {
  border-bottom: 1px solid; }

.b-a {
  border-width: 1px; }

.b-transparent {
  border-color: rgba(0, 0, 0, 0.4); }

.b-grey {
  border-color: #e5e9ec; }

.visible-xlg {
  display: none; }

.hidden-xlg {
  display: block; }

.image-responsive-width {
  width: 100%; }

.box-250 {
  width: 250px;
  height: 250px; }

.overlayer {
  position: absolute;
  display: block;
  z-index: 80; }

.overlayer.fullwidth {
  width: 100%; }

.overlayer-wrapper {
  position: relative;
  display: block;
  z-index: 9999; }

.demo-map {
  width: 100%; }

.overlay-fixed {
  top: auto !important; }

.top-left {
  position: absolute;
  top: 0;
  left: 0; }

.top-right {
  position: absolute;
  top: 1px;
  right: 0; }

.bottom-left {
  position: absolute;
  bottom: 1px;
  left: 0; }

.bottom-right {
  position: absolute;
  bottom: 0;
  right: 0; }

.pull-down {
  vertical-align: bottom;
  display: table-cell; }

.pull-up {
  vertical-align: top;
  display: table-cell; }

.full-height {
  height: 100%; }

.full-width {
  width: 100%; }

.scroller {
  overflow: auto;
  position: relative;
  -webkit-overflow-scrolling: touch; }

.popover-content {
  font-size: 13px; }

.popover-content .scroller {
  padding-right: 0 !important; }

.toggle-button,
.toggle-button label {
  margin-top: 3px;
  background-image: none !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  -o-border-radius: 0 !important;
  border: 1px solid #eee !important;
  -moz-border-radius-topleft: 0 !important;
  -webkit-border-top-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  -moz-border-radius-bottomleft: 0 !important;
  -webkit-border-bottom-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  -moz-border-radius-topright: 0 !important;
  -webkit-border-top-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  -moz-border-radius-bottomright: 0 !important;
  -webkit-border-bottom-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important; }

.toggle-button span.labelRight,
.toggle-button span.primary,
.toggle-button span.labelLeft,
.toggle-button span.info,
.toggle-button span.success,
.toggle-button span.warning,
.toggle-button span.danger {
  -moz-border-radius-topleft: 0 !important;
  -webkit-border-top-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  -moz-border-radius-bottomleft: 0 !important;
  -webkit-border-bottom-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  -moz-border-radius-topright: 0 !important;
  -webkit-border-top-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
  -moz-border-radius-bottomright: 0 !important;
  -webkit-border-bottom-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  background-image: none !important; }

.toggle-button span.labelRight {
  background-color: #eee; }

.dataTable {
  clear: both;
  margin-top: 5px; }

.dataTables_filter label {
  line-height: 32px !important; }

.DTTT_dropdown li {
  position: relative; }

div.DTTT_print_info.modal {
  height: 150px;
  margin-top: 150px;
  text-align: center;
  border: 0;
  z-index: 999; }

div.DTTT_print_info h6 {
  font-weight: normal;
  font-size: 28px;
  line-height: 28px;
  margin: 1em; }

div.DTTT_print_info p {
  font-size: 14px;
  line-height: 20px; }

.invoice-button-action-set {
  position: absolute; }

.login-container {
  margin-top: 13%; }

.lockscreen-wrapper {
  position: relative;
  margin-top: 20%; }

.lockscreen-wrapper .profile-wrapper {
  border-radius: 100px;
  float: left;
  height: 65px;
  margin-right: 11px;
  margin-top: 9px;
  overflow: hidden;
  width: 65px;
  display: inline-block; }

.lockscreen-wrapper .user {
  text-align: left; }

.lockscreen-wrapper .user-form {
  margin-top: -10px;
  display: inline-block;
  float: left;
  min-width: 320px; }

.lockscreen-wrapper .user-form input,
.lockscreen-wrapper .user-form button {
  float: left;
  margin-right: 10px; }

.calender-options-wrapper {
  padding: 13px;
  padding: 20px; }

.calender-options-wrapper .events-wrapper {
  margin-top: 50px; }

.calender-options-wrapper .events-heading {
  font-size: 13px;
  color: #fffeff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 14px;
  margin-bottom: 20px; }

.calender-options-wrapper .external-event {
  font-size: 12px;
  color: #fffeff;
  background-color: #d44443;
  display: block;
  padding: 5px 8px;
  border-radius: 3px;
  width: 100%;
  margin-bottom: 8px;
  cursor: move; }

.fc-view {
  margin-top: 15px; }

.fc td,
.fc th {
  vertical-align: middle; }

.fc-grid th {
  text-transform: uppercase;
  padding-bottom: 10px; }

.fc-grid .fc-day-number {
  padding: 25px 10px; }

.fc-border-separate th,
.fc-border-separate td {
  border-width: 0;
  border-bottom: 1px solid #e5e9ec; }

.fc-border-separate tr.fc-last th,
.fc-border-separate tr.fc-last td {
  border-right-width: 0; }

.fc-border-separate td.fc-last {
  border-right-width: 0; }

.fc-border-separate tr.fc-last td {
  border-bottom-width: 0; }

.fc-state-highlight {
  background-color: transparent; }

.fc-state-highlight .fc-day-number {
  background-color: #f35958;
  border-radius: 999px;
  padding: 5px 11px;
  color: #fffeff; }

.fc-ltr .fc-event-hori.fc-event-start,
.fc-rtl .fc-event-hori.fc-event-end {
  margin-top: 10px; }

.fc table thead tr th {
  font-size: .9em; }

.bordered-circle .owl-controls {
  text-align: left; }

.bordered-circle .owl-controls .owl-page span {
  width: 9px;
  height: 9px;
  border: 1px solid #333333;
  opacity: 1;
  background-color: transparent; }

.bordered-circle .owl-theme .owl-controls .owl-page.active span,
.bordered-circle .owl-theme .owl-controls.clickable .owl-page:hover span {
  background-color: #333333; }

.hashtags {
  display: inline-block;
  border: 2px solid #e5e9ec;
  background-color: transparent;
  color: #b9bec2;
  padding: 2px 8px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 12px; }

.hashtags:hover {
  border: 2px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.4); }

.hashtags.transparent {
  border: 2px solid #fffeff;
  background-color: transparent;
  color: #fffeff; }

.hashtags.transparent:hover {
  border: 2px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.8);
  color: #000; }

.user-profile img {
  border-radius: 100px 100px 100px 100px; }

.sm-gutter [class^="col-"],
.sm-gutter [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px; }

.sm-gutter .row {
  margin-right: -5px;
  margin-left: -5px; }

.overlap-left-10 {
  position: relative;
  left: -10px; }

.rickshaw_graph {
  overflow: hidden; }

.dark .dd-handle {
  background: none repeat scroll 0 0 #d1dade; }

.carousel {
  height: 100%;
  width: 100%; }

.demo-center-logo {
  left: 0;
  display: block;
  position: absolute;
  text-align: center;
  right: 0; }

label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px; }

input,
button,
select,
textarea {
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif; }

.uneditable-input,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-appearance: none !important;
  color: #282323;
  outline: 0;
  height: 16px;
  padding: 6px 11px !important;
  line-height: 15px;
  font-size: 13px;
  font-weight: normal;
  vertical-align: top;
  background-color: #fffeff;
  min-height: 37px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #e5e9ec;
  transition: background .2s linear 0s, box-shadow .2s linear 0s; }

input {
  border: 1px solid #cecece; }

input.no-boarder {
  border: none; }

input.dark {
  background-color: #e5e9ec;
  border: none; }

input.error {
  border: 1px solid #f35958; }

textarea {
  height: auto;
  padding-left: 12px !important;
  padding-top: 10px !important; }

textarea.form-control {
  height: inherit; }

textarea.form-control:focus {
  border-color: #e5e9ec; }

.uneditable-input.focus,
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.m-uneditable-input:focus {
  border-color: #f1f1f1;
  background-color: #f4f5f7;
  outline: 0 !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

input[type="radio"] {
  margin: 4px 0 0;
  margin-top: 1px;
  line-height: normal;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

select,
input[type="file"] {
  height: 34px !important;
  line-height: 30px; }

select {
  width: 220px;
  background-color: #fffeff;
  background-image: none !important;
  border: 1px solid #e5e5e5;
  outline: none;
  min-height: 35px; }

select.xsmall {
  width: 64px !important; }

select.small {
  width: 134px !important; }

select.medium {
  width: 220px !important; }

select.large {
  width: 334px !important; }

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

select:focus,
input[type="file"]:focus,
input[type="radio"]:focus {
  outline: thin dotted #333333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important; }

input[class*="span"] {
  float: none;
  height: 34px !important;
  margin-left: 0; }

select[class*="span"],
textarea[class*="span"] {
  float: none;
  margin-left: 0; }

.input-lg {
  border-radius: 3px !important;
  font-size: 18px !important;
  height: 45px !important;
  line-height: 1.33 !important; }

.input-sm {
  font-size: 13px !important;
  min-height: 29px !important; }

.input-prepend,
.input-append {
  border: 0;
  display: inline-block; }

.input-append .add-on,
.input-prepend .add-on {
  display: inline-block;
  width: auto;
  height: 24px;
  min-width: 16px;
  padding: 4px 5px;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
  text-align: center;
  text-shadow: 0 1px 0 #fffeff;
  background-color: #e5e5e5;
  border: 1px solid #e5e5e5; }

.input-append .add-on > .halflings-icon,
.input-prepend .add-on > i,
.input-prepend .add-on > .fa {
  margin-top: 5px;
  margin-left: 3px; }

.input-append .add-on > .halflings-icon .input-append .add-on > i,
.input-append .add-on > .fa {
  margin-top: 5px;
  margin-left: 0; }

.input-append,
.input-append:focus {
  border-right: 0 !important; }

.input-append input[class*="span"],
.input-prepend input[class*="span"],
.input-append input,
.input-prepend input {
  display: inline-block !important;
  width: 100%;
  float: left; }

.xsmall {
  width: 50px !important; }

.small {
  width: 120px !important; }

.medium {
  width: 206px !important; }

.large {
  width: 320px !important; }

.huge {
  width: 480px !important;
  font-size: 24px !important;
  height: 36px !important;
  line-height: 36px !important;
  padding: 22px 8px !important; }

.radio {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 0; }

.radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  margin-right: 15px;
  font-size: 13px;
  margin-bottom: 6px;
  color: #777a80; }

.radio label:before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  bottom: 2.5px;
  background-color: #fffeff;
  border: 1px solid #c2c6cb;
  border-radius: 99px; }

.radio-form {
  height: 34px;
  padding: 6px 12px;
  margin-bottom: 10px; }

.radio label:after {
  font-size: 13px;
  content: "";
  text-align: center;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  -o-transform: scale(0);
  -ms-transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 99px;
  left: 0;
  top: 1px;
  background-color: #6f7b8a;
  border: 1px solid #6f7b8a; }

.radio input[type=radio] {
  display: none; }

.radio input[type=radio][disabled] + label {
  opacity: .65; }

.radio.radio-success label:after {
  background-color: #416af0;
  border: 1px solid #416af0; }

.radio.radio-success input[type=radio]:checked + label:before {
  border: 1px solid #416af0; }

.radio.radio-primary label:after {
  background-color: #0aa699;
  border: 1px solid #0aa699; }

.radio.radio-primary input[type=radio]:checked + label:before {
  border: 1px solid #0aa699; }

.radio.radio-info label:after {
  background-color: #1f3853;
  border: 1px solid #1f3853; }

.radio.radio-info label input[type=radio]:checked + :before {
  border: 1px solid #1f3853; }

.radio.radio-warning label:after {
  background-color: #fbb05e;
  border: 1px solid #fbb05e; }

.radio.radio-warning input[type=radio]:checked + label:before {
  border: 1px solid #fbb05e; }

.radio.radio-danger label:after {
  background-color: #F35958;
  border: 1px solid #F35958; }

.radio.radio-danger input[type=radio]:checked + label:before {
  border: 1px solid #F35958; }

.radio input[type=radio]:checked + label {
  color: #4d5056; }

.radio input[type=radio]:checked + label:after {
  -o-transform: scale(0.63);
  -ms-transform: scale(0.63);
  -moz-transform: scale(0.63);
  -webkit-transform: scale(0.63);
  transform: scale(0.63);
  line-height: 18px;
  -o-transition: -o-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  -ms-transition: -ms-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  -moz-transition: -moz-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  -webkit-transition: -webkit-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  -o-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  -ms-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  -moz-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  -webkit-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
  transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33); }

.radio input[type=radio]:checked + label:before {
  border: 1px solid #8e9095; }

table.fc-border-separate {
  margin-top: 20px; }

.star label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  font-size: 18px;
  transition: border .2s linear 0s, color .2s linear 0s;
  margin-bottom: 10px; }

.star label:before {
  font-family: 'FontAwesome';
  content: "\F005";
  display: inline-block;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 18px;
  color: #97a3b3;
  transition: border .2s linear 0s, color .2s linear 0s; }

.wysihtml5-toolbar li {
  padding-left: 0; }

.bootstrap-tagsinput {
  border: 1px solid #E5E9EC;
  border-radius: 3px;
  box-shadow: none;
  width: 100%;
  transition: background .2s linear 0s; }

.bootstrap-tagsinput.active-element {
  background-color: #f4f5f7; }

.bootstrap-tagsinput input {
  border: none;
  margin-bottom: 0;
  min-height: 25px; }

.bootstrap-tagsinput .tag {
  vertical-align: middle;
  padding: 4px 9px;
  margin-top: 3px;
  display: inline-block; }

.bootstrap-tagsinput .tag [data-role="remove"]:hover:active,
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
  box-shadow: none; }

form {
  margin: 0; }

form legend {
  margin: 15px 0 10px 0 !important;
  color: #6f7b8a; }

.column-seperation > div[class*="col-"] {
  border-right: 1px solid #ddd; }

.column-seperation > div[class*="col-"]:last-child {
  border-right: 0; }

.form-no-horizontal-spacing .row-fluid .side-label {
  border-right: 1px solid #dddddd; }

.form-no-horizontal-spacing .error {
  margin-bottom: 10px; }

input.placeholder,
textarea.placeholder {
  color: #aaa !important; }

.help-block {
  margin-top: 10px; }

.form-inline input {
  margin-bottom: 0 !important; }

.form-label .vcenter {
  line-height: 30px; }

.form-label {
  margin-top: 2px; }

.form-label .required {
  color: #e02222;
  font-size: 12px;
  padding-left: 2px; }

.help-inline {
  margin-top: 6px; }

.help-small {
  font-size: 12px;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0; }

.success .help-inline.ok:before {
  content: "\f00c";
  font-size: 16px;
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: inline-block; }

form legend,
.form-view legend {
  margin-bottom: 15px !important; }

.controls > .radio .checker {
  margin-right: 2px !important; }

.controls > .radio {
  display: inline-block;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 8px !important;
  margin-right: 15px !important; }

.controls > .radio.line {
  display: block;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 5px !important; }

.controls .inline {
  margin-top: 8px; }

.form-view .control-group {
  margin-top: 0;
  margin-bottom: 5px; }

.uploader {
  margin-top: 2px !important; }

.hint {
  padding: 5px 0 0 10px; }

.form form {
  margin: 0 !important;
  padding: 0 !important; }

.form .form-actions {
  background-color: #f6f7f8 !important;
  margin-top: 0 !important;
  margin-top: 40px;
  padding-left: 190px; }

.form-actions {
  background-color: #f6f7f8;
  border: 0;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 19px 20px 20px; }

.form-actions:after {
  clear: both; }

.form-actions:before,
.form-actions:after {
  content: "";
  display: table;
  line-height: 0; }

.form-horizontal {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: -4px; }

.form-horizontal.form-bordered .control-group {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee; }

.form-horizontal.form-bordered .control-group:first-child {
  border-bottom: 1px solid #eee !important; }

.form-horizontal.form-bordered .control-group.last {
  border-bottom: 0; }

.form-horizontal.form-bordered .control-group .controls {
  padding: 10px;
  position: relative;
  border-left: 1px solid #eee; }

.form-horizontal.form-bordered .control-group .controls .chosen-container {
  min-height: 32px; }

.form-horizontal.form-bordered .control-group .controls .chosen-container .help-block {
  clear: both;
  padding-top: 10px !important; }

.form-horizontal.form-bordered .control-group .control-label {
  margin-top: 10px; }

.form-horizontal.form-bordered.form-row-stripped .control-group:nth-child(even) {
  background-color: #fcfcfc; }

.form-horizontal.form-bordered.form-row-stripped .m-wrap {
  background: #fffeff !important; }

.form-horizontal.form-bordered.form-label-stripped .control-group:nth-child(even) {
  background-color: #fcfcfc; }

.form-horizontal.form-bordered.form-label-stripped .control-group:nth-child(even) .controls {
  background-color: #fffeff; }

.form-horizontal.form-bordered .help-inline,
.form-horizontal.form-bordered .help-block {
  padding-left: 0; }

.grid.box .form .form-actions,
.grid.solid .form .form-actions {
  margin-left: -10px !important;
  margin-right: -10px !important;
  margin-bottom: -10px !important; }

.wizard-steps {
  display: block;
  list-style: none outside none;
  padding: 0;
  position: relative;
  width: 100%; }

.wizard-steps li {
  display: block;
  float: left;
  max-width: 25%;
  min-width: 25%;
  text-align: center;
  padding-left: 0; }

.wizard-steps li:before {
  border-top: 6px solid #55606E;
  content: "";
  display: block;
  font-size: 0;
  overflow: hidden;
  position: relative;
  top: 13px;
  right: 1px;
  width: 100%;
  z-index: 1; }

.wizard-steps li:first-child:before {
  left: 50%;
  max-width: 50%; }

.wizard-steps li:last-child:before {
  max-width: 50%;
  width: 50%; }

.wizard-steps li.complete .step {
  background-color: #0aa699;
  padding: 1px 6px;
  border: 4px solid #55606e; }

.wizard-steps li .step {
  background-color: #d1dade;
  border-radius: 32px 32px 32px 32px;
  color: #fffeff;
  display: inline;
  font-size: 15px;
  font-weight: bold;
  line-height: 12px;
  padding: 4px 9px;
  position: relative;
  text-align: center;
  z-index: 2;
  transition: all .2s linear 0s; }

.wizard-steps li .step i {
  font-size: 10px;
  font-weight: normal;
  position: relative;
  top: -1.5px; }

.wizard-steps li .title {
  color: #B1BCC5;
  display: block;
  font-size: 13px;
  line-height: 15px;
  max-width: 100%;
  position: relative;
  table-layout: fixed;
  text-align: center;
  top: 20px;
  word-wrap: break-word;
  z-index: 104; }

.wizard-steps a:hover,
.wizard-steps a:active,
.wizard-steps a:focus {
  text-decoration: none; }

.wizard-steps li.active .step,
.wizard-steps li.active.complete .step {
  background-color: #416af0;
  color: #fffeff;
  font-weight: bold;
  padding: 10px 15px;
  border: none;
  font-size: 16px; }

.wizard-steps li.complete .title,
.wizard-steps li.active .title {
  color: #2B3D53; }

.step-content {
  margin-left: 60px;
  margin-top: 40px; }

.step-content .step-pane {
  display: none;
  min-height: 267px; }

.step-content .active {
  display: block; }

.wizard-actions {
  display: block;
  list-style: none outside none;
  padding: 0;
  position: relative;
  width: 100%; }

.wizard-actions li {
  display: inline; }

.tab-content {
  overflow: auto;
  position: relative;
  z-index: 10;
  background-color: transparent;
  overflow: hidden; }

.tab-content.transparent {
  background-color: transparent; }

.form-group {
  margin-bottom: 20px;
  /*height: 67px*/ }

.form-group .form-label {
  color: #55606e;
  display: inline-block;
  margin-right: 8px; }

.form-group .help {
  color: #A7ABB1;
  font-size: 12px; }

.form-group .controls {
  margin-top: 8px; }

.form-control {
  border: 1px solid #E5E9EC;
  font-size: 13px; }

.form-row input,
.form-row select,
.form-row textarea {
  margin-bottom: 10px; }

.form-row .radio {
  margin-bottom: 7px; }

.form-row:last-child {
  margin-bottom: 0; }

.slide-primary,
.slide-success {
  display: inline-block; }

.slide-primary .ios-switch .on-background {
  background-image: none;
  background-color: #0aa699; }

.slide-success .ios-switch .on-background {
  background-image: none;
  background-color: #416af0; }

.select2-container .select2-choice {
  background-image: none;
  border-radius: 2px;
  border: 1px solid #e5e9ec;
  padding: 3px 9px;
  transition: border .2s linear 0s;
  height: 35px; }

.select2-container .select2-choice .select2-arrow {
  background: transparent;
  border-left: 0; }

.select2-container .select2-choice .select2-arrow b {
  background: none; }

.select2-container .select2-choice .select2-arrow b:before {
  font-family: 'FontAwesome';
  content: "\f0d7";
  position: relative;
  top: 2px;
  right: 5px;
  font-size: 12px; }

.select2-container.select2-drop-above .select2-choice {
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px; }

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  background-image: none;
  border: 1px solid #e5e9ec;
  background: #f4f5f7; }

.select2-dropdown-open .select2-choice .select2-arrow b {
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1); }

.select2-drop.select2-drop-above {
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  box-shadow: none; }

.select2-drop.select2-drop-above.select2-drop-active {
  border: 1px solid #e5e9ec;
  border-bottom: none;
  border-radius: 2px;
  padding-top: 0; }

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  box-shadow: none;
  border: 1px solid #e5e9ec;
  background: #f4f5f7;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.select2-search {
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 3px; }

.select2-search input {
  background: #fffeff !important;
  vertical-align: baseline;
  line-height: 28px;
  border-radius: 2px;
  border: none;
  font-size: 12px;
  border: 1px solid #999999; }

.select2-results {
  margin: 3px 10px 10px 3px; }

.select2-results li {
  color: #6F7B8A; }

.select2-results li.select2-result-with-children > .select2-result-label {
  color: #282323; }

.select2-results .select2-highlighted {
  background: #416af0;
  border-radius: 3px; }

.select2-results .select2-highlighted .select2-result-label {
  color: #fffeff; }

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  background: none;
  color: #6F7B8A;
  font-size: 12px;
  padding-left: 8px;
  padding-top: 0;
  position: relative;
  top: -5px; }

.select2-drop-active {
  border: 1px solid #e5e9ec;
  border-bottom: none;
  border-top: none;
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  padding-top: 5px; }

.select2-container-multi .select2-choices {
  background-image: none;
  border: 1px solid #dae0e4;
  border-radius: 3px;
  width: 100%; }

.select2-container-multi .select2-choices .select2-search-choice {
  background-color: #e8edf1;
  background-image: none;
  border: none;
  box-shadow: none;
  color: inherit;
  border-radius: 3px;
  margin: 8px -5px 7px 10px;
  padding: 4px 8px 4px 21px;
  direction: ltr; }

.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #dae0e4;
  box-shadow: none; }

.select2-container-multi.select2-container-active .select2-search-choice {
  background-color: #fffeff !important; }

.select2-container-multi .select2-search-choice-close {
  left: 6px; }

.select2-search-choice-close {
  background: none;
  top: 4px;
  right: 0; }

.select2-search-choice-close:hover {
  text-decoration: none; }

.select2-search-choice-close:before {
  font-family: 'FontAwesome';
  content: "\f00d";
  font-size: 12px;
  color: #94a1b2; }

.select2-drop-multi .select2-results .select2-no-results,
.select2-drop-multi .select2-results .select2-searching,
.select2-drop-multi .select2-results .select2-selection-limit {
  top: 0; }

.select2.form-control {
  padding: 0;
  box-shadow: none;
  border: 0; }

.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
  border-radius: 0 2px 2px 0; }

.input-prepend.inside .add-on:first-child,
.input-prepend .btn:first-child {
  background-color: #fffeff;
  border: 1px solid #e5e9ec;
  position: relative;
  left: 3px;
  border-radius: 2px;
  padding-left: 8px;
  padding-right: 4px;
  padding-top: 4px;
  top: 0;
  transition: border .2s linear 0s, box-shadow .2s linear 0s, color .2s linear 0s, box-shadow .2s linear 0s, background .2s linear 0s;
  color: #9ea9b2; }

.input-prepend.inside.no-boarder .add-on:first-child,
.input-prepend.no-boarder .btn:first-child {
  border: none; }

.input-append .add-on,
.input-prepend .add-on {
  position: absolute;
  background-color: #d1dade;
  color: #5E5E5E;
  text-shadow: none;
  border: #d1dade;
  border-radius: 0 2px 2px 0;
  height: 37px;
  min-width: 34px;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 6px; }

.input-append .add-on .arrow {
  background-color: transparent !important;
  position: absolute;
  left: -6px;
  color: #d1dade;
  z-index: 100;
  font-size: 26px; }

.input-append .add-on .arrow:before {
  font-family: 'FontAwesome';
  content: "\f0d9 "; }

.input-append.primary .add-on .arrow {
  color: #0aa699; }

.input-append.success .add-on .arrow {
  color: #416af0; }

.input-append.info .add-on .arrow {
  color: #1f3853; }

.input-append.warning .add-on .arrow {
  color: #fbb05e; }

.input-append.danger .add-on .arrow {
  color: #f35958; }

.input-append input[class*="span"] {
  padding-left: 16px;
  border-right: 0;
  -webkit-border-radius: 2px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius: 2px;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  border-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-append .form-control {
  display: inline-block; }

.input-append.primary .add-on,
.input-prepend .add-on {
  background-color: #0aa699;
  color: #fffeff; }

.input-append.success .add-on,
.input-prepend .add-on {
  background-color: #416af0;
  color: #fffeff;
  display: inline-block;
  float: left; }

.input-append.info .add-on,
.input-prepend .add-on {
  background-color: #1f3853;
  color: #fffeff; }

.input-append.warning .add-on,
.input-prepend .add-on {
  background-color: #fbb05e;
  color: #fffeff; }

.input-append.danger .add-on,
.input-prepend .add-on {
  background-color: #f35958;
  color: #fffeff; }

.input-focus {
  background-color: #f4f5f7 !important;
  color: #56646e !important; }

.no-boarder .input-focus {
  border: none !important; }

.input-prepend input[class*="span"] {
  padding-left: 16px;
  border-left: 0;
  -webkit-border-radius: 2px;
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius: 2px;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-bottomleft: 0;
  border-radius: 2px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.input-with-icon {
  position: relative; }

.input-with-icon input {
  padding-left: 32px !important; }

.input-with-icon i {
  color: #e5e9ec;
  display: block;
  position: absolute;
  margin: 9px 2px 4px 10px;
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center; }

.input-with-icon.right input {
  padding-left: 12px !important;
  padding-right: 33px !important; }

.input-with-icon.right i {
  right: 8px;
  float: right; }

.input-group {
  width: 100%; }

.input-group-addon {
  border: 1px solid #E5E9EC;
  color: #9EA9B2;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 3px;
  transition: border .2s linear 0s, box-shadow .2s linear 0s, color .2s linear 0s, box-shadow .2s linear 0s, background .2s linear 0s; }

.input-group-addon i {
  position: relative;
  top: 1px; }

.input-group-addon.primary {
  background-color: #0aa699;
  border: 1px solid #0aa699;
  color: #fffeff; }

.input-group-addon.primary .arrow {
  color: #0aa699; }

.input-group-addon.success {
  background-color: #416af0;
  color: #fffeff; }

.input-group-addon.success .arrow {
  color: #416af0; }

.input-group-addon.success a {
  color: #fffeff; }

.input-group-addon.info {
  background-color: #1f3853;
  color: #fffeff; }

.input-group-addon.info .arrow {
  color: #1f3853; }

.input-group-addon.warning {
  background-color: #fbb05e;
  color: #fffeff; }

.input-group-addon.warning .arrow {
  color: #fbb05e; }

.input-group-addon.danger {
  background-color: #f35958;
  color: #fffeff; }

.input-group-addon.danger .arrow {
  color: #f35958; }

.input-group-addon .arrow {
  position: relative;
  right: -6px;
  color: #d1dade;
  z-index: 100; }

.input-group-addon .arrow:before {
  font-family: 'FontAwesome';
  content: "\f0da";
  font-size: 23px;
  position: absolute;
  left: 17px;
  top: -2px; }

.input-group-addon:last-child .arrow:before {
  font-family: 'FontAwesome';
  content: "\f0d9";
  font-size: 23px;
  position: absolute;
  left: -23px;
  top: -2px; }

.input-group-addon:last-child input {
  border-left: 0; }

.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-left: 0; }

.transparent .input-group-addon {
  background-color: #fffeff;
  padding: 8px 1px 10px 9px; }

.transparent.input-group .form-control:first-child,
.transparent .input-group-addon:first-child,
.transparent .input-group-btn:first-child > .btn,
.transparent .input-group-btn:first-child > .dropdown-toggle,
.transparent .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-right: 0;
  border-left: 1px solid #e5e9ec; }

.transparent .input-group .form-control:last-child,
.transparent .input-group-addon:last-child,
.transparent .input-group-btn:last-child > .btn,
.transparent .input-group-btn:last-child > .dropdown-toggle,
.transparent .input-group-btn:first-child > .btn:not(:first-child) {
  padding: 6px 10px; }

.datepicker {
  padding: 10px 16px;
  border-radius: 2px;
  font-size: 12px; }

.datepicker thead tr .datepicker-switch {
  color: #6f7b8a;
  font-size: 13px; }

.datepicker thead tr .prev {
  color: #416af0;
  content: '';
  font-size: 0; }

.datepicker thead tr .prev:before {
  color: #416af0;
  font-family: 'FontAwesome';
  content: "\f053";
  font-size: 13px; }

.datepicker thead tr .next {
  color: #416af0;
  content: '';
  font-size: 0; }

.datepicker thead tr .next:before {
  color: #416af0;
  font-family: 'FontAwesome';
  content: "\f054";
  font-size: 13px; }

.datepicker thead tr .dow {
  color: #416af0;
  text-transform: uppercase;
  font-size: 11px; }

.datepicker tbody tr .odd {
  color: #d0d3d8; }

.datepicker table tr td.day:hover {
  background: #eeeeee;
  opacity: .65; }

.datepicker table tr td span {
  border-radius: 4px 4px 4px 4px; }

.datepicker th,
.datepicker td {
  padding: 5.5px !important; }

.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #d0d3d8; }

.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-image: none;
  text-shadow: none;
  font-weight: 600; }

.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #e5e9ec;
  background-image: none;
  color: #fffeff; }

.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled[disabled]:hover {
  background-color: #416af0; }

.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-image: none;
  border: none;
  text-shadow: none; }

.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled[disabled]:hover {
  background-color: #416af0; }

.datepicker-inline {
  width: auto; }

.error {
  font-size: 12px;
  color: #f35958;
  display: block; }

.has-error .form-control,
.has-error .form-control:focus {
  border-color: #f35958; }

.error-control input {
  border: 1px solid #f35958; }

.error-control select {
  border: 1px solid #f35958; }

.error-control textarea {
  border: 1px solid #f35958; }

.error-control .select2-container .select2-choice {
  border: 1px solid #f35958; }

.error-control.input-with-icon .select2-container .select2-choice .select2-arrow b:before {
  content: "\f12a";
  color: #f35958; }

.error-control.input-with-icon .select2-container .select2-choice .select2-arrow b {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

.error-control i {
  color: #f35958; }

.success-control input {
  border: 1px solid #0aa699; }

.success-control select {
  border: 1px solid #0aa699; }

.success-control textarea {
  border: 1px solid #0aa699; }

.success-control .select2-container .select2-choice {
  border: 1px solid #0aa699; }

.success-control.input-with-icon .select2-container .select2-choice .select2-arrow b:before {
  content: "\f00c";
  color: #0aa699; }

.success-control.input-with-icon .select2-container .select2-choice .select2-arrow b {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1); }

.success-control i {
  color: #0aa699; }

.clockpicker-popover {
  z-index: 10; }

.selectTwo,
.multi {
  width: 100%;
  margin-bottom: 1rem; }

.grid {
  clear: both;
  margin-top: 0;
  margin-bottom: 25px;
  padding: 0; }

.grid.closed .grid-body {
  display: none;
  overflow: hidden; }

.grid.box {
  padding: 0 !important; }

.grid.box .form-horizontal.form-bordered .control-group {
  margin-left: -10px;
  margin-right: -10px; }

.grid.box .form-horizontal.form-bordered .control-group:first-child {
  margin-top: -10px; }

.grid.box .grid-title {
  padding: 8px 10px 2px 10px;
  border-bottom: 1px solid #eee;
  color: #fffeff !important;
  margin-bottom: 0; }

.grid.box .grid-title > .actions > .btn > i {
  color: #fffeff !important; }

.grid.box .grid-title .tools {
  margin-top: 3px; }

.grid.box .grid-title .tools a {
  background: url(@{base-img-url}/icon/portlet-tray.png) no-repeat;
  width: 23px;
  height: 23px; }

.grid.box .grid-body {
  background-color: #fffeff;
  padding: 10px; }

.grid.box.blue {
  border: 1px solid #b4cef8;
  border-top: 0; }

.grid.box.blue .grid-title {
  background-color: #58acf3; }

.grid.box.red {
  border: 1px solid #f35958;
  border-top: 0; }

.grid.box.red .grid-title {
  background-color: #f35958; }

.grid.box.yellow {
  border: 1px solid #fccb7e;
  border-top: 0; }

.grid.box.yellow .grid-title {
  background-color: #ffb848; }

.grid.box.green {
  border: 1px solid #0aa699;
  border-top: 0; }

.grid.box.green .grid-title {
  background-color: #0aa699; }

.grid.box.purple {
  border: 1px solid #af5cc1;
  border-top: 0; }

.grid.box.purple .grid-title {
  background-color: #852b99; }

.grid.box.grey {
  border: 1px solid #9d9c9c;
  border-top: 0; }

.grid.box.grey .grid-title {
  background-color: #555555; }

.grid.box.light-grey {
  border: 1px solid #eee;
  border-top: 0; }

.grid.box.light-grey .grid-title {
  background-color: #aaa; }

.grid .simple .form-actions {
  margin-left: -20px !important;
  margin-right: -20px !important;
  margin-bottom: -20px !important; }

.grid .solid .grid-title {
  color: #fffeff !important;
  border-bottom: 1px solid #fffeff; }

.grid.solid .grid-title {
  margin-bottom: 5px;
  border: 0;
  padding: 13px 15px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35) !important; }

.grid.solid .grid-title .tools {
  margin-top: 2px;
  border: 0; }

.grid.solid .grid-title h4 {
  color: #fffeff; }

.grid.solid .grid-body {
  color: #fffeff;
  padding: 20px; }

.grid.solid .grid-body h3 {
  color: #fffeff; }

.grid.simple {
  padding: 0 !important; }

.grid.simple .grid-title {
  padding: 14px 15px 7px 15px;
  border-bottom: 1px solid #eee;
  color: #282323 !important;
  background-color: #fffeff;
  margin-bottom: 0;
  border: 1px solid #dddddd;
  border-bottom: 0; }

.grid.simple .grid-title > .actions > .btn > i {
  color: #fffeff !important; }

.grid.simple .grid-title .tools {
  margin-top: 0;
  position: relative; }

.grid.simple .grid-title.no-border {
  border: 0;
  border-bottom: 0; }

.grid.simple .form-actions {
  margin-right: -26px !important;
  margin-left: -26px !important;
  margin-bottom: -26px !important; }

.grid.simple.transparent .grid-body {
  background-color: transparent !important;
  border: none; }

.grid.simple.transparent .grid-title {
  border: none;
  border-bottom: 1px solid #D7DBE0;
  background-color: transparent; }

.grid.simple .grid-body {
  background-color: #fffeff;
  padding: 26px;
  border: 1px solid #dddddd;
  color: #6f7b8a; }

.grid.simple .grid-body.no-padding {
  padding: 0; }

.grid.simple .grid-body .wrap-body {
  padding: 0 26px;
  padding-top: 10px; }

.grid.simple .grid-body.no-border {
  border: 0;
  padding-top: 1px; }

.grid.simple .grid-body h4 {
  color: #282323; }

.grid.simple .grid-body h3 {
  color: #282323; }

.grid.simple .grid-body.invoice-body {
  padding: 30px; }

.grid.simple .grid-body.invoice-body .invoice-logo {
  margin-bottom: 18px; }

.grid.simple.vertical.green {
  border-left: 4px solid #0aa699;
  border-top: none !important; }

.grid.simple.vertical.red {
  border-left: 4px solid #f35958;
  border-top: none !important; }

.grid.simple.vertical.purple {
  border-left: 4px solid #736086;
  border-top: none !important; }

.grid.simple.vertical.blue {
  border-left: 4px solid #416af0;
  border-top: none !important; }

.grid.simple.horizontal.red .grid-title {
  border-top: 4px solid #f35958; }

.grid.simple.horizontal.yellow .grid-title {
  border-top: 4px solid #ffb848; }

.grid.simple.horizontal.green .grid-title {
  border-top: 4px solid #0aa699; }

.grid.simple.horizontal.purple .grid-title {
  border-top: 4px solid #852b99; }

.grid.simple.horizontal.grey .grid-title {
  border-top: 4px solid #555555; }

.grid.simple.horizontal.light-grey .grid-title {
  border-top: 4px solid #aaa; }

.grid:after,
.grid:before {
  display: table; }

.grid-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee; }

.grid-title h4 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  margin-bottom: 7px;
  width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.grid-title h4 i {
  font-size: 14px;
  margin-right: 5px;
  color: #666; }

.grid-title.descriptive {
  padding-left: 23px !important;
  padding-top: 20px !important; }

.grid-title.descriptive .actions {
  margin-right: 14px;
  margin-top: -16px; }

.grid-title.descriptive .actions a {
  color: #4c5264; }

.grid-title.descriptive .actions a:hover {
  opacity: .5; }

.grid-title.descriptive .actions i {
  font-size: 22px;
  margin-right: 10px; }

.grid-title.descriptive p {
  display: inline-block;
  width: 60%;
  white-space: nowrap;
  line-height: 23px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #7a7d82;
  font-size: 12px; }

.grid-title.clickable {
  cursor: pointer; }

.grid-title .tools > a {
  display: inline-block;
  height: 16px;
  margin-left: 5px; }

.grid-title .tools > a:hover {
  text-decoration: none;
  -webkit-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  -ms-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  opacity: .6; }

.grid-title .dropdown-menu i {
  color: #000; }

.grid-title .actions > .btn-group {
  margin-top: -12px; }

.grid-title .actions > .btn-group > .btn {
  padding: 4px 10px;
  margin-top: -1px; }

.grid-title .actions > .btn {
  padding: 4px 10px;
  margin-top: -13px; }

.grid-title .actions > .btn.mini {
  margin-top: -12px;
  padding: 4px 10px; }

.grid-title .pagination.pagination-small {
  float: right !important;
  display: inline-block !important;
  margin: 0;
  margin-top: -2px; }

.grid-title .tools,
.grid-title .actions {
  display: inline-block;
  padding: 0;
  margin: 0;
  margin-top: 6px;
  float: right; }

.grid-body {
  padding: 0; }

.grid-body .btn-toolbar {
  margin: 0 !important;
  padding: 0 !important; }

.grid-body .slimScrollBar {
  margin-right: 0 !important; }

.grid-body:before {
  display: table;
  content: " "; }

.grid-body:after {
  clear: both;
  display: table;
  content: " "; }

.grid-body.light-blue,
.grid.light-blue {
  background-color: #bfd5fa !important; }

.grid-body.blue,
.grid.blue {
  background-color: #58acf3 !important; }

.grid-body.red,
.grid.red {
  background-color: #f35958 !important; }

.grid-body.yellow,
.grid.yellow {
  background-color: #ffb848 !important; }

.grid-body.green,
.grid.green {
  background-color: #0aa699 !important; }

.grid-body.purple,
.grid.purple {
  background-color: #852b99 !important; }

.grid-body.light-grey,
.grid.light-grey {
  background-color: #fafafa !important; }

.grid-body.dark-grey,
.grid.dark-grey {
  background-color: #555555 !important; }

.sortable .grid .grid-title {
  cursor: move; }

.ui-sortable {
  min-height: 25px !important; }

.ui-sortable-placeholder {
  border: 1px dotted black;
  visibility: visible !important;
  height: 100% !important; }

.ui-sortable-placeholder * {
  visibility: hidden; }

.sortable-box-placeholder {
  background-color: #f5f5f5;
  border: 1px dashed #DDDDDD;
  display: block;
  margin-top: 0 !important;
  margin-bottom: 24px !important; }

.sortable-box-placeholder * {
  visibility: hidden; }

.grid.simple .grid-title .tools a,
.grid.solid .grid-title .tools a {
  position: relative;
  background: url("../img/icon/portlet-tray.png") no-repeat;
  transition: all .1s linear 0s; }

.grid.simple .grid-title .tools > a.remove,
.grid.solid .grid-title .tools > a.remove {
  background-position: -66px -38px;
  width: 10px;
  height: 10px;
  top: -5px; }

.grid.simple .grid-title .tools > a.config,
.grid.solid .grid-title .tools > a.config {
  background-position: -3px -32px;
  width: 22px;
  height: 22px; }

.grid.simple .grid-title .tools > a.reload,
.grid.solid .grid-title .tools > a.reload {
  background-position: -37px -38px;
  width: 12px;
  height: 10px;
  top: -5px; }

.grid.simple .grid-title .tools > a.expand,
.grid.solid .grid-title .tools > a.expand {
  background-position: -123px -40px;
  width: 10px;
  height: 6px;
  top: -5px; }

.grid.simple .grid-title .tools > a.collapse,
.grid.solid .grid-title .tools > a.collapse {
  background-position: -95px -40px;
  width: 9px;
  height: 7px;
  top: -5px; }

.alert {
  color: #ce8f22;
  background-color: #fffcee;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  padding: 9px 19px 9px 15px;
  border-radius: 3px 3px 3px 3px;
  border: 1px solid #F0DBB4;
  -webkit-transition: all .2s linear 0s;
  transition: all .2s linear 0s; }

.alert .link {
  color: #ce8f22;
  font-weight: bold; }

.alert .alert-heading {
  color: #ce8f22 !important;
  margin-bottom: 5px;
  font-weight: 600; }

.alert .btn-small {
  position: relative;
  top: -3.5px; }

.alert .button-set .btn {
  position: relative;
  top: 8px; }

.alert .close {
  background-position: -9px -10px;
  width: 10px;
  height: 9px;
  position: relative;
  opacity: .8;
  top: 4.5px;
  float: right;
  margin-left: 20px; }

.alert .close:hover {
  opacity: 1; }

.alert-success {
  color: #438a85;
  background-color: #f3faf8;
  border-color: #bfd1cf; }

.alert-success .link {
  color: #438a85; }

.alert-success .alert-heading {
  color: #438a85 !important; }

.alert-success .close {
  background-position: -38px -10px !important; }

.alert-info {
  color: #fff;
  background-color: #416af0;
  border-color: #416af0; }

.alert-info .link {
  color: #031b4e; }

.alert-info .alert-heading {
  color: #031b4e !important; }

.alert-info .close {
  background-position: -67px -10px !important; }

.alert-danger,
.alert-error {
  color: #e76e70;
  background-color: #fff6f4;
  border-color: #f8cdcd; }

.alert-danger .link,
.alert-error .link {
  color: #e76e70; }

.alert-danger .alert-heading,
.alert-error .alert-heading {
  color: #e76e70 !important; }

.alert-error .close,
.alert .alert-danger .close {
  background-position: -95px -10px !important; }

.alert-block {
  padding: 15px 19px 15px 17px; }

.popover-content .notification-messages {
  padding: 15px 18px 15px; }

.notification-messages {
  font-family: 'Arial';
  background-color: #eef9f8;
  padding: 15px 18px 10px;
  display: block;
  color: #8b91a0;
  margin-bottom: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.notification-messages.success {
  background-color: #eef9f8; }

.notification-messages.success:hover {
  background-color: #d9edf1;
  cursor: pointer; }

.notification-messages.success .iconholder i {
  color: #f35958; }

.notification-messages.danger {
  background-color: #fef2f2; }

.notification-messages.danger:hover {
  background-color: #fae1e1;
  cursor: pointer; }

.notification-messages.danger .iconholder i {
  color: #f35958; }

.notification-messages.info {
  background-color: #edf7fc; }

.notification-messages.info:hover {
  background-color: #d8ebf4;
  cursor: pointer; }

.notification-messages.info .iconholder i {
  color: #f35958; }

.notification-messages .message-wrapper {
  display: inline-block;
  width: 70%;
  height: 43px;
  float: left; }

.notification-messages .message-wrapper .heading {
  display: block;
  float: left;
  text-align: left;
  color: #1b1e24;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  width: 100%;
  margin: 0;
  line-height: 19px;
  font-weight: 600; }

.notification-messages .message-wrapper .description {
  display: block;
  float: left;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  font-size: 11px;
  width: 100%;
  line-height: 19px; }

.notification-messages .date {
  display: inline-block;
  font-size: 11px;
  line-height: 15px;
  font-style: italic;
  opacity: .4; }

.notification-messages .user-profile {
  border-radius: 100px 100px 100px 100px;
  display: inline-block;
  float: left;
  height: 35px;
  overflow: hidden;
  width: 35px;
  margin-right: 10px;
  margin-top: 2px; }

.notification-messages .iconholder {
  display: inline-block;
  float: left;
  margin-right: 10px;
  margin-top: 5px; }

.notification-messages .iconholder i {
  font-size: 28px; }

.tooltip-inner {
  padding: 6px 9px; }

.tooltip > .tooltip-inner {
  background-color: #fffeff;
  color: #6f7b8a;
  border: 1px solid #e0e5e7; }

.tooltip {
  opacity: 1 !important; }

.tooltip.bottom > .tooltip-arrow {
  border-bottom-color: #e0e5e7; }

.tooltip.top > .tooltip-arrow {
  border-top-color: #e0e5e7; }

/*.progress {
    height: 12px;
    background-color: #e9ecee;
    background-image: none;
    box-shadow: none;
    filter: none
}

.progress.no-radius {
    border-radius: 0
}

.progress.no-radius .progress-bar {
    border-radius: 0
}

.progress.transparent {
    background-color: rgba(0, 0, 0, 0.28)
}

.progress.progress-small {
    height: 4px
}

.progress.progress-large {
    height: 20px
}*/
/*.progress-bar {
    box-shadow: none;
    border-radius: 3px;
    background-color: $primary-interaction;
    background-image: none;
    -webkit-transition: all 1000ms cubic-bezier(.785, .135, .15, .86);
    transition: all 1000ms cubic-bezier(.785, .135, .15, .86);
    -webkit-transition-timing-function: cubic-bezier(.785, .135, .15, .86);
    -moz-transition-timing-function: cubic-bezier(.785, .135, .15, .86);
    -ms-transition-timing-function: cubic-bezier(.785, .135, .15, .86);
    -o-transition-timing-function: cubic-bezier(.785, .135, .15, .86);
    transition-timing-function: cubic-bezier(.785, .135, .15, .86);
    float: left;
    filter: none
}

.progress-bar-success {
    background-color: #0aa699;
    background-image: none
}

.progress-bar-info {
    background-color: $primary-interaction;
    background-image: none
}

.progress-bar-warning {
    background-color: #fdd01c;
    background-image: none
}

.progress-bar-danger {
    background-color: #f35958;
    background-image: none
}

.progress-bar-white {
    background-color: #fffeff;
    background-image: none
}

.progress-bar-black {
    background-color: #1b1e24;
    background-image: none
}*/
/*.progress-info .bar,
.progress .bar-info {
    background-color: #1f3853;
    background-image: none
}

.progress-warning .bar,
.progress .bar-warning {
    background-color: #fdd01c;
    background-image: none
}

.progress-danger .bar,
.progress .bar-danger {
    background-color: #f35958;
    background-image: none
}

.progress-white .bar,
.progress .bar-white {
    background-color: #fffeff;
    background-image: none
}

.progress-success.progress-striped .bar,
.progress-striped .bar-success {
    background-color: $primary-interaction
}

.progress-info.progress-striped .bar,
.progress-striped .bar-info {
    background-color: #1f3853
}*/
.details-status-single {
  display: inline-block;
  background-color: #e5e9ec;
  color: #5c6370;
  font-size: 11px;
  padding: 6px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.label {
  padding: 3px 9px;
  font-size: 11px;
  text-shadow: none;
  background-color: #d1dade;
  font-family: 'Open Sans';
  font-weight: 600;
  color: #5E5E5E; }

.badge {
  text-shadow: none;
  font-family: 'Open Sans';
  font-weight: 600;
  background-color: #d1dade;
  font-size: 11px;
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 4px;
  color: #5E5E5E; }

.label-primary,
.badge-primary {
  background-color: #416af0;
  color: #fffeff; }

.label-success,
.badge-success {
  background-color: #0aa699;
  color: #fffeff; }

.label-warning,
.badge-warning {
  background-color: #fdd01c;
  color: #fffeff; }

.label-important,
.badge-important {
  background-color: #f35958;
  color: #fffeff; }

.label-danger,
.badge-danger {
  background-color: #f35958;
  color: #fffeff; }

.label-info,
.badge-info {
  background-color: #416af0;
  color: #fffeff; }

.label-inverse,
.badge-inverse {
  background-color: #1f3853;
  color: #fffeff; }

.label-white,
.badge-white {
  background-color: #fffeff;
  color: #5E5E5E; }

.label-white,
.badge-disable {
  background-color: #2a2e36;
  color: #8b91a0; }

.popover {
  border-radius: 3px;
  border: none;
  -webkit-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  -moz-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  max-width: 350px; }

.popover.right .arrow {
  border-right-color: rgba(0, 0, 0, 0.08); }

.popover.left .arrow {
  border-right-color: rgba(0, 0, 0, 0.08); }

.popover.top .arrow {
  border-right-color: rgba(0, 0, 0, 0.08); }

.popover.bottom .arrow:after {
  top: 0;
  margin-left: -11px; }

.popover .arrow:after {
  border-width: 11px; }

.popover-title {
  background-color: #fffeff;
  margin: 0 5px;
  font-weight: bold;
  color: #505458 !important;
  text-align: center; }

.modal {
  border-radius: 3px;
  box-shadow: none; }

.modal-backdrop {
  background-color: #1a1a1a; }

.modal-backdrop.in {
  opacity: 0.5; }

.modal-header {
  text-align: center;
  border-bottom: none; }

.modal-header p {
  color: #8b91a0; }

.modal-header #description {
  padding-top: 5px; }

.modal-content {
  border: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

.modal-content #baywa-logo {
  margin-top: 15px; }

.modal-footer {
  border-top: none;
  box-shadow: none;
  /* background-color: #fffeff; */
  margin-top: 0;
  /* border-radius: 5px */ }

.dropdown-menu.pull-right {
  right: 0;
  left: auto; }

#notification-list {
  display: none; }

.btn {
  display: inline-block;
  padding: 9px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  color: #6f7b8a;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: #e9ecee;
  -webkit-border-radius: 3px;
  background-image: none !important;
  border: none;
  text-shadow: none;
  box-shadow: none;
  transition: all .12s linear 0s !important;
  font: 14px/20px "Open Sans", Arial, sans-serif; }

.btn:focus {
  outline: none !important; }

.btn .caret {
  margin-left: 3px; }

.btn .caret.single {
  margin-left: 0; }

.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  background-color: #e0e5e7; }

.btn-cons {
  margin-right: 5px;
  min-width: 120px;
  margin-bottom: 8px; }

.btn-cons:hover {
  color: #708ff4; }

.btn-demo-space {
  margin-bottom: 8px; }

.demo-placeholder {
  width: 100%;
  height: 250px; }

.btn-social {
  font-size: 20px;
  margin: 10px; }

.btn-social:hover,
.btn-social:focus,
.btn-social:active,
.btn-social.active,
.btn-social.disabled,
.btn-social[disabled] {
  color: #2d8ebf;
  text-decoration: none; }

.btn-primary {
  color: #fffeff;
  background-color: #2ECC71; }

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled],
.btn-primary.active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  background-color: #099a8c; }

.btn-mini {
  padding: 2px 9px !important;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.btn-success {
  color: #fffeff;
  background-color: #416af0; }

.btn.btn-ecofasten {
  background-color: #8aa60d !important;
  border-color: #8aa60d !important;
  color: white; }

.btn.btn-ars {
  background-color: #8aa60d !important;
  border-color: #8aa60d !important;
  color: white; }

.btn.btn-hb {
  background-color: #233881 !important;
  border-color: #233881 !important;
  color: white; }

.btn.btn-ecl {
  background: #258f39 !important;
  border-color: #258f39 !important;
  color: white; }

.btn.btn-ecl:hover {
  background: #4bae5e !important;
  border-color: #4bae5e !important; }

.btn.btn-tenk {
  background-color: #ff6600;
  border-color: #ff6600;
  color: white; }

.btn.btn-tenk:hover,
.btn.btn-tenk[disabled],
.btn.btn-tenk[disabled]:hover {
  background-color: #FFAC76;
  border-color: #FFAC76; }

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open > .dropdown-toggle.btn-success.focus,
.open > .dropdown-toggle.btn-success:focus,
.open > .dropdown-toggle.btn-success:hover {
  background-color: #708ff4; }

.btn-success.disabled,
.btn-success[disabled] {
  background-color: #b3c2c9; }

.btn-success.disabled:hover,
.btn-success[disabled]:hover {
  background-color: #d1dade; }

.btn-info {
  color: #fffeff;
  background-color: #1f3853; }

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled],
.btn-info.active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open > .dropdown-toggle.btn-info.focus,
.open > .dropdown-toggle.btn-info:focus,
.open > .dropdown-toggle.btn-info:hover {
  background-color: #1b3148; }

.btn-warning {
  color: #fffeff;
  background-color: #fbb05e; }

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled],
.btn-warning.active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open > .dropdown-toggle.btn-warning.focus,
.open > .dropdown-toggle.btn-warning:focus,
.open > .dropdown-toggle.btn-warning:hover {
  background-color: #faa652; }

.btn-danger {
  color: #fffeff;
  background-color: #f35958; }

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled],
.btn-danger.active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open > .dropdown-toggle.btn-danger.focus,
.open > .dropdown-toggle.btn-danger:focus,
.open > .dropdown-toggle.btn-danger:hover {
  background-color: #f14d4d; }

.btn-danger-dark {
  color: #fffeff;
  background-color: #b94141; }

.btn-danger-dark:hover,
.btn-danger-dark:focus,
.btn-danger-dark:active,
.btn-danger-dark.active,
.btn-danger-dark.disabled,
.btn-danger-dark[disabled] {
  background-color: #e94847;
  color: #fffeff; }

.btn-dark {
  color: #fffeff;
  background-color: #1B1E24; }

.btn-white {
  color: #5e5e5e;
  background-color: #fffeff;
  border: 1px solid #e5e9ec; }

.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.disabled,
.btn-white[disabled] {
  background-color: #fbfcfd;
  /* border: 1px solid #b4b9be */ }

.btn-link {
  color: #416af0;
  background-color: transparent;
  border: none;
  text-decoration: underline; }

.btn-large {
  padding: 11px 19px;
  font-size: 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.btn-link:hover,
.btn-link:focus,
.btn-link:active,
.btn-link.active,
.btn-link.disabled,
.btn-link[disabled] {
  background-color: transparent; }

.parent-b a.btn-link:hover {
  text-decoration: none;
  color: #708ff4; }

.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px; }

.btn-small {
  padding: 3px 12px;
  font-size: 11.9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0; }

.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px; }

.btn-mini {
  padding: 2px 9px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.btn-windzones {
  width: 55px; }

.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6; }

.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #0aa699; }

.btn-group.open .btn-warning.dropdown-toggle {
  background-color: #fbb05e; }

.btn-group.open .btn-danger.dropdown-toggle {
  background-color: #f35958; }

.btn-group.open .btn-success.dropdown-toggle {
  background-color: #416af0; }

.btn-group.open .btn-info.dropdown-toggle {
  background-color: #1f3853; }

.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222; }

.btn-group.open .btn-white.dropdown-toggle {
  background-color: #fbfcfd; }

.btn-group > .btn + .dropdown-toggle {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-left: 1px #f7f7f7 solid;
  padding-right: 10px;
  border-left: 1px solid #E5E9EC; }

.btn-group > .btn.btn-mini + .dropdown-toggle {
  padding-right: 8px; }

.btn-group > .dropdown-menu {
  font-size: 13px; }

.btn-group > .dropdown-menu li {
  padding-left: 0; }

.btn-block + .btn-block {
  margin-top: 8px; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  list-style: none;
  text-shadow: none;
  -webkit-box-shadow: 0 0 5px rgba(86, 96, 117, 0.2);
  -moz-box-shadow: 0 0 5px rgba(86, 96, 117, 0.2);
  box-shadow: 0 0 5px rgba(86, 96, 117, 0.2);
  border: none;
  border-radius: 3px;
  padding: 0;
  font-size: 13px; }

.dropdown-menu .divider {
  background-color: #eaedf0;
  height: 1px;
  margin: 3px 0;
  border-bottom: 0; }

.dropdown-menu > li > a {
  line-height: 25px;
  color: #2a2e36;
  margin: 4px;
  border-radius: 3px;
  text-align: left; }

.dropdown-menu li {
  padding-left: 0; }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  color: #1b1e24;
  text-decoration: none;
  background-color: #eff2f3;
  background-image: none; }

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #1b1e24;
  text-decoration: none;
  background-color: #eff2f3;
  background-image: none; }

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999; }

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: default;
  background-color: transparent;
  background-image: none; }

.page-sidebar-wrapper ul.dropdown-menu {
  min-width: 0;
  width: 140px; }

.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
  z-index: 0; }

.btn-group > .btn.btn-white:hover,
.btn-group > .btn.btn-white:focus,
.btn-group > .btn.btn-white:active,
.btn-group > .btn.btn-white.active {
  border: 1px solid #E5E9EC; }

.btn-spacer,
.btn-spacer:hover,
.btn-spacer:focus,
.btn-spacer:active {
  background-color: transparent;
  cursor: default;
  display: inline-block;
  width: 4px; }

code,
pre {
  border: none; }

code {
  background-color: #f3f6f9; }

code:hover {
  background-color: #e8edf3; }

.single-colored-widget {
  height: auto; }

.single-colored-widget h3 {
  font-size: 22px;
  line-height: 32.5px; }

.single-colored-widget .heading {
  padding: 8px 15px;
  padding-bottom: 4px;
  background-color: #fffeff; }

.single-colored-widget .heading h4 {
  margin-bottom: 5px;
  margin-top: 5px; }

.single-colored-widget .content-wrapper {
  padding: 15px 27px;
  padding-bottom: 20px; }

.single-colored-widget .content-wrapper i {
  color: #fffeff; }

.single-colored-widget .content-wrapper.red {
  background-color: #f35958; }

.single-colored-widget .content-wrapper.red p {
  color: #832929; }

.single-colored-widget .content-wrapper.green {
  background-color: #0aa699; }

.single-colored-widget .content-wrapper.green p {
  color: #505458; }

.single-colored-widget .content-wrapper.blue {
  background-color: #416af0; }

.single-colored-widget .content-wrapper.blue p {
  color: #0a5174; }

.single-colored-widget .content-wrapper .mini-logo {
  margin-bottom: 15px; }

.single-colored-widget .content-wrapper .h3 {
  margin-bottom: 15px; }

.the-icons {
  padding-top: 17px; }

.the-icons i {
  color: #505458;
  width: 32px;
  font-size: 14px;
  display: inline-block;
  text-align: right;
  margin-right: 10px; }

.the-icons a {
  color: #505458;
  font-size: 14px;
  cursor: pointer;
  display: block;
  height: 32px;
  line-height: 32px; }

.the-icons a:hover {
  text-decoration: none; }

.the-icons [class*="span"]:first-child {
  margin-left: 2.5641%; }

.the-icons a:hover .fa,
.the-icons a:hover [class*="fa"] {
  font-size: 28px;
  vertical-align: -5px; }

.center {
  text-align: center; }

.btn-first, .btn-first:focus {
  background-color: #416af0;
  color: #fffeff;
  font-family: 'Open Sans', 'Arial'; }

.btn-first:hover {
  background-color: #708ff4;
  color: #fffeff; }

.btn-first.active,
.btn-first:active {
  background-color: #416af0;
  border-color: #416af0;
  color: #fffeff; }

.btn-first.disabled,
.btn-first.disabled.active,
.btn-first.disabled.focus,
.btn-first.disabled:active,
.btn-first.disabled:focus,
.btn-first.disabled:hover,
.btn-first[disabled],
.btn-first[disabled].active,
.btn-first[disabled].focus,
.btn-first[disabled]:active,
.btn-first[disabled]:focus,
.btn-first[disabled]:hover,
fieldset[disabled] .btn-first,
fieldset[disabled] .btn-first.active,
fieldset[disabled] .btn-first.focus,
fieldset[disabled] .btn-first:active,
fieldset[disabled] .btn-first:focus,
fieldset[disabled] .btn-first:hover {
  background-color: #416af0; }

.sidebar-tab-pad {
  text-align: center;
  width: 92%;
  margin-left: 4%;
  margin-right: 4%;
  margin-top: 1rem;
  margin-bottom: 1rem; }

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

.page-sidebar .sidebar-tab-pad button.btn-large,
.page-sidebar .sidebar-tab-pad a.btn-large.dropdown-toggle {
  padding: 11px 17px; }

.tabbable:after {
  clear: both; }

.tabbable:before,
.tabbable:after {
  content: "";
  display: table;
  line-height: 0; }

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0 none; }

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
  padding: 15px; }

.tab-content > .active,
.pill-content > .active {
  display: block;
  padding: 19px; }

.tab-content > .active {
  min-height: calc(100vh - 147px); }

.page-sidebar-wrapper ul.nav-tabs > li.active > a {
  color: #6f7b8a;
  background-color: #fffeff; }

.page-sidebar-wrapper ul.nav-tabs > li > a {
  height: 44px; }

.page-sidebar-wrapper ul.nav-tabs {
  background: #f6f7f8; }

.page-sidebar-wrapper .nav-tabs {
  border-bottom: none;
  border-top: 1px solid #e9ecee;
  /*1px solid #e9ecee*/ }

.page-sidebar-wrapper ul.nav-tabs > li > a:hover {
  color: #6f7b8a; }

.page-sidebar-wrapper ul.nav-tabs > li {
  text-align: center; }

.tabs-below > .nav-tabs {
  border-top: 1px solid #DDDDDD; }

.tabs-below > .nav-tabs > li {
  margin-bottom: 0;
  margin-top: -1px; }

.tabs-below > .nav-tabs > li > a {
  border-radius: 0 0 4px 4px; }

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #DDDDDD #DDDDDD; }

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none; }

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  margin-bottom: 3px;
  margin-right: 0;
  min-width: 74px; }

.tabs-left > .nav-tabs {
  border-right: 1px solid #DDDDDD;
  margin-right: 19px;
  float: left;
  margin-right: 0; }

.tabs-left > .nav-tabs > li > a {
  border-radius: 4px 0 0 4px;
  margin-right: -1px;
  -webkit-border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px; }

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #EEEEEE #DDDDDD #EEEEEE #EEEEEE; }

.tabs-right > .nav-tabs {
  border-left: 1px solid #DDDDDD;
  margin-left: 19px;
  float: right;
  margin-left: 0; }

.tabs-right > .nav-tabs > li > a {
  border-radius: 0 4px 4px 0;
  margin-left: -1px;
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px; }

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #EEEEEE #EEEEEE #EEEEEE #DDDDDD; }

.nav > .disabled > a {
  color: #999999; }

.nav .tools {
  float: right;
  position: relative;
  right: 10px;
  top: 10px; }

.nav .tools a {
  position: relative;
  transition: all .1s linear 0s; }

.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
  background-color: transparent;
  cursor: default;
  text-decoration: none; }

.nav-tabs {
  margin-bottom: 0;
  background-color: #e9ecee;
  padding: 0; }

.nav-tabs.thirds li {
  width: 25%; }

.nav-tabs.thirds li > a,
.nav-tabs.thirds li > a:hover,
.nav-tabs.thirds li > a:active {
  border-radius: 0;
  border: 0; }

.nav-tabs > li {
  margin-bottom: -3px;
  padding-left: 0; }

@-moz-document url-prefix() {
  .nav-tabs > li {
    margin-bottom: -4px; } }

.nav-tabs > li > a {
  padding: 15px 20px;
  color: #8e9aa2;
  min-width: 70px;
  border-radius: 3px 3px 0px 0px; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  border-width: 0; }

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
  border: 0;
  color: #505458; }

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
  color: #505458; }

.nav .tools > a.remove,
.nav .tools > a.remove {
  background-position: -66px -38px;
  width: 10px;
  height: 10px; }

.nav .tools > a.config,
.nav.tools > a.config {
  background-position: -3px -32px;
  width: 22px;
  height: 22px; }

.nav .tools > a.reload,
.nav .tools > a.reload {
  background-position: -37px -38px;
  width: 12px;
  height: 10px; }

.nav .tools > a.expand,
.nav .tools > a.expand {
  background-position: -123px -40px;
  width: 10px;
  height: 6px; }

.nav .tools > a.collapse,
.nav.tools > a.collapse {
  background-position: -95px -40px;
  width: 9px;
  height: 7px; }

.nav-pills {
  margin-bottom: 10px; }

.nav-pills > li > a {
  padding: 8px 12px; }

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  background-color: #416af0; }

.nav-tabs > li > a,
.nav-pills > li > a {
  margin-right: 0; }

.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
  background-color: #C1CACE; }

.accordion-group {
  border: 0; }

.accordion-heading {
  background-color: #d1dade;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  min-height: 35px; }

.accordion-heading a {
  color: #505458; }

.accordion-heading a.collapsed {
  color: #8E9AA2; }

.accordion-heading a:hover.collapsed {
  color: #505458; }

.accordion-heading .collapsed {
  background-color: #d9e0e4;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px; }

.accordion-heading .collapsed i {
  font-family: 'FontAwesome';
  float: right;
  position: relative;
  top: 4px; }

.accordion-heading .collapsed i:before {
  content: "\f055"; }

.accordion-heading i {
  font-family: 'FontAwesome';
  float: right;
  position: relative;
  top: 4px; }

.accordion-heading i:before {
  content: "\f056"; }

.accordion-heading .accordion-toggle {
  padding: 12px 18px; }

.panel {
  background-color: transparent;
  box-shadow: none; }

.panel-bordered {
  border: 1px solid #e0e5e7; }

.panel-footer {
  background: transparent; }

.padding5 {
  padding-left: 5px;
  padding-right: 5px; }

ul.list-group {
  box-shadow: none; }

.panel-default {
  border: 0; }

.panel-default > .panel-heading {
  background-image: none;
  background-color: #d1dade;
  border-radius: 2px;
  box-shadow: none; }

.panel-group {
  margin-bottom: 18px; }

.panel-group .panel-heading.collapsed {
  background-color: #d1dade; }

.panel-group .panel-heading + .panel-collapse .panel-body {
  border: 0; }

.panel-group .panel-heading .panel-title > a {
  color: #505458;
  font-size: 13px;
  font-weight: normal;
  display: block; }

.panel-group .panel-heading .panel-title > a:hover {
  color: #505458 !important; }

.panel-group .panel-heading .panel-title > a:hover:after {
  color: #505458 !important; }

.panel-group .panel-heading .panel-title > a:after {
  font-family: 'FontAwesome';
  content: "\f056";
  float: right;
  color: #505458; }

.panel-group .panel-heading .panel-title > a.collapsed {
  color: #8E9AA2; }

.panel-group .panel-heading .panel-title > a.collapsed:after {
  content: "\f055";
  color: #8E9AA2; }

.panel-group .panel-heading .panel-title > span {
  color: #505458;
  font-size: 13px;
  font-weight: normal;
  display: block; }

.panel-group .panel-heading .panel-title > span:hover {
  color: #505458 !important; }

.panel-group .panel-heading .panel-title > span:hover:after {
  color: #505458 !important; }

.panel-group .panel-heading .panel-title > span:after {
  font-family: 'FontAwesome';
  content: "\f055";
  float: right;
  color: #505458; }

.panel-group .panel-heading.collapsed .panel-title > span:after {
  font-family: 'FontAwesome';
  content: "\f056";
  float: right;
  color: #505458; }

/*
.panel-group .panel-heading.collapsed .panel-title>span {
    color: #8E9AA2
}

.panel-group .panel-heading.collapsed .panel-title>span:after {
    content: "\f056";
    color: #8E9AA2
}*/
.panel-group .panel-heading:hover,
.panel-group .panel-heading.collapsed:hover {
  background-color: #e0e5e7;
  -webkit-transition: background-color .1s ease-in-out !important;
  -moz-transition: background-color .1s ease-in-out !important;
  transition: background-color .1s ease-in-out !important; }

.panel-group .panel + .panel {
  margin-top: 2px; }

.table > thead > tr > th {
  border-bottom: 0; }

.table th {
  border-top: 1px solid #e8edf1;
  padding: 10px 12px;
  font-size: 12px;
  text-transform: uppercase; }

.table th.medium-cell {
  width: 112px; }

.table th.big-cell {
  width: 200px; }

.table tr.row_selected td {
  background-color: #ffffcc !important; }

.table tr.row_selected .progress {
  background-color: #fffeff; }

.table td {
  border-top: 1px solid #e8edf1;
  vertical-align: top;
  padding: 10px 12px !important;
  color: #576475;
  font-size: 13px; }

.table td.no-border {
  border: none; }

.table td:first-child {
  -webkit-border-radius: 3px 0px 0px 3px;
  -moz-border-radius: 3px 0px 0px 3px;
  border-radius: 3px 0px 0px 3px; }

.table td:last-child {
  -webkit-border-radius: 0px 3px 3px 0px;
  -moz-border-radius: 0px 3px 3px 0px;
  border-radius: 0px 3px 3px 0px; }

.table td .progress {
  margin-bottom: 0; }

.table td .muted {
  color: #95989a; }

.table td.clickable {
  cursor: pointer; }

.table .star {
  margin-left: 3px; }

th {
  text-align: left; }

.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: 12px; }

.table th input[type="radio"],
.table td input[type="radio"] {
  margin-top: -2px; }

.table td.small-cell,
.table th.small-cell {
  width: 40px; }

.table-fixed-layout {
  table-layout: fixed; }

.table-fixed-layout td {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.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: 9px; }

.table > tbody > tr > td,
.table > tfoot > tr > td {
  border-top: 1px solid #f6f7f8; }

.table-striped tbody > tr:nth-child(2n+1) > td,
.table-striped tbody > tr:nth-child(2n+1) > th {
  background-color: #f6f7f8;
  border: none; }

.table-striped tbody > tr > td {
  border: 0; }

.table-hover tbody tr {
  cursor: pointer; }

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

.table-hover tbody tr.row_selected:hover > td {
  background-color: #fef8ae !important; }

.table-hover tbody tr:hover > td .progress {
  background-color: #fffeff; }

.table-condensed th,
.table-condensed td {
  padding: 10px 5px; }

.table-tools-actions {
  margin: 0 5px; }

.inner-table td {
  background-color: transparent !important; }

.table-bordered {
  border-color: #f6f7f8 !important; }

.table-bordered th {
  background-color: #e9ecee;
  border: 0 !important; }

.table-bordered td {
  border: 1px solid #f6f7f8 !important; }

.table-bordered td:first-child {
  border-radius: 0; }

.table-bordered td:last-child {
  border-radius: 0; }

.table tr.row-disabled,
.table tr.row-disabled:nth-child(2n+1) > td,
.table tr.row-disabled:hover > td,
.table tr.row-disabled td {
  opacity: 0.6;
  /* Real browsers */
  filter: alpha(opacity=60);
  /* MSIE */
  cursor: default;
  background-color: #f6f7f8;
  font-style: italic; }

.dataTable td a {
  color: #416af0; }

.dataTables_wrapper .pagination ul {
  box-shadow: none;
  font-size: 12px;
  padding: 0; }

.dataTables_wrapper .pagination ul > li {
  display: inline-block;
  padding-left: 0; }

.dataTables_wrapper .pagination ul > li > a {
  padding: 5px 10px; }

.dataTables_wrapper .pagination ul > li.next > a:hover {
  background-color: #fffeff;
  color: #000; }

.dataTables_wrapper .pagination ul > li.next.disabled > a:hover {
  color: #C2C6CB;
  opacity: .65;
  background-color: #fffeff; }

.dataTables_wrapper .pagination ul > li.prev > a:hover {
  background-color: #fffeff;
  color: #000; }

.dataTables_wrapper .pagination ul > li.prev.disabled > a:hover {
  color: #C2C6CB;
  opacity: .65;
  background-color: #fffeff; }

.dataTables_wrapper .pagination ul > li:last-child > a,
.dataTables_wrapper .pagination ul > li:last-child > span {
  margin-left: 8px; }

.dataTables_wrapper .pagination ul > li > a,
.pagination ul > li > span {
  border: none;
  box-shadow: none;
  border-radius: 3px;
  color: #6F7B8A; }

.dataTables_wrapper .pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #C2C6CB !important;
  opacity: .65 !important;
  background-color: #fffeff !important; }

.dataTables_wrapper .pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #F3F6F9;
  font-weight: 600; }

.dataTables_wrapper .pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #e8edf3; }

.dataTables_wrapper .select2-choice {
  display: none; }

table#objects_table tbody tr td:last-of-type {
  font-weight: 600; }

table#objects_table tbody tr td:last-of-type,
table#objects_table th:last-of-type {
  text-align: center; }

table#objects_table th {
  cursor: pointer; }

table#objects_table th:hover {
  color: #416af0; }

.pagination.compact ul > li:last-child > a,
.pagination.compact ul > li:last-child > span {
  margin-left: 0px; }

.pagination.compact ul {
  margin-top: 10px;
  margin-bottom: 16px; }

.wizard {
  margin: 0px auto;
  background: #fffeff; }

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

.wizard .nav-tabs {
  position: relative;
  margin: 40px auto;
  margin-bottom: 0;
  border-bottom: none;
  background: #f6f7f8;
  background: transparent; }

.wizard > div.wizard-inner {
  position: relative; }

.connecting-line {
  height: 2px;
  background: #e0e0e0;
  position: absolute;
  width: 75%;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 1; }

.wizard .nav-tabs > li.active > a,
.wizard .nav-tabs > li.active > a:hover,
.wizard .nav-tabs > li.active > a:focus {
  color: #333;
  cursor: default;
  border: 0;
  border-bottom-color: transparent; }

span.round-tab {
  width: 70px;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  border-radius: 100px;
  background: #fffeff;
  border: 2px solid #e0e0e0;
  z-index: 2;
  position: absolute;
  left: 0;
  text-align: center;
  font-size: 25px; }

span.round-tab i {
  color: #333; }

.wizard li.active span.round-tab {
  background: #fffeff;
  border: 2px solid #416af0; }

.wizard li.active span.round-tab i {
  color: #416af0; }

span.round-tab:hover {
  color: #333;
  border: 2px solid #708ff4; }

.wizard .nav-tabs > li {
  width: 25%; }

.wizard .three > li {
  width: 33.3% !important; }

.wizard.onboard-wiz .nav-tabs > li {
  width: 20%; }

.wizard .nav-tabs > li a {
  width: 70px;
  height: 70px;
  margin: 20px auto;
  border-radius: 100%;
  padding: 0; }

.wizard .nav-tabs > li a:hover {
  background: transparent; }

.wizard .tab-pane {
  position: relative; }

.wizard .tab-pane h4,
.wizard .tab-pane p {
  margin-bottom: 1.5rem; }

.wizard h3 {
  margin-top: 0; }

.animationDelay {
  -webkit-transition: width .3s ease-in-out;
  -moz-transition: width .3s ease-in-out;
  -o-transition: width .3s ease-in-out;
  transition: width .3s ease-in-out;
  transition-delay: .5s; }

.arrow-panel {
  -webkit-animation-duration: .3s;
  -moz-animation-duration: .3s;
  -ms-animation-duration: .3s;
  animation-duration: .3s; }

.arrow-panel:before {
  content: "\A";
  border-style: solid;
  border-width: 10px 15px 10px 0;
  border-color: transparent #416af0 transparent transparent;
  position: absolute;
  left: 0;
  top: 25px; }

.arrow-panel .grid-title .btn {
  min-height: 46px; }

/*Billing*/
.dataTable {
  clear: both;
  margin-top: 5px; }

.page-content .breadcrumb li .active {
  font-weight: 600;
  font-size: 14px; }

.content .panel-bordered {
  margin-top: 40px;
  border: 4px solid #e0e5e7; }

.content .panel-value {
  margin-top: 0;
  border: 4px solid #2ECC71; }

.content .panel-active {
  border: 4px solid #708ff4; }

.content .breadcrumb li .active {
  font-weight: 600;
  font-size: 14px; }

.content .breadcrumb a,
.page-content .breadcrumb i,
.page-content .breadcrumb span,
.page-content .breadcrumb li {
  color: #515050;
  font-weight: 300;
  text-shadow: none; }

.content .breadcrumb a {
  margin-left: 10px; }

.content .breadcrumb {
  font-family: 'Open Sans';
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  padding: 0 !important;
  border: none !important;
  margin-bottom: 0; }

.billing {
  width: 1170px;
  height: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 62px;
  overflow: auto; }

.grid.simple .grid-title.no-border {
  border: 0;
  border-bottom: 0; }

.grid.simple .grid-title {
  padding: 14px 15px 7px 15px;
  border-bottom: 1px solid #eee;
  color: #282323 !important;
  background-color: #fffeff;
  margin-bottom: 0;
  border: 1px solid #dddddd;
  border-bottom: 0; }

.grid-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee; }

.grid-body.blue,
.grid.blue {
  background-color: #58acf3 !important; }

.grid.simple {
  padding: 0 !important; }

.grid {
  clear: both;
  margin-top: 0;
  margin-bottom: 25px;
  padding: 0; }

.grid.simple .grid-body.no-border {
  border: 0;
  padding-top: 1px; }

.grid.simple .grid-body {
  background-color: #fffeff;
  padding: 26px;
  border: 1px solid #dddddd;
  color: #6f7b8a; }

.grid.simple .grid-body h4 {
  color: #282323; }

.grid-body {
  padding: 0; }

.grid-title h4 {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  margin-bottom: 7px;
  width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

#main-table .nav.nav-tabs {
  background-color: #fffeff; }

#main-table .nav.nav-tabs li a,
#main-table .nav.nav-tabs li a:hover {
  border: 1px solid transparent;
  border-bottom: none !important; }

#main-table .nav.nav-tabs li.active a,
#main-table .nav.nav-tabs li.active a:hover {
  border: 1px solid #ddd;
  border-bottom: none !important;
  height: 46px; }

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

.billing .panel-bordered {
  margin-top: 40px;
  border: 4px solid #e0e5e7; }

.billing .panel-active {
  border: 4px solid #708ff4 !important; }

.billing .panel-value {
  margin-top: 0;
  border: 4px solid #2ECC71; }

form legend,
.form-view legend {
  margin-bottom: 15px !important; }

.form-control {
  border: 1px solid #E5E9EC;
  font-size: 13px; }

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

span.round-tab {
  font-size: 16px;
  width: 50px;
  height: 50px;
  line-height: 50px; }

.wizard .nav-tabs > li a {
  width: 50px;
  height: 50px;
  line-height: 50px; }

.wizard li.active:after {
  content: " ";
  position: absolute;
  left: 35%; }

.onboard-wiz .connecting-line {
  top: 54px; }

.onboard-wiz .nav-tabs {
  margin-top: 0;
  margin-bottom: 0; }

.overlayer {
  right: 0; }

.overlayer .grid-title h4 {
  width: 80%; }

.wizard.onboard-wiz {
  height: 0;
  margin-top: 0;
  margin-bottom: 0; }

a#user-options {
  margin-top: -10px; }

.quicklinks li a {
  width: 94%; }

.page-content #quick-access {
  z-index: 10;
  bottom: -50vh;
  height: 50vh; }

.overflow-y {
  overflow-y: scroll; }

body.no-sidebar .page-content {
  margin-left: 0; }

.act-user-pnl,
.act-proj-pnl,
.act-cln-pnl {
  cursor: pointer; }

/* Map Tools and Map Overlay */
.map-port {
  padding-top: 102px; }

.map-port .content {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 70px; }

.gen-btn-ovrly {
  height: 50px;
  padding-left: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 8px;
  z-index: 2; }

.gen-btn-ovrly div {
  display: inline-block;
  vertical-align: middle; }

.gen-btn-ovrly i {
  padding: 0 8px 0 4px; }

.gen-btn-ovrly i::before {
  text-align: center;
  vertical-align: middle; }

.gen-btn-ovrly:disabled {
  background-color: #fffeff;
  color: #6f7b8a;
  opacity: 1; }
  .gen-btn-ovrly:disabled:hover, .gen-btn-ovrly:disabled:focus, .gen-btn-ovrly:disabled:active {
    color: #6f7b8a;
    background-color: #fffeff; }

.prev-gen-btn-ovrly {
  position: absolute;
  margin-left: 10px;
  margin-top: 36px;
  z-index: 1;
  height: 50px;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px; }

.prev-gen-btn-ovrly div {
  padding-left: 20px;
  display: inline-block;
  vertical-align: middle; }

.prev-gen-btn-ovrly i::before {
  text-align: center;
  vertical-align: middle; }

.prev-gen-btn-ovrly:disabled {
  background-color: #fffeff;
  color: #6f7b8a;
  opacity: 1; }

.prev-gen-btn-ovrly:disabled:hover {
  color: #fffeff; }

.prev-gen-btn-ovrly {
  position: absolute;
  top: 75px;
  right: 250px;
  margin-left: 0px; }

.gmnoprint.gm-bundled-control {
  position: absolute;
  bottom: 110px !important; }

#bom-roof-map-canvas .gmnoprint.gm-bundled-control {
  bottom: 69px !important; }

/* Side panel position tweaks */
span.icn-txt {
  font-size: 10px;
  font-weight: 700; }

.sidebar-tab-pad .btn.btn-large {
  height: 50px;
  width: 34px; }

.page-sidebar-wrapper .dropdown-menu.pull-right li a {
  text-align: center; }

/* Advanced select height adjustment */
.advanced-select span {
  min-height: 37px; }

.advanced-select {
  color: #282323; }

.advanced-select .advanced-select-dropdown ul.advanced-select-list li:hover {
  background: #708ff4; }

/* Feedback button styling */
div#us_report_button {
  background-color: #00b0da;
  color: #fffeff;
  font-weight: 700;
  border-color: #00b0da;
  border-radius: 3px 3px 0px 0px; }

#us_report_button::before {
  color: #00b0da; }

/* Collapsing panel update*/
.panel-default {
  border: 0; }

.panel-default > .panel-heading {
  background-image: none;
  background-color: #f6f7f8;
  border-radius: 2px;
  box-shadow: none;
  border-bottom: none;
  color: #6f7b8a; }

.panel-default > .panel-heading:hover {
  color: #708ff4; }

.panel-group {
  margin-bottom: 18px; }

.panel-group .panel-heading.collapsed {
  background-color: #f6f7f8; }

.panel-group .panel-heading + .panel-collapse .panel-body {
  border: 0; }

.panel-group .panel-body {
  padding-bottom: 0px !important; }

.panel-group .panel-heading .panel-title > a {
  color: #505458;
  font-size: 13px;
  font-weight: normal;
  display: block; }

.panel-group .panel-heading .panel-title > a:hover {
  color: #505458 !important; }

.panel-group .panel-heading .panel-title > a:hover:after {
  color: #505458 !important; }

.panel-group .panel-heading .panel-title > a:after {
  font-family: 'FontAwesome';
  content: "\f056";
  float: right;
  color: #505458; }

.panel-group .panel-heading .panel-title > a.collapsed {
  color: #8E9AA2; }

.panel-group .panel-heading .panel-title > a.collapsed:after {
  content: "\f055";
  color: #8E9AA2; }

.panel.panel-default .panel-heading {
  cursor: pointer; }

.panel-group .panel + .panel {
  margin-top: 2px; }

.form-group .btn-group.rdio-btns label.btn {
  width: 50%;
  height: 37px;
  padding-top: 8px; }

.form-group .btn-group.rdio-btns label.btn:first-of-type {
  border-radius: 3px 0px 0px 3px; }

.form-group .btn-group.rdio-btns label.btn:last-of-type {
  border-radius: 0px 3px 3px 0px; }

.rdio-btns {
  width: 100%; }

input.hd-edit {
  font-weight: 700;
  font-size: 16px; }

.app-info {
  width: 100%;
  position: fixed;
  background-color: #416af0;
  bottom: 0px;
  padding: 0.6rem 1.2rem 0.6rem 1.2rem;
  color: #fffeff; }

.app-info a {
  color: #fffeff; }

.app-info a:hover {
  color: #708ff4; }

#tog-foot {
  position: absolute;
  text-align: center;
  bottom: 0;
  right: 0;
  width: 100%;
  border-left: 1px solid #e5e9ec;
  z-index: 1003; }

#tog-foot .viewOptions {
  position: initial;
  float: left;
  margin-bottom: 2px; }

#tog-foot .btn.btn-small {
  height: 36px; }

#tog-foot .tools {
  float: none; }

#tog-foot .grid-title a {
  color: #6f7b8a; }

#tog-foot .grid-title a:hover {
  color: #708ff4; }

#tog-foot .grid-title a:after {
  font-family: 'FontAwesome';
  content: "\f0d7";
  margin-left: 10px;
  color: #505458; }

#tog-foot .grid-title button {
  margin-top: -8px; }

#tog-foot .grid {
  margin-bottom: 0; }

#tog-foot .grid h4 {
  margin-bottom: 0;
  width: auto; }

#tog-foot .grid .grid-body,
#tog-foot .grid .grid-body table {
  padding-bottom: 0;
  margin-bottom: 0; }

#tog-foot .grid .grid-title,
#tog-foot .grid .grid-body {
  background-color: rgba(255, 255, 255, 0.94); }

/*override fade in movement*/
.modal.fade .modal-dialog,
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }

.grid.simple {
  -webkit-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  -moz-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  box-shadow: 0 0 5px rgba(86, 96, 117, 0.15); }

/* webkit autofill fix */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: #416af0 !important; }

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px white inset; }

.page-sidebar {
  padding-top: 60px;
  padding-bottom: 0px !important;
  bottom: 0; }

.btn-qt {
  margin-top: 12px; }

#ng-curtain.ng-curtain-class {
  opacity: 0;
  z-index: 10; }

.ng-joyride-title {
  z-index: 9999;
  position: absolute;
  top: 50%;
  left: 33%;
  width: 200px;
  margin: -100px 0 0 -50px;
  background: #fffeff;
  box-shadow: none;
  width: 35em; }

.ng-joyride h3.popover-title.sharp-borders {
  color: #416af0 !important; }

.ng-joyride .skip-class {
  padding-top: 0px; }

.ng-joyride-element-non-static {
  z-index: 9999;
  -webkit-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  -moz-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  box-shadow: 0 0 5px rgba(86, 96, 117, 0.15); }

.ng-joyride-element-static {
  position: relative;
  z-index: 9999;
  -webkit-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  -moz-box-shadow: 0 0 5px rgba(86, 96, 117, 0.15);
  box-shadow: 0 0 5px rgba(86, 96, 117, 0.15); }

.ng-joyride.popover {
  z-index: 9999; }

/*.ng-joyride .popover-title, .ng-joyride .popover-content {
    border-left: 4px solid $primary-interaction;
}*/
.ng-joyride.popover.right {
  border-left: 4px solid #416af0; }

.ng-joyride.popover.left {
  border-right: 4px solid #416af0; }

.ng-joyride.popover.top {
  border-bottom: 4px solid #416af0; }

.ng-joyride.popover.bottom {
  border-top: 4px solid #416af0; }

.ng-joyride.popover.right > .arrow:after {
  border-right-color: transparent; }

.ng-joyride.popover.right > .arrow {
  border-right-color: #416af0; }

.ng-joyride.popover.bottom > .arrow:after {
  border-bottom-color: transparent; }

.ng-joyride.popover.bottom > .arrow {
  border-bottom-color: #416af0; }

.ng-joyride.popover.top > .arrow:after {
  border-top-color: transparent; }

.ng-joyride.popover.top > .arrow {
  border-top-color: #416af0; }

.ng-joyride.popover.left > .arrow:after {
  border-left-color: transparent; }

.ng-joyride.popover.left > .arrow {
  border-left-color: #416af0; }

.ng-joyride.popover .popover-content {
  width: 17em;
  padding: 10px; }

.ng-joyride .popover-title {
  background: #fffeff;
  margin-left: 0px;
  margin-right: 0px;
  border-bottom: none; }

.ng-joyride h3.popover-title {
  line-height: 18px;
  padding-bottom: 8px; }

.ng-joyride-modal.modal {
  z-index: 9999 !important; }

.ng-joyride .btn {
  border-radius: 3px !important;
  padding: 8px 4px 8px 4px; }

.ng-curtain-class {
  display: none !important; }

.modal-body .btn-group .btn {
  min-width: 135px;
  height: 36px; }

.btn-new-proj {
  min-width: 270px; }

.greeting {
  color: black;
  font-weight: 700; }

.header-btn {
  margin-left: 12px; }

.btn-group.open.header-btn .btn.dropdown-toggle {
  background-color: #416af0 !important; }

.dropdown-menu {
  min-width: 50px !important; }

.roof-slope-warning-message {
  color: red;
  padding-bottom: 15px; }

.header-nav {
  margin-top: 26px;
  vertical-align: bottom;
  display: inline-block !important;
  background-color: #fff;
  border-bottom: none;
  text-align: center; }
  .header-nav li {
    float: none; }

.btn-header-nav {
  background-color: #fff !important;
  color: #5e5e5e;
  min-width: 150px;
  padding-bottom: 7px;
  -webkit-border-radius: 0px !important;
  border-bottom: solid 1px #e9ecee; }

.btn-header-nav:hover:enabled {
  /* border-bottom: 5px solid $primary-interaction-active !important;*/
  color: #708ff4;
  /*padding-bottom: 3px;*/ }

li.active button.btn-header-nav {
  /*border-bottom: 5px solid $primary-interaction;*/
  font-weight: bold;
  color: #416af0;
  /*padding-bottom: 3px;*/ }

.btn-header-nav:disabled {
  color: #979797; }

.chevron {
  color: #e9ecee;
  font-weight: normal;
  top: 10px;
  padding-left: 5px !important;
  padding-right: 5px !important;
  min-width: 25px; }

.btn-menu {
  color: #fff;
  background-color: transparent !important;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 23px; }

.btn-menu:hover {
  color: #00b0da !important; }

.btn-menu:disabled {
  opacity: 1; }

li.active button.btn-menu {
  color: #a4e0ff; }

a.btn-link {
  font-weight: 700;
  color: #416af0;
  text-decoration: none; }
  a.btn-link:hover {
    text-decoration: underline; }

a.enable-button {
  color: #416af0;
  font-size: 14px;
  padding-right: 15px; }

a.enable-button:hover {
  color: #708ff4; }

a.disable-button {
  color: #6f7b8a;
  font-size: 14px;
  padding-right: 15px; }

a.disable-button:hover {
  color: #708ff4; }

.header .navbar-inner {
  background-image: none !important;
  background-color: #fffeff !important;
  width: 100%;
  margin: 0;
  border: 0;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  height: 60px; }
  .header .navbar-inner .small-caps {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px; }
  .header .navbar-inner.navbar-sub {
    border-top: 1px solid #e9ecee;
    height: 40px; }
    .header .navbar-inner.navbar-sub .pull-right i.icon-save {
      color: #5e5e5e; }
      .header .navbar-inner.navbar-sub .pull-right i.icon-save::before {
        font-size: 1em; }
    .header .navbar-inner.navbar-sub .header-nav {
      margin-top: 0px; }
    .header .navbar-inner.navbar-sub .header-quick-nav {
      height: 40px; }
    .header .navbar-inner.navbar-sub .btn-header-nav {
      border-bottom: none;
      height: 40px;
      min-width: 80px; }

.parent-b {
  height: 100%;
  display: inline-block;
  line-height: 60px;
  padding-right: 20px; }

.header-quick-nav.pull-left .parent-b {
  padding-right: 0px; }

.header-quick-nav.pull-left .parent-b#main-menu-btn {
  padding-right: 10px; }

html .header-quick-nav.pull-left {
  padding-right: 0px; }

.child-b {
  display: table-cell;
  vertical-align: middle; }

.child-b .systemDesignVersion, .chat-window-wrapper .systemDesignVersion, .tab-pane .systemDesignVersion {
  display: inline-flex;
  text-align: justify;
  font-size: 10px; }
  .child-b .systemDesignVersion .btn-mini, .chat-window-wrapper .systemDesignVersion .btn-mini, .tab-pane .systemDesignVersion .btn-mini {
    font-size: 9px;
    padding: 3px !important; }
  .child-b .systemDesignVersion .btn-danger, .chat-window-wrapper .systemDesignVersion .btn-danger, .tab-pane .systemDesignVersion .btn-danger {
    color: #fffeff;
    background-color: rgba(243, 89, 88, 0.7); }
  .child-b .systemDesignVersion .advanced-select, .chat-window-wrapper .systemDesignVersion .advanced-select, .tab-pane .systemDesignVersion .advanced-select {
    width: 100%;
    margin-right: 12px; }
    .child-b .systemDesignVersion .advanced-select .advanced-select-dropdown, .chat-window-wrapper .systemDesignVersion .advanced-select .advanced-select-dropdown, .tab-pane .systemDesignVersion .advanced-select .advanced-select-dropdown {
      display: table;
      width: 100%; }
    .child-b .systemDesignVersion .advanced-select .advanced-select-selected, .chat-window-wrapper .systemDesignVersion .advanced-select .advanced-select-selected, .tab-pane .systemDesignVersion .advanced-select .advanced-select-selected {
      min-width: 70px; }

.navbar-sub .parent-b {
  line-height: 40px; }

.navbar-sub .save-status i.icon::before {
  vertical-align: middle; }

body.open-menu-left .chat-menu-toggle {
  display: none; }

body .page-content .content {
  padding-top: 120px; }

body iframe#launcher {
  right: 0px; }

body .app-info {
  width: 260px; }

body .side-widget-title {
  padding-top: 0.11rem; }

body .tab-pane .btn-first {
  margin-bottom: 1em; }

body .profile-pic {
  max-width: 35px;
  max-height: 35px; }

body.no-sidebar ul.nav.pull-right.notifcation-center {
  display: none !important; }

.map-port {
  padding-top: 102px; }

#tog-foot {
  width: auto;
  bottom: 30px;
  right: inherit;
  left: 1em; }
  #tog-foot .grid-body {
    border-radius: 3px; }

.gmnoprint > div.gmnoprint {
  top: 18px !important; }

div.gm-style > div:nth-of-type(7) {
  bottom: 72px;
  top: initial !important;
  /*right: -2px !important;*/
  box-shadow: rgba(0, 0, 0, 0.3) !important; }

.icon-sm,
.icon-sm::after,
.icon-sm::before {
  font-size: 0.5rem; }

.nav.quick-section {
  margin-left: 1em;
  margin-right: 0em; }

body .page-content.sales-tool .content {
  padding-top: 100px; }

.sales-tool .input-shrink {
  display: inline-block; }

.sales-tool .im-image {
  width: 100px;
  height: 100px;
  margin: 0px 20px 0 0px;
  display: inline-block;
  float: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center; }

.sales-tool a.btn-link {
  font-weight: 700;
  color: #416af0;
  text-decoration: none; }
  .sales-tool a.btn-link:hover {
    text-decoration: underline; }

.sales-tool .text-block-wrap {
  display: inline-block;
  width: calc(100% - 130px);
  float: left; }

.sales-tool .border-bottom {
  border-bottom: 1px solid #e9ecee; }

.sales-tool .grid-title h3 {
  padding: 10px 0px 20px 0px;
  margin-left: 20px;
  margin-right: 20px; }

.sales-tool .grid-body .btn-first,
.sales-tool .grid-body p,
.sales-tool .grid-body h4 {
  margin-bottom: 30px; }

@media (max-height: 730px) and (max-width: 980px) {
  body #tog-foot .grid-body {
    padding-left: 21px;
    padding-right: 21px; } }

@media (max-width: 400px) {
  .sales-tool .im-image,
  .sales-tool .text-block-wrap {
    display: block;
    float: none;
    width: 100%;
    height: auto; }
    .sales-tool .im-image img,
    .sales-tool .text-block-wrap img {
      margin-left: auto;
      margin-right: auto; } }

.get-started {
  text-align: left; }
  .get-started h3 {
    font-weight: 500;
    margin-bottom: 0.6em; }
  .get-started li {
    margin-bottom: 2em;
    padding-left: 0; }
    .get-started li img {
      width: auto;
      height: 66px;
      display: block; }
  .get-started a {
    color: #416af0;
    font-weight: 600; }
    .get-started a:hover {
      color: #708ff4; }

.three-d-icon {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 1; }

.page-content.setup-page {
  overflow-y: scroll; }

#curve {
  margin-top: 60px;
  width: 300px;
  height: 150px;
  border: 5px solid #ededed;
  border-radius: 5px 5px 5px 5px;
  background-color: #ededed; }

.curveData {
  margin: 3rem; }

.eqSlider {
  height: 500px;
  margin-bottom: 60px; }

html .noUi-connect {
  background-color: #708ff4; }

@media (min-width: 768px) {
  .row.equal {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px; }
    .row.equal:before {
      background: #e9ecee;
      height: 1px;
      display: block;
      position: absolute;
      top: 72.5px;
      width: calc(100% + 24px);
      margin-left: -26px; }
  .row.equal .col-md-3 {
    width: 20%;
    margin: 0;
    padding-left: 5px;
    padding-right: 5px; }
    .row.equal .col-md-3:first-of-type {
      padding-left: 0px; }
    .row.equal .col-md-3:last-of-type {
      padding-right: 0px; } }

@media (min-width: 1200px) {
  .row.equal:before {
    top: 71px; } }

.tiles-container {
  margin-left: 0px;
  margin-right: 0px; }

html .tiles {
  background-color: #bcbcbc;
  color: #ffffff;
  position: relative;
  height: 100%; }
  @media (min-width: 768px) {
    html .tiles {
      padding-bottom: 15px; } }
  html .tiles .progress {
    height: 5px; }
    html .tiles .progress .progress-bar {
      background: #1b1e24;
      padding-top: 0; }
  html .tiles.overflow-hidden {
    overflow: hidden; }
  html .tiles.full-height {
    height: 100%; }
  html .tiles.added-margin {
    margin-right: -10px; }
  html .tiles.no-margin {
    margin-right: 0; }
  html .tiles.margin-reset {
    margin-left: 37px; }
  html .tiles .tiles-title {
    font-size: 10.5px;
    font-family: inherit;
    letter-spacing: 0.5px;
    font-weight: 600; }
  html .tiles .tiles-body {
    padding: 19px 18px 5px 18px;
    height: 100%; }
  html .tiles .controller {
    position: relative;
    display: inline-block;
    float: right; }
    html .tiles .controller a {
      position: relative;
      background: url("../img/icon/portlet-tray.png") no-repeat;
      transition: all 0.1s linear 0s;
      display: inline-block; }
      html .tiles .controller a.remove {
        background-position: -66px -38px;
        height: 10px;
        top: -5px;
        width: 10px; }
      html .tiles .controller a.config {
        background-position: -3px -32px;
        height: 22px;
        width: 22px; }
      html .tiles .controller a.reload {
        background-position: -37px -38px;
        height: 10px;
        top: -5px;
        width: 12px; }
      html .tiles .controller a.expand {
        background-position: -123px -11px;
        width: 10px;
        height: 6px;
        top: -5px; }
      html .tiles .controller a:hover.collapse {
        background-position: -95px -40px;
        height: 7px;
        top: -5px;
        width: 9px;
        background-position: -95px -40px;
        height: 7px;
        top: -5px;
        width: 9px; }
      html .tiles .controller a:hover.remove {
        background-position: -66px -9px;
        height: 10px;
        top: -5px;
        width: 10px; }
      html .tiles .controller a:hover.config {
        background-position: -3px -32px;
        height: 22px;
        width: 22px; }
      html .tiles .controller a:hover.reload {
        background-position: -38px -9px;
        height: 10px;
        top: -5px;
        width: 12px; }
      html .tiles .controller a:hover.expand {
        background-position: -123px -11px;
        width: 10px;
        height: 6px;
        top: -5px; }
  html .tiles.white {
    background-color: #ffffff;
    color: #8b91a0; }
  html .tiles .controller a.remove:hover {
    background-position: -66px -38px;
    height: 10px;
    top: -5px;
    width: 10px;
    opacity: 0.6; }
  html .tiles .controller a.config:hover {
    background-position: -3px -32px;
    height: 22px;
    width: 22px;
    opacity: 0.6; }
  html .tiles .controller a.reload:hover {
    background-position: -37px -38px;
    height: 10px;
    top: -5px;
    width: 12px;
    opacity: 0.6; }
  html .tiles .controller a.expand:hover {
    background-position: -123px -11px;
    width: 10px;
    height: 6px;
    top: -5px;
    opacity: 0.6; }
  html .tiles > .tile-footer {
    background-color: #eceff1;
    color: #d1d3d9;
    font-size: 13px;
    padding: 8px 15px; }
  html .tiles.borderall {
    border: 1px solid #e5e9ec; }
  html .tiles.border-left {
    border-left: 1px solid #e5e9ec; }
  html .tiles.border-right {
    border-right: 1px solid #e5e9ec; }
  html .tiles.border-top {
    border-top: 1px solid #e5e9ec; }
  html .tiles.border-bottom {
    border-bottom: 1px solid #e5e9ec; }
  html .tiles .item-count {
    color: #505458; }
  html .tiles hr {
    margin: 10px 0px;
    height: 1px;
    border: none;
    background-color: #f2f3f5; }
  html .tiles label {
    color: #9aa0ad; }
  @media (max-width: 1199px) {
    html .tiles > .tiles-body.incomplete {
      border-top: 2px solid #FD9644; } }
  @media (min-width: 1200px) {
    html .tiles > .tiles-body.incomplete:before {
      content: 'Review';
      color: #FD9644;
      position: absolute;
      top: 19px;
      right: 18px;
      font-size: 12px; } }
  @media (max-width: 1199px) {
    html .tiles > .tiles-body.input-error {
      border-top: 2px solid #f35958; } }
  @media (min-width: 1200px) {
    html .tiles > .tiles-body.input-error:before {
      content: 'Invalid Field';
      color: #f35958;
      position: absolute;
      top: 19px;
      right: 18px;
      font-size: 12px; } }
  @media (max-width: 1199px) {
    html .tiles > .tiles-body.input-empty-inverter {
      border-top: 2px solid #f35958; } }
  @media (min-width: 1200px) {
    html .tiles > .tiles-body.input-empty-inverter:before {
      content: 'Select Inverter';
      color: #f35958;
      position: absolute;
      top: 19px;
      right: 18px;
      font-size: 12px; } }
  @media (max-width: 1199px) {
    html .tiles > .tiles-body.input-empty-module {
      border-top: 2px solid #f35958; } }
  @media (min-width: 1200px) {
    html .tiles > .tiles-body.input-empty-module:before {
      content: 'Select Module';
      color: #f35958;
      position: absolute;
      top: 19px;
      right: 18px;
      font-size: 12px; } }
  html .tiles > .tiles-body {
    border: 1px solid #e9ecee;
    border-bottom: 1px solid #e9ecee;
    border-radius: 3px 3px 0px 0px; }
    html .tiles > .tiles-body:hover:after {
      position: absolute;
      content: '';
      display: block;
      top: 0px;
      width: 100%;
      height: 3px;
      left: 0;
      background: #416af0;
      border-radius: 3px 3px 0px 0px; }
    html .tiles > .tiles-body.active {
      border-bottom: 1px solid #ffffff; }
      html .tiles > .tiles-body.active:after {
        position: absolute;
        display: block;
        content: '';
        top: 0px;
        width: 100%;
        height: 3px;
        left: 0;
        background: #416af0;
        border-radius: 3px 3px 0px 0px; }
      html .tiles > .tiles-body.active .tiles-title {
        color: #416af0 !important; }
    html .tiles > .tiles-body > .heading {
      color: #000; }
  html .tiles .tiles-body > .description {
    color: #8b91a0; }
  html .tiles .settings-box {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 1px 4px; }
  html .tiles .heading {
    font-size: 25px;
    display: block;
    font-family: inherit;
    font-weight: 600;
    margin: 4px 0px; }
    html .tiles .heading .icon-grid {
      top: 1px;
      font-size: 31px;
      position: relative; }
  html .tiles p {
    margin: 0 0 5px; }
  html .tiles hr {
    margin: 10px 0px;
    height: 1px;
    border: none;
    background-color: #2b3038; }
  html .tiles .tiles-body-overlay {
    position: absolute;
    z-index: 100;
    padding: 19px 18px 17px 24px;
    width: auto; }
  html .tiles .progress {
    width: 70%;
    margin-bottom: 15px; }
  html .tiles .iconplaceholder {
    background-color: rgba(0, 0, 0, 0.28); }
    html .tiles .iconplaceholder i {
      color: #ffffff; }
  html .tiles > .tiles-body > .description {
    font-size: 12px;
    display: block;
    color: #ffffff;
    display: table-cell;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased; }
  html .tiles .description i {
    font-size: 21px;
    color: #ffffff; }
  html .tiles .description .mini-description {
    position: relative;
    top: -5px; }
  html .tiles label {
    color: #ffffff; }
  html .tiles.red {
    background-color: #FC5C65; }
    html .tiles.red .button {
      background: #bf3938;
      color: #f7bebe; }
  html .tiles.purple {
    background-color: #B0A5E1; }
    html .tiles.purple .button {
      background: #736086;
      color: #d7d5d7; }
  html .tiles.blue {
    background-color: #708ff4; }
  html .tiles.green {
    background-color: #2ed3b6; }
  html .tiles.black {
    background-color: black; }
    html .tiles.black .blend {
      color: #8b91a0; }
    html .tiles.black input {
      background-color: rgba(0, 0, 0, 0.35);
      border: 0; }
  html .tiles.dark-blue {
    background-color: #365d98; }
  html .tiles.light-blue {
    background-color: #00abea; }
  html .tiles.light-red {
    background-color: #f96773; }
  html .tiles.grey {
    background-color: grey; }
  html .tiles.gradient-grey {
    background: -moz-linear-gradient(top, transparent 0%, rgba(131, 131, 131, 0.65) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(131, 131, 131, 0.65)));
    background: -webkit-linear-gradient(top, transparent 0%, rgba(131, 131, 131, 0.65) 100%);
    background: -o-linear-gradient(top, transparent 0%, rgba(131, 131, 131, 0.65) 100%);
    background: -ms-linear-gradient(top, transparent 0%, rgba(131, 131, 131, 0.65) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(131, 131, 131, 0.65) 100%); }
  html .tiles.gradient-black {
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(100%, rgba(0, 0, 0, 0.65)));
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.65) 100%); }
  html .tiles .blend {
    color: rgba(0, 0, 0, 0.42); }
  html .tiles .button {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 3px 12px; }

.tile-more-content {
  background-color: #ffffff; }
  .tile-more-content .tiles-body {
    padding: 19px 18px 17px 24px; }

.row-fluid.side-content .tiles, .row-fluid .tile-content {
  margin: 0; }

.tile-footer {
  background-color: rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 13px;
  padding: 8px 15px; }

.chart-wrapper {
  padding-top: 40px; }

.tiles.red .settings-box, .tiles.red .button {
  background: #bf3938;
  color: #f35958; }

.tiles.purple .settings-box, .tiles.red .button {
  background: #08897e;
  color: transparent; }

.tiles-chart {
  position: relative; }
  .tiles-chart .tiles-body {
    position: absolute;
    z-index: 100;
    padding: 19px 18px 17px 24px; }
    .tiles-chart .tiles-body .heading {
      color: #416af0; }
  .tiles-chart .controller {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 100; }

.tiles-overlay {
  width: 100%;
  height: 100%; }
  .tiles-overlay.auto {
    width: auto;
    height: auto; }
  .tiles-overlay.green {
    background-color: rgba(46, 211, 182, 0.8); }
  .tiles-overlay.blue {
    background-color: rgba(0, 0, 255, 0.8); }

.widget-item {
  position: relative; }
  .widget-item.narrow-margin {
    margin-right: -10px; }
  .widget-item .controller {
    position: absolute;
    display: block;
    z-index: 100; }
    .widget-item .controller.right {
      right: 20px;
      top: 20px; }
    .widget-item .controller.left {
      left: 10px;
      top: 10px; }
    .widget-item .controller a {
      position: relative;
      background: url("../img/icon/portlet-tray.png") no-repeat;
      transition: all 0.1s linear 0s;
      display: inline-block; }
      .widget-item .controller a.remove {
        background-position: -66px -38px;
        height: 10px;
        top: -5px;
        width: 10px; }
      .widget-item .controller a.config {
        background-position: -3px -32px;
        height: 22px;
        width: 22px; }
      .widget-item .controller a.reload {
        background-position: -37px -38px;
        height: 10px;
        top: -5px;
        width: 12px; }
      .widget-item .controller a.expand {
        background-position: -123px -11px;
        width: 10px;
        height: 6px;
        top: -5px; }
      .widget-item .controller a:hover.collapse {
        background-position: -95px -40px;
        height: 7px;
        top: -5px;
        width: 9px; }
  .widget-item.white .controller a.remove:hover {
    background-position: -66px -38px;
    height: 10px;
    top: -5px;
    width: 10px;
    opacity: 0.6; }
  .widget-item.white .controller a.config:hover {
    background-position: -3px -32px;
    height: 22px;
    width: 22px;
    opacity: 0.6; }
  .widget-item.white .controller a.reload:hover {
    background-position: -37px -38px;
    height: 10px;
    top: -5px;
    width: 12px;
    opacity: 0.6; }

.widget-item .controller a:hover.remove, .widget-item .controller a:hover.config, .widget-item .controller a:hover.reload, .widget-item .controller a:hover.expand, .widget-item .controller a:hover.collapse {
  opacity: 0.50; }

.widget {
  display: block;
  margin-right: -10px; }
  .widget .widget-title {
    display: block;
    padding: 10px;
    padding-bottom: 14px;
    background-color: #ffffff;
    color: #e5e9ec;
    text-align: center;
    font-weight: bold; }
    .widget .widget-title.dark {
      background-color: #1b1e24;
      color: #ffffff; }
      .widget .widget-title.dark .controller a.remove {
        background-position: -66px -9px;
        height: 10px;
        top: -5px;
        width: 10px; }
      .widget .widget-title.dark .controller a.config {
        background-position: -3px -32px;
        height: 22px;
        width: 22px; }
      .widget .widget-title.dark .controller a.reload {
        background-position: -38px -9px;
        height: 10px;
        top: -5px;
        width: 12px; }
    .widget .widget-title.blue {
      background-color: #0090D9;
      color: #ffffff; }
    .widget .widget-title.red {
      background-color: #F35958;
      color: #ffffff; }
    .widget .widget-title.green {
      background-color: green;
      color: #ffffff; }
    .widget .widget-title.purple {
      background-color: #736086;
      color: #ffffff; }
  .widget .widget-body {
    display: block;
    background-color: #ffffff;
    padding: 15px 25px; }
  .widget .controller {
    position: relative;
    display: inline-block;
    float: right;
    top: 6px;
    margin-right: 8px; }
    .widget .controller a {
      position: relative;
      background: url("../img/icon/portlet-tray.png") no-repeat;
      transition: all 0.1s linear 0s;
      display: inline-block; }
      .widget .controller a.remove {
        background-position: -66px -38px;
        height: 10px;
        top: -5px;
        width: 10px; }
      .widget .controller a.config {
        background-position: -3px -32px;
        height: 22px;
        width: 22px; }
      .widget .controller a.reload {
        background-position: -37px -38px;
        height: 10px;
        top: -5px;
        width: 12px; }
      .widget .controller a.expand {
        background-position: -123px -11px;
        width: 10px;
        height: 6px;
        top: -5px; }
      .widget .controller a:hover.collapse {
        background-position: -95px -40px;
        height: 7px;
        top: -5px;
        width: 9px;
        background-position: -95px -40px;
        height: 7px;
        top: -5px;
        width: 9px; }
      .widget .controller a:hover.remove {
        background-position: -66px -9px;
        height: 10px;
        top: -5px;
        width: 10px; }
      .widget .controller a:hover.config {
        background-position: -3px -32px;
        height: 22px;
        width: 22px; }
      .widget .controller a:hover.reload {
        background-position: -38px -9px;
        height: 10px;
        top: -5px;
        width: 12px; }
      .widget .controller a:hover.expand {
        background-position: -123px -11px;
        width: 10px;
        height: 6px;
        top: -5px; }

.widget .widget-title.dark .controller a.reload:hover, .widget .widget-title.dark .controller a.remove:hover {
  opacity: 0.5; }

.weather-widget {
  overflow: hidden; }
  .weather-widget .big-icon {
    width: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 23px;
    margin-bottom: 8px; }
  .weather-widget .small-text-description {
    position: relative;
    top: -9px; }

.weather-widget-big-text {
  font-size: 54px !important; }

.widget-stats {
  padding-left: 0;
  display: inline-block; }
  .widget-stats .wrapper {
    margin: 5px 0 5px 0;
    border-right: 1px solid #363a41;
    margin-right: 5px;
    padding-right: 5px; }
    .widget-stats .wrapper.transparent {
      border-right: 1px solid rgba(0, 0, 0, 0.2); }
    .widget-stats .wrapper.last {
      border: 0; }
  .widget-stats .item-title {
    font-size: 12px; }
  .widget-stats .item-count {
    font-size: 15px;
    color: #ffffff;
    display: block;
    font-weight: bold; }

.live-tile, .list-tile, .copy-tile {
  height: 100%; }

.live-tile, .list-tile, .copy-tile, .tile-strip .flip-list > li {
  margin: 0;
  width: 100%; }

.live-tile p, .list-tile p, .copy-tile p {
  padding: 0; }

h4.custom-line-height {
  line-height: 25px; }

.hover-effect-img {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear; }

.tiles:hover .hover-effect-img {
  -moz-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  filter: contrast(130%);
  -webkit-filter: contrast(130%); }

@media (min-width: 768px) and (max-width: 1024px) {
  .tiles.adjust-text p {
    font-size: 10px; }
  .tiles.adjust-text h3 {
    font-size: 20px; } }

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .tiles.adjust-text p {
    font-size: 14px; } }

.dataTables_wrapper .dataTables_length {
  padding-top: 5.5px; }
  .dataTables_wrapper .dataTables_length select.form-control {
    margin-top: -5px;
    border: 1px solid #ddd;
    box-shadow: none; }

table.dataTable td.select-checkbox:before {
  content: ' ';
  border: 2px solid #e9ecee;
  border-radius: 3px;
  position: relative;
  width: 20px;
  height: 20px;
  display: block; }

table.dataTable td.select-checkbox:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #416af0;
  border-left: 2px solid #416af0;
  transform: rotate(-45deg) scale(0);
  position: absolute;
  margin-top: -14px;
  margin-left: 5.5px; }

table.dataTable tr.active td.select-checkbox:after {
  transform: rotate(-45deg) scale(1); }

table.dataTable tr.active td.select-checkbox:before {
  border: 2px solid #416af0; }

table.dataTable tr.active td {
  background-color: inherit;
  font-weight: 600;
  color: #416af0; }

.results-page table.dataTable tr:hover {
  cursor: pointer; }

.total-row {
  border-top: 2px solid #e9ecee;
  font-weight: 700; }

.subtract-row {
  background: #f9f9f9; }

.cost-explanation {
  padding: 0;
  margin: 0;
  text-align: right;
  color: #6f7b8a; }

html .graph-wrap {
  border: 2px solid #e9ecee;
  border-radius: 3px;
  padding: 15px 30px 30px 10px;
  margin-top: 15px; }

.optimize-info .table-actions {
  padding-top: 20px;
  padding-bottom: 10px; }
  .optimize-info .table-actions .pull-left {
    margin-top: 7px; }

.results-page .dataTables_info {
  margin-left: 0; }

.results-page table.dataTable {
  border-top: none; }

.results-page g.c3-legend-item {
  transform: translate(30px, 2px); }

.results-page .info-condensed .data-label {
  color: #A5A9B7; }

#threeDGraph .graph-tooltip {
  background: white !important;
  opacity: 1 !important; }

#threeDGraph .graph-selection {
  display: none; }

#threeDGraph {
  border: 2px solid #e9ecee;
  border-radius: 2px; }

#threeDGraph > div {
  overflow: visible !important; }

#threeDGraph.expanded {
  position: fixed;
  top: 101px;
  width: 100vw;
  height: calc(100vh - 101px);
  z-index: 9999;
  background: #ffffff;
  left: 0; }
  @media (max-width: 979px) {
    #threeDGraph.expanded {
      height: calc(100vh - 60px);
      top: 60px; } }

.col-lg-12.expanded {
  position: fixed;
  top: 106px;
  z-index: 10011;
  left: 0;
  width: 100vw;
  padding-right: 80px; }
  @media (max-width: 979px) {
    .col-lg-12.expanded {
      top: 60px; } }

.col-lg-12.default {
  z-index: 10011; }

.login-form button#login-submit.ladda-button, .login-form button#signup-Btn.ladda-button, .login-form .form-control[disabled], .login-form .form-control[readonly], .login-form fieldset[disabled] .form-control {
  background: #416af0; }

.tippy-tooltip.pvc-theme {
  background-color: #ffffff;
  color: #555555;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  padding: 0;
  -webkit-box-shadow: 0px 0px 30px 7px rgba(86, 96, 117, 0.35);
  -moz-box-shadow: 0px 0px 30px 7px rgba(86, 96, 117, 0.35);
  box-shadow: 0px 0px 30px 7px rgba(86, 96, 117, 0.35); }
  .tippy-tooltip.pvc-theme[x-placement^='top'] h6, .tippy-tooltip.pvc-theme[x-placement^='bottom'] h6 {
    border-bottom: 1px solid #e9ecee; }
  .tippy-tooltip.pvc-theme[x-placement^='top'] img, .tippy-tooltip.pvc-theme[x-placement^='bottom'] img {
    margin-top: -1px; }
  .tippy-tooltip.pvc-theme .tippy-content img {
    max-width: 100%;
    min-width: 100%; }
  .tippy-tooltip.pvc-theme .tippy-content h6 {
    font-size: 15px;
    color: #416af0;
    font-weight: 600;
    line-height: 1.5;
    padding: 8px;
    margin-bottom: 0; }
  .tippy-tooltip.pvc-theme .tippy-content a {
    color: #416af0;
    font-weight: 600;
    margin-top: 15px; }
    .tippy-tooltip.pvc-theme .tippy-content a:hover {
      color: #708ff4; }
  .tippy-tooltip.pvc-theme .tippy-content p {
    padding: 8px 8px 8px 8px;
    margin-bottom: 0; }
    .tippy-tooltip.pvc-theme .tippy-content p:last-of-type {
      padding: 0px 8px 8px 8px; }
    .tippy-tooltip.pvc-theme .tippy-content p:only-of-type {
      padding: 8px 8px 8px 8px; }
  .tippy-tooltip.pvc-theme[data-animatefill] {
    background-color: transparent; }
  .tippy-tooltip.pvc-theme .tippy-backdrop {
    background-color: #ffffff; }
  .tippy-tooltip.pvc-theme[x-placement^='top'] {
    top: -10px; }
  .tippy-tooltip.pvc-theme[x-placement^='top'] .tippy-arrow {
    border-top-color: #ffffff; }
  .tippy-tooltip.pvc-theme[x-placement^='bottom'] .tippy-arrow {
    border-bottom-color: #ffffff; }
  .tippy-tooltip.pvc-theme[x-placement^='left'] .tippy-arrow {
    border-left-color: #ffffff; }
  .tippy-tooltip.pvc-theme[x-placement^='right'] .tippy-arrow {
    border-right-color: #ffffff; }

img.layout-menu-icon {
  width: 24px;
  margin: 14px; }

svg.layout-menu-icon {
  transform: scale(0.75);
  width: 28px;
  height: 28px;
  margin: 12px 11px -2px 11px;
  fill: #6f7b8a; }

a.active svg.layout-menu-icon {
  fill: #fffeff; }

img.fb {
  display: none; }

.no-svg img.fb {
  display: block; }

.page-sidebar .page-sidebar-wrapper > ul > li > a {
  border-bottom: none; }

.shade-color-scale-outer {
  font-size: 10px;
  text-align: center;
  color: white;
  font-family: "Source Sans Pro", sans-serif;
  display: block;
  position: absolute;
  bottom: 110px;
  right: 9px;
  width: 42px;
  height: 100px;
  border-radius: 3px;
  background: linear-gradient(to top, #000000 0%, #FF0000 25%, #FF4500 50%, #FFA500 75%, #FFFF00 100%);
  border: solid 2px #6F7B8A; }
  .shade-color-scale-outer.inactive {
    opacity: 0.7; }
  .shade-color-scale-outer .maxVal {
    display: block;
    position: absolute;
    top: 0;
    color: black; }
  .shade-color-scale-outer .minVal {
    display: block;
    position: absolute;
    bottom: 0; }

.tog-foot-overlay {
  background: #ffffff;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  padding-top: 8px; }
  .tog-foot-overlay i {
    font-size: 24px; }
  .tog-foot-overlay a:hover i::before {
    color: #708ff4; }
  .tog-foot-overlay p {
    font-size: 14px; }

@media (max-width: 1180px) {
  .tog-foot-overlay {
    padding-top: 130px;
    padding-right: 5px;
    padding-left: 5px; } }

@media (max-width: 979px) {
  .tog-foot-overlay {
    padding-top: 42px;
    padding-right: 5px;
    padding-left: 5px; } }

#tabBilling .panel > .list-group .list-group-item:nth-of-type(2) {
  min-height: 65px; }

.permit-apply .grid-title h4 {
  width: 100%;
  font-weight: 700;
  text-align: center;
  overflow: visible;
  text-overflow: initial;
  white-space: pre-wrap; }

.permit-apply .spinner .input-group-btn-vertical {
  width: 50px; }

.permit-apply .nav-tabs {
  margin-top: 0; }
  .permit-apply .nav-tabs li {
    width: 33.3%;
    padding: 0 2px; }
    .permit-apply .nav-tabs li a {
      min-width: 0; }
    .permit-apply .nav-tabs li img {
      padding: 0 0.5rem;
      width: 100%;
      border: solid 1px #f9f9f9; }

.permit-apply .checkbox {
  padding: 20px 20px;
  margin-top: 0px;
  margin-bottom: 0px; }

.permit-apply .checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px; }

.permit-apply .checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff; }

.permit-apply .checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 0px;
  font-size: 11px;
  color: #555555; }

.permit-apply .checkbox input[type="checkbox"] {
  opacity: 0; }

.permit-apply .checkbox input[type="checkbox"]:checked + label::after {
  font-family: 'FontAwesome';
  content: "\f00c"; }

.permit-apply .checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65; }

.permit-apply .checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #eeeeee; }

.permit-apply .checkbox.checkbox-circle label::before {
  border-radius: 50%; }

.permit-apply .checkbox.checkbox-inline {
  margin-top: 0; }

.permit-apply .checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #0090D9;
  border-color: #0090D9; }

.permit-apply .checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff; }

.permit-apply .checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f; }

.permit-apply .checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff; }

.permit-apply .checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de; }

.permit-apply .checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff; }

.permit-apply .checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }

.permit-apply .checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff; }

.permit-apply .checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c; }

.permit-apply .checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff; }

.permit-apply .footer-spacer {
  display: block;
  height: 100px;
  height: 20vh;
  width: 100%; }

@media only screen and (max-width: 768px) {
  .get-quote .nav-tabs li {
    width: 100%;
    padding: 0.5rem 0; }
    .get-quote .nav-tabs li img {
      max-width: 300px;
      margin: 0 auto; } }

.savingsCalculator .modal-header {
  border-bottom: 2px solid #f6f7f8; }

.savingsCalculator .modal-footer {
  text-align: center; }
  @media (max-width: 480px) {
    .savingsCalculator .modal-footer a {
      margin-bottom: 1rem; } }

.savingsCalculator .c3-legend-item-line1 .c3-legend-item-tile, .savingsCalculator .c3-legend-item-line2 .c3-legend-item-tile {
  shape-rendering: auto;
  stroke-linecap: round;
  stroke-dasharray: 0.1 10;
  transform: translate(5px, 0); }

.savingsCalculator .c3-tooltip-container table.c3-tooltip tr.c3-tooltip-name--line1 td span, .savingsCalculator .c3-tooltip-container table.c3-tooltip tr.c3-tooltip-name--line2 td span {
  border-radius: 5px; }

.savingsCalculator .c3-circles {
  opacity: 0; }

.savingsCalculator .c3-circles-line1 {
  opacity: 1; }

.savingsCalculator .c3-circles-line2 {
  opacity: 1; }

.savingsCalculator .chart,
.savingsCalculator .c3,
.savingsCalculator .c3 svg {
  width: 100%; }

.savingsCalculator .calc-report h1.semi-bold {
  font-family: "Josefin Slab", Serif;
  font-weight: 300;
  font-size: 6em;
  color: #595959; }

.savingsCalculator .calc-report hr {
  border-color: #f6f7f8; }

.savingsCalculator .calc-report p {
  color: #B8B8B8;
  font-weight: 700;
  font-size: 1em; }

.savingsCalculator .savings-summary .center-col {
  text-align: center; }

.savingsCalculator .savings-summary li {
  font-weight: 700;
  font-size: 1.1em; }

.savingsCalculator .savings-summary li:before {
  font-family: 'FontAwesome';
  content: "\f058";
  padding-right: 0.5rem;
  font-size: 2.6em;
  line-height: 1.5;
  vertical-align: middle;
  color: #2ed3b6; }

.savingsCalculator .savings-summary i:before {
  font-size: 10em; }

.savingsCalculator .spaced-paragraph {
  margin: 10px 0; }

#tog-foot {
  border-left: none; }

.modal-crumbs {
  list-style: none;
  font-size: 15px;
  text-align: left;
  padding-left: 0;
  margin-bottom: 0; }

.modal-crumbs i::before {
  font-size: 8px;
  margin-left: 20px;
  margin-right: 20px; }

.modal-crumbs li {
  display: inline-block;
  vertical-align: top; }

.modal-crumbs li.active {
  color: #333333; }

.monthly-usage {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0; }

.monthly-usage li {
  display: inline-block;
  vertical-align: top;
  width: 16%;
  padding-left: 0; }

.monthly-usage li input:focus {
  background-color: #fffeff;
  border-color: #416af0; }

.monthly-usage li label {
  font-weight: 700;
  font-size: 10px;
  padding-left: 2px; }

.required-notice {
  color: #f35958; }

.modal-body.modal-grid {
  background-color: #ffffff;
  box-shadow: none; }

.modal-savings.modal-body h4 {
  margin-bottom: 30px; }

.modal-body label {
  white-space: nowrap; }

.modal-savings.modal-body .btn-group {
  margin-bottom: 30px; }

.modal-savings.modal-body .btn-group .btn {
  font-size: 12px; }

.savings-table .savings-table-header {
  display: flex;
  justify-content: space-evenly;
  align-items: center; }
  .savings-table .savings-table-header .recalculate-button {
    padding: 2px 10px;
    display: flex;
    align-items: center; }

.savings-table .icon-refresh:hover {
  cursor: pointer; }

.savings-table a {
  font-weight: 700;
  color: #416af0;
  text-decoration: none; }
  .savings-table a:hover {
    color: #708ff4; }
    .savings-table a:hover span {
      text-decoration: underline; }
  .savings-table a .loader-blue {
    width: 2em;
    height: 2em; }

.w-49 {
  width: 49%;
  display: inline-block; }

.calc-report hr {
  border-color: #fffeff;
  border-width: 1px;
  margin-left: 2rem -15px;
  margin-right: -15px; }

.calc-report h3 {
  font-weight: 400; }

.calc-report h1 {
  font-size: 5em;
  font-weight: 100;
  line-height: 1; }

.calc-report p {
  font-size: 1.6em;
  line-height: 1;
  font-weight: 100; }
  .calc-report p.sub {
    text-align: center; }

.calc-report .report-wrap {
  text-align: center;
  padding-bottom: 2rem;
  padding-top: 1rem; }
  .calc-report .report-wrap table {
    width: 50%;
    margin: 1rem auto 0;
    text-align: left; }
    .calc-report .report-wrap table tr {
      border-bottom: 1px solid #d4d4d4; }
      .calc-report .report-wrap table tr td {
        padding: 0.5rem; }

.calc-report .report-icon {
  display: inline-block;
  vertical-align: middle; }

.calc-report .report-stats {
  display: inline-block;
  vertical-align: middle;
  padding-left: 1rem; }

.calc-report .icon::before {
  font-size: 8em; }

.disabled {
  color: #000; }

.incentive-item {
  border: 1px solid black;
  display: block;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-transform: capitalize; }

@media only screen and (max-width: 1180px) {
  #tog-foot .table.table-condensed td {
    display: block; } }

@media only screen and (max-width: 500px) {
  .monthly-usage li {
    width: 32.4%; }
  .modal-savings.modal-body .btn-group .btn {
    width: 100%;
    display: block;
    border-radius: 3px;
    margin-bottom: 4px; }
  .modal-crumbs {
    font-size: 10px; }
  .modal-crumbs i::before {
    font-size: 6px;
    margin-left: 0;
    margin-right: 0; }
  .modal-crumbs li {
    display: inline-block;
    padding-left: 0; } }

.build-sales-report {
  /*Sales report preview*/ }
  .build-sales-report .row.actions {
    border-top: 2px solid #f9f9f9;
    padding-top: 2rem; }
  .build-sales-report .c3-legend-item-line1 .c3-legend-item-tile, .build-sales-report .c3-legend-item-line2 .c3-legend-item-tile {
    shape-rendering: auto;
    stroke-linecap: round;
    stroke-dasharray: 0.1 10;
    transform: translate(5px, 0); }
  .build-sales-report .c3-tooltip-container table.c3-tooltip tr.c3-tooltip-name--line1 td span, .build-sales-report .c3-tooltip-container table.c3-tooltip tr.c3-tooltip-name--line2 td span {
    border-radius: 5px; }
  .build-sales-report .c3-circles {
    opacity: 0; }
  .build-sales-report .c3-circles-line1 {
    opacity: 1; }
  .build-sales-report .c3-circles-line2 {
    opacity: 1; }
  .build-sales-report svg .c3-legend-item,
  .build-sales-report svg .c3-axis {
    fill: #595959; }
  .build-sales-report .c3 path,
  .build-sales-report .c3 line {
    stroke: #595959; }
  .build-sales-report #pie-plot1-chart.c3 path {
    stroke: transparent; }
  .build-sales-report .grid.simple {
    background-color: #ffffff;
    box-shadow: none; }
  .build-sales-report .calc-savings-prompt {
    padding: 1rem 0 0 0; }
    .build-sales-report .calc-savings-prompt .inline-link {
      font-weight: 700;
      color: #416af0;
      text-decoration: none; }
      .build-sales-report .calc-savings-prompt .inline-link:hover {
        text-decoration: underline;
        color: #708ff4; }
  .build-sales-report .help-block {
    color: #708ff4; }
  .build-sales-report .form-group {
    height: inherit; }
  .build-sales-report .report-stats,
  .build-sales-report .report-icon {
    display: inline-block;
    width: auto; }
  .build-sales-report .report-icon i:before {
    font-size: 4em;
    padding-right: 1rem; }
  .build-sales-report .c3-constrain {
    width: 200px;
    height: 200px;
    display: block;
    position: relative;
    margin-bottom: 80px; }
  .build-sales-report .c3 {
    font-family: "Open Sans", sans-serif !important; }
  .build-sales-report .c3-wrap {
    margin-right: 4rem;
    margin-left: 4rem;
    margin-top: 2.5rem; }
  .build-sales-report .report-wrap table {
    width: 50%;
    margin: 5rem auto 0;
    text-align: left; }
    .build-sales-report .report-wrap table tr {
      border-bottom: 1px solid #d4d4d4; }
      .build-sales-report .report-wrap table tr td {
        padding: 0.5rem; }
  .build-sales-report .chart,
  .build-sales-report .c3,
  .build-sales-report .c3 svg {
    width: 100%; }
  .build-sales-report .c3-area {
    opacity: 0.6 !important; }
  .build-sales-report .c3-axis-x {
    font-size: 8px; }
  .build-sales-report .centered {
    text-align: center; }
  .build-sales-report .c3-axis-y2 path {
    opacity: 0 !important; }
  .build-sales-report .checkbox {
    padding: 20px 20px;
    margin-top: 0px;
    margin-bottom: 0px; }
  .build-sales-report .checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px; }
  .build-sales-report .checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff; }
  .build-sales-report .checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 0px;
    font-size: 11px;
    color: #555555; }
  .build-sales-report .checkbox input[type="checkbox"] {
    opacity: 0; }
  .build-sales-report .checkbox input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c"; }
  .build-sales-report .checkbox input[type="checkbox"]:disabled + label {
    opacity: 0.65; }
  .build-sales-report .checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed; }
  .build-sales-report .checkbox.checkbox-circle label::before {
    border-radius: 50%; }
  .build-sales-report .checkbox.checkbox-inline {
    margin-top: 0; }
  .build-sales-report .checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #416af0;
    border-color: #416af0; }
  .build-sales-report .checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .build-sales-report .checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #f35958;
    border-color: #f35958; }
  .build-sales-report .checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .build-sales-report .checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #708ff4;
    border-color: #708ff4; }
  .build-sales-report .checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .build-sales-report .checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .build-sales-report .checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .build-sales-report .checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #2ed3b6;
    border-color: #2ed3b6; }
  .build-sales-report .checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .build-sales-report hr {
    margin-left: -26px !important;
    margin-right: -26px !important;
    border-color: #e9ecee;
    border-width: 0.5px; }
  .build-sales-report .report-preview p,
  .build-sales-report .report-preview h1,
  .build-sales-report .report-preview h2,
  .build-sales-report .report-preview h3,
  .build-sales-report .report-preview h4,
  .build-sales-report .report-preview h5,
  .build-sales-report .report-preview h6 {
    font-family: "Open Sans", sans-serif;
    color: #555555;
    line-height: 1.5; }
  .build-sales-report .report-preview .row {
    margin-left: -41px;
    margin-right: -41px; }
  .build-sales-report .report-preview .blue-rule {
    width: 100%;
    display: block;
    background-color: #708ff4;
    height: 2px;
    margin-bottom: 2rem;
    margin-top: 1.4rem; }
  .build-sales-report .report-preview .blue-rule-sm {
    width: 9rem;
    display: block;
    background-color: #708ff4;
    height: 2px;
    margin-top: 1.5rem; }

body #chart1 .c3-area, body #chart3 .c3-area {
  opacity: 1 !important; }

body #chart1 .c3-ygrid-lines text, body #chart3 .c3-ygrid-lines text {
  fill: #333 !important;
  font-size: 14px !important;
  font-weight: 500; }

body #chart1 .c3-ygrid-lines line, body #chart3 .c3-ygrid-lines line {
  opacity: 0 !important; }

body .page-container .page-content.build-sales-report .content .container {
  width: 1040px !important; }

.report-preview p,
.report-preview h1,
.report-preview h2,
.report-preview h3,
.report-preview h4,
.report-preview h5,
.report-preview h6 {
  font-family: "Open Sans", sans-serif;
  color: #555555;
  line-height: 1.5; }

.report-preview .row {
  margin-left: -41px;
  margin-right: -41px; }

.report-preview .header-colored {
  height: 7rem;
  display: flex;
  background-color: #416af0;
  padding: 3rem;
  justify-content: space-between;
  align-items: center; }
  .report-preview .header-colored h3 {
    color: #ffffff !important;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 300; }
  .report-preview .header-colored i:before {
    color: #ffffff;
    font-size: 5.6em; }

.report-preview .section-1 .header-img {
  width: 100%;
  height: 14rem;
  background-color: #416af0; }

.report-preview .section-1 .content-wrap {
  padding: 1rem 4rem 2rem 4rem;
  border-left: solid 1px #e9ecee;
  border-right: solid 1px #e9ecee; }
  .report-preview .section-1 .content-wrap .intro-text {
    max-width: 500px; }
    .report-preview .section-1 .content-wrap .intro-text h3 {
      font-size: 24px; }
    .report-preview .section-1 .content-wrap .intro-text h4 {
      font-weight: 700;
      color: #555555;
      font-size: 18px; }
      .report-preview .section-1 .content-wrap .intro-text h4 .sub {
        font-weight: 400;
        text-transform: uppercase;
        font-size: 0.7em;
        letter-spacing: 0.1em;
        color: #B0B0B0; }
    .report-preview .section-1 .content-wrap .intro-text p {
      font-size: 16px;
      margin-bottom: 1.5rem;
      font-weight: 100; }
      .report-preview .section-1 .content-wrap .intro-text p.sub {
        color: #646464;
        font-size: 12px;
        line-height: 1.67; }
    .report-preview .section-1 .content-wrap .intro-text img {
      margin-top: 2rem;
      margin-bottom: 0.5rem;
      max-width: 200px;
      max-height: 90px; }
  .report-preview .section-1 .content-wrap .summary {
    width: 400px;
    float: right;
    padding: 1.6rem 2rem;
    background-color: #ffffff;
    margin-top: -128px; }
    .report-preview .section-1 .content-wrap .summary h3 {
      font-size: 36px;
      font-weight: 300;
      color: #646464;
      line-height: 1; }
    .report-preview .section-1 .content-wrap .summary h2 {
      font-family: "Josefin Slab", serif;
      letter-spacing: 2px;
      font-size: 50px;
      color: #646464;
      font-weight: 300;
      line-height: 1; }
    .report-preview .section-1 .content-wrap .summary h4 {
      color: #595959;
      font-weight: 300; }
    .report-preview .section-1 .content-wrap .summary h5 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      line-height: 1.33;
      color: #B8B8B8;
      margin-bottom: 2.4rem; }
    .report-preview .section-1 .content-wrap .summary img {
      width: 100% !important; }

.report-preview .section-2 .overview-img {
  background-image: url("http://via.placeholder.com/1000x384");
  background-position: center center;
  background-color: #f9f9f9;
  background-size: cover;
  width: 100%;
  height: 384px; }

.report-preview .section-2 img.streetview-img {
  border: 10px solid #ffffff;
  float: right;
  margin-top: -65px;
  margin-right: 50px;
  clear: both;
  width: 20px; }

.report-preview .section-2 #bigImage {
  width: auto !important;
  height: 40em;
  padding-top: 1rem; }

.report-preview ul.stats-blocks li {
  display: inline-block;
  vertical-align: top;
  width: 24%;
  height: 6rem;
  margin: 0;
  margin-top: 1rem;
  padding: 1rem;
  border-right: #416af0 2px solid; }
  .report-preview ul.stats-blocks li:last-of-type {
    border-right: none; }
  .report-preview ul.stats-blocks li .number {
    font-family: "Josefin Slab", serif;
    font-size: 25px;
    letter-spacing: 2px;
    line-height: 1;
    font-weight: 300; }
  .report-preview ul.stats-blocks li .title {
    font-weight: 700;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 1.2px;
    color: #B8B8B8; }
  .report-preview ul.stats-blocks li .credit {
    font-size: 12px;
    line-height: 2;
    color: #595959; }

.report-preview .section-3 i.fa-battery-empty {
  transform: rotate(-90deg);
  font-size: 7px; }

.report-preview .section-3 .graph-wrap {
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
  width: 75%; }

.report-preview .section-3 ul.stats-blocks {
  margin-top: 0;
  margin-bottom: 5rem; }

.report-preview .section-3 ul.stats-blocks li {
  text-align: left;
  padding-left: 2rem;
  margin-top: 1rem;
  height: auto; }
  .report-preview .section-3 ul.stats-blocks li div:first-of-type {
    padding-bottom: 0.6rem; }

.report-preview .section-3 p {
  font-weight: 300;
  line-height: 1.5;
  color: #555555;
  font-size: 16px; }

.report-preview .section-4 .report-stats {
  text-align: left;
  margin-top: 1rem;
  display: inline-block; }
  .report-preview .section-4 .report-stats h1 {
    font-family: "Josefin Slab", Serif;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1;
    font-size: 74px;
    color: #595959; }
  .report-preview .section-4 .report-stats p {
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1.2px;
    color: #B8B8B8;
    text-transform: uppercase; }

.report-preview .section-4 .c3-constrain {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  height: 300px; }

.report-preview .section-4 .c3-fill-height {
  min-height: 410px; }

.report-preview .section-4 .report-wrap {
  padding-left: 2rem; }
  .report-preview .section-4 .report-wrap table tr {
    border-bottom: none; }
  .report-preview .section-4 .report-wrap h3 {
    font-family: "Josefin Slab", Serif;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1;
    font-size: 50px;
    color: #595959;
    margin-top: 2.5rem; }

.report-preview .section-5 .savings-time {
  width: auto;
  display: inline-block;
  margin: 0 auto; }

.report-preview .section-5 .col-md-4 {
  padding-left: calc(4rem + 15px); }

.report-preview .section-5 .col-md-4,
.report-preview .section-5 .col-md-8 {
  margin-top: 1rem; }

.report-preview .section-5 h4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #555555; }

.report-preview .section-5 .col-md-6 h4 {
  margin-left: 5.4rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #555555;
  text-align: left; }

.report-preview .section-5 h5 {
  font-family: "Josefin Slab", Serif;
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1;
  font-size: 50px;
  color: #595959;
  text-align: left;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0.6rem; }

.report-preview .section-5 .number {
  font-family: "Josefin Slab", Serif;
  font-size: 25px;
  letter-spacing: 2px;
  line-height: 1;
  font-weight: 300;
  width: 400px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 0.6rem;
  margin-top: 2.5rem; }

.report-preview .section-5 p {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.2px;
  color: #B8B8B8;
  text-transform: uppercase;
  text-align: left;
  width: 100%;
  max-width: 400px;
  margin: 0 auto; }
  .report-preview .section-5 p.sub {
    margin-bottom: 0.6rem; }

.report-preview .section-5b {
  padding-bottom: 4rem;
  padding-top: 1rem; }
  .report-preview .section-5b h4 {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #555555; }

.report-preview .section-6 h4 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #555555; }

.report-preview .section-6 ul.environment-blocks {
  margin-top: 0px;
  display: block;
  position: relative;
  min-height: 380px;
  margin-bottom: 0rem; }
  .report-preview .section-6 ul.environment-blocks li {
    display: inline-block;
    vertical-align: top;
    width: 24%;
    margin: 0;
    margin-top: 0rem;
    margin-bottom: 2rem;
    padding: 1rem;
    height: 120px; }
    .report-preview .section-6 ul.environment-blocks li i:before {
      font-size: 120px;
      color: #ffd700; }
    .report-preview .section-6 ul.environment-blocks li h3 {
      border-top: #416af0 1px solid;
      margin-top: 2rem;
      padding-top: 2rem;
      font-family: "Josefin Slab", serif;
      font-size: 50px;
      letter-spacing: 2px;
      line-height: 1;
      font-weight: 300;
      color: #595959; }
    .report-preview .section-6 ul.environment-blocks li p {
      font-weight: 600;
      font-size: 12px;
      line-height: 1;
      letter-spacing: 1.2px;
      color: #B8B8B8;
      text-transform: uppercase; }
    .report-preview .section-6 ul.environment-blocks li:last-of-type {
      border-right: none; }
    .report-preview .section-6 ul.environment-blocks li .number {
      font-family: "Josefin Slab", serif;
      font-size: 50px;
      letter-spacing: 2px;
      line-height: 1;
      font-weight: 300; }
    .report-preview .section-6 ul.environment-blocks li .title {
      font-weight: 700;
      font-size: 12px;
      line-height: 2;
      letter-spacing: 1.2px;
      color: #B8B8B8; }
    .report-preview .section-6 ul.environment-blocks li .credit {
      font-size: 12px;
      line-height: 2;
      color: #595959; }

.report-preview .section-7 .col-md-6 h3 {
  text-align: left;
  padding: 1rem 3rem 0.2rem; }

.report-preview .section-7 .col-md-6 table {
  width: 100%; }
  .report-preview .section-7 .col-md-6 table tr td {
    padding: 0.5rem 3rem;
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1.2px;
    color: #B8B8B8;
    text-transform: uppercase; }
    .report-preview .section-7 .col-md-6 table tr td:nth-of-type(even) {
      text-align: right;
      font-family: "Open Sans", sans-serif;
      font-size: 16px;
      font-weight: 300;
      line-height: 1.5;
      color: #555555;
      width: 275px; }
  .report-preview .section-7 .col-md-6 table .left-side {
    padding: 0.5rem 0rem !important;
    width: 250px !important; }

.report-preview .section-7 .credit-wrap {
  margin: 1rem 3rem; }
  .report-preview .section-7 .credit-wrap h4 {
    width: 49%;
    display: inline-block;
    vertical-align: top;
    font-weight: 300;
    color: #555555;
    font-size: 18px; }
    .report-preview .section-7 .credit-wrap h4:nth-of-type(even) {
      text-align: right; }
    .report-preview .section-7 .credit-wrap h4 .sub {
      font-weight: 400;
      text-transform: uppercase;
      font-size: 0.7em;
      letter-spacing: 0.1em;
      color: #B0B0B0; }
  .report-preview .section-7 .credit-wrap p {
    font-size: 16px;
    margin-bottom: 1.5rem;
    font-weight: 100; }
    .report-preview .section-7 .credit-wrap p.sub {
      color: #646464;
      font-size: 12px;
      line-height: 1.67; }
  .report-preview .section-7 .credit-wrap img {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    max-width: 200px;
    max-height: 60px; }

.report-preview .blue-rule {
  width: 100%;
  display: block;
  background-color: #708ff4;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 1.4rem; }

.report-preview .blue-rule-sm {
  width: 9rem;
  display: block;
  background-color: #708ff4;
  height: 2px;
  margin-top: 1.5rem; }

.report-preview .icon-solution {
  width: 104px;
  height: 64px;
  background: url("../images/buildReport/Solution_Icon_-_white@2x.png") no-repeat !important; }

.report-preview .icon-energy {
  width: 54px;
  height: 80px;
  background: url("../images/buildReport/Energy_Icon_-_white@2x.png") no-repeat !important; }

.report-preview .icon-savings {
  width: 88px;
  height: 80px;
  background: url("../images/buildReport/Savings_Icon_-_white@2x.png") no-repeat !important; }

.report-preview .icon-setup {
  width: 88px;
  height: 80px;
  background: url("../images/buildReport/Set_Up_Icon_-_White@2x.png") no-repeat !important; }

.report-preview .icon-earth {
  width: 64px;
  height: 80px;
  background: url("../images/buildReport/Environment_Icon_-_white@2x.png") no-repeat !important; }

.report-preview .icon-details {
  width: 104px;
  height: 64px;
  background: url("../images/buildReport/Solution_Icon_-_white@2x.png") no-repeat !important; }

.report-preview .icon-tree {
  width: 88px;
  height: 150px;
  background: url("../images/buildReport/Tree_Icon.png") no-repeat !important; }

.report-preview .icon-globe {
  width: 130px;
  height: 150px;
  background: url("../images/buildReport/Gasoline_Icon.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .report-preview .icon-globe {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Gasoline_Icon@2x.png");
      background-size: 130px 150px; } }

.report-preview .icon-car {
  width: 176px;
  height: 150px;
  background: url("../images/buildReport/Miles_Icon.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .report-preview .icon-car {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Miles_Icon@2x.png");
      background-size: 176px 150px; } }

.report-preview .environment-blocks .icon-tree, .report-preview .environment-blocks .icon-globe, .report-preview .environment-blocks .icon-car {
  margin: 0 auto 3rem; }

.report-preview .c3-legend-item-line1 .c3-legend-item-tile, .report-preview .c3-legend-item-line2 .c3-legend-item-tile {
  shape-rendering: auto;
  stroke-linecap: round;
  stroke-dasharray: 0.1 10;
  transform: translate(5px, 0); }

.report-preview .c3-tooltip-container table.c3-tooltip tr.c3-tooltip-name--line1 td span, .report-preview .c3-tooltip-container table.c3-tooltip tr.c3-tooltip-name--line2 td span {
  border-radius: 5px; }

.report-preview .c3-circles {
  opacity: 0; }

.report-preview .c3-circles-line1 {
  opacity: 1; }

.report-preview .c3-circles-line2 {
  opacity: 1; }

.report-preview svg .c3-legend-item,
.report-preview svg .c3-axis {
  fill: #595959; }

.report-preview .c3 path,
.report-preview .c3 line {
  stroke: #595959; }

.report-preview #pie-plot1-chart.c3 path {
  stroke: transparent; }

.report-preview .c3-constrain {
  width: 200px;
  height: 200px;
  display: block;
  position: relative;
  margin-bottom: 80px; }

.report-preview .c3 {
  font-family: "Open Sans", sans-serif !important; }

.report-preview .c3-wrap {
  margin-right: 4rem;
  margin-left: 4rem;
  margin-top: 2.5rem; }

.report-preview .chart,
.report-preview .c3,
.report-preview .c3 svg {
  width: 100%; }

.report-preview .c3-area {
  opacity: 0.6 !important; }

.report-preview .c3-axis-x {
  font-size: 8px; }

.report-preview .centered {
  text-align: center; }

.report-preview .c3-axis-y2 path {
  opacity: 0 !important; }

.report-preview #chart1 .c3-area, .report-preview #chart3 .c3-area {
  opacity: 1 !important; }

.report-preview #chart1 .c3-ygrid-lines text, .report-preview #chart3 .c3-ygrid-lines text {
  fill: #333 !important;
  font-size: 14px !important;
  font-weight: 500; }

.report-preview #chart1 .c3-ygrid-lines line, .report-preview #chart3 .c3-ygrid-lines line {
  opacity: 0 !important; }

.report-preview .section-1, .report-preview .section-2, .report-preview .section-3, .report-preview .section-4, .report-preview .section-5, .report-preview .section-6, .report-preview .section-7 {
  height: 792px !important; }

.report-preview body #chart1 .c3-area, .report-preview body #chart3 .c3-area {
  opacity: 1 !important; }

.report-preview body #chart1 .c3-ygrid-lines text, .report-preview body #chart3 .c3-ygrid-lines text {
  fill: #333 !important;
  font-size: 14px !important;
  font-weight: 500; }

.report-preview body #chart1 .c3-ygrid-lines line, .report-preview body #chart3 .c3-ygrid-lines line {
  opacity: 0 !important; }

#toast-container div {
  width: auto; }

#toast-container .toast {
  box-shadow: none; }
  #toast-container .toast.toast-success {
    background-color: #137a63; }
  #toast-container .toast.toast-info {
    background-color: #416af0; }
  #toast-container .toast.toast-error {
    background-color: #f35958; }
  #toast-container .toast.toast-warning {
    background-color: #FD9644; }

@media (max-width: 979px) {
  #toast-container, #toast-container > div {
    width: 100%; } }

.dots span {
  font-size: 24px;
  line-height: 0.5;
  animation: blink 1.4s infinite both; }

.dots span:nth-child(1) {
  animation-delay: 0s; }

.dots span:nth-child(2) {
  animation-delay: 0.2s; }

.dots span:nth-child(3) {
  animation-delay: 0.4s; }

@keyframes blink {
  0%, 80%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }

.alert.gen-resp {
  margin: 1em 0; }

.ai-tab li {
  list-style: unset; }

.ai-tab .ai-wrap {
  overflow: hidden; }
  .ai-tab .ai-wrap ul {
    margin-bottom: 10px; }
  .ai-tab .ai-wrap ul > li {
    padding-left: 0px; }
    .ai-tab .ai-wrap ul > li ul > li {
      padding-left: 0px; }
      .ai-tab .ai-wrap ul > li ul > li ul li {
        padding-left: 10px; }
  .ai-tab .ai-wrap h3 {
    font-weight: unset;
    line-height: unset;
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600; }

.ai-tab .ai-wrap ol {
  margin-bottom: 10px;
  padding-left: 25px; }

.pastReports .modal-header {
  border-bottom: 1px solid #e9ecee; }

.pastReports .row:nth-of-type(even) {
  border-bottom: 1px solid #e9ecee;
  padding-bottom: 1rem; }

.pastReports .row:nth-of-type(odd) {
  padding-top: 1rem; }

.pastReports .row:last-of-type {
  border-bottom: none; }

.pastReports .btn {
  margin-top: 0.55rem; }

@media (max-width: 767px) {
  .pastReports .modal-body {
    text-align: center; }
  .pastReports p {
    max-width: 200px;
    margin: auto;
    padding-bottom: 1rem;
    margin-top: 1rem; }
  .pastReports .row:first-of-type p {
    margin-top: 0; }
  .pastReports .btn {
    margin-top: 1rem;
    margin-bottom: 1rem; } }

.build-sales-report section {
  padding-top: calc(100px + 0.5rem);
  padding-bottom: 0.5rem; }

.build-sales-report .modal-crumbs li {
  text-transform: uppercase; }
  .build-sales-report .modal-crumbs li.active {
    font-weight: 700; }
  .build-sales-report .modal-crumbs li:last-of-type {
    float: right;
    text-transform: initial; }
  .build-sales-report .modal-crumbs li .btn {
    font-weight: 700;
    color: #416af0;
    text-decoration: none; }
    .build-sales-report .modal-crumbs li .btn:hover {
      color: #708ff4;
      text-decoration: underline; }

.build-sales-report form .required {
  float: right;
  color: #f35958; }

.build-sales-report form .row:last-of-type {
  margin-top: 2rem; }

@media (max-width: 979px) {
  .build-sales-report section {
    padding-top: calc(60px + 0.5rem); } }

.build-sales-report .bottom-spacer {
  height: 6rem; }

body .page-content.build-sales-report .content {
  padding-top: 0; }

body .page-content.savingsCalculator {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 60px; }

.savingsCalculator section {
  padding-bottom: 0.5rem; }

.tenk .chat-window-wrapper {
  background-color: #003366; }

.tenk .chat-window-wrapper .btn.btn-mini.btn-success {
  background-color: #003366; }

.tenk .chat-window-wrapper .btn.btn-mini.btn-success:hover {
  background-color: #004197; }

.tenk .app-info {
  background-color: #003366; }

.hb .btn.btn-primary {
  background-color: #233881; }

.ars .btn.btn-primary {
  background-color: #8aa60d; }

.ecl .btn.btn-primary {
  background-color: #258f39; }

.ecl .btn.header-btn {
  background-color: #0090d9; }

.ecofasten .btn.btn-primary {
  background-color: #8aa60d; }

/* XL screens */
@media only screen and (min-width: 1824px) {
  body {
    height: 100%; }
  .page-container {
    height: 100%; }
  .footer-widget {
    position: fixed; }
  .table th {
    font-size: 14px; }
  .table td {
    font-size: 14px; }
  .table td.small-cell,
  .table th.small-cell {
    width: 42px; }
  .checkbox label:before {
    top: .5px; }
  .tiles.margin-reset {
    margin-left: 51px; } }

/* L Screens */
@media (min-width: 1600px) {
  .visible-xlg {
    display: block !important; }
  .hidden-xlg {
    display: none !important; }
  .container {
    width: 1170px; }
  .col-vlg-1,
  .col-vlg-2,
  .col-vlg-3,
  .col-vlg-4,
  .col-vlg-5,
  .col-vlg-6,
  .col-vlg-7,
  .col-vlg-8,
  .col-vlg-9,
  .col-vlg-10,
  .col-vlg-11 {
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px; }
  .col-vlg-12 {
    width: 100%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px; }
  .col-vlg-11 {
    width: 91.66666667%; }
  .col-vlg-10 {
    width: 83.33333333%; }
  .col-vlg-9 {
    width: 75%; }
  .col-vlg-8 {
    width: 66.66666667%; }
  .col-vlg-7 {
    width: 58.33333333%; }
  .col-vlg-6 {
    width: 50%; }
  .col-vlg-5 {
    width: 41.66666667%; }
  .col-vlg-4 {
    width: 33.33333333%; }
  .col-vlg-3 {
    width: 25%; }
  .col-vlg-2 {
    width: 16.66666667%; }
  .col-vlg-1 {
    width: 8.33333333%; }
  .col-vlg-pull-12 {
    right: 100%; }
  .col-vlg-pull-11 {
    right: 91.66666667%; }
  .col-vlg-pull-10 {
    right: 83.33333333%; }
  .col-vlg-pull-9 {
    right: 75%; }
  .col-vlg-pull-8 {
    right: 66.66666667%; }
  .col-vlg-pull-7 {
    right: 58.33333333%; }
  .col-vlg-pull-6 {
    right: 50%; }
  .col-vlg-pull-5 {
    right: 41.66666667%; }
  .col-vlg-pull-4 {
    right: 33.33333333%; }
  .col-vlg-pull-3 {
    right: 25%; }
  .col-vlg-pull-2 {
    right: 16.66666667%; }
  .col-vlg-pull-1 {
    right: 8.33333333%; }
  .col-vlg-pull-0 {
    right: 0; }
  .col-vlg-push-12 {
    left: 100%; }
  .col-vlg-push-11 {
    left: 91.66666667%; }
  .col-vlg-push-10 {
    left: 83.33333333%; }
  .col-vlg-push-9 {
    left: 75%; }
  .col-vlg-push-8 {
    left: 66.66666667%; }
  .col-vlg-push-7 {
    left: 58.33333333%; }
  .col-vlg-push-6 {
    left: 50%; }
  .col-vlg-push-5 {
    left: 41.66666667%; }
  .col-vlg-push-4 {
    left: 33.33333333%; }
  .col-vlg-push-3 {
    left: 25%; }
  .col-vlg-push-2 {
    left: 16.66666667%; }
  .col-vlg-push-1 {
    left: 8.33333333%; }
  .col-vlg-push-0 {
    left: 0; }
  .col-vlg-offset-12 {
    margin-left: 100%; }
  .col-vlg-offset-11 {
    margin-left: 91.66666667%; }
  .col-vlg-offset-10 {
    margin-left: 83.33333333%; }
  .col-vlg-offset-9 {
    margin-left: 75%; }
  .col-vlg-offset-8 {
    margin-left: 66.66666667%; }
  .col-vlg-offset-7 {
    margin-left: 58.33333333%; }
  .col-vlg-offset-6 {
    margin-left: 50%; }
  .col-vlg-offset-5 {
    margin-left: 41.66666667%; }
  .col-vlg-offset-4 {
    margin-left: 33.33333333%; }
  .col-vlg-offset-3 {
    margin-left: 25%; }
  .col-vlg-offset-2 {
    margin-left: 16.66666667%; }
  .col-vlg-offset-1 {
    margin-left: 8.33333333%; }
  .col-vlg-offset-0 {
    margin-left: 0; } }

/*Slightly above medium*/
@media (min-width: 980px) and (max-width: 991px) {
  .header .notifcation-center {
    display: none !important; } }

/* M Screens */
@media (min-width: 980px) {
  body.bottom-header .page-sidebar {
    margin-top: 0;
    margin-bottom: 58px; }
  .menu-non-fixed .page-sidebar {
    margin-top: 0;
    padding-top: 58px; }
  .page-sidebar {
    position: fixed;
    min-width: 260px;
    width: 410px;
    margin-top: 58px;
    padding-bottom: 92px; }
  .menu-non-fixed .footer-widget {
    z-index: 100; }
  .page-sidebar .page-sidebar-wrapper {
    height: 100%;
    max-width: 410px;
    /*padding-bottom: 58px !important*/ }
  .page-sidebar.fixed {
    position: fixed; }
  .page-content {
    margin-left: 410px;
    min-height: 100%; }
  .page-content.no-min-height {
    min-height: initial; }
  .full-width-page .page-content {
    margin-left: 0 !important; }
  .inner-menu {
    padding-top: 60px; }
  .btn-cons-md {
    min-width: 120px; }
  .boxed-layout {
    background-color: #f6f7f8; }
  .boxed-layout .container {
    position: relative; }
  .boxed-layout .chat-window-wrapper {
    position: absolute; }
  .boxed-layout .chat-window-wrapper .inner-content .chat-window-wrapper {
    margin-right: 0; }
  .horizontal-menu .header-seperation {
    display: none !important; }
  body {
    margin: 0 !important; }
  .horizontal-menu .page-content {
    margin-left: 0; }
  .header {
    margin: 0 !important; }
  .header .nav li.dropdown i {
    display: inline-block;
    position: relative;
    top: 1px;
    right: 0; }
  .header .nav {
    margin-bottom: 0 !important; }
  .page-container {
    margin: 0 !important;
    padding: 0 !important; }
  .fixed-top .page-container {
    margin-top: 0 !important; }
  .page-content {
    margin-top: 0; }
  .chat-window-wrapper {
    -webkit-overflow-scrolling: touch; }
  .chat-messages {
    -webkit-overflow-scrolling: touch; }
  .tiles {
    margin-right: 0; }
  .tiles.added-margin {
    margin-right: 0; }
  .page-content .admin-bar .admin-bar-inner {
    margin-right: 0; }
  .scrollup {
    left: 235px; }
  body.condense-menu .page-content {
    margin-left: 0; }
  body.open-menu-right .page-content {
    position: relative;
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    transform: translateX(-260px); }
  body.open-menu-right .header {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    transform: translateX(-260px); }
  body.open-menu-right .page-sidebar {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    transform: translateX(-260px); }
  body.open-menu-right .footer-widget {
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    transform: translateX(-260px); }
  body.open-menu-right .scrollup {
    display: none !important; }
  body.open-menu-left .page-content {
    position: relative;
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.open-menu-left .header {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.open-menu-left .page-sidebar {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.open-menu-left .footer-widget {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.open-menu-left .scrollup {
    display: none !important; }
  body.rtl.open-menu-right .page-content {
    position: relative;
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.rtl.open-menu-right .header {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.rtl.open-menu-right .page-sidebar {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.rtl.open-menu-right .footer-widget {
    -webkit-transform: translateX(260px);
    -moz-transform: translateX(260px);
    transform: translateX(260px); }
  body.rtl.open-menu-right .scrollup {
    display: none !important; }
  .sidebar-tab-pad .btn.btn-large {
    height: 50px;
    width: 55px; }
  #vert-nav ul li {
    display: inline-block; }
  #vert-nav ul li {
    border-radius: 3px; }
  #vert-nav ul li a {
    border-bottom: none; }
  .gen-btn-ovrly {
    margin-left: 0px; }
  .header-seperation ul li.dropdown {
    display: none !important; }
  .header-seperation .btn-qt {
    display: none; }
  .header-quick-nav .btn-qt {
    display: inline-block; } }

@media (min-width: 1024px) {
  .gmnoprint.gm-bundled-control {
    position: absolute;
    bottom: 110px !important; } }

/*Hack for IE*/
@media screen and (min-width: 0\0) {
  body.open-menu-right .page-container {
    position: relative;
    left: -260px; }
  body.open-menu-right .header {
    left: -260px; }
  body.open-menu-right .footer-widget {
    left: -260px; }
  body.open-menu-right .scrollup {
    display: none !important; }
  body.open-menu-right .page-content .admin-bar {
    left: -260px; }
  body.open-menu-left .page-container {
    position: relative;
    right: -260px; }
  body.open-menu-left .header {
    right: -260px; }
  body.open-menu-left .footer-widget {
    right: -260px; }
  body.open-menu-left .scrollup {
    display: none !important; }
  body.open-menu-left .page-content .admin-bar {
    right: -260px; } }

/* Small Desktop to Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  /*.page-sidebar {*/
  /*margin-top: 58px*/
  /*}*/
  .page-sidebar .page-sidebar-wrapper {
    padding-bottom: 58px; }
  .horizontal-menu .page-content {
    margin-left: 0; }
  .horizontal-menu .page-content .content {
    margin-top: 26px; }
  .page-sidebar.opened {
    height: auto;
    font-family: 'Open Sans';
    min-width: 260px;
    width: 410px;
    margin-top: 58px;
    padding-bottom: 105px; }
  .page-sidebar.opened .outer-tab-nav-section {
    display: inline-block;
    width: 45px;
    position: absolute;
    height: 100%; }
  .page-sidebar.opened .inner-menu {
    display: inline-block;
    width: 200px; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > a {
    color: #8b91a0; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li:last-child > a {
    border-bottom: 1px solid transparent !important; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li a i {
    color: #8b91a0;
    width: 20px;
    text-align: center;
    display: inline-block;
    margin-right: 10px; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li.open > a,
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > a:hover,
  .page-sidebar.opened .page-sidebar-wrapper > ul > li:hover > a {
    background: #1b1e24;
    padding: 11.5px 31px; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li.active > a {
    border-top-color: transparent !important; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > a.open {
    background: #313131; }
  .page-sidebar.opened .page-sidebar-wrapper ul > li > a > .arrow:before,
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > a > .arrow.open:before {
    color: #919091 !important; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > ul.sub-menu > li > a {
    margin-left: 0;
    padding-left: 5px; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > ul.sub-menu > li:first-child > a {
    border-top: 0 !important; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > ul.sub-menu > li.active > a {
    font-weight: 600; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > ul.sub-menu > li > a:hover {
    background: #1b1e24 !important; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > ul.sub-menu a .arrow:before,
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > ul.sub-menu a .arrow.open:before {
    color: #919091 !important; }
  .page-sidebar.opened ul.folders {
    list-style: none;
    margin: 0;
    padding: 0; }
  .page-sidebar.opened ul.folders > li {
    border: 0 none;
    display: block;
    margin: 0;
    padding: 0; }
  .page-sidebar.opened ul.folders > li > a {
    padding: 5px 31px;
    font-size: 13px;
    display: block;
    position: relative; }
  .page-sidebar.opened ul.folders > li > a:hover {
    text-decoration: none; }
  .page-sidebar.opened ul.folders > li > input {
    margin: 5px 31px;
    font-size: 13px;
    width: 150px; }
  .page-sidebar.opened .page-sidebar-wrapper > ul {
    min-width: 260px;
    width: 410px;
    padding-top: 0; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > a {
    padding: 10px 25px 10px 21px; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li.open > a,
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > a:hover,
  .page-sidebar.opened .page-sidebar-wrapper > ul > li:hover > a {
    padding: 10px 25px 10px 21px; }
  .page-sidebar.opened .user-info {
    display: block; }
  .page-sidebar.opened .page-sidebar-wrapper > p {
    display: block; }
  .page-sidebar.opened .page-sidebar-wrapper > .status-widget {
    display: block; }
  .page-sidebar.opened .page-sidebar-wrapper > .notification-alert {
    display: inline-block; }
  .page-sidebar.opened .page-sidebar-wrapper > ul li span.title {
    display: inline-block; }
  .page-sidebar.opened .page-sidebar-wrapper > ul li span.arrow {
    display: inline; }
  .page-sidebar.opened .page-sidebar-wrapper > ul li ul li span.title {
    display: inline; }
  .page-sidebar.opened .page-sidebar-wrapper > ul li ul li span.arrow {
    display: inline; }
  .page-sidebar.opened .page-sidebar-wrapper > ul li span.badge {
    display: inline-block; }
  .page-sidebar.opened .page-sidebar-wrapper ul li span.label {
    display: inline-block; }
  .page-sidebar.opened .profile-wrapper {
    display: block; }
  .page-sidebar.opened .slimScrollDiv {
    overflow: hidden !important; }
  .page-sidebar.opened .slimScrollDiv .page-sidebar-wrapper {
    overflow: hidden !important; }
  .page-sidebar.opened .page-sidebar-wrapper > ul > li > ul.sub-menu {
    position: relative;
    margin-top: 0;
    margin-left: 0;
    width: auto;
    z-index: 10; }
  .inner-menu {
    padding-top: 60px; }
  .page-sidebar .btn-navbar.collapsed .arrow {
    display: none; }
  .page-sidebar .btn-navbar .arrow {
    position: absolute;
    right: 25px;
    width: 0;
    height: 0;
    top: 50px;
    border-bottom: 15px solid #5f646b;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent; }
  .page-sidebar {
    position: fixed;
    width: 410px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 90; }
  /*
    .page-sidebar .page-sidebar-wrapper {
         overflow: visible !important
     }
     */
  .page-sidebar .page-sidebar-wrapper > ul {
    width: 410px;
    margin: 0; }
  .page-sidebar .page-sidebar-wrapper > ul > li > a {
    padding: 13px; }
  .page-sidebar .user-info {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > p {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > .status-widget {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > .notification-alert {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > ul li span.title {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > ul li span.arrow {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > ul li ul li span.title {
    display: inline; }
  .page-sidebar .page-sidebar-wrapper > ul li ul li span.arrow {
    display: inline; }
  .page-sidebar .page-sidebar-wrapper > ul li span.badge {
    display: none; }
  .page-sidebar .page-sidebar-wrapper ul li span.label {
    display: none; }
  .page-sidebar .profile-wrapper {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > ul > li.open > a,
  .page-sidebar .page-sidebar-wrapper > ul > li > a:hover,
  .page-sidebar .page-sidebar-wrapper > ul > li:hover > a {
    padding: 13px; }
  .page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu {
    position: absolute;
    margin-top: -46px;
    margin-left: 50px;
    width: auto;
    z-index: 100;
    min-width: 250px; }
  .page-sidebar .page-sidebar-wrapper > .side-bar-widgets {
    display: none; }
  .footer-widget {
    display: none !important; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper {
    display: inline-block;
    float: left;
    width: 50px;
    height: 100%; }
  .inner-menu-always-open .inner-menu {
    display: inline-block;
    float: left;
    margin-top: 20px;
    margin-left: 0; }
  .inner-menu-always-open .page-content {
    margin-left: 410px; }
  .page-content {
    margin-top: 0;
    min-height: 100%; }
  .page-content .content {
    padding-top: 95px; }
  .inner-menu-layout .page-content {
    margin-left: 410px; }
  .inner-menu {
    margin-left: 50px; }
  .visible-tablet {
    display: block !important; }
  .scrollup {
    left: 36px; }
  .table td.small-cell,
  .table th.small-cell {
    width: 40px; }
  body.open-menu-right .page-content {
    -webkit-transform: translateX(-260px);
    transform: translateX(-260px);
    left: auto; }
  body.open-menu-right .header {
    -webkit-transform: translateX(-260px);
    transform: translateX(-260px);
    left: auto; }
  body.open-menu-right .page-content .admin-bar {
    display: none; }
  body.open-menu-left .page-content {
    -webkit-transform: translateX(260px);
    transform: translateX(260px);
    left: auto; }
  body.open-menu-left .header {
    -webkit-transform: translateX(260px);
    transform: translateX(260px);
    left: auto; }
  body.open-menu-left .page-content .admin-bar {
    display: none; }
  body.boxed-layout {
    background-color: #f6f7f8; }
  body.boxed-layout .container {
    position: relative; }
  body.boxed-layout .chat-window-wrapper {
    position: absolute;
    margin-right: 15px; } }

/* Small Desktop to Tablet portrait */
/*
@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
    body {
        background-color: #1b1e24
    }
    body.hide-top-content-header .header {
        width: 100%
    }
    body.hide-top-content-header .page-content .content {
        padding-top: 93px
    }
    .pull-right {
        position: relative;
        z-index: 999;
    }
    .page-sidebar .page-sidebar-wrapper {
        display: inline-block;
        float: left;
        min-width: 260px;
        width: 410px;
        height: 100%
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper {
        background-color: #0aa699 !important
    }
    .inner-menu-always-open .page-sidebar .slimScrollDiv {
        overflow: visible !important
    }
    .inner-menu-always-open .page-sidebar .slimScrollDiv .page-sidebar-wrapper {
        overflow: visible !important
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul {
        width: 50px;
        margin: 0;
        padding-top: 60px
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul>li>a {
        padding: 13px !important
    }
    .inner-menu-always-open .page-sidebar .user-info {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>p {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>.status-widget {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>.notification-alert {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul li span.title {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul li span.arrow {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul li ul li span.title {
        display: inline
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul li ul li span.arrow {
        display: inline
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul li span.badge {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper ul li span.label {
        display: none
    }
    .inner-menu-always-open .page-sidebar .profile-wrapper {
        display: none
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul>li>a:hover,
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul>li:hover>a {
        background: #0b9c8f
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul>li.open>a,
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul>li>a:hover,
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul>li:hover>a {
        padding: 13px
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>ul>li>ul.sub-menu {
        position: absolute;
        margin-top: -46px;
        margin-left: 50px;
        width: auto;
        z-index: 100;
        min-width: 260px
    }
    .inner-menu-always-open .page-sidebar .page-sidebar-wrapper>.side-bar-widgets {
        display: none
    }
    .inner-menu-always-open .inner-menu {
        margin-top: 15px
    }
    .inner-menu-always-open .page-content {
        margin-left: 0
    }
    .header-seperation {
        width: 100% !important;
        display: block !important;
        position: fixed;
        z-index: 999;
        text-align: left !important;
    }
    .logo {
        margin-right: auto;
        margin-left: auto;

    }
    .header-quick-nav {
        display: block !important;
    }
    .header .notifcation-center {
        margin-left: 15px
    }
    .page-content .content {
        padding-top: 95px
    }
    .page-sidebar {
        position: fixed;
        width: 260px;
        background-color: #fffeff !important;
        z-index: auto;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: visibility 0s linear .5s, opacity .5s linear;
        transition: visibility 0s linear .5s, opacity .5s linear
    }
    .page-sidebar .user-info {
        display: inline-block
    }
    .page-sidebar>p {
        display: block
    }
    .page-sidebar>.status-widget {
        display: block
    }
    .page-sidebar>.notification-alert {
        display: inline-block
    }
    .page-sidebar .page-sidebar-wrapper>ul li span.title {
        display: inline-block
    }
    .page-sidebar .page-sidebar-wrapper>ul li span.arrow {
        display: inline-block;
        float: right
    }
    .page-sidebar .page-sidebar-wrapper>ul li span.badge {
        display: inline-block
    }
    .page-sidebar .page-sidebar-wrapper ul li span.label {
        display: inline-block
    }
    .page-sidebar .page-sidebar-wrapper>ul {
        width: 260px;
        padding-top: 0 !important
    }
    .page-sidebar .profile-wrapper {
        display: inline-block
    }
    .page-sidebar .page-sidebar-wrapper>.side-bar-widgets {
        display: block;
        min-width: 260px;
        width: 410px
    }
    .footer-widget {
        display: block
    }
    .page-sidebar .page-sidebar-wrapper>ul>li>a {
        padding: 11.5px 31px 11.5px 31px;
        color: #8B91A0
    }
    .page-sidebar .page-sidebar-wrapper>ul>li.open>a,
    .page-sidebar .page-sidebar-wrapper>ul>li>a:hover,
    .page-sidebar .page-sidebar-wrapper>ul>li:hover>a {
        background: #fffeff
    }
    .page-sidebar .page-sidebar-wrapper>ul>li.open>a,
    .page-sidebar .page-sidebar-wrapper>ul>li>a:hover,
    .page-sidebar .page-sidebar-wrapper>ul>li:hover>a {
        padding: 11.5px 31px 11.5px 31px
    }
    .page-sidebar .page-sidebar-wrapper>ul>li>a i {
        color: #8B91A0
    }
    .page-sidebar .page-sidebar-wrapper>ul>li>ul.sub-menu {
        position: relative;
        margin: 0
    }
    .page-sidebar.mini-mobile .side-bar-widgets {
        display: none
    }
    .page-sidebar {
        -webkit-overflow-scrolling: touch
    }
    .inner-menu {
        margin-left: 0;
        margin-top: 60px
    }
    .inner-menu-layout .page-content {
        margin-left: 200px
    }
    .scrollup {
        left: 244px
    }
    .chat-window-wrapper {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: visibility 0s linear .5s, opacity .5s linear;
        transition: visibility 0s linear .5s, opacity .5s linear;
        overflow-y: hidden
    }
    .page-content {
        margin: 0
    }
    .page-content .content {
        padding: 25px;
        padding-top: 95px
    }
    .widget {
        margin-right: 0
    }
    .column-seperation>div[class*="col-"] {
        border-right: none
    }
    .user-profile-pic {
        text-align: center
    }
    .user-mini-description h3,
    .user-mini-description h5 {
        text-align: center
    }
    .login-container {
        padding: 0 10px
    }
    .spacing-bottom-sm {
        margin-bottom: 20px
    }
    .error-wrapper {
        margin-bottom: 0;
        padding: auto
    }
    .widget-item.narrow-margin {
        margin-right: auto
    }
    .page-content.condensed {
        margin-left: 0
    }
    body.boxed-layout .header {
        width: 100%;
        padding: 0 !important
    }
    body.boxed-layout .container {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        width: 100%
    }
    .chat-window-wrapper {
        display: none
    }
    .chat-window-wrapper.visible {
        display: block
    }
    .page-sidebar {
        display: none
    }
    .page-sidebar.visible {
        display: block
    }
    body.open-menu-left .page-sidebar {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s
    }
    body.open-menu-right .chat-window-wrapper {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s
    }
    logged-menu {
        display: none!important;
    }
}
*/
/* Tablet and up */
@media (min-width: 768px) {
  .inp-or {
    margin-top: 36px;
    margin-bottom: 0;
    text-align: center; } }

/* Medium and down */
@media (max-width: 1082px) {
  .header .navbar-inner.navbar-sub .btn-header-nav {
    padding-left: 8px;
    padding-right: 8px;
    min-width: 0; }
  .header .navbar-inner.navbar-sub {
    padding-left: 10px; } }

/* Tablet to M breakpoint */
@media (min-width: 768px) and (max-width: 980px) {
  .page-content {
    /*margin-left: 410px*/ } }

/* Up to M */
@media (max-width: 979px) {
  body {
    overflow-x: hidden; }
  body.hide-top-content-header .header {
    width: 100%; }
  body.hide-top-content-header .page-content .content {
    padding-top: 93px; }
  .page-sidebar .page-sidebar-wrapper {
    display: inline-block;
    float: left;
    width: 260px;
    height: 100%; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper {
    width: 50px;
    overflow: visible; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper ul {
    background-color: #0aa699; }
  .inner-menu-always-open .page-sidebar .slimScrollDiv {
    overflow: visible !important; }
  .inner-menu-always-open .page-sidebar .slimScrollDiv .page-sidebar-wrapper {
    overflow: visible !important; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul {
    width: 50px;
    margin: 0;
    padding-top: 17px;
    height: 100%; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul > li > a {
    padding: 13px !important; }
  .inner-menu-always-open .page-sidebar .user-info {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > p {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > .status-widget {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > .notification-alert {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul li span.title {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul li span.arrow {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul li ul li span.title {
    display: inline; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul li ul li span.arrow {
    display: inline; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul li span.badge {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper ul li span.label {
    display: none; }
  .inner-menu-always-open .page-sidebar .profile-wrapper {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul > li > a:hover,
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul > li:hover > a {
    background: #0b9c8f; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul > li.open > a,
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul > li > a:hover,
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul > li:hover > a {
    padding: 13px; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu {
    position: absolute;
    margin-top: -46px;
    margin-left: 50px;
    width: auto;
    z-index: 100;
    min-width: 250px; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper > .side-bar-widgets {
    display: none; }
  .inner-menu-always-open .inner-menu {
    display: inline-block;
    float: left;
    margin-top: 20px; }
  .inner-menu-always-open .page-content {
    margin-left: 0; }
  .inner-menu {
    display: none; }
  .page-sidebar.mini-mobile {
    width: 260px; }
  .header .navbar-inner .container-fluid {
    margin-left: 10px !important;
    margin-right: 10px !important; }
  .header .navbar-inner .header-nav {
    display: none !important; }
  .header .top-nav .nav {
    margin-top: 0;
    margin-right: 5px; }
  .header .nav > li > .dropdown-menu.notification:after,
  .header .nav > li > .dropdown-menu.notification:before {
    margin-right: 180px; }
  .header .nav > li > .dropdown-menu.notification {
    margin-right: -180px; }
  .header .nav > li > .dropdown-menu.inbox:after,
  .header .nav > li > .dropdown-menu.inbox:before {
    margin-right: 140px; }
  .header .nav > li > .dropdown-menu.inbox {
    margin-right: -140px; }
  .header .nav > li > .dropdown-menu.tasks:after,
  .header .nav > li > .dropdown-menu.tasks:before {
    margin-right: 90px; }
  .header .nav > li > .dropdown-menu.tasks {
    margin-right: -90px; }
  .header-seperation {
    width: 100% !important;
    z-index: 999;
    text-align: center;
    min-height: 60px;
    display: block !important; }
  .header .notifcation-center {
    margin-left: 15px; }
  .logo {
    margin-right: auto;
    margin-left: auto;
    /*margin-top: 16px*/ }
  .header-quick-nav {
    display: none; }
  .page-sidebar {
    position: fixed;
    z-index: auto;
    /* visibility: hidden; */
    opacity: 1;
    -webkit-transition: visibility 0s linear .5s, opacity .5s linear;
    transition: visibility 0s linear .5s, opacity .5s linear;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden; }
  .page-content .content {
    padding: 8px;
    padding-top: 95px; }
  .page-title {
    margin-bottom: 20px; }
  .portlet-body.form .form-actions {
    padding-left: 15px; }
  .scrollup {
    right: 50px;
    left: auto;
    bottom: 35px; }
  .footer-widget {
    display: none; }
  .form-horizontal .form-actions {
    padding-left: 180px; }
  .no-margin-grid .row-fluid [class*="span"] {
    width: 100% !important;
    margin: 0;
    margin-bottom: 10px; }
  .tiles.margin-reset {
    margin-left: 0; }
  .user-profile-pic {
    text-align: center; }
  .user-mini-description h3,
  .user-mini-description h5 {
    text-align: center; }
  .email-body {
    padding: 8px !important; }
  .login-container {
    padding: 0 10px; }
  .table td.small-cell,
  .table th.small-cell {
    width: 42px; }
  .error-wrapper {
    margin-bottom: 0;
    min-height: 624px;
    height: 624px; }
  .widget-item.narrow-margin {
    margin-right: auto; }
  .page-content.condensed {
    margin-left: 0; }
  .scrollup {
    display: none; }
  body.boxed-layout .header {
    width: 100%;
    padding: 0 !important; }
  body.boxed-layout .container {
    padding: 0;
    width: 100%; }
  .inner-menu-always-open .user-info-wrapper {
    display: none; }
  .inner-menu-always-open .page-sidebar .page-sidebar-wrapper {
    height: auto; }
  .horizontal-menu .bar {
    display: none; }
  .horizontal-menu .bar {
    background-color: #fff; }
  .horizontal-menu .bar .bar-inner {
    display: block;
    max-height: 400px;
    overflow: scroll;
    -webkit-overflow-scrolling: touch; }
  .horizontal-menu .bar .bar-inner > ul > li {
    display: block; }
  .horizontal-menu .bar .bar-inner > ul > li .classic {
    position: relative;
    background-color: transparent;
    top: 0; }
  .horizontal-menu .bar .bar-inner > ul > li .mega,
  .horizontal-menu .bar .bar-inner > ul > li.horizontal {
    position: relative; }
  .horizontal-menu .bar .bar-inner > ul > li > .horizontal {
    position: relative;
    top: 0;
    border-bottom: 0; }
  .horizontal-menu .bar .bar-inner > ul > li > .horizontal li {
    display: block; }
  .chat-window-wrapper {
    /* visibility: hidden;*/
    opacity: 1;
    /*transition: visibility 0s linear .5s, opacity .5s linear*/ }
  .page-sidebar .sidebar-tab-pad button.btn-large {
    padding: 3px 6px 3px 6px; }
  .page-sidebar .sidebar-tab-pad a.btn-large.dropdown-toggle {
    padding: 3px 6px 3px 6px; }
  .page-sidebar .sidebar-tab-pad ul.dropdown-menu a {
    padding-left: 3px;
    padding-right: 3px;
    text-align: center; }
  /*
    .page-sidebar .sidebar-tab-pad ul.dropdown-menu {
       width: 90px
        }
        */
  .page-sidebar .nav-tabs.thirds li a {
    padding-left: 11.5px;
    padding-right: 11.5px; }
  .page-sidebar .sidebar-tab button.btn {
    margin-left: .5rem;
    margin-right: .5rem; }
  .btn-spacer,
  .btn-spacer:hover,
  .btn-spacer:focus,
  .btn-spacer:active {
    display: block;
    height: 1rem; }
  hr.sm-hr {
    margin: 2rem 0 2rem 0 !important; }
  .btn-spc {
    margin-bottom: 1rem; }
  .header.navbar {
    min-width: 290px; }
  .inp-or {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center; }
  .inp-or-wrp {
    background: #f6f7f8;
    padding-top: 1rem;
    padding-bottom: .25rem;
    margin-bottom: .25rem; }
  body.open-menu-left .page-content {
    -webkit-transform: translate3d(260px, 0, 0);
    transform: translate3d(260px, 0, 0); }
  body.open-menu-left .header {
    -webkit-transform: translate3d(260px, 0, 0);
    transform: translate3d(260px, 0, 0); }
  body.open-menu-right .page-content {
    -webkit-transform: translate3d(-260px, 0, 0);
    transform: translate3d(-260px, 0, 0); }
  body.open-menu-right .header {
    -webkit-transform: translate3d(-260px, 0, 0);
    transform: translate3d(-260px, 0, 0); }
  body.open-menu-right .page-content .admin-bar {
    display: none; }
  .page-sidebar .page-sidebar-wrapper > ul {
    width: 260px; }
  .page-container.row-fluid {
    overflow: hidden; }
  .page-sidebar#main-menu {
    width: 260px; }
  .page-sidebar .page-sidebar-wrapper .sidebar-tab-pad {
    margin-bottom: 5px;
    margin-top: 6px; }
  .can-varies .input-group-btn-vertical {
    display: none; }
  .modal-footer .btn-block {
    margin-bottom: 1em; }
  .page-sidebar {
    padding-top: 0px; }
  .header-seperation .btn-qt {
    display: inline-block;
    margin-left: 10px;
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7); }
  .header-quick-nav .btn-qt {
    display: none; }
  body.right-side-bar .page-content {
    margin-right: 0px; }
  body #main-menu.page-sidebar {
    right: -260px; }
  body #main-menu.page-sidebar.visible {
    right: 0px;
    padding-top: 60px;
    border-left: 1px solid #f9f9f9; }
  .navbar-top-mobile {
    display: inline-block !important; }
  .navbar-sub {
    display: none; }
  .map-port {
    padding-top: 61px; }
  #vert-nav {
    top: 61px; }
  #tog-foot {
    max-width: calc(100% - 180px);
    overflow: hidden; }
    #tog-foot .grid .grid-body {
      transition: margin 0.2s linear;
      margin-bottom: -168px; }
      #tog-foot .grid .grid-body:hover, #tog-foot .grid .grid-body :focus, #tog-foot .grid .grid-body :active, #tog-foot .grid .grid-body .active {
        margin-bottom: 0; }
    #tog-foot .viewOptions {
      position: initial;
      float: left;
      margin-bottom: 2px; }
  body .page-content .content {
    padding-top: 90px; } }

/* SM Screens */
@media (max-width: 480px) {
  body.hide-top-content-header .header {
    width: 100%; }
  body.hide-top-content-header .page-content .content {
    padding-top: 93px; }
  .page-title h3 {
    width: 80%; }
  .page-content .content {
    padding: 8px;
    padding-top: 93px;
    overflow-x: hidden; }
  .tiles.margin-reset {
    margin-left: 0; }
  .column-seperation > div[class*="span"] {
    border-right: none; }
  table th.unseen,
  table td.unseen {
    display: none !important; }
  .row-fluid {
    margin-bottom: 10px; }
  .small {
    width: 100px !important; }
  .medium {
    width: 150px !important; }
  .large {
    width: 200px !important; }
  .huge {
    width: 246px !important;
    font-size: 24px !important;
    height: 36px !important;
    line-height: 36px !important;
    padding: 22px 8px !important; }
  select.small {
    width: 114px !important; }
  select.medium {
    width: 164px !important; }
  select.large {
    width: 214px !important; }
  .btn-cons {
    min-width: 110px; }
  .btn-large {
    padding: 9px 15px; }
  .no-more-tables table,
  .no-more-tables thead,
  .no-more-tables tbody,
  .no-more-tables th,
  .no-more-tables td,
  .no-more-tables tr {
    display: block; }
  .no-more-tables thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px; }
  .no-more-tables.table-bordered td {
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee; }
  .no-more-tables td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    white-space: normal;
    text-align: left; }
  .no-more-tables td:before {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold; }
  .no-more-tables td:before {
    content: attr(data-title); }
  .no-more-tables .text-right,
  .no-more-tables .text-center {
    text-align: left !important; }
  .table-flip-scroll .cf:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0; }
  .table-flip-scroll * html .cf {
    zoom: 1; }
  .table-flip-scroll *:first-child + html .cf {
    zoom: 1; }
  .table-flip-scroll table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0; }
  .table-flip-scroll th {
    width: auto !important;
    border-radius: 0 !important; }
  .table-flip-scroll th,
  .table-flip-scroll td {
    margin: 0;
    vertical-align: top; }
  .table-flip-scroll th {
    text-align: left; }
  .table-flip-scroll table {
    display: block;
    position: relative;
    width: 100%; }
  .table-flip-scroll thead {
    display: block;
    float: left; }
  .table-flip-scroll tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap; }
  .table-flip-scroll thead tr {
    display: block; }
  .table-flip-scroll th {
    display: block; }
  .table-flip-scroll tbody tr {
    display: inline-block;
    vertical-align: top; }
  .table-flip-scroll td {
    display: block;
    min-height: 1.25em;
    text-align: left; }
  .table-flip-scroll th {
    border-bottom: 0;
    border-left: 0; }
  .table-flip-scroll td {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0 !important; }
  .table-flip-scroll tbody tr {
    border-left: 1px solid #babcbf; }
  .user-profile-pic {
    text-align: center; }
  .user-mini-description h3,
  .user-mini-description h5 {
    text-align: center; }
  .email-body {
    padding: 8px !important; }
  .lockscreen-wrapper .profile-wrapper {
    margin-bottom: 8px; }
  .image-responsive-width {
    width: auto; }
  .xs-image-responsive-width {
    width: 100%; }
  .page-container.row-fluid {
    margin-bottom: 0px; } }

/* XS screens */
@media (max-width: 320px) {
  .header .nav > li.dropdown .dropdown-toggle {
    padding-left: 8px !important;
    padding-right: 8px !important; } }

/* High DP Devices */
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 200 / 100), only screen and (min-device-pixel-ratio: 2) {
  .grid.simple .grid-title .tools a {
    background-size: 199px 57px; }
  .tiles .controller a {
    position: relative;
    background-size: 199px 57px; }
  .widget-item .controller a {
    position: relative;
    background-size: 199px 57px; }
  .iconset {
    background: no-repeat;
    background-size: 394px 29px; }
  .status-icon {
    background-size: 79px 16px; }
  .scrollup {
    background-size: 57px 27px; }
  .alert .close {
    background-position: -9px -10px;
    width: 10px;
    height: 9px;
    position: relative;
    opacity: .8;
    background-size: 114px 29px; }
  .checkbox label::after {
    top: 1.5px; } }

/* High DP Devices */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background: none !important; }
  .select2-search input {
    background: none !important; } }

/* up to tablet */
@media (max-width: 767px) {
  /*
    .chat-window-wrapper {
        display: none
    }
    .chat-window-wrapper.visible {
        display: block
    }*/
  .chat-window-wrapper {
    z-index: -1;
    -webkit-transition: transition 0.5s step-end;
    -moz-transition: transition 0.5s step-end;
    -o-transition: transition 0.5s step-end;
    transition: z-index 0.5s step-end; }
  .chat-window-wrapper.visible {
    z-index: 3;
    -webkit-transition: transition 0s step-end;
    -moz-transition: transition 0s step-end;
    -o-transition: transition 0s step-end;
    transition: z-index 0s step-end; }
  /* .page-sidebar {
        display: none
    } */
  .page-sidebar.visible {
    display: block; }
  body.open-menu-right .chat-window-wrapper {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s; }
  body.open-menu-left .page-sidebar {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    -webkit-backface-visibility: hidden; } }

/* specific sizing fixes */
@media (max-width: 585px) {
  .onboard-wiz .connecting-line {
    top: 44px; }
  .wizard {
    width: 90%;
    height: auto !important; } }

.toggle .btn,
.toggle .btn:hover,
.toggle .btn:active {
  border: 1px solid #ccc; }

.toggle .toggle-on {
  color: #fffeff;
  background-color: #416af0; }

.toggle .splitView-on {
  color: #fffeff;
  background-color: #416af0; }

.toggle .splitView-off {
  color: #e9ecee !important;
  background-color: #6f7b8a !important; }

.ng-scope .bom-button {
  width: 49%;
  margin: 0; }

.ng-scope .btn-alert {
  background-color: #ff4141; }

.ng-scope .btn-alert:hover {
  background-color: #ff7878; }

.advanced-select-selected {
  overflow: hidden; }
  .advanced-select-selected .glyphicon {
    position: absolute;
    right: 10px; }
  .advanced-select-selected .ng-binding {
    display: block;
    width: 95%; }

.bom {
  font-family: 'Open Sans';
  color: #0a0a0a;
  font-weight: 500; }

#bom-pane {
  padding-top: 70px; }

.bom-section-header {
  background-color: #f9f9f9;
  height: 70px; }
  .bom-section-header .row {
    padding: 20px;
    font-size: 20px;
    height: 100%; }

.bom-section-header .row div, #pageBom .bom-table-header div, #pageBomReview .bom-table-header div, #pageBom .bom-item > div:not(.equipment-select), #pageBomReview .bom-item > div:not(.equipment-select), #pageBom #project-info-header #project-image img {
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

.bom-no-border {
  background-color: #fffeff;
  border: none !important; }

.bom-main-page {
  background-color: #f6f7f8; }

.bom-large {
  font-size: 30px; }

.bom-header-text {
  line-height: 50px; }

.bom-table-text {
  line-height: 40px; }

.bom-summary-text {
  line-height: 35px; }

.bom-medium {
  font-size: 20px; }

.bom-small {
  font-size: 14px; }

.bom-medium-large {
  font-size: 22px; }

.bom-italic-blue {
  color: #708ff4 !important;
  font-size: 14px;
  font-style: italic;
  text-align: end;
  line-height: 1.3; }

.bom-row {
  margin-right: 0px !important;
  margin-left: 0px !important; }

.bom-no-left-right-padding {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.bom-top-padding {
  padding-top: 60px !important; }

.bom-no-top-padding {
  padding-top: 0 !important; }

.bom-space {
  padding-top: 30px;
  padding-bottom: 30px; }

.bom-row-space {
  padding-bottom: 25px;
  padding-top: 25px; }

.bom-background {
  background-color: #f9f9f9; }

.bom-item-row {
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 15px; }

#pageBom .hr.blue, #pageBomReview .hr.blue {
  border-top: 4px solid #416af0;
  margin-top: 40px;
  height: 0px; }

#pageBom .bom-table-header, #pageBomReview .bom-table-header {
  height: 50px;
  font-size: 16px;
  color: #B0B0B0; }

#pageBom .bom-item, #pageBomReview .bom-item {
  height: 90px;
  font-size: 14px; }

#pageBom .bom-remove, #pageBomReview .bom-remove {
  background-color: transparent;
  color: rgba(111, 123, 138, 0.75);
  font-size: 14px;
  font-weight: 200; }

#pageBom {
  max-width: 1040px; }
  #pageBom #project-info-header {
    background-color: #fffeff;
    padding: 15px 0px 0px 0px; }
    #pageBom #project-info-header #project-image {
      height: 100%; }
      #pageBom #project-info-header #project-image img {
        width: 500px; }
    #pageBom #project-info-header #project-attributes #address {
      padding-bottom: 20px; }
    #pageBom #project-info-header #project-attributes #street {
      font-size: 25px; }
    #pageBom #project-info-header #project-attributes #city {
      font-size: 20px; }
    #pageBom #project-info-header #project-attributes .project-attribute {
      font-size: 18px;
      height: 38px; }
      #pageBom #project-info-header #project-attributes .project-attribute .name {
        font-size: 18px;
        font-weight: 200; }
  #pageBom .equipment-select {
    margin-top: 26px; }
    #pageBom .equipment-select .bom-quick-mount {
      margin-left: -10px; }
    #pageBom .equipment-select advanced-select {
      font-weight: bold; }
  #pageBom .item-number {
    margin-top: -15px; }
  #pageBom .total-price {
    margin-left: -15px; }
  #pageBom .bom-summary-box {
    padding: 15px;
    margin-right: 15px;
    background-color: #f9f9f9; }
  #pageBom #diagram-button-bottom i {
    padding-right: 8px;
    margin-left: -5px; }

.bom-wizard {
  margin-left: auto;
  margin-right: auto;
  text-align: center; }
  .bom-wizard #header {
    position: relative;
    padding: 20px;
    width: 100%; }
  .bom-wizard #wizard-nav {
    margin: 0 auto;
    width: 450px; }
  .bom-wizard #header .bom-btn {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%); }
  .bom-wizard .bom-xBtn {
    background-color: transparent;
    border: hidden;
    font-size: 50px;
    margin-top: -4px;
    float: left;
    font-weight: 100;
    color: rgba(111, 123, 138, 0.75); }
  .bom-wizard .bom-breadcrumb {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .2px;
    display: inline;
    font-size: 15px;
    cursor: pointer; }
    .bom-wizard .bom-breadcrumb .bom-gtSymbol {
      font-size: 17px;
      font-weight: 100;
      padding-right: 10px;
      padding-left: 10px;
      cursor: default; }

#pageBomRoofs #roof-selector, #pageBomReview #roof-selector {
  padding: 20px 0; }

#pageBomRoofs .edit-roof, #pageBomReview .edit-roof {
  color: #708ff4;
  font-size: 16pt; }

#pageBomRoofs label, #pageBomReview label {
  margin-bottom: 0px; }

#pageBomRoofs .fa-pencil, #pageBomReview .fa-pencil {
  width: 17px; }

@media (min-width: 768px) {
  #pageBomStructural .structural-input-label {
    padding-left: 15px; } }

#pageBomRoofs #main-table {
  padding-top: 40px; }

#pageBomRoofs .checkbox {
  padding-left: 20px;
  margin-top: 0px;
  margin-bottom: 0px; }

#pageBomRoofs .checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px; }

#pageBomRoofs .checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out; }

#pageBomRoofs .checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 0px;
  font-size: 11px;
  color: #555555; }

#pageBomRoofs .checkbox input[type="checkbox"] {
  opacity: 0; }

#pageBomRoofs .checkbox input[type="checkbox"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px; }

#pageBomRoofs .checkbox input[type="checkbox"]:checked + label::after {
  font-family: 'FontAwesome';
  content: "\f00c"; }

#pageBomRoofs .checkbox input[type="checkbox"]:disabled + label {
  opacity: 0.65; }

#pageBomRoofs .checkbox input[type="checkbox"]:disabled + label::before {
  background-color: #eeeeee; }

#pageBomRoofs .checkbox.checkbox-circle label::before {
  border-radius: 50%; }

#pageBomRoofs .checkbox.checkbox-inline {
  margin-top: 0; }

#pageBomRoofs .checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #416af0;
  border-color: #416af0; }

#pageBomRoofs .checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff; }

#pageBomRoofs .checkbox-danger input[type="checkbox"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f; }

#pageBomRoofs .checkbox-danger input[type="checkbox"]:checked + label::after {
  color: #fff; }

#pageBomRoofs .checkbox-info input[type="checkbox"]:checked + label::before {
  background-color: #708ff4;
  border-color: #708ff4; }

#pageBomRoofs .checkbox-info input[type="checkbox"]:checked + label::after {
  color: #fff; }

#pageBomRoofs .checkbox-warning input[type="checkbox"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e; }

#pageBomRoofs .checkbox-warning input[type="checkbox"]:checked + label::after {
  color: #fff; }

#pageBomRoofs .checkbox-success input[type="checkbox"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c; }

#pageBomRoofs .checkbox-success input[type="checkbox"]:checked + label::after {
  color: #fff; }

.horizontal.blue .grid-title {
  border-bottom: 4px solid #416af0; }

.navbar-hidden {
  display: none; }

.btn-module-layout {
  width: 90px; }

.module-layout-staggered {
  padding-top: 28px;
  background-position: 20px 5px;
  padding-left: 5px;
  padding-right: 5px; }

.module-layout-staggered-gray {
  background-image: url(../images/module_layout/staggered-gray.svg);
  background-repeat: no-repeat; }

.module-layout-staggered-white {
  background-image: url(../images/module_layout/staggered-white.svg) !important;
  background-repeat: no-repeat !important; }

.module-layout-grid {
  padding-top: 28px;
  background-position: 20px 8px;
  padding-left: 5px;
  padding-right: 5px; }

.module-layout-grid-gray {
  background-image: url(../images/module_layout/grid-gray.svg) !important;
  background-repeat: no-repeat !important; }

.module-layout-grid-white {
  background-image: url(../images/module_layout/grid-white.svg) !important;
  background-repeat: no-repeat !important; }

html body .page-content.reports-page .buttons {
  min-width: 100px;
  position: absolute;
  z-index: 1000;
  right: 26px;
  top: 110px; }
  html body .page-content.reports-page .buttons .btn.btn-primary.inline-btn {
    background-color: #416af0; }
    html body .page-content.reports-page .buttons .btn.btn-primary.inline-btn:hover {
      background-color: #708ff4; }
    html body .page-content.reports-page .buttons .btn.btn-primary.inline-btn#exportBtn {
      background-color: #031b4e; }
      html body .page-content.reports-page .buttons .btn.btn-primary.inline-btn#exportBtn:hover {
        background-color: #052c7f; }

html body .page-content.reports-page .grid.simple .grid-body .header-colored h3 {
  color: #ffffff; }

html body .page-content.reports-page .content {
  padding-top: 160px;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0; }
  html body .page-content.reports-page .content .container {
    width: 1060px; }
  html body .page-content.reports-page .content .grid.simple {
    margin-bottom: 0; }
    html body .page-content.reports-page .content .grid.simple .grid-body.no-border {
      padding-top: 0;
      background: transparent; }

.reports-page .reports-sections {
  /*Sales report preview*/ }
  .reports-page .reports-sections .report-map {
    width: 1060px;
    height: 678.5px;
    display: block;
    position: relative; }
  .reports-page .reports-sections .three-d-key {
    width: auto;
    background: #ffffff;
    border-radius: 3px;
    margin-top: -70px;
    padding: 10px;
    display: block;
    position: absolute;
    right: 30px; }
    .reports-page .reports-sections .three-d-key .in-spec {
      display: inline-block;
      vertical-align: top;
      padding: 2px; }
      .reports-page .reports-sections .three-d-key .in-spec::before {
        content: "";
        display: block;
        position: relative;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #031b4e;
        margin-bottom: -5px; }
    .reports-page .reports-sections .three-d-key .in-spec-text {
      display: inline-block;
      vertical-align: top;
      padding-left: 4px; }
    .reports-page .reports-sections .three-d-key .out-spec {
      display: inline-block;
      vertical-align: top;
      padding: 2px; }
      .reports-page .reports-sections .three-d-key .out-spec::before {
        content: "";
        display: block;
        position: relative;
        width: 0;
        height: 0;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-bottom: 12px solid #B8B8B8;
        margin-bottom: -5px; }
    .reports-page .reports-sections .three-d-key .out-spec-text {
      display: inline-block;
      vertical-align: top;
      padding-left: 4px; }
  .reports-page .reports-sections .a-page {
    margin-bottom: 15px; }
  .reports-page .reports-sections #image {
    display: none; }
  .reports-page .reports-sections #rackablearea-map-canvas {
    display: block; }
  .reports-page .reports-sections .pvmega-logo-inline {
    display: inline-block;
    position: relative;
    margin-right: 0.5rem;
    width: 42px;
    height: 32px;
    margin-bottom: -3px;
    background-position: center center;
    background-size: 42px 32px; }
  .reports-page .reports-sections .report-page-text-area {
    padding: 2.5rem 1.5rem 0rem 1.5rem;
    min-height: 679.5px;
    background-color: #ffffff; }
  .reports-page .reports-sections .content {
    background-color: #e7eaee;
    border-top: 1px solid #e9ecee; }
  .reports-page .reports-sections .report-img-full {
    min-height: 747.5px;
    width: 100%; }
  .reports-page .reports-sections .row.actions {
    border-top: 2px solid #f9f9f9;
    padding-top: 2rem; }
  .reports-page .reports-sections svg .c3-legend-item,
  .reports-page .reports-sections svg .c3-axis {
    fill: #595959; }
  .reports-page .reports-sections .c3 path,
  .reports-page .reports-sections .c3 line {
    stroke: #595959; }
  .reports-page .reports-sections #pie-plot1-chart.c3 path {
    stroke: transparent; }
  .reports-page .reports-sections .grid.simple {
    box-shadow: none; }
  .reports-page .reports-sections .calc-savings-prompt {
    padding: 1rem 0 0 0; }
    .reports-page .reports-sections .calc-savings-prompt .inline-link {
      font-weight: 700;
      color: #416af0;
      text-decoration: none; }
      .reports-page .reports-sections .calc-savings-prompt .inline-link:hover {
        text-decoration: underline;
        color: #708ff4; }
  .reports-page .reports-sections .help-block {
    color: #416af0; }
  .reports-page .reports-sections .form-group {
    height: inherit; }
  .reports-page .reports-sections .report-stats,
  .reports-page .reports-sections .report-icon {
    display: inline-block;
    width: auto; }
  .reports-page .reports-sections .report-icon i:before {
    font-size: 4em;
    padding-right: 1rem; }
  .reports-page .reports-sections .c3-constrain {
    width: 200px;
    height: 200px;
    display: block;
    position: relative;
    margin-bottom: 80px; }
  .reports-page .reports-sections .c3 {
    font-family: "Open Sans", sans-serif !important; }
  .reports-page .reports-sections .c3-wrap {
    margin-right: 4rem;
    margin-left: 4rem;
    margin-top: 2.5rem; }
  .reports-page .reports-sections .report-wrap table {
    width: 50%;
    margin: 5rem auto 0;
    text-align: left; }
    .reports-page .reports-sections .report-wrap table tr {
      border-bottom: 1px solid #d4d4d4; }
      .reports-page .reports-sections .report-wrap table tr td {
        padding: 0.5rem; }
  .reports-page .reports-sections .chart,
  .reports-page .reports-sections .c3,
  .reports-page .reports-sections .c3 svg {
    width: 100%; }
  .reports-page .reports-sections .c3-area {
    opacity: 0.6 !important; }
  .reports-page .reports-sections .c3-axis-x {
    font-size: 8px; }
  .reports-page .reports-sections .centered {
    text-align: center; }
  .reports-page .reports-sections .checkbox {
    padding: 20px 20px;
    margin-top: 0px;
    margin-bottom: 0px; }
  .reports-page .reports-sections .checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px; }
  .reports-page .reports-sections .checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff; }
  .reports-page .reports-sections .checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 0px;
    font-size: 11px;
    color: #555555; }
  .reports-page .reports-sections .checkbox input[type="checkbox"] {
    opacity: 0; }
  .reports-page .reports-sections .checkbox input[type="checkbox"]:checked + label::after {
    font-family: 'FontAwesome';
    content: "\f00c"; }
  .reports-page .reports-sections .checkbox input[type="checkbox"]:disabled + label {
    opacity: 0.65; }
  .reports-page .reports-sections .checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed; }
  .reports-page .reports-sections .checkbox.checkbox-circle label::before {
    border-radius: 50%; }
  .reports-page .reports-sections .checkbox.checkbox-inline {
    margin-top: 0; }
  .reports-page .reports-sections .checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #416af0;
    border-color: #416af0; }
  .reports-page .reports-sections .checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .reports-page .reports-sections .checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f; }
  .reports-page .reports-sections .checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .reports-page .reports-sections .checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de; }
  .reports-page .reports-sections .checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .reports-page .reports-sections .checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e; }
  .reports-page .reports-sections .checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .reports-page .reports-sections .checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c; }
  .reports-page .reports-sections .checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff; }
  .reports-page .reports-sections hr {
    margin-left: -26px !important;
    margin-right: -26px !important;
    border-color: #e9ecee;
    border-width: 0.5px; }
  .reports-page .reports-sections p,
  .reports-page .reports-sections h1,
  .reports-page .reports-sections h2,
  .reports-page .reports-sections h3,
  .reports-page .reports-sections h4,
  .reports-page .reports-sections h5,
  .reports-page .reports-sections h6 {
    font-family: "Open Sans", sans-serif;
    color: #555555;
    line-height: 1.5; }
  .reports-page .reports-sections .row {
    margin-left: -41px;
    margin-right: -41px; }
  .reports-page .reports-sections .header-colored {
    background-color: #416af0;
    padding: 1rem 2.5rem; }
    .reports-page .reports-sections .header-colored h3 {
      color: #ffffff;
      font-size: 30px;
      line-height: 1.2;
      font-weight: 300;
      max-width: 1022px;
      margin: 0 auto; }
    .reports-page .reports-sections .header-colored i:before {
      color: #ffffff;
      font-size: 5.6em; }
  .reports-page .reports-sections .section-1 .header-img {
    width: 100%;
    height: 14rem;
    background-color: #416af0; }
  .reports-page .reports-sections .section-1 .content-wrap {
    padding: 2rem 4rem 2rem 4rem;
    border-left: solid 1px #e9ecee;
    border-right: solid 1px #e9ecee; }
    .reports-page .reports-sections .section-1 .content-wrap .intro-text {
      max-width: 500px; }
      .reports-page .reports-sections .section-1 .content-wrap .intro-text h3 {
        font-size: 24px; }
      .reports-page .reports-sections .section-1 .content-wrap .intro-text h4 {
        font-weight: 700;
        color: #555555;
        font-size: 18px; }
        .reports-page .reports-sections .section-1 .content-wrap .intro-text h4 .sub {
          font-weight: 400;
          text-transform: uppercase;
          font-size: 0.7em;
          letter-spacing: 0.1em;
          color: #B0B0B0; }
      .reports-page .reports-sections .section-1 .content-wrap .intro-text p {
        font-size: 16px;
        margin-bottom: 1rem;
        font-weight: 100; }
        .reports-page .reports-sections .section-1 .content-wrap .intro-text p.sub {
          color: #646464;
          font-size: 12px;
          line-height: 1.67; }
      .reports-page .reports-sections .section-1 .content-wrap .intro-text img {
        margin-top: 2rem;
        margin-bottom: 0.5rem;
        max-width: 200px; }
    .reports-page .reports-sections .section-1 .content-wrap .summary {
      width: 400px;
      float: right;
      padding: 1.6rem 2rem;
      background-color: #ffffff;
      margin-top: -128px; }
      .reports-page .reports-sections .section-1 .content-wrap .summary h3 {
        font-size: 36px;
        font-weight: 300;
        color: #646464;
        line-height: 1; }
      .reports-page .reports-sections .section-1 .content-wrap .summary h2 {
        font-family: "Josefin Slab", serif;
        letter-spacing: 2px;
        font-size: 50px;
        color: #646464;
        font-weight: 300;
        line-height: 1; }
      .reports-page .reports-sections .section-1 .content-wrap .summary h4 {
        color: #595959;
        font-weight: 300; }
      .reports-page .reports-sections .section-1 .content-wrap .summary h5 {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.2px;
        line-height: 1.33;
        color: #B8B8B8;
        margin-bottom: 2.4rem; }
      .reports-page .reports-sections .section-1 .content-wrap .summary img {
        width: 100% !important; }
  .reports-page .reports-sections .section-2 .overview-img {
    background-image: url("http://via.placeholder.com/1000x384");
    background-position: center center;
    background-color: #f9f9f9;
    background-size: cover;
    width: 100%;
    height: 384px; }
  .reports-page .reports-sections .section-2 img.streetview-img {
    border: 10px solid #ffffff;
    float: right;
    margin-top: -65px;
    margin-right: 50px;
    clear: both; }
  .reports-page .reports-sections ul.stats-blocks {
    display: table;
    background-color: #ffffff;
    width: 100%;
    margin-bottom: 0 !important; }
    .reports-page .reports-sections ul.stats-blocks li {
      display: table-cell;
      vertical-align: middle;
      width: 25%;
      margin: 0;
      padding: 0.2rem;
      height: 68px;
      border-right: #f9f9f9 2px solid;
      text-align: center; }
      .reports-page .reports-sections ul.stats-blocks li.report-date {
        text-align: left;
        padding-left: 2.5rem; }
      .reports-page .reports-sections ul.stats-blocks li .powered-by-logo {
        max-width: 150px; }
      .reports-page .reports-sections ul.stats-blocks li:last-of-type {
        border-right: none; }
      .reports-page .reports-sections ul.stats-blocks li .number {
        font-family: "Josefin Slab", serif;
        font-size: 30px;
        padding-top: 4px;
        letter-spacing: 2px;
        line-height: 1;
        font-weight: 500; }
      .reports-page .reports-sections ul.stats-blocks li .title {
        font-weight: 700;
        font-size: 12px;
        line-height: 2;
        letter-spacing: 1.2px;
        color: #B8B8B8; }
      .reports-page .reports-sections ul.stats-blocks li .credit {
        font-size: 12px;
        line-height: 2;
        color: #595959; }
    .reports-page .reports-sections ul.stats-blocks.no-border li {
      border-right: none; }
  .reports-page .reports-sections .section-3 i.fa-battery-empty {
    transform: rotate(-90deg);
    font-size: 7px; }
  .reports-page .reports-sections .section-3 .graph-wrap {
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 4rem; }
  .reports-page .reports-sections .section-3 ul.stats-blocks {
    margin-top: 0;
    margin-bottom: 0; }
  .reports-page .reports-sections .section-3 ul.stats-blocks li {
    text-align: left;
    padding-left: 2rem;
    margin-top: 4rem;
    height: auto; }
    .reports-page .reports-sections .section-3 ul.stats-blocks li div:first-of-type {
      padding-bottom: 0.6rem; }
  .reports-page .reports-sections .section-3 p {
    font-weight: 300;
    line-height: 1.5;
    color: #555555;
    font-size: 16px; }
  .reports-page .reports-sections .section-4 .report-stats {
    text-align: left;
    margin-top: 2rem; }
    .reports-page .reports-sections .section-4 .report-stats h1 {
      font-family: "Josefin Slab", Serif;
      font-weight: 300;
      letter-spacing: 3px;
      line-height: 1;
      font-size: 74px;
      color: #595959; }
    .reports-page .reports-sections .section-4 .report-stats p {
      font-weight: 600;
      font-size: 12px;
      line-height: 1;
      letter-spacing: 1.2px;
      color: #B8B8B8;
      text-transform: uppercase; }
  .reports-page .reports-sections .section-4 .c3-constrain {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    height: 300px; }
  .reports-page .reports-sections .section-4 .c3-fill-height {
    min-height: 410px; }
  .reports-page .reports-sections .section-4 .report-wrap table tr {
    border-bottom: none; }
  .reports-page .reports-sections .section-4 .report-wrap h3 {
    font-family: "Josefin Slab", Serif;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1;
    font-size: 50px;
    color: #595959;
    margin-top: 2.5rem; }
  .reports-page .reports-sections .section-5 .savings-time {
    width: auto;
    display: inline-block;
    margin: 0 auto; }
  .reports-page .reports-sections .section-5 .col-md-4 {
    padding-left: calc(4rem + 15px); }
  .reports-page .reports-sections .section-5 .col-md-4,
  .reports-page .reports-sections .section-5 .col-md-8 {
    margin-top: 2rem; }
  .reports-page .reports-sections .section-5 h4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #555555; }
  .reports-page .reports-sections .section-5 .col-md-6 h4 {
    margin-left: 5.4rem;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #555555;
    text-align: left; }
  .reports-page .reports-sections .section-5 h5 {
    font-family: "Josefin Slab", Serif;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1;
    font-size: 74px;
    color: #595959;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0.6rem; }
  .reports-page .reports-sections .section-5 .number {
    font-family: "Josefin Slab", Serif;
    font-size: 50px;
    letter-spacing: 2px;
    line-height: 1;
    font-weight: 300;
    width: 400px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 0.6rem;
    margin-top: 2.5rem; }
  .reports-page .reports-sections .section-5 p {
    font-weight: 600;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1.2px;
    color: #B8B8B8;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    max-width: 400px;
    margin: 0 auto; }
    .reports-page .reports-sections .section-5 p.sub {
      margin-bottom: 0.6rem; }
  .reports-page .reports-sections .section-5b {
    padding-bottom: 4rem;
    padding-top: 1rem; }
    .reports-page .reports-sections .section-5b h4 {
      font-size: 20px;
      font-weight: 300;
      line-height: 1.5;
      color: #555555; }
  .reports-page .reports-sections .section-6 h4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #555555; }
  .reports-page .reports-sections .section-6 ul.environment-blocks {
    margin-top: 0px;
    display: block;
    position: relative;
    min-height: 380px;
    margin-bottom: 1rem; }
    .reports-page .reports-sections .section-6 ul.environment-blocks li {
      display: inline-block;
      vertical-align: top;
      width: 24%;
      margin: 0;
      margin-top: 0rem;
      margin-bottom: 2rem;
      padding: 1rem;
      height: 120px; }
      .reports-page .reports-sections .section-6 ul.environment-blocks li i:before {
        font-size: 120px;
        color: #ffd700; }
      .reports-page .reports-sections .section-6 ul.environment-blocks li h3 {
        border-top: #416af0 1px solid;
        margin-top: 2rem;
        padding-top: 2rem;
        font-family: "Josefin Slab", serif;
        font-size: 50px;
        letter-spacing: 2px;
        line-height: 1;
        font-weight: 300;
        color: #595959; }
      .reports-page .reports-sections .section-6 ul.environment-blocks li p {
        font-weight: 600;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 1.2px;
        color: #B8B8B8;
        text-transform: uppercase; }
      .reports-page .reports-sections .section-6 ul.environment-blocks li:last-of-type {
        border-right: none; }
      .reports-page .reports-sections .section-6 ul.environment-blocks li .number {
        font-family: "Josefin Slab", serif;
        font-size: 50px;
        letter-spacing: 2px;
        line-height: 1;
        font-weight: 300; }
      .reports-page .reports-sections .section-6 ul.environment-blocks li .title {
        font-weight: 700;
        font-size: 12px;
        line-height: 2;
        letter-spacing: 1.2px;
        color: #B8B8B8; }
      .reports-page .reports-sections .section-6 ul.environment-blocks li .credit {
        font-size: 12px;
        line-height: 2;
        color: #595959; }
  .reports-page .reports-sections .section-7 {
    min-height: 767.5px; }
    .reports-page .reports-sections .section-7 hr {
      border: none;
      padding-top: 0rem; }
    .reports-page .reports-sections .section-7 table {
      width: 100%; }
      .reports-page .reports-sections .section-7 table tr td {
        padding: 0.5rem 0rem 0.5rem 0rem;
        font-weight: 600;
        font-size: 12px;
        line-height: 1;
        letter-spacing: 1.2px;
        color: #B8B8B8;
        text-transform: uppercase; }
        .reports-page .reports-sections .section-7 table tr td:nth-of-type(even) {
          text-align: right;
          font-family: "Open Sans", sans-serif;
          font-size: 16px;
          font-weight: 300;
          line-height: 1.5;
          color: #555555; }
  .reports-page .reports-sections .credit-wrap {
    margin: 1rem 3rem; }
    .reports-page .reports-sections .credit-wrap h4 {
      width: 49%;
      display: inline-block;
      vertical-align: top;
      font-weight: 300;
      color: #555555;
      font-size: 18px; }
      .reports-page .reports-sections .credit-wrap h4:nth-of-type(even) {
        text-align: right; }
      .reports-page .reports-sections .credit-wrap h4 .sub {
        font-weight: 400;
        text-transform: uppercase;
        font-size: 0.7em;
        letter-spacing: 0.1em;
        color: #B0B0B0; }
    .reports-page .reports-sections .credit-wrap p {
      font-size: 16px;
      margin-bottom: 1.5rem;
      font-weight: 100; }
      .reports-page .reports-sections .credit-wrap p.sub {
        color: #646464;
        font-size: 12px;
        line-height: 1.67; }
    .reports-page .reports-sections .credit-wrap img {
      margin-top: 2rem;
      margin-bottom: 0.5rem;
      max-width: 200px; }

.blue-rule {
  width: 100%;
  display: block;
  background-color: #708ff4;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 1.4rem; }

.blue-rule-sm {
  width: 9rem;
  display: block;
  background-color: #708ff4;
  height: 2px;
  margin-top: 1.5rem; }

.icon-solution {
  width: 104px;
  height: 64px;
  margin: 2rem auto;
  background: url("../images/buildReport/Solution_Icon_-_white@2x.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-solution {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Solution_Icon_-_white@3x.png");
      background-size: 104px 64px; } }

.icon-energy {
  width: 54px;
  height: 80px;
  margin: 2rem auto;
  background: url("../images/buildReport/Energy_Icon_-_white@2x.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-energy {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Energy_Icon_-_white@3x.png");
      background-size: 54px 80px; } }

.icon-savings {
  width: 88px;
  height: 80px;
  margin: 2rem auto;
  background: url("../images/buildReport/Savings_Icon_-_white@2x.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-savings {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Savings_Icon_-_white@3x.png");
      background-size: 88px 80px; } }

.icon-setup {
  width: 88px;
  height: 80px;
  margin: 2rem auto;
  background: url("../images/buildReport/Set_Up_Icon_-_White@2x.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-setup {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Set_Up_Icon_-_White@3x.png");
      background-size: 88px 80px; } }

.icon-earth {
  width: 64px;
  height: 80px;
  margin: 2rem auto;
  background: url("../images/buildReport/Environment_Icon_-_white@2x.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-earth {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildRepor/tEnvironment_Icon_-_white@3x.png");
      background-size: 64px 80px; } }

.icon-details {
  width: 104px;
  height: 64px;
  margin: 2rem auto;
  background: url("../images/buildReport/Solution_Icon_-_white@2x.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-details {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Solution_Icon_-_white@3x.png");
      background-size: 104px 64px; } }

.icon-tree {
  width: 88px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 3rem;
  background: url("../images/buildReport/Tree_Icon.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-tree {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Tree_Icon@2x.png");
      background-size: 88px 150px; } }

.icon-globe {
  width: 130px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 3rem;
  background: url("../images/buildReport/Gasoline_Icon.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-globe {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Gasoline_Icon@2x.png");
      background-size: 130px 150px; } }

.icon-car {
  width: 176px;
  height: 150px;
  margin: 0 auto;
  margin-bottom: 3rem;
  background: url("../images/buildReport/Miles_Icon.png") no-repeat !important; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    .icon-car {
      /* on retina, use image that's scaled by 2 */
      background-image: url("../images/buildReport/Miles_Icon@2x.png");
      background-size: 176px 150px; } }

.pvmega .dataTables_wrapper {
  padding-top: 0;
  padding-bottom: 0; }
  .pvmega .dataTables_wrapper .row {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0; }
  .pvmega .dataTables_wrapper table.dataTable.no-footer {
    padding: 0;
    border-bottom: none;
    margin: 0;
    margin-bottom: 1em; }
  .pvmega .dataTables_wrapper .table-condensed > thead > tr > th {
    font-size: 11px;
    vertical-align: middle;
    height: inherit; }
  .pvmega .dataTables_wrapper .nav-btn-primary, .pvmega .dataTables_wrapper .pagination > .active > a {
    background-color: #416af0;
    border-color: #416af0; }
    .pvmega .dataTables_wrapper .nav-btn-primary:hover, .pvmega .dataTables_wrapper .pagination > .active > a:hover {
      background-color: #708ff4;
      border-color: #708ff4; }
  .pvmega .dataTables_wrapper .pagination a {
    cursor: pointer; }

.results-page .info-condensed:nth-of-type(1) {
  margin-bottom: 20px; }

.results-page svg {
  margin-top: 10px; }

#resultChart.c3 svg {
  font: 11px "Open Sans", Arial, sans-serif !important; }

#resultChart.c3 path {
  stroke-width: 2px;
  stroke: #e9ecee; }

.c3-shape.c3-circle.active-selection {
  fill: #416af0 !important;
  r: 4; }

.c3-grid .c3-xgrid-line line {
  stroke: #416af0; }

@media (min-width: 992px) {
  html #graph-row.sticky .graph-wrap {
    position: fixed;
    background: #ffffff;
    top: 87px;
    z-index: 1000; }
  html #graph-row.sticky {
    height: 386px; }
  html #action-row.sticky .table-actions {
    position: fixed;
    background: #ffffff;
    top: 92px;
    z-index: 1000;
    max-width: 1118px;
    margin: auto; }
  html #action-row.sticky {
    margin-top: 69px; } }

@media (max-width: 1199px) and (min-width: 992px) {
  html #action-row.sticky .table-actions {
    width: 921px; } }

.chatAgentWrap h3 {
  font-weight: 500; }

.chatAgentWrap .close-x {
  font-weight: 700;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  cursor: pointer;
  float: right; }
  .chatAgentWrap .close-x:hover {
    opacity: .9; }

.chatAgentWrap #chat-textarea {
  resize: vertical; }

.chatAgentWrap .status-message {
  padding: 15px 0px;
  max-width: 300px;
  margin: auto; }

.chatAgentWrap #chatAgentButton {
  color: #fffeff;
  font-size: 2.2rem;
  line-height: 64px;
  text-align: center;
  font-weight: 700;
  font-family: "Open Sans", Arial, sans-serif;
  width: 66px;
  height: 66px;
  -webkit-border-radius: 33px;
  -moz-border-radius: 33px;
  -ms-border-radius: 33px;
  -o-border-radius: 33px;
  border-radius: 33px;
  display: block;
  position: absolute;
  background: #416af0;
  border: solid 1px #416af0;
  z-index: 11;
  cursor: pointer;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  right: 20px;
  bottom: 10px;
  z-index: 10; }
  .chatAgentWrap #chatAgentButton:hover {
    background: #708ff4;
    border: solid 1px #708ff4; }

.chatAgentWrap #chatAgentForm {
  position: absolute;
  display: block;
  top: 102px;
  right: 0px;
  width: 410px;
  height: calc(100vh - 102px);
  z-index: 999;
  padding: 15px;
  background: #ffffff;
  overflow-y: auto; }

body.right-side-bar .chatAgentWrap #chatAgentButton {
  right: 470px;
  bottom: 30px; }
  @media (max-width: 979px) {
    body.right-side-bar .chatAgentWrap #chatAgentButton {
      right: 60px; } }

body.right-side-bar.open-menu-left .chatAgentWrap #chatAgentButton {
  right: 210px; }
  @media (max-width: 979px) {
    body.right-side-bar.open-menu-left .chatAgentWrap #chatAgentButton {
      right: 60px; } }

@media (max-width: 979px) {
  body.right-side-bar.open-menu-right .chatAgentWrap #chatAgentButton {
    right: 320px; } }

.header.navbar .version-select {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  color: #282323;
  font-weight: 400;
  width: 100%;
  min-width: 146px;
  max-width: 300px;
  display: block;
  margin: 0 12px;
  border: 1px solid #e9ecee;
  border-radius: 2px;
  padding: 0 9px;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  transition: border .2s linear 0s;
  height: 35px;
  line-height: 33px; }
  .header.navbar .version-select::-ms-expand {
    display: none; }
  .header.navbar .version-select:active, .header.navbar .version-select:focus {
    -webkit-outline: none;
    -moz-outline: none;
    -ms-outline: none;
    -o-outline: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  .header.navbar .version-select option {
    background: #ffffff; }

.header.navbar .version-increment {
  padding: 4px !important;
  background-color: #ffffff;
  margin-left: 3px;
  margin-top: 2px; }
  .header.navbar .version-increment:hover, .header.navbar .version-increment:active, .header.navbar .version-increment:focus {
    background-color: #ffffff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  .header.navbar .version-increment img {
    width: 16px;
    height: 16px; }

.chat-window-wrapper .version-select, .tab-pane .version-select {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 13px;
  color: #282323;
  font-weight: 400;
  width: 100%;
  min-width: 100px;
  max-width: 300px;
  display: block;
  margin: 0 12px;
  border: 1px solid #e9ecee;
  border-radius: 2px;
  padding: 0 9px;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  transition: border .2s linear 0s;
  height: 35px;
  line-height: 33px;
  background: #ffffff; }
  .chat-window-wrapper .version-select::-ms-expand, .tab-pane .version-select::-ms-expand {
    display: none; }
  .chat-window-wrapper .version-select:active, .chat-window-wrapper .version-select:focus, .tab-pane .version-select:active, .tab-pane .version-select:focus {
    -webkit-outline: none;
    -moz-outline: none;
    -ms-outline: none;
    -o-outline: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  .chat-window-wrapper .version-select option, .tab-pane .version-select option {
    background: #ffffff; }

.chat-window-wrapper .version-increment, .tab-pane .version-increment {
  padding: 4px !important;
  background-color: #ffffff;
  width: 50px;
  height: 35px;
  border: 1px solid #e9ecee;
  vertical-align: top;
  margin-right: 3px; }
  .chat-window-wrapper .version-increment:hover, .chat-window-wrapper .version-increment:active, .chat-window-wrapper .version-increment:focus, .tab-pane .version-increment:hover, .tab-pane .version-increment:active, .tab-pane .version-increment:focus {
    background-color: #ffffff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  .chat-window-wrapper .version-increment img, .tab-pane .version-increment img {
    width: 16px;
    height: 16px; }

.tab-pane .version-select {
  margin-left: 0px; }

.version-group {
  display: none; }

@media (max-width: 979px) {
  .version-group {
    display: block; } }

.chat-window-wrapper .systemDesignVersion .advanced-select {
  margin-right: 3px; }

.pvsketch.right-side-bar .header-quick-nav.ng-scope .chevron {
  display: block; }

.header-quick-nav.ng-scope .chevron {
  display: none;
  color: #B0B0B0; }

.systemDesignVersion advanced-select {
  min-width: 160px;
  font-size: 12px; }

html .systemDesignVersion advanced-select[disabled] {
  min-width: 90px; }

advanced-select ul.advanced-select-list li {
  margin-bottom: 6px;
  margin-right: 6px;
  margin-left: 6px; }
  advanced-select ul.advanced-select-list li:last-child {
    margin-bottom: 0px; }

/*
input[type=checkbox]{
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  transform: scale(1.5);
  cursor: pointer;
  margin-left: 4px;
  //margin-top: 0.8rem;
}
*/
