/* Add your variable customizations of layout here */
/* roboto-regular - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local("Roboto"), local("Roboto-Regular"), url("../fonts/roboto-v20-latin-ext_latin-regular.woff2") format("woff2"), url("../fonts/roboto-v20-latin-ext_latin-regular.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local("Roboto Medium"), local("Roboto-Medium"), url("../fonts/roboto-v20-latin-ext_latin-500.woff2") format("woff2"), url("../fonts/roboto-v20-latin-ext_latin-500.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin-ext_latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/roboto-v20-latin-ext_latin-700.woff2") format("woff2"), url("../fonts/roboto-v20-latin-ext_latin-700.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: local("Montserrat"), local("Montserrat-Regular"), url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Regular.woff2") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Montserrat-500 - latin-ext_latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/Montserrat/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Medium.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Montserrat-700 - latin-ext_latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/Montserrat/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat/Montserrat-Bold.woff") format("woff");
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.card {
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #ffffff;
  padding: 1.25em;
  margin-bottom: 1em;
  box-sizing: border-box;
}
.card .card-title {
  font-size: 16px;
  font-weight: 500;
  margin: 2em 0 1em 0;
  letter-spacing: 0.3px;
}
.card .card-title:first-child {
  margin-top: 0;
}
.card:last-child {
  margin-bottom: 0;
}
.card .card-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card .card-subtitle {
  color: #616161;
  font-weight: 600;
  margin: -1rem 0 1rem 0;
}

.p-toast.p-toast-top-right, .p-toast.p-toast-top-left, .p-toast.p-toast-top-center {
  top: 85px;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
}
.fadeInDown {
  -webkit-animation: fadeInDown 5s;
  /* Safari 4.0 - 8.0 */
  animation: fadeInDown 5s;
}

.fadeOutUp {
  -webkit-animation: fadeOutUp 0.2s;
  /* Safari 4.0 - 8.0 */
  animation: fadeOutUp 0.2s;
}

body {
  background-color: white;
}

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

