﻿html {
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}
body {
  padding-bottom: 0;
  min-height: 100%;
  /*font-family: 'Open Sans', 'Segoe UI';
  font-size: 13px;*/
  font-family: 'Open Sans', 'Segoe UI',Arial, Helvetica;
  font-size: 11pt;
  color: #000000;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #eeeeee;
}

a{ text-decoration: underline !important; }


/*#region Colors*/

.red {
  color: #d73d32 !important;
}
.pink {
  color: #e75b8d !important;
}
.white {
  color: #fff !important;  
}
.magenta {
  color: #bc5679 !important;
}
.purple {
  color: #7e3794 !important;
}
.maroon {
  color: #981b48 !important;
}
.blue {
  color: #5db2ff !important;
}
.lightblue {
  color: #5db2ff !important;
}
.darkblue {
  color: #0072c6 !important;
}
.darkgreen {
    color: #479137 !important;
}
.darkpink {
  color: #cc324b !important;
}
.orange {
  color: #fb6e52 !important;
}
.bordered-magenta {
  border-color: #bc5679 !important;
}
.bordered-blue {
  border-color: #5db2ff !important;
}
.bordered-yellow {
  border-color: #ffce55 !important;
}
.bg-blue {
  background-color: #5db2ff !important;
}
.gray {
  color: #cccccc !important;
}
.darkgray {
  color: #999999 !important;
}

.green {
  color: #8cc474 !important;
}

.yellow {
  color: #ffce55 !important;
}

.darkorange {
  color: #ed4e2a !important;
}

/*#endregion Colors*/

/*Firefox Outline */
button:focus,
a:focus {
  outline: none;
}
button::-moz-focus-inner,
a::-moz-focus-inner {
  border: 0;
}

.image-circular {
  -webkit-border-radius: 50% !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 50% !important;
  -moz-background-clip: padding !important;
  border-radius: 50% !important;
  background-clip: padding-box !important;
}
hr {
  border-top: 1px solid #e5e5e5;
}

.dotted-underline {
    padding-bottom: 3px;
    border-bottom: 1px dotted #aaa;
}
.position-relative {
  position: relative;
}


