/*Badge*/
/* RouteBar */
/* Add your variable customizations of layout here */
.splash-screen {
  min-height: 100%;
}
.splash-screen:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #6A4AA5;
}
.splash-screen .splash-screen-bars {
  width: 135px;
  height: 140px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -60px;
  margin-left: -40px;
  background: url("../../layout/images/bars.svg");
}

/* source-sans-pro-300 - latin-ext_latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/source-sans-pro-v11-latin-ext_latin-300.eot"); /* IE9 Compat Modes */
  src: local("Source Sans Pro Light"), local("SourceSansPro-Light"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-300.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* source-sans-pro-regular - latin-ext_latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* source-sans-pro-italic - latin-ext_latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.eot"); /* IE9 Compat Modes */
  src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* source-sans-pro-700 - latin-ext_latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: bold;
  font-weight: 700;
  src: url("../fonts/source-sans-pro-v11-latin-ext_latin-700.eot"); /* IE9 Compat Modes */
  src: local("Source Sans Pro Bold"), local("SourceSansPro-Bold"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.eot#iefix") format("embedded-opentype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.woff2") format("woff2"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.woff") format("woff"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.ttf") format("truetype"), url("../fonts/source-sans-pro-v11-latin-ext_latin-700.svg#SourceSansPro") format("svg"); /* Legacy iOS */
}
/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.card {
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  background: #ffffff;
  padding: 16px;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.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: #797979;
  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: 70px;
}

.fadeInDown {
  -webkit-animation: fadeInDown 0.2s;
  animation: fadeInDown 0.2s;
}

.fadeOutUp {
  -webkit-animation: fadeOutUp 0.2s;
  animation: fadeOutUp 0.2s;
}

@-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);
  }
}
.login-body .login-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 60px;
  background: #6A4AA5; /* Old browsers */
  background: -moz-linear-gradient(-90deg, #6A4AA5 5%, #6A4AA5 100%);
  background: -webkit-linear-gradient(-90deg, #6A4AA5 5%, #6A4AA5 100%);
  background: linear-gradient(-90deg, #6A4AA5 5%, #6A4AA5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6A4AA5", endColorstr="#6A4AA5",GradientType=1 );
}
.login-body .login-topbar .logo {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 230px;
  padding: 10px 100px;
  display: inline-block;
  text-align: center;
}
.login-body .login-topbar .logo img {
  height: 40px;
}
.login-body .login-image {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  top: 60px;
}
.login-body .login-panel {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15% 0 0 100px;
  width: 500px;
}
.login-body .login-panel .login-icon {
  max-width: 75px;
  max-height: 75px;
  margin-bottom: 25px;
}
.login-body .login-panel .grid .logo-container {
  padding: 0;
}
.login-body .login-panel .grid .logo-container .login-summary {
  line-height: 48px;
  font-size: 36px;
  font-weight: bold;
  text-align: left;
}
.login-body .login-panel .grid .logo-container .login-detail {
  line-height: 20px;
  font-size: 16px;
  text-align: left;
}
.login-body .login-panel .grid .col-12 {
  padding: 15px 0px;
}
.login-body .login-panel .grid .col-12 .p-inputtext {
  display: block;
  margin-top: 5px;
}
.login-body .login-panel .grid .col-12.chkbox-container a {
  float: right;
}
.login-body .login-panel .grid .col-12 .p-checkbox {
  margin-right: 5px;
}
.login-body .login-panel .grid .col-12 .p-outputlabel {
  vertical-align: middle;
}
.login-body .login-panel .grid .p-button {
  width: 130px;
  border-radius: 3px;
}

@media screen and (max-width: 640px) {
  .login-body .login-panel {
    padding: 150px 25px 0 25px;
    width: 100%;
  }
  .login-body .login-panel .login-icon-container {
    text-align: center;
  }
}
.exception-body .exception-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 60px;
  background: #6A4AA5; /* Old browsers */
  background: -moz-linear-gradient(-90deg, #6A4AA5 5%, #6A4AA5 100%);
  background: -webkit-linear-gradient(-90deg, #6A4AA5 5%, #6A4AA5 100%);
  background: linear-gradient(-90deg, #6A4AA5 5%, #6A4AA5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#6A4AA5", endColorstr="#6A4AA5",GradientType=1 );
}
.exception-body .exception-topbar .logo {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 230px;
  padding: 10px 100px;
  display: inline-block;
  text-align: center;
}
.exception-body .exception-topbar .logo img {
  height: 40px;
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #f2f5fa;
}
body a {
  text-decoration: none;
  color: #6A4AA5;
}

.layout-wrapper .layout-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  -moz-transition: margin-left 0.2s;
  -o-transition: margin-left 0.2s;
  -webkit-transition: margin-left 0.2s;
  transition: margin-left 0.2s;
}
.layout-wrapper .layout-main .route-bar {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 31px;
  background-color: #ffffff;
  border-bottom: solid 1px #d6d7d9;
}
.layout-wrapper .layout-main .route-bar:after {
  content: "";
  display: table;
  clear: both;
}
.layout-wrapper .layout-main .route-bar .route-bar-breadcrumb {
  padding: 6px 12px;
  display: inline-block;
}
.layout-wrapper .layout-main .route-bar .route-bar-breadcrumb i {
  color: #5b616a;
  font-size: 18px;
  vertical-align: bottom;
}
.layout-wrapper .layout-main .route-bar .route-bar-breadcrumb a {
  color: #212121;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
  margin-right: 12px;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li {
  height: 100%;
  display: inline-block;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li i {
  line-height: inherit;
  font-size: 18px;
  color: #5b616a;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li a {
  width: 36px;
  font-size: 18px;
  display: block;
  height: 100%;
  text-align: center;
  line-height: 30px;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li a:hover {
  background-color: #f1f1f1;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li.search-item input {
  margin-right: 9px;
  border: 0 none;
  text-align: left;
  font-size: 14px;
  max-width: 150px;
  outline-offset: 0;
  outline: 0 none;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li.search-item i {
  line-height: 30px;
  width: 36px;
  text-align: center;
}
.layout-wrapper .layout-main .layout-main-content {
  padding: 0;
  flex: 1 1 0;
}
.layout-wrapper.layout-wrapper-sidebar-inactive .layout-main {
  margin-left: 0;
}

@media screen and (min-width: 1025px) {
  .layout-wrapper .layout-main {
    padding-top: 30px;
  }
  .layout-wrapper.layout-wrapper-sidebar-inactive .layout-main {
    margin-left: 0;
  }
  .layout-wrapper.layout-wrapper-overlay-sidebar .layout-main {
    margin-left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .layout-wrapper .layout-main {
    margin-left: 0;
    padding-top: 60px;
  }
}
.layout-config {
  width: 16rem;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  padding: 1rem;
  overflow: auto;
  background: #ffffff;
  z-index: 999;
  border-left: 0 none;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
}
.layout-config.layout-config-active {
  transform: translateX(0);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-config.layout-config-active .layout-config-content .layout-config-button i {
  transform: rotate(360deg);
}
.layout-config p {
  line-height: 1.5rem;
  color: #797979;
}
.layout-config .layout-themes {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layout-config .layout-themes > div {
  padding: 0.25rem;
}
.layout-config .layout-themes a {
  width: 2rem;
  height: 2rem;
  border-radius: 0;
  display: block;
  position: relative;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: transform 0.2s;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.layout-config .layout-themes a i {
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
}
.layout-config .layout-themes a img {
  width: 2rem;
  height: 2rem;
}
.layout-config .layout-themes a:hover {
  transform: scale(1.1);
}

.layout-config-button {
  display: block;
  position: fixed;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  background: #1976D2;
  color: #ffffff;
  text-align: center;
  top: 70%;
  right: 0;
  margin-top: -1.5rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition: background-color 0.2s;
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15);
}
.layout-config-button i {
  font-size: 2rem;
  line-height: inherit;
  transform: rotate(0deg);
  transition: transform 1s;
}
.layout-config-button:hover {
  background: #2083e4;
}

.help-page p {
  margin: 0;
}
.help-page .help-search {
  background: url("../../layout/images/pages/bg-help.png") repeat;
  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;
  }
}
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: 0;
  font-family: monospace;
}

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

hr {
  border-top: solid #d6d7d9;
  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;
}

/* Add your customizations of layout here */