.circular {
  animation: rotate 2s linear infinite;
  height: 100px;
  position: relative;
  width: 100px;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke: #B6463A;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
@keyframes color {
  100%, 0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%, 90% {
    stroke: #ffa700;
  }
}
.dashboard > div {
  padding: 1em;
}
.dashboard .dashboard-grid {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  padding: 0;
}
.dashboard .card {
  height: 100%;
  margin-bottom: 0;
}
.dashboard .dot {
  height: 0.5em;
  width: 0.5em;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
}
.dashboard .dot.dot-green {
  background-color: #4caf50;
}
.dashboard .dot.dot-red {
  background-color: #e91e63;
}
.dashboard .dot.dot-orange {
  background-color: #ff9800;
}
.dashboard .icon-container {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #eeeeee;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.dashboard .icon-container i {
  color: #9e9e9e;
  font-size: 20px;
  line-height: inherit;
}
.dashboard .overview-box .overview-numbers {
  font-size: 16px;
  color: #4c87c9;
  font-weight: 700;
  margin: 0.5em 0 1em 0;
}
.dashboard .overview-box.monthly-sales img {
  width: 100%;
  margin-top: 1em;
}
.dashboard .overview-box.total-views img {
  width: 100%;
  margin-top: 4em;
}
.dashboard .overview-box.connections .legend-arrow {
  color: #4caf50;
}
.dashboard .overview-box.connections .dot {
  margin-right: 0.5em;
  vertical-align: middle;
}
.dashboard .overview-box.connections .connection-chart {
  text-align: center;
  padding-top: 2em;
}
.dashboard .overview-box.connections .connection-chart-legend {
  padding-left: 4%;
  padding-top: 1.5em;
  color: #616161;
}
.dashboard .summary-box {
  position: relative;
}
.dashboard .summary-box .card {
  min-height: 100px;
}
.dashboard .summary-box .summary-box-title {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
}
.dashboard .summary-box p {
  margin: 0.25em 0;
  color: #ffffff;
}
.dashboard .summary-box .summary-box-icon {
  position: absolute;
  right: 24px;
  top: 32px;
}
.dashboard .summary-box .summary-box-graph {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.dashboard .summary-box.summary-box-messages .card {
  border-top: 4px solid #0097a7;
  background-color: #00bcd4;
}
.dashboard .summary-box.summary-box-checkins .card {
  border-top: 4px solid #ad1457;
  background-color: #e91e63;
}
.dashboard .summary-box.summary-box-filessynced .card {
  border-top: 4px solid #f47b08;
  background-color: #ffb300;
}
.dashboard .summary-box.summary-box-usersonline .card {
  border-top: 4px solid #455a64;
  background-color: #607d8b;
}
.dashboard .tasks {
  padding: 0;
}
.dashboard .tasks .tasks-progress {
  height: 7px;
  background-color: #00bcd4;
}
.dashboard .tasks .tasks-progress .tasks-progress-value {
  height: 7px;
  width: 50%;
  background-color: #0097a7;
}
.dashboard .tasks .tasks-header {
  padding: 16px;
  background-color: #eeeeee;
}
.dashboard .tasks .tasks-header .task-number {
  font-weight: 700;
}
.dashboard .tasks ul {
  list-style-type: none;
  margin: 0.25em 0 0 0;
  padding: 0.25em 1em 0 1em;
}
.dashboard .tasks ul li {
  border-bottom: 1px solid #e4e4e4;
}
.dashboard .tasks ul li:last-child {
  border-bottom: 0 none;
}
.dashboard .tasks .tasks-detail {
  margin-top: 0.5em;
  color: #616161;
}
.dashboard .tasks .task-content {
  position: relative;
  padding: 1em 0;
}
.dashboard .tasks i {
  font-size: 24px;
  color: #616161;
}
.dashboard .tasks .col-fixed {
  width: 75px;
  text-align: center;
}
.dashboard .team ul {
  list-style-type: none;
  margin: 0.25em 0 0 0;
  padding: 0;
}
.dashboard .team ul li {
  border-bottom: 1px solid #e4e4e4;
}
.dashboard .team ul li:last-child {
  border-bottom: 0 none;
}
.dashboard .team img {
  width: 40px;
  height: 40px;
}
.dashboard .team .member-content {
  padding: 1em;
}
.dashboard .team .member-name {
  margin-bottom: 0.5em;
}
.dashboard .team button:last-child {
  margin-left: 0.5em;
}
.dashboard .team .member-status {
  color: #616161;
}
.dashboard .team .member-status span {
  vertical-align: middle;
}
.dashboard .team .dot {
  margin-right: 0.3em;
  vertical-align: middle;
}
.dashboard .userprofile {
  padding: 0;
}
.dashboard .userprofile .userprofile-bg {
  width: 100%;
}
.dashboard .userprofile .userprofile-avatar {
  border: 4px solid #ffffff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
  width: 96px;
  height: 96px;
  display: block;
  margin-top: -48px;
}
.dashboard .userprofile .userprofile-name {
  text-align: center;
  margin: 0.5em 0;
}
.dashboard .userprofile .userprofile-role {
  color: #616161;
  text-align: center;
  margin-bottom: 2em;
  font-size: 12px;
  letter-spacing: 0.4px;
}
.dashboard .userprofile .userprofile-circle {
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-width: 4px;
  border-style: solid;
  margin: 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 0.5em;
}
.dashboard .userprofile .userprofile-status {
  color: #616161;
  letter-spacing: 2px;
  font-size: 12px;
}
.dashboard .userprofile .userprofile-value {
  margin-top: 0.5em;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.dashboard .userprofile .userprofile-legend {
  text-align: center;
}
.dashboard .userprofile .userprofile-completed .userprofile-circle {
  border-color: #00bcd4;
}
.dashboard .userprofile .userprofile-snoozed .userprofile-circle {
  border-color: #ffc107;
}
.dashboard .userprofile .userprofile-overdue .userprofile-circle {
  border-color: #e91e63;
}
.dashboard .quarterreport h3 {
  margin: 0;
  font-size: 16px;
}
.dashboard .quarterreport .dashboard-chart-container {
  position: relative;
}
.dashboard .switchpanel {
  border-left: 6px solid #00bcd4;
}
.dashboard .switchpanel .switch-name {
  color: #616161;
  margin-bottom: 0.25em;
}
.dashboard .switchpanel .switch-status {
  color: #0097a7;
  letter-spacing: 0.4px;
  font-size: 12px;
  display: block;
  margin-bottom: 0.5em;
}
.dashboard .switchpanel.switchpanel-off {
  border-left: 6px solid #e91e63;
}
.dashboard .switchpanel.switchpanel-off .switch-status {
  color: #e91e63;
}
.dashboard .switchpanel .ui-inputswitch-checked .ui-inputswitch-slider {
  background-color: #00bcd4;
}
.dashboard .switchpanel .ui-inputswitch-checked .ui-inputswitch-slider:before {
  background-color: #0097a7;
}
.dashboard .switchpanel .ui-inputswitch-checked:not(.ui-state-disabled):hover .ui-inputswitch-slider {
  background-color: #00bcd4;
}
.dashboard .switchpanel .ui-inputswitch-checked.ui-inputswitch-focus .ui-inputswitch-slider {
  background: #00bcd4;
}
.dashboard .timeline h3 {
  margin: 0;
  font-size: 16px;
}
.dashboard .timeline ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dashboard .timeline li {
  padding: 1em 0;
  border-bottom: 1px solid #e4e4e4;
}
.dashboard .timeline li:last-child {
  border-bottom: 0 none;
}
.dashboard .timeline img {
  width: 100%;
}
.dashboard .timeline .col-fixed {
  padding: 0 1em 0.5em 0;
}
.dashboard .timeline .event-owner {
  color: #616161;
  margin-bottom: 0.5em;
}
.dashboard .timeline .event-detail {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.87);
}
.dashboard .timeline .timeline-clock {
  display: inline-block;
  margin-top: 0.5em;
  background-color: #eeeeee;
  color: #616161;
  padding: 0.5em;
  font-size: 13px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.dashboard .timeline .timeline-clock i {
  margin-right: 7px;
  vertical-align: middle;
}
.dashboard .timeline .timeline-clock span {
  vertical-align: middle;
}
.dashboard .location {
  padding: 0;
  margin-top: 1em;
}
.dashboard .location .location-content {
  padding: 1em;
}
.dashboard .location .location-name {
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.dashboard .location p {
  margin: 0.75em 0;
  color: #616161;
}
.dashboard .location img {
  width: 100%;
}
.dashboard .location a {
  color: #00bcd4;
}
.dashboard .location a:hover {
  color: #0097a7;
}
.dashboard .weather {
  padding: 0;
}
.dashboard .weather .weather-image {
  background-image: url("../images/dashboard/primecity.jpg");
  background-size: cover;
  text-align: center;
  color: rgba(255, 255, 255, 0.87);
  min-height: 250px;
  padding: 1em;
}
.dashboard .weather .weather-image .city-name {
  font-size: 24px;
  margin-bottom: 40px;
}
.dashboard .weather .weather-image .weather-today {
  font-size: 20px;
  margin-bottom: 8px;
}
.dashboard .weather .weather-image .weather-degree {
  font-size: 40px;
}
.dashboard .weather .weekdays {
  margin: 1em;
}
.dashboard .weather .weekdays > div {
  padding: 0.857em;
}
.dashboard .weather .weather-degree-col {
  text-align: right;
}
.dashboard .weather .weather-degree-col img {
  vertical-align: middle;
  margin-left: 0.5em;
}
.dashboard .inventory {
  padding: 0;
}
.dashboard .inventory .card-title {
  padding: 0.714em 0.857em;
}
.dashboard .inventory h3 {
  margin: 0;
  font-size: 16px;
  padding: 1em;
}
.dashboard .inventory .ui-datatable-reflow .ui-reflow-label,
.dashboard .inventory .ui-datatable-reflow .ui-reflow-dropdown {
  margin: 1em;
}

@media screen and (max-width: 1024px) {
  .dashboard .quarterreport .dashboard-chart-container {
    height: 250px;
  }
}
.login-body {
  /*background-image: url("../../layout/images/login/bg-login.jpg");*/
  height: 95vh;
  width: 99%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.login-body .login-panel {
  /*width: 565px;
  height: 410px;*/
  background-color: #fafafa;
  position: relative;
  top: 54px;
  /*position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -282px;
  margin-top: -232px;*/
  padding: 0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  /*-webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);*/
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 1px 3px rgba(0, 0, 0, 0.12), 0px 1px 1px rgba(0, 0, 0, 0.14);
}
.login-body .login-panel .login-panel-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  width: 108px;
  height: 108px;
  position: relative;
  top: -54px;
  left: 50%;
  margin-left: -54px;
  background: #fafafa;
  /*border: 10px solid #fafafa;*/
  border-radius: 50%;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.12)) drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.14));
}
.login-body .login-panel .login-panel-header img {
  /*width: 88px;
  height: 88px;*/
  width: 100%;
  height: 100%;
}
.login-body .login-panel .login-panel-content {
  padding: 12px 98px;
  position: relative;
  top: -54px;
}
.login-body .login-panel .login-panel-content h1 {
  font-size: 28px;
  font-weight: 500;
  line-height: 33.6px;
  letter-spacing: 1.3px;
  color: var(--gray-900);
  margin-top: 0;
  margin-bottom: 6px;
  text-align: center;
}
.login-body .login-panel .login-panel-content h2 {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.5px;
  color: #212121;
  margin-top: 0;
  margin-bottom: 1em;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .login-body .login-panel {
    left: 0;
    margin-left: 0;
    width: 100%;
  }
  .login-body .login-panel .login-panel-content {
    padding: 12px 38px;
  }
}
.exception-body {
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.exception-body.error {
  background-image: url("../../layout/images/exception/bg-error.jpg");
}
.exception-body.error .exception-panel .exception-image {
  width: 102px;
  margin-left: -51px;
}
.exception-body.error .exception-panel .exception-image img {
  width: 58px;
  height: 64px;
}
.exception-body.notfound {
  background-image: url("../../layout/images/exception/bg-404.jpg");
}
.exception-body.notfound .exception-panel .exception-image {
  width: 108px;
  margin-left: -54px;
}
.exception-body.notfound .exception-panel .exception-image img {
  width: 64px;
  height: 64px;
}
.exception-body.accessdenied {
  background-image: url("../../layout/images/exception/bg-access.jpg");
}
.exception-body.accessdenied .exception-panel .exception-image {
  width: 108px;
  margin-left: -54px;
}
.exception-body.accessdenied .exception-panel .exception-image img {
  width: 50px;
  height: 64px;
}
.exception-body .exception-panel {
  width: 565px;
  height: 247px;
  background-color: #fafafa;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -282px;
  margin-top: -123px;
  padding: 0;
  text-align: center;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
}
.exception-body .exception-panel .exception-image {
  vertical-align: middle;
  height: 108px;
  position: relative;
  top: -54px;
  left: 50%;
  background: #fafafa;
  border: 22px solid #fafafa;
  border-radius: 50%;
}
.exception-body .exception-panel .exception-detail {
  position: relative;
  padding: 10px 0 42px 0;
  top: -54px;
}
.exception-body .exception-panel .exception-detail h1 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1.7px;
  color: #616161;
  margin: 0px 0 16px 0;
}
.exception-body .exception-panel .exception-detail p {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.5px;
  color: #212121;
  margin: 0 0 42px 0;
}

