@charset "UTF-8";
/* General */
/* Menu */
/* Topbar */
/* GreenButton */
/* YellowButton */
/* RedButton */
/* greyButton */
/* BlackButton */
/* BlueButton */
/* AquaButton */
/* NavyButton */
.splash-screen {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #4e5159;
  /* Old browsers */
  background: -moz-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4e5159), color-stop(100%, #1f2023));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #4e5159 0%, #1f2023 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.splash-screen .splash-wrapper {
  text-align: center;
  width: 200px;
  margin: 0 auto;
  padding-top: 150px;
}
.splash-screen .splash-wrapper .splash-loading {
  margin-top: 20px;
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  background-color: #edf0f5;
  min-height: 100%;
}

a {
  text-decoration: none;
  color: #2196f3;
}

.wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.wrapper .topbar {
  -moz-transition: left 0.3s;
  -o-transition: left 0.3s;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
  position: fixed;
  right: 0;
  left: 250px;
  height: 50px;
  background-color: #0388e5;
  padding: 0.7em 1.5em 0em 1.5em;
  box-sizing: border-box;
  color: #ffffff;
  z-index: 101;
}
.wrapper .topbar .topbar-title {
  display: inline-block;
  font-size: 20px;
  margin: 5px 0 0 15px;
  vertical-align: top;
}
.wrapper .topbar #topbar-icons {
  float: right;
  display: block;
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.wrapper .topbar #topbar-icons a {
  position: relative;
  color: #ffffff;
  margin-left: 20px;
  display: inline-block;
  text-decoration: none;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.wrapper .topbar #topbar-icons a:hover {
  color: #77c7ff;
}
.wrapper .topbar #topbar-icons a span.topbar-icon {
  font-size: 28px;
}
.wrapper .topbar #topbar-icons a span.topbar-item-text {
  font-size: 20px;
  display: none;
}
.wrapper .topbar #topbar-icons a span.topbar-badge {
  position: absolute;
  font-size: 10px;
  width: 16px;
  height: 16px;
  line-height: 10px;
  text-align: center;
  right: -5px;
  top: -5px;
  color: #ffffff;
  padding: 2px 4px;
  background-color: #ef6262;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.wrapper .topbar #topbar-icons .topbar-search {
  padding: 0;
  position: relative;
  display: inline-block;
  top: -4px;
}
.wrapper .topbar #topbar-icons .topbar-search input {
  display: inline-block;
  border: 0 none;
  font-size: 14px;
  background: transparent;
  border-bottom: 2px solid #ffffff;
  outline: 0 none;
  color: #ffffff;
  width: 100px;
  padding: 1px 20px 1px 1px;
  margin: 0px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.wrapper .topbar #topbar-icons .topbar-search input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wrapper .topbar #topbar-icons .topbar-search input:-moz-placeholder {
  color: #ffffff;
  opacity: 0.7;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wrapper .topbar #topbar-icons .topbar-search input::-moz-placeholder {
  color: #ffffff;
  opacity: 0.7;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wrapper .topbar #topbar-icons .topbar-search input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.7;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wrapper .topbar #topbar-icons .topbar-search .topbar-search-icon {
  font-size: 16px;
  position: absolute;
  top: -2px;
  right: 0px;
}
.wrapper .topbar #topbar-icons .topbar-search:hover input {
  border-bottom-color: #77c7ff;
}
.wrapper .topbar #topbar-icons .topbar-search:hover input::-webkit-input-placeholder {
  opacity: 1;
}
.wrapper .topbar #topbar-icons .topbar-search:hover input:-moz-placeholder {
  opacity: 1;
}
.wrapper .topbar #topbar-icons .topbar-search:hover input::-moz-placeholder {
  opacity: 1;
}
.wrapper .topbar #topbar-icons .topbar-search:hover input:-ms-input-placeholder {
  opacity: 1;
}
.wrapper .topbar #topbar-icons .topbar-search:hover .topbar-search-icon {
  color: #77c7ff;
}
.wrapper .topbar #omega-menu-button {
  display: inline-block;
  font-size: 28px;
  float: left;
  text-decoration: none;
  color: #ffffff;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.wrapper .topbar #omega-menu-button:hover {
  color: #77c7ff;
}
.wrapper .topbar #omega-menu-button span {
  font-size: 28px;
}
.wrapper .topbar #options-menu-button {
  display: none;
  font-size: 28px;
  float: right;
  text-decoration: none;
  color: #ffffff;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.wrapper .topbar #options-menu-button:hover {
  color: #77c7ff;
}
.wrapper .topbar #options-menu-button span {
  font-size: 28px;
}
.wrapper .sidebar {
  position: fixed;
  width: 250px;
  height: 100%;
  z-index: 102;
  overflow: auto;
  -moz-transition: margin-left 0.3s;
  -o-transition: margin-left 0.3s;
  -webkit-transition: margin-left 0.3s;
  transition: margin-left 0.3s;
  background: #4e5159;
  /* Old browsers */
  background: -moz-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4e5159), color-stop(100%, #1f2023));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #4e5159 0%, #1f2023 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #4e5159 0%, #1f2023 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
  /* IE6-9 */
}
.wrapper .sidebar .logo {
  text-align: center;
  height: 50px;
  box-sizing: border-box;
  padding-top: 0.7em;
}
.wrapper .sidebar .profile {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
}
.wrapper .sidebar .profile img {
  display: block;
  width: 56px;
  margin: 0 auto;
}
.wrapper .sidebar .profile > a {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 0;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.wrapper .sidebar .profile > a .username {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: top;
}
.wrapper .sidebar .profile > a .username:before {
  content: '';
  display: block;
}
.wrapper .sidebar .profile > a i {
  display: inline-block;
  font-size: 16px;
}
.wrapper .sidebar .profile > a:hover {
  color: #2399e5;
}
.wrapper .sidebar .profile > ul {
  background-color: #2e3035;
  text-align: left;
  overflow: hidden;
}
.wrapper .sidebar .profile > ul li a {
  border: 0 none;
}
.wrapper .sidebar .profile > ul li:last-child > a {
  border: 0 none;
}
.wrapper .sidebar .sidebar-scroll-content {
  display: block;
  height: 100%;
  position: relative;
}
.wrapper .sidebar .sidebar-scroll-content .menu > ul {
  padding-bottom: 80px;
}
.wrapper .sidebar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.wrapper .sidebar ul li > a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  padding: 15px;
  outline: none;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: block;
  box-sizing: border-box;
  border-top: 1px solid #4e5159;
  -moz-transition: padding-left 0.3s;
  -o-transition: padding-left 0.3s;
  -webkit-transition: padding-left 0.3s;
  transition: padding-left 0.3s;
}
.wrapper .sidebar ul li > a span {
  margin-left: 0.3em;
}
.wrapper .sidebar ul li > a .menu-badge {
  position: absolute;
  right: 15px;
  top: 14px;
  color: #ffffff;
  padding: 2px 6px;
  background-color: #007be5;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.wrapper .sidebar ul li > a .layout-submenu-toggler {
  float: right;
  font-size: 16px;
  transition: transform 0.3s;
}
.wrapper .sidebar ul li > a:hover {
  padding-left: 20px;
  color: #2399e5;
}
.wrapper .sidebar ul li > a:hover .menu-badge {
  color: #ffffff;
}
.wrapper .sidebar ul li.active-menuitem > a {
  border-bottom: 0 none;
  background-color: #2e3035;
  color: #2399e5;
}
.wrapper .sidebar ul li.active-menuitem > a .layout-submenu-toggler {
  transform: rotate(180deg);
  transition: transform 0.3s;
  font-size: 16px;
}
.wrapper .sidebar ul li.active-menuitem > ul {
  background-color: #2e3035;
}
.wrapper .sidebar ul li > ul {
  overflow: hidden;
  padding-left: 20px;
}
.wrapper .sidebar ul li > ul li a {
  padding: 10px 15px;
  font-size: 13px;
  border-top: 0 none;
}
.wrapper .sidebar ul li > ul li:last-child > a {
  border-bottom: 0 none;
}
.wrapper .sidebar ul li:last-child > a {
  border-bottom: 1px solid #4e5159;
}
.wrapper .sidebar ul li.red-badge > a .menuitem-badge {
  background-color: #ef6262;
  color: #a83d3b;
}
.wrapper .sidebar ul li.green-badge > a .menuitem-badge {
  background-color: #20d077;
  color: #038d4a;
}
.wrapper .sidebar ul li.yellow-badge > a .menuitem-badge {
  background-color: #f9c85;
  color: #b58c2b;
}
.wrapper .sidebar ul .menuitem-badge {
  position: absolute;
  right: 32px;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  text-align: center;
  background-color: #007be5;
  color: #00448f;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.wrapper .main {
  -moz-transition: margin-left 0.3s;
  -o-transition: margin-left 0.3s;
  -webkit-transition: margin-left 0.3s;
  transition: margin-left 0.3s;
  margin-left: 250px;
  padding: 70px 2rem 2rem 2rem;
}
.wrapper .footer {
  -moz-transition: margin-left 0.3s;
  -o-transition: margin-left 0.3s;
  -webkit-transition: margin-left 0.3s;
  transition: margin-left 0.3s;
  margin-left: 250px;
  background-color: #ffffff;
  padding: 1em 2em;
}
.wrapper .footer img {
  vertical-align: middle;
}
.wrapper .footer .footer-text {
  vertical-align: middle;
}

