﻿/*#region Animations*/


    @-moz-keyframes fadeOut { 0% { opacity: 1; visibility: visible; }  100% { opacity: 0; visibility: hidden; }} 
    @-webkit-keyframes fadeOut { 0% { opacity: 1; visibility: visible; }  100% { opacity: 0; visibility: hidden; }} 
    @-ms-keyframes fadeOut { 0% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden; }} 
    @-keyframes fadeOut { 0% { opacity: 1; visibility: visible; } 100% { opacity: 0; visibility: hidden;  }} 

@-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*/


/*#region Colors*/
.themeprimary {
  color: #2dc3e8 !important;
}
.themesecondary {
  color: #fb6e52 !important;
}
.themethirdcolor {
  color: #ffce55 !important;
}
.themefourthcolor {
  color: #9B7125 !important;
}
.themefifthcolor {
  color: #e75b8d !important;
}
.white {
  color: #ffffff !important;
}
.snow {
  color: #fbfbfb !important;
}
.whitesmoke {
  color: #f5f5f5 !important;
}
.seashell {
  color: #f3f3f3 !important;
}
.ivory {
  color: #eeeeee !important;
}
.platinum {
  color: #e5e5e5 !important;
}
.lightgray {
  color: #d0d0d0 !important;
}
.gray {
  color: #cccccc !important;
}
.darkgray {
  color: #999999 !important;
}
.silver {
  color: #777777 !important;
}
.sonic-silver {
  color: #737373 !important;
}
.storm-cloud {
  color: #666666 !important;
}
.lightcarbon {
  color: #555555 !important;
}
.carbon {
  color: #444444 !important;
}
.slate-gray {
  color: #333333 !important;
}
.darkcarbon {
  color: #262626 !important;
}
.blue {
  color: #5db2ff !important;
}
.info {
  color: #57b5e3 !important;
}
.sky {
  color: #11a9cc !important;
}
.primary {
  color: #4374e0 !important;
}
.azure {
  color: #2dc3e8 !important;
}
.blueberry {
  color: #6f85bf !important;
}
.palegreen {
  color: #9B7125 !important;
}
.success {
  color: #9B7125 !important;
}
.green {
  color: #8cc474 !important;
}
.lightyellow {
  color: #f6d52e !important;
}
.yellow {
  color: #ffce55 !important;
}
.warning {
  color: #f4b400 !important;
}
.gold {
  color: #f9b256 !important;
}
.orange {
  color: #fb6e52 !important;
}
.lightred {
  color: #e46f61 !important;
}
.darkorange {
  color: #ed4e2a !important;
}
.red {
  color: #df5138 !important;
}
.pink {
  color: #e75b8d !important;
}
.darkpink {
  color: #cc324b !important;
}
.danger {
  color: #d73d32 !important;
}
.magenta {
  color: #bc5679 !important;
}
.purple {
  color: #7e3794 !important;
}
.maroon {
  color: #981b48 !important;
}
/*#endregion Colors*/
/*#region Background Colors*/
.bg-themeprimary {
  background-color: #0068ae !important;
}
.bg-themesecondary {
  background-color: #fb6e52 !important;
}
.bg-themethirdcolor {
  background-color: #ffce55 !important;
}
.bg-themefourthcolor {
  background-color: #a0d468 !important;
}
.bg-themefifthcolor {
  background-color: #e75b8d !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-snow {
  background-color: #fbfbfb !important;
}
.bg-whitesmoke {
  background-color: #f5f5f5 !important;
}
.bg-seashell {
  background-color: #f3f3f3 !important;
}
.bg-ivory {
  background-color: #eeeeee !important;
}
.bg-platinum {
  background-color: #e5e5e5 !important;
}
.bg-lightgray {
  background-color: #d0d0d0 !important;
}
.bg-gray {
  background-color: #cccccc !important;
}
.bg-darkgray {
  background-color: #999999 !important;
}
.bg-silver {
  background-color: #777777 !important;
}
.bg-sonic-silver {
  background-color: #737373 !important;
}
.bg-storm-cloud {
  background-color: #666666 !important;
}
.bg-lightcarbon {
  background-color: #555555 !important;
}
.bg-carbon {
  background-color: #444444 !important;
}
.bg-slate-gray {
  background-color: #333333 !important;
}
.bg-darkcarbon {
  background-color: #262626 !important;
}
.bg-blue {
  background-color: #5db2ff !important;
}
.bg-info {
  background-color: #57b5e3 !important;
}
.bg-sky {
  background-color: #11a9cc !important;
}
.bg-primary {
  background-color: #4374e0 !important;
}
.bg-azure {
  background-color: #2dc3e8 !important;
}
.bg-blueberry {
  background-color: #6f85bf !important;
}
.bg-palegreen {
  background-color: #a0d468 !important;
}
.bg-success {
  background-color: #9B7125 !important;
}
.bg-green {
  background-color: #8cc474 !important;
}
.bg-lightyellow {
  background-color: #f6d52e !important;
}
.bg-yellow {
  background-color: #ffce55 !important;
}
.bg-warning {
  background-color: #f4b400 !important;
}
.bg-gold {
  background-color: #f9b256 !important;
}
.bg-orange {
  background-color: #fb6e52 !important;
}
.bg-lightred {
  background-color: #e46f61 !important;
}
.bg-darkorange {
  background-color: #ed4e2a !important;
}
.bg-red {
  background-color: #df5138 !important;
}
.bg-danger {
  background-color: #d73d32 !important;
}
.bg-pink {
  background-color: #e75b8d !important;
}
.bg-darkpink {
  background-color: #cc324b !important;
}
.bg-magenta {
  background-color: #bc5679 !important;
}
.bg-purple {
  background-color: #7e3794 !important;
}
.bg-maroon {
  background-color: #981b48 !important;
}
.bg-public {
  background-color: #0068ae !important;
}
/*#endregion Background Colors*/
/*#region Before Colors*/
.before-themeprimary:before {
  background-color: #2dc3e8 !important;
}
.before-themesecondary:before {
  background-color: #fb6e52 !important;
}
.before-themethirdcolor:before {
  background-color: #ffce55 !important;
}
.before-themefourthcolor:before {
  background-color: #a0d468 !important;
}
.before-themefifthcolor:before {
  background-color: #e75b8d !important;
}
.before-white:before {
  background-color: #ffffff !important;
}
.before-snow:before {
  background-color: #fbfbfb !important;
}
.before-whitesmoke:before {
  background-color: #f5f5f5 !important;
}
.before-seashell:before {
  background-color: #f3f3f3 !important;
}
.before-ivory:before {
  background-color: #eeeeee !important;
}
.before-platinum:before {
  background-color: #e5e5e5 !important;
}
.before-lightgray:before {
  background-color: #d0d0d0 !important;
}
.before-gray:before {
  background-color: #cccccc !important;
}
.before-darkgray:before {
  background-color: #999999 !important;
}
.before-silver:before {
  background-color: #777777 !important;
}
.before-sonic-silver:before {
  background-color: #737373 !important;
}
.before-storm-cloud:before {
  background-color: #666666 !important;
}
.before-lightcarbon:before {
  background-color: #555555 !important;
}
.before-carbon:before {
  background-color: #444444 !important;
}
.before-slate-gray:before {
  background-color: #333333 !important;
}
.before-darkcarbon:before {
  background-color: #262626 !important;
}
.before-blue:before {
  background-color: #5db2ff !important;
}
.before-info:before {
  background-color: #57b5e3 !important;
}
.before-sky:before {
  background-color: #11a9cc !important;
}
.before-primary:before {
  background-color: #4374e0 !important;
}
.before-azure:before {
  background-color: #2dc3e8 !important;
}
.before-blueberry:before {
  background-color: #6f85bf !important;
}
.before-palegreen:before {
  background-color: #a0d468 !important;
}
.before-success:before {
  background-color: #9B7125 !important;
}
.before-green:before {
  background-color: #8cc474 !important;
}
.before-lightyellow:before {
  background-color: #f6d52e !important;
}
.before-yellow:before {
  background-color: #ffce55 !important;
}
.before-warning:before {
  background-color: #f4b400 !important;
}
.before-gold:before {
  background-color: #f9b256 !important;
}
.before-orange:before {
  background-color: #fb6e52 !important;
}
.before-lightred:before {
  background-color: #e46f61 !important;
}
.before-darkorange:before {
  background-color: #ed4e2a !important;
}
.before-red:before {
  background-color: #df5138 !important;
}
.before-danger:before {
  background-color: #d73d32 !important;
}
.before-pink:before {
  background-color: #e75b8d !important;
}
.before-darkpink:before {
  background-color: #cc324b !important;
}
.before-magenta:before {
  background-color: #bc5679 !important;
}
.before-purple:before {
  background-color: #7e3794 !important;
}
.before-maroon:before {
  background-color: #981b48 !important;
}
/*#endregion Before Colors*/
/*#region Bordered Colors*/
.bordered-solid {
  border-style: solid !important;
}
.bordered-dashed {
  border-style: dashed !important;
}
.bordered-dotted {
  border-style: dotted !important;
}
.bordered-double {
  border-style: double !important;
}
.bordered-1 {
  border: 1px solid #ffffff;
}
.bordered-2 {
  border: 2px solid #ffffff;
}
.bordered-3 {
  border: 3px solid #ffffff;
}
.bordered-4 {
  border: 4px solid #ffffff;
}
.bordered-5 {
  border: 5px solid #ffffff;
}
.bordered-bottom-1 {
  border-bottom: 1px solid #ffffff;
}
.bordered-bottom-2 {
  border-bottom: 2px solid #ffffff;
}
.bordered-bottom-3 {
  border-bottom: 3px solid #ffffff;
}
.bordered-bottom-4 {
  border-bottom: 4px solid #ffffff;
}
.bordered-bottom-5 {
  border-bottom: 5px solid #ffffff;
}
.bordered-top-1 {
  border-top: 1px solid #ffffff;
}
.bordered-top-2 {
  border-top: 2px solid #ffffff;
}
.bordered-top-3 {
  border-top: 3px solid #ffffff;
}
.bordered-top-4 {
  border-top: 4px solid #ffffff;
}
.bordered-top-5 {
  border-top: 5px solid #ffffff;
}
.bordered-left-1 {
  border-left: 1px solid #ffffff;
}
.bordered-left-2 {
  border-left: 2px solid #ffffff;
}
.bordered-left-3 {
  border-left: 3px solid #ffffff;
}
.bordered-left-4 {
  border-left: 4px solid #ffffff;
}
.bordered-left-5 {
  border-left: 5px solid #ffffff;
}
.bordered-right-1 {
  border-right: 1px solid #ffffff;
}
.bordered-right-2 {
  border-right: 2px solid #ffffff;
}
.bordered-right-3 {
  border-right: 3px solid #ffffff;
}
.bordered-right-4 {
  border-right: 4px solid #ffffff;
}
.bordered-right-5 {
  border-right: 5px solid #ffffff;
}
.bordered-themeprimary {
  border-color: #2dc3e8 !important;
}
.bordered-themesecondary {
  border-color: #fb6e52 !important;
}
.bordered-themethirdcolor {
  border-color: #ffce55 !important;
}
.bordered-themefourthcolor {
  border-color: #a0d468 !important;
}
.bordered-themefifthcolor {
  border-color: #e75b8d !important;
}
.bordered-white {
  border-color: #ffffff !important;
}
.bordered-snow {
  border-color: #fbfbfb !important;
}
.bordered-whitesmoke {
  border-color: #f5f5f5 !important;
}
.bordered-seashell {
  border-color: #f3f3f3 !important;
}
.bordered-ivory {
  border-color: #eeeeee !important;
}
.bordered-platinum {
  border-color: #e5e5e5 !important;
}
.bordered-lightgray {
  border-color: #d0d0d0 !important;
}
.bordered-gray {
  border-color: #cccccc !important;
}
.bordered-darkgray {
  border-color: #999999 !important;
}
.bordered-silver {
  border-color: #777777 !important;
}
.bordered-sonic-silver {
  border-color: #737373 !important;
}
.bordered-storm-cloud {
  border-color: #666666 !important;
}
.bordered-lightcarbon {
  border-color: #555555 !important;
}
.bordered-carbon {
  border-color: #444444 !important;
}
.bordered-slate-gray {
  border-color: #333333 !important;
}
.bordered-darkcarbon {
  border-color: #262626 !important;
}
.bordered-blue {
  border-color: #5db2ff !important;
}
.bordered-info {
  border-color: #57b5e3 !important;
}
.bordered-sky {
  border-color: #11a9cc !important;
}
.bordered-primary {
  border-color: #4374e0 !important;
}
.bordered-azure {
  border-color: #2dc3e8 !important;
}
.bordered-blueberry {
  border-color: #6f85bf !important;
}
.bordered-palegreen {
  border-color: #a0d468 !important;
}
.bordered-success {
  border-color: #9B7125 !important;
}
.bordered-green {
  border-color: #8cc474 !important;
}
.bordered-lightyellow {
  border-color: #f6d52e !important;
}
.bordered-yellow {
  border-color: #ffce55 !important;
}
.bordered-warning {
  border-color: #f4b400 !important;
}
.bordered-gold {
  border-color: #f9b256 !important;
}
.bordered-orange {
  border-color: #fb6e52 !important;
}
.bordered-lightred {
  border-color: #e46f61 !important;
}
.bordered-darkorange {
  border-color: #ed4e2a !important;
}
.bordered-red {
  border-color: #df5138 !important;
}
.bordered-danger {
  border-color: #d73d32 !important;
}
.bordered-pink {
  border-color: #e75b8d !important;
}
.bordered-darkpink {
  border-color: #cc324b !important;
}
.bordered-magenta {
  border-color: #bc5679 !important;
}
.bordered-purple {
  border-color: #7e3794 !important;
}
.bordered-maroon {
  border-color: #981b48 !important;
}
/*#endregion Bordered Colors*/
/*#region Paddings*/
.no-padding {
  padding: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.no-padding-right {
  padding-right: 0 !important;
}
.padding-5 {
  padding: 5px !important;
}
.padding-10 {
  padding: 10px !important;
}
.padding-20 {
  padding: 20px !important;
}
.padding-30 {
  padding: 30px !important;
}
.padding-40 {
  padding: 40px !important;
}
.padding-50 {
  padding: 50px !important;
}
.padding-left-5 {
  padding-left: 5px !important;
}
.padding-left-10 {
  padding-left: 10px !important;
}
.padding-left-20 {
  padding-left: 20px !important;
}
.padding-left-30 {
  padding-left: 30px !important;
}
.padding-left-40 {
  padding-left: 40px !important;
}
.padding-left-50 {
  padding-left: 50px !important;
}
.padding-top-5 {
  padding-top: 5px !important;
}
.padding-top-10 {
  padding-top: 10px !important;
}
.padding-top-20 {
  padding-top: 20px !important;
}
.padding-top-30 {
  padding-top: 30px !important;
}
.padding-top-40 {
  padding-top: 40px !important;
}
.padding-top-50 {
  padding-top: 50px !important;
}
.padding-right-5 {
  padding-right: 5px !important;
}
.padding-right-10 {
  padding-right: 10px !important;
}
.padding-right-20 {
  padding-right: 20px !important;
}
.padding-right-30 {
  padding-right: 30px !important;
}
.padding-right-40 {
  padding-right: 40px !important;
}
.padding-right-50 {
  padding-right: 50px !important;
}
.padding-bottom-5 {
  padding-bottom: 5px !important;
}
.padding-bottom-10 {
  padding-bottom: 10px !important;
}
.padding-bottom-20 {
  padding-bottom: 20px !important;
}
.padding-bottom-30 {
  padding-bottom: 30px !important;
}
.padding-bottom-40 {
  padding-bottom: 40px !important;
}
.padding-bottom-50 {
  padding-bottom: 50px !important;
}
/*#endregion Paddings*/
/*#region Margins*/
.no-margin {
  margin: 0 !important;
}
.no-margin-bottom {
  margin-bottom: 0 !important;
}
.no-margin-top {
  margin-top: 0 !important;
}
.no-margin-left {
  margin-left: 0 !important;
}
.no-margin-right {
  margin-right: 0 !important;
}
.margin-5 {
  margin: 5px !important;
}
.margin-10 {
  margin: 10px !important;
}
.margin-20 {
  margin: 20px !important;
}
.margin-30 {
  margin: 30px !important;
}
.margin-40 {
  margin: 40px !important;
}
.margin-50 {
  margin: 50px !important;
}
.margin-left-5 {
  margin-left: 5px !important;
}
.margin-left-10 {
  margin-left: 10px !important;
}
.margin-left-20 {
  margin-left: 20px !important;
}
.margin-left-30 {
  margin-left: 30px !important;
}
.margin-left-40 {
  margin-left: 40px !important;
}
.margin-left-50 {
  margin-left: 50px !important;
}
.margin-top-5 {
  margin-top: 5px !important;
}
.margin-top-10 {
  margin-top: 10px !important;
}
.margin-top-20 {
  margin-top: 20px !important;
}
.margin-top-30 {
  margin-top: 30px !important;
}
.margin-top-40 {
  margin-top: 40px !important;
}
.margin-top-50 {
  margin-top: 50px !important;
}
.margin-right-5 {
  margin-right: 5px !important;
}
.margin-right-10 {
  margin-right: 10px !important;
}
.margin-right-20 {
  margin-right: 20px !important;
}
.margin-right-30 {
  margin-right: 30px !important;
}
.margin-right-40 {
  margin-right: 40px !important;
}
.margin-right-50 {
  margin-right: 50px !important;
}
.margin-bottom-5 {
  margin-bottom: 5px !important;
}
.margin-bottom-10 {
  margin-bottom: 10px !important;
}
.margin-bottom-20 {
  margin-bottom: 20px !important;
}
.margin-bottom-30 {
  margin-bottom: 30px !important;
}
.margin-bottom-40 {
  margin-bottom: 40px !important;
}
.margin-bottom-50 {
  margin-bottom: 50px !important;
}
/*#endregion Margins*/
/*#region Fonts*/
.font-10 {
  font-size: 10%;
}
.font-20 {
  font-size: 20%;
}
.font-30 {
  font-size: 30%;
}
.font-40 {
  font-size: 40%;
}
.font-50 {
  font-size: 50%;
}
.font-60 {
  font-size: 60%;
}
.font-70 {
  font-size: 70%;
}
.font-80 {
  font-size: 80%;
}
.font-90 {
  font-size: 90%;
}
.font-110 {
  font-size: 110%;
}
.font-120 {
  font-size: 120%;
}
.font-130 {
  font-size: 130%;
}
.font-140 {
  font-size: 140%;
}
.font-150 {
  font-size: 150%;
}
.font-160 {
  font-size: 160%;
}
.font-170 {
  font-size: 170%;
}
.font-180 {
  font-size: 180%;
}
.font-190 {
  font-size: 190%;
}
.font-200 {
  font-size: 200%;
}
/*#endregion Fonts*/
/*Firefox Outline bug*/
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;
    margin-top: 10px;
    margin-bottom: 10px;
}
hr.wide {
  margin-right: -15px;
  margin-left: -15px;
}

.position-relative {
  position: relative;
}
.horizontal-space {
  max-height: 1px;
  min-height: 1px;
  overflow: hidden;
  margin: 6px 0;
}
.horizontal-space.space-xs {
  margin: 2px 0;
}
.horizontal-space.space-sm {
  margin: 4px 0;
}
.horizontal-space.space-lg {
  margin: 8px 0;
}
.horizontal-space.space-xl {
  margin: 10px 0;
}
.horizontal-space.space-xxl {
  margin: 12px 0;
}
.vertical-space {
  max-width: 1px;
  min-width: 1px;
  overflow: hidden;
  margin: 0 12px;
}
html {
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}
body {
  padding-bottom: 0;
  min-height: 100%;
  font-family: 'Open Sans', 'Segoe UI' /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
  font-size: 13px;
  color: #444444;
}
body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #eeeeee;
}
/*#region Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300 !important;
  font-family: 'Open Sans', 'Segoe UI' /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  color: #444444;
}
h1.block,
h2.block,
h3.block,
h4.block,
h5.block,
h6.block {
  padding-top: 10px;
  padding-bottom: 10px;
}
h1 .label,
h2 .label,
h3 .label,
h4 .label,
h5 .label,
h6 .label {
  font-size: 75%;
}
h1.row-title,
h2.row-title,
h3.row-title,
h4.row-title,
h5.row-title,
h6.row-title {
  line-height: 17px;
  margin: 10px 0;
  padding: 9px 10px 9px 8px;
  display: inline-block;
  color: #646464;
  font-weight: 400;
  background-color: #ffffff;
  position: relative;
  -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;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
h1.row-title:before,
h2.row-title:before,
h3.row-title:before,
h4.row-title:before,
h5.row-title:before,
h6.row-title:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4px;
  width: 4px;
  max-width: 4px;
  overflow: hidden;
  background-color: #2dc3e8;
}
h1.row-title .fa,
h2.row-title .fa,
h3.row-title .fa,
h4.row-title .fa,
h5.row-title .fa,
h6.row-title .fa,
h1.row-title .glyphicon,
h2.row-title .glyphicon,
h3.row-title .glyphicon,
h4.row-title .glyphicon,
h5.row-title .glyphicon,
h6.row-title .glyphicon,
h1.row-title .typcn,
h2.row-title .typcn,
h3.row-title .typcn,
h4.row-title .typcn,
h5.row-title .typcn,
h6.row-title .typcn,
h1.row-title [class*="wi-"],
h2.row-title [class*="wi-"],
h3.row-title [class*="wi-"],
h4.row-title [class*="wi-"],
h5.row-title [class*="wi-"],
h6.row-title [class*="wi-"] {
  margin-right: 5px;
  line-height: 17px;
  font-size: 17px;
}
h1 {
  font-size: 32px;
}
h1.smaller {
  font-size: 31px;
}
h1.bigger {
  font-size: 33px;
}
h1.block {
  margin-bottom: 16px;
}
h2 {
  font-size: 26px;
}
h2.smaller {
  font-size: 25px;
}
h2.bigger {
  font-size: 27px;
}
h2.block {
  margin-bottom: 16px;
}
h3 {
  font-size: 22px;
}
h3.smaller {
  font-size: 21px;
}
h3.bigger {
  font-size: 23px;
}
h3.block {
  margin-bottom: 16px;
}
h4 {
  font-size: 18px;
}
h4.smaller {
  font-size: 17px;
}
h4.bigger {
  font-size: 19px;
}
h4.block {
  margin-bottom: 16px;
}
h5 {
  font-size: 15px;
}
h5.smaller {
  font-size: 14px;
}
h5.bigger {
  font-size: 16px;
}
h5.block {
  margin-bottom: 16px;
}
h6 {
  font-size: 13px;
}
h6.smaller {
  font-size: 12px;
}
h6.bigger {
  font-size: 14px;
}
h6.block {
  margin-bottom: 16px;
}
.text-align-center {
  text-align: center !important;
}
.text-align-left {
  text-align: left !important;
}
.text-align-right {
  text-align: right !important;
}
.text-align-justify {
  text-align: justify !important;
}
.block-center {
  margin: 0 auto;
}
.uppercase {
  text-transform: uppercase;
}
p {
  line-height: 22px;
}
a:focus,
a:active {
  text-decoration: none;
}
/*#endregion Typography */
/*--------Page Components--------*/
/*#region navbar*/
.navbar {
  padding: 0;
  margin: 0;
  border: none;
  height: 125px;
  z-index: 200;
}
.navbar .navbar-inner {
  border: 0;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  min-height: 120px;
  position: relative;
  /*box-shadow: 0px 3px 7px 0px #b9b8b8;*/ 
}
.navbar .navbar-inner .navbar-container {
    background-color: red;
}
.navbar .navbar-inner .navbar-header .navbar-account {
  height: 85px;
}
.navbar .navbar-inner .navbar-header .navbar-account > div {
  display: inline-block;
  width: auto;
  vertical-align: top;
}


.navbar .navbar-inner .navbar-header .languages {
  position: absolute;
  top: 88px;
  right: -50px;
  zoom: 1;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
    transition:all 0.4s ease-in-out!important;
    -o-transition:all 0.4s ease-in-out!important;
    -webkit-transition: all 0.4s ease-in-out!important;
    -moz-transition: all 0.4s ease-in-out!important;
}
.navbar .navbar-inner .navbar-header .languages > li {
  float: left;
  position: relative;
  font-size: 16px;
  cursor: pointer;
}
.navbar .navbar-inner .navbar-header .languages > li > a {
  position: relative;
  display: inline-block;
  color: white;
  cursor: pointer;
}




.navbar .navbar-inner .navbar-header .navbar-account .connected {
  position: absolute;
  top: 40px;
  right: 30px;
  zoom: 1;
  list-style: none;
  margin-bottom: 0;
  display: inline-block;
       transition:all 0.4s ease-in-out!important;
    -o-transition:all 0.4s ease-in-out!important;
    -webkit-transition: all 0.4s ease-in-out!important;
    -moz-transition: all 0.4s ease-in-out!important;
}
.navbar .navbar-inner .navbar-header .navbar-account .connected > li {
  float: left;
  position: relative;
  cursor: default;
}
.navbar .navbar-inner .navbar-header .navbar-account .connected > li > a {
  position: relative;
  display: inline-block;
  color: white;
  cursor: default;
}
.navbar .navbar-inner .navbar-header .navbar-account .connected > li > a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.navbar .navbar-inner .navbar-header .navbar-account .login-area {
    margin-top: 50px;
    margin-right: 30px;
  height: 45px;
  opacity: 1;
  position: relative;
  cursor: pointer;
}