@media screen and (max-width: 1024px) {
  .exception-body .exception-panel {
    left: 0;
    margin-left: 0;
    width: 100%;
  }
}
.landing-body {
  background-color: #f4f4f7;
}
.landing-body * {
  box-sizing: border-box;
}
.landing-body p {
  line-height: 1.5;
}
.landing-body .p-button-text {
  width: 100%;
}
.landing-body #header {
  background-color: rgba(32, 33, 36, 0.98);
}
.landing-body #header > div {
  width: 100%;
  margin: 0 auto;
  height: 96px;
  padding: 36px 146px;
}
.landing-body #header > div img {
  width: 155px;
  height: 24px;
}
.landing-body #header > div #landing-menu {
  float: right;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.landing-body #header > div #landing-menu > li {
  display: inline-block;
}
.landing-body #header > div #landing-menu > li a {
  border-bottom: 6px solid transparent;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  height: 60px;
  padding: 0 21px;
  font-size: 18px;
  letter-spacing: 1px;
  transition: border-color 0.2s;
}
.landing-body #header > div #landing-menu > li:hover a {
  color: #ffffff;
  border-color: #eeeeee;
}
.landing-body #header > div #landing-menu-button {
  color: #303134;
  background-color: #fafafa;
  border-radius: 50%;
  display: none;
  float: right;
  width: 48px;
  height: 48px;
  text-align: center;
  padding: 10px;
  position: relative;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
}
.landing-body #header > div #landing-menu-button .landing-menu-button-icon {
  background-color: #303134;
  width: 28px;
  height: 4px;
  position: absolute;
  top: 22px;
  left: 10px;
  transition-duration: 0.5s;
  transition-timing-function: swing;
}
.landing-body #header > div #landing-menu-button .landing-menu-button-icon:before, .landing-body #header > div #landing-menu-button .landing-menu-button-icon:after {
  background-color: #303134;
  width: 28px;
  height: 4px;
  content: "";
  position: absolute;
  left: 0;
  transition-duration: 0.5s;
  transition-timing-function: swing;
}
.landing-body #header > div #landing-menu-button .landing-menu-button-icon:before {
  top: -9px;
}
.landing-body #header > div #landing-menu-button .landing-menu-button-icon:after {
  top: 9px;
}
.landing-body #introduction > div {
  background: url("../images/landing/bg-hero.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
  color: #ffffff;
  text-align: left;
  padding-top: 102px;
  padding-left: 145px;
}
.landing-body #introduction > div h1 {
  padding: 0;
  margin: 0 0 48px 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0.3px;
  color: #ffffff;
}
.landing-body #introduction > div button {
  min-width: 180px;
  height: 42px;
}
.landing-body #features > div {
  margin: 0;
  padding: 72px 145px;
}
.landing-body #features > div h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #202124;
  margin: 0 0 42px 0;
}
.landing-body #features > div .feature-box {
  padding: 1em;
}
.landing-body #features > div .feature-box img {
  width: 100%;
  margin-bottom: 12px;
}
.landing-body #features > div .feature-box > div h3 {
  font-size: 15px;
  margin: 0;
}
.landing-body #features > div .feature-box > div p {
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #616161;
  margin: 8px 0;
}
.landing-body #stats {
  background-color: #212121;
}
.landing-body #stats > div {
  margin: 0;
  padding: 38px 145px;
}
.landing-body #stats > div .stat-box {
  padding-right: 160px;
  text-align: left;
  color: #ffffff;
}
.landing-body #stats > div .stat-box.component img {
  width: 32px;
  height: 32px;
}
.landing-body #stats > div .stat-box.development img {
  width: 48px;
  height: 32px;
}
.landing-body #stats > div .stat-box.coffee img {
  width: 40px;
  height: 32px;
}
.landing-body #stats > div .stat-box .p-progressbar {
  margin-top: 12px;
  margin-bottom: 8px;
  height: 4px;
  overflow: visible;
  background-color: #eeeeee;
}
.landing-body #stats > div .stat-box .p-progressbar .p-progressbar-value {
  background-color: #ffc107;
  border-color: #ffc107;
  height: 4px;
  margin: -1px;
  padding: 0;
}
.landing-body #stats > div .stat-box p {
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.landing-body #pricing {
  background-color: #ffffff;
}
.landing-body #pricing .col-12 {
  padding: 0.5em 1em;
}
.landing-body #pricing > div {
  margin: 0;
  padding: 75px 145px 87px 145px;
  text-align: left;
}
.landing-body #pricing > div > h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 0 0 42px 0;
  color: #202124;
}
.landing-body #pricing > div .pricing-box {
  width: 100%;
  max-height: 358px;
  text-align: left;
  background-color: #fafafa;
  border-left: 6px solid rgba(97, 97, 97, 0.07);
  border-radius: 4px;
  box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.2), 0 3px 16px 2px rgba(0, 0, 0, 0.12), 0 9px 12px 1px rgba(0, 0, 0, 0.14);
}
.landing-body #pricing > div .pricing-box .pricing-header {
  padding: 24px 24px 18px 24px;
  text-align: center;
}
.landing-body #pricing > div .pricing-box .pricing-header h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #212121;
  margin: 0;
}
.landing-body #pricing > div .pricing-box .pricing-header .pricing-fee {
  font-size: 20px;
  letter-spacing: 0.3px;
  color: #616161;
  margin: 0;
}
.landing-body #pricing > div .pricing-box .pricing-header .pricing-fee b {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #212121;
  text-align: center;
}
.landing-body #pricing > div .pricing-box .pricing-content {
  padding: 0 20px 19px 20px;
  min-height: 228px;
  position: relative;
}
.landing-body #pricing > div .pricing-box .pricing-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.landing-body #pricing > div .pricing-box .pricing-content ul li {
  padding: 12px 0 0 0;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #212121;
}
.landing-body #pricing > div .pricing-box .pricing-content ul li i {
  color: #43a047;
  font-size: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.landing-body #pricing > div .pricing-box .pricing-content button {
  background-color: #457fca;
  position: absolute;
  min-width: 136px;
  bottom: 20px;
  left: 50%;
  margin-left: -68px;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.14);
}
.landing-body #pricing > div .pricing-box .pricing-content button:enabled:hover {
  background-color: #1565C0;
}
.landing-body #multimedia {
  background-color: #202124;
}
.landing-body #multimedia > div {
  margin: 0;
  padding: 72px 145px 99px 145px;
  text-align: left;
}
.landing-body #multimedia > div h1 {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0 0 51px 0;
}
.landing-body #multimedia > div .multimedia-content1 {
  padding-right: 51px;
}
.landing-body #multimedia > div .multimedia-content1 img {
  width: 726px;
  height: 342px;
}
.landing-body #multimedia > div .multimedia-content2 img {
  width: 370px;
  height: 342px;
}
.landing-body #multimedia > div > div h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #eeeeee;
  margin: 24px 0 10px 0;
}
.landing-body #multimedia > div > div p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  color: #eeeeee;
  margin: 0;
}
.landing-body #footer {
  background-color: #202124;
  color: #ffffff;
}
.landing-body #footer > div {
  margin: 0 145px;
  padding: 18px 0 30px 0;
  border-top: 6px solid #00bcd4;
}
.landing-body #footer > div .footer-logo {
  height: 23px;
}
.landing-body #footer > div p {
  margin: 10px 0;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #9f9f9f;
}
.landing-body #footer > div .footer-social {
  text-align: right;
}
.landing-body #footer > div .footer-social a {
  margin-left: 50px;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.landing-body #footer > div .footer-social a img {
  height: 22px;
}
.landing-body #footer > div .footer-social a:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}

@media screen and (max-width: 1024px) {
  .landing-body {
    padding-top: 95px;
  }
  .landing-body #header {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 2px 0 rgba(0, 0, 0, 0.14);
  }
  .landing-body #header > div {
    width: 100%;
    padding: 24px;
  }
  .landing-body #header > div img {
    margin-top: 12px;
  }
  .landing-body #header > div #landing-menu-button {
    display: block;
  }
  .landing-body #header > div #landing-menu-button.landing-menu-active {
    background-color: #424242;
  }
  .landing-body #header > div #landing-menu-button.landing-menu-active .landing-menu-button-icon {
    width: 0;
    background-color: #eeeeee;
  }
  .landing-body #header > div #landing-menu-button.landing-menu-active .landing-menu-button-icon:before {
    background-color: #eeeeee;
    transform: translateY(9px) rotate(45deg);
  }
  .landing-body #header > div #landing-menu-button.landing-menu-active .landing-menu-button-icon:after {
    background-color: #eeeeee;
    transform: translateY(-9px) rotate(-45deg);
  }
  .landing-body #header > div #landing-menu {
    animation-duration: 0.5s;
    display: none;
    float: none;
    width: 100%;
    position: fixed;
    top: 95px;
    left: 0;
    padding-bottom: 50px;
    opacity: 0.95;
    background-color: rgba(32, 33, 36, 0.99);
    box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.2), 0 3px 16px 2px rgba(0, 0, 0, 0.12), 0 9px 12px 1px rgba(0, 0, 0, 0.14);
  }
  .landing-body #header > div #landing-menu li {
    display: block;
  }
  .landing-body #header > div #landing-menu li a {
    height: auto;
    border-bottom: 0 none;
    padding: 15px;
  }
  .landing-body #header > div #landing-menu.landing-menu-active {
    display: block;
  }
  .landing-body #introduction {
    width: 100%;
  }
  .landing-body #introduction > div {
    text-align: center;
    padding: 82px 34px 0 34px;
  }
  .landing-body #introduction > div h1 {
    margin-bottom: 42px;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.24;
    letter-spacing: 0.2px;
    text-align: center;
    color: #ffffff;
  }
  .landing-body #features > div {
    width: 100%;
    padding: 72px 23px;
  }
  .landing-body #features > div h1 {
    text-align: center;
  }
  .landing-body #stats > div {
    width: 100%;
    padding: 42px 52px;
  }
  .landing-body #stats > div .stat-box {
    padding-right: 0;
  }
  .landing-body #pricing > div {
    width: 100%;
    padding: 75px 62px;
    text-align: center;
  }
  .landing-body #pricing > div .pricing-box {
    margin: 0 0 42px 0;
    max-width: none;
  }
  .landing-body #multimedia > div {
    width: 100%;
    padding: 72px 15px;
  }
  .landing-body #multimedia > div h1 {
    text-align: center;
  }
  .landing-body #multimedia > div .multimedia-content1, .landing-body #multimedia > div .multimedia-content2 {
    padding-right: 15px;
  }
  .landing-body #multimedia > div .multimedia-content1 img, .landing-body #multimedia > div .multimedia-content2 img {
    width: 100%;
    height: 275px;
  }
  .landing-body #footer > div {
    text-align: center;
    margin: 0 23px 0 14px;
  }
  .landing-body #footer > div .footer-social {
    text-align: center;
  }
  .landing-body #footer > div .footer-social a:first-child {
    margin: 0;
  }
}
.layout-config-button {
  display: block;
  position: fixed;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: #fafafa;
  text-align: center;
  top: 230px;
  right: 0;
  z-index: 1000000;
  -moz-border-radius-topleft: 2px;
  -webkit-border-top-left-radius: 2px;
  border-top-left-radius: 2px;
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  -webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
  box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
}
.layout-config-button i {
  font-size: 32px;
  color: #00bcd4;
  line-height: inherit;
}
.layout-config-button:hover {
  background-color: #e0e0e0;
}