/* Responsive */
@media (min-width: 1025px) {
  .wrapper.sidebar-inactive-l .topbar {
    left: 0;
  }
  .wrapper.sidebar-inactive-l .main {
    margin-left: 0;
  }
  .wrapper.sidebar-inactive-l .sidebar {
    margin-left: -250px;
  }
  .wrapper.sidebar-inactive-l .footer {
    margin-left: 0;
  }
}
@media (max-width: 1024px) {
  .wrapper .topbar {
    left: 0;
  }
  .wrapper .main {
    margin-left: 0;
  }
  .wrapper .sidebar {
    margin-left: -250px;
    margin-top: 50px;
    width: 250px;
  }
  .wrapper .footer {
    margin-left: 0;
  }
  .wrapper.sidebar-active-m .sidebar {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .wrapper .topbar {
    text-align: center;
  }
  .wrapper .topbar #options-menu-button {
    display: inline-block;
  }
  .wrapper .topbar #topbar-icons {
    display: none;
    position: absolute;
    right: 10px;
    top: 50px;
    padding-bottom: 5px;
    text-align: left;
    background: #4e5159;
    /* Old browsers */
    background: -moz-linear-gradient(top, #4e5159 0%, #1f2023 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4e5159), color-stop(100%, #1f2023));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #4e5159 0%, #1f2023 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #4e5159 0%, #1f2023 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #4e5159 0%, #1f2023 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #4e5159 0%, #1f2023 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#000000",GradientType=0 );
    /* IE6-9 */
    -moz-border-radius-bottomleft: 3px;
    -webkit-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }
  .wrapper .topbar #topbar-icons a {
    display: block;
    padding: 10px;
    margin-left: 0;
    -moz-transition: padding-left 0.3s;
    -o-transition: padding-left 0.3s;
    -webkit-transition: padding-left 0.3s;
    transition: padding-left 0.3s;
  }
  .wrapper .topbar #topbar-icons a:first-child {
    height: 18px;
  }
  .wrapper .topbar #topbar-icons a:hover {
    color: #007be5;
    padding-left: 15px;
  }
  .wrapper .topbar #topbar-icons a span.topbar-item-text {
    display: inline;
    font-size: 16px;
  }
  .wrapper .topbar #topbar-icons a span.topbar-icon {
    font-size: 18px;
    float: left;
    margin: 0px 5px 0px 5px;
    width: 20px;
  }
  .wrapper .topbar #topbar-icons a span.topbar-badge {
    font-size: 12px;
    top: 10px;
    right: 10px;
  }
  .wrapper .topbar #topbar-icons.topbar-icons-visible {
    display: block;
  }
  .wrapper .topbar #topbar-icons .topbar-search {
    top: 0px;
    padding: 10px;
  }
  .wrapper .topbar #topbar-icons .topbar-search input {
    width: 100%;
    box-sizing: border-box;
    border-bottom-width: 1px;
    border-bottom-color: #cccccc;
  }
  .wrapper .topbar #topbar-icons .topbar-search .topbar-search-icon {
    top: 9px;
    right: 10px;
    color: #cccccc;
  }
}
/* Login */
.login-body {
  height: 100vh;
  font-family: 'latoregular', 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 100px 0 0 0;
  background-image: linear-gradient(to top, #6b77a1, #737ea5 3%, #9599b3 15%, #b1b0bf 28%, #c7c1c8 41%, #d6cdcf 57%, #dfd5d3 74%, #e2d7d4);
  background-image: -ms-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  background-image: -moz-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  background-image: -o-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #6b77a1),
    color-stop(3, #737ea5),
    color-stop(15, #9599b3),
    color-stop(28, #b1b0bf),
    color-stop(41, #c7c1c8),
    color-stop(57, #d6cdcf),
    color-stop(74, #dfd5d3),
    color-stop(100, #e2d7d4)
  );
  background-image: -webkit-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#E2D7D4", endColorstr="#6B77A1",GradientType=0 );
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#login-wrapper {
  width: 400px;
  margin: 0 auto;
  text-align: center;
}
#login-wrapper #login-container {
  margin-top: 20px;
  box-sizing: border-box;
  height: 300px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  padding: 2em;
  text-align: center;
  color: #4f575b;
}
#login-wrapper #login-container .title {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
#login-wrapper #login-container .remember-me {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#login-wrapper #login-container .p-checkbox {
  vertical-align: middle;
  font-size: 14px;
}
#login-wrapper #login-container a {
  color: #1f89ce;
  text-decoration: none;
  vertical-align: middle;
  font-size: 16px;
}
#login-wrapper #login-container input.p-inputtext {
  font-size: 1em;
  color: #4f575b;
  margin: 0;
  outline: medium none;
  padding: 0.25em;
  background: #ffffff;
  font-weight: normal;
  border: 1px solid #d6d6d6;
  border-radius: 3px;
}
#login-wrapper #login-container input.p-inputtext:hover {
  border-color: #c0c0c0;
}
#login-wrapper #login-container input.p-inputtext:focus {
  outline: 0 none;
  box-shadow: 0 0 5px #1f89ce;
}
#login-wrapper #login-container .p-col-12,
#login-wrapper #login-container .p-col-6 {
  padding: 0.8em;
}
#login-wrapper #login-container .p-button {
  border-radius: 3px;
  border: 1px solid #2399e5;
  color: #ffffff;
  background: #2399e5;
  font-size: 16px;
}
#login-wrapper #login-container .p-button:hover {
  background: #1f89ce;
}
#login-wrapper #login-container .p-button:focus {
  outline: 0 none;
  background: #186ba0;
}
#login-wrapper .login-footer {
  color: #ffffff;
  font-size: 14px;
  margin-top: 50px;
}