/*#region Typography */
p {
  line-height: 22px;
}
a:focus,
a:active {
  text-decoration: none;
}
/*#endregion Typography */
/*#region Animations*/
@-webkit-keyframes borderPulse {
  15% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    opacity: 0;
  }
}
@-moz-keyframes borderPulse {
  15% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1.3);
    opacity: 0;
  }
}
@-o-keyframes borderPulse {
  15% {
    opacity: 1;
  }
  100% {
    -o-transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes borderPulse {
  15% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: .5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .5;
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: .5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .5;
  }
}
@-o-keyframes pulse {
  0% {
    opacity: .5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .5;
  }
}
@keyframes pulse {
  0% {
    opacity: .5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .5;
  }
}
@-webkit-keyframes explode {
  100% {
    opacity: 0;
    -webkit-transform: scale(3) rotate(30deg) translateY(60px);
  }
}
@-moz-keyframes explode {
  100% {
    opacity: 0;
    -moz-transform: scale(3) rotate(30deg) translateY(60px);
  }
}
@-o-keyframes explode {
  100% {
    opacity: 0;
    -o-transform: scale(3) rotate(30deg) translateY(60px);
  }
}
@keyframes explode {
  100% {
    opacity: 0;
    -webkit-transform: scale(3) rotate(30deg) translateY(60px);
    -moz-transform: scale(3) rotate(30deg) translateY(60px);
    -ms-transform: scale(3) rotate(30deg) translateY(60px);
    transform: scale(3) rotate(30deg) translateY(60px);
  }
}
@-webkit-keyframes wave {
  5% {
    opacity: .6;
  }
  27% {
    -webkit-transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes wave {
  5% {
    opacity: .6;
  }
  27% {
    -moz-transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes wave {
  5% {
    opacity: .6;
  }
  27% {
    -o-transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes wave {
  5% {
    opacity: .6;
  }
  27% {
    -webkit-transform: scale(1.8);
    -moz-transform: scale(1.8);
    -ms-transform: scale(1.8);
    transform: scale(1.8);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes dropdownSlideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes dropdownSlideInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes dropdownSlideInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes dropdownSlideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*#endregion Animations*/
/*--------Page Components--------*/
/*#region Navbar*/



.navbar {
    padding: 0;
  margin: 0;
  border: none;
  z-index: 200;
        -webkit-border-radius: 0;
        -webkit-background-clip: padding-box;
        -moz-border-radius: 0;
        -moz-background-clip: padding;
        border-radius: 0;
        background-clip: padding-box;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        position: relative;
        background-color: #FFFFFF;
        /*
        background: rgb(255,255,255);
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
        background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
        background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
        background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
        background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
        background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
        -pie-background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
*/
 /*ie 6-9 via PIE*/
        filter: none !important;
        box-shadow: 0 0 4px 1px #999;
        -o-box-shadow: 0 0 4px 1px #999;
        -moz-box-shadow: 0 0 4px 1px #999;
        -webkit-box-shadow: 0 0 4px 1px #999;
        behavior: url(../js/Pie/PIE.htc);
}
.navbar a {
    color: #FFFFFF !important;
    text-decoration: none !important;
}
.navbar a:hover {
    text-decoration: none;
}
.navbar-toggle .icon-bar {
background-color: #FFFFFF !important;
}
.navbar .navbar-brand
{
    padding: 5px 10px;
    height: 80px;
}
.navbar .navbar-brand img {
        width: auto;
        max-width: 240px; 
        height: auto;
        max-height: 70px;
    }
.navbar .navbar-center {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 600px;
}
.navbar-nav > li {
    float: left;
position: relative;
height: 70px;
padding-left: 10px;

text-align: center;
}

.navbar-nav > li > a {
    position: relative;
min-width: 50px;
display: inline-block;
}

.navbar-nav > li > a .icon {
    display: block;
font-size: 30px;
text-align: center;
-webkit-transition: line-height 0.3s ease;
-moz-transition: line-height 0.3s ease;
-o-transition: line-height 0.3s ease;
transition: line-height 0.3s ease;
}

.navbar-collapse.in {
    background-color: white;
}

.navbar-collapse.in .navbar-center {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.navbar-collapse.in .navbar-nav > li {
    float: none;
    width: 100%;
    height: auto;
    text-align: left;
    border: none;
    padding: 0;
}
.navbar-collapse.in .navbar-nav > li > a {
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.navbar-collapse.in .navbar-nav > li > a .icon {
    display: inline;
    margin-right: .5em;
    margin-bottom: 0;
    font-size: 14px;
}
.navbar-collapse.in .navbar-nav > li > a > span {
    display: inline;
}
.navbar-collapse.in .dropdown .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    background: transparent;
    border: none !important;
    box-shadow: none;
  }
  .navbar-collapse.in .dropdown .dropdown-menu a {
    color: #FFF;
    font-weight: 600;
  }
  .navbar-collapse.in .dropdown .dropdown-menu a:active,
  .navbar-collapse.in .dropdown .dropdown-menu a:focus {
    background: #555 !important;
    outline: none;
  }
  .navbar-collapse.in .dropdown .dropdown-menu::before,
  .navbar-collapse.in .dropdown .dropdown-menu::after {
    display: none;
  }
  .navbar-collapse.in .dropdown.open .caret {
    display: inline-block;
  }
  .navbar-collapse.in .dropdown-submenu > a:after {
    display: none;
  }
  .navbar-collapse.in .dropdown-submenu > a .right {
    display: none;
}
  .navbar-collapse.in .dropdown-submenu > .dropdown-menu {
    display: block;
  }
  .navbar-collapse.in .dropdown-submenu > .dropdown-menu > li > a {
    padding-right: 20px;
    padding-left: 60px;
  }

  .custom-menu-dropdown {
      padding: 0;
      width: 220px;
-webkit-animation-name: dropdownSlideInDown;
-moz-animation-name: dropdownSlideInDown;
-o-animation-name: dropdownSlideInDown;
animation-name: dropdownSlideInDown;
-webkit-animation-duration: 0.3s;
-moz-animation-duration: 0.3s;
-o-animation-duration: 0.3s;
animation-duration: 0.3s;
-webkit-border-radius: 0 !important;
-webkit-background-clip: padding-box !important;
-moz-border-radius: 0 !important;
-moz-background-clip: padding !important;
border-radius: 0 !important;
background-clip: padding-box !important;
  }

 .navbar-collapse .navbar-nav > li.open .custom-menu-dropdown {
margin-top: 15px;
right: 0;
border: 0 !important;
}
.custom-menu-dropdown li a {
margin: 0;
font-size: 13px;
line-height: 16px;
padding: 10px 2px;
    white-space: initial;
}
.custom-menu-dropdown li a .icon {
padding-right: 5px;
padding-left: 5px;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    min-width: 200px;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu > a .right {
    float: right;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

.navbar-nav .avatar-area {
    height: 80px;
    opacity: 1;
    cursor: pointer;
    text-align: center;
    padding-top: 0;
    padding-right: 0;
}
.navbar-nav .avatar-area .avatar {
    padding-top: 4px;
}
.navbar-nav .avatar-area .avatar img {
    /*width: 56px;*/
    height: 56px;
    border: solid 1px #ddd;
}
.navbar-nav .avatar-area .member-name {
    font-size: 11pt;
    text-decoration: none;
}

/*#endregion Navbar */
.main-container {
  position: static;
  padding: 0;
}
.main-container > .page-container {
  position: relative;
}
.main-container:after {
  background-color: #ffffff;
  bottom: 0;
  content: "";
  display: block;
  max-width: inherit;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -2;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/*#region Page Content*/
.page-content {
  display: block;
  margin-left: 24px;
  margin-right: 24px;
  margin-top: 0;
  min-height: 100%;
  padding: 0;
}
@media only screen and (max-width: 880px) {
  .page-content {
    margin-left: 2px;
  }
}
/*#endregion Page Content*/
/*#region Breadcrumbs*/
.page-breadcrumbs
{
    position: relative;
    background: #f3f3f3;
    min-height: 40px;
    line-height: 39px;
    padding: 0 0 0 10px;
    display: block;
    z-index: 1;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.no-borderradius .page-breadcrumbs {
  position: relative;
  background: #f3f3f3;
  min-height: 40px;
  line-height: 39px;
  padding: 0;
  display: block;
  z-index: 1;
  -webkit-box-shadow: 0 2px 4px 0 rgba(217,217,217,1);
  -moz-box-shadow: 0 2px 4px 0 rgba(217,217,217,1);
  box-shadow: 0 2px 4px 0 rgba(217,217,217,1);
  behavior: url(../js/Pie/PIE.htc);
}
.page-breadcrumbs.breadcrumbs-fixed {
  position: fixed;
  right: 0;
  left: 224px;
  top: 45px;
  z-index: 999;
}
.page-breadcrumbs.breadcrumbs-fixed + .page-header {
  margin-top: 40px;
}
.breadcrumb {
  background-color: transparent;
  display: inline-block;
  line-height: 24px;
  margin: 0 22px 0 12px;
  padding: 0;
  font-size: 13px;
  color: #333333;
  border-radius: 0;
}
.breadcrumb > li,
.breadcrumb > li.active {
  color: #777777;
  -webkit-text-shadow: none;
  text-shadow: none;
}
.breadcrumb > li + li:before {
  color: #999999;
}
.breadcrumb > li > .divider {
  padding: 0 4px;
}
.breadcrumb > li > a {
  display: inline-block;
  color: #0072C5;
}
.breadcrumb > li > a:hover {
    text-decoration: none !important;
}
.breadcrumb > li:first-child > a {
  padding-left: 4px;
}
.breadcrumb > li > i {
  margin-left: 4px;
  margin-right: 2px;
  font-size: 16px;
  position: relative;
  top: 2px;
}
.breadcrumb .expand-icon {
  height: 22px;
  padding: 0;
  margin: 0;
  position: relative;
  top: 1px;
  font-size: 14px;
  color: #b2b6bf;
}

.page-breadcrumbs .header-buttons {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
.page-breadcrumbs .header-buttons a {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  z-index: 1029;
  height: 40px;
  width: 36px;
  margin-right: 5px;
  padding: 8px 10px;
  color: #dfdfdf;
  -webkit-transition: all 0.218s ease;
  -moz-transition: all 0.218s ease;
  -o-transition: all 0.218s ease;
  transition: all 0.218s ease;
  float: right;
}
.page-breadcrumbs .header-buttons a:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  right: 0;
  height: 4px;
  max-height: 4px;
  overflow: hidden;
  background-color: #0072C5;
}
.page-breadcrumbs .header-buttons a:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  color: #0072C5;
}
.page-breadcrumbs .header-buttons a.active {
  color: #0072C5;
}
.page-breadcrumbs .header-buttons a i {
  font-size: 17px;
  font-style: normal;
  font-weight: normal;
  line-height: 27px;
}
.page-breadcrumbs .header-buttons a.fullscreen:before {
  background-color: #fb6e52;
}
.page-breadcrumbs .header-buttons a.fullscreen:hover,
.page-breadcrumbs .header-buttons a.fullscreen.active {
  color: #fb6e52;
}
.page-breadcrumbs .header-buttons a.refresh:before {
  background-color: #ffce55;
}
.page-breadcrumbs .header-buttons a.refresh:hover,
.page-breadcrumbs .header-buttons a.refresh.active {
  color: #ffce55;
}
.page-breadcrumbs .header-buttons a.sidebar-toggler:before {
  background-color: #0072C5;
}
.page-breadcrumbs .header-buttons a.sidebar-toggler:hover,
.page-breadcrumbs .header-buttons a.sidebar-toggler.active {
  color: #0072C5;
}
/*#endregion Breadcrumb*/

.page-body {
  background: #eeeeee;
  padding: 20px 20px 24px;
}
/*--------Elements--------*/
/*#region Widget*/
.widget {
  -webkit-box-shadow: 1px 1px 6px 1px #cccccc;
-moz-box-shadow: 1px 1px 6px 1px #cccccc;
box-shadow: 1px 1px 6px 1px #cccccc;
background: #ffffff;
border: 1px solid #cdcdcd;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
margin-bottom: 20px;
}
.widget.collapsed .widget-body {
  display: none;
}
.widget.collapsed.radius-bordered .widget-header {
  -webkit-border-radius: 3px 3px 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px 3px 3px 3px;
  -moz-background-clip: padding;
  border-radius: 3px 3px 3px 3px;
  background-clip: padding-box;
}
.widget.no-header .widget-header {
  display: none;
}
.widget.no-header.radius-bordered .widget-body {
  -webkit-border-radius: 3px 3px 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px 3px 3px 3px;
  -moz-background-clip: padding;
  border-radius: 3px 3px 3px 3px;
  background-clip: padding-box;
}
.widget.maximized {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  margin: 0;
  overflow: auto;
}
.widget.maximized .widget-body {
  padding: 12px 0;
}

.widget:hover .compact {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.widget:hover .compact i {
  color: #5DB2FF;
}
.widget-header {
  position: relative;
-moz-border-radius-topright: 3px;
-webkit-border-top-right-radius: 3px;
border-top-right-radius: 3px;
-moz-border-radius-topleft: 3px;
-webkit-border-top-left-radius: 3px;
border-top-left-radius: 3px;
background: #eaeaea;
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi…pZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #fdfdfd), color-stop(100%, #dddddd));
background-image: -webkit-linear-gradient(top, #fdfdfd, #dddddd);
background-image: -moz-linear-gradient(top, #fdfdfd, #dddddd);
background-image: -o-linear-gradient(top, #fdfdfd, #dddddd);
background-image: linear-gradient(top, #fdfdfd, #dddddd);
    background-image: -ms-linear-gradient(top, #fdfdfd, #dddddd);
border-bottom: 1px solid #CDCDCD;
color: #636363;
font-weight: 600;
text-align: right;
}
.widget .widget-header:before, .widget .widget-header:after {
    clear: both;
display: table;
content: "";
line-height: 0;
}
.widget-header .widget-icon {
  display: block;
  width: 30px;
  height: 32px;
  position: relative;
  float: left;
  font-size: 111%;
  line-height: 32px;
  text-align: center;
  margin-left: -10px;
}
.widget-header > .widget-caption {
  float: left;
display: block;
padding: 10px;
font-size: 13px;
font-weight: 600;
}
.widget-header > .widget-form-title {
    float: left;
display: block;
padding: 10px;
font-size: 16px;
font-weight: 600;
}
.widget-buttons {
  display: inline-block;
  padding: 0 5px;
  line-height: 34px;
  position: relative;
  text-align: left;
  height: 36px;
}
.widget-buttons.buttons-bordered {
  border-left: 1px solid #e5e5e5;
}

.widget-buttons > a {
  font-size: 14px;
  margin: 0 1px;
  display: inline-block;
  padding: 0;
  line-height: 24px;
  min-width: 20px;
  text-align: center;
}
.widget-buttons > a:hover {
  text-decoration: none;
}
.widget-buttons > a i {
  vertical-align: middle;
}
.widget-buttons > [data-toggle] > .fa {
  margin-right: 0;
}
.widget-buttons > [data-toggle]:hover {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.widget-buttons > [data-toggle]:focus {
  text-decoration: none;
}
.widget-buttons > [data-toggle="dispose"] {
  color: #777777;
  font-size: 14px;
}
.widget-buttons > [data-toggle="maximize"] {
  color: #777777;
  font-size: 14px;
}
.widget-buttons > [data-toggle="collapse"] {
  color: #777777;
  font-size: 14px;
}
.widget-buttons > [data-toggle="refresh"] {
  color: #777777;
  font-size: 14px;
}
.widget-buttons > [data-toggle="config"] {
  color: #777777;
  font-size: 14px;
}
.widget-body {
  padding: 12px;
}
.widget-body.no-padding .accordion {
  border: 0;
}
.widget-body.no-padding .dataTables_filter label {
  margin: 10px;
}
.widget-body.no-padding .dataTables_length {
  top: 10px;
  right: 10px;
}
.widget-body.no-padding .DTTT.btn-group {
  right: 80px;
  top: 10px;
}
.widget-body .accordion.panel-group {
  border-top-width: 1px !important;
}
.widget-body > table {
  margin-bottom: 0;
}
.widget-body hr.wide {
  margin-left: -12px;
  margin-right: -12px;
}
/*#endregion Widget*/

/*#region Alerts*/
.alert {
  margin-bottom: 20px;
  margin-top: 0;
  color: #ffffff;
  border-width: 0;
  border-left-width: 5px;
  padding: 10px;
  border-radius: 0;
}
.alert .close {
  top: 0;
  right: -5px;
  line-height: 16px;
  color: #444444;
}
.alert.radius-bordered {
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.alert.alert-shadowed {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.alert.alert-heading {
  font-weight: 600;
}
.alert.alert-danger {
  border-color: #df5138;
  background: #e46f61;
}
.alert.alert-warning {
  border-color: #ffce55;
  color: #555555;
  background: #fff1a8;
}
.alert.alert-success {
  border-color: #8cc474;
  background: #a0d468;
}
.alert.alert-info {
  border-color: #11a9cc;
  background: #57b5e3;
}
/*#endregion Alerts*/
/*#region Tabs*/
/*#region Tab Content*/
.tab-content {
  background-color: #fbfbfb;
  padding: 16px 12px;
  position: relative;
  -webkit-box-shadow: 1px 0 10px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 0 10px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 0 10px 1px rgba(0, 0, 0, 0.3);
}
.tab-content.no-padding {
  padding: 0;
}
.tab-content.no-border {
  border: 0;
  padding: 12px;
}
.tab-content.radius-bordered {
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.tab-content.tabs-flat {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-top: 1px solid #e5e5e5;
}
/*#endregion Tab Content*/
/*#region Tab*/
.nav-tabs {
  margin-bottom: 0;
  margin-left: 0;
  border: 0;
  top: 2px;
  background-color: #eeeeee;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.nav-tabs > li {
  margin-bottom: -2px;
}
.nav-tabs > li > a:hover {
  color: #262626;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs > li > a:active,
.nav-tabs > li > a:focus {
  outline: none !important;
}
.nav-tabs > li > a,
.nav-tabs > li > a:focus {
  border-radius: 0 !important;
  color: #777777;
  margin-right: -1px;
  line-height: 12px;
  position: relative;
  z-index: 11;
}
.nav-tabs > li > a > .badge {
  padding: 0 4px;
  line-height: 15px;
  opacity: .75;
  height: 16px;
  min-width: 16px;
}
.nav-tabs > li > a .fa,
.nav-tabs > li > a .glyphicon,
.nav-tabs > li > a .typcn,
.nav-tabs > li > a .wi {
  opacity: .75;
}
.nav-tabs > li:first-child > a {
  margin-left: 0;
  border-left: 1px solid #fbfbfb;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #262626;
  border: 0;
  border-top: 2px solid #0072C5;
  border-bottom-color: transparent;
  background-color: #fbfbfb;
  z-index: 12;
  /*line-height: 16px; GARY TEST*/
  /*margin-top: -2px;*/
  box-shadow: 0 -2px 3px 0 rgba(0, 0, 0, 0.15);
}
.nav-tabs > li.active > a > .badge,
.nav-tabs > li.active > a > [class*="fa-"] {
  opacity: 1;
}

.nav-tabs > li.active.tab-gray > a {
  border-color: #cccccc !important;
}
.nav-tabs > li.active.tab-gray > a > .fa,
.nav-tabs > li.active.tab-gray > a .glyphicon,
.nav-tabs > li.active.tab-gray > a .typcn,
.nav-tabs > li.active.tab-gray > a .wi {
  color: #cccccc;
}
.nav-tabs > li.active.tab-blue > a {
  border-color: #5db2ff !important;
}
.nav-tabs > li.active.tab-blue > a > .fa,
.nav-tabs > li.active.tab-blue > a .glyphicon,
.nav-tabs > li.active.tab-blue > a .typcn,
.nav-tabs > li.active.tab-blue > a .wi {
  color: #5db2ff;
}

.nav-tabs > li.active.tab-green > a {
  border-color: #8cc474 !important;
}
.nav-tabs > li.active.tab-green > a > .fa,
.nav-tabs > li.active.tab-green > a .glyphicon,
.nav-tabs > li.active.tab-green > a .typcn,
.nav-tabs > li.active.tab-green > a .wi {
  color: #8cc474;
}
.nav-tabs > li.active.tab-yellow > a {
  border-color: #ffce55 !important;
}
.nav-tabs > li.active.tab-yellow > a > .fa,
.nav-tabs > li.active.tab-yellow > a .glyphicon,
.nav-tabs > li.active.tab-yellow > a .typcn,
.nav-tabs > li.active.tab-yellow > a .wi {
  color: #ffce55;
}
.nav-tabs > li.active.tab-orange > a {
  border-color: #fb6e52 !important;
}
.nav-tabs > li.active.tab-orange > a > .fa,
.nav-tabs > li.active.tab-orange > a .glyphicon,
.nav-tabs > li.active.tab-orange > a .typcn,
.nav-tabs > li.active.tab-orange > a .wi {
  color: #fb6e52;
}
.nav-tabs > li.active.tab-red > a {
  border-color: #df5138 !important;
}
.nav-tabs > li.active.tab-red > a > .fa,
.nav-tabs > li.active.tab-red > a .glyphicon,
.nav-tabs > li.active.tab-red > a .typcn,
.nav-tabs > li.active.tab-red > a .wi {
  color: #df5138;
}
.nav-tabs > li.active.tab-pink > a {
  border-color: #e75b8d !important;
}
.nav-tabs > li.active.tab-pink > a > .fa,
.nav-tabs > li.active.tab-pink > a .glyphicon,
.nav-tabs > li.active.tab-pink > a .typcn,
.nav-tabs > li.active.tab-pink > a .wi {
  color: #e75b8d;
}
.nav-tabs > li.active.tab-magenta > a {
  border-color: #bc5679 !important;
}
.nav-tabs > li.active.tab-magenta > a > .fa,
.nav-tabs > li.active.tab-magenta > a .glyphicon,
.nav-tabs > li.active.tab-magenta > a .typcn,
.nav-tabs > li.active.tab-magenta > a .wi {
  color: #bc5679;
}

.nav-tabs li [class*=" fa-"],
.nav-tabs li [class^="fa-"] {
  width: 1.25em;
  display: inline-block;
  text-align: center;
}

/*#endregion Tab*/
/*#endregion Tabs*/
/*#region Buttons*/
.btn {
  cursor: pointer;
  vertical-align: middle;
  margin: 0;
  position: relative;
  display: inline-block;
  color: #ffffff;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  -o-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  font-size: 13px !important;
  text-shadow:none !important;
  font-weight:normal !important;
}
.btn-yes,
.btn-no {
    margin-right: 10px;
}
.btn:hover,
.btn:focus {
  color: #ffffff;
}

.btn.shiny {
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.btn.shiny:hover {
  zoom: 1;
  filter: alpha(opacity=90);
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}
.btn.shiny.active,
.btn.shiny:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.shiny.dropdown-toggle {
  border-left-width: 0 !important;
}
.btn.btn-circle {
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  width: 60px;
  height: 60px;
  text-align: center;
  padding: 11px 12px;
}
.btn.btn-circle > .fa,
.btn.btn-circle .typcn,
.btn.btn-circle .glyphicon,
.btn.btn-circle > [class*="wi-"] {
  font-size: 20px;
  margin: 0 auto;
  line-height: 34px;
}
.btn.btn-circle.btn-xs {
  width: 28px;
height: 28px;
text-align: center;
padding: 5px 0;
}
.btn.btn-circle.btn-xs > .fa,
.btn.btn-circle.btn-xs .typcn,
.btn.btn-circle.btn-xs .glyphicon,
.btn.btn-circle.btn-xs > [class*="wi-"] {
  font-size: 13px;
  line-height: 14px;
}
.btn.btn-circle.btn-sm {
  width: 50px;
  height: 50px;
  padding: 10px 15px;
}
.btn.btn-circle.btn-sm > .fa,
.btn.btn-circle.btn-sm .typcn,
.btn.btn-circle.btn-sm .glyphicon,
.btn.btn-circle.btn-sm > [class*="wi-"] {
  font-size: 18px;
  line-height: 26px;
  border-radius: 50%;
}
.btn.btn-circle.btn-lg {
  width: 70px;
  height: 70px;
  padding: 10px;
}
.btn.btn-circle.btn-lg > .fa,
.btn.btn-circle.btn-lg .typcn,
.btn.btn-circle.btn-lg .glyphicon,
.btn.btn-circle.btn-lg > [class*="wi-"] {
  font-size: 28px;
  line-height: 46px;
}

.btn.icon-only {
  width: 36px;
  height: 34px;
  padding: 5px 3px;
}
.btn.icon-only > .fa,
.btn.icon-only .typcn,
.btn.icon-only .glyphicon,
.btn.icon-only > [class*="wi-"] {
  margin: 0;
  vertical-align: middle;
  text-align: center;
  padding: 0;
  font-size: 22px;
  line-height: 22px;
}
.btn > .fa,
.btn .typcn,
.btn .glyphicon,
.btn > [class*="wi-"] {
  display: inline;
  margin-right: 4px;
  font-size: 14px;
}
.btn > .fa.right,
.btn .typcn.right,
.btn .glyphicon.right,
.btn > [class*="wi-"].right {
  margin-right: 0;
  margin-left: 4px;
}
/*#region Button Sizes*/
.btn-xs {
  font-size: 11px;
  padding: 2px 7px;
}
.btn-xs > .fa,
.btn-xs > .typcn,
.btn-xs > .glyphicon,
.btn-xs > [class*="wi-"] {
  font-size: 13px;
  margin-right: 2px;
}
.btn-xs > .fa.right,
.btn-xs > .typcn.right,
.btn-xs > .glyphicon.right,
.btn-xs > [class*="wi-"].right {
  margin-right: 0;
  margin-left: 2px;
}

.btn-sm {
  font-size: 13px;
  padding: 4px 9px;
  line-height: 1.39;
}
.btn-sm > .fa,
.btn-sm > .typcn,
.btn-sm > .glyphicon,
.btn-sm > [class*="wi-"] {
  font-size: 13px;
  margin-right: 3px;
}


/*#endregion Button Sizes*/
/*#region Default Button*/
.btn,
.btn-default,
.btn:focus,
.btn-default:focus {
  color: #000000;
  background-color: #84BE1C;
  border-color: #84BE1C;
  text-decoration:none !important;
}
.btn:hover,
.btn-default:hover {
  color: #444444;
}
.btn.shiny,
.btn-default.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(top, #ffffff 0, #ededed 100%);
  background-image: -moz-linear-gradient(top, #ffffff 0, #ededed 100%);
  background-image: -o-linear-gradient(top, #ffffff 0, #ededed 100%);
  background-image: linear-gradient(to bottom, #ffffff 0, #ededed 100%);
}
.btn.dropdown-toggle:not(:first-child),
.btn-default.dropdown-toggle:not(:first-child) {
  border-left-width: 0 !important;
  margin-left: -1px;
}
.btn-default:hover,
.open .btn-default.dropdown-toggle {
  border-color: #b8b8b8;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
.open .btn-default.dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/*#endregion Default Button*/
/*#region Primary Button*/
.btn-primary,
.btn-primary:focus {
  background-color: #84BE1C !important;
  border-color: #84BE1C;
  color: #ffffff !important;
}
.btn-primary:hover {
  color: #ffffff; 
}
.btn-primary.dropdown-toggle {
  border-left-color: #6a99ee !important;
}
.btn-primary.active {
  background-color: #84BE1C !important;
  border-color: #84BE1C;
}
.btn-primary.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iNSUiIHN0b3AtY29sb3I9IiMwMDk1ZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwNWVmZiIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(center top, #0095ff 5%, #005eff 100%);
  background-image: -moz-linear-gradient(center top, #0095ff 5%, #005eff 100%);
  background-image: -o-linear-gradient(center top, #0095ff 5%, #005eff 100%);
  background-image: linear-gradient(center to bottom, #0095ff 5%, #005eff 100%);
}
.btn-primary:hover,
.open .btn-primary.dropdown-toggle {
  background-color: #4285f4 !important;
  border-color: #427fed;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
  background-color: #427fed !important;
  border-color: #427fed;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion Primary Button*/

/*#region btn-PrimaryViewer*/

.btn-primaryViewer {
   background-color: #84BE1C !important;
  border-color: #84BE1C;
  color: #ffffff !important;
}
.btn-primaryViewer:focus,
.btn-primaryViewer.focus {
  color: #fff;
  background-color: #286090;
  border-color: #122b40;
}
.btn-primaryViewer:hover {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primaryViewer:active,
.btn-primaryViewer.active,
.open > .dropdown-toggle.btn-primaryViewer {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}
.btn-primaryViewer:active:hover,
.btn-primaryViewer.active:hover,
.open > .dropdown-toggle.btn-primaryViewer:hover,
.btn-primaryViewer:active:focus,
.btn-primaryViewer.active:focus,
.open > .dropdown-toggle.btn-primaryViewer:focus,
.btn-primaryViewer:active.focus,
.btn-primaryViewer.active.focus,
.open > .dropdown-toggle.btn-primaryViewer.focus {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.btn-primaryViewer:active,
.btn-primaryViewer.active,
.open > .dropdown-toggle.btn-primaryViewer {
  background-image: none;
}
.btn-primaryViewer.disabled:hover,
.btn-primaryViewer[disabled]:hover,
fieldset[disabled] .btn-primaryViewer:hover,
.btn-primaryViewer.disabled:focus,
.btn-primaryViewer[disabled]:focus,
fieldset[disabled] .btn-primaryViewer:focus,
.btn-primaryViewer.disabled.focus,
.btn-primaryViewer[disabled].focus,
fieldset[disabled] .btn-primaryViewer.focus {
  background-color: #337ab7;
  border-color: #2e6da4;
}
.btn-primaryViewer .badge {
  color: #337ab7;
  background-color: #fff;
}


/*#endregion btn-PrimaryViewer*/


/*#region btnViewer*/
.btnViewer {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btnViewer:focus,
.btnViewer:active:focus,
.btnViewer.active:focus,
.btnViewer.focus,
.btnViewer:active.focus,
.btnViewer.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btnViewer:hover,
.btnViewer:focus,
.btnViewer.focus {
  background-color: #4285f4 !important;
  color: White;
  text-decoration: none;
  
}
.btnViewer:active,
.btnViewer.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
          box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}
.btnViewer.disabled,
.btnViewer[disabled],
fieldset[disabled] .btnViewer {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}

/*#endregion btnViewer*/


/*#region Blue Button*/
.btn-blue,
.btn-blue:focus {
  background-color: #5db2ff !important;
  border-color: #5db2ff;
  color: #ffffff;
}
.btn-blue:hover {
  color: #ffffff;
}
.btn-blue.dropdown-toggle {
  border-left-color: #81c1fb !important;
}
.btn-blue.active {
  background-color: #449cec !important;
  border-color: #3d90db;
}
.btn-blue.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM3MGJhZmQiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzQ0OWNlYyIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#70bafd), to(#449cec));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#70bafd), to(#449cec));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#70bafd), to(#449cec));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#70bafd), to(#449cec));
}
.btn-blue:hover,
.open .btn-blue.dropdown-toggle {
  background-color: #70bafd !important;
  border-color: #70bafd;
  color: #fff;
}
.btn-blue.disabled,
.btn-blue[disabled],
fieldset[disabled] .btn-blue,
.btn-blue.disabled:hover,
.btn-blue[disabled]:hover,
fieldset[disabled] .btn-blue:hover,
.btn-blue.disabled:focus,
.btn-blue[disabled]:focus,
fieldset[disabled] .btn-blue:focus,
.btn-blue.disabled:active,
.btn-blue[disabled]:active,
fieldset[disabled] .btn-blue:active,
.btn-blue.disabled.active,
.btn-blue[disabled].active,
fieldset[disabled] .btn-blue.active {
  background-color: #5db2ff !important;
  border-color: #5db2ff;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion Blue Button*/

.btn.disabled.active,
.btn[disabled].active,
.btn.disabled:focus,
.btn[disabled]:focus,
.btn.disabled:active,
.btn[disabled]:active {
  outline: 0;
}
.btn.disabled:active,
.btn[disabled]:active {
  top: 0;
  left: 0;
}
.open .btn.dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
/*#region Group Button*/
.btn-group > .btn:not(:first-child):not(.dropdown-toggle) {
  border-left: 0;
}
.btn-group > .btn,
.btn-group > .btn + .btn {
  margin: 0;
}
.btn-group > .btn:first-child {
  margin: 0;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.btn-group > .btn:last-child {
  -webkit-border-radius: 0 2px 2px 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 2px 2px 0;
  -moz-background-clip: padding;
  border-radius: 0 2px 2px 0;
  background-clip: padding-box;
}

.btn-group > .btn,
.btn-group + .btn {
  margin: 0;
}
.btn-group > .btn.active:after,
.btn-group + .btn.active:after {
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-bottom-width: 1px;
}

/*#endregion Group Button*/

.button-area {
    padding: 15px 0px;
}
/*#endregion Buttons*/

/*#region labels and badges */
.label,
.badge {
  display: inline-block;
  font-weight: 300;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
}
.label {
  font-size: 13px;
  padding: 4px 6px 4px 6px;
  -webkit-border-radius: 2px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 2px !important;
  -moz-background-clip: padding !important;
  border-radius: 2px !important;
  background-clip: padding-box !important;
}
.label.label-sm {
  font-size: 13px;
  padding: 1px 4px 1px 4px;
}
.badge {
  font-size: 11px !important;
  font-weight: 300;
  text-align: center;
  background-color: #cccccc;
  height: 18px;
  padding: 3px 6px 3px 6px;
  -webkit-border-radius: 12px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 12px !important;
  -moz-background-clip: padding !important;
  border-radius: 12px !important;
  background-clip: padding-box !important;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
  vertical-align: middle;
}
.badge.badge-square {
  -webkit-border-radius: 2px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 2px !important;
  -moz-background-clip: padding !important;
  border-radius: 2px !important;
  background-clip: padding-box !important;
}
.badge.badge-empty {
  display: inline-block;
  width: 10px;
  height: 10px;
  padding: 0;
  vertical-align: baseline;
}
.badge-default {
background-color: #616161 !important;
}
.badge-traffic-lights.badge-green {
background-color: #D1DFCF !important;
}
.badge-traffic-lights.badge-red {
background-color: #ECDBD8 !important;
}
.badge-traffic-lights.badge-yellow {
background-color: #FFECBD !important;
}
.badge-traffic-lights.badge-green.active {
background-color: #53a93f !important;
}
.badge-traffic-lights.badge-red.active {
background-color: #df5138 !important;
}
.badge-traffic-lights.badge-yellow.active {
background-color: #FFB700 !important;
}
.label-gray {
  background-color: #cccccc !important;
    color: #000000;
}
.label-magenta {
  background-color: #bc5679 !important;
}
.badge-blue,
.label-blue {
  background-color: #5db2ff !important;
}

/*#endregion labels and badges */

/*#region PopOvers*/
.popover {
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  padding: 0;
  border-color: #ccc;
  border-width: 1px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #444444;
  background-color: #fbfbfb;
}
.popover .popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #f7f7f7;
  border-top-width: 0;
}
.popover.inverted {
  background-color: #262626;
  color: #f5f5f5;
}
.popover.inverted .popover-title {
  background-color: #262626;
  color: #f5f5f5;
}
.popover.inverted.top .arrow:after {
  border-top-color: #262626;
}
.popover.inverted.bottom .arrow:after {
  border-bottom-color: #262626;
}
.popover.inverted.left .arrow:after {
  border-left-color: #262626;
}
.popover.inverted.right .arrow:after {
  border-right-color: #262626;
}
.popover.dark {
  background-color: #e5e5e5;
}
.popover.dark .popover-title {
  background-color: #e5e5e5;
}
.popover.dark.top .arrow:after {
  border-top-color: #e5e5e5;
}
.popover.dark.bottom .arrow:after {
  border-bottom-color: #e5e5e5;
}
.popover.dark.left .arrow:after {
  border-left-color: #e5e5e5;
}
.popover.dark.right .arrow:after {
  border-right-color: #e5e5e5;
}
.popover-title {
  -webkit-border-radius: 3px 3px 0 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px 3px 0 0;
  -moz-background-clip: padding;
  border-radius: 3px 3px 0 0;
  background-clip: padding-box;
  color: #000000;
  border-bottom: 3px solid #5DB2FF;
}
.popover-notitle + .popover .popover-title {
  display: none;
}
.popover-notitle + .popover.top .arrow:after {
  border-top-color: #ffffff;
}
.popover-notitle + .popover.bottom .arrow:after {
  border-bottom-color: #ffffff;
}
.popover-notitle + .popover.left .arrow:after {
  border-left-color: #ffffff;
}
.popover-notitle + .popover.right .arrow:after {
  border-left-color: #ffffff;
}
/*#endregion Popovers*/
/*#region ToolTips*/
.tooltips{}
.tooltip.in {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #262626;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #262626;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #262626;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #262626;
}
.tooltip-lg + .tooltip > .tooltip-inner {
  font-size: 15px !important;
}
.tooltip-inner {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px rgba(229, 229, 229, 0.5);
  -moz-box-shadow: 1px 1px rgba(229, 229, 229, 0.5);
  box-shadow: 1px 1px rgba(229, 229, 229, 0.5);
  -webkit-transition: visibility 0, opacity 0.13s ease-in;
  -moz-transition: visibility 0, opacity 0.13s ease-in;
  -o-transition: visibility 0, opacity 0.13s ease-in;
  transition: visibility 0, opacity 0.13s ease-in;
  background-color: #262626;
  border: 1px solid #262626;
  color: #aaa;
  padding: 8px 8px;
  font-size: 13px;
}

.tooltip-blue + .tooltip > .tooltip-inner {
  border: 1px solid #5db2ff;
  background-color: #5db2ff;
  color: #fff;
}
.tooltip-blue + .tooltip.top .tooltip-arrow {
  border-top-color: #5db2ff;
}
.tooltip-blue + .tooltip.right .tooltip-arrow {
  border-right-color: #5db2ff;
}
.tooltip-blue + .tooltip.left .tooltip-arrow {
  border-left-color: #5db2ff;
}
.tooltip-blue + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #5db2ff;
}

.tooltip-green + .tooltip > .tooltip-inner {
  border: 1px solid #8cc474;
  background-color: #8cc474;
  color: #fff;
}
.tooltip-green + .tooltip.top .tooltip-arrow {
  border-top-color: #8cc474;
}
.tooltip-green + .tooltip.right .tooltip-arrow {
  border-right-color: #8cc474;
}
.tooltip-green + .tooltip.left .tooltip-arrow {
  border-left-color: #8cc474;
}
.tooltip-green + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #8cc474;
}
.tooltip-red + .tooltip > .tooltip-inner {
  border: 1px solid #df5138;
  background-color: #df5138;
  color: #fff;
}
.tooltip-red + .tooltip.top .tooltip-arrow {
  border-top-color: #df5138;
}
.tooltip-red + .tooltip.right .tooltip-arrow {
  border-right-color: #df5138;
}
.tooltip-red + .tooltip.left .tooltip-arrow {
  border-left-color: #df5138;
}
.tooltip-red + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #df5138;
}
.tooltip-yellow + .tooltip > .tooltip-inner {
  border: 1px solid #ffce55;
  background-color: #ffce55;
  color: #fff;
}
.tooltip-yellow + .tooltip.top .tooltip-arrow {
  border-top-color: #ffce55;
}
.tooltip-yellow + .tooltip.right .tooltip-arrow {
  border-right-color: #ffce55;
}
.tooltip-yellow + .tooltip.left .tooltip-arrow {
  border-left-color: #ffce55;
}
.tooltip-yellow + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #ffce55;
}
.tooltip-lightgray + .tooltip > .tooltip-inner {
  border: 1px solid #d0d0d0;
  background-color: #d0d0d0;
  color: #262626;
}
.tooltip-lightgray + .tooltip.top .tooltip-arrow {
  border-top-color: #d0d0d0;
}
.tooltip-lightgray + .tooltip.right .tooltip-arrow {
  border-right-color: #d0d0d0;
}
.tooltip-lightgray + .tooltip.left .tooltip-arrow {
  border-left-color: #d0d0d0;
}
.tooltip-lightgray + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #d0d0d0;
}

/*#endregion ToolTips*/
/*#region Notifications*/
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #ffffff;
}
.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.5em;
  float: right;
  font-size: 18px;
  font-family: 'FontAwesome';
  font-weight: bold;
  color: #ffffff;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  zoom: 1;
  filter: alpha(opacity=40);
  -webkit-opacity: 0.4;
  -moz-opacity: 0.4;
  opacity: 0.4;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  /*overrides*/
}
#toast-container > div {
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  background-position: 15px center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 0 12px #999999;
  -moz-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #ffffff;
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
#toast-container > :hover {
  -webkit-box-shadow: 0 0 12px #000000;
  -moz-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  cursor: pointer;
}
#toast-container > .toast {
  background-image: none !important;
}
#toast-container > .toast:before {
  position: fixed;
  font-family: FontAwesome;
  font-size: 24px;
  line-height: 18px;
  float: left;
  color: #FFF;
  padding-right: 0.5em;
  margin: auto 0.5em auto -1.5em;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin: auto;
}
.toast {
  background-color: #030303;
}
.toast-danger {
  background-color: #d73d32 !important;
}
.toast-success {
  background-color: #53a93f !important;
}
.toast-blue {
  background-color: #5db2ff !important;
}
.toast-info {
  background-color: #57b5e3 !important;
}
.toast-palegreen {
  background-color: #a0d468 !important;
}
.toast-green {
  background-color: #8cc474 !important;
}
.toast-warning {
  background-color: #f4b400 !important;
}

/*Responsive Design*/
@media all and (max-width: 239px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 240px) and (max-width: 479px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 480px) and (max-width: 830px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
/*#endregion Notifications*/

/*#region DropDown*/
.dropdown-menu {
  border: 1px solid #ccc !important;
  -webkit-border-radius: 2px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 2px !important;
  -moz-background-clip: padding !important;
  border-radius: 2px !important;
  background-clip: padding-box !important;
  -webkit-box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.218s;
  -moz-transition: opacity 0.218s;
  -o-transition: opacity 0.218s;
  transition: opacity 0.218s;
  margin: 1px 0 0;
  min-width: 200px;
}
.dropdown-menu .dropdown-icon {
  display: inline-block;
  font-size: 13px;
  margin-right: 5px;
}
.dropdown-menu > li > a {
  font-size: 13px;
  padding-left: 11px;
  padding-right: 11px;
  margin-bottom: 1px;
  margin-top: 1px;
}
.dropdown-menu > li > a .dropdown-expand {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 13px;
}
.dropdown-menu > li > a .badge,
.dropdown-menu > li > a .label {
  font-size: 10px !important;
}
.dropdown-menu > li > a .label {
  padding: 3px 6px 5px 6px;
}
.dropdown-menu > .dropdown-menu {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.dropdown-menu > .dropdown-menu > a:after {
  margin-right: -5px;
}
.dropdown-menu .divider {
  background-color: #ebebeb;
  margin-bottom: -1px;
}
.dropdown-menu.pull-right {
  left: auto;
  right: 0;
}
.dropdown-menu.dropdown-arrow.pull-right:before {
  left: auto;
  right: 9px;
}
.dropdown-menu.dropdown-arrow:before {
  border-bottom: 7px solid #ffffff;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  content: '';
  display: inline-block;
  left: 9px;
  position: absolute;
  top: -7px;
}
.dropdown-menu li a:hover,
.dropdown-menu li a:focus,
.dropdown-menu li a:active,
.dropdown-menu li.active a,
.dropdown-menu li.active a:hover,
.dropdown-menu .dropdown-submenu:hover > a,
.nav-tabs .dropdown-menu li > a:focus {
  background: #ebebeb;
  color: #262626;
}

.dropdown-hover {
  position: relative;
}
.dropdown-hover:hover > .dropdown-menu {
  display: block;
  left: 100%;
  top: -2px;
}
.dropdown-hover.dropup:hover > .dropdown-menu {
  bottom: 0;
  top: auto;
}
/*#endregion DropDown*/
/*#region Pagination*/
.pagination,
.pager li > a {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.pagination,
.pager {
  margin: 0;
}
.pagination > li > a,
.pager > li > a {
  color: #444444;
  background-color: #ffffff;
  margin: 0 -1px 0 0;
  border-color: #cccccc;
}
.pagination > li > a:hover,
.pager > li > a:hover {
  background-color: #ebebeb;
  border-color: #b8b8b8;
}
.pagination > li > a:focus,
.pager > li > a:focus,
.pagination > li > a:focus,
.pager > li > a:focus {
  background-color: #ebebeb;
  border-color: #b8b8b8;
}
.pagination > li.disabled > a,
.pager > li.disabled > a,
.pagination > li.disabled > a:hover,
.pager > li.disabled > a:hover {
  background-color: #f9f9f9;
  border-color: #d9d9d9;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  -webkit-border-radius: 0 2px 2px 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 2px 2px 0;
  -moz-background-clip: padding;
  border-radius: 0 2px 2px 0;
  background-clip: padding-box;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  -webkit-border-radius: 2px 0 0 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px 0 0 2px;
  -moz-background-clip: padding;
  border-radius: 2px 0 0 2px;
  background-clip: padding-box;
}
.pagination > li > a,
.pager > li > a,
.pagination > li > span,
.pager > li > span {
  border-width: 1px;
}
.pagination > li.active > a,
.pagination > li.active > a:hover {
  background-color: #0072C5;
  border-color: #0072C5;
  color: #ffffff;
  -webkit-text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 7px 16px;
  font-size: 16px;
}
/*#endregion Pagination*/
/*#region Tables*/

.table {
    width: 100% !important;
  background-color: #ffffff;
  margin-bottom: 0;
}
.table tfoot > tr > th {
  font-weight: 300;
}
.table thead {
  /*#region Colored Header*/
  /*#endregion Colored Header*/
  /*#region Bordered Header*/
  /*#endregion Bordered Header*/
}
.table > tbody > tr:nth-child(odd) > td {
background-color: #fff;
}
.table > tbody > tr:nth-child(even) > td {
background-color: #f9f9f9;
}
.DTTTFooter {
background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0d…0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
background-image: -webkit-linear-gradient(top, #f2f2f2 0, #eeeeee 100%);
background-image: -moz-linear-gradient(top, #f2f2f2 0, #eeeeee 100%);
background-image: linear-gradient(to bottom, #f2f2f2 0, #eeeeee 100%);
}
.table thead > tr > th {
  border-bottom: 0;
  font-size: 13px;
  font-weight: 600;
}
.white-table > tbody > tr > td {
    background-color: #fff !important;
}
.table-with-img > tbody > tr > td {
    vertical-align: middle !important;
}
.comments-table {
    margin-top: 10px;
    margin-bottom: 10px;
}
.comments-table td {
    border: 1px dotted #ddd !important;
    background-color: #fff !important;
}
.table-noPadding td {
    padding: 0;
    border: none;
}
.table .name-column {
    width: 150px;
}
.table .date-column {
    width: 130px;
}
.table .date-time-column {
    width: 165px;
}
.table .incomplete-column {
    font-style: italic;
    color: #888;
}

.two-actions {
    width: 90px; /*85 does not work in IE8*/
}
.profile-image-grid {
    width: 40px;
height: 40px;
margin: -5px 10px -5px 0px;
-webkit-border-radius: 50%;
-webkit-background-clip: padding-box;
-moz-border-radius: 50%;
-moz-background-clip: padding;
border-radius: 50%;
background-clip: padding-box;

}
.table thead[class*="colored-"] > tr > th {
  color: #ffffff;
  font-weight: 400;
}
.table thead.colored-blue > tr > th {
  background-color: #5db2ff;
}
.table thead.colored-primary > tr > th {
  background-color: #4374e0;
}
.table thead.bordered-blue > tr > th {
  border-bottom: 3px solid #5db2ff;
}
.table thead.bordered-primary > tr > th {
  border-bottom: 3px solid #4374e0;
}

.table-noborder > tbody > tr > td  {
    padding: 6px;
}

.table-bordered thead > tr {
  background-color: #eee;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmMmYyZjIiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZhZmFmYSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(top, #f2f2f2 0, #eaeaea 100%);
  background-image: -moz-linear-gradient(top, #f2f2f2 0, #eaeaea 100%);
  background-image: -o-linear-gradient(top, #f2f2f2 0, #eaeaea 100%);
  background-image: linear-gradient(to bottom, #f2f2f2 0, #eaeaea 100%);
}
.table > thead > tr > .active,
.table > tbody > tr > .active,
.table > tfoot > tr > .active,
.table > thead > .active > td,
.table > tbody > .active > td,
.table > tfoot > .active > td,
.table > thead > .active > th,
.table > tbody > .active > th,
.table > tfoot > .active > th,
.table-striped > tbody > tr.active:nth-child(odd) > td,
.table-striped > tbody > tr > .active:nth-child(odd) > th {
  background-color: #f1f1f1;
  color: #222;
}
.table-hover > tbody > tr > .active:hover,
.table-hover > tbody > .active:hover > td,
.table-hover > tbody > .active:hover > th,
.table-striped > tbody > tr.active:hover:nth-child(odd) > td,
.table-striped > tbody > tr > .active:hover:nth-child(odd) > th {
  background-color: #e5e5e5 !important;
}


/*#endregion Tables*/

/*#region Wizards*/
.wizard {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.wizard.wizard-wired {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: block;
  background: #ffffff;
  text-align: center;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-bottom: 1px solid #eeeeee;
}
.wizard.wizard-wired ul {
  display: table;
  width: 100%;
  position: relative;
}
.wizard.wizard-wired ul li {
  display: table-cell;
  text-align: center;
  background-color: #ffffff;
  width: 25%;
  padding: 0;
  margin: 0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.wizard.wizard-wired ul li .chevron {
  display: none;
}
.wizard.wizard-wired ul li .chevron:before {
  display: none;
}
.wizard.wizard-wired ul li.complete {
  background-color: #ffffff;
}
.wizard.wizard-wired ul li.complete .step:before {
  font-size: 22px;
  line-height: 36px;
}
.wizard.wizard-wired ul li.complete:hover {
  background-color: #ffffff;
}
.wizard.wizard-wired ul li.active {
  background-color: #ffffff;
}
.wizard.wizard-wired ul li .step {
  border-width: 2px;
  width: 40px;
  height: 40px;
  line-height: 34px;
  font-size: 15px;
  z-index: 2;
  background-color: #ffffff;
}
.wizard.wizard-wired ul li .title {
  display: block;
  margin-top: 4px;
  margin-bottom: 6px;
  max-width: 100%;
  font-size: 14px;
  line-height: 20px;
  z-index: 104;
  text-align: center;
  table-layout: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.wizard.wizard-wired ul li:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px !important;
  font-size: 0;
  overflow: hidden;
  background-color: #e5e5e5;
  position: relative !important;
  top: 25px;
  z-index: 1 !important;
}
.wizard.wizard-wired ul li:first-child:before {
  max-width: 51%;
  left: 50%;
}
.wizard.wizard-wired ul li:last-child:before {
  max-width: 50%;
  width: 50%;
}
.wizard ul {
  list-style: none outside none;
  padding: 0;
  margin: 0;
  width: 4000px;
}
.wizard ul.previous-disabled li.complete {
  cursor: default;
}
.wizard ul.previous-disabled li.complete:hover {
  background: #f3f3f3;
  cursor: default;
}
.wizard ul.previous-disabled li.complete:hover .chevron:before {
  border-left-color: #f3f3f3;
}
.wizard ul li {
  float: left;
  margin: 0;
  padding: 0 20px 0 30px;
  line-height: 46px;
  position: relative;
  background: #f5f5f5;
  color: #d0d0d0;
  font-size: 16px;
  cursor: default;
  -webkit-transition: all 0.218s ease;
  -moz-transition: all 0.218s ease;
  -o-transition: all 0.218s ease;
  transition: all 0.218s ease;
}
.wizard ul li .step {
  border: 2px solid #e5e5e5;
  color: #cccccc;
  font-size: 13px;
  border-radius: 100%;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 20px;
  text-align: center;
  margin-right: 10px;
}
.wizard ul li a:hover {
  text-decoration: none !important;
}
.wizard ul li .chevron {
  border: 24px solid transparent;
  border-left: 14px solid #d4d4d4;
  border-right: 0;
  display: block;
  position: absolute;
  right: -14px;
  top: 0;
  z-index: 1;
}
.wizard ul li .chevron:before {
  border: 24px solid transparent;
  border-left: 14px solid #f5f5f5;
  border-right: 0;
  content: "";
  display: block;
  position: absolute;
  right: 1px;
  top: -24px;
  -webkit-transition: all 0.218s ease;
  -moz-transition: all 0.218s ease;
  -o-transition: all 0.218s ease;
  transition: all 0.218s ease;
}
.wizard ul li.complete {
  background: #f5f5f5;
  color: #444444;
}
.wizard ul li.complete:before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1px;
  height: 2px;
  max-height: 2px;
  overflow: hidden;
  background-color: #a0d468;
  z-index: 10000;
}
.wizard ul li.complete:hover {
  background: #eeeeee;
  cursor: pointer;
}

.wizard ul li.complete:hover .chevron:before {
  border-left: 14px solid #eeeeee;
}
.wizard ul li.complete .chevron:before {
  border-left: 14px solid #f5f5f5;
}
.wizard ul li.complete .step {
  color: #a0d468;
  border-color: #a0d468;
}
.wizard ul li.complete .step:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  line-height: 20px;
  text-align: center;
  border-radius: 100%;
  content: "\f00c";
  background-color: #ffffff;
  z-index: 3;
  font-family: FontAwesome;
  font-size: 13px;
  color: #a0d468;
}
.wizard ul li.active {
  background: #ffffff;
  color: #262626;
}
.wizard ul li.active .step {
  border-color: #5DB2FF;
  color: #5DB2FF;
}
.wizard ul li.active:before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: -1px;
  height: 2px;
  max-height: 2px;
  overflow: hidden;
  background-color: #5DB2FF;
  z-index: 10000;
}
.wizard ul li.active .chevron:before {
  border-left: 14px solid #ffffff;
}
.wizard ul li .badge {
  margin-right: 8px;
}
.wizard ul li:first-child {
  -webkit-border-radius: 2px 0 0 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px 0 0 0;
  -moz-background-clip: padding;
  border-radius: 2px 0 0 0;
  background-clip: padding-box;
  padding-left: 20px;
}
/*#endregion Wizards*/
/*--------Forms--------*/
.form-bordered .form-group {
  border-top: 1px solid #e5e5e5;
  padding-top: 15px;
  margin-left: -12px;
  margin-right: -12px;
}
.form-bordered .form-group:first-child {
  border-top: 0;
  padding-top: 0;
}
.form-bordered .form-group:last-child {
  margin-bottom: 0;
}
.form-title {
  display: block;
  padding: 8px 0;
  border-bottom: 2px solid #5DB2FF;
  font-size: 15px;
  color: #262626;
  margin-bottom: 15px;
}
/*#region Form Label*/
label {
  /*font-weight: normal;
  font-size: 13px;*/
  vertical-align: middle;
}
label.required:after 
{
    content: "* ";
    font-family: 'Glyphicons Halflings';
    font-weight: normal;
    font-size: 8px;
    color: red;
    padding-left: 3px;
}
/*#endregion Form Label*/
/*#region Form Text 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"] {
  -webkit-border-radius: 0 !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 0 !important;
  -moz-background-clip: padding !important;
  border-radius: 0 !important;
  background-clip: padding-box !important;
  color: black;
  background-color: #fbfbfb;
  border: 1px solid #d5d5d5;
  font-family: inherit;
  -webkit-transition: -webkit-box-shadow 0.45s, border-color 0.45s ease-in-out;
  -moz-transition: -moz-box-shadow 0.45s, border-color 0.45s ease-in-out;
  -o-transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
  transition: box-shadow 0.45s, border-color 0.45s ease-in-out;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-left: 5px;
}
textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover {
  border-color: #9dd1fa;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  border-color: #66afe9 !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.form-control, select
{
    font-size: 13px;
    color: #000000;
    background-color: #fbfbfb;
    border: 1px solid #d5d5d5;
    padding: 2px 6px;
}
.form-control:focus,
select:focus {
  color: #262626;
  background-color: #ffffff;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.25);
}
textarea.form-control {
  padding: 5px 9px;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  -o-transition: height 0.2s;
  transition: height 0.2s;
}
.form-group .plain-text {
    padding-top: 7px;
}
.input-xs {
  height: 24px;
  padding: 2px 10px;
  font-size: 11px;
  line-height: 1.5;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.5;
}
.input-lg {
  font-weight: 300;
  font-size: 18px;
  height: 46px;
  padding: 10px 16px;
  line-height: 1.33;
}
.input-xl {
  height: 52px;
  padding: 12px 18px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #fbfbfb;
  border-color: #e5e5e5;
}
.form-control[disabled]:hover,
.form-control[readonly]:hover,
fieldset[disabled] .form-control:hover {
  border-color: #eeeeee;
  background-color: #ffffff;
}
.form-group.has-success input,
.input-group.has-success input,
.form-group.has-success select,
.input-group.has-success select,
.form-group.has-success textarea,
.input-group.has-success textarea {
    border-color: #d5d5d5 !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.form-group.has-success input:focus,
.input-group.has-success input:focus,
.form-group.has-success select:focus,
.input-group.has-success select:focus,
.form-group.has-success textarea:focus,
.input-group.has-success textarea:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: black;
}
.form-group.has-success .form-control-feedback:before,
.input-group.has-success .form-control-feedback:before {
  color: #8cc474 !important;
  color: inherit;
}
.form-group.has-success .control-label,
.input-group.has-success .control-label,
.form-group.has-success .help-block,
.input-group.has-success .help-block,
.form-group.has-success .help-inline,
.input-group.has-success .help-inline {
  color: #444444;
}
.form-group.has-error input,
.input-group.has-error input,
.form-group.has-error .select,
.input-group.has-error .select,
.form-group.has-error textarea,
.input-group.has-error textarea {
  border-color: #E7BEBE;
  color: #e46f61;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: snow;
}
.form-group.has-error input:focus,
.input-group.has-error input:focus,
.form-group.has-error .select:focus,
.input-group.has-error .select:focus,
.form-group.has-error textarea:focus,
.input-group.has-error textarea:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #d73d32;
  border-color: #e46f61;
}
.form-group.has-error .form-control-feedback:before,
.input-group.has-error .form-control-feedback:before {
  color: #e46f61 !important;
  color: inherit;
}
.form-group.has-error .control-label,
.input-group.has-error .control-label,
.form-group.has-error .help-block,
.input-group.has-error .help-block,
.form-group.has-error .help-inline,
.input-group.has-error .help-inline {
  color: #e46f61;
}
.form-group.has-warning input,
.input-group.has-warning input,
.form-group.has-warning .select,
.input-group.has-warning .select,
.form-group.has-warning textarea,
.input-group.has-warning textarea {
  border-color: #fecf49;
  color: #f4b400;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #fefbf1;
}
.form-group.has-warning input:focus,
.input-group.has-warning input:focus,
.form-group.has-warning .select:focus,
.input-group.has-warning .select:focus,
.form-group.has-warning textarea:focus,
.input-group.has-warning textarea:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #f4b400;
  border-color: #f4b400;
}
.form-group.has-warning .form-control-feedback:before,
.input-group.has-warning .form-control-feedback:before {
  color: #f4b400 !important;
  color: inherit;
}
.form-group.has-warning .control-label,
.input-group.has-warning .control-label,
.form-group.has-warning .help-block,
.input-group.has-warning .help-block,
.form-group.has-warning .help-inline,
.input-group.has-warning .help-inline {
  color: #f4b400;
}
.form-group.has-info input,
.input-group.has-info input,
.form-group.has-info .select,
.input-group.has-info .select,
.form-group.has-info textarea,
.input-group.has-info textarea {
  border-color: #a4d3fe;
  color: #57b5e3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #f9fcff;
}
.form-group.has-info input:focus,
.input-group.has-info input:focus,
.form-group.has-info .select:focus,
.input-group.has-info .select:focus,
.form-group.has-info textarea:focus,
.input-group.has-info textarea:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #57b5e3;
  border-color: #57b5e3;
}
.form-group.has-info .form-control-feedback:before,
.input-group.has-info .form-control-feedback:before {
  color: #57b5e3 !important;
  color: inherit;
}
.form-group.has-info .control-label,
.input-group.has-info .control-label,
.form-group.has-info .help-block,
.input-group.has-info .help-block,
.form-group.has-info .help-inline,
.input-group.has-info .help-inline {
  color: #57b5e3;
}
span.input-icon {
  display: inline-block;
}
.input-icon {
  position: relative;
  width: 100%;
}
.input-icon.inverted > [class*="fa-"],
.input-icon.inverted > [class*="glyphicon-"] {
  color: #ffffff;
  background-color: #262626;
}
.input-icon > input {
  padding-left: 36px;
  padding-right: 6px;
}
.input-icon > input:focus + [class*="fa-"],
.input-icon > input:focus + [class*="glyphicon-"] {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.input-icon > input:focus + .circular {
  -webkit-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.15) inset;
  -moz-box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.15) inset;
  box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.15) inset;
}
.input-icon > input.input-xs {
  padding-left: 26px;
}
.input-icon > input.input-xs + [class*="fa-"],
.input-icon > input.input-xs + [class*="glyphicon-"] {
  width: 24px;
  font-size: 10px;
  padding-top: 0;
  line-height: 24px;
}
.input-icon > input.input-xs + .circular {
  width: 14px;
  height: 14px;
  font-size: 10px;
  line-height: 14px;
}
.input-icon > input.input-sm {
  padding-left: 32px;
}
.input-icon > input.input-sm + [class*="fa-"],
.input-icon > input.input-sm + [class*="glyphicon-"] {
  width: 30px;
  font-size: 13px;
  padding-top: 0;
  line-height: 30px;
}
.input-icon > input.input-sm + .circular {
  width: 20px;
  height: 20px;
  font-size: 13px;
  line-height: 20px;
}
.input-icon > input.input-lg {
  padding-left: 48px;
}
.input-icon > input.input-lg + [class*="fa-"],
.input-icon > input.input-lg + [class*="glyphicon-"] {
  width: 46px;
  font-size: 18px;
  padding-top: 5px;
  line-height: 34px;
}
.input-icon > input.input-lg + .circular {
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 26px;
}
.input-icon > input.input-xl {
  padding-left: 54px;
}
.input-icon > input.input-xl + [class*="fa-"],
.input-icon > input.input-xl + [class*="glyphicon-"] {
  width: 52px;
  font-size: 20px;
  padding-top: 8px;
  line-height: 34px;
}
.input-icon > input.input-xl + .circular {
  width: 42px;
  height: 42px;
  font-size: 20px;
  line-height: 26px;
}
.input-icon > [class*="fa-"].icon-left,
.input-icon > [class*="glyphicon-"].icon-left {
  z-index: 2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 100%;
  line-height: 28px;
  display: inline-block;
  color: #555555;
  font-size: 14px;
  text-align: center;
  padding-top: 3px;
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.input-icon > [class*="fa-"].circular,
.input-icon > [class*="glyphicon-"].circular {
  border-radius: 500em !important;
  box-shadow: 0 0 0 0.1em rgba(0, 0, 0, 0.1) inset;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  -moz-transition: -moz-box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  padding: 0;
  top: 5px;
  bottom: 5px;
  left: 7px;
  width: 24px;
  height: 24px;
  font-size: 13px;
  line-height: 24px;
}
.input-icon.icon-right > input {
  padding-left: 6px;
  padding-right: 36px;
}
.input-icon.icon-right > input.input-xs {
  padding-right: 26px;
}
.input-icon.icon-right > input.input-sm {
  padding-right: 32px;
}
.input-icon.icon-right > input.input-lg {
  padding-right: 48px;
}
.input-icon.icon-right > input.input-xl {
  padding-right: 54px;
}
.input-icon.icon-right > [class*="fa-"],
.input-icon.icon-right > [class*="glyphicon-"] {
  left: auto;
  right: 0;
}
.input-icon.icon-right .circular {
  left: auto;
  right: 5px;
}
.input-icon ~ .help-inline {
  padding-left: 8px;
}
.input-group .input-group-addon {
  border-radius: 0 !important;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNlZWVlZWUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZiZmJmYiIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(top, #eeeeee 0, #fbfbfb 100%);
  background-image: -moz-linear-gradient(top, #eeeeee 0, #fbfbfb 100%);
  background-image: -o-linear-gradient(top, #eeeeee 0, #fbfbfb 100%);
  background-image: linear-gradient(to bottom, #eeeeee 0, #fbfbfb 100%);
}
.input-group .input-group-addon[class*="bg-"] {
  background-image: none;
  color: #ffffff;
}
.input-group-xl > .form-control,
.input-group-xl > .input-group-addon,
.input-group-xl > .input-group-btn > .btn {
  height: 52px;
  padding: 10px 18px;
  font-size: 20px;
  line-height: 1.4;
}
.input-group-xs > .form-control,
.input-group-xs > .input-group-addon,
.input-group-xs > .input-group-btn > .btn {
  height: 24px;
  padding: 2px 6px 2px 7px;
  font-size: 11px;
  line-height: 1.4;
}
.has-success .input-group-addon {
  border-color: #b0dd9c !important;
  color: #8cc474;
  background-image: none;
}
.has-error .input-group-addon {
  border-color: #E7BEBE;
  color: #e46f61;
  background-image: none;
}
.has-warning .input-group-addon {
  border-color: #fecf49;
  color: #f4b400;
  background-image: none;
}
.has-info .input-group-addon {
  border-color: #a4d3fe;
  color: #57b5e3;
  background-color: #e4f0fc;
  background-image: none;
}
.input-group-btn .btn-label {
  padding: 6px 10px !important;
}
.input-group-btn > .btn {
  line-height: 20px;
  border-radius: 0 !important;
}
.input-group-btn > .btn.dropdown-toggle > [class*="fa-"] {
  margin-right: 0;
  font-size: 14px;
}
.input-group > .btn.btn-sm {
  line-height: 22px;
}
.input-group > .btn + .btn {
  margin-left: 1px;
}
.input-group > .btn-group > .btn {
  line-height: 23px;
}
.input-group > .btn-group > .btn.btn-sm {
  line-height: 26px;
}
.input-group > .btn > .caret,
.input-group > .btn-group > .btn > .caret,
.input-group > .btn.btn-sm > .caret,
.input-group > .btn-group > .btn.btn-sm > .caret {
  margin-top: 10px;
}
/*#endregion Form TextInput*/
/*#region CheckBox and RadioBox*/
.radio {
    display: table;
}
.borderradius input[type=checkbox], .borderradius input[type=radio]
{
    /*opacity: 0;
  position: absolute;*/
    left: -9999px;
    z-index: 12;
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-left: 10px;
    margin-right: 10px !important;
}

.borderradius input[type=checkbox].colored-blue:checked + .text,
.borderradius input[type=radio].colored-blue:checked + .text {
  color: #0072C5;
}
.borderradius input[type=checkbox].colored-blue:checked + .text:before,
.borderradius input[type=radio].colored-blue:checked + .text:before {
  border-color: #0072C5;
  color: #5db2ff;
}
.borderradius input[type=checkbox]:checked,
.borderradius input[type=radio]:checked,
.borderradius input[type=checkbox]:focus,
.borderradius input[type=radio]:focus {
  outline: none !important;
}
.borderradius input[type=checkbox]:checked + .text:before,
.borderradius input[type=radio]:checked + .text:before {
  display: inline-block;
  content: '\f00c';
  background-color: #f5f8fc;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 -15px 10px -12px rgba(0, 0, 0, 0.05), inset 15px 10px -12px rgba(255, 255, 255, 0.1);
  border-color: #333333 !important;
  color: #444444 !important;
}
.borderradius input[type=checkbox]:hover + .text :before,
.borderradius input[type=radio]:hover + .text :before {
  border-color: #737373;
}
.borderradius input[type=checkbox]:active + .text :before,
.borderradius input[type=radio]:active + .text :before {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.borderradius input[type=checkbox]:disabled + .text,
.borderradius input[type=radio]:disabled + .text,
.borderradius input[type=checkbox][disabled] + .text,
.borderradius input[type=radio][disabled] + .text,
.borderradius input[type=checkbox].disabled + .text,
.borderradius input[type=radio].disabled + .text {
  color: #444444;
}
.borderradius input[type=checkbox]:disabled + .text:before,
.borderradius input[type=radio]:disabled + .text:before,
.borderradius input[type=checkbox][disabled] + .text:before,
.borderradius input[type=radio][disabled] + .text:before,
.borderradius input[type=checkbox].disabled + .text:before,
.borderradius input[type=radio].disabled + .text:before {
  background-color: #f5f5f5 !important;
  border-color: #cccccc;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  color: #e5e5e5;
}
.borderradius input[type=checkbox] + .text,
.borderradius input[type=radio] + .text {
  position: relative;
  z-index: 11;
  display: inline-block;
  margin: 0;
  line-height: 20px;
  min-height: 18px;
  min-width: 18px;
  font-weight: normal;
}
.borderradius input[type=checkbox] + .text:before,
.borderradius input[type=radio] + .text:before {
  font-family: fontAwesome;
  font-weight: bold;
  font-size: 13px;
  color: #333333;
  content: "\a0";
  background-color: #fafafa;
  border: 1px solid #777;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 0;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  height: 18px;
  line-height: 16px;
  min-width: 18px;
  margin-right: 5px;
  margin-bottom: 2px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.borderradius input[type=checkbox] + .text:hover:before,
.borderradius input[type=radio] + .text:hover:before {
  border-color: #737373;
}
.borderradius input[type=checkbox] + .text:active:before,
.borderradius input[type=radio] + .text:active:before {
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
.borderradius input[type=radio] + .text:before {
  border-radius: 100%;
  font-size: 10px;
  font-family: FontAwesome;
  line-height: 17px;
  height: 19px;
  min-width: 19px;
}
.borderradius input[type=radio]:checked + .text:before {
  content: "\f111";
}
.borderradius .radio label,
.borderradius .checkbox label {
  padding-left: 0;
}

.radio-inline, .checkbox-inline {
    padding-left: 0;
}
/*#endregion CheckBox and RadioBox*/
/*#region Switches*/
.borderradius input[type=checkbox].checkbox-slider {
  width: 55px;
  height: 25px;
  left: 0;
}
.borderradius input[type=checkbox].checkbox-slider.slider-icon:checked + .text:after {
  font-family: FontAwesome;
  font-size: 15px;
  line-height: 21px;
  content: "\f00c";
  border-width: 1px;
  padding-left: 3px;
  background-color: #ffffff;
  color: #444444;
}
.borderradius input[type=checkbox].checkbox-slider.slider-icon + .text:after {
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 20px;
  content: "\f00d";
  border-width: 1px;
  padding-left: 4px;
  border-color: #ffffff;
}
.borderradius input[type=checkbox].checkbox-slider.toggle:checked + .text:after {
  background-color: #ffffff;
  color: #444444;
}
.borderradius input[type=checkbox].checkbox-slider.toggle + .text:after {
  border: 0;
  background-color: #444444;
  width: 14px;
  height: 14px;
  top: 3px;
  left: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.borderradius input[type=checkbox].checkbox-slider.yesno + .text:before {
  font-family: 'Open Sans', 'Segoe UI';
  content: "YES\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0NO";
}
.borderradius input[type=checkbox].checkbox-slider + .text {
    /*original value margin: 0 4px; changed it to align in profile page.*/
  margin: 4px;
  min-height: 24px;
}
.borderradius input[type=checkbox].checkbox-slider + .text:before {
  font-family: 'Open Sans', 'Segoe UI';
  content: "ON\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0\a0OFF";
  background-color: #ffffff;
  color: #999999;
  font-weight: 300;
  font-size: 10px;
  line-height: 18px;
  height: 20px;
  overflow: hidden;
  border-radius: 50rem;
  border: 1px solid #cccccc;
  text-align: left;
  float: left;
  padding: 0;
  width: 52px;
  text-indent: -21px;
  margin-right: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.borderradius input[type=checkbox].checkbox-slider + .text:after {
  font-family: 'Open Sans', 'Segoe UI';
  content: '';
  font-size: 10px;
  font-weight: 300;
  background-color: #ffffff;
  border: 5px solid #444444;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  line-height: 20px;
  position: absolute;
  top: -2px;
  left: -3px;
  padding: 0;
  -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.borderradius input[type=checkbox].checkbox-slider:checked + .text:before {
  text-indent: 5px;
  background-color: #444444;
  border-color: #444444;
  color: #ffffff;
}
.borderradius input[type=checkbox].checkbox-slider:checked + .text:after {
  left: 34px;
  background-color: #444444;
  border: 5px solid #ffffff;
}

.borderradius input[type=checkbox].checkbox-slider.colored-blue + .text:after {
  border-color: #5db2ff;
}
.borderradius input[type=checkbox].checkbox-slider.colored-blue:checked + .text:before {
  background-color: #5db2ff;
  border-color: #5db2ff;
}
.borderradius input[type=checkbox].checkbox-slider.colored-blue:checked + .text:after {
  background-color: #5db2ff;
  border-color: #ffffff;
}
.borderradius input[type=checkbox].checkbox-slider.colored-blue:checked:disabled + .text:before {
  background-color: #5db2ff !important;
  border-color: #5db2ff !important;
}

.borderradius input[type=checkbox].checkbox-slider.colored-blue.slider-icon:checked + .text:after {
  background-color: #ffffff;
  color: #5db2ff;
}
.borderradius input[type=checkbox].checkbox-slider.colored-blue.slider-icon + .text:after {
  border-color: #ffffff;
  color: #5db2ff;
}
.borderradius input[type=checkbox].checkbox-slider.colored-blue.toggle:checked + .text:after {
  color: #5db2ff;
  background-color: #ffffff;
}
.borderradius input[type=checkbox].checkbox-slider.colored-blue.toggle + .text:after {
  background-color: #5db2ff;
}

/*#endregion Switches*/

/*#region Select2*/

.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
    height: 26px;
    padding: 0 0 0 8px;
    overflow: hidden;
    position: relative;

    border: 1px solid #d5d5d5;
    white-space: nowrap;
    line-height: 26px;
    color: #444;
    text-decoration: none;

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #fff;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #aaa;

    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}
.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  outline: 0;
}
.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}
.select2-container .select2-choice abbr:hover {
  cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
  width: 34px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  background: #ffffff;
    
}

.select2-container .select2-choice .select2-arrow b {
    width: 100%;
  height: 100%;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  font-size: 14px;
}
.select2-container .select2-choice .select2-arrow b:before {
  content: "\f107";
  width: 100%;
  height: 100%;
  text-align: center;
  display: block;
}
.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
  height: auto !important;
  min-height: 29px;
  padding: 6px 20px 5px 10px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #ffffff;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iODUlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjEiLz48c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background-image: -moz-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background-image: -o-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
  background-image: linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%);
}
.select2-search:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  content: "\f002";
  top: 25%;
  right: 10px;
  color: #737373 !important;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}
.select2-drop.select2-drop-above .select2-search:before {
  top: 34%;
}
.select2-search input.select2-active {
    background: #fff url('img/select2-spinner.gif') no-repeat 100%;
    background: url('img/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('img/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('img/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('img/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
    font-weight: bold;
}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('img/select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}

.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('img/select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}

.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('img/select2.png') right top no-repeat;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('img/select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}

/*#region bootstrap */

.form-control .select2-choice {
    border: 0;
    border-radius: 2px;
}

.form-control .select2-choice .select2-arrow {
    border-radius: 0 2px 2px 0;   
}

.form-control.select2-container {
    height: auto !important;
    padding: 0;
}

.form-control.select2-container.select2-dropdown-open {
    border-color: #5897FB;
    border-radius: 3px 3px 0 0;
}

.form-control .select2-container.select2-dropdown-open .select2-choices {
    border-radius: 3px 3px 0 0;
}

.form-control.select2-container .select2-choices {
    border: 0 !important;
    border-radius: 3px;
}

.control-group.warning .select2-container .select2-choice,
.control-group.warning .select2-container .select2-choices,
.control-group.warning .select2-container-active .select2-choice,
.control-group.warning .select2-container-active .select2-choices,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.warning .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.warning .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #C09853 !important;
}

.control-group.warning .select2-container .select2-choice div {
    border-left: 1px solid #C09853 !important;
    background: #FCF8E3 !important;
}

.control-group.error .select2-container .select2-choice,
.control-group.error .select2-container .select2-choices,
.control-group.error .select2-container-active .select2-choice,
.control-group.error .select2-container-active .select2-choices,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.error .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.error .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #B94A48 !important;
}

.control-group.error .select2-container .select2-choice div {
    border-left: 1px solid #B94A48 !important;
    background: #F2DEDE !important;
}

.control-group.info .select2-container .select2-choice,
.control-group.info .select2-container .select2-choices,
.control-group.info .select2-container-active .select2-choice,
.control-group.info .select2-container-active .select2-choices,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.info .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.info .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #3A87AD !important;
}

.control-group.info .select2-container .select2-choice div {
    border-left: 1px solid #3A87AD !important;
    background: #D9EDF7 !important;
}

.control-group.success .select2-container .select2-choice,
.control-group.success .select2-container .select2-choices,
.control-group.success .select2-container-active .select2-choice,
.control-group.success .select2-container-active .select2-choices,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choice,
.control-group.success .select2-dropdown-open.select2-drop-above .select2-choices,
.control-group.success .select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #468847 !important;
}

.control-group.success .select2-container .select2-choice div {
    border-left: 1px solid #468847 !important;
    background: #DFF0D8 !important;
}

/*#endregion bootstrap*/
/*#endregion Select2*/
/*#region TagsInput*/
.bootstrap-tagsinput {
  display: block;
  width: 100%;
  min-height: 32px;
  padding: 1px 3px;
  font-size: 13px;
  line-height: 1.428571429;
  color: #262626;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #CCC;
  border-radius: 0;
}
.bootstrap-tagsinput > span {
  font-weight: 400;
  padding: 4px 28px 4px 8px;
  font-size: 13px;
  border: 1px solid #5DB2FF;
  background: #5DB2FF;
}
.bootstrap-tagsinput input {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: auto !important;
  max-width: inherit;
}
.bootstrap-tagsinput input:focus {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.bootstrap-tagsinput .tag {
  color: #FFF;
  position: relative;
  margin: 3px 0 3px 2px;
  display: inline-block;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.bootstrap-tagsinput .tag [data-role=remove] {
  display: block;
  top: -1px;
  right: 0;
  padding: 3px 4px 3px 5px;
  width: 23px;
  height: 22px;
  position: absolute;
  cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role=remove]:hover:after {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.bootstrap-tagsinput .tag [data-role=remove]:hover:active:after {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.bootstrap-tagsinput .tag [data-role=remove]:after {
  content: "\f00d";
  font-family: fontAwesome;
  padding: 2px 1px;
  line-height: 16px;
  font-size: 14px;
  text-align: center;
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.bootstrap-tagsinput .tag [data-role=remove]:after:hover {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.bootstrap-tagsinput .tag [data-role=remove]:after:hover:active {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
/*#endregion TagsInput*/

/*#region Form Validator*/

.nav-tabs li.fv-tab-success > a {
    color: #3c763d;
}
.nav-tabs li.fv-tab-error > a {
    color: #a94442;
}

.fv-has-feedback {
    position: relative;
}
.fv-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
}
.fv-has-feedback .fv-control-feedback {
    right: 15px;
}
.fv-help-block {
    display: block;
}

.fv-form-bootstrap .help-block {
    margin-bottom: 0;
}
.fv-form-bootstrap .tooltip-inner {
    text-align: left;
}
.fv-form-bootstrap .fv-bootstrap-icon-no-label {
	top: 0;
}
.fv-form-bootstrap .fv-bootstrap-icon-input-group {
	top: 0;
	z-index: 100;
}

.input-icon .form-control-feedback {
    top: 0;
    right: 0 !important;
}
/*#endregion Form Validator*/

/*--------Pages and Widgets--------*/

/*#region Timeline*/
.timeline {
  list-style: none;
  padding: 0;
  position: relative;
}
.timeline:before {
  top: 0;
  bottom: -35px;
  position: absolute;
  content: " ";
  width: 3px;
  left: 50%;
  margin-left: -1.5px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  background-color: #f3f3f3;
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-datetime {
  color: #737373;
  position: absolute;
  left: 55%;
  top: 6px;
  text-align: left;
  padding: 10px;
}
.timeline > li > .timeline-datetime .timeline-time,
.timeline > li > .timeline-datetime .timeline-date {
  display: block;
  font-size: 11px;
}
.timeline > li > .timeline-datetime .timeline-date {
  font-size: 14px;
  font-weight: bold;
}
.timeline > li > .timeline-panel {
  background-color: #fbfbfb;
  -lh-property: 0;
  width:-webkit-calc(50% - 45px);
  width:-moz-calc(50% - 45px);
  width:calc(50% - 45px);
  float: left;
  border-radius: 2px;
  padding: 0;
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline > li > .timeline-panel .timeline-header .timeline-title {
  display: block;
  padding: 10px 20px 0;
  min-width: 200px;
  font-size: 14px;
  font-weight: 700;
}
.timeline > li > .timeline-panel .timeline-header .timeline-datetime {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 13px;
  display: none;
}
.timeline > li > .timeline-panel .timeline-body {
  padding: 10px 20px 20px;
  line-height: 22px;
}
.timeline > li > .timeline-panel .timeline-body > p,
.timeline > li > .timeline-panel .timeline-body > ul {
  margin-bottom: 0;
}
.timeline > li > .timeline-panel .timeline-body > p + p {
  margin-top: 5px;
}
.timeline > li > .timeline-panel .timeline-footer {
  padding: 5px 20px 10px;
  border-top: 1px solid #eeeeee;
}
.timeline > li > .timeline-panel .timeline-footer .footer-registrar {
  font-size: 13px;
  color: #555555;
}
.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 16px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #e5e5e5;
  border-right: 0 solid #e5e5e5;
  border-bottom: 15px solid transparent;
  content: " ";
}
.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 17px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fbfbfb;
  border-right: 0 solid #fbfbfb;
  border-bottom: 14px solid transparent;
  content: " ";
}
  .timeline > li .timeline-panel .timeline-header .timeline-datetime {
    display: none;
  }  

.timeline > li .timeline-badge {
  width: 50px;
  height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 6px;
  left: 50%;
  margin-left: -25px;
  background-image: linear-gradient(to bottom, #eeeeee 0, #fbfbfb 100%);
  z-index: 100;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  color: #444444;
}
.timeline > li .timeline-badge .badge-picture {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
}
.timeline > li .timeline-badge i {
  line-height: 50px;
}
.timeline > li .timeline-badge[class*="bg-"] {
  background-image: none !important;
  color: #ffffff;
}
.timeline > li.timeline-inverted > .timeline-datetime {
  left: auto;
  right: 55%;
  text-align: right;
}
.timeline > li.timeline-even > .timeline-panel {
  border-left: 3px solid #5db2ff;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
    border-right: 3px solid #fb6e52;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}
.timeline > li.timeline-node {
  width: 150px;
  margin: 0px auto 20px;
  text-align: center;
}

.history .history-avatar {
        padding: 0;
        display: block;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border: 10px solid #fff;
        line-height: 80px;
        font-size: 58px;
        text-shadow: -6px 8px 5px rgba(0,0,0,.3);

    width: 50px;
    height: 50px;
    position: relative;
    display: block;
    float: left;
    margin-bottom: 10px;
}
.history .history-body {
    float: none;
    margin-left: 55px;
    position: relative;
}
@media (max-width: 830px) { /*GARY*/
  .timeline:before {
    left: 40px;
  }
  .timeline > li > .timeline-panel {
    -lh-property: 0;
    width:-webkit-calc(100% - 90px);
    width:-moz-calc(100% - 90px);
    width:calc(100% - 90px);
    float: right;
    border-left: none !important;
  }
  .timeline > li > .timeline-badge {
    left: 15px;
    margin-left: 0;
    top: 6px;
  }
  .timeline > li > .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto;
  }
  .timeline > li > .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto;
  }
  .timeline > li > .timeline-panel .timeline-header .timeline-title {
    top: 5px;
  }
  .timeline > li > .timeline-panel .timeline-header .timeline-datetime {
    display: block;
  }
  .timeline > li > .timeline-datetime {
    display: none;
  }
  .timeline > li.timeline-node {
    margin: 0 0 20px -35px;
  }
}
@media (max-width: 500px) {
  .timeline > li > .timeline-panel .timeline-header .timeline-datetime {
    position: relative;
    padding: 5px 30px 0;
    margin: 0;
  }
  .timeline > li > .timeline-panel .timeline-body {
    padding: 20px 20px 20px;
  }
}
/*#endregion Timleline*/
/*#region Profile*/

.profile-box {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 3px rgba(0,0,0,.1);
    margin-bottom: 20px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

    .profile-box .profile-top {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        -webkit-border-top-left-radius: 3px;
        -webkit-border-top-right-radius: 3px;
        -moz-border-top-left-radius: 3px;
        -moz-border-top-right-radius: 3px;
        display: block;
        background-color: #5B90BF;
        color: #fff;
        height: 160px;
        padding-top: 1px;
    }
        .profile-box .profile-top .profile-title {
            padding-left: 50px;
        }
        .profile-box .profile-top .profile-title h2 {
            margin-top: 10px !important;
            margin-bottom: 5px;
        }
        .profile-box .profile-top .profile-summary {
            padding-top: 2px;
            line-height: 2;
        }
            .profile-box .profile-top .profile-summary .icon {
                width: 25px;
            }
    .profile-box .profile-img {
        padding: 0;
        display: block;
        margin: -100px 15px 15px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border: 10px solid #fff;
        width: 150px;
        line-height: 80px;
        font-size: 58px;
        text-shadow: -6px 8px 5px rgba(0,0,0,.3);
    }
    .profile-box .profile-img img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border: solid 1px #ddd;
    }
/*#endregion Profile*/

/*#region Loading*/
.loading-container {
  z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}
.loading-container.loading-inactive {
  display: none;
}
.loading-container.loading-inactive .loading-progress {
  display: none;
}
.loading-container .loading-progress {
  z-index: 2000;
  position: fixed;
  height: 10px;
  width: 10px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.loading-container .loading-progress .rotator {
  -webkit-animation: spin 30s infinite linear;
  -moz-animation: spin 30s infinite linear;
  -o-animation: spin 30s infinite linear;
  animation: spin 30s infinite linear;
}
.loading-container .loading-progress > .rotator {
  left: -100px;
}
.loading-container .rotator {
  -webkit-background-origin: border-box;
  -moz-background-origin: border-box;
  background-origin: border-box;
  background-color: #ffffff;
  width: 200px;
  height: 7px;
  opacity: .75;
  position: absolute;
  top: 0;
  left: 0;
}
.loading-container .colored {
  background-color: #5DB2FF !important;
}

.no-borderradius .loading-container .loading-progress .rotator {
  display: none;
}
.no-borderradius .loading-container .loading-progress {
  z-index: 2000;
  position: fixed;
  height: 150px;
  width: 150px;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
    background-image: url(img/loading.gif);
    background-repeat: no-repeat;
}
/*#endregion Loading*/

/*#region Rating*/
.stars {
  background: url("img/stars.png") repeat-x 0 0;
  width: 300px;
}
 
.stars input[type="radio"] {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
}
.stars input[type="radio"].star-10:checked ~ span {
  width: 100%;
}
.stars input[type="radio"].star-9:checked ~ span {
  width: 90%;
}
.stars input[type="radio"].star-8:checked ~ span {
  width: 80%;
}
.stars input[type="radio"].star-7:checked ~ span {
  width: 70%;
}
.stars input[type="radio"].star-6:checked ~ span {
  width: 60%;
}
.stars input[type="radio"].star-5:checked ~ span {
  width: 50%;
}
.stars input[type="radio"].star-4:checked ~ span {
  width: 40%;
}
.stars input[type="radio"].star-3:checked ~ span {
  width: 30%;
}
.stars input[type="radio"].star-2:checked ~ span {
  width: 20%;
}
.stars input[type="radio"].star-1:checked ~ span {
  width: 10%;
}
.stars label {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0!important;
  padding: 0!important;
  text-indent: -999em;
  float: left;
  position: relative;
  z-index: 10;
  background: transparent!important;
  cursor: pointer;
}
.stars label:hover ~ span {
  background-position: 0 -30px;
}
.stars label.star-10:hover ~ span {
  width: 100% !important;
}
.stars label.star-9:hover ~ span {
  width: 90% !important;
}
.stars label.star-8:hover ~ span {
  width: 80% !important;
}
.stars label.star-7:hover ~ span {
  width: 70% !important;
}
.stars label.star-6:hover ~ span {
  width: 60% !important;
}
.stars label.star-5:hover ~ span {
  width: 50% !important;
}
.stars label.star-4:hover ~ span {
  width: 40% !important;
}
.stars label.star-3:hover ~ span {
  width: 30% !important;
}
.stars label.star-2:hover ~ span {
  width: 20% !important;
}
.stars label.star-1:hover ~ span {
  width: 10% !important;
}
.stars span {
  display: block;
  width: 0;
  position: relative;
  top: 0;
  left: 0;
  height: 30px;
  background: url("img/stars.png") repeat-x 0 -60px;
  -webkit-transition: -webkit-width 0.5s;
  -moz-transition: -moz-width 0.5s;
  -ms-transition: -ms-width 0.5s;
  -o-transition: -o-width 0.5s;
  transition: width 0.5s;
}
.starsDisabled {
    background: url("img/stars.png") repeat-x 0 0;
    width: 300px;
    height: 30px;
}
.starsDisabled.star-10 span {
  width: 300px;
}
.starsDisabled.star-9 span {
  width: 270px;
}
.starsDisabled.star-8 span {
  width: 240px;
}
.starsDisabled.star-7 span {
  width: 210px
}
.starsDisabled.star-6 span {
  width: 180px;
}
.starsDisabled.star-5 span {
  width: 150px;
}
.starsDisabled.star-4 span {
  width: 120px;
}
.starsDisabled.star-3 span {
  width: 90px;
}
.starsDisabled.star-2 span {
  width: 60px;
}
.starsDisabled.star-1 span {
  width: 30px;
}
.starsDisabled span {
  display: block;
  width: 0;
  position: relative;
  top: 0;
  left: 0;
  height: 30px;
  background: url("img/stars.png") repeat-x 0 -60px;
  -webkit-transition: -webkit-width 0.5s;
  -moz-transition: -moz-width 0.5s;
  -ms-transition: -ms-width 0.5s;
  -o-transition: -o-width 0.5s;
  transition: width 0.5s;
}
/*#endregion Rating*/

.review-text-answer {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 4px;
    min-height: 30px;
}
.icon {
    padding-left: 5px;
    padding-right: 5px;
}

.form-horizontal .form-group {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.form-horizontal .control-label{
   text-align:left !important;
    padding-left: 0 !important;
}

.error-message, .validation-summary-errors {
    border: 1px solid #de7e6d;
color: #7d2a1c;
background: #e8a397;
background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgi…pZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
background-size: 100%;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ecb5ac), color-stop(100%, #e8a397));
background-image: -webkit-linear-gradient(top, #ecb5ac, #e8a397);
background-image: -moz-linear-gradient(top, #ecb5ac, #e8a397);
background-image: -o-linear-gradient(top, #ecb5ac, #e8a397);
background-image: linear-gradient(top, #ecb5ac, #e8a397);
-webkit-box-shadow: 0 1px 2px #efc0b8 inset, 0 1px 1px #dfdfdf;
-moz-box-shadow: 0 1px 2px #efc0b8 inset, 0 1px 1px #dfdfdf;
box-shadow: 0 1px 2px #efc0b8 inset, 0 1px 1px #dfdfdf;
padding: 10px;

    margin: 0px 15px 15px 15px; 
border-radius: 4px;
}

.validation-summary-errors:before {
    font-family: 'FontAwesome';
    font-size: 30px;
    content: "\f071";
    padding-right: 10px;
    padding-left: 10px;
}

.validation-summary-errors span {
    vertical-align: super;
    font-weight: bold;
}
.error-message:before {
    font-family: 'FontAwesome';
    font-size: 30px;
    content: "\f071";
    padding-right: 10px;
    padding-left: 10px;
}

.error-message span {
    vertical-align: super;
    font-weight: bold;
}
.error-message li {
    padding-left: 15px;
}
.validation-summary-valid
{
display:none;
}
.success-message {
    border: 1px solid #479137;
color: #333;
background: #a0d468;
padding: 10px;

    margin: 0px 15px 15px 15px; 
border-radius: 4px;
}
/* form validation pop over */
.popover-content:before {
    
    font-family: 'FontAwesome';
    font-weight: normal;
    font-size: 20px;
    content: "\f071";
    padding-left: 5px;
    padding-right: 5px;
    color: rgb(250, 24, 24);
}
/* action column */
.action-column a {
    margin-top: -5px;
    margin-bottom: -5px;
    margin-right: 7px;
}
.action-column a:last-of-type {
    margin-right: 0px;
}


/* modal */
.modal-small .modal-dialog{
    width: 300px;
}
.modal-medium .modal-dialog{
    width: 45%;
}
.modal-large .modal-dialog{
    width: 70%;
}
.modal-alert .modal-header {
    border-bottom: 3px solid #ffce55 !important;
}
.modal-info .modal-header {
    border-bottom: 3px solid #5db2ff !important;
}

.modal-header .modal-title {
    text-shadow: 0 1px white;
    color: #636363;
    font-size: 15px !important;
    font-weight: 600 !important;
}
img.alert-image {
    content:url("img/alert.png");
}
.btn-yes:before {
    font-family: 'FontAwesome';
    font-weight: normal;
    content: "\f00c";
    padding-left: 5px;
    padding-right: 5px;
}
.btn-no:before {
    font-family: 'FontAwesome';
    font-weight: normal;
    content: "\f00d";
    padding-left: 5px;
    padding-right: 5px;
    color: #d73d32 !important;
}

/* tiny mce */
.rich-text {
    
}
.mce-tinymce {
    border: 1px solid #d5d5d5 !important;
    width: 99% !important;
    margin-bottom: 10px !important;
}

.mce-tinymce:hover {
  border-color: #9dd1fa !important;
}
.mce-edit-area iframe:focus {
  border-color: #66afe9 !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.mce-fullscreen {
    z-index: 99999 !important;
}

/* row title */
div.row-title {
    line-height: 17px;
    margin: 10px 0;
    padding: 9px 10px 9px 8px;
    display: inline-block;
    color: #000;
    font-weight: 600;
    background-color: #fff;
    position: relative;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    -webkit-box-shadow: 2px 2px 7px rgba(0,0,0,.3);
    -moz-box-shadow: 2px 2px 7px rgba(0,0,0,.3);
    box-shadow: 2px 2px 7px rgba(0,0,0,.3);
}
div.row-title:before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -4px;
    width: 4px;
    max-width: 4px;
    overflow: hidden;
    background-color: #5DB2FF;
}

/* section questions*/
.review-section-content {
        background: #ffffff;
        border: 1px solid #cdcdcd;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
    }

    .review-section-header {
        position: relative;
        -moz-border-radius-topright: 3px;
        -webkit-border-top-right-radius: 3px;
        border-top-right-radius: 3px;
        -moz-border-radius-topleft: 3px;
        -webkit-border-top-left-radius: 3px;
        border-top-left-radius: 3px;
        padding: 8px;
        background: -moz-linear-gradient(top, #e8e8e8 0%, #b0b0b0 100%);
        background: -webkit-linear-gradient(top, #e8e8e8 0%, #b0b0b0 100%);
        background: -o-linear-gradient(top, #e8e8e8 0%, #b0b0b0 100%);
        background: -ms-linear-gradient(top, #e8e8e8 0%, #b0b0b0 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#b0b0b0',GradientType=0 );
        background: linear-gradient(to bottom, #e8e8e8 0%, #b0b0b0 100%);
        background-color: #e8e8e8;
        text-rendering: optimizeLegibility;
    }

        .review-section-header:before, .review-section-header:after {
            clear: both;
            display: table;
            content: "";
            line-height: 0;
        }

        .review-section-header > .section-header-title {
            font-size: 14px;
            font-weight: bold;
        }

    .review-question-body {
        border-bottom: 1px solid #bc5679;
    }
    .review-section-content .review-question-body:last-child {
        border-bottom: none !important;
    } 
    .review-question-content {
        margin-bottom: 10px;
        padding: 10px 10px 0px 10px;
    }

    .review-question-text {
        padding-top: 0 !important;
        padding-bottom: 5px;
        border-bottom: 1px solid #aaa;
    }


/* date picker*/
.ui-datepicker .ui-datepicker-title select {
font-family: inherit !important;
font-size: inherit !important;
color: #333;
background-color: #fff;
padding: 0;
}

/* Well */
.well {
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-color: #fdfdfe;
  border: 0;
  color: #262626;
  position: relative;
  margin-bottom: 30px;
  min-height: 0px;
  
}
.well[class*="bg-"] {
  color: #f5f5f5;
}
.well.with-header {
  padding-top: 60px;
}
.well .header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  padding: 10px;
  text-align: left;
  border-radius: 2px 2px 0 0;
  border-bottom: 1px solid #e5e5e5;
  font-weight: 600;
}
.well .header[class*="bg-"] {
  color: #ffffff;
  border-bottom: 0;
}
.well .header[class*="bordered-"] {
  border-bottom: 3px solid #ffffff;
}

.page-sidebar.always-hide {
  display: none !important;
}
.page-sidebar.always-hide:before {
  display: none;
}
.page-sidebar.always-hide + .page-content {
  margin-left: 0 !important;
}
.page-sidebar.always-hide + .page-content .breadcrumbs-fixed {
  left: 0 !important;
}
.page-sidebar.always-hide + .page-content .page-header-fixed {
  left: 0 !important;
}
.always-hide {
    display: none !important;
}

.sort-up
{
  font-family: FontAwesome;
  font-size: 15px;
  line-height: 21px;
  content: "\f0aa";
  border-width: 1px;
  padding-left: 3px;
  color: #ffffff;
}

.sort-down
{
  font-family: FontAwesome;
  font-size: 15px;
  line-height: 21px;
  content: "\f0aa";
  border-width: 1px;
  padding-left: 3px;
  color: #ffffff;
}