.layout-config {
  z-index: 1000002;
  position: fixed;
  padding: 0;
  display: none;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-color: #ffffff;
  width: 52vw;
  -webkit-box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.layout-config .layout-config-content {
  padding: 1em;
  position: relative;
}
.layout-config .layout-config-close {
  position: absolute;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  right: -18px;
  top: -18px;
  background-color: #E91E63;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-config .layout-config-close i {
  color: #ffffff;
  line-height: inherit;
  font-size: 18px;
}
.layout-config .layout-config-close:hover {
  background-color: #D81B60;
}
.layout-config.layout-config-enter {
  display: block;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) scale(0.7);
}
.layout-config.layout-config-enter-active {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%) scale(1);
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
}
.layout-config.layout-config-enter-done {
  display: block;
}
.layout-config.layout-config-exit {
  opacity: 1;
  display: block;
}
.layout-config.layout-config-exit-active {
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.layout-config.layout-config-exit-done {
  display: none;
}
.layout-config .layout-config-option {
  width: 100px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-config .layout-config-option i {
  line-height: inherit;
  font-size: 36px;
  color: #ffffff;
}
.layout-config .layout-config-option:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.layout-config .layout-config-option.layout-config-option-image {
  position: relative;
}
.layout-config .layout-config-option.layout-config-option-image i {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -24px;
  margin-top: -40px;
}
.layout-config .layout-config-option.layout-config-option-image img {
  border: 0 none;
}
.layout-config .layout-config-option.layout-config-option-light i {
  color: #000000;
}
.layout-config .col {
  padding: 1em;
  -ms-flex-preferred-size: auto;
}
.layout-config .p-tabview {
  border: 0 none;
}
.layout-config .p-tabview.p-tabview-top > .p-tabview-nav li {
  vertical-align: bottom;
  top: auto;
  margin: 0 0.125em 0px 0;
}
.layout-config .p-tabview .p-tabview-panels {
  padding: 1em 0;
  height: 500px;
  overflow: auto;
}
.layout-config .p-tabview .p-tabview-panels .p-tabview-panel {
  padding: 0.857em 1em;
  line-height: 1.5;
}
.layout-config .layout-config-subtitle {
  font-size: 16px;
  letter-spacing: 0.2px;
  margin: 0.75em 0;
  color: #616161;
}
.layout-config .layout-config-subtitle:first-child {
  margin-top: 0;
}
.layout-config p {
  line-height: 1.5;
  margin-top: 0;
  color: #616161;
}

.layout-config-mask {
  background-color: #252529;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000001;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .layout-config {
    width: 80vw;
  }
}
html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: "Montserrat","Roboto", "Helvetica Neue", sans-serif;
  font-size: 14px;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;  
  min-height: 100%;
  /*width: 99.99%;
  max-width: 99.99%;
  background-color: #f4f4f7; DT */
  width: 100%; 
  overflow-x: hidden; 
  box-sizing: border-box; 
}

/* iPhone vertical */
@media only screen and (min-device-width: 320px) and (max-device-width: 428px) and (-webkit-device-pixel-ratio: 2) {
  body {
    width: 90%;
    background-color: lightgreen;
  }
}

body .ajax-loader {
  font-size: 32px;
  color: #457fca;
}
body.blocked-scroll, body.blocked-scroll-config {
  overflow: hidden;
}
body a {
  text-decoration: none;
  font-weight: 700;
  color:#0097DD;
  /*color: #457fca;*/
}

body a:hover {
  text-decoration: none !important;
  font-weight: 700;
  color:#0097DDA4;
  cursor: pointer;
}

.layout-top {
  padding-top: 5px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 5px;
}