.navbar .navbar-inner .navbar-header .navbar-account .login-link {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting a {
  position: relative;
  width: 50px;
  height: 45px;
  display: inline-block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting a:hover {
  text-decoration: none;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting a .icon {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 45px;
  text-align: center;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting-container {
  -webkit-transform: rotateY(90deg);
  -moz-transform: rotateY(90deg);
  -o-transform: rotateY(90deg);
  -ms-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  display: inline-block;
  width: 505px;
  height: 45px;
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  text-align: center;
  padding: 11px 0;
  position: absolute;
  top: 0;
  right: 0;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting-container input[type=checkbox] {
  display: inline-block;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting-container input[type=checkbox] + .text {
  color: #ffffff;
  margin-right: 8px;
  font-weight: 300;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting-container input[type=checkbox] + .text:before {
  border-color: #2dc3e8;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting-container input[type=checkbox]:checked + .text {
  color: #ffffff;
}
.navbar .navbar-inner .navbar-header .navbar-account .setting-container input[type=checkbox]:checked + .text:before {
  border-color: #2dc3e8;
  color: #fb6e52;
}
.navbar .navbar-inner .navbar-header .navbar-account .account-area,
.navbar .navbar-inner .navbar-header .navbar-account .setting-container,
.navbar .navbar-inner .navbar-header .navbar-account .setting {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 0.9s;
  -moz-transition: 0.9s;
  -o-transition: 0.9s;
  transition: 0.9s;
}
.navbar .navbar-inner .navbar-header .navbar-account.setting-open .setting {
  right: 505px;
  background-color: #2dc3e8;
}
.navbar .navbar-inner .navbar-header .navbar-account.setting-open .setting a {
  -webkit-box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.4);
  box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.4);
}
.navbar .navbar-inner .navbar-header .navbar-account.setting-open .setting a:before {
  content: '';
  display: inline-block;
  right: 0;
  position: absolute;
  width: 50px;
  background-color: #ffffff;
  border: 0;
  top: 0;
  height: 3px;
}
.navbar .navbar-inner .navbar-header .navbar-account.setting-open .account-area {
  -webkit-transform: rotateY(-90deg);
  -moz-transform: rotateY(-90deg);
  -o-transform: rotateY(-90deg);
  -ms-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: top right;
  -moz-transform-origin: top right;
  -o-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  right: 450px;
}
.navbar .navbar-inner .navbar-header .navbar-account.setting-open .setting-container {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  padding: 11px;
}


.navbar .nav-logo       { position: absolute; left: 22px; top: 10px;  }
.navbar .nav-text-caps  { position: absolute; left: 115px; top: 15px; }
.navbar .nav-text       { position: absolute; left: 220px; top: 25px; }

.navbar .navbar-login {
    margin-top: 60px;
    margin-right: 10px;
}
.navbar .navbar-brand {
  margin-left: 20px; margin-top: 3px;
}
.navbar .navbar-brand small img {
  /*height: 40px;
  width: 177px;*/
}
.navbar .sidebar-collapse {
  text-align: center;
  padding: 0;
  position: absolute;
  left: 110px;
  top: 85px;
  z-index: 2;
       transition:all 0.4s ease-in-out!important;
    -o-transition:all 0.4s ease-in-out!important;
    -webkit-transition: all 0.4s ease-in-out!important;
    -moz-transition: all 0.4s ease-in-out!important;
}
/*.navbar .sidebar-collapse: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);
}*/
.navbar .sidebar-collapse .collapse-icon {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #ffffff;
  padding: 11px 1px;
  line-height: 5px;
  position: relative;
  -webkit-transition: background-color 0.218s ease;
  -moz-transition: background-color 0.218s ease;
  -o-transition: background-color 0.218s ease;
  transition: background-color 0.218s ease;
  -webkit-transition: -webkit-box-shadow 0.218s ease;
  -moz-transition: -moz-box-shadow 0.218s ease;
  -o-transition: box-shadow 0.218s ease;
  transition: box-shadow 0.218s ease;
  -webkit-transition: color 0.318s ease;
  -moz-transition: color 0.318s ease;
  -o-transition: color 0.318s ease;
  transition: color 0.318s ease;

}
.navbar .sidebar-collapse.active:hover {
  box-shadow: none;
}

.navbar .sidebar-collapse.active .collapse-icon {
  font-size: 14px;
  -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);
  padding: 11px;
  width: 42px;
}
.navbar.navbar-fixed-top {
  z-index: 1003;
}
.navbar.navbar-fixed-top + .main-container {
  margin-top: 120px;
}

/*#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 Sidebar*/
.page-sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 310px;
  display: block;
}
.page-sidebar.sidebar-fixed {
  position: fixed;
  top: 120px;
  float: none !important;
  z-index: 1000;
}
.page-sidebar.sidebar-fixed:before {
  height: 5000px;
  top: 120px;
  bottom: auto;
}
.page-sidebar.hide {
  display: none !important;
}
.page-sidebar.hide:before {
  display: none;
}
.page-sidebar.hide + .page-content {
  margin-left: 0 !important;
}
.page-sidebar.hide + .page-content .breadcrumbs-fixed {
  left: 0 !important;
}

.page-sidebar:before {
  content: "";
  position: fixed;
  display: block;
  width: 310px;
  bottom: 0;
  top: 0;
  left: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-sidebar .sidebar-header-wrapper {
  margin-left: 5px;
  height: 40px;
  margin-bottom: 0;
  position: relative;
}
.page-sidebar .sidebar-header-wrapper .searchinput {
  height: 41px;
  z-index: 2;
  background-color: #ffffff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ffffff;
  padding-left: 40px;
  width: 100%;
}
.page-sidebar .sidebar-header-wrapper .searchinput:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-color: #ffffff;
}
.page-sidebar .sidebar-header-wrapper .searchinput:focus ~ .searchhelper {
  display: block;
  z-index: 124;
}
.page-sidebar .sidebar-header-wrapper .searchinput::-webkit-input-placeholder {
  color: #d0d0d0;
  font-weight: 300;
  font-family: 'Open Sans', 'Segoe UI' /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
}
.page-sidebar .sidebar-header-wrapper .searchinput::-moz-placeholder {
  /* Firefox 19+ */
  color: #d0d0d0;
  font-weight: 300;
  font-family: 'Open Sans', 'Segoe UI' /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
}
.page-sidebar .sidebar-header-wrapper .searchinput:-moz-placeholder {
  /* Firefox 19+ */
  color: #d0d0d0;
  font-weight: 300;
  font-family: 'Open Sans', 'Segoe UI' /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
}
.page-sidebar .sidebar-header-wrapper .searchinput:-ms-input-placeholder {
  color: #d0d0d0;
  font-weight: 300;
  font-family: 'Open Sans', 'Segoe UI' /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
}
.page-sidebar .sidebar-header-wrapper .searchicon {
  cursor: pointer;
  display: inline-block;
  height: 12px;
  left: 20px;
  position: absolute;
  top: 14px;
  width: 12px;
  color: #2dc3e8;
  z-index: 124;
}
.page-sidebar .sidebar-header-wrapper .searchhelper {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  color: #999;
  display: none;
  opacity: 1;
  padding: 10px;
  position: absolute;
  right: 0;
  left: 0;
  top: 40px;
  z-index: 4;
}
.page-sidebar .sidebar-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 5px;
}
.page-sidebar .sidebar-menu a {
  display: block;
  height: 38px;
  line-height: 36px;
  margin: 0;
  padding: 0 16px 0 7px;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
  font-size: 11px;
  text-decoration: none;
  color: #737373;
  z-index: 123;

}
.page-sidebar .sidebar-menu a:hover {
  color: #262626;
}
.page-sidebar .sidebar-menu a:hover:before {
  display: block;
}
.page-sidebar .sidebar-menu a .menu-icon {
  display: inline-block;
  vertical-align: middle;
  min-width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin-top: -3px;
}
.page-sidebar .sidebar-menu a .menu-expand {
  display: inline-block;
  position: absolute;
  font-size: 11px;
  line-height: 10px;
  height: 10px;
  width: 10px;
  right: 12px;
  top: 15px;
  margin: 0;
  text-align: center;
  padding: 0;
  -webkit-text-shadow: none;
  text-shadow: none;
  color: #666666;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
}
.page-sidebar .sidebar-menu a .menu-expand:before {
  content: "\f105" /*rtl:"\f104"*/;
}

.page-sidebar .sidebar-menu li {
  display: block;
  padding: 0;
  margin: 0;
  border: 0;
  position: relative;
}
.page-sidebar .sidebar-menu li:before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -4px;
  width: 4px;
  max-width: 4px;
  overflow: hidden;
  background-color: #2dc3e8;
}
.page-sidebar .sidebar-menu li.open {
  background-color: #ffffff;
}
.page-sidebar .sidebar-menu li.open > a {
  color: #262626;
}
.page-sidebar .sidebar-menu li.open > a .menu-expand {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.page-sidebar .sidebar-menu li.open > .submenu {
  display: block !important;

}
.page-sidebar .sidebar-menu li.active:not(.open):before {
  display: block;
}
.page-sidebar .sidebar-menu li.active > a {
  display: block;
  content: "";
  color: #262626;
  background-color: #f5f5f5;
}
.page-sidebar .sidebar-menu li:not(.open):hover:before {
  display: block;
  background-color: #fb6e52;
}
.page-sidebar .sidebar-menu > li > a {
  border-top: 1px solid #f3f3f3;
}
.page-sidebar .sidebar-menu > li > a:hover {
  border-color: #f3f3f3;
  background-color: #fbfbfb;
}
.page-sidebar .sidebar-menu > li:last-child > a {
  border-bottom: 1px solid #f3f3f3;
}
.page-sidebar .sidebar-menu > li > .submenu {
  background-color: #fbfbfb;
  -webkit-box-shadow: inset 0 4px 4px -2px rgba(0, 0, 0, 0.15), inset 0 -4px 4px -2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 4px 4px -2px rgba(0, 0, 0, 0.15), inset 0 -4px 4px -2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 4px 4px -2px rgba(0, 0, 0, 0.15), inset 0 -4px 4px -2px rgba(0, 0, 0, 0.15);
}
.page-sidebar .sidebar-menu > li > .submenu:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 23px;
  top: 0;
  bottom: 19px;
  border-left: 1px solid #e2e2e2;
}
.page-sidebar .sidebar-menu > li > .submenu > li > a:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 5px;
  height: 5px;
  left: 21px;
  top: 17px;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  z-index: 2;
}
.page-sidebar .sidebar-menu > li > .submenu > li.active > a:before {
  background-color: #e2e2e2;
}
.page-sidebar .sidebar-menu > li > .submenu > li.active:first-child a {
  -webkit-box-shadow: inset 0 4px 4px -2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 4px 4px -2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 4px 4px -2px rgba(0, 0, 0, 0.15);
}
.page-sidebar .sidebar-menu > li > .submenu > li.active:last-child a {
  -webkit-box-shadow: inset 0 -4px 4px -2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -4px 4px -2px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -4px 4px -2px rgba(0, 0, 0, 0.15);
}
.page-sidebar .sidebar-menu > li.open > a {
  background-color: #ffffff;
}
.page-sidebar .sidebar-menu .submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #fbfbfb;
  border-top: 0;
  z-index: 123;
}
.page-sidebar .sidebar-menu .submenu li {
  margin-left: 0;
  position: relative;
}
.page-sidebar .sidebar-menu .submenu li.open:before {
  display: none;
}
.page-sidebar .sidebar-menu .submenu li.active > a {
  color: #262626;
  background-color: #f5f5f5;
}
.page-sidebar .sidebar-menu .submenu li.active > .submenu {
  display: block;
}
.page-sidebar .sidebar-menu .submenu > li > a {
  padding-left: 40px;
}
.page-sidebar .sidebar-menu .submenu > li.open > a {
  background-color: #fbfbfb;
}
.page-sidebar .sidebar-menu .submenu > li .submenu {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.page-sidebar .sidebar-menu .submenu > li .submenu > li > a {
  padding-left: 50px;
}
.page-sidebar .sidebar-menu .submenu > li .submenu > li .submenu > li > a {
  padding-left: 70px;
}
.page-sidebar.menu-compact {
  width: 42px;
}
.page-sidebar.menu-compact + .page-content {
  margin-left: 43px;
}
.page-sidebar.menu-compact + .page-content {
  left: 47px;
}
.page-sidebar.menu-compact + .page-content .page-header-fixed {
  left: 47px;
}
.page-sidebar.menu-compact:before {
  width: 42px;
}
.page-sidebar.menu-compact .sidebar-header-wrapper {
  width: 42px;
}
.page-sidebar.menu-compact .sidebar-header-wrapper:hover {
  width: 238px;
}
.page-sidebar.menu-compact .sidebar-header-wrapper:hover .searchinput {
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.page-sidebar.menu-compact .sidebar-header-wrapper .searchinput:focus {
  width: 238px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.page-sidebar.menu-compact .sidebar-header-wrapper .searchinput:focus ~ .searchhelper {
  width: 238px;
}
.page-sidebar.menu-compact .sidebar-header-wrapper .searchicon {
  left: 15px;
}
.page-sidebar.menu-compact .sidebar-menu {
  width: 42px;
}
.page-sidebar.menu-compact .sidebar-menu > li.open > .menu-text {
  display: none !important;
}
.page-sidebar.menu-compact .sidebar-menu > li.open > .submenu {
  display: none !important;
}
.page-sidebar.menu-compact .sidebar-menu > li:hover > a {
  color: #262626;
}
.page-sidebar.menu-compact .sidebar-menu > li:hover > a > .menu-text {
  display: block;
}
.page-sidebar.menu-compact .sidebar-menu > li:hover > .submenu {
  display: block !important;
}
.page-sidebar.menu-compact .sidebar-menu > li > a {
  position: relative;
  z-index: 123;
}
.page-sidebar.menu-compact .sidebar-menu > li > a .menu-text {
  display: none;
  position: absolute;
  left: 42px;
  top: 0;
  width: 195px;
  height: 38px;
  line-height: 38px;
  background-color: #ffffff;
  z-index: 121;
  padding-left: 25px;
  -webkit-box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px -5px 5px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px -5px 5px -5px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px -5px 5px -5px rgba(0, 0, 0, 0.3);
}
.page-sidebar.menu-compact .sidebar-menu > li > a .menu-expand {
  display: none;
}
.page-sidebar.menu-compact .sidebar-menu > li > a.menu-dropdown {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.page-sidebar.menu-compact .sidebar-menu > li > a.menu-dropdown > .menu-text {
  border: 0;
  top: 0;
  left: 42px;
  width: 295px;
  border-bottom: 1px solid #f3f3f3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.page-sidebar.menu-compact .sidebar-menu > li > a:hover {
  background-color: #feb900;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu {
  background: #fbfbfb;
  position: absolute;
  z-index: 120;
  left: 42px;
  top: 0;
  width: 295px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding-top: 38px;
  display: none;
  border-left: 1px solid #f3f3f3;
  -webkit-box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px -5px 5px -5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px -5px 5px -5px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px 5px 5px -5px rgba(0, 0, 0, 0.3), 5px -5px 5px -5px rgba(0, 0, 0, 0.3);
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu li > a {
  margin-left: 0;
  padding-left: 24px;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu li.open > .submenu {
  display: block;
  left: 0;
  position: relative;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu li .submenu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu li:hover {
  background-color: #ffffff;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu li:hover:before {
  display: block;
  left: 0;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu li.active:not(.open):before {
  left: 0;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu:before {
  display: none;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu > li > a {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.page-sidebar.menu-compact .sidebar-menu > li > .submenu > li > a:before {
  display: none;
}

.mvc-page-content{
  display: block;
  margin-left: 300px;
  margin-right: 0;
  margin-top: 0;
  min-height: 100%;
  padding: 0;
}

.pdf-page-content{
  display: block;
  margin-left:0px;
  margin-right: 0;
  margin-top: 0;
  min-height: 100%;
  padding: 0;
}
.page-sidebar.menu-compact + .mvc-page-content {
    margin-left: 63px;
}


/*#endregion Sidebar*/
/*#region Page Content*/
.page-content {
  display: block;
  margin-left: 300px;
  margin-right: 0;
  margin-top: 0;
  min-height: 100%;
  padding: 0;
}

/*#endregion Page Content*/
/*#region Breadcrumbs*/
.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(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);*/
}
.page-breadcrumbs.breadcrumbs-fixed {
  position: fixed;
  /*right: 100px;*/
  left: 130px;
  top: 78px;
  z-index: 1999;
  color: white;
       transition:all 0.4s ease-in-out!important;
    -o-transition:all 0.4s ease-in-out!important;
    -webkit-transition: all 0.4s ease-in-out!important;
    -moz-transition: all 0.4s ease-in-out!important;
}
.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: #fff;
  -webkit-text-shadow: none;
  text-shadow: none;
}
.breadcrumb > li + li:before {
  color: #fff;
}
.breadcrumb > li > .divider {
  padding: 0 4px;
}
.breadcrumb > li > a {
  display: inline-block;
  color: #fff !important;
}
.breadcrumb > li:first-child > a {
  padding-left: 4px;
}
.breadcrumb > li > i {
  margin-left: 4px;
  margin-right: 2px;
  font-size: 20px;
  position: relative;
  top: 2px;
}
.breadcrumb .expand-icon {
  height: 22px;
  padding: 0;
  margin: 0;
  position: relative;
  top: 1px;
  font-size: 14px;
  color: #b2b6bf;
}
/*#endregion Breadcrumb*/
/*#region page-header*/
.page-header {
  position: relative;
  margin: 0;
  padding-bottom: 1px;
  padding-left: 12px;

    background-color: #ededed;
  
  /*background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(left, #ffffff, #f3f3f3);
  background-image: -moz-linear-gradient(left, #ffffff, #f3f3f3);
  background-image: -o-linear-gradient(left, #ffffff, #f3f3f3);
  background-image: linear-gradient(to right, #ffffff, #f3f3f3);*/
  z-index: 0;
  min-height: 55px;
  /*border-bottom: 1px solid #e5e5e5;*/
  border: 0 !important;
  /*height: 55px;*/

}
.page-header .header-title {
  display: inline-block;
  position: relative;
  height: 50px;
  font-family: Segoe UI ;
  font-size: 24px;
  padding-left: 5px;
  padding-top: 10px;
}
.page-header .header-title h1 {
  padding: 0;
  margin: 0 4px;
  font-size: 17px /*rtl:13px*/;
  font-weight: lighter;
  color: #737373;
  line-height: 37px;
  display: inline-block;
}
.page-header .header-title h1 small {
  margin: 0 1px;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 300;
  color: #888;
}
.page-header .header-buttons {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: -1px;
}
/* nu folositi linkuri <a> in page-header (nu se vad bine drop-downmenu)
   -> folositi <button class="btn btn-entity"><i class="fa fa-check"></i> Salveaza</button>
 .page-header .header-buttons a {
  position: relative;
  vertical-align: middle;
  display: inline-block;
  z-index: 1029;
  height: 40px;
  
  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-header .header-buttons a:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  right: 0;
  height: 4px;
  max-height: 4px;
  overflow: hidden;
  background-color: #2dc3e8;
}
.page-header .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: #2dc3e8;
}
.page-header .header-buttons a.active {
  color: #2dc3e8;
}
.page-header .header-buttons a i {
  font-size: 17px;
  font-style: normal;
  font-weight: normal;
  line-height: 27px;
}*/
.page-header .header-buttons a.fullscreen:before {
  background-color: #fb6e52;
}
.page-header .header-buttons a.fullscreen:hover,
.page-header .header-buttons a.fullscreen.active {
  color: #fb6e52;
}
.page-header .header-buttons a.refresh:before {
  background-color: #ffce55;
}
.page-header .header-buttons a.refresh:hover,
.page-header .header-buttons a.refresh.active {
  color: #ffce55;
}
.page-header .header-buttons a.sidebar-toggler:before {
  background-color: #2dc3e8;
}
.page-header .header-buttons a.sidebar-toggler:hover,
.page-header .header-buttons a.sidebar-toggler.active {
  color: #2dc3e8;
}
.page-header.mail-header {
  /*border-bottom: 1px solid #eeeeee;*/
}
.page-header.mail-header .header-buttons a:before {
  display: none;
}
.page-header.mail-header .header-buttons a:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.page-header.page-header-fixed {
  position: fixed;
  right: 0;
  left: 285px;
  top: 118px;
  z-index: 998;
  margin-top: 0 !important;
    background-color: rgba(250, 250, 250, 1);
         transition:all 0.4s ease-in-out!important;
    -o-transition:all 0.4s ease-in-out!important;
    -webkit-transition: all 0.4s ease-in-out!important;
    -moz-transition: all 0.4s ease-in-out!important;
}
.page-header.page-header-fixed + .page-body {
  margin-top: 140px;
}

/*#endregion page-header*/
.page-body {
    background:transparent;
  /*background: #eeeeee;*/
  padding: 1px 20px 24px;
    padding-top: 30px;
}
/*--------Elements--------*/
/*#region Widget*/
.widget {
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin: 3px 0 30px 0;
  /*#region Bordered Widgetbox*/
  /*#endregion Bordered Widgetbox*/
  /*#region Radius Header*/
  /*#endregion Radius Header*/
}
.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.transparent .widget-header,
.widget.transparent .widget-body {
  background-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.widget.transparent .widget-header {
  border-bottom: 1px solid #cccccc;
}
.widget.bordered-top {
  border-top: 3px solid #ffffff;
}
.widget.bordered-bottom {
  border-bottom: 3px solid #ffffff;
}
.widget.bordered-left {
  border-left: 3px solid #ffffff;
}
.widget.bordered-right {
  border-top: 3px solid #ffffff;
}
.widget.radius-bordered .widget-header {
  -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;
}
.widget.radius-bordered .widget-body {
  -webkit-border-radius: 0 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 3px 3px;
  -moz-background-clip: padding;
  border-radius: 0 0 3px 3px;
  background-clip: padding-box;
}
.widget.flat .widget-body,
.widget.flat .widget-header {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.widget.lightshadow .widget-body,
.widget.lightshadow .widget-header {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.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: #2dc3e8;
}
.widget-header {
  position: relative;
  min-height: 35px;
  background: #D3CECA;
  -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);
  color: #555555;
  padding-left: 12px;
  text-align: right;
  /*#region Bordered Header */
  /*#endregion Bordered Header*/
}
.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 {
     text-transform: uppercase;
     font-size: 13px;
     font-weight: 800 !important;
     line-height: normal;
     padding: 5px 12px;
     margin: 0;
     float: left;
     text-align: left;

}
.widget-header.lined {
  border: 0;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  padding-left: 2%;
}
.widget-header.lined:before {
  content: "";
  position: absolute;
  display: block;
  width: 96%;
  bottom: 0;
  top: 35px;
  height: 1px;
  left: 2%;
  z-index: 1;
  border-bottom: 1px solid #e5e5e5;
}
.widget-header.lined .widget-buttons {
  padding-right: 2%;
}
.widget-header.lined + .widget-body {
  padding-left: 2%;
  padding-right: 2%;
}
.widget-header.separated {
  margin-bottom: 5px;
}
.widget-header[class*="bg-"] {
  border: 0;
}
.widget-header[class*="bg-"] .widget-caption,
.widget-header[class*="bg-"] i {
  color: #ffffff;
}
.widget-header.bordered-left {
  border-left: 3px solid #ffffff;
}
.widget-header.bordered-right {
  border-right: 3px solid #ffffff;
}
.widget-header.bordered-top {
  border-top: 3px solid #ffffff;
}
.widget-header.bordered-bottom {
  border-bottom: 1px solid #ffffff;
}
.widget-header.header-large {
  min-height: 49px;
  padding-left: 18px;
}
.widget-header.header-large h5 {
  line-height: 48px;
  font-size: 16px;
}
.widget-header.header-large > .widget-buttons {
  line-height: 48px;
  height: 48px;
}
.widget-header.header-large > .widget-buttons a {
  min-width: 26px;
}
.widget-header.header-large > .widget-buttons a i {
  font-size: 20px;
}
.widget-header.header-small {
  min-height: 26px;
  padding-left: 10px;
    box-shadow: none;
    height: auto;
    line-height: normal;
    padding: 0;
    display: block;
}
.widget-header.header-small h5 {
  line-height: 28px;
  font-size: 12px;
}
.widget-header.header-small > .widget-buttons {
  line-height: 26px;
  height: 26px;
}
.widget-header.header-small > .widget-buttons a {
  min-width: 16px;
  height: 16px;
}
.widget-header.header-small > .widget-buttons a i {
  font-size: 14px;
}
.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.compact {
  margin-top: 4px;
  background-color: #f5f5f5;
  line-height: 27px;
  -webkit-transition: background-color 0.218s ease;
  -moz-transition: background-color 0.218s ease;
  -o-transition: background-color 0.218s ease;
  transition: background-color 0.218s ease;
  -webkit-transition: -webkit-box-shadow 0.218s ease;
  -moz-transition: -moz-box-shadow 0.218s ease;
  -o-transition: box-shadow 0.218s ease;
  transition: box-shadow 0.218s ease;
  -webkit-transition: color 0.318s ease;
  -moz-transition: color 0.318s ease;
  -o-transition: color 0.318s ease;
  transition: color 0.318s ease;
  height: 27px;
}
.widget-buttons.compact:hover {
  background-color: #2dc3e8;
  -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-buttons.compact:hover i {
  color: #ffffff;
}
.widget-buttons.compact:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -4px;
  width: 4px;
  max-width: 4px;
  overflow: hidden;
  background-color: #2dc3e8;
}
.widget-buttons.compact a {
  min-width: 14px;
  line-height: 14px;
}
.widget-buttons.compact i {
  color: #cccccc;
  font-size: 14px;
}
.widget-buttons.no-padding {
  padding: 0;
}
.widget-buttons.padding-5 {
  padding: 0 5px;
}
.widget-buttons.no-border:before {
  display: none;
}
.widget-buttons label {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  line-height: 6px;
}
.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-buttons .progress {
  vertical-align: middle;
  display: inline-block;
  margin: 0;
  min-width: 100px;
  margin-top: -3px;
}
.widget-buttons .btn-group {
  margin-top: -2px;
}
.widget-buttons .btn-group .dropdown-menu {
  right: 0;
  left: auto;
}
.widget-buttons .badge {
  margin-top: -2px;
}
.widget-buttons .label {
  padding: 5px 6px 5px 6px;
}
.widget-buttons .pagination,
.widget-buttons .pager {
  float: right;
  margin: 5px 2px 1px;
}
.widget-buttons .btn {
  margin-top: -2px;
}
.widget-body {
   margin-bottom: 15px;
   -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: #fbfbfb;  /*#edede4; nu e ok pt toate  tb doar pt filtre*/
  /*-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);*/
  /*#region Bordered Widget Body*/
  /*#endregion Bordered Widget Body*/
  /*#region Colored Widget Body*/
  /*#endregion Colored Widget Body*/
  padding: 12px;
}
.widget-body.bordered-left {
  border-left: 3px solid #ffffff;
}
.widget-body.bordered-right {
  border-right: 3px solid #ffffff;
}
.widget-body.bordered-bottom {
  border-bottom: 3px solid #ffffff;
}
.widget-body.bordered-top {
  border-top: 3px solid #ffffff;
}
.widget-body[class*="bg-"] {
  color: #ffffff;
}
.widget-body.no-padding {
  padding: 0;
}
.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 DataBoxes*/
.databox-container {
  text-align: center;
  font-size: 0;
}
.databox {
  display: inline-block;
  width: 100%;
  /*height: 65px;*/
  height: 100%;
  padding: 0;
  font-size: 0;
  margin-bottom: 10px;
  vertical-align: top;
  min-width: 130px;
}
.databox .databox-icon {
  margin: 0;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.databox .databox-icon > .fa,
.databox .databox-icon .typcn,
.databox .databox-icon .glyphicon,
.databox .databox-icon .wi {
  display: inline-block;
  margin: 0;
  text-align: center;
  position: relative;
}
.databox .databox-icon > .fa:before,
.databox .databox-icon .typcn:before,
.databox .databox-icon .glyphicon:before,
.databox .databox-icon .wi:before {
  font-size: 40px;
  display: block;
  text-align: center;
}
.databox .databox-sparkline {
  padding-top: 0;
  margin: 0 auto;
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  text-align: center;
  font-size: 24px;
}
.databox .databox-piechart {
  padding-top: 0;
  margin: 0 auto;
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
}
.databox .databox-header {
  display: block;
  font-size: 18px;
  font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
  font-weight: 400 /*rtl:300*/;
  margin: 8px 5px;
  position: relative;
}
.databox .databox-header i {
  margin-right: 5px;
}
.databox .databox-number {
  display: block;
  font-size: 17px;
  line-height: 26px;
  margin: 2px;
  position: relative;
  font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
  font-weight: 700 /*rtl:300*/;
}
.databox .databox-number i {
  margin-right: 5px;
}
.databox .databox-number.number-xs {
  font-size: 11px;
}
.databox .databox-number.number-sm {
  font-size: 14px;
}
.databox .databox-number.number-lg {
  font-size: 20px;
}
.databox .databox-number.number-xlg {
  font-size: 23px;
}
.databox .databox-number.number-xxlg {
  font-size: 30px;
}
.databox .databox-title {
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin: 2px;
  position: relative;
}
.databox .databox-title i {
  margin-right: 5px;
  font-size: 13px;
}
.databox .databox-text {
  display: block;
  font-size: 11px;
  margin: 4px 0 2px;
  position: relative;
}
.databox .databox-text i {
  margin-right: 5px;
  font-size: 13px;
}
.databox .databox-inlinetext {
  font-size: 11px;
  margin: 2px;
  position: relative;
}
.databox .databox-inlinetext i {
  margin-right: 5px;
  font-size: 13px;
}
.databox .databox-stat {
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 7px;
  padding: 2px 5px;
}
.databox .databox-stat.stat-left {
  left: 7px;
  right: auto;
}
.databox .databox-stat .stat-text {
  display: inline-block;
  font-size: 13px;
  padding-right: 5px;
  font-weight: 500;
}
.databox .databox-stat .stat-icon {
  display: inline-block;
  font-size: 13px;
}
.databox .databox-stat .stat-icon.icon-lg {
  font-size: 16px;
}
.databox .databox-stat .stat-icon.icon-xlg {
  font-size: 18px;
}
.databox .databox-stat.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;
}
.databox .databox-stat[class*="bg-"] {
  color: #ffffff;
}
.databox .databox-state {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 24px;
  width: 24px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  background-color: #e5e5e5;
  text-align: center;
  -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);
  border: 2px solid #ffffff;
}
.databox .databox-state i {
  font-size: 13px;
  color: #ffffff;
  line-height: 20px;
}
.databox .databox-row {
  width: 100%;
  margin: 0;
  position: relative;
}
.databox .databox-row[class*="bg-"] {
  color: #ffffff;
}
.databox .databox-row.bordered-bottom {
  border-bottom: 1px solid #ffffff;
}
.databox .databox-row.bordered-top {
  border-top: 1px solid #ffffff;
}
.databox .databox-row.bordered-left {
  border-left: 1px solid #ffffff;
}
.databox .databox-row.bordered-right {
  border-right: 1px solid #ffffff;
}
.databox .databox-row.bordered-thick {
  border-width: 2px;
}
.databox .databox-row.row-1 {
  height: 8.33%;
}
.databox .databox-row.row-2 {
  height: 16.66%;
}
.databox .databox-row.row-3 {
  height: 25%;
}
.databox .databox-row.row-4 {
  height: 33.33%;
}
.databox .databox-row.row-5 {
  height: 41.66%;
}
.databox .databox-row.row-6 {
  height: 50%;
}
.databox .databox-row.row-7 {
  height: 58.33%;
}
.databox .databox-row.row-8 {
  height: 66.66%;
}
.databox .databox-row.row-9 {
  height: 75%;
}
.databox .databox-row.row-10 {
  height: 83.33%;
}
.databox .databox-row.row-11 {
  height: 91.66%;
}
.databox .databox-row.row-12 {
  height: 100%;
}
.databox .databox-cell {
  height: 100%;
  margin: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}
.databox .databox-cell[class*="bg-"] {
  color: #ffffff;
}
.databox .databox-cell.bordered-bottom {
  border-bottom: 1px solid #ffffff;
}
.databox .databox-cell.bordered-top {
  border-top: 1px solid #ffffff;
}
.databox .databox-cell.bordered-left {
  border-left: 1px solid #ffffff;
}
.databox .databox-cell.bordered-right {
  border-right: 1px solid #ffffff;
}
.databox .databox-cell.bordered-thick {
  border-width: 2px;
}
.databox .databox-cell.cell-1 {
  width: 8.33%;
}
.databox .databox-cell.cell-2 {
  width: 16.66%;
}
.databox .databox-cell.cell-3 {
  width: 25%;
}
.databox .databox-cell.cell-4 {
  width: 33.33%;
}
.databox .databox-cell.cell-5 {
  width: 41.66%;
}
.databox .databox-cell.cell-6 {
  width: 50%;
}
.databox .databox-cell.cell-7 {
  width: 58.33%;
}
.databox .databox-cell.cell-8 {
  width: 66.66%;
}
.databox .databox-cell.cell-9 {
  width: 75%;
}
.databox .databox-cell.cell-10 {
  width: 83.33%;
}
.databox .databox-cell.cell-11 {
  width: 91.66%;
}
.databox .databox-cell.cell-12 {
  width: 100%;
}
.databox.databox-inverted .databox-left {
  -lh-property: 0;
width:-webkit-calc(100% - 65px);
width:-moz-calc(100% - 65px);
width:calc(100% - 65px);

}
.databox.databox-inverted .databox-right {
  width: 65px;
}
.databox.databox-transparent .databox-left {
  background-color: transparent !important;
}
.databox.databox-transparent .databox-right {
  background-color: transparent !important;
}
.databox .databox-left {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin: 0;
  width: 65px;
  /*height: 65px;*/
  padding: 10px;
  color: #2dc3e8;
}
.databox .databox-left[class*="bg-"] {
  color: #ffffff;
}
.databox .databox-right {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  -lh-property: 0;
width:-webkit-calc(100% - 65px);
width:-moz-calc(100% - 65px);
width:calc(100% - 65px);

  height: 65px;
  color: #555555;
  padding: 5px 10px;
}
.databox .databox-right.bordered {
  border-left: 1px solid #ffffff;
}
.databox .databox-right.bordered-thick {
  border-left: 3px solid #ffffff;
}
.databox .databox-right[class*="bg-"] {
  color: #ffffff;
}
.databox.databox-shadowed {
  -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);
}
.databox.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;
}
.databox.radius-bordered .databox-left {
  -webkit-border-radius: 3px 0 0 3px /*rtl:0 3px 3px 0*/;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px 0 0 3px /*rtl:0 3px 3px 0*/;
  -moz-background-clip: padding;
  border-radius: 3px 0 0 3px /*rtl:0 3px 3px 0*/;
  background-clip: padding-box;
}
.databox.radius-bordered .databox-right {
  -webkit-border-radius: 0 3px 3px 0 /*rtl:3px 0 0 3px*/;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 3px 3px 0 /*rtl:3px 0 0 3px*/;
  -moz-background-clip: padding;
  border-radius: 0 3px 3px 0 /*rtl:3px 0 0 3px*/;
  background-clip: padding-box;
}
.databox.radius-bordered .databox-right .databox-row:first-child {
  -webkit-border-radius: 0 3px 0 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 3px 0 0;
  -moz-background-clip: padding;
  border-radius: 0 3px 0 0;
  background-clip: padding-box;
}
.databox.radius-bordered .databox-right .databox-row:last-child {
  -webkit-border-radius: 0 0 3px 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 3px 0;
  -moz-background-clip: padding;
  border-radius: 0 0 3px 0;
  background-clip: padding-box;
}
.databox.databox-graded {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNkZGRkZGQiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(left, #dddddd, #ffffff);
  background-image: -moz-linear-gradient(left, #dddddd, #ffffff);
  background-image: -o-linear-gradient(left, #dddddd, #ffffff);
  background-image: linear-gradient(to right, #dddddd, #ffffff);
}
.databox.databox-halved .databox-left {
  width: 50% !important;
}
.databox.databox-halved .databox-right {
  width: 50% !important;
}
.databox.databox-lg {
  height: 80px;
}
.databox.databox-lg .databox-icon > .fa:before,
.databox.databox-lg .databox-icon .typcn:before,
.databox.databox-lg .databox-icon .glyphicon:before,
.databox.databox-lg .databox-icon .wi:before {
  font-size: 48px;
  padding: 6px 4px 7px;
}
.databox.databox-lg .databox-sparkline {
  margin: 13px auto;
}
.databox.databox-lg .databox-number {
  font-size: 20px;
  margin: 4px 0 6px;
}
.databox.databox-lg .databox-left {
  width: 80px;
  height: 80px;
}
.databox.databox-lg .databox-right {
  -lh-property: 0;
width:-webkit-calc(100% - 80px);
width:-moz-calc(100% - 80px);
width:calc(100% - 80px);
;
  height: 80px;
  padding: 10px 15px;
}
.databox.databox-lg.databox-inverted .databox-left {
  -lh-property: 0;
width:-webkit-calc(100% - 80px);
width:-moz-calc(100% - 80px);
width:calc(100% - 80px);
;
}
.databox.databox-lg.databox-inverted .databox-right {
  width: 80px;
}
.databox.databox-xlg {
  height: 170px;
}
.databox.databox-xlg .databox-icon > .fa:before,
.databox.databox-xlg .databox-icon .typcn:before,
.databox.databox-xlg .databox-icon .glyphicon:before {
  padding: 6px 4px 7px;
}
.databox.databox-xlg .databox-icon .wi:before {
  font-size: 55px !important;
}
.databox.databox-xlg .databox-left {
  width: 170px;
  height: 170px;
}
.databox.databox-xlg .databox-right {
  -lh-property: 0;
width:-webkit-calc(100% - 170px);
width:-moz-calc(100% - 170px);
width:calc(100% - 170px);
;
  height: 170px;
}
.databox.databox-xlg.databox-inverted .databox-left {
  -lh-property: 0;
width:-webkit-calc(100% - 170px);
width:-moz-calc(100% - 170px);
width:calc(100% - 170px);
;
}
.databox.databox-xlg.databox-inverted .databox-right {
  width: 170px;
}
.databox.databox-xxlg {
  height: 250px;
}
.databox.databox-xxlg .databox-icon > .fa:before,
.databox.databox-xxlg .databox-icon .typcn:before,
.databox.databox-xxlg .databox-icon .glyphicon:before,
.databox.databox-xxlg .databox-icon .wi:before {
  font-size: 200px;
  padding: 6px 4px 7px;
}
.databox.databox-xxlg .databox-left {
  width: 250px;
  height: 250px;
}
.databox.databox-xxlg .databox-right {
  -lh-property: 0;
width:-webkit-calc(100% - 250px);
width:-moz-calc(100% - 250px);
width:calc(100% - 250px);
;
  height: 250px;
}
.databox.databox-xxlg.databox-inverted .databox-left {
  -lh-property: 0;
width:-webkit-calc(100% - 250px);
width:-moz-calc(100% - 250px);
width:calc(100% - 250px);
;
}
.databox.databox-xxlg.databox-inverted .databox-right {
  width: 250px;
}
.databox.databox-vertical {
  width: 100%;
  height: 100px;
}
.databox.databox-vertical .databox-top {
  position: relative;
  width: 100%;
  height: 50px;
  display: inline-block;
  text-align: center;
  margin: 0;
  padding: 5px;
  color: #2dc3e8;
}
.databox.databox-vertical .databox-top[class*="bg-"] {
  color: #ffffff;
}
.databox.databox-vertical .databox-bottom {
  position: relative;
  width: 100%;
  height: 50px;
  display: inline-block;
  margin: 0;
  color: #555555;
  padding: 5px 10px;
}
.databox.databox-vertical .databox-bottom.bordered {
  border-top: 1px solid #ffffff;
}
.databox.databox-vertical .databox-bottom.bordered-thick {
  border-top: 3px solid #ffffff;
}
.databox.databox-vertical .databox-bottom[class*="bg-"] {
  color: #ffffff;
}
.databox.databox-vertical .databox-icon > .fa:before,
.databox.databox-vertical .databox-icon .typcn:before,
.databox.databox-vertical .databox-icon .glyphicon:before,
.databox.databox-vertical .databox-icon .wi:before {
  font-size: 38px;
}
.databox.databox-vertical.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;
}
.databox.databox-vertical.radius-bordered .databox-top {
  -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;
}
.databox.databox-vertical.radius-bordered .databox-top .databox-row:first-child .databox-cell:first-child {
  -webkit-border-radius: 3px 0 0 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px 0 0 0;
  -moz-background-clip: padding;
  border-radius: 3px 0 0 0;
  background-clip: padding-box;
}
.databox.databox-vertical.radius-bordered .databox-top .databox-row:first-child .databox-cell:last-child {
  -webkit-border-radius: 0 3px 0 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 3px 0 0;
  -moz-background-clip: padding;
  border-radius: 0 3px 0 0;
  background-clip: padding-box;
}
.databox.databox-vertical.radius-bordered .databox-top img {
  -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;
}
.databox.databox-vertical.radius-bordered .databox-bottom {
  -webkit-border-radius: 0 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 3px 3px;
  -moz-background-clip: padding;
  border-radius: 0 0 3px 3px;
  background-clip: padding-box;
}
.databox.databox-vertical.radius-bordered .databox-bottom .databox-row:last-child .databox-cell:first-child {
  -webkit-border-radius: 0 0 0 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 0 3px;
  -moz-background-clip: padding;
  border-radius: 0 0 0 3px;
  background-clip: padding-box;
}
.databox.databox-vertical.radius-bordered .databox-bottom .databox-row:last-child .databox-cell:last-child {
  -webkit-border-radius: 0 0 3px 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 3px 0;
  -moz-background-clip: padding;
  border-radius: 0 0 3px 0;
  background-clip: padding-box;
}
.databox.databox-vertical.radius-bordered .databox-bottom img {
  -webkit-border-radius: 0 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 3px 3px;
  -moz-background-clip: padding;
  border-radius: 0 0 3px 3px;
  background-clip: padding-box;
}
.databox.databox-vertical.databox-graded {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNlNWU1ZTUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(top, #e5e5e5, #ffffff);
  background-image: -moz-linear-gradient(top, #e5e5e5, #ffffff);
  background-image: -o-linear-gradient(top, #e5e5e5, #ffffff);
  background-image: linear-gradient(to bottom, #e5e5e5, #ffffff);
}
.databox.databox-vertical.databox-halved .databox-top {
  height: 50%;
}
.databox.databox-vertical.databox-halved .databox-bottom {
  height: 50%;
}
.databox.databox-vertical.databox-lg {
  height: 150px;
  width: 100%;
}
.databox.databox-vertical.databox-lg .databox-number {
  font-size: 17px;
  margin: 2px;
}
.databox.databox-vertical.databox-lg .databox-icon > .fa:before,
.databox.databox-vertical.databox-lg .databox-icon .typcn:before,
.databox.databox-vertical.databox-lg .databox-icon .glyphicon:before {
  font-size: 38px !important;
  padding: 0;
}
.databox.databox-vertical.databox-lg .databox-icon .wi:before {
  font-size: 50px !important;
  padding: 0;
}
.databox.databox-vertical.databox-lg .databox-top {
  height: 50px;
}
.databox.databox-vertical.databox-lg .databox-bottom {
  height: 100px;
}
.databox.databox-vertical.databox-lg.databox-inverted .databox-icon > .fa:before,
.databox.databox-vertical.databox-lg.databox-inverted .databox-icon .typcn:before,
.databox.databox-vertical.databox-lg.databox-inverted .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-lg.databox-inverted .databox-icon .wi:before {
  font-size: 85px;
  padding: 0;
}
.databox.databox-vertical.databox-lg.databox-inverted .databox-top {
  height: 100px;
}
.databox.databox-vertical.databox-lg.databox-inverted .databox-bottom {
  height: 50px;
}
.databox.databox-vertical.databox-lg.databox-halved .databox-icon > .fa:before,
.databox.databox-vertical.databox-lg.databox-halved .databox-icon .typcn:before,
.databox.databox-vertical.databox-lg.databox-halved .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-lg.databox-halved .databox-icon .wi:before {
  font-size: 58px;
  padding: 0;
}
.databox.databox-vertical.databox-lg.databox-halved .databox-top {
  height: 75px;
}
.databox.databox-vertical.databox-lg.databox-halved .databox-bottom {
  height: 75px;
}
.databox.databox-vertical.databox-xlg {
  height: 200px;
  width: 100%;
}
.databox.databox-vertical.databox-xlg .databox-icon > .fa:before,
.databox.databox-vertical.databox-xlg .databox-icon .typcn:before,
.databox.databox-vertical.databox-xlg .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xlg .databox-icon .wi:before {
  font-size: 38px;
  padding: 0;
}
.databox.databox-vertical.databox-xlg .databox-top {
  height: 50px;
}
.databox.databox-vertical.databox-xlg .databox-bottom {
  height: 150px;
}
.databox.databox-vertical.databox-xlg.databox-inverted .databox-icon > .fa:before,
.databox.databox-vertical.databox-xlg.databox-inverted .databox-icon .typcn:before,
.databox.databox-vertical.databox-xlg.databox-inverted .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xlg.databox-inverted .databox-icon .wi:before {
  font-size: 120px;
  padding: 10px;
}
.databox.databox-vertical.databox-xlg.databox-inverted .databox-top {
  height: 150px;
}
.databox.databox-vertical.databox-xlg.databox-inverted .databox-bottom {
  height: 50px;
}
.databox.databox-vertical.databox-xlg.databox-halved .databox-icon > .fa:before,
.databox.databox-vertical.databox-xlg.databox-halved .databox-icon .typcn:before,
.databox.databox-vertical.databox-xlg.databox-halved .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xlg.databox-halved .databox-icon .wi:before {
  font-size: 85px;
  padding: 0;
}
.databox.databox-vertical.databox-xlg.databox-halved .databox-top {
  height: 100px;
}
.databox.databox-vertical.databox-xlg.databox-halved .databox-bottom {
  height: 100px;
}
.databox.databox-vertical.databox-xxlg {
  height: 300px;
  width: 100%;
}
.databox.databox-vertical.databox-xxlg .databox-icon > .fa:before,
.databox.databox-vertical.databox-xxlg .databox-icon .typcn:before,
.databox.databox-vertical.databox-xxlg .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xxlg .databox-icon .wi:before {
  font-size: 38px;
  padding: 0;
}
.databox.databox-vertical.databox-xxlg .databox-top {
  height: 50px;
}
.databox.databox-vertical.databox-xxlg .databox-bottom {
  height: 250px;
}
.databox.databox-vertical.databox-xxlg.databox-inverted .databox-icon > .fa:before,
.databox.databox-vertical.databox-xxlg.databox-inverted .databox-icon .typcn:before,
.databox.databox-vertical.databox-xxlg.databox-inverted .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xxlg.databox-inverted .databox-icon .wi:before {
  font-size: 220px;
  padding: 10px;
}
.databox.databox-vertical.databox-xxlg.databox-inverted .databox-top {
  height: 250px;
}
.databox.databox-vertical.databox-xxlg.databox-inverted .databox-bottom {
  height: 50px;
}
.databox.databox-vertical.databox-xxlg.databox-halved .databox-icon > .fa:before,
.databox.databox-vertical.databox-xxlg.databox-halved .databox-icon .typcn:before,
.databox.databox-vertical.databox-xxlg.databox-halved .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xxlg.databox-halved .databox-icon .wi:before {
  font-size: 120px;
  padding: 10px;
}
.databox.databox-vertical.databox-xxlg.databox-halved .databox-top {
  height: 150px;
}
.databox.databox-vertical.databox-xxlg.databox-halved .databox-bottom {
  height: 150px;
}
.databox.databox-vertical.databox-xxxlg {
  height: 500px;
  width: 100%;
}
.databox.databox-vertical.databox-xxxlg .databox-icon > .fa:before,
.databox.databox-vertical.databox-xxxlg .databox-icon .typcn:before,
.databox.databox-vertical.databox-xxxlg .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xxxlg .databox-icon .wi:before {
  font-size: 38px;
  padding: 0;
}
.databox.databox-vertical.databox-xxxlg .databox-top {
  height: 50px;
}
.databox.databox-vertical.databox-xxxlg .databox-bottom {
  height: 450px;
}
.databox.databox-vertical.databox-xxxlg.databox-inverted .databox-icon > .fa:before,
.databox.databox-vertical.databox-xxxlg.databox-inverted .databox-icon .typcn:before,
.databox.databox-vertical.databox-xxxlg.databox-inverted .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xxxlg.databox-inverted .databox-icon .wi:before {
  font-size: 420px;
  padding: 10px;
}
.databox.databox-vertical.databox-xxxlg.databox-inverted .databox-top {
  height: 450px;
}
.databox.databox-vertical.databox-xxxlg.databox-inverted .databox-bottom {
  height: 50px;
}
.databox.databox-vertical.databox-xxxlg.databox-halved .databox-icon > .fa:before,
.databox.databox-vertical.databox-xxxlg.databox-halved .databox-icon .typcn:before,
.databox.databox-vertical.databox-xxxlg.databox-halved .databox-icon .glyphicon:before,
.databox.databox-vertical.databox-xxxlg.databox-halved .databox-icon .wi:before {
  font-size: 220px;
  padding: 10px;
}
.databox.databox-vertical.databox-xxxlg.databox-halved .databox-top {
  height: 250px;
}
.databox.databox-vertical.databox-xxxlg.databox-halved .databox-bottom {
  height: 250px;
}
.databox .chart {
  font-size: 13px;
}
/*#endregion DataBoxes*/
/*#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;
  /*#region Colred Tab*/
  /*#endregion Colred Tab*/
}
.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 #2dc3e8;
  border-bottom-color: transparent;
  background-color: #fbfbfb;
  z-index: 12;
  line-height: 16px;
  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-white > a {
  border-color: #ffffff !important;
}
.nav-tabs > li.active.tab-white > a > .fa,
.nav-tabs > li.active.tab-white > a .glyphicon,
.nav-tabs > li.active.tab-white > a .typcn,
.nav-tabs > li.active.tab-white > a .wi {
  color: #ffffff;
}
.nav-tabs > li.active tab-snow > a {
  border-color: #fbfbfb !important;
}
.nav-tabs > li.active tab-snow > a > .fa,
.nav-tabs > li.active tab-snow > a .glyphicon,
.nav-tabs > li.active tab-snow > a .typcn,
.nav-tabs > li.active tab-snow > a .wi {
  color: #fbfbfb;
}
.nav-tabs > li.active.tab-whitesmoke > a {
  border-color: #f5f5f5 !important;
}
.nav-tabs > li.active.tab-whitesmoke > a > .fa,
.nav-tabs > li.active.tab-whitesmoke > a .glyphicon,
.nav-tabs > li.active.tab-whitesmoke > a .typcn,
.nav-tabs > li.active.tab-whitesmoke > a .wi {
  color: #f5f5f5;
}
.nav-tabs > li.active.tab-seashell > a {
  border-color: #f3f3f3 !important;
}
.nav-tabs > li.active.tab-seashell > a > .fa,
.nav-tabs > li.active.tab-seashell > a .glyphicon,
.nav-tabs > li.active.tab-seashell > a .typcn,
.nav-tabs > li.active.tab-seashell > a .wi {
  color: #f3f3f3;
}
.nav-tabs > li.active.tab-ivory > a {
  border-color: #eeeeee !important;
}
.nav-tabs > li.active.tab-ivory > a > .fa,
.nav-tabs > li.active.tab-ivory > a .glyphicon,
.nav-tabs > li.active.tab-ivory > a .typcn,
.nav-tabs > li.active.tab-ivory > a .wi {
  color: #eeeeee;
}
.nav-tabs > li.active.tab-platinum > a {
  border-color: #e5e5e5 !important;
}
.nav-tabs > li.active.tab-platinum > a > .fa,
.nav-tabs > li.active.tab-platinum > a .glyphicon,
.nav-tabs > li.active.tab-platinum > a .typcn,
.nav-tabs > li.active.tab-platinum > a .wi {
  color: #e5e5e5;
}
.nav-tabs > li.active.tab-lightgray > a {
  border-color: #d0d0d0 !important;
}
.nav-tabs > li.active.tab-lightgray > a > .fa,
.nav-tabs > li.active.tab-lightgray > a .glyphicon,
.nav-tabs > li.active.tab-lightgray > a .typcn,
.nav-tabs > li.active.tab-lightgray > a .wi {
  color: #d0d0d0;
}
.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-darkgray > a {
  border-color: #999999 !important;
}
.nav-tabs > li.active.tab-darkgray > a > .fa,
.nav-tabs > li.active.tab-darkgray > a .glyphicon,
.nav-tabs > li.active.tab-darkgray > a .typcn,
.nav-tabs > li.active.tab-darkgray > a .wi {
  color: #999999;
}
.nav-tabs > li.active.tab-silver > a {
  border-color: #777777 !important;
}
.nav-tabs > li.active.tab-silver > a > .fa,
.nav-tabs > li.active.tab-silver > a .glyphicon,
.nav-tabs > li.active.tab-silver > a .typcn,
.nav-tabs > li.active.tab-silver > a .wi {
  color: #777777;
}
.nav-tabs > li.active.tab-sonic-silver > a {
  border-color: #737373 !important;
}
.nav-tabs > li.active.tab-sonic-silver > a > .fa,
.nav-tabs > li.active.tab-sonic-silver > a .glyphicon,
.nav-tabs > li.active.tab-sonic-silver > a .typcn,
.nav-tabs > li.active.tab-sonic-silver > a .wi {
  color: #737373;
}
.nav-tabs > li.active.tab-storm-cloud > a {
  border-color: #666666 !important;
}
.nav-tabs > li.active.tab-storm-cloud > a > .fa,
.nav-tabs > li.active.tab-storm-cloud > a .glyphicon,
.nav-tabs > li.active.tab-storm-cloud > a .typcn,
.nav-tabs > li.active.tab-storm-cloud > a .wi {
  color: #666666;
}
.nav-tabs > li.active.tab-lightcarbon > a {
  border-color: #555555 !important;
}
.nav-tabs > li.active.tab-lightcarbon > a > .fa,
.nav-tabs > li.active.tab-lightcarbon > a .glyphicon,
.nav-tabs > li.active.tab-lightcarbon > a .typcn,
.nav-tabs > li.active.tab-lightcarbon > a .wi {
  color: #555555;
}
.nav-tabs > li.active.tab-carbon > a {
  border-color: #444444 !important;
}
.nav-tabs > li.active.tab-carbon > a > .fa,
.nav-tabs > li.active.tab-carbon > a .glyphicon,
.nav-tabs > li.active.tab-carbon > a .typcn,
.nav-tabs > li.active.tab-carbon > a .wi {
  color: #444444;
}
.nav-tabs > li.active.tab-primary > a {
  border-color: #4374e0 !important;
}
.nav-tabs > li.active.tab-primary > a > .fa,
.nav-tabs > li.active.tab-primary > a .glyphicon,
.nav-tabs > li.active.tab-primary > a .typcn,
.nav-tabs > li.active.tab-primary > a .wi {
  color: #4374e0;
}
.nav-tabs > li.active.tab-slate-gray > a {
  border-color: #333333 !important;
}
.nav-tabs > li.active.tab-slate-gray > a > .fa,
.nav-tabs > li.active.tab-slate-gray > a .glyphicon,
.nav-tabs > li.active.tab-slate-gray > a .typcn,
.nav-tabs > li.active.tab-slate-gray > a .wi {
  color: #333333;
}
.nav-tabs > li.active.tab-darkcarbon > a {
  border-color: #262626 !important;
}
.nav-tabs > li.active.tab-darkcarbon > a > .fa,
.nav-tabs > li.active.tab-darkcarbon > a .glyphicon,
.nav-tabs > li.active.tab-darkcarbon > a .typcn,
.nav-tabs > li.active.tab-darkcarbon > a .wi {
  color: #262626;
}
.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-info > a {
  border-color: #57b5e3 !important;
}
.nav-tabs > li.active.tab-info > a > .fa,
.nav-tabs > li.active.tab-info > a .glyphicon,
.nav-tabs > li.active.tab-info > a .typcn,
.nav-tabs > li.active.tab-info > a .wi {
  color: #57b5e3;
}
.nav-tabs > li.active.tab-sky > a {
  border-color: #11a9cc !important;
}
.nav-tabs > li.active.tab-sky > a > .fa,
.nav-tabs > li.active.tab-sky > a .glyphicon,
.nav-tabs > li.active.tab-sky > a .typcn,
.nav-tabs > li.active.tab-sky > a .wi {
  color: #11a9cc;
}
.nav-tabs > li.active.tab-primary > a {
  border-color: #4374e0 !important;
}
.nav-tabs > li.active.tab-primary > a > .fa,
.nav-tabs > li.active.tab-primary > a .glyphicon,
.nav-tabs > li.active.tab-primary > a .typcn,
.nav-tabs > li.active.tab-primary > a .wi {
  color: #4374e0;
}
.nav-tabs > li.active.tab-primary > a {
  border-color: #4374e0 !important;
}
.nav-tabs > li.active.tab-primary > a > .fa,
.nav-tabs > li.active.tab-primary > a .glyphicon,
.nav-tabs > li.active.tab-primary > a .typcn,
.nav-tabs > li.active.tab-primary > a .wi {
  color: #4374e0;
}
.nav-tabs > li.active.tab-blueberry > a {
  border-color: #6f85bf !important;
}
.nav-tabs > li.active.tab-blueberry > a > .fa,
.nav-tabs > li.active.tab-blueberry > a .glyphicon,
.nav-tabs > li.active.tab-blueberry > a .typcn,
.nav-tabs > li.active.tab-blueberry > a .wi {
  color: #6f85bf;
}
.nav-tabs > li.active.tab-palegreen > a {
  border-color: #a0d468 !important;
}
.nav-tabs > li.active.tab-palegreen > a > .fa,
.nav-tabs > li.active.tab-palegreen > a .glyphicon,
.nav-tabs > li.active.tab-palegreen > a .typcn,
.nav-tabs > li.active.tab-palegreen > a .wi {
  color: #a0d468;
}
.nav-tabs > li.active.tab-success > a {
  border-color: #9B7125 !important;
}
.nav-tabs > li.active.tab-success > a > .fa,
.nav-tabs > li.active.tab-success > a .glyphicon,
.nav-tabs > li.active.tab-success > a .typcn,
.nav-tabs > li.active.tab-success > a .wi {
  color: #9B7125;
}
.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-lightyellow > a {
  border-color: #f6d52e !important;
}
.nav-tabs > li.active.tab-lightyellow > a > .fa,
.nav-tabs > li.active.tab-lightyellow > a .glyphicon,
.nav-tabs > li.active.tab-lightyellow > a .typcn,
.nav-tabs > li.active.tab-lightyellow > a .wi {
  color: #f6d52e;
}
.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-warning > a {
  border-color: #f4b400 !important;
}
.nav-tabs > li.active.tab-warning > a > .fa,
.nav-tabs > li.active.tab-warning > a .glyphicon,
.nav-tabs > li.active.tab-warning > a .typcn,
.nav-tabs > li.active.tab-warning > a .wi {
  color: #f4b400;
}
.nav-tabs > li.active.tab-gold > a {
  border-color: #f9b256 !important;
}
.nav-tabs > li.active.tab-gold > a > .fa,
.nav-tabs > li.active.tab-gold > a .glyphicon,
.nav-tabs > li.active.tab-gold > a .typcn,
.nav-tabs > li.active.tab-gold > a .wi {
  color: #f9b256;
}
.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-lightred > a {
  border-color: #e46f61 !important;
}
.nav-tabs > li.active.tab-lightred > a > .fa,
.nav-tabs > li.active.tab-lightred > a .glyphicon,
.nav-tabs > li.active.tab-lightred > a .typcn,
.nav-tabs > li.active.tab-lightred > a .wi {
  color: #e46f61;
}
.nav-tabs > li.active.tab-darkorange > a {
  border-color: #ed4e2a !important;
}
.nav-tabs > li.active.tab-darkorange > a > .fa,
.nav-tabs > li.active.tab-darkorange > a .glyphicon,
.nav-tabs > li.active.tab-darkorange > a .typcn,
.nav-tabs > li.active.tab-darkorange > a .wi {
  color: #ed4e2a;
}
.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-danger > a {
  border-color: #d73d32 !important;
}
.nav-tabs > li.active.tab-danger > a > .fa,
.nav-tabs > li.active.tab-danger > a .glyphicon,
.nav-tabs > li.active.tab-danger > a .typcn,
.nav-tabs > li.active.tab-danger > a .wi {
  color: #d73d32;
}
.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.active.tab-purple > a {
  border-color: #7e3794 !important;
}
.nav-tabs > li.active.tab-purple > a > .fa,
.nav-tabs > li.active.tab-purple > a .glyphicon,
.nav-tabs > li.active.tab-purple > a .typcn,
.nav-tabs > li.active.tab-purple > a .wi {
  color: #7e3794;
}
.nav-tabs > li.active.tab-maroon > a {
  border-color: #981b48 !important;
}
.nav-tabs > li.active.tab-maroon > a > .fa,
.nav-tabs > li.active.tab-maroon > a .glyphicon,
.nav-tabs > li.active.tab-maroon > a .typcn,
.nav-tabs > li.active.tab-maroon > a .wi {
  color: #981b48;
}
.nav-tabs.nav-justified {
  margin-bottom: -2px;
}
.nav-tabs.nav-justified > li > a {
  border: none;
  margin-top: -2px;
}
.nav-tabs.nav-justified > li > a:hover {
  background-color: transparent;
}
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
  border: 0;
  border-top: 2px solid #2dc3e8;
  background-color: #fbfbfb;
}
.nav-tabs .dropdown-menu {
  margin-top: -3px;
}
.nav-tabs.tabs-flat {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
}
.tabs-below > .nav-tabs {
  top: auto;
  margin-bottom: 0;
  margin-top: -1px;
  border-bottom-width: 0;
}
.tabs-below > .nav-tabs li.active > a,
.tabs-below > .nav-tabs li.active > a:hover,
.tabs-below > .nav-tabs li.active > a:focus {
  border-top-width: 1px;
  border-bottom: 2px solid #5db2ff;
  border-top-color: transparent;
  margin-top: 0;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
}
.tabs-below > .nav-tabs.nav-justified > li > a {
  margin-bottom: -2px;
}
.tabs-below > .nav-tabs.nav-justified > .active > a,
.tabs-below > .nav-tabs.nav-justified > .active > a:hover,
.tabs-below > .nav-tabs.nav-justified > .active > a:focus {
  border: 0;
  border-bottom: 2px solid #5db2ff;
}
.tabs-left > .nav-tabs {
  top: auto;
  margin-bottom: 0;
  float: left;
}
.tabs-left > .nav-tabs > li {
  float: none;
}
.tabs-left > .nav-tabs > li > a,
.tabs-left > .nav-tabs > li > a:focus,
.tabs-left > .nav-tabs > li > a:hover {
  margin: 0 -1px 0 0;
}
.tabs-left > .nav-tabs > li.active > a,
.tabs-left > .nav-tabs > li.active > a:focus,
.tabs-left > .nav-tabs > li.active > a:hover {
  border: 0;
  border-left: 2px solid #5db2ff;
  border-right-color: transparent;
  margin: 0 -1px 0 -1px;
  -webkit-box-shadow: -2px 0 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: -2px 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: -2px 0 3px 0 rgba(0, 0, 0, 0.3);
}
.tabs-right > .nav-tabs {
  top: auto;
  margin-bottom: 0;
  float: right;
}
.tabs-right > .nav-tabs > li {
  float: none;
}
.tabs-right > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a:focus,
.tabs-right > .nav-tabs > li > a:hover {
  border-top: 0;
  margin: 0 -1px;
}
.tabs-right > .nav-tabs > li.active > a,
.tabs-right > .nav-tabs > li.active > a:focus,
.tabs-right > .nav-tabs > li.active > a:hover {
  border-top-width: 0;
  border-right: 2px solid #5db2ff;
  border-left-color: transparent;
  margin: 0 -2px 0 -1px;
  -webkit-box-shadow: 2px 0 3px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 0 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 2px 0 3px 0 rgba(0, 0, 0, 0.3);
}
.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 60px;
}
.nav-tabs li [class*=" fa-"],
.nav-tabs li [class^="fa-"] {
  width: 1.25em;
  display: inline-block;
  text-align: center;
}
.nav-tabs > li.open .dropdown-toggle {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
}
.tabs-left .tab-content,
.tabs-right .tab-content {
  overflow: auto;
}
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
  background-color: #fbfbfb;
}
.nav .dropdown-menu > .active > a,
.nav .dropdown-menu > .active > a:hover,
.nav .dropdown-menu > .active > a:focus {
  color: #262626;
  background-color: #e5e5e5;
}
.nav-tabs > li:not(.active):not(.open) > a:not(:hover) > [class*="fa-"].disabled:first-child {
  color: #909090 !important;
}

.m-collapse {
  border: 0;
  color: #ffffff;
  background-color: #f4f4f4 !important;
}

/*#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;
  background-clip: padding-box;
  font-size: 13px;
  /*#region Link Button*/
  /*#endregion Link Button*/
  /*#region Shiny Button*/
  /*#endregion Shiny Button*/
  /*#region Circle Button*/
  /*#endregion Circle Button*/
  /*#region Labeled Button*/
  /*#endregion Labeled Button*/
  /*#region Icon Button*/
  /*#endregion Icon Button*/
}
.btn:hover,
.btn:focus {
  color: #ffffff;
}


.btn.btn-red-link {
  border: none !important;
  background: transparent none !important;
  color: red !important;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
  padding: 4px 12px !important;
  line-height: 20px !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.btn.btn-red-link:hover {
  background: none !important;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
}
.btn.btn-red-link.active {
  background: none !important;
  text-decoration: underline;
  color: red !important;
}
.btn.btn-red-link.active:after {
  display: none;
}
.btn.btn-red-link.disabled,
.btn.btn-red-link[disabled] {
  background: 0;
  opacity: .65;
  filter: alpha(opacity=65);
}
.btn.btn-red-link.disabled:hover,
.btn.btn-red-link[disabled]:hover {
  background: none !important;
  text-decoration: none !important;
}


.btn.btn-link {
  border: none !important;
  background: transparent none !important;
  color: #08c !important;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
  padding: 4px 12px !important;
  line-height: 20px !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.btn.btn-link:hover {
  background: none !important;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
}
.btn.btn-link.active {
  background: none !important;
  text-decoration: underline;
  color: #009ceb !important;
}
.btn.btn-link.active:after {
  display: none;
}
.btn.btn-link.disabled,
.btn.btn-link[disabled] {
  background: 0;
  opacity: .65;
  filter: alpha(opacity=65);
}
.btn.btn-link.disabled:hover,
.btn.btn-link[disabled]:hover {
  background: none !important;
  text-decoration: none !important;
}
.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: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 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: 12px;
  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.btn-labeled {
  position: relative;
  padding-left: 0;
}
.btn.btn-labeled.btn-block .btn-label {
  margin-right: 0;
}
.btn.btn-labeled .btn-label {
  display: block;
  float: left;
  margin: -7px 12px -9px -2px;
  padding: 8px 10px 8px 11px;
  position: relative;
  background: rgba(0, 0, 0, 0.06);
  line-height: 15px;
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.btn.btn-labeled .btn-label > .fa,
.btn.btn-labeled .btn-label .typcn,
.btn.btn-labeled .btn-label .glyphicon,
.btn.btn-labeled .btn-label > [class*="wi-"] {
  margin-right: 0;
}
.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;
}

/*TEST ICONITE ARANJARE PT FLAT DESIGN*/
/*.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: 12px;
  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-xs.icon-only {
  width: 24px;
  height: 24px;
  padding: 2px 6px;
}
.btn-xs.icon-only > .fa,
.btn-xs.icon-only > .typcn,
.btn-xs.icon-only > .glyphicon,
.btn-xs.icon-only > [class*="wi-"] {
  font-size: 12px;
  line-height: 7px;
}
.btn-sm {
  font-size: 12px;
  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;
}
.btn-sm > .fa.right,
.btn-sm > .typcn.right,
.btn-sm > .glyphicon.right,
.btn-sm > [class*="wi-"].right {
  margin-right: 0;
  margin-left: 3px;
}
.btn-sm.icon-only {
  width: 31px;
  height: 30px;
  padding: 3px !important;
}
.btn-sm.icon-only > .fa,
.btn-sm.icon-only > .typcn,
.btn-sm.icon-only > .glyphicon,
.btn-sm.icon-only > [class*="wi-"] {
  font-size: 20px;
  line-height: 21px;
}
.btn-lg {
  line-height: 1.35;
  padding: 9px 18px;
  font-size: 14px;
}
.btn-lg.icon-only {
  width: 40px;
  height: 38px;
  padding: 6px !important;
}
.btn-lg.icon-only > .fa,
.btn-lg.icon-only > .typcn,
.btn-lg.icon-only > .glyphicon,
.btn-lg.icon-only > [class*="wi-"] {
  font-size: 24px;
  line-height: 26px;
}
.btn-lg > .fa,
.btn-lg > .typcn,
.btn-lg > .glyphicon,
.btn-lg > [class*="wi-"] {
  font-size: 16px;
  margin-right: 6px;
}
.btn-lg > .fa.right,
.btn-lg > .typcn.right,
.btn-lg > .glyphicon.right,
.btn-lg > [class*="wi-"].right {
  margin-right: 0;
  margin-left: 6px;
}
/*#endregion Button Sizes*/
/*#region Default Button*/
.btn,
.btn-default,
.btn:focus,
.btn-default:focus {
  color: #444444;
  background-color: #ffffff;
  border-color: #cccccc;
}
.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: #427fed !important;
  border-color: #427fed;
  color: #ffffff;
}
.btn-primary:hover {
  color: #ffffff;
}
.btn-primary.dropdown-toggle {
  border-left-color: #6a99ee !important;
}
.btn-primary.active {
  background-color: #2c56b1 !important;
  border-color: #21448d;
}
.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 info Button*/
.btn-info,
.btn-info:focus {
  background-color: #57b5e3 !important;
  border-color: #57b5e3;
  color: #ffffff;
}
.btn-info:hover {
  color: #ffffff;
}
.btn-info.dropdown-toggle {
  border-left-color: #8bcdee !important;
}
.btn-info.active {
  background-color: #5fa6d3 !important;
  border-color: #4396cb;
}
.btn-info.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMwMGFkZWUiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwNzhhNSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#00adee), to(#0078a5));
}
.btn-info:hover,
.open .btn-info.dropdown-toggle {
  background-color: #6abce2 !important;
  border-color: #6abce2;
}
.btn-info.disabled,
.btn-info[disabled],
fieldset[disabled] .btn-info,
.btn-info.disabled:hover,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info:hover,
.btn-info.disabled:focus,
.btn-info[disabled]:focus,
fieldset[disabled] .btn-info:focus,
.btn-info.disabled:active,
.btn-info[disabled]:active,
fieldset[disabled] .btn-info:active,
.btn-info.disabled.active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info.active {
  background-color: #57b5e3 !important;
  border-color: #57b5e3;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion info Button*/
/*#region Success Button*/
.btn-success,
.btn-success:focus {
  background-color: #9B7125 !important;
  border-color: #9B7125 !important;
  color: #ffffff;
}
.btn-success:hover {
  color: #ffffff;
}
.btn-success.dropdown-toggle {
  border-left-color: #a0d468 !important;
}
.btn-success.active {
  background-color: #3e802f !important;
  border-color: #2f6124;
}
.btn-success.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM3ZGI3MmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRlN2QwZSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#7db72f), to(#4e7d0e));
}
.btn-success:hover,
.open .btn-success.dropdown-toggle {
  background-color: #65b951 !important;
  border-color: #65b951;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #9B7125 !important;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion Success Button*/
/*#region Warning Button*/
.btn-warning,
.btn-warning:focus {
  background-color: #f4b400 !important;
  border-color: #f4b400;
  color: #ffffff;
}
.btn-warning:hover {
  color: #ffffff;
}
.btn-warning.dropdown-toggle {
  border-left-color: #ffce55 !important;
}
.btn-warning.active {
  background-color: #f2a73e !important;
  border-color: #f0981c;
}
.btn-warning.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmYWE1MWEiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Y0N2EyMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#faa51a), to(#f47a20));
}
.btn-warning:hover,
.open .btn-warning.dropdown-toggle {
  background-color: #f6c12a !important;
  border-color: #f6c12a;
}
.btn-warning.disabled,
.btn-warning[disabled],
fieldset[disabled] .btn-warning,
.btn-warning.disabled:hover,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning:hover,
.btn-warning.disabled:focus,
.btn-warning[disabled]:focus,
fieldset[disabled] .btn-warning:focus,
.btn-warning.disabled:active,
.btn-warning[disabled]:active,
fieldset[disabled] .btn-warning:active,
.btn-warning.disabled.active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning.active {
  background-color: #f4b400 !important;
  border-color: #f4b400;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion Warning Button*/
/*#region Danger Button*/
.btn-danger,
.btn-danger:focus {
  background-color: #d73d32 !important;
  border-color: #d73d32;
  color: #ffffff;
}
.btn-danger:hover {
  color: #ffffff;
}
.btn-danger.dropdown-toggle {
  border-left-color: #e46f61 !important;
}
.btn-danger.active {
  background-color: #be3e2e !important;
  border-color: #9a3323;
}
.btn-danger.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNlZDFjMjQiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2FhMTMxNyIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#ed1c24), to(#aa1317));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#ed1c24), to(#aa1317));
}
.btn-danger:hover,
.open .btn-danger.dropdown-toggle {
  background-color: #e74b37 !important;
  border-color: #e74b37;
}
.btn-danger.disabled,
.btn-danger[disabled],
fieldset[disabled] .btn-danger,
.btn-danger.disabled:hover,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger:hover,
.btn-danger.disabled:focus,
.btn-danger[disabled]:focus,
fieldset[disabled] .btn-danger:focus,
.btn-danger.disabled:active,
.btn-danger[disabled]:active,
fieldset[disabled] .btn-danger:active,
.btn-danger.disabled.active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger.active {
  background-color: #d73d32 !important;
  border-color: #d73d32;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion Danger Button*/
/*#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*/
/*#region sky Button*/
.btn-sky,
.btn-sky:focus {
  background-color: #11a9cc !important;
  border-color: #11a9cc;
  color: #ffffff;
}
.btn-sky:hover {
  color: #ffffff;
}
.btn-sky.dropdown-toggle {
  border-left-color: #81c1fb !important;
}
.btn-sky.active {
  background-color: #2095b0 !important;
  border-color: #2f97af;
}
.btn-sky.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMyOGIzZDMiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIwOTViMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#28b3d3), to(#2095b0));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#28b3d3), to(#2095b0));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#28b3d3), to(#2095b0));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#28b3d3), to(#2095b0));
}
.btn-sky:hover,
.open .btn-sky.dropdown-toggle {
  background-color: #28b3d3 !important;
  border-color: #28b3d3;
  color: #fff;
}
.btn-sky.disabled,
.btn-sky[disabled],
fieldset[disabled] .btn-sky,
.btn-sky.disabled:hover,
.btn-sky[disabled]:hover,
fieldset[disabled] .btn-sky:hover,
.btn-sky.disabled:focus,
.btn-sky[disabled]:focus,
fieldset[disabled] .btn-sky:focus,
.btn-sky.disabled:active,
.btn-sky[disabled]:active,
fieldset[disabled] .btn-sky:active,
.btn-sky.disabled.active,
.btn-sky[disabled].active,
fieldset[disabled] .btn-sky.active {
  background-color: #11a9cc !important;
  border-color: #11a9cc;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion sky Button*/
/*#region azure Button*/
.btn-azure,
.btn-azure:focus {
  background-color: #2dc3e8 !important;
  border-color: #2dc3e8;
  color: #ffffff;
}
.btn-azure:hover {
  color: #ffffff;
}
.btn-azure.dropdown-toggle {
  border-left-color: #3ecdf1 !important;
}
.btn-azure.active {
  background-color: #2badce !important;
  border-color: #2badce;
}
.btn-azure.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiMzZWNkZjEiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzJiYWRjZSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#3ecdf1), to(#2badce));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#3ecdf1), to(#2badce));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#3ecdf1), to(#2badce));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#3ecdf1), to(#2badce));
}
.btn-azure:hover,
.open .btn-azure.dropdown-toggle {
  background-color: #3ecdf1 !important;
  border-color: #3ecdf1;
  color: #fff;
}
.btn-azure.disabled,
.btn-azure[disabled],
fieldset[disabled] .btn-azure,
.btn-azure.disabled:hover,
.btn-azure[disabled]:hover,
fieldset[disabled] .btn-azure:hover,
.btn-azure.disabled:focus,
.btn-azure[disabled]:focus,
fieldset[disabled] .btn-azure:focus,
.btn-azure.disabled:active,
.btn-azure[disabled]:active,
fieldset[disabled] .btn-azure:active,
.btn-azure.disabled.active,
.btn-azure[disabled].active,
fieldset[disabled] .btn-azure.active {
  background-color: #2dc3e8 !important;
  border-color: #2dc3e8;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion azure Button*/
/*#region palegreen Button*/
.btn-palegreen,
.btn-palegreen:focus {
  background-color: #a0d468 !important;
  border-color: #a0d468;
  color: #ffffff;
}
.btn-palegreen:hover {
  color: #ffffff;
}
.btn-palegreen.dropdown-toggle {
  border-left-color: #a6d791 !important;
}
.btn-palegreen.active {
  background-color: #74aa5d !important;
  border-color: #699755;
}
.btn-palegreen.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM5Y2Q1ODQiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzc0YWE1ZCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#9cd584), to(#74aa5d));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#9cd584), to(#74aa5d));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#9cd584), to(#74aa5d));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#9cd584), to(#74aa5d));
}
.btn-palegreen:hover,
.open .btn-palegreen.dropdown-toggle {
  background-color: #9cd584 !important;
  border-color: #9cd584;
  color: #fff;
}
.btn-palegreen.disabled,
.btn-palegreen[disabled],
fieldset[disabled] .btn-palegreen,
.btn-palegreen.disabled:hover,
.btn-palegreen[disabled]:hover,
fieldset[disabled] .btn-palegreen:hover,
.btn-palegreen.disabled:focus,
.btn-palegreen[disabled]:focus,
fieldset[disabled] .btn-palegreen:focus,
.btn-palegreen.disabled:active,
.btn-palegreen[disabled]:active,
fieldset[disabled] .btn-palegreen:active,
.btn-palegreen.disabled.active,
.btn-palegreen[disabled].active,
fieldset[disabled] .btn-palegreen.active {
  background-color: #a0d468 !important;
  border-color: #a0d468;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion palegreen Button*/
/*#region yellow Button*/
.btn-yellow,
.btn-yellow:focus {
  background-color: #ffce55 !important;
  border-color: #ffce55;
  color: #ffffff;
}
.btn-yellow:hover {
  color: #ffffff;
}
.btn-yellow.dropdown-toggle {
  border-left-color: #f6d52e !important;
}
.btn-yellow.active {
  background-color: #fbc220 !important;
  border-color: #f3ba17;
  color: #ffffff !important;
}
.btn-yellow.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZGQzNWEiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZiYzIyMCIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#fdd35a), to(#fbc220));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#fdd35a), to(#fbc220));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#fdd35a), to(#fbc220));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#fdd35a), to(#fbc220));
}
.btn-yellow:hover,
.open .btn-yellow.dropdown-toggle {
  background-color: #fdd35a !important;
  border-color: #fdd35a;
  color: #fff;
}
.btn-yellow.disabled,
.btn-yellow[disabled],
fieldset[disabled] .btn-yellow,
.btn-yellow.disabled:hover,
.btn-yellow[disabled]:hover,
fieldset[disabled] .btn-yellow:hover,
.btn-yellow.disabled:focus,
.btn-yellow[disabled]:focus,
fieldset[disabled] .btn-yellow:focus,
.btn-yellow.disabled:active,
.btn-yellow[disabled]:active,
fieldset[disabled] .btn-yellow:active,
.btn-yellow.disabled.active,
.btn-yellow[disabled].active,
fieldset[disabled] .btn-yellow.active {
  background-color: #ffce55 !important;
  border-color: #ffce55;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion yellow Button*/
/*#region darkorange Button*/
.btn-darkorange,
.btn-darkorange:focus {
  background-color: #ed4e2a !important;
  border-color: #ed4e2a;
  color: #ffffff;
}
.btn-darkorange:hover {
  color: #ffffff;
}
.btn-darkorange.dropdown-toggle {
  border-left-color: #f07154 !important;
}
.btn-darkorange.active {
  background-color: #da411f !important;
  border-color: #cc3918;
}
.btn-darkorange.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNlZjY5NGIiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RhNDExZiIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#ef694b), to(#da411f));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#ef694b), to(#da411f));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#ef694b), to(#da411f));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#ef694b), to(#da411f));
}
.btn-darkorange:hover,
.open .btn-darkorange.dropdown-toggle {
  background-color: #ef694b !important;
  border-color: #ef694b;
  color: #fff;
}
.btn-darkorange.disabled,
.btn-darkorange[disabled],
fieldset[disabled] .btn-darkorange,
.btn-darkorange.disabled:hover,
.btn-darkorange[disabled]:hover,
fieldset[disabled] .btn-darkorange:hover,
.btn-darkorange.disabled:focus,
.btn-darkorange[disabled]:focus,
fieldset[disabled] .btn-darkorange:focus,
.btn-darkorange.disabled:active,
.btn-darkorange[disabled]:active,
fieldset[disabled] .btn-darkorange:active,
.btn-darkorange.disabled.active,
.btn-darkorange[disabled].active,
fieldset[disabled] .btn-darkorange.active {
  background-color: #ed4e2a !important;
  border-color: #ed4e2a;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion darkorange Button*/
/*#region magenta Button*/
.btn-magenta,
.btn-magenta:focus {
  background-color: #bc5679 !important;
  border-color: #bc5679;
  color: #ffffff;
}
.btn-magenta:hover {
  color: #ffffff;
}
.btn-magenta.dropdown-toggle {
  border-left-color: #c96d8c !important;
}
.btn-magenta.active {
  background-color: #a5325a !important;
  border-color: #9f3156;
}
.btn-magenta.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNjNDYyODMiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2E1MzI1YSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#c46283), to(#a5325a));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#c46283), to(#a5325a));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#c46283), to(#a5325a));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#c46283), to(#a5325a));
}
.btn-magenta:hover,
.open .btn-magenta.dropdown-toggle {
  background-color: #c46283 !important;
  border-color: #c46283;
  color: #fff;
}
.btn-magenta.disabled,
.btn-magenta[disabled],
fieldset[disabled] .btn-magenta,
.btn-magenta.disabled:hover,
.btn-magenta[disabled]:hover,
fieldset[disabled] .btn-magenta:hover,
.btn-magenta.disabled:focus,
.btn-magenta[disabled]:focus,
fieldset[disabled] .btn-magenta:focus,
.btn-magenta.disabled:active,
.btn-magenta[disabled]:active,
fieldset[disabled] .btn-magenta:active,
.btn-magenta.disabled.active,
.btn-magenta[disabled].active,
fieldset[disabled] .btn-magenta.active {
  background-color: #bc5679 !important;
  border-color: #bc5679;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion magenta Button*/
/*#region purple Button*/
.btn-purple,
.btn-purple:focus {
  background-color: #7e3794 !important;
  border-color: #7e3794;
  color: #ffffff;
}
.btn-purple:hover {
  color: #ffffff;
}
.btn-purple.dropdown-toggle {
  border-left-color: #9852ae !important;
}
.btn-purple.active {
  background-color: #69257e !important;
  border-color: #601e74;
}
.btn-purple.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM4YzQ0YTIiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzY5MjU3ZSIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#8c44a2), to(#69257e));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#8c44a2), to(#69257e));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#8c44a2), to(#69257e));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#8c44a2), to(#69257e));
}
.btn-purple:hover,
.open .btn-purple.dropdown-toggle {
  background-color: #8c44a2 !important;
  border-color: #8c44a2;
  color: #fff;
}
.btn-purple.disabled,
.btn-purple[disabled],
fieldset[disabled] .btn-purple,
.btn-purple.disabled:hover,
.btn-purple[disabled]:hover,
fieldset[disabled] .btn-purple:hover,
.btn-purple.disabled:focus,
.btn-purple[disabled]:focus,
fieldset[disabled] .btn-purple:focus,
.btn-purple.disabled:active,
.btn-purple[disabled]:active,
fieldset[disabled] .btn-purple:active,
.btn-purple.disabled.active,
.btn-purple[disabled].active,
fieldset[disabled] .btn-purple.active {
  background-color: #7e3794 !important;
  border-color: #7e3794;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion purple Button*/
/*#region maroon Button*/
.btn-maroon,
.btn-maroon:focus {
  background-color: #981b48 !important;
  border-color: #981b48;
  color: #ffffff;
}
.btn-maroon:hover {
  color: #ffffff;
}
.btn-maroon.dropdown-toggle {
  border-left-color: #b55274 !important;
}
.btn-maroon.active {
  background-color: #7c1138 !important;
  border-color: #9f3156;
}
.btn-maroon.shiny {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNhODI4NTYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzg2MTIzYyIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#a82856), to(#86123c));
  background-image: -moz-linear-gradient(linear, left top, left bottom, from(#a82856), to(#86123c));
  background-image: -o-linear-gradient(linear, left top, left bottom, from(#a82856), to(#86123c));
  background-image: linear-gradient(linear, left to bottom, left bottom, from(#a82856), to(#86123c));
}
.btn-maroon:hover,
.open .btn-maroon.dropdown-toggle {
  background-color: #a82856 !important;
  border-color: #a82856;
  color: #fff;
}
.btn-maroon.disabled,
.btn-maroon[disabled],
fieldset[disabled] .btn-maroon,
.btn-maroon.disabled:hover,
.btn-maroon[disabled]:hover,
fieldset[disabled] .btn-maroon:hover,
.btn-maroon.disabled:focus,
.btn-maroon[disabled]:focus,
fieldset[disabled] .btn-maroon:focus,
.btn-maroon.disabled:active,
.btn-maroon[disabled]:active,
fieldset[disabled] .btn-maroon:active,
.btn-maroon.disabled.active,
.btn-maroon[disabled].active,
fieldset[disabled] .btn-maroon.active {
  background-color: #981b48 !important;
  border-color: #981b48;
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
}
/*#endregion maroon 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 > .caret {
  margin-left: 1px;
  border-width: 5px;
  border-top-color: #eeeeee;
  margin-top: 1px;
}
.btn-group > .btn.btn-default > .caret {
  border-top-color: #333333;
}
.btn-group > .btn + .btn.dropdown-toggle {
  padding-left: 7px;
  padding-right: 7px;
}
.btn-group > .btn + .btn-lg.dropdown-toggle {
  padding-right: 10px;
  padding-left: 10px;
}
.btn-group > .btn + .btn-sm.dropdown-toggle {
  padding-right: 6px;
  padding-left: 6px;
}
.btn-group > .btn + .btn-sm.dropdown-toggle .fa {
  line-height: 13px;
}
.btn-group > .btn + .btn-xs.dropdown-toggle {
  padding-right: 5px;
  padding-left: 5px;
}
.btn-group > .btn + .btn-xs.dropdown-toggle .fa {
  line-height: 13px;
}
.btn-group .dropdown-toggle {
  -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 .dropdown-toggle .fa {
  display: inline-block;
  margin-top: 1px;
  font-size: 14px;
  line-height: 14px;
  margin-right: 0;
  margin-left: 0;
}
.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;
}
.btn-group-vertical > .btn:not(:last-child) {
  border-bottom: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 2px;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 2px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn + .btn {
  margin: 0;
}
.btn-group-vertical > .btn:first-child {
  margin-right: 0;
}
/*#endregion Group Button*/
/*#endregion Buttons*/
/*#region Accordion*/
.accordion.spaced.panel-group .panel + .panel {
  margin-top: 3px;
}
.accordion.panel-group {
  border: 1px solid #d8d8d8;
  border-top-width: 0;
}
.accordion.panel-group .panel {
  border-radius: 0;
  border: 0;
  background-color: #ffffff;
  box-shadow: none;
}
.accordion.panel-group .panel:last-child {
  border-bottom-width: 1px;
}
.accordion.panel-group .panel .collapse {
  background-color: #ffffff;
}
.accordion.panel-group .panel + .panel {
  margin-top: 0;
}
.accordion.panel-group .panel-heading {
  padding: 0;
}
.accordion.panel-group .panel-heading + .panel-collapse .panel-body {
  border-top-color: #d5d5d5 !important;
}
.accordion.panel-group .panel-heading .accordion-toggle {
  color: #555555;
  background-color: #ffffff;
  position: relative;
  font-weight: bold;
  font-size: 13px;
  line-height: 1;
  padding: 10px;
  display: block;
}
.accordion.panel-group .panel-heading .accordion-toggle:after {
  -webkit-transition: all 0.218s;
  -moz-transition: all 0.218s;
  -o-transition: all 0.218s;
  transition: all 0.218s;
  position: absolute;
  right: 20px;
  top: 8px;
  font-family: 'FontAwesome';
  font-size: 17px;
  font-weight: bold;
  content: "\f107";
  color: #bebebe;
}
.accordion.panel-group .panel-heading .accordion-toggle.collapsed:after {
  content: "\f105";
}
.accordion.panel-group .panel-heading .accordion-toggle.collapsed {
  color: #737373;
  font-weight: normal;
  background-color: #ffffff;
  -webkit-transition: border 0.218s;
  -moz-transition: border 0.218s;
  -o-transition: border 0.218s;
  transition: border 0.218s;
  border-bottom: 1px solid #f5f5f5;
}
.accordion.panel-group .panel-heading .accordion-toggle:hover {
  color: #262626;
  text-decoration: none;
}
.accordion.panel-group .panel-heading .accordion-toggle:hover > [class*="icon-"]:first-child {
  text-decoration: none;
}
.accordion.panel-group .panel-heading .accordion-toggle:hover:after {
  color: #262626;
}
.accordion.panel-group .panel-heading .accordion-toggle:focus,
.accordion.panel-group .panel-heading .accordion-toggle:active {
  outline: 0;
  text-decoration: none;
}
.accordion.panel-group .panel-heading .accordion-toggle > [class*="fa-"]:first-child {
  width: 16px;
}
.accordion.panel-group .panel-body {
  background-color: #eeeeee;
  border-left: 2px solid #eeeeee;
  color: #262626 !important;
}
.accordion.panel-group.no-padding {
  padding: 0;
}
/*#endregion Accordions*/
/*#region labels and badges */
.label,
.badge {
  display: inline-block;
  font-weight: 300;
  -webkit-text-shadow: none !important;
  text-shadow: none !important;
}
.label {
    color: #333;  
  font-size: 12px;
  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: 12px;
  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,
.label-default {
  background-color: #cccccc !important;
}
.badge-default.graded,
.label-default.graded {
  background: linear-gradient(to right, #cccccc, #e5e5e5) !important;
}
.badge-blue,
.label-blue {
  background-color: #5db2ff !important;
}
.badge-blue.graded,
.label-blue.graded {
  background: linear-gradient(to right, #5db2ff, #80c1fb) !important;
}
.label-info,
.badge-info {
  background-color: #57b5e3;
  background-image: none !important;
}
.label-info.graded,
.badge-info.graded {
  background: linear-gradient(to right, #57b5e3, #c4e6f6) !important;
}
.label-sky,
.badge-sky {
  background-color: #11a9cc;
  background-image: none !important;
}
.label-sky.graded,
.badge-sky.graded {
  background: linear-gradient(to right, #11a9cc, #c4e6f6) !important;
}
.badge-primary,
.label-primary {
  background-color: #4374e0 !important;
}
.badge-primary.graded,
.label-primary.graded {
  background: linear-gradient(to right, #4374e0, #aec9fa) !important;
}
.label-azure,
.badge-azure {
  background-color: #2dc3e8;
  background-image: none !important;
}
.label-azure.graded,
.badge-azure.graded {
  background: linear-gradient(to right, #2dc3e8, #5edfff) !important;
}
.label-blueberry,
.badge-blueberry {
  background-color: #6f85bf;
  background-image: none !important;
}
.label-blueberry.graded,
.badge-blueberry.graded {
  background: linear-gradient(to right, #6f85bf, #ced5e9) !important;
}
.label-palegreen,
.badge-palegreen {
  background-color: #a0d468;
  background-image: none !important;
}
.label-palegreen.graded,
.badge-palegreen.graded {
  background: linear-gradient(to right, #a0d468, #c5e9b6) !important;
}
.label-success,
.badge-success {
  background-color: #9B7125;
  background-image: none !important;
}
.label-success.graded,
.badge-success.graded {
  background: linear-gradient(to right, #9B7125, #b0e0a4) !important;
}
.label-green,
.badge-green {
  background-color: #8cc474;
  background-image: none !important;
}
.label-green.graded,
.badge-green.graded {
  background: linear-gradient(to right, #8cc474, #a0d468) !important;
}
.label-lightyellow,
.badge-lightyellow {
  background-color: #f6d52e;
  background-image: none !important;
}
.label-lightyellow.graded,
.badge-lightyellow.graded {
  background: linear-gradient(to right, #f6d52e, #f8e26d) !important;
}
.label-yellow,
.badge-yellow {
  background-color: #ffce55;
  background-image: none !important;
}
.label-yellow.graded,
.badge-yellow.graded {
  background: linear-gradient(to right, #ffce55, #f6d52e) !important;
}
.label-warning,
.badge-warning {
  background-color: #f4b400;
  background-image: none !important;
}
.label-warning.graded,
.badge-warning.graded {
  background: linear-gradient(to right, #f4b400, #f8df95) !important;
}
.label-gold,
.badge-gold {
  background-color: #f9b256;
  background-image: none !important;
}
.label-gold.graded,
.badge-gold.graded {
  background: linear-gradient(to right, #f9b256, #fece90) !important;
}
.label-orange,
.badge-orange {
  background-color: #fb6e52;
  background-image: none !important;
}
.label-orange.graded,
.badge-orange.graded {
  background: linear-gradient(to right, #fb6e52, #fb9f8d) !important;
}
.label-lightred,
.badge-lightred {
  background-color: #e46f61;
  background-image: none !important;
}
.label-lightred.graded,
.badge-lightred.graded {
  background: linear-gradient(to right, #e46f61, #f88f83) !important;
}
.label-darkorange,
.badge-darkorange {
  background-color: #ed4e2a;
  background-image: none !important;
}
.label-darkorange.graded,
.badge-darkorange.graded {
  background: linear-gradient(to right, #ed4e2a, #f5a998) !important;
}
.label-red,
.badge-red {
  background-color: #df5138;
  background-image: none !important;
}
.label-red.graded,
.badge-red.graded {
  background: linear-gradient(to right, #df5138, #f5836f) !important;
}
.label-pink,
.badge-pink {
  background-color: #e75b8d;
  background-image: none !important;
}
.label-pink.graded,
.badge-pink.graded {
  background: linear-gradient(to right, #e75b8d, #f299b9) !important;
}
.label-darkpink,
.badge-darkpink {
  background-color: #cc324b;
  background-image: none !important;
}
.label-darkpink.graded,
.badge-darkpink.graded {
  background: linear-gradient(to right, #cc324b, #fb6880) !important;
}
.label-danger,
.badge-danger {
  background-color: #d73d32;
  background-image: none !important;
}
.label-danger.graded,
.badge-danger.graded {
  background: linear-gradient(to right, #d73d32, #f7b5b0) !important;
}
.label-magenta,
.badge-magenta {
  background-color: #bc5679;
  background-image: none !important;
}
.label-magenta.graded,
.badge-magenta.graded {
  background: linear-gradient(to right, #bc5679, #e9abc0) !important;
}
.label-purple,
.badge-purple {
  background-color: #7e3794;
  background-image: none !important;
}
.label-purple.graded,
.badge-purple.graded {
  background: linear-gradient(to right, #7e3794, #daafe8) !important;
}
.label-maroon,
.badge-maroon {
  background-color: #981b48;
  background-image: none !important;
}
.label-maroon.graded,
.badge-maroon.graded {
  background: linear-gradient(to right, #981b48, #eab6c9) !important;
}
/*#endregion labels and badges */
/*#region Progress Bar*/
.progress {
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: #e5e5e5;
  height: 18px;
  position: relative;
}
.progress:before {
  display: inline-block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: 8121991;
  background-image: -webkit-radial-gradient(9px 9px 0, circle cover, #00ffff 0, rgba(0, 0, 255, 0) 100%, #0000ff 95%);
  background-image: -moz-radial-gradient(9px 9px 0, circle cover, #00ffff 0, rgba(0, 0, 255, 0) 100%, #0000ff 95%);
  background-image: -o-radial-gradient(9px 9px 0, circle cover, #00ffff 0, rgba(0, 0, 255, 0) 100%, #0000ff 95%);
  background-image: radial-gradient(9px 9px 0, circle cover, #00ffff 0, rgba(0, 0, 255, 0) 100%, #0000ff 95%);
}
.progress .progress-bar {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  line-height: 18px;
}
.progress.progress-xlg {
  height: 26px;
}
.progress.progress-xlg .progress-bar {
  line-height: 25px;
}
.progress.progress-lg {
  height: 22px;
}
.progress.progress-lg .progress-bar {
  line-height: 21px;
}
.progress.progress-sm {
  height: 12px;
}
.progress.progress-sm .progress-bar {
  line-height: 10px;
  font-size: 11px;
}
.progress.progress-xs {
  height: 9px;
}
.progress.progress-xs .progress-bar {
  line-height: 8px;
  font-size: 11px;
}
.progress.progress-xxs {
  height: 4px;
}
.progress.progress-xxs .progress-bar {
  line-height: 4px;
  font-size: 0;
}
.progress.progress-right .progress-bar {
  float: right;
}
.progress.progress-shadowed {
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.progress.progress-no-radius {
  -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;
}
.progress.progress-vertical {
  width: 25px;
  height: 100%;
  min-height: 150px;
  margin-right: 20px;
  display: inline-block;
  margin-bottom: 0;
}
.progress.progress-vertical .progress-bar {
  position: absolute;
  width: 25px;
  overflow: hidden;
  line-height: 20px;
  height: 0;
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
.progress.progress-vertical .progress-bar span {
  width: 100%;
  font-size: 12px;
  text-align: center;
}
.progress.progress-vertical.progress-bottom {
  position: relative;
}
.progress.progress-vertical.progress-bottom .progress-bar {
  position: absolute;
  bottom: 0;
}
.progress.progress-vertical.progress-bottom .progress-bar span {
  position: absolute;
  left: 0;
  bottom: 0;
}
.progress.progress-vertical.progress-xlg {
  width: 40px;
}
.progress.progress-vertical.progress-xlg .progress-bar {
  width: 40px;
}
.progress.progress-vertical.progress-lg {
  width: 30px;
}
.progress.progress-vertical.progress-lg .progress-bar {
  width: 30px;
}
.progress.progress-vertical.progress-sm {
  width: 20px;
}
.progress.progress-vertical.progress-sm .progress-bar {
  width: 20px;
}
.progress.progress-vertical.progress-sm .progress-bar span {
  font-size: 8px;
}
.progress.progress-vertical.progress-xs {
  width: 10px;
}
.progress.progress-vertical.progress-xs .progress-bar {
  width: 10px;
}
.progress.progress-vertical.progress-xs .progress-bar span {
  font-size: 0;
}
.progress.progress-vertical.progress-xxs {
  width: 5px;
}
.progress.progress-vertical.progress-xxs .progress-bar {
  width: 5px;
}
.progress.progress-vertical.progress-xxs .progress-bar span {
  font-size: 0;
}
.progress.progress-vertical.progress-bordered {
  width: 31px;
}
.progress.progress-vertical.progress-bordered.progress-bottom .progress-bar {
  bottom: 3px;
}
.progress.progress-vertical.progress-bordered.progress-xlg {
  width: 48px;
}
.progress.progress-vertical.progress-bordered.progress-lg {
  width: 38px;
}
.progress.progress-vertical.progress-bordered.progress-sm {
  width: 28px;
}
.progress.progress-vertical.progress-bordered.progress-xs {
  width: 18px;
}
.progress.progress-vertical.progress-bordered.progress-xxs {
  width: 13px;
}
.progress.progress-bordered {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 3px;
  height: 24px;
}
.progress.progress-bordered.progress-xlg {
  height: 32px;
}
.progress.progress-bordered.progress-lg {
  height: 28px;
}
.progress.progress-bordered.progress-sm {
  height: 18px;
}
.progress.progress-bordered.progress-xs {
  height: 15px;
}
.progress.progress-bordered.progress-xxs {
  height: 10px;
}
.progress-bar {
  background-color: #2dc3e8;
}
.progress-bar-danger {
  background-color: #d73d32 !important;
}
.progress-bar-success {
  background-color: #9B7125 !important;
}
.progress-bar-warning {
  background-color: #f4b400 !important;
}
.progress-bar-silver {
  background-color: #777777 !important;
}
.progress-bar-inverse {
  background-color: #444444 !important;
}
.progress-bar-blue {
  background-color: #5db2ff !important;
}
.progress-bar-info {
  background-color: #57b5e3 !important;
}
.progress-bar-azure {
  background-color: #2dc3e8 !important;
}
.progress-bar-sky {
  background-color: #11a9cc !important;
}
.progress-bar-blueberry {
  background-color: #6f85bf !important;
}
.progress-bar-palegreen {
  background-color: #a0d468 !important;
}
.progress-bar-orange {
  background-color: #fb6e52 !important;
}
.progress-bar-darkorange {
  background-color: #ed4e2a !important;
}
.progress-bar-magenta {
  background-color: #bc5679 !important;
}
.progress-bar-purple {
  background-color: #7e3794 !important;
}
.progress-bar-maroon {
  background-color: #981b48 !important;
}
.progress-striped .progress-bar {
  background-image: 8121991;
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
/*#endregion Progress Bar*/
/*#region Wells*/
.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: #fbfbfb;
  border: 0;
  color: #262626;
  position: relative;
  margin-bottom: 30px;
  min-height: 0px;
  /*#region Bordered Well*/
  /*#endregion Bordered Well*/
  /*#region Colored Well*/
  /*#endregion Bordered Well*/
}
.well.attached {
  position: relative;
  top: -1px;
  bottom: -1px;
  border-radius: 0;
  margin: 0;
  box-shadow: 0 0 0 1px #DDD;
}
.well.attached.top {
  top: 0;
  bottom: -1px;
  margin-top: 1em;
  margin-bottom: 0;
  -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;
  border-bottom: 0;
}
.well.attached.bottom {
  top: -1px;
  bottom: 0;
  margin-top: 0;
  margin-bottom: 1em;
  -webkit-border-radius: 0 0 3px 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0 0 3px 3px;
  -moz-background-clip: padding;
  border-radius: 0 0 3px 3px;
  background-clip: padding-box;
  border-top: 0;
}
.well.attached.bottom:last-child {
  margin-bottom: 0;
}
.well.bordered-top {
  border-top: 5px solid #2dc3e8;
}
.well.bordered-bottom {
  border-bottom: 5px solid #2dc3e8;
}
.well.bordered-left {
  border-left: 5px solid #2dc3e8;
}
.well.bordered-right {
  border-right: 5px solid #2dc3e8;
}
.well[class*="bg-"] {
  color: #f5f5f5;
}
.well h1,
.well h2,
.well h3,
.well h4,
.well h5,
.well h6 {
  margin-top: 0;
}
.well h1,
.well h2,
.well h3 {
  line-height: 36px;
}
.well.with-header {
  padding-top: 60px;
}
.well.with-footer {
  padding-bottom: 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;
}
.well .header[class*="bg-"] {
  color: #ffffff;
  border-bottom: 0;
}
.well .header[class*="bordered-"] {
  border-bottom: 3px solid #ffffff;
}
.well .footer {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 10px;
  border-top: 1px solid #e5e5e5;
  border-radius: 0 0 2px 2px;
}
.well .footer[class*="bordered-"] {
  border-top: 3px solid #ffffff;
}
.well hr.wide {
  margin-right: -19px;
  margin-left: -19px;
}
/*#endregion Wells*/
/*#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 #2dc3e8;
}
.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*/
.tooltip.in {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #ed4e2a;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #ed4e2a;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #ed4e2a;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #ed4e2a;
}
.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;*/
  border: 1px solid #ed4e2a;
  background-color: #ed4e2a;
  color: #fff;
  padding: 2px 5px;
  font-size: 10px;
}
.tooltip-white + .tooltip > .tooltip-inner {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: #262626;
}
.tooltip-white + .tooltip.top .tooltip-arrow {
  border-top-color: #ffffff;
}
.tooltip-white + .tooltip.right .tooltip-arrow {
  border-right-color: #ffffff;
}
.tooltip-white + .tooltip.left .tooltip-arrow {
  border-left-color: #ffffff;
}
.tooltip-white + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #ffffff;
}
.tooltip-whitesmoke + .tooltip > .tooltip-inner {
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  color: #262626;
}
.tooltip-whitesmoke + .tooltip.top .tooltip-arrow {
  border-top-color: #f5f5f5;
}
.tooltip-whitesmoke + .tooltip.right .tooltip-arrow {
  border-right-color: #f5f5f5;
}
.tooltip-whitesmoke + .tooltip.left .tooltip-arrow {
  border-left-color: #f5f5f5;
}
.tooltip-whitesmoke + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #f5f5f5;
}
.tooltip-snow + .tooltip > .tooltip-inner {
  border: 1px solid #fbfbfb;
  background-color: #fbfbfb;
  color: #262626;
}
.tooltip-snow + .tooltip.top .tooltip-arrow {
  border-top-color: #fbfbfb;
}
.tooltip-snow + .tooltip.right .tooltip-arrow {
  border-right-color: #fbfbfb;
}
.tooltip-snow + .tooltip.left .tooltip-arrow {
  border-left-color: #fbfbfb;
}
.tooltip-snow + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #fbfbfb;
}
.tooltip-seashell + .tooltip > .tooltip-inner {
  border: 1px solid #f3f3f3;
  background-color: #f3f3f3;
  color: #262626;
}
.tooltip-seashell + .tooltip.top .tooltip-arrow {
  border-top-color: #f3f3f3;
}
.tooltip-seashell + .tooltip.right .tooltip-arrow {
  border-right-color: #f3f3f3;
}
.tooltip-seashell + .tooltip.left .tooltip-arrow {
  border-left-color: #f3f3f3;
}
.tooltip-seashell + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #f3f3f3;
}
.tooltip-ivory + .tooltip > .tooltip-inner {
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  color: #262626;
}
.tooltip-ivory + .tooltip.top .tooltip-arrow {
  border-top-color: #eeeeee;
}
.tooltip-ivory + .tooltip.right .tooltip-arrow {
  border-right-color: #eeeeee;
}
.tooltip-ivory + .tooltip.left .tooltip-arrow {
  border-left-color: #eeeeee;
}
.tooltip-ivory + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #eeeeee;
}
.tooltip-platinum + .tooltip > .tooltip-inner {
  border: 1px solid #e5e5e5;
  background-color: #e5e5e5;
  color: #262626;
}
.tooltip-platinum + .tooltip.top .tooltip-arrow {
  border-top-color: #e5e5e5;
}
.tooltip-platinum + .tooltip.right .tooltip-arrow {
  border-right-color: #e5e5e5;
}
.tooltip-platinum + .tooltip.left .tooltip-arrow {
  border-left-color: #e5e5e5;
}
.tooltip-platinum + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #e5e5e5;
}
.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;
}
.tooltip-gray + .tooltip > .tooltip-inner {
  border: 1px solid #cccccc;
  background-color: #cccccc;
  color: #262626;
}
.tooltip-gray + .tooltip.top .tooltip-arrow {
  border-top-color: #cccccc;
}
.tooltip-gray + .tooltip.right .tooltip-arrow {
  border-right-color: #cccccc;
}
.tooltip-gray + .tooltip.left .tooltip-arrow {
  border-left-color: #cccccc;
}
.tooltip-gray + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #cccccc;
}
.tooltip-darkgray + .tooltip > .tooltip-inner {
  border: 1px solid #999999;
  background-color: #999999;
  color: #262626;
}
.tooltip-darkgray + .tooltip.top .tooltip-arrow {
  border-top-color: #999999;
}
.tooltip-darkgray + .tooltip.right .tooltip-arrow {
  border-right-color: #999999;
}
.tooltip-darkgray + .tooltip.left .tooltip-arrow {
  border-left-color: #999999;
}
.tooltip-darkgray + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #999999;
}
.tooltip-silver + .tooltip > .tooltip-inner {
  border: 1px solid #777777;
  background-color: #777777;
  color: #ffffff;
}
.tooltip-silver + .tooltip.top .tooltip-arrow {
  border-top-color: #777777;
}
.tooltip-silver + .tooltip.right .tooltip-arrow {
  border-right-color: #777777;
}
.tooltip-silver + .tooltip.left .tooltip-arrow {
  border-left-color: #777777;
}
.tooltip-silver + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #777777;
}
.tooltip-sonic-silver + .tooltip > .tooltip-inner {
  border: 1px solid #737373;
  background-color: #737373;
  color: #ffffff;
}
.tooltip-sonic-silver + .tooltip.top .tooltip-arrow {
  border-top-color: #737373;
}
.tooltip-sonic-silver + .tooltip.right .tooltip-arrow {
  border-right-color: #737373;
}
.tooltip-sonic-silver + .tooltip.left .tooltip-arrow {
  border-left-color: #737373;
}
.tooltip-sonic-silver + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #737373;
}
.tooltip-storm-cloud + .tooltip > .tooltip-inner {
  border: 1px solid #666666;
  background-color: #666666;
  color: #ffffff;
}
.tooltip-storm-cloud + .tooltip.top .tooltip-arrow {
  border-top-color: #666666;
}
.tooltip-storm-cloud + .tooltip.right .tooltip-arrow {
  border-right-color: #666666;
}
.tooltip-storm-cloud + .tooltip.left .tooltip-arrow {
  border-left-color: #666666;
}
.tooltip-storm-cloud + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #666666;
}
.tooltip-lightcarbon + .tooltip > .tooltip-inner {
  border: 1px solid #555555;
  background-color: #555555;
  color: #ffffff;
}
.tooltip-lightcarbon + .tooltip.top .tooltip-arrow {
  border-top-color: #555555;
}
.tooltip-lightcarbon + .tooltip.right .tooltip-arrow {
  border-right-color: #555555;
}
.tooltip-lightcarbon + .tooltip.left .tooltip-arrow {
  border-left-color: #555555;
}
.tooltip-lightcarbon + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #555555;
}
.tooltip-carbon + .tooltip > .tooltip-inner {
  border: 1px solid #444444;
  background-color: #444444;
  color: #ffffff;
}
.tooltip-carbon + .tooltip.top .tooltip-arrow {
  border-top-color: #444444;
}
.tooltip-carbon + .tooltip.right .tooltip-arrow {
  border-right-color: #444444;
}
.tooltip-carbon + .tooltip.left .tooltip-arrow {
  border-left-color: #444444;
}
.tooltip-carbon + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #444444;
}
.tooltip-slate-gray + .tooltip > .tooltip-inner {
  border: 1px solid #333333;
  background-color: #333333;
  color: #ffffff;
}
.tooltip-slate-gray + .tooltip.top .tooltip-arrow {
  border-top-color: #333333;
}
.tooltip-slate-gray + .tooltip.right .tooltip-arrow {
  border-right-color: #333333;
}
.tooltip-slate-gray + .tooltip.left .tooltip-arrow {
  border-left-color: #333333;
}
.tooltip-slate-gray + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #333333;
}
.tooltip-darkcarbon + .tooltip > .tooltip-inner {
  border: 1px solid #262626;
  background-color: #262626;
  color: #ffffff;
}
.tooltip-darkcarbon + .tooltip.top .tooltip-arrow {
  border-top-color: #262626;
}
.tooltip-darkcarbon + .tooltip.right .tooltip-arrow {
  border-right-color: #262626;
}
.tooltip-darkcarbon + .tooltip.left .tooltip-arrow {
  border-left-color: #262626;
}
.tooltip-darkcarbon + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #262626;
}
.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-info + .tooltip > .tooltip-inner {
  border: 1px solid #57b5e3;
  background-color: #57b5e3;
  color: #fff;
}
.tooltip-info + .tooltip.top .tooltip-arrow {
  border-top-color: #57b5e3;
}
.tooltip-info + .tooltip.right .tooltip-arrow {
  border-right-color: #57b5e3;
}
.tooltip-info + .tooltip.left .tooltip-arrow {
  border-left-color: #57b5e3;
}
.tooltip-info + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #57b5e3;
}
.tooltip-sky + .tooltip > .tooltip-inner {
  border: 1px solid #11a9cc;
  background-color: #11a9cc;
  color: #fff;
}
.tooltip-sky + .tooltip.top .tooltip-arrow {
  border-top-color: #11a9cc;
}
.tooltip-sky + .tooltip.right .tooltip-arrow {
  border-right-color: #11a9cc;
}
.tooltip-sky + .tooltip.left .tooltip-arrow {
  border-left-color: #11a9cc;
}
.tooltip-sky + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #11a9cc;
}
.tooltip-primary + .tooltip > .tooltip-inner {
  border: 1px solid #4374e0;
  background-color: #4374e0;
  color: #fff;
}
.tooltip-primary + .tooltip.top .tooltip-arrow {
  border-top-color: #4374e0;
}
.tooltip-primary + .tooltip.right .tooltip-arrow {
  border-right-color: #4374e0;
}
.tooltip-primary + .tooltip.left .tooltip-arrow {
  border-left-color: #4374e0;
}
.tooltip-primary + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #4374e0;
}
.tooltip-azure + .tooltip > .tooltip-inner {
  border: 1px solid #2dc3e8;
  background-color: #2dc3e8;
  color: #fff;
}
.tooltip-azure + .tooltip.top .tooltip-arrow {
  border-top-color: #2dc3e8;
}
.tooltip-azure + .tooltip.right .tooltip-arrow {
  border-right-color: #2dc3e8;
}
.tooltip-azure + .tooltip.left .tooltip-arrow {
  border-left-color: #2dc3e8;
}
.tooltip-azure + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #2dc3e8;
}
.tooltip-blueberry + .tooltip > .tooltip-inner {
  border: 1px solid #6f85bf;
  background-color: #6f85bf;
  color: #fff;
}
.tooltip-blueberry + .tooltip.top .tooltip-arrow {
  border-top-color: #6f85bf;
}
.tooltip-blueberry + .tooltip.right .tooltip-arrow {
  border-right-color: #6f85bf;
}
.tooltip-blueberry + .tooltip.left .tooltip-arrow {
  border-left-color: #6f85bf;
}
.tooltip-blueberry + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #6f85bf;
}
.tooltip-palegreen + .tooltip > .tooltip-inner {
  border: 1px solid #a0d468;
  background-color: #a0d468;
  color: #fff;
}
.tooltip-palegreen + .tooltip.top .tooltip-arrow {
  border-top-color: #a0d468;
}
.tooltip-palegreen + .tooltip.right .tooltip-arrow {
  border-right-color: #a0d468;
}
.tooltip-palegreen + .tooltip.left .tooltip-arrow {
  border-left-color: #a0d468;
}
.tooltip-palegreen + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #a0d468;
}
.tooltip-success + .tooltip > .tooltip-inner {
  border: 1px solid #9B7125;
  background-color: #9B7125;
  color: #fff;
}
.tooltip-success + .tooltip.top .tooltip-arrow {
  border-top-color: #9B7125;
}
.tooltip-success + .tooltip.right .tooltip-arrow {
  border-right-color: #9B7125;
}
.tooltip-success + .tooltip.left .tooltip-arrow {
  border-left-color: #9B7125;
}
.tooltip-success + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #9B7125;
}
.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-lightyellow + .tooltip > .tooltip-inner {
  border: 1px solid #f6d52e;
  background-color: #f6d52e;
  color: #fff;
}
.tooltip-lightyellow + .tooltip.top .tooltip-arrow {
  border-top-color: #f6d52e;
}
.tooltip-lightyellow + .tooltip.right .tooltip-arrow {
  border-right-color: #f6d52e;
}
.tooltip-lightyellow + .tooltip.left .tooltip-arrow {
  border-left-color: #f6d52e;
}
.tooltip-lightyellow + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #f6d52e;
}
.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-warning + .tooltip > .tooltip-inner {
  border: 1px solid #f4b400;
  background-color: #f4b400;
  color: #fff;
}
.tooltip-warning + .tooltip.top .tooltip-arrow {
  border-top-color: #f4b400;
}
.tooltip-warning + .tooltip.right .tooltip-arrow {
  border-right-color: #f4b400;
}
.tooltip-warning + .tooltip.left .tooltip-arrow {
  border-left-color: #f4b400;
}
.tooltip-warning + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #f4b400;
}
.tooltip-gold + .tooltip > .tooltip-inner {
  border: 1px solid #f9b256;
  background-color: #f9b256;
  color: #fff;
}
.tooltip-gold + .tooltip.top .tooltip-arrow {
  border-top-color: #f9b256;
}
.tooltip-gold + .tooltip.right .tooltip-arrow {
  border-right-color: #f9b256;
}
.tooltip-gold + .tooltip.left .tooltip-arrow {
  border-left-color: #f9b256;
}
.tooltip-gold + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #f9b256;
}
.tooltip-orange + .tooltip > .tooltip-inner {
  border: 1px solid #fb6e52;
  background-color: #fb6e52;
  color: #fff;
}
.tooltip-orange + .tooltip.top .tooltip-arrow {
  border-top-color: #fb6e52;
}
.tooltip-orange + .tooltip.right .tooltip-arrow {
  border-right-color: #fb6e52;
}
.tooltip-orange + .tooltip.left .tooltip-arrow {
  border-left-color: #fb6e52;
}
.tooltip-orange + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #fb6e52;
}
.tooltip-lightred + .tooltip > .tooltip-inner {
  border: 1px solid #e46f61;
  background-color: #e46f61;
  color: #fff;
}
.tooltip-lightred + .tooltip.top .tooltip-arrow {
  border-top-color: #e46f61;
}
.tooltip-lightred + .tooltip.right .tooltip-arrow {
  border-right-color: #e46f61;
}
.tooltip-lightred + .tooltip.left .tooltip-arrow {
  border-left-color: #e46f61;
}
.tooltip-lightred + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #e46f61;
}
.tooltip-darkorange + .tooltip > .tooltip-inner {
  border: 1px solid #ed4e2a;
  background-color: #ed4e2a;
  color: #fff;
}
.tooltip-darkorange + .tooltip.top .tooltip-arrow {
  border-top-color: #ed4e2a;
}
.tooltip-darkorange + .tooltip.right .tooltip-arrow {
  border-right-color: #ed4e2a;
}
.tooltip-darkorange + .tooltip.left .tooltip-arrow {
  border-left-color: #ed4e2a;
}
.tooltip-darkorange + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #ed4e2a;
}
.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-pink + .tooltip > .tooltip-inner {
  border: 1px solid #e75b8d;
  background-color: #e75b8d;
  color: #fff;
}
.tooltip-pink + .tooltip.top .tooltip-arrow {
  border-top-color: #e75b8d;
}
.tooltip-pink + .tooltip.right .tooltip-arrow {
  border-right-color: #e75b8d;
}
.tooltip-pink + .tooltip.left .tooltip-arrow {
  border-left-color: #e75b8d;
}
.tooltip-pink + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #e75b8d;
}
.tooltip-darkpink + .tooltip > .tooltip-inner {
  border: 1px solid #cc324b;
  background-color: #cc324b;
  color: #fff;
}
.tooltip-darkpink + .tooltip.top .tooltip-arrow {
  border-top-color: #cc324b;
}
.tooltip-darkpink + .tooltip.right .tooltip-arrow {
  border-right-color: #cc324b;
}
.tooltip-darkpink + .tooltip.left .tooltip-arrow {
  border-left-color: #cc324b;
}
.tooltip-darkpink + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #cc324b;
}
.tooltip-danger + .tooltip > .tooltip-inner {
  border: 1px solid #d73d32;
  background-color: #d73d32;
  color: #fff;
}
.tooltip-danger + .tooltip.top .tooltip-arrow {
  border-top-color: #d73d32;
}
.tooltip-danger + .tooltip.right .tooltip-arrow {
  border-right-color: #d73d32;
}
.tooltip-danger + .tooltip.left .tooltip-arrow {
  border-left-color: #d73d32;
}
.tooltip-danger + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #d73d32;
}
.tooltip-magenta + .tooltip > .tooltip-inner {
  border: 1px solid #bc5679;
  background-color: #bc5679;
  color: #fff;
}
.tooltip-magenta + .tooltip.top .tooltip-arrow {
  border-top-color: #bc5679;
}
.tooltip-magenta + .tooltip.right .tooltip-arrow {
  border-right-color: #bc5679;
}
.tooltip-magenta + .tooltip.left .tooltip-arrow {
  border-left-color: #bc5679;
}
.tooltip-magenta + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #bc5679;
}
.tooltip-purple + .tooltip > .tooltip-inner {
  border: 1px solid #7e3794;
  background-color: #7e3794;
  color: #fff;
}
.tooltip-purple + .tooltip.top .tooltip-arrow {
  border-top-color: #7e3794;
}
.tooltip-purple + .tooltip.right .tooltip-arrow {
  border-right-color: #7e3794;
}
.tooltip-purple + .tooltip.left .tooltip-arrow {
  border-left-color: #7e3794;
}
.tooltip-purple + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #7e3794;
}
.tooltip-maroon + .tooltip > .tooltip-inner {
  border: 1px solid #981b48;
  background-color: #981b48;
  color: #fff;
}
.tooltip-maroon + .tooltip.top .tooltip-arrow {
  border-top-color: #981b48;
}
.tooltip-maroon + .tooltip.right .tooltip-arrow {
  border-right-color: #981b48;
}
.tooltip-maroon + .tooltip.left .tooltip-arrow {
  border-left-color: #981b48;
}
.tooltip-maroon + .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #981b48;
}
/*#endregion ToolTips*/
/*#region Notifications*/
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  padding-top:12px
}
.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-white {
  background-color: #ffffff !important;
}
.toast-snow {
  background-color: #fbfbfb !important;
}
.toast-whitesmoke {
  background-color: #f5f5f5 !important;
}
.toast-seashell {
  background-color: #f3f3f3 !important;
}
.toast-ivory {
  background-color: #eeeeee !important;
}
.toast-platinum {
  background-color: #e5e5e5 !important;
}
.toast-lightgray {
  background-color: #d0d0d0 !important;
}
.toast-gray {
  background-color: #cccccc !important;
}
.toast-darkgray {
  background-color: #999999 !important;
}
.toast-silver {
  background-color: #777777 !important;
}
.toast-sonic-silver {
  background-color: #737373 !important;
}
.toast-storm-cloud {
  background-color: #666666 !important;
}
.toast-lightcarbon {
  background-color: #555555 !important;
}
.toast-carbon {
  background-color: #444444 !important;
}
.toast-slate-gray {
  background-color: #333333 !important;
}
.toast-darkcarbon {
  background-color: #262626 !important;
}
.toast-blue {
  background-color: #5db2ff !important;
}
.toast-info {
  background-color: #57b5e3 !important;
}
.toast-sky {
  background-color: #11a9cc !important;
}
.toast-primary {
  background-color: #4374e0 !important;
}
.toast-blueberry {
  background-color: #6f85bf !important;
}
.toast-palegreen {
  background-color: #a0d468 !important;
}
.toast-success {
  background-color: #9B7125 !important;
}
.toast-green {
  background-color: #8cc474 !important;
}
.toast-lightyellow {
  background-color: #f6d52e !important;
}
.toast-yellow {
  background-color: #ffce55 !important;
}
.toast-warning {
  background-color: #f4b400 !important;
}
.toast-gold {
  background-color: #f9b256 !important;
}
.toast-orange {
  background-color: #fb6e52 !important;
}
.toast-lightred {
  background-color: #e46f61 !important;
}
.toast-darkorange {
  background-color: #ed4e2a !important;
}
.toast-red {
  background-color: #df5138 !important;
}
.toast-danger {
  background-color: #d73d32 !important;
}
.toast-pink {
  background-color: #e75b8d !important;
}
.toast-darkpink {
  background-color: #cc324b !important;
}
.toast-magenta {
  background-color: #bc5679 !important;
}
.toast-purple {
  background-color: #7e3794 !important;
}
.toast-maroon {
  background-color: #981b48 !important;
}

/*#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: 170px;
}
.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-info li a:hover,
.dropdown-info li a:focus,
.dropdown-info li a:active,
.dropdown-info li.active a,
.dropdown-info li.active a:hover,
.dropdown-info .dropdown-submenu:hover > a,
.nav-tabs .dropdown-info li > a:focus {
  background: #57b5e3;
  color: #ffffff;
}
.dropdown-primary li a:hover,
.dropdown-primary li a:focus,
.dropdown-primary li a:active,
.dropdown-primary li.active a,
.dropdown-primary li.active a:hover,
.dropdown-primary .dropdown-submenu:hover > a,
.nav-tabs .dropdown-primary li > a:focus {
  background: #4374e0;
  color: #ffffff;
}
.dropdown-success li a:hover,
.dropdown-success li a:focus,
.dropdown-success li a:active,
.dropdown-success li.active a,
.dropdown-success li.active a:hover,
.dropdown-success .dropdown-submenu:hover > a,
.nav-tabs .dropdown-success li > a:focus {
  background: #9B7125;
  color: #ffffff;
}
.dropdown-warning li a:hover,
.dropdown-warning li a:focus,
.dropdown-warning li a:active,
.dropdown-warning li.active a,
.dropdown-warning li.active a:hover,
.dropdown-warning .dropdown-submenu:hover > a,
.nav-tabs .dropdown-warning li > a:focus {
  background: #f4b400;
  color: #ffffff;
}
.dropdown-danger li a:hover,
.dropdown-danger li a:focus,
.dropdown-danger li a:active,
.dropdown-danger li.active a,
.dropdown-danger li.active a:hover,
.dropdown-danger .dropdown-submenu:hover > a,
.nav-tabs .dropdown-danger li > a:focus {
  background: #d73d32;
  color: #ffffff;
}
.dropdown-inverse li a:hover,
.dropdown-inverse li a:focus,
.dropdown-inverse li a:active,
.dropdown-inverse li.active a,
.dropdown-inverse li.active a:hover,
.dropdown-inverse .dropdown-submenu:hover > a,
.nav-tabs .dropdown-inverse li > a:focus {
  background: #262626;
  color: #ffffff;
}
.dropdown-blue li a:hover,
.dropdown-blue li a:focus,
.dropdown-blue li a:active,
.dropdown-blue li.active a,
.dropdown-blue li.active a:hover,
.dropdown-blue .dropdown-submenu:hover > a,
.nav-tabs .dropdown-blue li > a:focus {
  background: #5db2ff;
  color: #ffffff;
}
.dropdown-blueberry li a:hover,
.dropdown-blueberry li a:focus,
.dropdown-blueberry li a:active,
.dropdown-blueberry li.active a,
.dropdown-blueberry li.active a:hover,
.dropdown-blueberry .dropdown-submenu:hover > a,
.nav-tabs .dropdown-blueberry li > a:focus {
  background: #6f85bf;
  color: #ffffff;
}
.dropdown-palegreen li a:hover,
.dropdown-palegreen li a:focus,
.dropdown-palegreen li a:active,
.dropdown-palegreen li.active a,
.dropdown-palegreen li.active a:hover,
.dropdown-palegreen .dropdown-submenu:hover > a,
.nav-tabs .dropdown-palegreen li > a:focus {
  background: #a0d468;
  color: #ffffff;
}
.dropdown-orange li a:hover,
.dropdown-orange li a:focus,
.dropdown-orange li a:active,
.dropdown-orange li.active a,
.dropdown-orange li.active a:hover,
.dropdown-orange .dropdown-submenu:hover > a,
.nav-tabs .dropdown-orange li > a:focus {
  background: #fb6e52;
  color: #ffffff;
}
.dropdown-darkorange li a:hover,
.dropdown-darkorange li a:focus,
.dropdown-darkorange li a:active,
.dropdown-darkorange li.active a,
.dropdown-darkorange li.active a:hover,
.dropdown-darkorange .dropdown-submenu:hover > a,
.nav-tabs .dropdown-darkorange li > a:focus {
  background: #ed4e2a;
  color: #ffffff;
}
.dropdown-magenta li a:hover,
.dropdown-magenta li a:focus,
.dropdown-magenta li a:active,
.dropdown-magenta li.active a,
.dropdown-magenta li.active a:hover,
.dropdown-magenta .dropdown-submenu:hover > a,
.nav-tabs .dropdown-magenta li > a:focus {
  background: #bc5679;
  color: #ffffff;
}
.dropdown-purple li a:hover,
.dropdown-purple li a:focus,
.dropdown-purple li a:active,
.dropdown-purple li.active a,
.dropdown-purple li.active a:hover,
.dropdown-purple .dropdown-submenu:hover > a,
.nav-tabs .dropdown-purple li > a:focus {
  background: #7e3794;
  color: #ffffff;
}
.dropdown-maroon li a:hover,
.dropdown-maroon li a:focus,
.dropdown-maroon li a:active,
.dropdown-maroon li.active a,
.dropdown-maroon li.active a:hover,
.dropdown-maroon .dropdown-submenu:hover > a,
.nav-tabs .dropdown-maroon li > a:focus {
  background: #981b48;
  color: #ffffff;
}
.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: #2dc3e8;
  border-color: #2dc3e8;
  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 {
  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 thead > tr > th {
  border-bottom: 0;
  font-size: 13px;
  font-weight: 600;
}
.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.colored-danger > tr > th {
  background-color: #d73d32;
}
.table thead.colored-success > tr > th {
  background-color: #9B7125;
}
.table thead.colored-warning > tr > th {
  background-color: #f4b400;
}
.table thead.colored-silver > tr > th {
  background-color: #777777;
}
.table thead.colored-inverse > tr > th {
  background-color: #444444;
}
.table thead.colored-blueberry > tr > th {
  background-color: #6f85bf;
}
.table thead.colored-palegreen > tr > th {
  background-color: #a0d468;
}
.table thead.colored-orange > tr > th {
  background-color: #fb6e52;
}
.table thead.colored-darkorange > tr > th {
  background-color: #ed4e2a;
}
.table thead.colored-magenta > tr > th {
  background-color: #bc5679;
}
.table thead.colored-purple > tr > th {
  background-color: #7e3794;
}
.table thead.colored-maroon > tr > th {
  background-color: #981b48;
}
.table thead.bordered-blue > tr > th {
  border-bottom: 3px solid #5db2ff;
}
.table thead.bordered-primary > tr > th {
  border-bottom: 3px solid #4374e0;
}
.table thead.bordered-danger > tr > th {
  border-bottom: 3px solid #d73d32;
}
.table thead.bordered-success > tr > th {
  border-bottom: 3px solid #9B7125;
}
.table thead.bordered-warning > tr > th {
  border-bottom: 3px solid #f4b400;
}
.table thead.bordered-silver > tr > th {
  border-bottom: 3px solid #777777;
}
.table thead.bordered-inverse > tr > th {
  border-bottom: 3px solid #444444;
}
.table thead.bordered-blueberry > tr > th {
  border-bottom: 3px solid #6f85bf;
}
.table thead.bordered-palegreen > tr > th {
  border-bottom: 3px solid #a0d468;
}
.table thead.bordered-orange > tr > th {
  border-bottom: 3px solid #fb6e52;
}
.table thead.bordered-darkorange > tr > th {
  border-bottom: 3px solid #ed4e2a;
}
.table thead.bordered-magenta > tr > th {
  border-bottom: 3px solid #bc5679;
}
.table thead.bordered-purple > tr > th {
  border-bottom: 3px solid #7e3794;
}
.table thead.bordered-maroon > tr > th {
  border-bottom: 3px solid #981b48;
}
.table tr.success td:first-child {
  -webkit-box-shadow: 2px 0 0 #9B7125 inset;
  -moz-box-shadow: 2px 0 0 #9B7125 inset;
  box-shadow: 2px 0 0 #9B7125 inset;
}
.table tr.danger td:first-child {
  -webkit-box-shadow: 2px 0 0 #d73d32 inset;
  -moz-box-shadow: 2px 0 0 #d73d32 inset;
  box-shadow: 2px 0 0 #d73d32 inset;
}
.table tr.warning td:first-child {
  -webkit-box-shadow: 2px 0 0 #f4b400 inset;
  -moz-box-shadow: 2px 0 0 #f4b400 inset;
  box-shadow: 2px 0 0 #f4b400 inset;
}
.table tr.active td:first-child {
  -webkit-box-shadow: 2px 0 0 #737373 inset;
  -moz-box-shadow: 2px 0 0 #737373 inset;
  box-shadow: 2px 0 0 #737373 inset;
}
.table tr td.success {
  -webkit-box-shadow: 2px 0 0 #9B7125 inset;
  -moz-box-shadow: 2px 0 0 #9B7125 inset;
  box-shadow: 2px 0 0 #9B7125 inset;
}
.table tr td.danger {
  -webkit-box-shadow: 2px 0 0 #d73d32 inset;
  -moz-box-shadow: 2px 0 0 #d73d32 inset;
  box-shadow: 2px 0 0 #d73d32 inset;
}
.table tr td.warning {
  -webkit-box-shadow: 2px 0 0 #f4b400 inset;
  -moz-box-shadow: 2px 0 0 #f4b400 inset;
  box-shadow: 2px 0 0 #f4b400 inset;
}
.table tr td.active {
  -webkit-box-shadow: 2px 0 0 #737373 inset;
  -moz-box-shadow: 2px 0 0 #737373 inset;
  box-shadow: 2px 0 0 #737373 inset;
}







.table-toolbar {
  padding: 10px 0;
}
.dropdown-checkboxes {
  padding: 5px;
}
.dropdown-checkboxes .checker {
  display: block;
  font-weight: 300;
  color: #333;
  margin: 0 4px;
  line-height: 24px;
}
.dropdown-checkboxes .checker input {
  margin-top: 5px;
}
.dropdown-checkboxes .checker span {
  padding-left: 5px;
}
/*#endregion Tables*/
/*#region Nestable List*/
.dd {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  max-width: 600px;
  list-style: none;
  line-height: 20px;
}
.dd.shadowed .dd-handle,
.dd.shadowed .dd2-content {
  -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);
}
.dd.bordered .dd-handle,
.dd.bordered .dd2-content {
  border: 1px solid #cfcfcf;
}
.dd.darker .dd-handle,
.dd.darker .dd2-content {
  background-color: #eeeeee;
}
.dd.darker .dd2-handle,
.dd.darker .dd-dragel > li > .dd2-handle {
  background-color: #e5e5e5;
}
.dd-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dd-list > li > .dd-handle,
.dd-list > li > .dd2-content {
  /*#region colered List Item*/
}
.dd-list > li > .dd-handle[class*="bg-"],
.dd-list > li > .dd2-content[class*="bg-"] {
  color: #FFF;
}
.dd-list .dd-list {
  padding-left: 30px;
}
.dd-collapsed .dd-list {
  display: none;
}
.dd-item,
.dd-empty,
.dd-placeholder {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  min-height: 20px;
  line-height: 20px;
}
.dd-handle,
.dd2-content {
  display: block;
  min-height: 38px;
  margin: 5px 0;
  padding: 8px 12px;
  background: #f5f5f5;
  color: #737373;
  font-size: 13px;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dd-handle:hover,
.dd2-content:hover,
.dd-handle:hover,
.dd2-content:hover {
  color: #262626;
  background: #eeeeee;
}
.dd-handle[class*="btn-"],
.dd2-content[class*="btn-"] {
  color: #FFF;
  border: 0;
  padding: 9px 12px;
}
.dd-handle[class*="btn-"]:hover,
.dd2-content[class*="btn-"]:hover {
  opacity: .85;
  color: #FFF;
}
.dd2-handle + .dd2-content,
.dd2-handle + .dd2-content[class*="btn-"] {
  padding-left: 44px;
}
.dd-handle[class*="btn-"]:hover,
.dd2-content[class*="btn-"] .dd2-handle[class*="btn-"]:hover + .dd2-content[class*="btn-"] {
  color: #FFF;
}
.dd-item > button:hover ~ .dd-handle[class*="btn-"],
.dd-item > button:hover ~ .dd2-content[class*="btn-"] {
  opacity: .85;
  color: #FFF;
}
.dd2-handle:hover ~ .dd2-content {
  color: #262626;
  background: #f5f5f5;
}
.dd2-item.dd-item > button {
  margin-left: 38px;
}
.dd-item > button {
  display: block;
  position: relative;
  z-index: 1;
  cursor: pointer;
  float: left;
  width: 25px;
  height: 20px;
  margin: 5px 1px 5px 5px;
  padding: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  font-weight: bold;
  top: 4px;
  left: 1px;
  color: #737373;
}
.dd-item > button:before {
  font-family: FontAwesome;
  content: '\f067';
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  text-indent: 0;
  font-weight: normal;
  font-size: 14px;
}
.dd-item > button[data-action="collapse"]:before {
  content: '\f068';
}
.dd-item > button:hover {
  color: #737373;
}
.dd-item .dd-colored > button,
.dd-item.dd-colored > button:hover {
  color: #f5f5f5;
}
.dd-placeholder,
.dd-empty {
  margin: 5px 0;
  padding: 0;
  min-height: 30px;
  background: #f5f5f5;
  border: 1px dashed #d0d0d0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dd-empty {
  border-color: #AAA;
  border-style: solid;
  background-color: #e5e5e5;
}
.dd-dragel {
  position: absolute;
  pointer-events: none;
  z-index: 999;
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
}
.dd-dragel > li > .dd-handle {
  color: #000000;
  background: #fbfbfb;
  border-left: 2px solid #444444;
  position: relative;
}
.dd-dragel > .dd-item > .dd-handle {
  margin-top: 0;
}
/*#region Bordered List Item*/
.dd-list > li[class*="bordered-"] {
  border-width: 0;
  padding: 0;
}
.dd-list > li[class*="bordered-"] > .dd-handle {
  border-left: 2px solid;
  border-left-color: inherit;
}
.dd-list > li.bordered-blue > .dd-handle {
  border-left-color: #5db2ff;
}
.dd-list > li.bordered-primary > .dd-handle {
  border-left-color: #4374e0;
}
.dd-list > li.bordered-danger > .dd-handle {
  border-left-color: #d73d32;
}
.dd-list > li.bordered-warning > .dd-handle {
  border-left-color: #f4b400;
}
.dd-list > li.bordered-success > .dd-handle {
  border-left-color: #9B7125;
}
.dd-list > li.bordered-silver > .dd-handle {
  border-left-color: #777777;
}
.dd-list > li.bordered-inverse > .dd-handle {
  border-left-color: #444444;
}
.dd-list > li.bordered-blueberry > .dd-handle {
  border-left-color: #6f85bf;
}
.dd-list > li.bordered-palegreen > .dd-handle {
  border-left-color: #a0d468;
}
.dd-list > li.bordered-orange > .dd-handle {
  border-left-color: #fb6e52;
}
.dd-list > li.bordered-darkorange > .dd-handle {
  border-left-color: #ed4e2a;
}
.dd-list > li.bordered-magenta > .dd-handle {
  border-left-color: #bc5679;
}
.dd-list > li.bordered-purple > .dd-handle {
  border-left-color: #7e3794;
}
.dd-list > li.bordered-maroon > .dd-handle {
  border-left-color: #981b48;
}
/*#endregion Bordered List Item*/
.dd-list > li > .dd-handle .sticker {
  position: absolute;
  right: 0;
  top: 0;
}
.dd2-handle,
.dd-dragel > li > .dd2-handle {
  left: 0;
  top: 0;
  width: 38px;
  margin: 0;
  border-width: 1px 1px 0 0;
  text-align: center;
  padding: 0 !important;
  line-height: 38px;
  height: 38px;
  background: #ffffff;
  cursor: pointer;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}
.dd2-handle .normal-icon,
.dd-dragel > li > .dd2-handle .normal-icon,
.dd2-handle .drag-icon,
.dd-dragel > li > .dd2-handle .drag-icon {
  font-size: 16px;
}
.dd2-handle:hover,
.dd-dragel > li > .dd2-handle {
  background: #f3f3f3;
}
.dd-item > .dd2-handle .drag-icon {
  display: none;
}
.dd-dragel > .dd-item > .dd2-handle .drag-icon {
  display: inline;
}
.dd-dragel > .dd-item > .dd2-handle .normal-icon {
  display: none;
}
/*#endregion Nestable List*/

/*#region Charts*/
.chart {
  height: 220px;
  margin: 5px;
}
.chart-sm {
  height: 100px;
}
.chart-lg {
  height: 250px;
}
.chart-xl {
  height: 350px;
}
#flotTip {
  padding: 3px 5px;
  background-color: #f5f5f5;
  z-index: 9999;
  color: #262626;
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
  border: 1px solid #cccccc;
}
#flotTip span {
  color: #5db2ff;
  font-weight: 700;
}
.flot-donut-caption {
  position: absolute;
  -lh-property: 0;
top:-webkit-calc(50% - 20px);
top:-moz-calc(50% - 20px);
top:calc(50% - 20px);
;
  -lh-property: 0;
left:-webkit-calc(50% - 25px);
left:-moz-calc(50% - 25px);
left:calc(50% - 25px);
;
}
flot-donut-caption .legendLabel span {
  display: block;
  margin: 0 5px;
}
.legendColorBox {
  padding-left: 10px;
  vertical-align: top;
  padding-top: 5px;
}
.legendColorBox div > div {
  width: 4px;
  height: 4px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.morris-hover.morris-default-style {
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  padding: 3px;
  color: #444444;
  background: rgba(255, 255, 255, 0.8);
  border: solid 2px rgba(230, 230, 230, 0.8);
  font-family: sans-serif;
  font-size: 12px;
  text-align: center;
}
.morris-hover.morris-default-style .morris-hover-row-label {
  font-weight: 700;
  margin: .25em 0;
}
.morris-hover.morris-default-style .morris-hover-point {
  white-space: nowrap;
  margin: .1em 0;
}
.morris-hover {
  position: absolute;
  z-index: 1001;
}
.has-legend {
  margin-top: 30px !important;
}
.has-legend-unique {
  margin-top: 19px !important;
}
.easyPieChart {
  position: relative;
  text-align: center;
}
.easyPieChart canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.easy-pie-chart {
  display: inline-block;
}
.easy-pie-chart .percent {
  color: #444;
  font-size: 12px;
  font-weight: 700;
}
.easy-pie-title {
  display: inline-block;
  margin: 10px 6px 0;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  width: 100px;
  height: 19px;
  white-space: nowrap;
  overflow: hidden;
}
.jqstooltip {
  padding: 7px !important;
  border-radius: 3px !important;
  border: 0 !important;
  background-color: #000 !important;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.jqstooltip .jqsfield {
  font-family: 'Open Sans', 'Segoe UI' /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
  font-size: 11px;
}
/*#endregion Charts*/
/*--------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: 1px dashed rgba(0, 0, 0, 0.2);
  font-size: 15px;
  font-weight: 600;
  color: #262626;
    background-color: white;
  margin-bottom: 15px;
}
.form-separator {
  display: block;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}
/*#region Form Label*/
label {
  color: #999;
  font-weight: normal;
  font-size: 12px;
  vertical-align: middle;
  line-height: 1;
}
/*#endregion Form Label*/
/*#region Form Text Input*/

input[type="text"] {
  height: 28px;
  padding: 1px 10px;
  font-size: 12px;
  /*line-height: 1; */


}
input[type="url"] {
  height: 28px;
  padding: 1px 10px;
  font-size: 12px;
  /*line-height: 1; */


}

input[type="email"] {
  height: 28px;
  padding: 1px 10px;
  font-size: 12px;
  /*line-height: 1; */


}

input[type="tel"] {
  height: 28px;
  padding: 1px 10px;
  font-size: 12px;
  /*line-height: 1; */


}

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: #858585;
  background-color: #fbfbfb;
  border: 1px solid #d9d9d9;
  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;
}
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: rgba(0, 0, 0, 0.2);
}
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 {
  color: #262626;
  background-color: #ffffff;
  -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);
  outline: 0;
}
.form-control,
select {
  font-size: 12px;
  color: #858585;
  background-color: #fbfbfb;
  border: 1px solid #d5d5d5;
  padding: 3px 12px;
  width: 100%;
}
.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;
}
.input {
  height: 24px;
  padding: 1px 10px;
  font-size: 12px;
  line-height: 1;
  color: #333;
}
.input-xs {
  height: 28px;
  padding: 0px 5px;
  font-size: 13px;
  line-height: 1.5;
}
.input-sm {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  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: #b0dd9c;
  color: #a0d468;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background-color: #f3f7f1;
}
.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: #8cc474;
  border-color: #8cc474;
}
.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: #8cc474;
}
.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: 12px;
  padding-top: 0;
  line-height: 30px;
}
.input-icon > input.input-sm + .circular {
  width: 20px;
  height: 20px;
  font-size: 12px;
  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-"],
.input-icon > [class*="glyphicon-"] {
  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: 12px;
  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%);
    padding-top: 4px !important;
}
.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*/

input[type=checkbox]:checked {
    color: #000;
}

/*#endregion Switches*/
/*#region Spinners*/
.spinner {
  position: relative;
}
.spinner input {
  float: left;
  padding-left: 35px;
}
.spinner .btn {
  position: relative;
  width: 20px;
  padding-top: 0;
  padding-right: 9px;
  padding-left: 9px;
  font-size: 14px;
  font-weight: normal;
  padding: 4px 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  height: 17px;
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.spinner .btn:hover {
  color: #f5f5f5;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.spinner .btn:focus,
.spinner .btn:active {
  color: #f5f5f5;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.spinner .btn.disabled {
  cursor: not-allowed;
}
.spinner .spinner-buttons {
  position: absolute;
  left: 0;
  float: left;
  width: 20px;
  height: 34px;
  border-left: 1px solid #d5d5d5;
}
.spinner .spinner-up {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  top: 0;
  background-color: #fbfbfb;
  border-left: 1px !important;
}
.spinner .spinner-up i {
  position: relative;
  top: -6px;
  margin-right: 0;
}
.spinner .spinner-down {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  bottom: 0;
  background-color: #fbfbfb;
  border-bottom-left-radius: 0 !important;
  border-left: 1px !important;
  border-top: 1px solid #d5d5d5;
}
.spinner .spinner-down i {
  position: relative;
  top: -7px;
  margin-right: 0;
}
.spinner.spinner-right .spinner-buttons {
  left: auto;
  right: 0;
  border-right: 0;
}
.spinner.spinner-right input {
  padding-left: 10px;
  padding-right: 35px;
  margin-left: 0;
}
.spinner.spinner-horizontal input {
  padding-left: 60px;
}
.spinner.spinner-horizontal .spinner-buttons {
  margin: 0;
  font-size: 0;
  width: 50px;
  left: 0;
  top: 0;
}
.spinner.spinner-horizontal .spinner-buttons > .btn {
  height: 34px;
  line-height: 32px;
  font-size: 18px;
  display: inline-block;
  vertical-align: sub;
  margin: 0;
}
.spinner.spinner-horizontal .spinner-buttons > .btn > i {
  vertical-align: middle;
  display: inline-block;
}
.spinner.spinner-horizontal .spinner-down {
  width: 24px;
  border-left: 0;
}
.spinner.spinner-horizontal .spinner-down i {
  top: -5px;
}
.spinner.spinner-horizontal .spinner-up {
  width: 24px;
}
.spinner.spinner-horizontal .spinner-up i {
  top: -5px;
}
.spinner.spinner-horizontal.spinner-right {
  margin-left: 0;
}
.spinner.spinner-horizontal.spinner-right .spinner-buttons {
  right: -1px;
  left: auto;
}
.spinner.spinner-horizontal.spinner-right input {
  padding-left: 10px;
}
.spinner.spinner-horizontal.spinner-two-sided .spinner-buttons {
  width: 25px !important;
}
.spinner.spinner-horizontal.spinner-two-sided .spinner-buttons.spinner-buttons-left {
  left: 0;
}
.spinner.spinner-horizontal.spinner-two-sided .spinner-buttons.spinner-buttons-right {
  right: 0;
  left: auto;
}
.spinner.spinner-horizontal.spinner-two-sided input {
  padding-left: 35px !important;
}
/*#endregion Spinners*/
/*#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 #2dc3e8;
  background: #2dc3e8;
}
.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 ColorPicker*/
.minicolors {
  position: relative;
}
.minicolors-swatch {
  position: absolute;
  vertical-align: middle;
  background: url(../img/jquery.minicolors.png) -80px 0;
  border: solid 1px #fbfbfb;
  cursor: text;
  padding: 0;
  margin: 0;
  display: inline-block;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.minicolors-swatch-color {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.minicolors input[type=hidden] + .minicolors-swatch {
  width: 28px;
  position: static;
  cursor: pointer;
}
/* Panel */
.minicolors-panel {
  position: absolute;
  width: 173px;
  height: 152px;
  background: white;
  border: solid 1px #CCC;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  display: none;
}
.minicolors-panel.minicolors-visible {
  display: block;
}
/* Panel positioning */
.minicolors-position-top .minicolors-panel {
  top: -154px;
}
.minicolors-position-right .minicolors-panel {
  right: 0;
}
.minicolors-position-bottom .minicolors-panel {
  top: auto;
}
.minicolors-position-left .minicolors-panel {
  left: 0;
}
.minicolors-with-opacity .minicolors-panel {
  width: 194px;
}
.minicolors .minicolors-grid {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 150px;
  height: 150px;
  background: url(../img/jquery.minicolors.png) -120px 0;
  cursor: crosshair;
}
.minicolors .minicolors-grid-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: none;
}
.minicolors-slider-saturation .minicolors-grid {
  background-position: -420px 0;
}
.minicolors-slider-saturation .minicolors-grid-inner {
  background: url(../img/jquery.minicolors.png) -270px 0;
}
.minicolors-slider-brightness .minicolors-grid {
  background-position: -570px 0;
}
.minicolors-slider-brightness .minicolors-grid-inner {
  background: #000000;
}
.minicolors-slider-wheel .minicolors-grid {
  background-position: -720px 0;
}
.minicolors-slider,
.minicolors-opacity-slider {
  position: absolute;
  top: 1px;
  left: 152px;
  width: 20px;
  height: 150px;
  background: #ffffff url(../img/jquery.minicolors.png) 0 0;
  cursor: row-resize;
}
.minicolors-slider-saturation .minicolors-slider {
  background-position: -60px 0;
}
.minicolors-slider-brightness .minicolors-slider {
  background-position: -20px 0;
}
.minicolors-slider-wheel .minicolors-slider {
  background-position: -20px 0;
}
.minicolors-opacity-slider {
  left: 173px;
  background-position: -40px 0;
  display: none;
}
.minicolors-with-opacity .minicolors-opacity-slider {
  display: block;
}
/* Pickers */
.minicolors-grid .minicolors-picker {
  position: absolute;
  top: 70px;
  left: 70px;
  width: 12px;
  height: 12px;
  border: solid 1px #000000;
  border-radius: 10px;
  margin-top: -6px;
  margin-left: -6px;
  background: none;
}
.minicolors-grid .minicolors-picker > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  border: solid 2px #ffffff;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.minicolors-picker {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border: solid 1px #000000;
  margin-top: -2px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
/* Inline controls */
.minicolors-inline {
  display: inline-block;
}
.minicolors-inline .minicolors-input {
  display: none !important;
}
.minicolors-inline .minicolors-panel {
  position: relative;
  top: auto;
  left: auto;
  box-shadow: none;
  z-index: auto;
  display: inline-block;
}
/* Bootstrap theme */
.minicolors-theme-bootstrap .minicolors-swatch {
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.minicolors-theme-bootstrap.minicolors-position-right .minicolors-swatch {
  left: auto;
  right: 3px;
}
.minicolors-theme-bootstrap .minicolors-input {
  padding-left: 44px;
}
.minicolors-theme-bootstrap.minicolors-position-right .minicolors-input {
  padding-right: 44px;
  padding-left: 12px;
}
.dropdown-colorpicker {
  height: 35px;
  width: 35px;
  padding: 7px;
}
.dropdown-colorpicker > .dropdown-menu {
  top: 100%;
  left: 0;
  padding: 4px;
  min-width: 154px;
  max-width: 154px;
}
.dropdown-colorpicker > .dropdown-menu > li {
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  margin: 2px;
}
.dropdown-colorpicker > .dropdown-menu > li > .colorpick-btn {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  position: relative;
  -webkit-transition: all ease 0.1s;
  -moz-transition: all ease 0.1s;
  -o-transition: all ease 0.1s;
  transition: all ease 0.1s;
}
.dropdown-colorpicker > .dropdown-menu > li > .colorpick-btn:hover {
  text-decoration: none;
  zoom: 1;
  filter: alpha(opacity=80);
  -webkit-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -o-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}
.dropdown-colorpicker > .dropdown-menu > li > .colorpick-btn.selected:after {
  content: "\f00c";
  display: inline-block;
  font-family: FontAwesome;
  font-size: 11px;
  color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  line-height: 20px;
}
.btn-colorpicker {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #DDD;
  vertical-align: middle;
  border-radius: 0;
}
/*#endregion ColorPicker*/
/*#region Bootstrap Validator*/
.bv-form .help-block {
  margin-bottom: 0;
}
.nav-tabs li.bv-tab-success > a {
  color: #9B7125;
}
.nav-tabs li.bv-tab-error > a {
  color: #d73d32;
}
/*#endregion Bootstrap Validator*/
/*--------Pages and Widgets--------*/
/*#region Login Page*/
.login-container {
  position: relative;
  margin: 10% auto;
  /*max-width: 300px;*/
  max-width: 400px
}
.login-container .loginbox {
  position: relative;
  width: 300px !important;
  height: 300px !important;
  padding: 0;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}
.login-container .loginbox .loginbox-title {
  position: relative;
  text-align: center;
  width: 100%;
  /*height: 35px;*/
  padding-top: 10px;
  /*font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica;*/
  font-size: 20px;
  font-weight: lighter;
  color: #444444;
}
.login-container .loginbox .loginbox-social {
  /*padding: 0 10px 10px;*/
  text-align: center;
}
.login-container .loginbox .loginbox-social .social-title {
  font-size: 14px;
  font-weight: 500;
  color: darkgray;
  margin-top: 10px;
}
.login-container .loginbox .loginbox-social .social-buttons {
  height: 80px;
  padding: 15px 35px;
  text-align: center;
}
.login-container .loginbox .loginbox-social .social-buttons .button-facebook {
  float: left;
  border: 2px solid #3b5998;
  color: #3b5998;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 30px;
}
.login-container .loginbox .loginbox-social .social-buttons .button-facebook i {
  font-size: 26px;
  line-height: 50px;
}
.login-container .loginbox .loginbox-social .social-buttons .button-twitter {
  float: left;
  border: 2px solid #29c1f6;
  color: #29c1f6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-right: 30px;
}
.login-container .loginbox .loginbox-social .social-buttons .button-twitter i {
  font-size: 26px;
  line-height: 50px;
}
.login-container .loginbox .loginbox-social .social-buttons .button-google {
  float: left;
  border: 2px solid #ef4f1d;
  color: #ef4f1d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
.login-container .loginbox .loginbox-social .social-buttons .button-google i {
  font-size: 26px;
  line-height: 50px;
}
.login-container .loginbox .loginbox-or {
  position: relative;
  text-align: center;
  height: 20px;
}
.login-container .loginbox .loginbox-or .or {
  position: absolute;
  top: 0;
  -lh-property: 0;
left:-webkit-calc(50% - 25px);
left:-moz-calc(50% - 25px);
left:calc(50% - 25px);
;
  width: 50px;
  height: 20px;
  background-color: #ffffff;
  color: #999999;
  margin: 0 auto;
}
.login-container .loginbox .loginbox-or .or-line {
  position: absolute;
  height: 1px;
  top: 10px;
  left: 40px;
  right: 40px;
  background-color: #cccccc;
}
.login-container .loginbox .loginbox-textbox {
  padding: 10px 40px;
}
.login-container .loginbox .loginbox-textbox .form-control {
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
}
.login-container .loginbox .loginbox-forgot {
  padding-left: 40px;
}
.login-container .loginbox .loginbox-forgot a {
  font-size: 11px;
  color: #666666;
}
.login-container .loginbox .loginbox-submit {
  padding: 10px 40px;
}
.login-container .loginbox .loginbox-signup {
  text-align: center;
  padding-top: 10px;
}
.login-container .loginbox .loginbox-signup a {
  font-size: 13px;
  color: #666666;
}
.login-container .logobox {
  width: 300px !important;
  height: 50px !important;
  padding: 5px;
  margin-top: 15px;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  text-align: left;
}
/*#endregion Login Page*/
/*#region Register*/
.register-container {
  position: relative;
  margin: 8% auto;
  max-width: 350px;
}
.register-container .registerbox {
  position: relative;
  width: 350px !important;
  height: 560px !important;
  padding: 0;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
}
.register-container .registerbox .registerbox-title {
  position: relative;
  text-align: left;
  width: 100%;
  height: 35px;
  padding: 20px 20px 0;
  font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: normal;
  color: #444444;
}
.register-container .registerbox .registerbox-caption {
  font-size: 14px;
  font-weight: 500;
  color: darkgray;
  padding: 15px 20px 0;
}
.register-container .registerbox .registerbox-textbox {
  padding: 10px 20px;
}
.register-container .registerbox .registerbox-textbox .form-control {
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
}
.register-container .registerbox .registerbox-submit {
  padding: 0 20px;
}
.register-container .logobox {
  width: 350px !important;
  height: 50px !important;
  padding: 5px;
  margin-top: 15px;
  -webkit-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  text-align: left;
}
/*#endregion Register*/
/*#region Lockscreen Page*/
.lock-container {
  margin: 15% auto;
  max-width: 300px;
}
.lock-container .lock-box {
  position: relative;
  background: #fff;
  width: 280px;
  height: 170px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMTAwJSIgeDI9IjAlIiB5Mj0iMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
  background-image: -webkit-linear-gradient(bottom, #ffffff, #f3f3f3);
  background-image: -moz-linear-gradient(bottom, #ffffff, #f3f3f3);
  background-image: -o-linear-gradient(bottom, #ffffff, #f3f3f3);
  background-image: linear-gradient(to top, #ffffff, #f3f3f3);
}
.lock-container .lock-box .lock-username {
  position: absolute;
  height: 50px;
  width: 100%;
  line-height: 50px;
  top: 60px;
  text-align: center;
  color: #999999;
}
.lock-container .lock-box img {
  position: absolute;
  -lh-property: 0;
left:-webkit-calc(50% - 64px);
left:-moz-calc(50% - 64px);
left:calc(50% - 64px);
;
  top: -64px;
  border: 3px solid #ffffff;
  width: 128px;
  height: 128px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.lock-container .lock-box .lock-password {
  position: absolute;
  top: 115px;
  text-align: center;
  -lh-property: 0;
left:-webkit-calc(50% - 114px);
left:-moz-calc(50% - 114px);
left:calc(50% - 114px);
;
}
.lock-container .lock-box .lock-password input {
  background-color: #ffffff;
  border-color: #e5e5e5;
  -webkit-border-radius: 4px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 4px !important;
  -moz-background-clip: padding !important;
  border-radius: 4px !important;
  background-clip: padding-box !important;
  text-align: center;
  padding-left: 25px;
}
.lock-container .lock-box .btn-lock,
.lock-container .lock-box .btn-lock:hover {
  background: #ffffff;
  color: #2dc3e8;
  margin-top: -8px;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.lock-container .lock-box .btn-lock i:before,
.lock-container .lock-box .btn-lock:hover i:before {
  font-size: 18px;
}
.lock-container .signinbox {
  width: 280px !important;
  height: 50px !important;
  padding: 15px;
  margin-top: 15px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  text-align: center;
}
.lock-container .signinbox a {
  font-size: 13px;
  color: #2dc3e8;
  padding-left: 5px;
  cursor: pointer;
}
/*#endregion Lockscreen Page*/
/*#region Profile*/
.profile-container .profile-header {
  min-height: 175px;
  margin: 15px 15px 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  background-color: #fbfbfb;
}
.profile-container .profile-header .header-avatar {
  width: 125px;
  height: 125px;
  -webkit-border-radius: 50%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 50%;
  -moz-background-clip: padding;
  border-radius: 50%;
  background-clip: padding-box;
  border: 5px solid #f5f5f5;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin: 25px auto;
}
.profile-container .profile-header .profile-info {
  min-height: 175px;
  border-right: 1px solid #eeeeee;
  padding: 15px 40px 35px 0;
}
.profile-container .profile-header .profile-info .header-fullname {
  font: 21px 'Lucida Sans', 'trebuchet MS', Arial, Helvetica /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
  margin-top: 27px;
  display: inline-block;
}
.profile-container .profile-header .profile-info .btn-follow {
  position: absolute;
  top: 45px;
  right: 40px;
}
.profile-container .profile-header .profile-info .header-information {
  line-height: 23px;
  margin-top: 15px;
  text-align: justify;
}
.profile-container .profile-header .profile-stats {
  min-height: 175px;
  border-right: 1px solid #eeeeee;
}
.profile-container .profile-header .profile-stats .stats-col {
  margin: 30px 0;
  text-align: center;
}
.profile-container .profile-header .profile-stats .stats-col:not(:last-child) {
  border-right: 1px solid #eeeeee;
}
.profile-container .profile-header .profile-stats .stats-col .stats-value {
  display: block;
  margin: 0 auto;
  text-align: center;
  font-size: 30px;
  font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
}
.profile-container .profile-header .profile-stats .stats-col .stats-title {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.profile-container .profile-header .profile-stats .inlinestats-col {
  padding-top: 15px;
  text-align: center;
  font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
  border-top: 1px solid #eeeeee;
  min-height: 55px;
}
.profile-container .profile-header .profile-stats .inlinestats-col:not(:last-child) {
  border-right: 1px solid #eeeeee;
}
.profile-container .profile-header .profile-stats .inlinestats-col i {
  margin-right: 2px;
}
.profile-container .profile-header .profile-contactinfo .title {
  margin-bottom: 5px;
  margin-top: 30px;
}
.profile-container .profile-header .profile-contactinfo .list-group-item {
  background: none !important;
  border: none;
  padding-bottom: 0;
  margin-top: 5px;
  padding-left: 0px;
  padding-right: 5px;
}
.profile-container .profile-body .nav-tabs > li.active > a,
.profile-container .profile-body .nav-tabs > li.active > a:hover,
.profile-container .profile-body .nav-tabs > li.active > a:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-top: 0;
  border-bottom: 2px solid #2dc3e8;
  background-color: #fbfbfb;
  top: 2px;
  margin-bottom: 0;
}
.profile-container .profile-body .nav-tabs {
  border-top: 1px solid #e5e5e5;
  top: 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.profile-container .profile-body .nav-tabs.tabs-flat {
  background-color: #fbfbfb;
}
.profile-container .profile-body .tab-content {
  margin-top: 30px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.profile-container .profile-body .setting-header {
  margin-bottom: 25px;
}
.profile-container .profile-contacts {
  padding: 25px;
}
.profile-container .profile-contacts .contact-badge i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  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;
}
.profile-container .profile-contacts .contact-badge span {
  font-size: 26px;
  margin-left: 20px;
  font-weight: 300;
}
.profile-container .profile-contacts .contact-info p {
  padding: 10px 70px;
}
.profile-container #contact-map {
  margin: 20px;
  width: 400px;
  height: 400px;
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
  border: #fbfbfb 5px solid;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.profile-container .profile-badge i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  text-align: center;
  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;
}
.profile-container .profile-badge span {
  font-size: 26px;
  margin-left: 20px;
  font-weight: 300;
}
.profile-container .profile-overview {
  padding: 5px;
}
.profile-container .row-title {
  margin-left: -17px;
  margin-top: 50px;
}
.profile-container .timeline {
  padding-top: 35px;
  margin-top: -16px;
}
/*#endregion Profile*/
/*#region Comment*/
.comment {
  padding-top: 12px;
}
.comment:first-child {
  padding-top: 0;
}
.comment > .comment {
  margin-left: 25px !important;
}
.comment .comment-avatar {
  position: relative;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  display: block;
  float: left;
  height: 32px;
  width: 32px;
}
.comment .comment-header {
  font-size: 12px;
  padding-bottom: 2px;
}
.comment .comment-header span {
  color: #d0d0d0;
  display: inline-block;
  font-size: 11px;
  margin-left: 5px;
}
.comment .comment-body {
  float: none;
  margin-left: 40px;
  position: relative;
}
.comment .comment-text {
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 7px 12px 8px;
}
.comment .comment-footer {
  display: block;
  font-size: 12px;
  padding: 4px 12px 0;
}
.comment .comment-footer i {
  font-size: 13px;
  margin-right: 7px;
}
.comment .comment-footer,
.comment .comment-footer a {
  color: #d0d0d0;
}
.comment .comment-footer a:hover {
  color: #2dc3e8;
}
/*#endregion Comment*/
/*#region Dashboard Box*/
.dashboard-box {
  background-color: #ffffff;
  -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);
  margin-bottom: 30px;
}
.dashboard-box .box-header {
  background-color: #ffffff;
  padding: 20px;
  position: relative;
}
.dashboard-box .box-header .deadline {
  position: absolute;
  top: -3px;
  right: 20px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  padding: 5px 10px;
  border-top: 3px solid #2dc3e8;
  color: #999999;
  font-size: 12px;
}
.dashboard-box .box-progress {
  padding: 0;
  position: relative;
}
.dashboard-box .box-progress .progress {
  margin-bottom: 0;
}
.dashboard-box .box-progress .progress .progress-bar {
  position: relative;
}
.dashboard-box .box-progress .progress .progress-bar:after {
  content: '';
  width: 9px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #a0d468;
}
.dashboard-box .box-progress .progress-handle {
  position: absolute;
  top: -31px;
  -lh-property: 0;
left:-webkit-calc(20% - 35px);
left:-moz-calc(20% - 35px);
left:calc(20% - 35px);
  width: 60px;
  height: 25px;
  background-color: #2dc3e8;
  padding: 2px 5px;
  font-size: 11px;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.dashboard-box .box-progress .progress-handle:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  content: " ";
  bottom: -13px;
  left: 23px;
  border-bottom-width: 0;
  border-top-color: #2dc3e8;
  border-width: 7px;
}
.dashboard-box .box-tabbs {
  background-color: #fbfbfb;
}
.dashboard-box .box-tabbs .tabbable .nav-tabs li {
  background-color: #fbfbfb;
}
.dashboard-box .box-tabbs .tabbable .nav-tabs li:first-child.active a {
  border-left: 0px;
}
.dashboard-box .box-tabbs .tabbable .nav-tabs li:last-child.active a {
  border-right: 0px;
}
.dashboard-box .box-tabbs .tabbable .nav-tabs li.active a {
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  border-top: 0 !important;
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
  background-color: #ffffff;
}
.dashboard-box .box-tabbs .tabbable .tab-content {
  margin-top: 1px;
  background-color: #ffffff;
}
.dashboard-box .box-tabbs .tabbable .tab-content .databox {
  margin-bottom: 20px;
}
.dashboard-box .box-days {
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
  padding: 0 15px;
}
.dashboard-box .box-days [class*="col-"] {
  padding-left: 10px;
  padding-right: 10px;
}
.dashboard-box .box-days .day-container {
  height: 58px;
  text-align: center;
  margin: 10px 0;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  color: #737373;
  display: block;
  position: relative;
}
.dashboard-box .box-days .day-container:hover {
  background-color: #2dc3e8;
  color: #ffffff;
  cursor: pointer;
  border: 1px solid #2dc3e8;
  text-decoration: none;
}
.dashboard-box .box-days .day-container:hover .day-pin {
  background-color: #ffffff;
}
.dashboard-box .box-days .day-container.highlight {
  background-color: #2dc3e8;
  border: 1px solid #2dc3e8;
  color: #ffffff;
}
.dashboard-box .box-days .day-container.highlight:hover {
  background-color: #ffffff;
  color: #2dc3e8;
  border: 1px solid #e5e5e5;
}
.dashboard-box .box-days .day-container.all {
  margin-right: 10px;
}
.dashboard-box .box-days .day-container .day {
  margin: 5px auto;
  font-size: 18px;
  font-family: 'Lucida Sans', 'trebuchet MS', Arial, Helvetica /*rtl:prepend:"Droid Arabic Kufi", "WYekan"*/;
}
.dashboard-box .box-days .day-container .month {
  margin: 0 auto;
  font-size: 11px;
}
.dashboard-box .box-days .day-container .day-pin {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffce55;
  -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);
}
.dashboard-box .box-days .day-container .day-more {
  position: absolute;
  right: -10px;
  -lh-property: 0;
top:-webkit-calc(50% - 11px);
top:-moz-calc(50% - 11px);
top:calc(50% - 11px);
;
  width: 25px;
  height: 25px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  background-color: #ffffff;
  border: 3px solid #ffffff;
  vertical-align: middle;
  color: #2dc3e8;
  -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);
}
.dashboard-box .box-days .day-container .day-more i {
  font-size: 17px;
  display: inline-block;
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.dashboard-box .box-days .day-container .day-more i:before {
  content: "\f105" /*rtl:"\f104"*/;
}

/*#endregion Dashboard Box*/
/*#region 404*/
.body-404 {
  background-color: #2dc3e8;
  color: #ffffff;
}
.body-404:before {
  display: none;
}
.error-header {
  background: #ffffff;
  height: 280px;
}
.error-container {
  background: rgba(0, 0, 0, 0.05);
  text-align: center;
}
.error-container h1 {
  font-size: 110px;
  font-weight: 300;
  margin: -103px 0 0 0;
  text-align: center;
  color: #2dc3e8;
}
.error-container h2 {
  font-size: 58px;
  font-weight: 300;
  margin: 0;
  text-transform: uppercase;
}
.error-container p,
.error-container p a {
  font-size: 18px;
  font-weight: 300;
  margin: 0;
}
.error-container p.description {
  color: #e5e5e5;
  font-size: 40px;
  margin: 0;
}
.error-divider {
  margin-top: -27px;
  padding: 30px 0;
}
.return-btn,
.return-btn:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 15px;
  margin-top: 100px;
  margin-bottom: 30px;
  display: inline-block;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
.return-btn i {
  margin-right: 5px;
}
.return-btn:hover {
  background: #ffffff;
  color: #2dc3e8;
  text-decoration: none;
}
/*#endregion 404*/
/*#region 500*/
.body-500 {
  background-color: #fb6e52;
  color: #ffffff;
}
.body-500:before {
  display: none;
}
.body-500 .error-container h1 {
  color: #fb6e52;
}
.body-500 .return-btn:hover {
  color: #fb6e52;
}
/*#endregion 404*/
/*# sourceMappingURL=beyond.css.map */

/*Sidebar menu mini header css*/
#mini-icon-menu {
    margin: 0 0 9px 12px;
    width: 100px;
    height: 42px;
    z-index: 1 !important;
    position:relative;
    background-repeat:no-repeat;
    background-image: url(../home/img/mini-logo-homepage.png)
}

.mini-menu-top-text{
    font-size:11px;
    font-weight:bold;
    z-index: 1 !important;
    position:relative;
    margin:0 0 0 12px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 14px;
    margin-top: 17px;
    width:100%;

}

.mini-menu-top-text-s{
    font-size:5px;
    font-weight:bold;
    z-index: 1 !important;
    position:relative;
    margin:0 0 0 12px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 14px;
    margin-top: 17px;
    width:42%;

}

.mini-menu-bottom-text {
    z-index: 1 !important;
    position:relative;
    margin:20px 0 0 12px;
    font-size:17px;
    font-weight:bold;
    color:black;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 14px;
    margin-top: 17px;
    width:100%;

}

.mini-menu-bottom-text-s {
    z-index: 1 !important;
    position:relative;
    margin:20px 0 0 12px;
    font-size:9px;
    font-weight:bold;
    color:black;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 14px;
    margin-top: 17px;
    width:42%;

}

#text-white {
    color:white;
}

#header-sidebar-menu {
    margin-bottom: 14px;
    margin-top: 17px;
    width:100%;
    
}

#yellow-bar-sidebarmenu {
    position: relative;
    z-index: 1;
    background-image: url(../home/img/yellowbar-sidebar-menu2.png);
    background-repeat: repeat-x;
    width: 93%;
    left: 7px;
    height: 3px;

}

.mini-menu-top-text-s {
    font-size:5px;
    font-weight:bold;
    z-index: 1 !important;
    position:relative;
    margin:0 0 0 12px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 14px;
    margin-top: 17px;
    width:100%;



}

.sicap {
    /*margin-top: 7px;*/
    margin-left: 3px;
}

.sicap-awardprocedures {
    content:url(../home/images/sicap-awardprocedures.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-initnotice {
    content:url(../home/images/sicap-initnotice.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-contact {
    content:url(../home/images/sicap-contact.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-directaquisitions {
    content:url(../home/images/sicap-directaquisitions.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-downloadcert {
    content:url(../home/images/sicap-downloadcert.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-frequentquestions {
    content:url(../home/images/sicap-frequentquestions.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-newsarchive {
    content:url(../home/images/sicap-newsarchive.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-participantslist {
    content:url(../home/images/sicap-participantslist.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-statistics {
    content:url(../home/images/sicap-statistics.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-tarife {
    content:url(../home/images/sicap-tarife.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-technicalreq {
    content:url(../home/images/sicap-technicalreq.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-termsandconditions {
    content:url(../home/images/sicap-termsandconditions.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-usefullinks {
    content:url(../home/images/sicap-usefullinks.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-legislation {
    content:url(../home/images/sicap-legislation.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-reports {
    content:url(../home/images/sicap-reports.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-ojeu {
    content:url(../home/images/sicap-ojeu.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-account {
    content:url(../home/images/sicap-account.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-admin {
    content:url(../home/images/sicap-admin.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-dictionaries {
    content:url(../home/images/sicap-dictionaries.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-payments {
    content:url(../home/images/sicap-payments.png);
    padding: 10px 10px 10px 5px;
  
}


.sicap-notification {
    content:url(../home/images/sicap-notification.png);
    padding: 10px 10px 10px 5px;
  
}

.sicap-contracts {
    content:url(../home/images/sicap-contracts.png);
    padding: 10px 10px 10px 5px;
  
}
/*End sidebar menu mini-header css*/

/*LABEL CSS COMMON*/

form.filter-form label.form-label {
    color: #3a3531;
    margin: 0 0 3px 0;
}
label .form-label {
    font-size: 11px;
    color: #444444;
    font-weight: 600;
    display: block;
    text-transform: uppercase;
}
.c-section-filter .widget-header .widget-buttons a, .c-section .widget-header .widget-buttons a {
    display: block;
    margin: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800 !important;
    padding: 5px 12px;
    text-align: right;
    color: #3a3531;
    background: #d3ceca;
    line-height: normal;
    opacity: 1;
}

 .widget-header .widget-buttons a .widget-caption, .c-section .widget-header .widget-buttons a .widget-caption {
    float: left;
}

.widget-header .widget-buttons a, .c-section .widget-header .widget-buttons a {
    display: block;
    margin: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800 !important;
    padding: 5px 12px;
    text-align: right;
    color: #3a3531;
    background: #d3ceca;
    line-height: normal;
    opacity: 1;
}

form.filter-form .expand-more {
    color: #bf7745 !important;
    font-weight: 600;
    cursor: pointer;
}

.system-acces-fix > a, a:hover {
    cursor:pointer;
    text-decoration:none;
    /*color: white;*/

}

#morefilter:hover {
    
    text-decoration:underline;

}

.compare {

    color:#FF6E02 !important;
}

.homepage-login {
    color: white;
    font-family: 'Titillium' sans-serif;
    font-weight: 700;
    font-size: 0.7em;
    text-transform:uppercase!important;
}

.homepage-login:hover {
    color: white!important;
    font-family: 'Titillium' sans-serif;
    font-weight: 700;
    font-size: 0.7em;
    text-transform:uppercase!important;
}

 .row-toolbar {
        margin-top: 10px;
        z-index: 10000;
    }

 .col-toolbar {
     line-height: 35px;
 }

 .row-top-5 > div.row {
     margin-top:5px!Important
 }

 .form-label-s {
    font-size: 12px;
    color: #7a7a7a;
    font-weight: 400;
    display: block;
 }

  .form-label-m {
    font-size: 13px;
    color: #7a7a7a;
    font-weight: 600;
    display: block;
 }

    .form-label-mb {
    font-size: 13px;
    color: #7a7a7a;
    font-weight: 600;
    
 }

 .k-textbox>input, .k-autocomplete .k-input, .k-picker-wrap .k-input, .k-numeric-wrap .k-input, .k-dropdown-wrap .k-input, .k-selectbox .k-input 
{
    height: 2em!Important
}

 .form-strong {
     font-weight: bold;
     color: #4a4a4a;

 }
 .label-sort {
    text-transform: uppercase;
    color: #939393;
    font-weight: 600;
    font-size: 12px;
    line-height: 21px;
}

 
    .form-required:after {
        content: "*";
        color: #df5138;
        display: inline-block;
        margin-left: 5px;
        font-size: 85%;
     
    }

        /*span.k-tooltip {
    
        position: absolute!important;
        display: block!important;
        border-width: 1px;
        padding: 2px 5px 1px 6px;*/
    }

.u-button-transform{ 
    border-radius: 90%;
    border-bottom-right-radius: 1px;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
    }

.editable-wrap {
    
    width: 100%;
    
}

.survey-header{
    clear: both;
    display: block;
    font-weight: bold;
    /*margin-bottom: 1.25em;*/
    position: relative;
    padding: 1em 0 1em 0;
    font-size: 0.875em;
    background-color: #e7e3e1;
    
    }

.survey-question {
    padding-top: 5px;
    
}

.survey-question-font {
    font-size: 13px;
    font-weight: 600;
}

.editable-click {
    color: #555555 !important;
    text-decoration: none !important;
    border-bottom: solid 1px #555555 !important;
}

.survey-box {
    padding: 5px;

}

.btn-survey {
    text-align: left;

}

.survey-row-bk {
    background-color: white;
    padding-right: 10px;
    padding-left: 10px;
}

.survey-row-bk:hover {

    background-color: #e7e3e1;

}

.editable-wrap .editable-controls {
    width: 90% !important;
    padding-left: 10px !important;
    text-align: center!important;
}

.editable-input {
    width:100% !important;
}

.paap-in-edit {
    background-color:#f0f7eb!important;
}

.pre-paap {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.enotice-notice-view-width {
    width: 500px;
}

.enotice-notice-view {
    margin-top: 10px;
    height: 600px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.enotice-modifiedElement-addtext {
    display: block;
    padding: 9.5px;
    line-height: 1;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f0f7eb;
}

.contract-stage {
    display: block;
    padding: 9.5px;
    line-height: 1;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f0f7eb;
}

.btn-flat {
    float: left;
    width: auto;
    margin: 0 0 0 5px;
    opacity: 1;
    font-size: 14px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
}

.btn-flat-xs {
    float: left;
    width: auto;
    opacity: 1;
    padding: 2px 7px;
    vertical-align: middle;
    margin: 2px;
    
}

.btn-flat-xs>.fa {
    font-size: 11px;
  }

.enotice-modifiedElement {
    display: block;
    padding: 9.5px;
    line-height: 1;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.contract-section {
    padding: 9.5px;
    /*margin-right: 0px !important;
    margin-left: 0px !important;*/
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
}

.menu-text {
    -webkit-animation: fadein 0.6s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.6s; /* Firefox < 16 */
        -ms-animation: fadein 0.6s; /* Internet Explorer */
         -o-animation: fadein 0.6s; /* Opera < 12.1 */
            animation: fadein 0.6s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (min-width: 768px) {
    .col-centered {
        float: none!important;
        margin-left: auto!important;
        margin-right: auto!important;
    }
}

hr.faded {
    border: 0;
    height: 1px;
    background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
    background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
}

/*----------NEW ALERT------------*/

#alert {
    position: relative;
        
}

#alert:hover .alert-dismiss {
    display: block !important;
        
}
.alert-dismiss {
    background: hsla(0,0%,0%,.8);
    border-radius: 3px;
    color: #f6f6f6;
    font: bold 12px/30px sans-serif;
    height: 30px;
    left: 94%;
    margin-left: -60px;
    position: absolute;
    text-align: center;
    top: 15px;
    width: 120px;
    z-index: 9999999;
    display: none;
    cursor: default;
    
}
.inline-alert {
    text-transform: uppercase;
    margin-bottom: 20px;
    margin-top: 0;
    border-width: 0;
    border-left-width: 5px;
    padding: 10px;
    border-radius: 0;
    cursor: default;
    background-color: #c4453c;
    background-image: -webkit-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.05) 25%,
                      hsla(0,0%,0%,.05) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.05) 75%,
                      hsla(0,0%,0%,.05));
    background-image: -moz-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-image: -ms-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-image: -o-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-image: linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-size: 20px 20px;
    
    color: #f6f6f6;
    display: block;
    font: bold 12px/20px sans-serif;
    text-align: center;
    text-decoration: none;
    width: 100%;
    -webkit-animation: alert 1s ease forwards;
       -moz-animation: alert 1s ease forwards;
        -ms-animation: alert 1s ease forwards;
         -o-animation: alert 1s ease forwards;
            animation: alert 1s ease forwards;
}
.alert2 {
    margin-bottom: 20px;
    margin-top: 0;
    border-width: 0;
    border-left-width: 5px;
    padding: 10px;
    border-radius: 0;
    cursor: default;
    background-color: #c4453c;
    background-image: -webkit-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.05) 25%,
                      hsla(0,0%,0%,.05) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.05) 75%,
                      hsla(0,0%,0%,.05));
    background-image: -moz-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-image: -ms-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-image: -o-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-image: linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1));
    background-size: 20px 20px;
    box-shadow: 0 5px 0 hsla(0,0%,0%,.1);
    color: #f6f6f6;
    display: block;
    font: bold 16px/40px sans-serif;
    max-height: 800px;
    position: absolute;
    text-align: center;
    text-decoration: none;
    top: -45px;
    width: 100%;
    z-index: 999999;
    -webkit-animation: alert 1s ease forwards;
       -moz-animation: alert 1s ease forwards;
        -ms-animation: alert 1s ease forwards;
         -o-animation: alert 1s ease forwards;
            animation: alert 1s ease forwards;
            
}

@media screen and ( max-width: 767px) {
          #alert:hover .alert-dismiss {
              display: none!important
          }       
                          
}

/*TOASTER OVERIDES - CLIENT REQUEST DIFFERE STYLE */
#toast-container > div {
  
    -moz-border-radius: 0!important;
    -webkit-border-radius: 0!important;
    border-radius: 0!important;
    position: fixed!important;
    min-height: 95px!important;
    zoom: 1;
	filter: alpha(opacity=90);
	opacity: 0.9;

}



#toast-container > .toast-warning {
    
    background-repeat:repeat !important;
    background-color: #F89406!important;
    /*background-color: #2FAC2F!important;*/
    background-image: -webkit-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.05) 25%,
                      hsla(0,0%,0%,.05) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.05) 75%,
                      hsla(0,0%,0%,.05))!important;
    background-image: -moz-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1))!important;
    background-image: -ms-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1))!important;
    background-image: -o-linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1))!important;
    background-image: linear-gradient(135deg, transparent,
                      transparent 25%, hsla(0,0%,0%,.1) 25%,
                      hsla(0,0%,0%,.1) 50%, transparent 50%,
                      transparent 75%, hsla(0,0%,0%,.1) 75%,
                      hsla(0,0%,0%,.1))!important;
    background-size: 20px 20px!important;
    box-shadow: 0 5px 0 hsla(0,0%,0%,.1)!important;
    color: #f6f6f6!important;
    font: bold 16px/40px sans-serif!important;
    width: 100% !important;
    text-align: center!important;
    
}
/*END TOASTER OVERIDES - CLIENT REQUEST DIFFERE STYLE */


/*----------END NEW ALERT------------*/

/* Animation */

@-webkit-keyframes alert {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { top: 0; }
}
@-moz-keyframes alert {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { top: 0; }
}
@-ms-keyframes alert {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { top: 0; }
}
@-o-keyframes alert {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { top: 0; }
}
@keyframes alert {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { top: 0; }
}

.supplier-fontface {
    font-weight: 800; 
    font-size:11px; 
    line-height: 1; 
    display:block
}

/*Exprimental checkbox fix*/
label.checkbox-label input[type=checkbox]{
    position: relative;
    vertical-align: middle;
    bottom: 3px;
}
/*END Exprimental checkbox fix*/
/*hover for dashboard*/
.hover-trim {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
    cursor: pointer;
}
.hover-trim:before {
  content: '';
  position: absolute;
  border: white solid 2px;
  border-radius: 50%;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  opacity: 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.hover-trim:hover:before, .hover-trim:focus:before, .hover-trim:active:before {
  opacity: 1;
}

.line-between > [class*='col-']:before {
     color: #ccc;
     bottom: 0;
     content: "-";
     left: -1px;
     position: absolute;
     width: 1px;
     top: 5px;
}
.line-between > [class*='col-']:first-child:before {
    display: none;
}

/*New login css*/
@keyframes spinner {
  0% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(359deg);
  }
}
* {
  box-sizing: border-box;
}

.login-container2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  
}

.login {
  border-radius: 2px 2px 5px 5px;
  padding: 10px 20px 20px 20px;
  width: 90%;
  max-width: 500px;
  background: #ffffff;
  position: relative;
  padding-bottom: 80px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}
.login.loading .bigbutton {
  max-height: 100%;
  padding-top: 50px;
}
.login.loading .bigbutton .spinner {
  opacity: 1;
  top: 40%;
}

.login.ok .bigbutton .spinner {
  border-radius: 0;
  border-top-color: transparent;
  border-right-color: transparent;
  height: 20px;
  animation: none;
  transform: rotateZ(-45deg);
}
.login input {
  display: block;
  padding: 10px 10px;
  margin-bottom: 10px;
  width: 100%;
  border: 1px solid #ddd;
  transition: border-width 0.2s ease;
  border-radius: 2px;
  color: #ccc;
  /*height: 0 !important;*/
}
.login input + i.fa {
  color: #fff;
  font-size: 1em;
  position: absolute;
  margin-top: -35px;
  margin-left: -1px;
  opacity: 0;
  left: 0;
  transition: all 0.1s ease-in;
}
.login input:focus {
  outline: none;
  color: #444;
  border-color: #B68928;
  border-left-width: 35px;
}
.login input:focus + i.fa {
  opacity: 1;
  left: 30px;
  transition: all 0.25s ease-out;
}
.login a {
  font-size: 0.8em;
  color: #B68928;
  text-decoration: none;
}
.login .title {
  color: #444;
  font-size: 1.2em;
  font-weight: 600;
  margin: 10px 0 30px 0!important;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  
}
.login .title2 {
  color: #444;
  font-size: 1.2em;
  font-weight: 600;
  margin: 10px 0 -5px 0!important;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  
}
.login .bigbutton {
  width: 100%;
  height: 100%;
  padding: 10px 10px;
    background:#B68928;
  color: #fff;
  display: block;
  border: none;
  margin-top: 20px;
  position: absolute;
  left: 0;
  bottom: 0;
  max-height: 60px;
  border: 0px solid rgba(0, 0, 0, 0.1);
  border-radius: 0 0 2px 2px;
  transform: rotateZ(0deg);
  transition: all 0.1s ease-out;
  border-bottom-width: 7px;
}
.login .bigbutton .spinner {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  border: 4px solid #ffffff;
  border-top-color: rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  left: 50%;
  top: 0;
  opacity: 0;
  margin-left: -20px;
  margin-top: -20px;
  animation: spinner 0.6s infinite linear;
  transition: top 0.3s 0.3s ease, opacity 0.3s 0.3s ease, border-radius 0.3s ease;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
.login:not(.loading) .bigbutton:hover {
  box-shadow: 0px 1px 3px  #B68928;
}
.login:not(.loading) .bigbutton:focus {
  border-bottom-width: 4px;
}
#dissagree {
    padding: 5px 10px!important;
    color: white!important;
    background: #D64937!important;
    display: inline-block;
    border: none;
    margin-top: 20px;
    width: 100%;
    border: 0px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 2px 2px;
    transform: rotateZ(0deg);
    transition: all 0.1s ease-out;
    border-bottom-width: 4px;
    font-size: 11px;
}
#agree {
    padding: 5px 10px!important;
    color: white!important;
    background: #9B7125!important;
    display: inline-block;
    border: none;
    margin-top: 20px;
    width: 100%;
    border: 0px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 2px 2px;
    transform: rotateZ(0deg);
    transition: all 0.1s ease-out;
    border-bottom-width: 4px;
    font-size: 11px;
}

#dissagree:hover {
    box-shadow: 0px 1px 3px #BB4031;
}
#dissagree:focus {
    border-bottom-width: 2px;
}
#agree:hover {
    box-shadow: 0px 1px 3px #469035;
}
#agree:focus {
    border-bottom-width: 2px;
}

.centerQR {
    margin-right: auto;
    margin-left: auto;
    width: 15em;
}

/*END New login css*/



.databox-nfo {
    min-height: 38px !important;
    cursor: pointer!important;
}

.hover-trim-square:before {
    border-radius: 0 !important;
}

.margin-right-15 {
    margin-right: 15px !important;
}

.margin-left-15 {
    margin-left: 15px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px !important;
}

.spinner-3bounce {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner-3bounce > div {
  width: 18px;
  height: 18px;
  background-color: #5db2ff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner-3bounce .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner-3bounce .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.padding-left-0 {
    padding-left:0!important
}

.padding-right-0 {
    padding-right:0!important
}

.margin-right-0 {
    margin-right:0!important
}

.margin-left-0 {
    margin-left:0!important
}