@media (max-width: 40em) {
  .login-body {
    padding-top: 50px;
  }

  #login-wrapper {
    width: 320px;
  }
  #login-wrapper #login-container {
    height: 350px;
  }
}
/* Exception */
.exception-body {
  height: 100vh;
  font-family: 'latoregular', 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 16px;
  margin: 0;
  background-image: linear-gradient(to top, #6b77a1, #737ea5 3%, #9599b3 15%, #b1b0bf 28%, #c7c1c8 41%, #d6cdcf 57%, #dfd5d3 74%, #e2d7d4);
  background-image: -ms-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  background-image: -moz-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  background-image: -o-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0, #6b77a1),
    color-stop(3, #737ea5),
    color-stop(15, #9599b3),
    color-stop(28, #b1b0bf),
    color-stop(41, #c7c1c8),
    color-stop(57, #d6cdcf),
    color-stop(74, #dfd5d3),
    color-stop(100, #e2d7d4)
  );
  background-image: -webkit-linear-gradient(
    bottom,
    #6b77a1 0%,
    #737ea5 3%,
    #9599b3 15%,
    #b1b0bf 28%,
    #c7c1c8 41%,
    #d6cdcf 57%,
    #dfd5d3 74%,
    #e2d7d4 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#E2D7D4", endColorstr="#6B77A1",GradientType=0 );
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.exception-wrapper {
  margin: 0 auto;
  width: 500px;
  height: 100%;
  background-color: #e82424;
  opacity: 0.6;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  text-align: center;
  padding-top: 100px;
  color: #ffffff;
  box-sizing: border-box;
}
.exception-wrapper.error {
  background-color: #e82424;
}
.exception-wrapper.error a:hover,
.exception-wrapper.error a.p-link:hover,
.exception-wrapper.error a.p-commandlink:hover {
  background-color: #ffffff;
  color: #e82424;
}
.exception-wrapper.notfound {
  background-color: #66719c;
}
.exception-wrapper.notfound a:hover,
.exception-wrapper.notfound a.p-link:hover,
.exception-wrapper.notfound a.p-commandlink:hover {
  background-color: #ffffff;
  color: #66719c;
}
.exception-wrapper.access {
  background-color: #e88524;
}
.exception-wrapper.access a:hover,
.exception-wrapper.access a.p-link:hover,
.exception-wrapper.access a.p-commandlink:hover {
  background-color: #ffffff;
  color: #e88524;
}
.exception-wrapper .message-title {
  font-size: 24px;
  font-weight: bold;
}
.exception-wrapper a,
.exception-wrapper a.p-link,
.exception-wrapper a.p-commandlink {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #ffffff;
  color: #ffffff;
  margin: 120px 0 100px 0;
  padding: 10px;
  font-size: 16px;
  -moz-transition: color 0.15s;
  -o-transition: color 0.15s;
  -webkit-transition: color 0.15s;
  transition: color 0.15s;
}
.exception-wrapper a span,
.exception-wrapper a.p-link span,
.exception-wrapper a.p-commandlink span {
  margin-left: 0.5em;
}
.exception-wrapper .footer {
  color: #ffffff;
  font-size: 14px;
  margin-top: 50px;
}

@media (max-width: 40em) {
  .exception-wrapper {
    width: 100%;
  }
}
/* Utils */
.clearfix:after {
  content: ' ';
  display: block;
  clear: both;
}

.card {
  background-color: #ffffff;
  padding: 1em;
  margin-bottom: 2rem;
}
.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: #6c757d;
  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;
}

/* Dashboard */
.dashboard .card {
  margin-top: 0px;
}
.dashboard .summary {
  height: 75px;
  position: relative;
}
.dashboard .summary .title {
  font-size: 20px;
}
.dashboard .summary .detail {
  color: #a4a4a4;
  display: block;
  margin-top: 10px;
}
.dashboard .summary .count {
  color: #ffffff;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  padding: 5px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.dashboard .summary .count.visitors {
  background-color: #20d077;
}
.dashboard .summary .count.purchases {
  background-color: #f9c851;
}
.dashboard .summary .count.revenue {
  background-color: #007be5;
}
.dashboard .task-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dashboard .task-list li {
  padding: 8px 4px;
  border-bottom: 1px solid #e3e3e3;
}
.dashboard .task-list .p-checkbox {
  vertical-align: middle;
  margin-right: 5px;
}
.dashboard .task-list .task-name {
  vertical-align: middle;
}
.dashboard .task-list .p-button {
  width: 50px;
  float: right;
  padding: 2px 0;
}
.dashboard .task-list .p-button .p-button-text {
  padding: 0.1em;
}
.dashboard .highlight-box {
  height: 100px;
}
.dashboard .highlight-box .initials {
  float: left;
  width: 50%;
  box-sizing: border-box;
  height: 100%;
  font-size: 54px;
  padding-top: 20px;
  text-align: center;
}
.dashboard .highlight-box .card {
  color: #a4a4a4;
  float: left;
  width: 50%;
  box-sizing: border-box;
  height: 100%;
}
.dashboard .highlight-box .card .count {
  font-size: 36px;
  display: block;
  margin-top: 15px;
}
.dashboard .highlight-box .card .highlight-box-icon {
  margin-right: 0.25em;
}
.dashboard .activity-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dashboard .activity-list li {
  border-bottom: 1px solid #e3e3e3;
  padding: 16px 8px;
}
.dashboard .activity-list li .count {
  font-size: 20px;
  color: #ffffff;
  background-color: #007be5;
  font-weight: 700;
  padding: 0.25em 0.5em;
  display: inline-block;
  border-radius: 4px;
}
.dashboard .activity-list li .p-progressbar {
  height: 0.5em;
}
.dashboard .contacts {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.dashboard .contacts li {
  border-bottom: 1px solid #e3e3e3;
}
.dashboard .contacts li a {
  padding: 9px;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  display: block;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-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;
}
.dashboard .contacts li a .name {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
}
.dashboard .contacts li a .email {
  position: absolute;
  right: 10px;
  top: 30px;
  font-size: 14px;
  color: #a4a4a4;
}
.dashboard .contacts li a:hover {
  cursor: pointer;
  background-color: #eeeeee;
}
.dashboard .contacts li:last-child {
  border: 0;
}

/* Landing */
.landing-body {
  font-family: 'latoregular', 'Trebuchet MS', Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
  margin: 0;
  padding: 0;
}

.landing-wrapper .p-button {
  border: 1px solid #2399e5;
  color: #ffffff;
  background: #2399e5;
}
.landing-wrapper .p-button:hover {
  background: #1f89ce;
}
.landing-wrapper #menu-button {
  display: none;
  font-size: 28px;
  float: right;
  text-decoration: none;
  color: #ffffff;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  margin-top: -5px;
}
.landing-wrapper #menu-button:hover {
  color: #77c7ff;
}
.landing-wrapper .landing-header {
  height: 80px;
  background-color: #0388e5;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 101;
}
.landing-wrapper .landing-header .landing-header-content {
  width: 960px;
  margin: 0 auto;
  padding-top: 30px;
  box-sizing: border-box;
}
.landing-wrapper .landing-header .landing-header-content img {
  display: inline-block;
  margin-top: -6px;
}
.landing-wrapper .landing-header .landing-header-content ul {
  list-style-type: none;
  float: right;
  margin: 2px 0 0 0;
  padding: 0;
}
.landing-wrapper .landing-header .landing-header-content ul li {
  float: left;
}
.landing-wrapper .landing-header .landing-header-content ul li a {
  text-decoration: none;
  padding: 8px 14px;
  color: #ffffff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.landing-wrapper .landing-header .landing-header-content ul li a:hover {
  background-color: #ffffff;
  color: #007be5;
}
.landing-wrapper #introduction {
  padding-top: 80px;
  height: 623px;
  background-image: url('../images/landing/section1_bg.jpg');
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.landing-wrapper #introduction .introduction-content {
  width: 960px;
  margin: 0 auto;
  color: #ffffff;
  position: relative;
}
.landing-wrapper #introduction .introduction-content .title {
  font-size: 64px;
  position: absolute;
  top: 200px;
}
.landing-wrapper #introduction .introduction-content .subtitle {
  font-size: 24px;
  position: absolute;
  top: 275px;
}
.landing-wrapper #introduction .introduction-content img {
  position: absolute;
  right: 0px;
  top: 125px;
}
.landing-wrapper #introduction .introduction-content .p-button {
  position: absolute;
  top: 350px;
}
.landing-wrapper #introduction .introduction-content .p-button .p-button-text {
  padding: 1em 5em;
}
.landing-wrapper #features {
  background-color: #ffffff;
  padding: 100px 0;
}
.landing-wrapper #features .features-content {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
.landing-wrapper #features .features-content p {
  color: #a4a4a4;
}
.landing-wrapper #features .features-content > p {
  font-size: 20px;
}
.landing-wrapper #features .features-content .feature-title {
  font-size: 32px;
}
.landing-wrapper #features .features-content .p-grid {
  text-align: left;
}
.landing-wrapper #features .features-content .p-grid > div {
  margin-top: 50px;
}
.landing-wrapper #features .features-content .feature-icon {
  vertical-align: top;
}
.landing-wrapper #features .features-content .feature-text {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  box-sizing: border-box;
  padding-left: 10px;
}
.landing-wrapper #features .features-content .feature-text span {
  font-size: 18px;
}
.landing-wrapper #features .features-content .feature-text p {
  margin: 5px 0 0 0;
}
.landing-wrapper #mobile {
  background-color: #bcc7cf;
  height: 570px;
  overflow: hidden;
}
.landing-wrapper #mobile .mobile-content {
  width: 960px;
  margin: 0 auto;
  position: relative;
}
.landing-wrapper #mobile .mobile-content .title {
  font-size: 32px;
  position: absolute;
  top: 200px;
}
.landing-wrapper #mobile .mobile-content .subtitle {
  font-size: 18px;
  position: absolute;
  top: 250px;
  color: #7f7f7f;
}
.landing-wrapper #mobile .mobile-content img {
  position: absolute;
  right: 0px;
  top: 125px;
}
.landing-wrapper #mobile .mobile-content .p-button {
  position: absolute;
  top: 300px;
}
.landing-wrapper #mobile .mobile-content .p-button .p-button-text {
  padding: 1em 5em;
}
.landing-wrapper #pricing {
  background-color: #ffffff;
  padding: 100px 0;
}
.landing-wrapper #pricing .pricing-content {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
.landing-wrapper #pricing .pricing-content .p-grid {
  margin-top: 50px;
}
.landing-wrapper #pricing .pricing-content p {
  color: #a4a4a4;
}
.landing-wrapper #pricing .pricing-content > p {
  font-size: 20px;
}
.landing-wrapper #pricing .pricing-content .pricing-title {
  font-size: 32px;
}
.landing-wrapper #pricing .pricing-content .pricing-name {
  font-size: 24px;
}
.landing-wrapper #pricing .pricing-content .pricing-box {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 0;
  background-color: #e1e6e9;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.landing-wrapper #pricing .pricing-content .pricing-box .pricing-fee {
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-color: #589cf0;
  color: #ffffff;
  width: 100px;
  height: 100px;
  margin: 30px auto;
  font-size: 22px;
  line-height: 100px;
}
.landing-wrapper #pricing .pricing-content .pricing-box:hover {
  background-color: #006de5;
  color: #ffffff;
}
.landing-wrapper #pricing .pricing-content .pricing-box:hover p {
  color: #ffffff;
}
.landing-wrapper #pricing .pricing-content .pricing-box:hover .pricing-fee {
  background-color: #eaeeef;
  color: #589cf0;
}
.landing-wrapper #video {
  background-color: #dde2e5;
  padding: 100px 0;
}
.landing-wrapper #video .video-content {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
.landing-wrapper #video .video-content p {
  color: #a4a4a4;
}
.landing-wrapper #video .video-content > p {
  font-size: 20px;
}
.landing-wrapper #video .video-content .video-title {
  font-size: 32px;
}
.landing-wrapper #video .video-content .video-container {
  margin-top: 50px;
}
.landing-wrapper #video .video-content .video-container iframe {
  width: 580px;
  height: 330px;
}
.landing-wrapper .landing-footer {
  background-color: #000000;
}
.landing-wrapper .landing-footer .landing-footer-content {
  width: 960px;
  margin: 0 auto;
  color: #a4a4a4;
}
.landing-wrapper .landing-footer .landing-footer-content .footer-top {
  padding: 30px 0;
}
.landing-wrapper .landing-footer .landing-footer-content .footer-top ul {
  float: right;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.landing-wrapper .landing-footer .landing-footer-content .footer-top ul a {
  text-decoration: none;
  color: #a4a4a4;
  padding: 10px;
  display: inline-block;
  -moz-transition: color 0.3s;
  -o-transition: color 0.3s;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.landing-wrapper .landing-footer .landing-footer-content .footer-top ul a:hover {
  color: #ffffff;
}
.landing-wrapper .landing-footer .landing-footer-content .footer-top .footer-title {
  display: inline-block;
}
.landing-wrapper .landing-footer .landing-footer-content .footer-bottom {
  padding: 10px 0 30px 0;
  border-top: 1px solid #a4a4a4;
}

@media (max-width: 64em) {
  .landing-wrapper #menu-button {
    display: block;
  }
  .landing-wrapper .landing-header {
    height: 80px;
    background-color: #0388e5;
  }
  .landing-wrapper .landing-header .landing-header-content {
    width: 100%;
    padding: 30px 20px 0 20px;
  }
  .landing-wrapper .landing-header .landing-header-content ul {
    float: none;
    position: fixed;
    top: 80px;
    right: 0px;
    background-color: #3b3e47;
    display: none;
    margin: 0;
  }
  .landing-wrapper .landing-header .landing-header-content ul.overlay-menu {
    display: block;
    height: 100%;
    width: 200px;
  }
  .landing-wrapper .landing-header .landing-header-content ul li {
    float: none;
  }
  .landing-wrapper .landing-header .landing-header-content ul li a {
    display: block;
    font-size: 18px;
    padding-left: 15px;
    border-bottom: 1px solid #4e5159;
  }
  .landing-wrapper #introduction {
    height: 623px;
  }
  .landing-wrapper #introduction .introduction-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .landing-wrapper #introduction .introduction-content .title {
    padding: 30px 0 20px 0;
    font-size: 36px;
    position: static;
    display: block;
  }
  .landing-wrapper #introduction .introduction-content .subtitle {
    padding-bottom: 30px;
    font-size: 20px;
    position: static;
    display: block;
  }
  .landing-wrapper #introduction .introduction-content img {
    position: static;
    display: inline-block;
    padding-bottom: 30px;
  }
  .landing-wrapper #introduction .introduction-content .p-button {
    display: block;
    position: static;
    width: 250px;
    margin: 0 auto;
    padding: 1em 0;
  }
  .landing-wrapper #features {
    padding: 30px 0;
  }
  .landing-wrapper #features .features-content {
    width: 100%;
  }
  .landing-wrapper #features .features-content .p-grid {
    text-align: center;
  }
  .landing-wrapper #mobile {
    height: 700px;
  }
  .landing-wrapper #mobile .mobile-content {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .landing-wrapper #mobile .mobile-content .title {
    font-size: 32px;
    position: static;
    display: block;
    padding: 30px 0 20px 0;
  }
  .landing-wrapper #mobile .mobile-content .subtitle {
    font-size: 18px;
    position: static;
    display: block;
    padding-bottom: 30px;
  }
  .landing-wrapper #mobile .mobile-content img {
    position: absolute;
    top: 260px;
  }
  .landing-wrapper #mobile .mobile-content .p-button {
    position: static;
    display: block;
    width: 250px;
    margin: 0 auto;
    padding: 1em 0;
  }
  .landing-wrapper #pricing {
    padding: 30px 0;
  }
  .landing-wrapper #pricing .pricing-content {
    width: 100%;
  }
  .landing-wrapper #video {
    padding: 30px 0;
  }
  .landing-wrapper #video .video-content {
    width: 100%;
  }
  .landing-wrapper #video .video-content .video-container iframe {
    width: 350px;
    height: 220px;
  }
  .landing-wrapper .landing-footer {
    padding: 0px 20px;
  }
  .landing-wrapper .landing-footer .landing-footer-content {
    width: 100%;
  }
}
/*!
 * Quill Editor v1.0.0-beta.3
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}

.ql-clipboard {
  left: -100000px;
  position: absolute;
  top: 50%;
}

.ql-clipboard p {
  margin: 0;
  padding: 0;
}

.ql-editor {
  box-sizing: border-box;
  cursor: text;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
}

.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8;
}

.ql-editor ol {
  padding-left: 20px;
}

.ql-editor ul {
  padding-left: 8px;
  list-style: disc inside;
}

.ql-editor ol > li {
  list-style-type: none;
}

.ql-editor ol {
  list-style-type: none;
  position: relative;
}

.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8;
  counter-increment: list-num;
}

.ql-editor ol li:before {
  content: counter(list-num, decimal) '. ';
  margin-right: -16px;
  position: absolute;
  right: 100%;
  text-align: right;
}

.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}

.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
  margin-right: -56px;
}

.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8;
}

.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}

.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
  margin-right: -96px;
}

.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8;
}

.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}

.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
  margin-right: -136px;
}

.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8;
}

.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}

.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
  margin-right: -176px;
}

.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8;
}

.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}

.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
  margin-right: -216px;
}

.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8;
}

.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}

.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
  margin-right: -256px;
}

.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8;
}

.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}

.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
  margin-right: -296px;
}

.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8;
}

.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}

.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
  margin-right: -336px;
}

.ql-editor .ql-indent-1 {
  padding-left: 40px;
}

.ql-editor .ql-indent-2 {
  padding-left: 80px;
}

.ql-editor .ql-indent-3 {
  padding-left: 120px;
}

.ql-editor .ql-indent-4 {
  padding-left: 160px;
}

.ql-editor .ql-indent-5 {
  padding-left: 200px;
}

.ql-editor .ql-indent-6 {
  padding-left: 240px;
}

.ql-editor .ql-indent-7 {
  padding-left: 280px;
}

.ql-editor .ql-indent-8 {
  padding-left: 320px;
}

.ql-editor .ql-video {
  display: block;
}

.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}

.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}

.ql-editor .ql-bg-black {
  background-color: #000;
}

.ql-editor .ql-bg-red {
  background-color: #e60000;
}

.ql-editor .ql-bg-orange {
  background-color: #f90;
}

.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}

.ql-editor .ql-bg-green {
  background-color: #008a00;
}

.ql-editor .ql-bg-blue {
  background-color: #06c;
}

.ql-editor .ql-bg-purple {
  background-color: #93f;
}

.ql-editor .ql-color-white {
  color: #fff;
}

.ql-editor .ql-color-red {
  color: #e60000;
}

.ql-editor .ql-color-orange {
  color: #f90;
}

.ql-editor .ql-color-yellow {
  color: #ff0;
}

.ql-editor .ql-color-green {
  color: #008a00;
}

.ql-editor .ql-color-blue {
  color: #06c;
}

.ql-editor .ql-color-purple {
  color: #93f;
}

.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}

.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}

.ql-editor .ql-size-small {
  font-size: 10px;
}

.ql-editor .ql-size-large {
  font-size: 18px;
}

.ql-editor .ql-size-huge {
  font-size: 32px;
}

.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

.ql-editor .ql-align-center {
  text-align: center;
}

.ql-editor .ql-align-justify {
  text-align: justify;
}

.ql-editor .ql-align-right {
  text-align: right;
}

.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  pointer-events: none;
  position: absolute;
}

.ql-hidden {
  display: none;
}

.ql-tooltip {
  position: absolute;
}

.ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}

.ql-toolbar:before,
.ql-toolbar:after {
  content: ' ';
  display: table;
}

.ql-toolbar:after {
  clear: both;
}

.ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  outline: none;
  padding: 3px 5px;
  width: 24px;
}

.ql-toolbar button svg {
  height: 100%;
}

.ql-toolbar .ql-stroke {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ql-toolbar .ql-stroke-mitter {
  fill: none;
  stroke-mitterlimit: 10;
  stroke-width: 2;
}

.ql-toolbar .ql-empty {
  fill: none;
}

.ql-toolbar .ql-even {
  fill-rule: evenodd;
}

.ql-toolbar .ql-thin,
.ql-toolbar .ql-stroke.ql-thin {
  stroke-width: 1;
}

.ql-toolbar .ql-transparent {
  opacity: 0.4;
}

.ql-editor h1 {
  font-size: 2em;
}

.ql-editor h2 {
  font-size: 1.5em;
}

.ql-editor h3 {
  font-size: 1.17em;
}

.ql-editor h4 {
  font-size: 1em;
}

.ql-editor h5 {
  font-size: 0.83em;
}

.ql-editor h6 {
  font-size: 0.67em;
}

.ql-editor pre {
  white-space: pre-wrap;
}

.ql-editor a {
  text-decoration: underline;
}

.ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}

.ql-editor pre.hljs {
  overflow: visible;
}

.ql-editor code,
.ql-editor pre:not(.hljs) {
  background-color: #f0f0f0;
}

.ql-editor code,
.ql-editor pre {
  border-radius: 3px;
}

.ql-editor code {
  font-size: 85%;
  padding-bottom: 2px;
  padding-top: 2px;
}

.ql-editor code:before,
.ql-editor code:after {
  content: ' ';
  letter-spacing: -2px;
}

.ql-editor *:not(pre) + pre,
.ql-editor pre:first-of-type {
  margin-top: 5px;
  padding-top: 5px;
}

.ql-editor pre {
  margin-bottom: 5px;
  padding: 0px 10px 5px;
}

.ql-editor pre + pre {
  margin-top: -10px;
}

.ql-editor img {
  max-width: 100%;
}

.ql-snow .ql-image-tooltip {
  padding: 10px;
  text-align: center;
  width: 300px;
}

.ql-snow .ql-image-tooltip input[type='text'] {
  height: 30px;
  width: 100%;
}

.ql-snow .ql-image-tooltip a.ql-cancel,
.ql-snow .ql-image-tooltip a.ql-action {
  border: 1px solid #06c;
  display: inline-block;
  float: left;
  line-height: 18px;
  padding: 5px;
  width: 50%;
}

.ql-snow .ql-image-tooltip a.ql-cancel::before {
  color: #06c;
  content: 'Cancel';
}

.ql-snow .ql-image-tooltip a.ql-action {
  background-color: #06c;
}

.ql-snow .ql-image-tooltip a.ql-action::before {
  color: #fff;
  content: 'Insert';
}

.ql-snow .ql-image-tooltip .ql-preview {
  height: 200px;
  margin: 10px 0px;
  position: relative;
}

.ql-snow .ql-image-tooltip .ql-preview img {
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.ql-snow .ql-image-tooltip .ql-empty.ql-preview::before {
  border: 1px dashed #ccc;
  color: #ccc;
  content: 'Preview';
  display: block;
  line-height: 200px;
}

.ql-snow .ql-link-tooltip::before {
  content: 'Visit URL:';
  line-height: 26px;
  margin-right: 8px;
}

.ql-snow .ql-link-tooltip {
  margin-top: 10px;
  padding: 5px 12px;
  white-space: nowrap;
}

.ql-snow .ql-link-tooltip input[type='text'] {
  display: none;
  height: 26px;
  width: 170px;
}

.ql-snow .ql-link-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.ql-snow .ql-link-tooltip a.ql-action::before {
  color: #444;
  content: '-';
  line-height: 26px;
  margin-left: 8px;
}

.ql-snow .ql-link-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: 'Edit';
  margin-left: 8px;
  padding-right: 8px;
}

.ql-snow .ql-link-tooltip a.ql-remove::before {
  content: 'Remove';
  margin-left: 8px;
}

.ql-snow .ql-link-tooltip a {
  line-height: 26px;
}

.ql-snow .ql-link-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-link-tooltip.ql-editing a.ql-remove {
  display: none;
}

.ql-snow .ql-link-tooltip.ql-editing input[type='text'] {
  display: inline-block;
}

.ql-snow .ql-link-tooltip.ql-editing a.ql-action::after {
  border-right: 0px;
  content: 'Save';
  padding-right: 0px;
}

.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
  padding: 8px;
}

.ql-toolbar.ql-snow * {
  box-sizing: border-box;
}

.ql-toolbar.ql-snow .ql-formats {
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}

.ql-toolbar.ql-snow button:hover,
.ql-toolbar.ql-snow button.ql-active,
.ql-toolbar.ql-snow .ql-picker-label:hover,
.ql-toolbar.ql-snow .ql-picker-label.ql-active,
.ql-toolbar.ql-snow .ql-picker-item:hover,
.ql-toolbar.ql-snow .ql-picker-item.ql-selected {
  color: #06c;
}

.ql-toolbar.ql-snow button:hover .ql-fill,
.ql-toolbar.ql-snow button.ql-active .ql-fill,
.ql-toolbar.ql-snow .ql-picker-label:hover .ql-fill,
.ql-toolbar.ql-snow .ql-picker-label.ql-active .ql-fill,
.ql-toolbar.ql-snow .ql-picker-item:hover .ql-fill,
.ql-toolbar.ql-snow .ql-picker-item.ql-selected .ql-fill,
.ql-toolbar.ql-snow button:hover .ql-stroke.ql-fill,
.ql-toolbar.ql-snow button.ql-active .ql-stroke.ql-fill,
.ql-toolbar.ql-snow .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-toolbar.ql-snow .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-toolbar.ql-snow .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-toolbar.ql-snow .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}

.ql-toolbar.ql-snow button:hover .ql-stroke,
.ql-toolbar.ql-snow button.ql-active .ql-stroke,
.ql-toolbar.ql-snow .ql-picker-label:hover .ql-stroke,
.ql-toolbar.ql-snow .ql-picker-label.ql-active .ql-stroke,
.ql-toolbar.ql-snow .ql-picker-item:hover .ql-stroke,
.ql-toolbar.ql-snow .ql-picker-item.ql-selected .ql-stroke,
.ql-toolbar.ql-snow button:hover .ql-stroke-mitter,
.ql-toolbar.ql-snow button.ql-active .ql-stroke-mitter,
.ql-toolbar.ql-snow .ql-picker-label:hover .ql-stroke-mitter,
.ql-toolbar.ql-snow .ql-picker-label.ql-active .ql-stroke-mitter,
.ql-toolbar.ql-snow .ql-picker-item:hover .ql-stroke-mitter,
.ql-toolbar.ql-snow .ql-picker-item.ql-selected .ql-stroke-mitter {
  stroke: #06c;
}

.ql-toolbar.ql-snow .ql-stroke {
  stroke: #444;
}

.ql-toolbar.ql-snow .ql-stroke-mitter {
  stroke: #444;
}

.ql-toolbar.ql-snow .ql-fill,
.ql-toolbar.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}

.ql-toolbar.ql-snow .ql-direction svg:last-child {
  display: none;
}

.ql-toolbar.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}

.ql-toolbar.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}

.ql-toolbar.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}

.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}

.ql-toolbar.ql-snow .ql-picker-label svg {
  float: right;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.ql-toolbar.ql-snow .ql-picker-label::before {
  vertical-align: middle;
}

.ql-toolbar.ql-snow .ql-picker-options {
  background-color: #fff;
  border: 1px solid transparent;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}

.ql-toolbar.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
  color: #ccc;
  z-index: 2;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
  display: block;
  margin-top: -1px;
  z-index: 1;
}

.ql-toolbar.ql-snow .ql-color-picker,
.ql-toolbar.ql-snow .ql-icon-picker {
  width: 28px;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-label,
.ql-toolbar.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-toolbar.ql-snow .ql-icon-picker .ql-picker-label svg {
  margin-top: 0px;
}

.ql-toolbar.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0px;
}

.ql-toolbar.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  padding: 2px 4px;
}

.ql-toolbar.ql-snow .ql-color-picker.ql-expanded .ql-picker-options,
.ql-toolbar.ql-snow .ql-icon-picker.ql-expanded .ql-picker-options {
  margin-top: -6px;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-options {
  padding: 5px;
  width: 152px;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0px;
  width: 16px;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-primary-color {
  margin-bottom: toolbarPadding;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=''])::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=''])::before,
.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=''])::before {
  content: attr(data-label);
}

.ql-toolbar.ql-snow .ql-picker.ql-header {
  width: 98px;
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: 'Normal';
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='1']::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='1']::before {
  content: 'Heading 1';
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='2']::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='2']::before {
  content: 'Heading 2';
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='3']::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='3']::before {
  content: 'Heading 3';
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='4']::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='4']::before {
  content: 'Heading 4';
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='5']::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='5']::before {
  content: 'Heading 5';
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-label[data-value='6']::before,
.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='6']::before {
  content: 'Heading 6';
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='1']::before {
  font-size: 2em;
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='2']::before {
  font-size: 1.5em;
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='3']::before {
  font-size: 1.17em;
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='4']::before {
  font-size: 1em;
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='5']::before {
  font-size: 0.83em;
}

.ql-toolbar.ql-snow .ql-picker.ql-header .ql-picker-item[data-value='6']::before {
  font-size: 0.67em;
}

.ql-toolbar.ql-snow .ql-picker.ql-font {
  width: 108px;
}

.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: 'Sans Serif';
}

.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-label[data-value='serif']::before,
.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='serif']::before {
  content: 'Serif';
}

.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-label[data-value='monospace']::before,
.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='monospace']::before {
  content: 'Monospace';
}

.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='serif']::before {
  font-family: Georgia, Times New Roman, serif;
}

.ql-toolbar.ql-snow .ql-picker.ql-font .ql-picker-item[data-value='monospace']::before {
  font-family: Monaco, Courier New, monospace;
}

.ql-toolbar.ql-snow .ql-picker.ql-size {
  width: 98px;
}

.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normal';
}

.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='small']::before,
.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='small']::before {
  content: 'Small';
}

.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='large']::before,
.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='large']::before {
  content: 'Large';
}

.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-label[data-value='huge']::before,
.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='huge']::before {
  content: 'Huge';
}

.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='small']::before {
  font-size: 10px;
}

.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='large']::before {
  font-size: 18px;
}

.ql-toolbar.ql-snow .ql-picker.ql-size .ql-picker-item[data-value='huge']::before {
  font-size: 32px;
}

.ql-toolbar.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}

.ql-toolbar.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}

.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0px;
}

.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 5px #ddd;
  color: #444;
}

.ql-snow .ql-tooltip input[type='text'] {
  border: 1px solid #ccc;
  font-size: 13px;
  margin: 0px;
  padding: 3px 5px;
}

.ql-container.ql-snow {
  border: 1px solid #ccc;
}

.ql-container.ql-snow a {
  color: #06c;
}

.ql-container.ql-snow * {
  box-sizing: border-box;
}

.help-page p {
  margin: 0;
}
.help-page .help-search {
  background: url('../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: #495057;
  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: 75px;
  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 #e3e3e3;
}
.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 #e3e3e3;
}
.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;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5rem 0 1rem 0;
  font-family: inherit;
  font-weight: 400;
  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: 4px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90a4ae;
}

hr {
  border-top: solid #e3e3e3;
  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-summary {
  height: 75px;
  position: relative;
}
.widget-summary .title {
  font-size: 20px;
}
.widget-summary .detail {
  color: #a4a4a4;
  display: block;
  margin-top: 10px;
}
.widget-summary .count {
  color: #ffffff;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  padding: 5px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.widget-summary .count.visitors {
  background-color: #20d077;
}
.widget-summary .count.purchases {
  background-color: #f9c851;
}
.widget-summary .count.revenue {
  background-color: #007be5;
}

.widget-highlight-box {
  height: 100px;
}
.widget-highlight-box .initials {
  float: left;
  width: 50%;
  box-sizing: border-box;
  height: 100%;
  font-size: 54px;
  padding-top: 20px;
  text-align: center;
}
.widget-highlight-box .card {
  color: #a4a4a4;
  float: left;
  width: 50%;
  box-sizing: border-box;
  height: 100%;
}
.widget-highlight-box .card .count {
  font-size: 36px;
  display: block;
  margin-top: 15px;
}
.widget-highlight-box .card .highlight-box-icon {
  margin-right: 0.25em;
}

.widget-activity-list .activity-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.widget-activity-list .activity-list li {
  border-bottom: 1px solid #e3e3e3;
  padding: 16px 8px;
}
.widget-activity-list .activity-list li .count {
  font-size: 20px;
  color: #ffffff;
  background-color: #007be5;
  font-weight: 700;
  padding: 0.25em 0.5em;
  display: inline-block;
  border-radius: 4px;
}
.widget-activity-list .activity-list li .activity-progress {
  border-radius: 4px;
  height: 0.5rem;
  background: #e3e3e3;
}
.widget-activity-list .activity-list li .activity-progress > div {
  border-radius: 4px;
  height: 100%;
}
.widget-activity-list .activity-list li .activity-progress.activity-progress-1 > div {
  background: #007be5;
  width: 75%;
}
.widget-activity-list .activity-list li .activity-progress.activity-progress-2 > div {
  background: #f9c851;
  width: 60%;
}
.widget-activity-list .activity-list li .activity-progress.activity-progress-3 > div {
  background: #20d077;
  width: 80%;
}
.widget-activity-list .activity-list li .activity-progress.activity-progress-4 > div {
  background: #f9c851;
  width: 40%;
}
.widget-activity-list .activity-list li .activity-progress.activity-progress-5 > div {
  background: #007be5;
  width: 50%;
}

.widget-contacts .contacts {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.widget-contacts .contacts li {
  border-bottom: 1px solid #e3e3e3;
}
.widget-contacts .contacts li a {
  padding: 9px;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  display: block;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-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;
}
.widget-contacts .contacts li a .name {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
}
.widget-contacts .contacts li a .email {
  position: absolute;
  right: 10px;
  top: 30px;
  font-size: 14px;
  color: #a4a4a4;
}
.widget-contacts .contacts li a:hover {
  cursor: pointer;
  background-color: #eeeeee;
}
.widget-contacts .contacts li:last-child {
  border: 0;
}

.widget-pricing-box {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  padding: 10px 0;
  text-align: center;
  background-color: #e1e6e9;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.widget-pricing-box .pricing-name {
  font-size: 24px;
}
.widget-pricing-box .pricing-fee {
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background-color: #589cf0;
  color: #ffffff;
  width: 100px;
  height: 100px;
  margin: 30px auto;
  font-size: 22px;
  line-height: 100px;
}
.widget-pricing-box:hover {
  background-color: #006de5;
  color: #ffffff;
}
.widget-pricing-box:hover p {
  color: #ffffff;
}
.widget-pricing-box:hover .pricing-fee {
  background-color: #eaeeef;
  color: #589cf0;
}

.widget-image-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.widget-image-list li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #e3e3e3;
  padding: 1rem;
}
.widget-image-list li:first-child {
  border-top: 0 none;
  font-weight: 600;
  font-size: 1rem;
}
.widget-image-list li img {
  width: 64px;
  vertical-align: middle;
  margin-right: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.widget-image-list li .listitem-value {
  font-weight: 600;
}

.layout-config {
  position: fixed;
  top: 50px;
  padding: 0;
  right: 0;
  display: block;
  width: 16em;
  z-index: 998;
  height: calc(100% - 50px);
  transform: translate3d(16em, 0px, 0px);
  transition: transform 0.2s;
  backface-visibility: hidden;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.24);
  color: #495057;
  background-color: #ffffff;
}
.layout-config.layout-config-active {
  transform: translate3d(0px, 0px, 0px);
}
.layout-config.layout-config-active .layout-config-button i {
  transform: rotate(360deg);
}
.layout-config .layout-config-button {
  display: block;
  position: absolute;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: #ffffff;
  text-align: center;
  color: #495057;
  top: 230px;
  left: -52px;
  z-index: -1;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.24);
}
.layout-config .layout-config-button i {
  font-size: 32px;
  line-height: inherit;
  cursor: pointer;
  transform: rotate(0deg);
  transition: color 0.2s, transform 1s;
}
.layout-config .layout-config-close {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  right: 14px;
  top: 10px;
  z-index: 1;
  background-color: #e54a51;
  border-radius: 50%;
  transition: background-color 0.2s;
}
.layout-config .layout-config-close i {
  color: #ffffff;
  line-height: inherit;
  font-size: 12px;
}
.layout-config .layout-config-close:hover {
  background-color: #ea6e73;
}
.layout-config .layout-config-content {
  position: relative;
  height: 100%;
  padding: 1em;
  overflow: auto;
  padding-bottom: 3em;
}
.layout-config .layout-config-content .layout-themes {
  display: flex;
  flex-wrap: wrap;
}
.layout-config .layout-config-content .layout-themes > div {
  padding: 0.25rem;
}
.layout-config .layout-config-content .layout-themes a {
  border-radius: 4px;
  display: block;
  position: relative;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.layout-config .layout-config-content .layout-themes a i {
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  color: #ffffff;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
}
.layout-config .layout-config-content .layout-themes a img {
  width: 3rem;
  height: 3rem;
}
.layout-config .layout-config-content .layout-themes a:hover {
  transform: scale(1.1);
}
.layout-config .p-col {
  text-align: center;
}
.layout-config p {
  line-height: 1.5;
  margin-top: 0;
  color: #6c757d;
}

.blocked-scroll-config {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  .layout-config {
    transform: translate3d(100%, 0px, 0px);
  }
  .layout-config.layout-config-active {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-config .layout-config-close {
    right: 10px;
  }
}
body {
  /*Green Button*/
  /*Yellow Button*/
  /*Red Button*/
  /*Aqua Button*/
  /*Navy Button*/
  /*Black Button*/
  /*Grey Button*/
  /*Severity Buttons*/
}
body .ui-button.ui-state-default.green-button {
  background-color: #1f9e53;
  border-color: #107533;
}
body .ui-button.ui-state-default.green-button:enabled:hover {
  background-color: #2eb971;
}
body .ui-button.ui-state-default.green-button:enabled:focus {
  background-color: #34cd7e;
}
body .ui-button.ui-state-default.green-button:enabled:active {
  background-color: #178544;
}
body .ui-button.ui-state-default.yellow-button {
  background-color: #eed511;
  border-color: #cdb80d;
}
body .ui-button.ui-state-default.yellow-button:enabled:hover {
  background-color: #f8e653;
}
body .ui-button.ui-state-default.yellow-button:enabled:focus {
  background-color: #f9ea6c;
}
body .ui-button.ui-state-default.yellow-button:enabled:active {
  background-color: #d4b301;
}
body .ui-button.ui-state-default.red-button {
  background-color: #b8312e;
  border-color: #9c1627;
}
body .ui-button.ui-state-default.red-button:enabled:hover {
  background-color: #d2524f;
}
body .ui-button.ui-state-default.red-button:enabled:focus {
  background-color: #d76663;
}
body .ui-button.ui-state-default.red-button:enabled:active {
  background-color: #9c1627;
}
body .ui-button.ui-state-default.aqua-button {
  background-color: #0084b4;
  border-color: #087298;
}
body .ui-button.ui-state-default.aqua-button:enabled:hover {
  background-color: #03a8e4;
}
body .ui-button.ui-state-default.aqua-button:enabled:focus {
  background-color: #05bafc;
}
body .ui-button.ui-state-default.aqua-button:enabled:active {
  background-color: #087298;
}
body .ui-button.ui-state-default.navy-button {
  background-color: #1f3b59;
  border-color: #21374f;
}
body .ui-button.ui-state-default.navy-button:enabled:hover {
  background-color: #3c6592;
}
body .ui-button.ui-state-default.navy-button:enabled:focus {
  background-color: #4372a4;
}
body .ui-button.ui-state-default.navy-button:enabled:active {
  background-color: #21374f;
}
body .ui-button.ui-state-default.black-button {
  background-color: #353535;
  border-color: #212121;
}
body .ui-button.ui-state-default.black-button:enabled:hover {
  background-color: #4a4a4a;
}
body .ui-button.ui-state-default.black-button:enabled:focus {
  background-color: #575757;
}
body .ui-button.ui-state-default.black-button:enabled:active {
  background-color: #212121;
}
body .ui-button.ui-state-default.gray-button {
  background-color: #eceff1;
  border-color: #cccfd2;
}
body .ui-button.ui-state-default.gray-button.ui-button span.ui-button-text {
  color: #525252;
}
body .ui-button.ui-state-default.gray-button:enabled:hover {
  background-color: #f5fbff;
}
body .ui-button.ui-state-default.gray-button:enabled:focus {
  background-color: white;
}
body .ui-button.ui-state-default.gray-button:enabled:active {
  background-color: #cccfd2;
}
body .ui-button.ui-state-default.ui-button-secondary:enabled:focus,
body .ui-buttonset.ui-button-secondary > .ui-button.ui-state-default:enabled:focus {
  outline: 0 none;
}
body .ui-button.ui-state-default.ui-button-info,
body .ui-buttonset.ui-button-info > .ui-button.ui-state-default {
  background-color: #2c78c7;
  border-color: #1a51b0;
}
body .ui-button.ui-state-default.ui-button-info:enabled:hover,
body .ui-buttonset.ui-button-info > .ui-button.ui-state-default:enabled:hover {
  background-color: #409cdc;
  border-color: #1a51b0;
}
body .ui-button.ui-state-default.ui-button-info:enabled:focus,
body .ui-buttonset.ui-button-info > .ui-button.ui-state-default:enabled:focus {
  outline: 0 none;
  background-color: #56a7e0;
  border-color: #1a51b0;
}
body .ui-button.ui-state-default.ui-button-info:enabled:active,
body .ui-buttonset.ui-button-info > .ui-button.ui-state-default:enabled:active {
  outline: 0 none;
  background-color: #1a51b0;
  border-color: #1a51b0;
}
body .ui-button.ui-state-default.ui-button-success,
body .ui-buttonset.ui-button-success > .ui-button.ui-state-default {
  background-color: #1f9e53;
  border-color: #107533;
}
body .ui-button.ui-state-default.ui-button-success:enabled:hover,
body .ui-buttonset.ui-button-success > .ui-button.ui-state-default:enabled:hover {
  background-color: #2eb971;
  border-color: #107533;
}
body .ui-button.ui-state-default.ui-button-success:enabled:focus,
body .ui-buttonset.ui-button-success > .ui-button.ui-state-default:enabled:focus {
  outline: 0 none;
  background-color: #34cd7e;
  border-color: #107533;
}
body .ui-button.ui-state-default.ui-button-success:enabled:active,
body .ui-buttonset.ui-button-success > .ui-button.ui-state-default:enabled:active {
  outline: 0 none;
  background-color: #178544;
  border-color: #107533;
}
body .ui-button.ui-state-default.ui-button-warning,
body .ui-buttonset.ui-button-warning > .ui-button.ui-state-default {
  background-color: #eed511;
  border-color: #cdb80d;
}
body .ui-button.ui-state-default.ui-button-warning:enabled:hover,
body .ui-buttonset.ui-button-warning > .ui-button.ui-state-default:enabled:hover {
  background-color: #f8e653;
  border-color: #cdb80d;
}
body .ui-button.ui-state-default.ui-button-warning:enabled:focus,
body .ui-buttonset.ui-button-warning > .ui-button.ui-state-default:enabled:focus {
  outline: 0 none;
  background-color: #f9ea6c;
  border-color: #cdb80d;
}
body .ui-button.ui-state-default.ui-button-warning:enabled:active,
body .ui-buttonset.ui-button-warning > .ui-button.ui-state-default:enabled:active {
  outline: 0 none;
  background-color: #d4b301;
  border-color: #cdb80d;
}
body .ui-button.ui-state-default.ui-button-danger,
body .ui-buttonset.ui-button-danger > .ui-button.ui-state-default {
  background-color: #b8312e;
  border-color: #9c1627;
}
body .ui-button.ui-state-default.ui-button-danger:enabled:hover,
body .ui-buttonset.ui-button-danger > .ui-button.ui-state-default:enabled:hover {
  background-color: #d2524f;
  border-color: #9c1627;
}
body .ui-button.ui-state-default.ui-button-danger:enabled:focus,
body .ui-buttonset.ui-button-danger > .ui-button.ui-state-default:enabled:focus {
  outline: 0 none;
  background-color: #d76663;
  border-color: #9c1627;
}
body .ui-button.ui-state-default.ui-button-danger:enabled:active,
body .ui-buttonset.ui-button-danger > .ui-button.ui-state-default:enabled:active {
  outline: 0 none;
  background-color: #9c1627;
  border-color: #9c1627;
}
body .ui-datepicker {
  width: auto;
}
body .ui-calendar .ui-datepicker {
  min-width: 17em;
}
body .ui-splitbutton.ui-buttonset .ui-menu {
  width: 100%;
  min-width: 12.5em;
}
body .ui-megamenu .ui-megamenu-panel {
  background-color: #f6f7f9;
}
body .ui-fluid .ui-button-icon-only {
  width: auto;
}
body .ui-toolbar-separator {
  margin: 0 0.5em;
}
body .ui-virtualscroller .ui-virtualscroller-list li {
  border-bottom: 1px solid #d9d9d9;
}

/* Add your customizations of layout here */
/* Add your customizations of the theme here */