.layout-topbar:before, .layout-topbar:after {
  content: "";
  display: table;
}
.layout-topbar:after {
  clear: both;
}
.layout-topbar .grid {
  margin: 0;
  min-height: 4em;
}
.layout-topbar .grid .col {
  padding: 0;
}
.layout-topbar .layout-topbar-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 4em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.layout-topbar .layout-topbar-grid .layout-topbar-grid-column {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}
.layout-topbar .layout-topbar-grid .layout-topbar-grid-column-fixed {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.layout-topbar .layout-menubutton {
  position: absolute;
  height: 48px;
  width: 48px;
  line-height: 48px;
  left: 29px;
  top: 19px;
  text-align: center;
  -webkit-transition-duration: 0.66s;
  transition-duration: 0.66s;
  -webkit-transition-timing-function: swing;
  transition-timing-function: swing;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 4px 5px 0 rgba(0, 0, 0, 0.14);
}
.layout-topbar .layout-menubutton .layout-menubutton-icon {
  width: 28px;
  height: 4px;
  position: absolute;
  top: 22px;
  left: 10px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-timing-function: swing;
}
.layout-topbar .layout-menubutton .layout-menubutton-icon:before, .layout-topbar .layout-menubutton .layout-menubutton-icon:after {
  width: 28px;
  height: 4px;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-timing-function: swing;
}
.layout-topbar .layout-menubutton .layout-menubutton-icon:before {
  top: -9px;
}
.layout-topbar .layout-menubutton .layout-menubutton-icon:after {
  top: 9px;
}
.layout-topbar .layout-logo img {
  height: 48px;
  margin: 1rem;
}
.layout-topbar .layout-topbar-search .p-inputtext {
  width: 150px;
  padding: 6px 24px 6px 6px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.layout-topbar .layout-topbar-search i {
  position: absolute;
  color: #616161;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.layout-topbar .profile-menu-button {
  height: 40px;
  margin-left: 2em;
  display: inline-block;
  border: 2px solid transparent;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.layout-topbar .profile-menu-button img {
  width: 36px;
  height: 36px;
}
.layout-topbar .layout-profile-menu {
  display: none;
  list-style-type: none;
  position: absolute;
  min-width: 250px;
  z-index: 999;
  padding: 0.75em;
  overflow: auto;
  top: 80px;
  right: 10px;
  margin: 0;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.layout-topbar .layout-profile-menu.layout-profile-menu-active {
  display: block;
}
.layout-topbar .layout-profile-menu a {
  display: block;
  position: relative;
  padding: 0.75em;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.layout-topbar .layout-profile-menu a span {
  vertical-align: middle;
}
.layout-topbar .layout-profile-menu a i {
  vertical-align: middle;
  font-size: 14px;
  margin-right: 7px;
}
.layout-topbar .layout-profile-menu .layout-profile-menu-search {
  display: none;
  padding: 1em;
}
.layout-topbar .layout-profile-menu .layout-profile-menu-search .p-inputtext {
  width: 100%;
}

.layout-topbar-separator {
  height: 1px;
  margin-top: -3px;
}

.layout-container.layout-top-small .layout-top {
  padding-bottom: 15px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
}
.layout-container.layout-top-small .layout-breadcrumb,
.layout-container.layout-top-small .layout-topbar-separator {
  display: none;
}
.layout-container.layout-top-small .layout-content {
  margin-top: 15px;
}
.layout-container.layout-top-small .layout-menu-container,
.layout-container.layout-top-small .layout-mask {
  top: 86px;
}
.layout-container.layout-top-medium .layout-top {
  padding-bottom: 15px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
}
.layout-container.layout-top-medium .layout-breadcrumb {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.layout-container.layout-top-medium .layout-content {
  margin-top: 15px;
}
.layout-container.layout-top-large .layout-top {
  /*padding-bottom: 30px;*/
}
.layout-container.layout-top-large .layout-content {
  margin-top: 30px;
}

@media screen and (max-width: 1024px) {
  .layout-top {
    /*padding: 0 0 150px 0;*/
  }

  .layout-topbar {
    padding: 0.5em 1em;
  }
  .layout-topbar .layout-menubutton {
    top: 2.25em;
    /*left: 1em;*/
  }
  .layout-topbar .layout-logo {
    margin-left: 5em;
  }
  .layout-topbar .layout-profile-menu {
    right: 1em;
  }
  .layout-topbar .layout-topbar-search {
    display: none;
  }
  .layout-topbar .layout-profile-menu .layout-profile-menu-search {
    display: block;
  }

  .layout-container.layout-top-small .layout-top {
    padding-bottom: 0;
  }
  .layout-container.layout-top-small .layout-menubutton {
    top: 0.786em;
  }
  .layout-container.layout-top-small .layout-menu-container,
.layout-container.layout-top-small .layout-mask {
    top: 70px;
  }
}
.layout-topbar-blue .layout-top {
  background-color: #457fca;
  /*background-image: -webkit-gradient(linear, left top, right top, from(#457fca), to(#5691c8));
  background-image: -webkit-linear-gradient(left, #457fca, #5691c8);
  background-image: -moz-linear-gradient(left, #457fca, #5691c8);
  background-image: -ms-linear-gradient(left, #457fca, #5691c8);
  background-image: -o-linear-gradient(left, #457fca, #5691c8);
  background-image: linear-gradient(left, #457fca, #5691c8);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#457fca", endColorstr="#5691c8", gradientType="1");*/
}
.layout-topbar-blue .layout-topbar .layout-topbar-search .p-inputtext {
  color: #ffffff;
}
.layout-topbar-blue .layout-topbar .layout-topbar-search i {
  color: #cbdeee;
}
.layout-topbar-blue .layout-topbar .layout-topbar-search label {
  color: #cbdeee;
}
.layout-topbar-blue .layout-topbar .profile-menu-button:hover {
  border-color: #ffffff;
}
.layout-topbar-blue .layout-menubutton {
  background-color: #fafafa;
}
.layout-topbar-blue .layout-menubutton .layout-menubutton-icon {
  background-color: #447dc6;
}
.layout-topbar-blue .layout-menubutton .layout-menubutton-icon:before, .layout-topbar-blue .layout-menubutton .layout-menubutton-icon:after {
  background-color: #447dc6;
}
.layout-topbar-blue .layout-menubutton:hover {
  background-color: #e0e0e0;
}
.layout-topbar-blue .layout-menubutton:hover .layout-menubutton-icon {
  background-color: #447dc6;
}
.layout-topbar-blue .layout-menubutton:hover .layout-menubutton-icon:before, .layout-topbar-blue .layout-menubutton:hover .layout-menubutton-icon:after {
  background-color: #447dc6;
}
.layout-topbar-blue .layout-menubutton.layout-menubutton-active {
  background-color: rgba(13, 19, 52, 0.6);
}
.layout-topbar-blue .layout-menubutton.layout-menubutton-active .layout-menubutton-icon {
  background-color: #ffffff;
}
.layout-topbar-blue .layout-menubutton.layout-menubutton-active .layout-menubutton-icon:before, .layout-topbar-blue .layout-menubutton.layout-menubutton-active .layout-menubutton-icon:after {
  background-color: #ffffff;
}
@media screen and (min-width: 1200px) { /* DT 1025px */
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li:hover > a {
    background-color: transparent;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li > a .menuitem-text {
    color: #ffffff;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li > a i {
    color: #ffffff;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li > a:hover {
    border-bottom-color: #cbdeee;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li > a:focus {
    border-bottom-color: #ffffff;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li > a.active-menuitem-routerlink {
    border-bottom-color: #ffffff;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li.active-menuitem > a {
    background-color: transparent;
    border-bottom-color: #ffffff;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li.active-menuitem > a .menuitem-text {
    color: #ffffff;
  }
  .layout-topbar-blue.layout-menu-horizontal .layout-menu > li.active-menuitem > a i {
    color: #ffffff;
  }
}
.layout-topbar-blue .layout-topbar-separator {
  background-color: #ffffff;
}
.layout-topbar-blue .layout-breadcrumb li {
  color: #ffffff;
}
.layout-topbar-blue .layout-breadcrumb li i {
  color: #ffffff;
}
.layout-topbar-blue .layout-breadcrumb li a {
  color: #ffffff;
}

.layout-topbar-classic .layout-top {
  background-image: url("../../layout/images/special/classic-topbar.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.layout-topbar-classic .layout-topbar .layout-topbar-search .p-inputtext {
  color: #ffffff;
}
.layout-topbar-classic .layout-topbar .layout-topbar-search i {
  color: #C8C5C4;
}
.layout-topbar-classic .layout-topbar .layout-topbar-search label {
  color: #C8C5C4;
}
.layout-topbar-classic .layout-topbar .profile-menu-button:hover {
  border-color: #ffffff;
}
.layout-topbar-classic .layout-menubutton {
  background-color: #fafafa;
}
.layout-topbar-classic .layout-menubutton .layout-menubutton-icon {
  background-color: #422114;
}
.layout-topbar-classic .layout-menubutton .layout-menubutton-icon:before, .layout-topbar-classic .layout-menubutton .layout-menubutton-icon:after {
  background-color: #422114;
}
.layout-topbar-classic .layout-menubutton:hover {
  background-color: #e0e0e0;
}
.layout-topbar-classic .layout-menubutton:hover .layout-menubutton-icon {
  background-color: #422114;
}
.layout-topbar-classic .layout-menubutton:hover .layout-menubutton-icon:before, .layout-topbar-classic .layout-menubutton:hover .layout-menubutton-icon:after {
  background-color: #422114;
}
.layout-topbar-classic .layout-menubutton.layout-menubutton-active {
  background-color: rgba(255, 255, 255, 0.25);
}
.layout-topbar-classic .layout-menubutton.layout-menubutton-active .layout-menubutton-icon {
  background-color: #ffffff;
}
.layout-topbar-classic .layout-menubutton.layout-menubutton-active .layout-menubutton-icon:before, .layout-topbar-classic .layout-menubutton.layout-menubutton-active .layout-menubutton-icon:after {
  background-color: #ffffff;
}
@media screen and (min-width: 1200px) { /* DT 1025px */
  .layout-topbar-classic.layout-menu-horizontal .layout-menu > li:hover > a {
    background-color: transparent;
  }
  .layout-topbar-classic.layout-menu-horizontal .layout-menu > li > a .menuitem-text {
    color: #ffffff;
  }
  .layout-topbar-classic.layout-menu-horizontal .layout-menu > li > a i {
    color: #ffffff;
  }
  .layout-topbar-classic.layout-menu-horizontal .layout-menu > li > a:hover {
    border-bottom-color: #C8C5C4;
  }
  .layout-topbar-classic.layout-menu-horizontal .layout-menu > li.active-menuitem > a {
    background-color: transparent;
    border-bottom-color: #ffffff;
  }
  .layout-topbar-classic.layout-menu-horizontal .layout-menu > li.active-menuitem > a .menuitem-text {
    color: #ffffff;
  }
  .layout-topbar-classic.layout-menu-horizontal .layout-menu > li.active-menuitem > a i {
    color: #ffffff;
  }
}
.layout-topbar-classic .layout-topbar-separator {
  background-color: #ffffff;
}
.layout-topbar-classic .layout-breadcrumb li {
  color: #ffffff;
}
.layout-topbar-classic .layout-breadcrumb li i {
  color: #ffffff;
}
.layout-topbar-classic .layout-breadcrumb li a {
  color: #FFA726;
}

.layout-container .layout-menubutton {
  display: block;
}
.layout-container .layout-logo {
  margin-right: 0;
}
.layout-container .layout-menu-container {
  position: fixed;
  overflow: auto;
  width: 240px;
  height: 100%;
  top: 68px;
  left: -250px;
  z-index: 999;
  -moz-transition: left 0.2s;
  -o-transition: left 0.2s;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
}
.layout-container .layout-menu {
  list-style-type: none;
  margin: 0;
  padding: 0.75em 0.75em 120px;
}
.layout-container .layout-menu li .layout-submenu-toggler {
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.layout-container .layout-menu > li.active-menuitem > a {
  -moz-border-radius-bottomleft: 0;
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -moz-border-radius-bottomright: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
.layout-container .layout-menu > li > .layout-submenu-container > .layout-megamenu > li .layout-megamenu-submenu-text {
  display: block;
  padding: 0.75em;
  font-weight: 500;
}
.layout-container .layout-menu > li > .layout-submenu-container > .layout-megamenu > li > .layout-submenu-container {
  display: block;
}
.layout-container .layout-menu > li > .layout-submenu-container > .layout-megamenu > li > .layout-submenu-container a {
  padding-left: 0.75em;
}
.layout-container .layout-menu a {
  display: block;
  position: relative;
  padding: 0.75em;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.layout-container .layout-menu a .menuitem-text {
  vertical-align: middle;
}
.layout-container .layout-menu a.rotated-icon .layout-menuitem-icon {
  transform: rotate(90deg);
}
.layout-container .layout-menu a i {
  vertical-align: middle;
  font-size: 16px;
}
.layout-container .layout-menu a i.layout-submenu-toggler {
  position: absolute;
  right: 0.75em;
}
.layout-container .layout-menu a i:first-child {
  margin-right: 7px;
}
.layout-container .layout-menu .layout-submenu-container {
  overflow: hidden;
}
.layout-container .layout-menu .layout-submenu-container .layout-submenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.layout-container .layout-menu .layout-submenu-container .layout-submenu.layout-megamenu > li > a:first-child {
  display: none;
}
.layout-container .layout-menu .layout-submenu-container a {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.layout-container .layout-menu .layout-submenu-container li a {
  padding-left: 1.75em;
}
.layout-container .layout-menu .layout-submenu-container li li a {
  padding-left: 2.75em;
}
.layout-container .layout-menu .layout-submenu-container li li li a {
  padding-left: 3.75em;
}
.layout-container .layout-menu .layout-submenu-container li li li li a {
  padding-left: 4.75em;
}
.layout-container .layout-menu .layout-submenu-container li li li li li a {
  padding-left: 5.75em;
}
.layout-container.layout-menu-active .layout-menu-container {
  left: 0;
}
.layout-container.layout-menu-active .layout-menubutton {
  -webkit-box-shadow: inset 0 1px 10px 0 rgba(0, 0, 0, 0.12), inset 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  -moz-box-shadow: inset 0 1px 10px 0 rgba(0, 0, 0, 0.12), inset 0 4px 5px 0 rgba(0, 0, 0, 0.14);
  box-shadow: inset 0 1px 10px 0 rgba(0, 0, 0, 0.12), inset 0 4px 5px 0 rgba(0, 0, 0, 0.14);
}
.layout-container.layout-menu-active .layout-menubutton .layout-menubutton-icon {
  width: 0;
}
.layout-container.layout-menu-active .layout-menubutton .layout-menubutton-icon:before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.layout-container.layout-menu-active .layout-menubutton .layout-menubutton-icon:after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

@media screen and (min-width: 1200px) { /* DT 1025px */
  .layout-menu-horizontal .layout-menubutton {
    display: none;
  }
  .layout-menu-horizontal .layout-logo {
    margin-right: 2em;
  }
  .layout-menu-horizontal .layout-menu-container {
    position: static;
    display: block;
    z-index: auto;
    width: auto;
    height: auto;
    overflow: visible;
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .layout-menu-horizontal .layout-menu {
    padding: 0;
  }
  .layout-menu-horizontal .layout-menu > li {
    display: inline-block;
    position: relative;
  }
  .layout-menu-horizontal .layout-menu > li > a {
    display: block;
    padding: 1em;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    user-select: none;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    -moz-transition: border-bottom-color 0.2s;
    -o-transition: border-bottom-color 0.2s;
    -webkit-transition: border-bottom-color 0.2s;
    transition: border-bottom-color 0.2s;
  }
  .layout-menu-horizontal .layout-menu > li > a .menuitem-text {
    margin: 0 0.5em;
  }
  .layout-menu-horizontal .layout-menu > li > a i {
    font-size: 16px;
  }
  .layout-menu-horizontal .layout-menu > li > a i.layout-submenu-toggler {
    position: static;
  }
  .layout-menu-horizontal .layout-menu > li > a i:first-child {
    margin-right: 0;
  }
  .layout-menu-horizontal .layout-menu > li > .layout-submenu-container {
    position: absolute;
    min-width: 250px;
    z-index: 999;
    padding: 0.75em;
    max-height: 500px;
    overflow: auto;
    -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
  }
  .layout-menu-horizontal .layout-menu > li > .layout-submenu-container > .layout-megamenu {
    max-height: none;
    width: auto;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
  }
  .layout-menu-horizontal .layout-menu > li > .layout-submenu-container > .layout-megamenu > li {
    flex-grow: 1;
  }
  .layout-menu-horizontal .layout-menu > li > .layout-submenu-container > .layout-megamenu > li > .layout-submenu-container {
    min-width: 200px;
  }
  .layout-menu-horizontal .layout-menu > li > .layout-submenu-container > .layout-megamenu > li > .layout-submenu-container a {
    padding-left: 0.75em;
  }
  .layout-menu-horizontal .layout-menu li .layout-submenu-toggler {
    -moz-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
  }
  .layout-menu-horizontal .layout-menu li.active-menuitem > a .layout-submenu-toggler {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li a {
    display: block;
    position: relative;
    padding: 0.75em;
    cursor: pointer;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li a .menuitem-text {
    vertical-align: middle;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li a i {
    vertical-align: middle;
    font-size: 16px;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li a i.layout-submenu-toggler {
    position: absolute;
    right: 0.75em;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li a i:first-child {
    margin-right: 7px;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li li a {
    padding-left: 1.75em;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li li li a {
    padding-left: 2.75em;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li li li li a {
    padding-left: 3.75em;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li li li li li a {
    padding-left: 4.75em;
  }
  .layout-menu-horizontal .layout-menu .layout-submenu li li li li li li a {
    padding-left: 5.75em;
  }
  .layout-menu-horizontal .layout-mask, .layout-menu-horizontal.layout-top-small .layout-mask {
    top: 0;
    left: 0;
  }
}
.menuitem-badge {
  background-color: #ffc107;
  color: #212121;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  min-width: 16px;
  min-height: 16px;
  line-height: 16px;
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
}

.layout-menu-light .layout-menu-container {
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -ms-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(to bottom, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff");
}
.layout-menu-light .layout-menu a .menuitem-text {
  color: #616161;
}
.layout-menu-light .layout-menu a i {
  color: #616161;
}
.layout-menu-light .layout-menu a:hover {
  background-color: #e0e0e0;
}
.layout-menu-light .layout-menu a:hover .menuitem-text {
  color: #212121;
}
.layout-menu-light .layout-menu a:hover i {
  color: #212121;
}
.layout-menu-light .layout-menu > li > .layout-submenu-container {
  background-color: #eeeeee;
}
.layout-menu-light .layout-menu li.active-menuitem:not(:first-child) a.active-menuitem-routerlink .menuitem-text {
  color: #457fca;
}
.layout-menu-light .layout-menu li.active-menuitem:not(:first-child) a.active-menuitem-routerlink i {
  color: #457fca;
}
.layout-menu-light .layout-menu li.active-menuitem > a .menuitem-text {
  color: #457fca;
}
.layout-menu-light .layout-menu li.active-menuitem > a i {
  color: #457fca;
}
.layout-menu-light .layout-menu > li.active-menuitem > a {
  background-color: #457fca;
}
.layout-menu-light .layout-menu > li.active-menuitem > a .menuitem-text {
  color: #ffffff;
}
.layout-menu-light .layout-menu > li.active-menuitem > a i {
  color: #ffffff;
}
.layout-menu-light .layout-menu .layout-megamenu-submenu-text {
  color: #616161;
}

@media screen and (min-width: 1200px) { /* DT 1025px */
  .layout-menu-light.layout-menu-horizontal .layout-menu-container {
    background-image: none;
    background-color: transparent;
  }
  .layout-menu-light.layout-menu-horizontal .layout-menu .layout-megamenu-submenu-text {
    color: #616161;
  }
  .layout-menu-light.layout-menu-horizontal .layout-menu > li > .layout-submenu-container {
    background-color: #ffffff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
    background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
    background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
    background-image: -ms-linear-gradient(top, #ffffff, #ffffff);
    background-image: -o-linear-gradient(top, #ffffff, #ffffff);
    background-image: linear-gradient(to bottom, #ffffff, #ffffff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff");
  }
}

.layout-menu-light .layout-profile-menu {
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(top, #ffffff, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff);
  background-image: -ms-linear-gradient(top, #ffffff, #ffffff);
  background-image: -o-linear-gradient(top, #ffffff, #ffffff);
  background-image: linear-gradient(to bottom, #ffffff, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff");
}
.layout-menu-light .layout-profile-menu a span {
  color: #616161;
}
.layout-menu-light .layout-profile-menu a i {
  color: #616161;
}
.layout-menu-light .layout-profile-menu a:hover {
  background-color: #e0e0e0;
}
.layout-menu-light .layout-profile-menu a:hover .menuitem-text {
  color: #212121;
}
.layout-menu-light .layout-profile-menu a:hover i {
  color: #212121;
}
.layout-menu-light .layout-profile-menu .layout-profile-menu-search .ui-inputtext {
  color: #616161;
  background-image: linear-gradient(to bottom, #616161, #616161), linear-gradient(to bottom, #616161, #616161);
}
.layout-menu-light .layout-profile-menu .layout-profile-menu-search .ui-inputtext:focus ~ label, .layout-menu-light .layout-profile-menu .layout-profile-menu-search .ui-inputtext:focus ~ i {
  color: #616161;
}
.layout-menu-light .layout-profile-menu .layout-profile-menu-search i {
  color: #616161;
}
.layout-menu-light .layout-profile-menu .layout-profile-menu-search label {
  color: #616161;
}

.layout-breadcrumb {
  /*-webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.03), 0 2px 5px 0 rgba(0, 0, 0, 0.05);*/
}
.layout-breadcrumb ul {
  list-style-type: none;
  padding: 0.75em;
  margin: 0;
}
.layout-breadcrumb li {
  display: inline-block;
  vertical-align: middle;
}
.layout-breadcrumb li:nth-child(2n) i {
  font-size: 14px;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.layout-breadcrumb li i {
  font-size: 20px;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .layout-breadcrumb ul {
    padding-left: 1em;
  }
}
.layout-container {
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;  
  max-width: 100%;
  overflow-x: hidden;  
}

.layout-content {
  padding: 0 100px;
  flex: 1 1 0;
}

.layout-mask {
  background-color: #252529;
  position: fixed;
  top: 68px;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .layout-content {
    padding: 0 1em;
    margin-top: -120px;
  }
}
.layout-footer {
  background-color: #212121;
  color: #9f9f9f;
  padding: 0 100px;
  margin-top: 3em;
}
.layout-footer .layout-footer-appname {
  margin-top: 0.5em;
}
.layout-footer .col {
  padding: 2em 0.5em;
}
.layout-footer .col:last-child {
  text-align: right;
}
.layout-footer .col:last-child span {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 2px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid #dbdbdb;
  border-width: 1px 0 0 0;
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

.widget-overview-box .overview-numbers {
  font-size: 16px;
  color: #4c87c9;
  font-weight: 700;
  margin: 0.5em 0 1em 0;
}
.widget-overview-box.monthly-sales img {
  width: 100%;
  margin-top: 1em;
}
.widget-overview-box.total-views img {
  width: 100%;
  margin-top: 4em;
}
.widget-overview-box.connections .legend-arrow {
  color: #4caf50;
}
.widget-overview-box.connections .dot {
  margin-right: 0.5em;
  vertical-align: middle;
}
.widget-overview-box.connections .connection-chart {
  text-align: center;
  padding-top: 2em;
}
.widget-overview-box.connections .connection-chart-legend {
  padding-left: 4%;
  padding-top: 1.5em;
  color: #616161;
}

.widget-summary-box {
  position: relative;
}
.widget-summary-box .card {
  min-height: 100px;
}
.widget-summary-box .summary-box-title {
  font-size: 16px;
  margin: 0;
  color: #ffffff;
}
.widget-summary-box p {
  margin: 0.25em 0;
  color: #ffffff;
}
.widget-summary-box .summary-box-icon {
  position: absolute;
  right: 24px;
  top: 32px;
}
.widget-summary-box .summary-box-graph {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.widget-summary-box.summary-box-messages .card {
  border-top: 4px solid #0097a7;
  background-color: #00bcd4;
}
.widget-summary-box.summary-box-checkins .card {
  border-top: 4px solid #ad1457;
  background-color: #e91e63;
}
.widget-summary-box.summary-box-filessynced .card {
  border-top: 4px solid #f47b08;
  background-color: #ffb300;
}
.widget-summary-box.summary-box-usersonline .card {
  border-top: 4px solid #455a64;
  background-color: #607d8b;
}

.widget-team .dot {
  height: 0.5em;
  width: 0.5em;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
}
.widget-team .dot.dot-green {
  background-color: #4caf50;
}
.widget-team .dot.dot-red {
  background-color: #e91e63;
}
.widget-team .dot.dot-orange {
  background-color: #ff9800;
}
.widget-team ul {
  list-style-type: none;
  margin: 0.25em 0 0 0;
  padding: 0;
}
.widget-team ul li {
  border-bottom: 1px solid #e4e4e4;
}
.widget-team ul li:last-child {
  border-bottom: 0 none;
}
.widget-team img {
  width: 40px;
  height: 40px;
}
.widget-team .member-content {
  padding: 1em;
}
.widget-team .member-name {
  margin-bottom: 0.5em;
}
.widget-team button:last-child {
  margin-left: 0.5em;
}
.widget-team .member-status {
  color: #616161;
}
.widget-team .member-status span {
  vertical-align: middle;
}
.widget-team .dot {
  margin-right: 0.3em;
  vertical-align: middle;
}

.widget-timeline .icon-container {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background-color: #eeeeee;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.widget-timeline .icon-container i {
  color: #9e9e9e;
  font-size: 20px;
  line-height: inherit;
}
.widget-timeline h3 {
  margin: 0;
  font-size: 16px;
}
.widget-timeline ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.widget-timeline li {
  padding: 1em 0;
  border-bottom: 1px solid #e4e4e4;
}
.widget-timeline li:last-child {
  border-bottom: 0 none;
}
.widget-timeline img {
  width: 100%;
}
.widget-timeline .grid-nogutter .col-fixed {
  padding: 0 1em 0.5em 0;
}
.widget-timeline .event-owner {
  color: #616161;
  margin-bottom: 0.5em;
}
.widget-timeline .event-detail {
  margin-bottom: 0.5em;
  color: rgba(0, 0, 0, 0.87);
}
.widget-timeline .timeline-clock {
  display: inline-block;
  margin-top: 0.5em;
  background-color: #eeeeee;
  color: #616161;
  padding: 0.5em;
  font-size: 13px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.widget-timeline .timeline-clock i {
  margin-right: 7px;
  vertical-align: middle;
}
.widget-timeline .timeline-clock span {
  vertical-align: middle;
}

.widget-location {
  padding: 0;
  margin-top: 1em;
}
.widget-location .location-content {
  padding: 1em;
}
.widget-location .location-name {
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.widget-location p {
  margin: 0.75em 0;
  color: #616161;
}
.widget-location img {
  width: 100%;
}
.widget-location a {
  color: #00bcd4;
}
.widget-location a:hover {
  color: #0097a7;
}

.widget-userprofile {
  padding: 0;
  height: 100%;
}
.widget-userprofile .userprofile-bg {
  width: 100%;
}
.widget-userprofile .userprofile-avatar {
  border: 4px solid #ffffff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin: 0 auto;
  width: 96px;
  height: 96px;
  display: block;
  margin-top: -48px;
}
.widget-userprofile .userprofile-name {
  text-align: center;
  margin: 0.5em 0;
}
.widget-userprofile .userprofile-role {
  color: #616161;
  text-align: center;
  margin-bottom: 2em;
  font-size: 12px;
  letter-spacing: 0.4px;
}
.widget-userprofile .userprofile-circle {
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-width: 4px;
  border-style: solid;
  margin: 0 auto;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-bottom: 0.5em;
}
.widget-userprofile .userprofile-status {
  color: #616161;
  letter-spacing: 2px;
  font-size: 12px;
}
.widget-userprofile .userprofile-value {
  margin-top: 0.5em;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
}
.widget-userprofile .userprofile-legend {
  text-align: center;
}
.widget-userprofile .userprofile-completed .userprofile-circle {
  border-color: #00bcd4;
}
.widget-userprofile .userprofile-snoozed .userprofile-circle {
  border-color: #ffc107;
}
.widget-userprofile .userprofile-overdue .userprofile-circle {
  border-color: #e91e63;
}

.widget-weather {
  padding: 0;
}
.widget-weather .weather-image {
  background-image: url("../images/dashboard/primecity.jpg");
  background-size: cover;
  text-align: center;
  color: rgba(255, 255, 255, 0.87);
  min-height: 250px;
  padding: 1em;
}
.widget-weather .weather-image .city-name {
  font-size: 24px;
  margin-bottom: 40px;
}
.widget-weather .weather-image .weather-today {
  font-size: 20px;
  margin-bottom: 8px;
}
.widget-weather .weather-image .weather-degree {
  font-size: 40px;
}
.widget-weather .weekdays {
  margin: 1em;
  margin-bottom: 0;
}
.widget-weather .weekdays > div {
  padding: 0.857em;
}
.widget-weather .weather-degree-col {
  text-align: right;
}
.widget-weather .weather-degree-col img {
  vertical-align: middle;
  margin-left: 0.5em;
}

.widget-pricing-box {
  width: 100%;
  max-height: 358px;
  text-align: left;
  background-color: #fafafa;
  border-left: 6px solid rgba(97, 97, 97, 0.07);
  border-radius: 4px;
  box-shadow: 0 5px 6px -3px rgba(0, 0, 0, 0.2), 0 3px 16px 2px rgba(0, 0, 0, 0.12), 0 9px 12px 1px rgba(0, 0, 0, 0.14);
}
.widget-pricing-box .pricing-header {
  padding: 24px 24px 18px 24px;
  text-align: center;
}
.widget-pricing-box .pricing-header h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #212121;
  margin: 0;
}
.widget-pricing-box .pricing-header .pricing-fee {
  font-size: 20px;
  letter-spacing: 0.3px;
  color: #616161;
  margin: 0;
}
.widget-pricing-box .pricing-header .pricing-fee b {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #212121;
  text-align: center;
}
.widget-pricing-box .pricing-content {
  padding: 0 20px 19px 20px;
  min-height: 228px;
  position: relative;
}
.widget-pricing-box .pricing-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.widget-pricing-box .pricing-content ul li {
  padding: 12px 0 0 0;
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #212121;
}
.widget-pricing-box .pricing-content ul li i {
  color: #43a047;
  font-size: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.widget-pricing-box .pricing-content button {
  background-color: #457fca;
  position: absolute;
  min-width: 136px;
  bottom: 20px;
  left: 50%;
  margin-left: -68px;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.14);
}
.widget-pricing-box .pricing-content button:enabled:hover {
  background-color: #1565C0;
}

.help-page p {
  margin: 0;
}
.help-page .help-search {
  background: url("../../layout/images/pages/bg-help.png") repeat;
  background-color: #f4f4f7;
  padding: 0;
  text-align: center;
}
.help-page .help-search .help-search-content {
  padding: 5rem 12rem;
}
.help-page .help-search .search-container {
  font-size: 1.5rem;
  padding: 1rem;
  position: relative;
}
.help-page .help-search .search-container input {
  appearance: none;
  font-size: 1.5rem;
  text-indent: 2.5rem;
  padding: 0.5rem;
  width: 100%;
}
.help-page .help-search .search-container i {
  color: #212121;
  width: 2rem;
  position: absolute;
  margin-left: 1rem;
  top: 50%;
  margin-top: -0.5rem;
}
.help-page .status-bars {
  margin-top: 1rem;
  display: -ms-flexbox;
  display: flex;
}
.help-page .status-bars .status-bar {
  flex: 1 1 0;
  -ms-flex: 1 1 0px;
  background: #8BC34A;
  height: 50px;
  margin-right: 0.25rem;
  transition: transform 0.2s;
}
.help-page .status-bars .status-bar:last-child {
  margin-right: 0;
}
.help-page .status-bars .status-bar.status-bar-failure {
  background: #EC407A;
}
.help-page .status-bars .status-bar:hover {
  transform: scale(1.1);
}
.help-page .status-bar-footer {
  padding: 1rem 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.help-page .blog-post {
  height: 150px;
  border-radius: 4px;
  margin: 3rem 2rem;
  position: relative;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.help-page .blog-post:last-child {
  margin-bottom: 1rem;
}
.help-page .blog-post img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.help-page .blog-post .blog-text {
  position: absolute;
  left: 20px;
  top: 30px;
}
.help-page .blog-post .blog-text h1 {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}
.help-page .blog-post .blog-text span {
  color: #ffffff;
  font-weight: 600;
}
.help-page .blog-post .blog-profile {
  position: absolute;
  top: -25px;
  left: -25px;
}
.help-page .blog-post .blog-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.help-page .blog-post:nth-child(1) {
  background-image: url("../../layout/images/pages/help/blog1.jpg");
}
.help-page .blog-post:nth-child(2) {
  background-image: url("../../layout/images/pages/help/blog2.jpg");
}
.help-page .blog-post:nth-child(3) {
  background-image: url("../../layout/images/pages/help/blog3.jpg");
}

@media screen and (max-width: 991px) {
  .help-page .help-search .help-search-content {
    padding: 6rem 2rem;
  }
}
.invoice {
  padding: 2rem;
}
.invoice .invoice-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.invoice .invoice-company .logo-image {
  width: 120px;
  margin-bottom: 0.5rem;
}
.invoice .invoice-company div {
  margin-bottom: 0.5rem;
}
.invoice .invoice-company .company-name {
  font-weight: 700;
  font-size: 1.5rem;
}
.invoice .invoice-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: right;
}
.invoice .invoice-details {
  width: 15rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.invoice .invoice-details > div {
  width: 50%;
  margin-bottom: 0.5rem;
}
.invoice .invoice-details .invoice-label {
  text-align: left;
  font-weight: 700;
}
.invoice .invoice-details .invoice-value {
  text-align: right;
}
.invoice .invoice-to {
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #dbdbdb;
}
.invoice .invoice-to .bill-to {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.invoice .invoice-to .invoice-to-info div {
  margin-bottom: 0.5rem;
}
.invoice .invoice-items {
  margin-top: 2rem;
  padding-top: 2rem;
}
.invoice .invoice-items table {
  width: 100%;
  border-collapse: collapse;
}
.invoice .invoice-items table tr {
  border-bottom: 1px solid #dbdbdb;
}
.invoice .invoice-items table th {
  font-weight: 700;
}
.invoice .invoice-items table th, .invoice .invoice-items table td {
  padding: 1rem;
  text-align: right;
}
.invoice .invoice-items table th:first-child, .invoice .invoice-items table td:first-child {
  text-align: left;
}
.invoice .invoice-summary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
.invoice .invoice-summary .invoice-value {
  font-weight: 700;
}

@media print {
  body * {
    visibility: hidden;
  }

  #invoice-content * {
    visibility: visible;
  }

  #invoice-content {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
  }
}
/* Add your customizations of layout here */
.h100{
  height: 95vh;
}

.flexCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flexHEnd {
  display: flex;
  align-items: end;
  justify-content: center;
}

.login-imgs{
  display: grid;
  align-self: center;
}

.login-imgs img{
  align-self: center;
  justify-self: center;
}

.login-imgs .img1{
  width: 271px;
}

.login-imgs .img2{
  width: 390px;
  margin: 50px 0;
}

.login-imgs .img3{
  width: 210px;
}

.login-imgs p{
  text-align: center;
}

.displayLoginImgs{
  display: grid;
}

.displayGridLogin{
  display: grid;
}

.switchI p-inputswitch{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

@media screen and (max-width: 1212px){
  .login-imgs .img1{
    width: 80%;
  }

  .login-imgs .img2{
    width: 100%;
    margin: 50px 0;
  }

  .login-imgs .img3{
    width: 70%;
  }

  .login-imgs p{
    font-size: 1.1vw;
  }
}

@media screen and (max-width: 768px){
  .displayLoginImgs{
    display: none;
  }
}

@media screen and (max-width: 576px){
  .displayGridLogin{
    display: none;
  }
}
