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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

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

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

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

@-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);
  }
}
@keyframes fadeinmask {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

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

body {
  font-family: "Inter UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #252529;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #f4f4f4;
}

a {
  text-decoration: none;
  color: #1d1c1e;
}

.layout-main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
}
.layout-main .layout-content {
  flex: 1 1 auto;
}

.layout-ajax-loader-icon {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  font-size: 2rem;
  color: #86868d;
  z-index: 999;
}

.layout-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100%;
  animation-duration: 0.2s;
  animation-timing-function: cubic-bezier(0.05, 0.74, 0.2, 0.99);
  animation-fill-mode: forwards;
}

.layout-wrapper.layout-topbar-light .layout-topbar {
  background-color: #ffffff;
  border-bottom: 1px solid #d8d8dc;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-icon {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-icon:hover {
  background-color: #e7e7e7;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-search input {
  color: #65656a;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #65656a;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #65656a;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #65656a;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #65656a;
}
.layout-wrapper.layout-topbar-light .layout-topbar .layout-topbar-search i {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-light .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-light .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-light .layout-topbar .user-profile .layout-profile-icon {
  color: #252529;
}
.layout-wrapper.layout-topbar-light .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-light .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-light .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #252529;
}
.layout-wrapper.layout-topbar-dark .layout-topbar {
  background-color: #252529;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-icon:hover {
  background-color: #404040;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-search {
  background-color: #252529;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-search input {
  background-color: #252529;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .layout-topbar-search i {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-dark .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-dark .layout-topbar .user-profile .layout-profile-icon {
  color: #8b8b90;
}
.layout-wrapper.layout-topbar-dark .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-dark .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-dark .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-blue .layout-topbar {
  background-color: #0772B3;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-icon:hover {
  background-color: #054e7a;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-search {
  background-color: #0772B3;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-search input {
  background-color: #0772B3;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #E0FFFB;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #E0FFFB;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #E0FFFB;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #E0FFFB;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .layout-topbar-search i {
  color: #E0FFFB;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-blue .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-blue .layout-topbar .user-profile .layout-profile-icon {
  color: #E0FFFB;
}
.layout-wrapper.layout-topbar-blue .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-blue .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-blue .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-green .layout-topbar {
  background-color: #0F8C50;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-icon:hover {
  background-color: #0c6439;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-search {
  background-color: #0F8C50;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-search input {
  background-color: #0F8C50;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #E8FAF1;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #E8FAF1;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #E8FAF1;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #E8FAF1;
}
.layout-wrapper.layout-topbar-green .layout-topbar .layout-topbar-search i {
  color: #E8FAF1;
}
.layout-wrapper.layout-topbar-green .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-green .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-green .layout-topbar .user-profile .layout-profile-icon {
  color: #E8FAF1;
}
.layout-wrapper.layout-topbar-green .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-green .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-green .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-orange .layout-topbar {
  background-color: #C76D09;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-icon:hover {
  background-color: #8a4700;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-search {
  background-color: #C76D09;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-search input {
  background-color: #C76D09;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #FDF2E8;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #FDF2E8;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #FDF2E8;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #FDF2E8;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .layout-topbar-search i {
  color: #FDF2E8;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-orange .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-orange .layout-topbar .user-profile .layout-profile-icon {
  color: #FDF2E8;
}
.layout-wrapper.layout-topbar-orange .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-orange .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-orange .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar {
  background-color: #972BB1;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-icon:hover {
  background-color: #6f1285;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-search {
  background-color: #972BB1;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-search input {
  background-color: #972BB1;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #F5E5F9;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #F5E5F9;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #F5E5F9;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #F5E5F9;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .layout-topbar-search i {
  color: #F5E5F9;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-magenta .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-magenta .layout-topbar .user-profile .layout-profile-icon {
  color: #F5E5F9;
}
.layout-wrapper.layout-topbar-magenta .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-magenta .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-magenta .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar {
  background-color: #406E7E;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-icon:hover {
  background-color: #265361;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-search {
  background-color: #406E7E;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-search input {
  background-color: #406E7E;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #E2EEF3;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #E2EEF3;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #E2EEF3;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #E2EEF3;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .layout-topbar-search i {
  color: #E2EEF3;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-bluegrey .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-bluegrey .layout-topbar .user-profile .layout-profile-icon {
  color: #E2EEF3;
}
.layout-wrapper.layout-topbar-bluegrey .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-bluegrey .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-bluegrey .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar {
  background-color: #543CD9;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-icon:hover {
  background-color: #342396;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-search {
  background-color: #543CD9;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-search input {
  background-color: #543CD9;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #DFDAF8;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #DFDAF8;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #DFDAF8;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #DFDAF8;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .layout-topbar-search i {
  color: #DFDAF8;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-deeppurple .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-deeppurple .layout-topbar .user-profile .layout-profile-icon {
  color: #DFDAF8;
}
.layout-wrapper.layout-topbar-deeppurple .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-deeppurple .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-deeppurple .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-brown .layout-topbar {
  background-color: #794F36;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-icon:hover {
  background-color: #59331c;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-search {
  background-color: #794F36;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-search input {
  background-color: #794F36;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #F3E9E3;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #F3E9E3;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #F3E9E3;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #F3E9E3;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .layout-topbar-search i {
  color: #F3E9E3;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-brown .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-brown .layout-topbar .user-profile .layout-profile-icon {
  color: #F3E9E3;
}
.layout-wrapper.layout-topbar-brown .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-brown .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-brown .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-lime .layout-topbar {
  background-color: #849201;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-icon:hover {
  background-color: #596300;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-search {
  background-color: #849201;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-search input {
  background-color: #849201;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #F8FAE6;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #F8FAE6;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #F8FAE6;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #F8FAE6;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .layout-topbar-search i {
  color: #F8FAE6;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-lime .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-lime .layout-topbar .user-profile .layout-profile-icon {
  color: #F8FAE6;
}
.layout-wrapper.layout-topbar-lime .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-lime .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-lime .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-rose .layout-topbar {
  background-color: #8F3939;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-icon:hover {
  background-color: #671e1e;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-search {
  background-color: #8F3939;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-search input {
  background-color: #8F3939;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #F8DDDD;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #F8DDDD;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #F8DDDD;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #F8DDDD;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .layout-topbar-search i {
  color: #F8DDDD;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-rose .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-rose .layout-topbar .user-profile .layout-profile-icon {
  color: #F8DDDD;
}
.layout-wrapper.layout-topbar-rose .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-rose .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-rose .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar {
  background-color: #0C8990;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-icon:hover {
  background-color: #056166;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-search {
  background-color: #0C8990;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-search input {
  background-color: #0C8990;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #DCF7F8;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #DCF7F8;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #DCF7F8;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #DCF7F8;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .layout-topbar-search i {
  color: #DCF7F8;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-cyan .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-cyan .layout-topbar .user-profile .layout-profile-icon {
  color: #DCF7F8;
}
.layout-wrapper.layout-topbar-cyan .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-cyan .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-cyan .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-teal .layout-topbar {
  background-color: #337E59;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-icon:hover {
  background-color: #175738;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-search {
  background-color: #337E59;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-search input {
  background-color: #337E59;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #DDF7EB;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #DDF7EB;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #DDF7EB;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #DDF7EB;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .layout-topbar-search i {
  color: #DDF7EB;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-teal .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-teal .layout-topbar .user-profile .layout-profile-icon {
  color: #DDF7EB;
}
.layout-wrapper.layout-topbar-teal .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-teal .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-teal .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar {
  background-color: #D74A1D;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-icon:hover {
  background-color: #8d2404;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-search {
  background-color: #D74A1D;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-search input {
  background-color: #D74A1D;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #F8E2DA;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #F8E2DA;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #F8E2DA;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #F8E2DA;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .layout-topbar-search i {
  color: #F8E2DA;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-deeporange .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-deeporange .layout-topbar .user-profile .layout-profile-icon {
  color: #F8E2DA;
}
.layout-wrapper.layout-topbar-deeporange .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-deeporange .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-deeporange .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar {
  background-color: #3D53C9;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-icon:hover {
  background-color: #1a2b83;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-search {
  background-color: #3D53C9;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-search input {
  background-color: #3D53C9;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #DDE2FF;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #DDE2FF;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #DDE2FF;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #DDE2FF;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .layout-topbar-search i {
  color: #DDE2FF;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-indigo .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-indigo .layout-topbar .user-profile .layout-profile-icon {
  color: #DDE2FF;
}
.layout-wrapper.layout-topbar-indigo .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-indigo .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-indigo .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-pink .layout-topbar {
  background-color: #BF275B;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-icon:hover {
  background-color: #860933;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-search {
  background-color: #BF275B;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-search input {
  background-color: #BF275B;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #FFDAE6;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #FFDAE6;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #FFDAE6;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #FFDAE6;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .layout-topbar-search i {
  color: #FFDAE6;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-pink .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-pink .layout-topbar .user-profile .layout-profile-icon {
  color: #FFDAE6;
}
.layout-wrapper.layout-topbar-pink .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-pink .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-pink .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-purple .layout-topbar {
  background-color: #7F32DA;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-icon {
  color: #ffffff;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-icon:hover {
  background-color: #5511a4;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-search {
  background-color: #7F32DA;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-search input {
  background-color: #7F32DA;
  color: #ffffff;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-search input::-webkit-input-placeholder {
  color: #ECDCFF;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-search input:-moz-placeholder {
  color: #ECDCFF;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-search input::-moz-placeholder {
  color: #ECDCFF;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-search input:-ms-input-placeholder {
  color: #ECDCFF;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .layout-topbar-search i {
  color: #ECDCFF;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-purple .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-purple .layout-topbar .user-profile .layout-profile-icon {
  color: #ECDCFF;
}
.layout-wrapper.layout-topbar-purple .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-purple .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-purple .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #ffffff;
}

.layout-wrapper .layout-topbar {
  height: 70px;
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 12px 20px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
}
.layout-wrapper .layout-topbar:after {
  content: "";
  display: table;
  clear: both;
}
.layout-wrapper .layout-topbar .layout-menu-button {
  display: inline-block;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-wrapper .layout-topbar .layout-menu-button i {
  line-height: inherit;
  font-size: 30px;
}
.layout-wrapper .layout-topbar .layout-topbar-logo {
  display: inline-block;
  vertical-align: middle;
  margin-left: 1.5em;
}
.layout-wrapper .layout-topbar .layout-topbar-logo img {
  height: 24px;
}
.layout-wrapper .layout-topbar .layout-topbar-search {
  position: relative;
  vertical-align: middle;
  margin-left: 120px;
}
.layout-wrapper .layout-topbar .layout-topbar-search i {
  position: absolute;
  top: 0;
  left: 11px;
  font-size: 16px;
}
.layout-wrapper .layout-topbar .layout-topbar-search input {
  font-family: "Inter UI", sans-serif;
  font-size: 13px;
  width: 188px;
  padding: 6px 6px 6px 35px;
  border: 1px solid transparent;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: border-color 0.2s;
  -o-transition: border-color 0.2s;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.layout-wrapper .layout-topbar .layout-topbar-search input:focus {
  outline: none;
}
.layout-wrapper .layout-topbar .topbar-menu {
  float: right;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.layout-wrapper .layout-topbar .topbar-menu .user-profile {
  padding: 0 16px;
}
.layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-icon {
  display: inline-block;
  margin: 14px 0 0 8px;
  vertical-align: top;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-wrapper .layout-topbar .topbar-menu .user-profile a {
  height: 36px;
}
.layout-wrapper .layout-topbar .topbar-menu .user-profile a i {
  vertical-align: middle;
}
.layout-wrapper .layout-topbar .topbar-menu .user-profile a span {
  vertical-align: middle;
}
.layout-wrapper .layout-topbar .topbar-menu .user-profile ul {
  width: 250px;
}
.layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-name, .layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-role, .layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-icon {
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.layout-wrapper .layout-topbar .topbar-menu > li {
  float: right;
  position: relative;
}
.layout-wrapper .layout-topbar .topbar-menu > li > a {
  position: relative;
  display: block;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-wrapper .layout-topbar .topbar-menu > li > a .topbar-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 1.5em;
  vertical-align: middle;
}
.layout-wrapper .layout-topbar .topbar-menu > li > a .layout-profile-userinfo {
  text-align: left;
  display: inline-block;
  margin: 6px 0 0 8px;
  vertical-align: top;
}
.layout-wrapper .layout-topbar .topbar-menu > li > a .layout-profile-userinfo .layout-profile-name {
  font-size: 14px;
  display: block;
}
.layout-wrapper .layout-topbar .topbar-menu > li > a .layout-profile-userinfo .layout-profile-role {
  font-size: 12px;
  margin-top: 2px;
  display: block;
}
.layout-wrapper .layout-topbar .topbar-menu > li > a > img {
  width: 36px;
  margin-top: 4px;
}
.layout-wrapper .layout-topbar .topbar-menu > li > ul {
  position: absolute;
  background: #ffffff;
  top: 58px;
  right: 0;
  display: none;
  width: 283px;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  animation-duration: 0.2s;
  list-style-type: none;
  margin: 0;
  padding: 0;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
}
.layout-wrapper .layout-topbar .topbar-menu > li > ul a {
  padding: 0.75em 1em;
  text-align: left;
  display: block;
  width: 100%;
  height: 54px;
  color: #666666;
  position: relative;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.layout-wrapper .layout-topbar .topbar-menu > li > ul a img {
  margin-top: 5px;
  width: 30px;
}
.layout-wrapper .layout-topbar .topbar-menu > li > ul a .topbar-menu-info {
  left: 50px;
  top: 12px;
  position: absolute;
}
.layout-wrapper .layout-topbar .topbar-menu > li > ul a .topbar-menu-info .topbar-menu-name {
  font-size: 12px;
  display: block;
  font-weight: 500;
  color: #666666;
}
.layout-wrapper .layout-topbar .topbar-menu > li > ul a .topbar-menu-info .topbar-menu-role {
  font-size: 12px;
  display: block;
  color: #65656a;
}
.layout-wrapper .layout-topbar .topbar-menu > li > ul a:hover {
  background-color: #eaeaea;
}
.layout-wrapper .layout-topbar .topbar-menu > li.active-topmenuitem > ul {
  display: block;
  z-index: 999;
}
.layout-wrapper .layout-topbar .topbar-menu > li.active-topmenuitem .layout-profile-icon {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.layout-wrapper .layout-topbar .layout-right-panel-button {
  float: right;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-wrapper .layout-topbar .layout-right-panel-button i {
  font-size: 1.5em;
  vertical-align: middle;
}

@media screen and (max-width: 991px) {
  .layout-wrapper .layout-topbar {
    height: 70px;
  }
  .layout-wrapper .layout-topbar .layout-topbar-search {
    background-color: #f4f4f4;
    position: absolute;
    left: 0;
    width: 100%;
    top: 70px;
    margin-left: 0;
    text-align: center;
    height: 40px;
    line-height: 40px;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  }
  .layout-wrapper .layout-topbar .layout-topbar-search i {
    left: initial;
    top: 11px;
  }
  .layout-wrapper .layout-topbar .layout-topbar-search input {
    background: transparent;
  }
  .layout-wrapper .layout-topbar .topbar-menu .user-profile {
    padding: 5px 0 0 0;
  }
  .layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-icon {
    display: none;
  }
  .layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-userinfo {
    display: none;
  }
  .layout-wrapper .layout-topbar .topbar-menu .user-profile ul {
    width: 211px;
  }
  .layout-wrapper .layout-topbar .topbar-menu .user-profile ul:before, .layout-wrapper .layout-topbar .topbar-menu .user-profile ul:after {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    left: 190px;
  }
  .layout-wrapper .layout-topbar .topbar-menu .user-profile ul:before {
    border-width: 10px;
    margin-left: -10px;
  }
  .layout-wrapper .layout-topbar .topbar-menu .user-profile ul:after {
    border-width: 9px;
    margin-left: -9px;
  }
  .layout-wrapper .layout-topbar .topbar-menu > li {
    margin-right: 0.5em;
  }
  .layout-wrapper .layout-topbar .topbar-menu > li a img {
    margin-top: 0;
  }
  .layout-wrapper .layout-topbar .topbar-menu > li > ul {
    width: 250px;
  }
}
.layout-wrapper .layout-menu-container {
  position: fixed;
  height: 100%;
  top: 70px;
  overflow: auto;
  z-index: 999;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-button {
  padding: 3em 0;
  display: block;
  text-align: center;
  cursor: pointer;
  user-select: none;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-button img {
  width: 96px;
  margin-bottom: 12px;
  display: inline-block;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-button .layout-profile-userinfo .layout-profile-name {
  display: inline-block;
  font-weight: 500;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-button .layout-profile-userinfo .layout-profile-role {
  display: block;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li:first-child {
  margin-top: 0.5em;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li:last-child {
  margin-bottom: 0.5em;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a {
  display: block;
  padding: 0.75em 1em;
  text-align: left;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -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;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a i {
  margin-right: 0.5em;
  vertical-align: middle;
}
.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a span {
  display: inline-block;
  vertical-align: middle;
}
.layout-wrapper .layout-menu-container .layout-menu {
  list-style-type: none;
  margin: 0.5em 0;
  padding: 0;
}
.layout-wrapper .layout-menu-container .layout-menu > li {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
.layout-wrapper .layout-menu-container .layout-menu > li.active-menuitem {
  border-left-color: #1d1c1e;
}
.layout-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > .layout-menuitem-root-text {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1.5rem 0 0.5rem 1.5rem;
  color: #6c7276;
}
.layout-wrapper .layout-menu-container .layout-menu li.layout-root-menuitem > a {
  display: none;
}
.layout-wrapper .layout-menu-container .layout-menu li a {
  display: block;
  padding: 0.75em 1em;
  position: relative;
  cursor: pointer;
  outline: none;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: color 0.2s, background-color 0.2s, border-left-color 0.2s;
  -o-transition: color 0.2s, background-color 0.2s, border-left-color 0.2s;
  -webkit-transition: color 0.2s, background-color 0.2s, border-left-color 0.2s;
  transition: color 0.2s, background-color 0.2s, border-left-color 0.2s;
}
.layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-text {
  display: inline-block;
  vertical-align: middle;
}
.layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-icon {
  margin-right: 0.5em;
  vertical-align: middle;
}
.layout-wrapper .layout-menu-container .layout-menu li a.rotated-icon .layout-menuitem-icon {
  transform: rotate(90deg);
}
.layout-wrapper .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  position: absolute;
  right: 5px;
  top: 50%;
  font-size: 16px;
  margin-top: -8px;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-wrapper .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.layout-wrapper .layout-menu-container .layout-menu li ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: none;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li a {
  padding-left: 2em;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li a {
  padding-left: 3em;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li a {
  padding-left: 4em;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li li a {
  padding-left: 5em;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li a {
  padding-left: 6em;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li li a {
  padding-left: 7em;
}
.layout-wrapper .layout-menu-container .layout-menu li .layout-menu-tooltip {
  display: none;
}
.layout-wrapper .layout-menu-container .menu-scroll-content {
  padding-bottom: 120px;
}
.layout-wrapper.layout-menu-light .layout-menu-container {
  background-color: #ffffff;
  border: 1px solid #ebebef;
  border-left: 0;
  border-top: 0;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile {
  border-bottom: 1px solid #ebebef;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-button .layout-profile-name {
  color: #666666;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-button .layout-profile-role {
  color: #666666;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-button:hover {
  background-color: #eaeaea;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-menu {
  background-color: #ffffff;
  border-left: 0;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-menu a span {
  color: #666666;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-menu a i {
  color: #65656a;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-menu a:hover {
  background-color: #eaeaea;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-menu a:hover span {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-profile .layout-profile-menu a:hover i {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu ul {
  background-color: #ffffff;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.layout-root-menuitem > .layout-menuitem-root-text {
  color: #666666;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a .layout-menuitem-text {
  color: #666666;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a .layout-menuitem-icon, .layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  color: #65656a;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover {
  background-color: #eaeaea;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover .layout-menuitem-text {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover .layout-menuitem-icon, .layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li a:hover .layout-submenu-toggler {
  color: #252529;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-text {
  color: #1d1c1e;
}
.layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-icon, .layout-wrapper.layout-menu-light .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  color: #1d1c1e;
}
.layout-wrapper.layout-menu-dark .layout-menu-container {
  background-color: #252529;
  border: 1px solid #252529;
  border-left: 0;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile {
  border-bottom: 1px solid #424247;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-button .layout-profile-name {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-button .layout-profile-role {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-button:hover {
  background-color: #2e2e33;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-menu {
  background-color: #252529;
  border-left: 0;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-menu a span {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-menu a i {
  color: #a6a6a6;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-menu a:hover {
  background-color: #2e2e33;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-menu a:hover span {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-profile .layout-profile-menu a:hover i {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu ul {
  background-color: #252529;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.layout-root-menuitem > .layout-menuitem-root-text {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a .layout-menuitem-text {
  color: #8b8b90;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a .layout-menuitem-icon, .layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  color: #a6a6a6;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover {
  background-color: #2e2e33;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover .layout-menuitem-text {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover .layout-menuitem-icon, .layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li a:hover .layout-submenu-toggler {
  color: #ebebef;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-text {
  color: #1d1c1e;
}
.layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-icon, .layout-wrapper.layout-menu-dark .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  color: #1d1c1e;
}
.layout-wrapper .layout-main {
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.layout-wrapper .layout-main .layout-content {
  padding: 16px;
  flex: 1 1 0;
}
.layout-wrapper.layout-static .layout-menu-container .layout-menu li ul, .layout-wrapper.layout-overlay .layout-menu-container .layout-menu li ul {
  display: block;
}
.layout-wrapper.layout-static .layout-menu-container .layout-menu li ul li ul, .layout-wrapper.layout-overlay .layout-menu-container .layout-menu li ul li ul {
  display: none;
}

@media screen and (min-width: 992px) {
  .layout-wrapper.layout-static .layout-menu-container {
    width: 288px;
    left: 0;
    -moz-transition: left 0.2s;
    -o-transition: left 0.2s;
    -webkit-transition: left 0.2s;
    transition: left 0.2s;
  }
  .layout-wrapper.layout-static .layout-main {
    margin-left: 288px;
    -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-static .layout-footer {
    -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-static.layout-static-inactive .layout-menu-container {
    left: -288px;
  }
  .layout-wrapper.layout-static.layout-static-inactive .layout-main {
    margin-left: 0;
  }
  .layout-wrapper.layout-static.layout-static-inactive-restore .layout-menu-container {
    -moz-transition: none;
    -o-transition: none;
    -webkit-transition: none;
    transition: none;
  }
  .layout-wrapper.layout-overlay .layout-menu-container {
    width: 288px;
    left: -288px;
    -webkit-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
    -moz-transition: left 0.2s;
    -o-transition: left 0.2s;
    -webkit-transition: left 0.2s;
    transition: left 0.2s;
  }
  .layout-wrapper.layout-overlay.layout-overlay-active .layout-menu-container {
    left: 0;
  }
  .layout-wrapper.layout-slim .layout-topbar .layout-topbar-logo {
    margin: 10px 0 0 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container {
    width: 57px;
    overflow: visible;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-button {
    text-align: center;
    padding: 11px 15px;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-button img {
    width: 25px;
    margin-bottom: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-button .layout-profile-userinfo {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-menu {
    position: absolute;
    overflow: auto;
    top: 0;
    left: 57px;
    min-width: 250px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-menu li {
    border-left: 0 none;
    border-right: 0 none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-menu li:first-child {
    margin: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-menu li:last-child {
    margin: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-menu li a {
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-profile.layout-profile-active .layout-profile-menu {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li {
    position: relative;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.layout-root-menuitem > a {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a {
    display: block;
    text-align: center;
    padding: 1em 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    font-size: 18px;
    margin-right: 0;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-menuitem-text {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a:hover + .layout-menu-tooltip {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-submenu-toggler {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > ul {
    position: absolute;
    display: none;
    top: 0;
    left: 52px;
    min-width: 200px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu > li.active-menuitem > ul {
    display: block;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip {
    display: none;
    padding: 0 5px;
    position: absolute;
    left: 57px;
    top: 10px;
    line-height: 1;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    padding: 6px 8px;
    font-weight: 700;
    font-size: 13px;
    background-color: #333333;
    color: #c8c8c8;
    min-width: 75px;
    white-space: nowrap;
    text-align: center;
  }
  .layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #333333;
  }
  .layout-wrapper.layout-slim .layout-main {
    margin-left: 57px;
  }
  .layout-wrapper.layout-horizontal .layout-main {
    padding-top: 0;
  }
  .layout-wrapper.layout-horizontal .layout-topbar {
    position: static;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo {
    margin: 10px 0 0 5em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container {
    width: 100%;
    overflow: visible;
    min-height: 45px;
    position: static;
    padding: 0.5em 5em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .menu-scroll-content {
    padding-bottom: 170px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu {
    margin: 0;
    padding: 0;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li {
    display: inline-block;
    width: auto;
    padding: 0;
    position: relative;
    border-left: 0 none;
    border-right: 0 none;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.layout-root-menuitem > a {
    display: block;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a {
    height: 2.5em;
    padding: 0.6em 1em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    color: #65656a;
    margin-right: 0.5em;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-submenu-toggler {
    position: static;
    margin-left: 0.25em;
    vertical-align: middle;
    margin-top: 0;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > ul {
    top: 2.5em;
    left: 0;
    display: none;
    min-width: 200px;
    position: absolute;
    margin: 0;
    overflow: auto;
    max-height: 450px;
    z-index: 1;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.active-menuitem > a {
    border-left-color: transparent;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.active-menuitem > ul {
    display: block;
    border-top: 4px solid #1d1c1e;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-menu-button, .layout-wrapper.layout-slim .layout-topbar .layout-menu-button {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-search, .layout-wrapper.layout-slim .layout-topbar .layout-topbar-search {
    top: 5px;
    margin-left: 40px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .menu-scroll-content, .layout-wrapper.layout-slim .layout-menu-container .menu-scroll-content {
    width: 100%;
    padding: 0;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li a {
    padding-left: 16px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li a {
    padding-left: 32px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li a {
    padding-left: 48px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li a {
    padding-left: 64px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li a {
    padding-left: 80px;
  }
  .layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li li a, .layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li li a {
    padding-left: 96px;
  }

  .layout-wrapper.layout-horizontal .layout-menu-container .menu-scroll-content, .layout-wrapper.layout-slim .layout-menu-container .menu-scroll-content {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .layout-wrapper .layout-topbar .layout-topbar-logo {
    margin-left: 1em;
  }
  .layout-wrapper .layout-topbar .layout-topbar-logo img {
    height: 16px;
  }
  .layout-wrapper .layout-menu-container {
    top: 110px;
    width: 288px;
    left: -288px;
    -webkit-box-shadow: 5px 0px 10px -5px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 5px 0px 10px -5px rgba(0, 0, 0, 0.16);
    box-shadow: 5px 0px 10px -5px rgba(0, 0, 0, 0.16);
    -moz-transition: left 0.2s;
    -o-transition: left 0.2s;
    -webkit-transition: left 0.2s;
    transition: left 0.2s;
  }
  .layout-wrapper .layout-main {
    margin-left: 0;
    padding-top: 110px;
    -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-mask {
    display: none;
    background-color: #252529;
    position: fixed;
    top: 101px;
    left: 0;
    z-index: 998;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    filter: alpha(opacity=80);
  }
  .layout-wrapper.layout-mobile-active .layout-menu-container {
    left: 0;
  }
  .layout-wrapper.layout-mobile-active .layout-mask {
    display: block;
  }

  body.blocked-scroll {
    overflow: hidden;
  }
}
.layout-right-panel {
  width: 288px;
  right: -288px;
  background-color: #ffffff;
  border-left: solid 1px #ebebef;
  position: fixed;
  z-index: 999;
  top: 0;
  height: 100%;
  padding: 0;
  margin: 0;
  -moz-transition: right 0.2s;
  -o-transition: right 0.2s;
  -webkit-transition: right 0.2s;
  transition: right 0.2s;
  -webkit-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
}
.layout-right-panel.layout-right-panel-active {
  right: 0;
  display: block;
}
.layout-right-panel .ui-progressbar {
  height: 8px;
}
.layout-right-panel .ui-tabs.ui-tabs-top {
  padding: 16px;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-panels {
  border: 0 none;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel {
  padding: 0;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header {
  border: 0 none;
  margin-right: 0;
  width: 50%;
  padding: 0;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header a {
  padding: 0.857em 1em;
  text-align: center;
  width: 100%;
  display: block;
  font-size: 13px;
  color: #65656a;
  background-color: #ffffff;
  border-bottom: 2px solid #d8d8dc;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-hover {
  border: 0 none;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-hover a {
  color: #252529;
  background-color: #ffffff;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-active {
  border: 0 none;
}
.layout-right-panel .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-active a {
  font-weight: 500;
  color: #252529;
  background-color: #ffffff;
  border-bottom: 2px solid #0f97c7;
}
.layout-right-panel .status-title {
  margin: 24px 0 12px 0;
}
.layout-right-panel .status-title span {
  color: #65656a;
  font-size: 13px;
  font-weight: 500;
}
.layout-right-panel .status-title i {
  float: right;
  font-size: 18px;
  color: #8b8b90;
}
.layout-right-panel .status-content {
  margin-top: 12px;
  color: #65656a;
}
.layout-right-panel .status-content .percentage-1 {
  color: #0fc752;
  font-size: 13px;
  font-weight: 500;
}
.layout-right-panel .status-content .percentage-2 {
  margin-right: 0.25em;
  color: #65656a;
  font-size: 13px;
  font-weight: 500;
}
.layout-right-panel .messages-title {
  margin: 24px 0 0 0;
  border-bottom: 1px solid #ebebef;
}
.layout-right-panel .messages-title span {
  color: #252529;
  font-size: 13px;
  font-weight: 500;
}
.layout-right-panel .messages-content .time {
  color: #8b8b90;
  font-size: 11px;
}
.layout-right-panel .messages-content .message-1 {
  color: #0fc752;
  font-size: 13px;
  font-weight: 500;
}
.layout-right-panel .messages-content .message-2 {
  color: #f5b064;
  font-size: 13px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .layout-right-panel {
    top: 110px;
  }
}
.layout-footer {
  padding: 1.5em 1.5em 0.5em 1.5em;
  background-color: #ffffff;
  border-top: 1px solid #ebebef;
  border-bottom: 1px solid #ebebef;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.layout-footer img {
  height: 21px;
}
.layout-footer p {
  margin: 2px 0 0 0;
}
.layout-footer .footer-icons {
  text-align: right;
}
.layout-footer .footer-icons a {
  color: #86868d;
  font-size: 20px;
  margin-right: 16px;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.layout-footer .footer-icons a .pi {
  font-size: 1.5rem;
}
.layout-footer .footer-icons a:hover {
  color: #252529;
}

/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.card, .double-tabmenu div.inner-tabmenu-wrapper div.content.outer-tabmenu-hidden, .double-tabmenu div.inner-tabmenu-wrapper.outer-tabmenu-displayed {
  background: #ffffff;
  padding: 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.card .card-header, .double-tabmenu div.inner-tabmenu-wrapper div.content.outer-tabmenu-hidden .card-header, .double-tabmenu div.inner-tabmenu-wrapper.outer-tabmenu-displayed .card-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.card:last-child, .double-tabmenu div.inner-tabmenu-wrapper div.content.outer-tabmenu-hidden:last-child, .double-tabmenu div.inner-tabmenu-wrapper.outer-tabmenu-displayed:last-child {
  margin-bottom: 0;
}
.card.card-w-title, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.content.outer-tabmenu-hidden, .double-tabmenu div.card-w-title.inner-tabmenu-wrapper.outer-tabmenu-displayed {
  padding-bottom: 1rem;
}
.card.no-gutter, .double-tabmenu div.inner-tabmenu-wrapper div.no-gutter.content.outer-tabmenu-hidden, .double-tabmenu div.no-gutter.inner-tabmenu-wrapper.outer-tabmenu-displayed {
  margin-bottom: 0;
}

.nopad {
  padding: 0;
}
.nopad .ui-panel-content {
  padding: 0;
}

.layout-dashboard .expenses .chart {
  width: 322px;
  height: 322px;
  line-height: 262px;
  font-size: 30px;
  margin: 0 auto;
  text-align: center;
  border: 30px solid #0f97c7;
  border-left-color: #1cb9d7;
  border-top-color: #0772b3;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.layout-dashboard .expenses .expenses-legend {
  margin: 2em;
}
.layout-dashboard .expenses .expenses-legend > div {
  text-align: center;
  padding: 1.5em 0;
}
.layout-dashboard .expenses .expenses-legend > div i {
  display: block;
  margin: 0 auto 0.5em 0;
  font-size: 16px;
}
.layout-dashboard .expenses .expenses-legend > div span {
  color: #86868d;
}
.layout-dashboard .expenses .expenses-legend > div .expenses-title {
  font-weight: 500;
}
.layout-dashboard .expenses .expenses-legend > div .expenses-price {
  margin: 0.5em 0;
  font-size: 14px;
}
.layout-dashboard .expenses .expenses-legend > div .legend-status {
  font-size: 12px;
}
.layout-dashboard .expenses .expenses-legend > div:nth-child(1) i {
  color: #0f97c7;
}
.layout-dashboard .expenses .expenses-legend > div:nth-child(2) i {
  color: #1cb9d7;
}
.layout-dashboard .expenses .expenses-legend > div:nth-child(3) i {
  color: #0772b3;
}
.layout-dashboard .expenses .expenses-footer {
  text-align: right;
}
.layout-dashboard .expenses .expenses-footer a {
  color: #1cb9d7;
  font-weight: 500;
}
.layout-dashboard .timeline {
  min-height: 494px;
}
.layout-dashboard .timeline ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.layout-dashboard .timeline ul .timeline-event-title {
  vertical-align: middle;
  font-weight: 500;
}
.layout-dashboard .timeline ul .timeline-event-time {
  background-color: #ebebef;
  padding: 0.25em;
  vertical-align: middle;
  margin-left: 1em;
  display: inline-block;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.layout-dashboard .timeline ul img {
  width: 100%;
}
.layout-dashboard .timeline ul li {
  border-bottom: 1px solid #ebebef;
  padding: 1em;
}
.layout-dashboard .timeline ul li i {
  font-size: 24px;
  margin-right: 0.25em;
  vertical-align: middle;
}
.layout-dashboard .timeline ul li:nth-child(1) i {
  color: #0f97c7;
}
.layout-dashboard .timeline ul li:nth-child(2) i {
  color: #1cb9d7;
}
.layout-dashboard .timeline ul li:nth-child(3) i {
  color: #f56f64;
}
.layout-dashboard .timeline ul li:nth-child(4) i {
  color: #9643F9;
}
.layout-dashboard .timeline ul li:last-child {
  border-bottom: 0 none;
}
.layout-dashboard .timeline ul p {
  color: #86868d;
  margin: 0.5em 0;
}
.layout-dashboard .tasks {
  min-height: 325px;
}
.layout-dashboard .tasks p {
  color: #86868d;
  margin: 1em 0;
}
.layout-dashboard .tasks p .task-highlight {
  color: #0f97c7;
}
.layout-dashboard .tasks ul {
  padding: 0;
  margin: 1em 0 0 0;
}
.layout-dashboard .tasks ul li {
  list-style: none;
  padding: 0.5em;
}
.layout-dashboard .tasks ul li:after {
  content: "";
  display: table;
  clear: both;
}
.layout-dashboard .tasks ul .ui-chkbox {
  vertical-align: middle;
  margin-right: 0.5em;
}
.layout-dashboard .tasks ul span {
  vertical-align: middle;
}
.layout-dashboard .tasks ul .task-badge-open {
  color: #0f97c7;
  float: right;
  margin-top: 0.25em;
  font-weight: 500;
}
.layout-dashboard .tasks ul .task-badge-closed {
  color: #f56f64;
  float: right;
  margin-top: 0.25em;
  font-weight: 500;
}
.layout-dashboard .tasks .ui-progressbar {
  height: 4px;
}
.layout-dashboard .global-sales .ui-datatable th {
  border: 0 none;
  text-align: left;
}
.layout-dashboard .global-sales .ui-datatable tr {
  border: 0 none;
}
.layout-dashboard .global-sales .ui-datatable tr td {
  border: 0 none;
}
.layout-dashboard .global-sales .ui-datatable tr.ui-state-highlight, .layout-dashboard .global-sales .ui-datatable tr.ui-state-hover {
  border: 0 none;
}
.layout-dashboard .global-sales .ui-datatable .ui-paginator {
  border: 0 none;
}
.layout-dashboard .weather {
  padding: 0;
  color: #86868d;
}
.layout-dashboard .weather img {
  width: 100%;
}
.layout-dashboard .weather .weather-content {
  padding: 0.5em 1em 1em 1em;
  position: relative;
}
.layout-dashboard .weather .weather-content a {
  position: absolute;
  right: 1em;
  top: 0.5em;
  color: #1cb9d7;
}
.layout-dashboard .weather .weather-city {
  font-size: 14px;
  margin-bottom: 0.5em;
}
.layout-dashboard .weather .weather-status {
  font-size: 24px;
  margin-bottom: 0.5em;
}

.login-body {
  padding: 0;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  height: 100vh;
  background: url("/javax.faces.resource/images/pages/login-bg.jpg.xhtml?ln=roma-layout") no-repeat;
  background-size: cover;
}
.login-body .login-panel {
  padding: 0 70px 20px 70px;
  height: 100%;
  width: 556px;
  position: absolute;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.login-body .login-panel .login-panel-content {
  margin-top: 33.3%;
}
.login-body .login-panel .logo-container {
  text-align: left;
}
.login-body .login-panel .logo-container img {
  display: block;
  margin-bottom: 25px;
}
.login-body .login-panel .username-container, .login-body .login-panel .password-container {
  text-align: left;
}
.login-body .login-panel h1 {
  display: inline-block;
  font-size: 16px;
  background-color: #feedbc;
  margin: 0 0 16px 0;
  color: #666666;
  padding: 4px 8px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.login-body .login-panel .guest-sign-in {
  color: #303030;
}
.login-body .login-panel label {
  display: block;
  color: #252529;
  margin: 0.5em 0 0.5em 0;
}
.login-body .login-panel input {
  background: #ffffff;
  border: 1px solid #65656a;
  color: #252529;
  font-size: 13px;
  padding: 0.429em;
  -moz-transition: border-color 0.2s, box-shadow 0.2s;
  -o-transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.login-body .login-panel .forgetpassword-container {
  padding-top: 1em;
  text-align: right;
}
.login-body .login-panel .rememberme-container {
  padding-top: 1em;
}
.login-body .login-panel .rememberme-container label {
  display: inline;
  vertical-align: middle;
}
.login-body .login-panel button {
  margin-top: 0.5em;
  display: block;
  min-width: 120px;
}
.login-body .login-panel a {
  color: #1cb9d7;
}
.login-body .login-panel .footer {
  color: #65656a;
  margin-top: 100%;
}

@media screen and (max-width: 40em) {
  .login-body .login-image {
    height: 100%;
    width: 100%;
    transform: scale(1.5);
    background-position-x: -290px;
    background-position-y: -160px;
  }
  .login-body .login-panel {
    left: 0;
    bottom: 0%;
    width: 100%;
    margin-bottom: 0px;
    margin-top: 0;
    margin-left: 0;
    padding: 0 27px 20px 28px;
    height: calc(100% - 128px);
  }
  .login-body .login-panel .login-panel-content {
    margin-top: 30px;
  }
  .login-body .login-panel input {
    width: 100%;
  }
  .login-body .login-panel .footer {
    font-size: 11px;
    padding-right: 11px;
    margin-top: 60px;
  }
}
.exception-body {
  padding: 0;
  height: 100vh;
}
.exception-body.error {
  background: url("/javax.faces.resource/images/pages/error-bg.jpg.xhtml?ln=roma-layout");
  background-repeat: no-repeat;
  background-size: cover;
}
.exception-body.error .exception-panel {
  border-left: #f56f64 solid 23px;
}
.exception-body.notfound {
  background: url("/javax.faces.resource/images/pages/notfound-bg.jpg.xhtml?ln=roma-layout");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.exception-body.notfound .exception-panel {
  border-left: #0f97c7 solid 23px;
}
.exception-body.accessdenied {
  background: url("/javax.faces.resource/images/pages/accessdenied-bg.jpg.xhtml?ln=roma-layout");
  background-repeat: no-repeat;
  background-size: cover;
}
.exception-body.accessdenied .exception-panel {
  border-left: #f5b064 solid 23px;
}
.exception-body .exception-panel {
  position: fixed;
  height: 100%;
  width: 410px;
  background-color: rgba(235, 235, 239, 0.9);
}
.exception-body .exception-panel .exception-content {
  position: absolute;
  width: 100%;
  margin-top: 150px;
  text-align: center;
}
.exception-body .exception-panel .exception-content p {
  margin: 8px 0 70px 0;
  color: #65656a;
}
.exception-body .exception-panel .exception-content .h1 {
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #252529;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  margin: 0;
}
.exception-body .exception-panel .exception-content img {
  height: 87px;
  margin-bottom: 44px;
}

@media screen and (max-width: 40em) {
  .exception-body .exception-panel {
    width: 100%;
  }
}
.landing-body {
  padding: 0;
}
.landing-body .landing-wrapper .landing-header {
  background: url("");
  background-size: cover;
  height: 472px;
  position: relative;
}
.landing-body .landing-wrapper .landing-header .landing-topbar {
  height: 70px;
  padding: 17px 145px 16px 145px;
  background-color: #ffffff;
  position: fixed;
  z-index: 100;
  width: 100%;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.24);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.24);
}
.landing-body .landing-wrapper .landing-header .landing-topbar:after {
  content: "";
  display: table;
  clear: both;
}
.landing-body .landing-wrapper .landing-header .landing-topbar span {
  color: #303030;
  font-size: 32px;
  font-weight: 600;
  vertical-align: middle;
}
.landing-body .landing-wrapper .landing-header .landing-topbar #landing-menu-button {
  display: none;
  color: #65656a;
  width: 32px;
  text-align: center;
}
.landing-body .landing-wrapper .landing-header .landing-topbar ul {
  list-style: none;
  float: right;
  margin: 8px 0 2px 0;
}
.landing-body .landing-wrapper .landing-header .landing-topbar ul li {
  display: inline-block;
}
.landing-body .landing-wrapper .landing-header .landing-topbar ul li a {
  color: #65656a;
  padding: 7px 14px 6px 14px;
  font-size: 14px;
  cursor: pointer;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.landing-body .landing-wrapper .landing-header .landing-topbar ul li a:hover {
  color: #252529;
  background-color: #ebebef;
}
.landing-body .landing-wrapper .landing-header .landing-header-content {
  padding: 198px 321px 0 321px;
  text-align: center;
}
.landing-body .landing-wrapper .landing-header .landing-header-content h1 {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}
.landing-body .landing-wrapper .landing-header .landing-header-content p {
  font-size: 21px;
  color: #ffffff;
  margin: 24px 0 32px 0;
}
.landing-body .landing-wrapper .landing-header .landing-header-content button {
  padding: 8px 58px;
}
.landing-body .landing-wrapper .landing-features {
  border-top: 8px solid #c7e7f2;
  padding: 115px 145px 81px 145px;
  background-color: #f4f4f9;
}
.landing-body .landing-wrapper .landing-features .features-topic-shadow {
  width: 140px;
  height: 55px;
  background-color: #c7e7f2;
  position: relative;
  top: -115px;
  left: -2px;
}
.landing-body .landing-wrapper .landing-features .features-topic-shadow .features-topic {
  width: 140px;
  height: 49px;
  background-color: #1cb9d7;
  color: #ffffff;
  padding: 12px;
  letter-spacing: 1px;
  font-size: 21px;
  font-weight: 600;
  position: absolute;
  top: -8px;
  left: 12px;
}
.landing-body .landing-wrapper .landing-features .feature-box {
  padding: 16px;
  padding-left: 0;
  margin-bottom: 40px;
  position: relative;
}
.landing-body .landing-wrapper .landing-features .feature-box:after {
  content: "";
  display: table;
  clear: both;
}
.landing-body .landing-wrapper .landing-features .feature-box img {
  width: 94px;
  margin-top: -16px;
  position: absolute;
}
.landing-body .landing-wrapper .landing-features .feature-box > div {
  margin-left: 110px;
}
.landing-body .landing-wrapper .landing-features .feature-box > div h3 {
  color: #252529;
  margin: 0 0 8px 0;
  font-size: 17px;
  font-weight: 500;
}
.landing-body .landing-wrapper .landing-features .feature-box > div p {
  color: #65656a;
  font-size: 14px;
  margin: 0;
}
.landing-body .landing-wrapper .landing-news {
  background: url("");
  background-size: cover;
  height: 236px;
  padding: 36px 450px 48px 145px;
  text-align: left;
}
.landing-body .landing-wrapper .landing-news h3 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}
.landing-body .landing-wrapper .landing-news p {
  font-size: 21px;
  color: #ffffff;
  margin: 12px 0;
  line-height: 1.48;
}
.landing-body .landing-wrapper .landing-news button {
  background-color: #ffffff;
  color: #0f97c7;
  padding: 8px 24px;
}
.landing-body .landing-wrapper .landing-pricing {
  background-color: #ffffff;
  padding: 133px 241px 72px 241px;
  border-top: 16px solid #84bfdd;
}
.landing-body .landing-wrapper .landing-pricing .pricing-topic-shadow {
  width: 117px;
  height: 46px;
  background-color: #84bfdd;
  position: relative;
  top: -133px;
  left: -99px;
}
.landing-body .landing-wrapper .landing-pricing .pricing-topic-shadow .pricing-topic {
  width: 117px;
  height: 49px;
  background-color: #0a80bb;
  color: #ffffff;
  padding: 12px;
  letter-spacing: 1px;
  font-size: 21px;
  font-weight: 600;
  position: absolute;
  top: -16px;
  left: 12px;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box {
  background-color: #ffffff;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border-top: 10px solid #1cb9d7;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-header {
  padding: 18px;
  text-align: center;
  border: 2px solid #ebebef;
  border-top: 0;
  border-bottom: 0;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-header h3 {
  font-size: 21px;
  font-weight: 500;
  color: #65656a;
  margin: 0 0 12px 0;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-header h2 {
  color: #1cb9d7;
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 6px 0;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-header p {
  font-size: 14px;
  font-weight: 500;
  color: #8b8b90;
  border-bottom: 2px solid #ebebef;
  padding: 0 0 18px 0;
  margin: 0;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-content {
  padding: 0 18px 24px 18px;
  position: relative;
  min-height: 168px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 2px solid #ebebef;
  border-top: 0;
  text-align: center;
  color: #8b8b90;
  font-size: 14px;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-content ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-content ul li {
  padding: 4px;
}
.landing-body .landing-wrapper .landing-pricing .pricing-box .pricing-box-content button {
  width: 105px;
  position: absolute;
  bottom: 24px;
  margin-left: -50px;
}
.landing-body .landing-wrapper .landing-multimedia {
  background-color: #ffffff;
  border-top: 16px solid #84bfdd;
  padding: 100px 143px;
  text-align: center;
}
.landing-body .landing-wrapper .landing-multimedia .multimedia-topic-shadow {
  width: 166px;
  height: 46px;
  background-color: #84bfdd;
  position: relative;
  top: -100px;
  left: 0px;
}
.landing-body .landing-wrapper .landing-multimedia .multimedia-topic-shadow .multimedia-topic {
  width: 166px;
  height: 49px;
  background-color: #0a80bb;
  color: #ffffff;
  padding: 12px;
  letter-spacing: 1px;
  font-size: 21px;
  font-weight: 600;
  position: absolute;
  top: -16px;
  left: 12px;
}
.landing-body .landing-wrapper .landing-multimedia h3 {
  font-size: 21px;
  color: #252529;
  font-weight: 500;
  margin: 16px 0 8px 0;
}
.landing-body .landing-wrapper .landing-multimedia p {
  font-size: 14px;
  color: #65656a;
  width: 506px;
  margin-left: auto;
  margin-right: auto;
}
.landing-body .landing-wrapper .landing-multimedia .video-container iframe {
  width: 506px;
  height: 292px;
}
.landing-body .landing-wrapper .landing-footer {
  background-color: #252529;
  padding: 37px 145px;
  color: #8b8b90;
}
.landing-body .landing-wrapper .landing-footer a {
  color: #b5b5b5;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.landing-body .landing-wrapper .landing-footer a:hover {
  color: #ffffff;
}
.landing-body .landing-wrapper .landing-footer img {
  height: 37px;
}
.landing-body .landing-wrapper .landing-footer h4 {
  margin: 0 0 11px 0;
  font-size: 16px;
  font-weight: bold;
}
.landing-body .landing-wrapper .landing-footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.landing-body .landing-wrapper .landing-footer ul li {
  padding: 4px 0;
}
.landing-body .landing-wrapper .landing-footer i {
  font-size: 24px;
  margin-right: 8px;
}

@media screen and (max-width: 64em) {
  .landing-body .landing-wrapper .landing-header {
    height: auto;
  }
  .landing-body .landing-wrapper .landing-header .landing-topbar {
    height: 70px;
    padding: 16px;
  }
  .landing-body .landing-wrapper .landing-header .landing-topbar #landing-menu-button {
    display: block;
    float: right;
  }
  .landing-body .landing-wrapper .landing-header .landing-topbar ul {
    display: none;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    position: fixed;
    margin: 0;
    padding: 16px 24px;
    top: 61px;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  }
  .landing-body .landing-wrapper .landing-header .landing-topbar ul li {
    display: block;
    padding: 8px 0;
    margin: 0;
    font-size: 16px;
  }
  .landing-body .landing-wrapper .landing-header .landing-topbar ul.landing-menu-active {
    display: block;
  }
  .landing-body .landing-wrapper .landing-header .landing-header-content {
    padding: 175px 22px 103px 14px;
    text-align: center;
  }
  .landing-body .landing-wrapper .landing-features {
    padding: 44px 14px 72px 14px;
  }
  .landing-body .landing-wrapper .landing-features .features-topic-shadow {
    top: -44px;
  }
  .landing-body .landing-wrapper .landing-news {
    padding: 32px 2px 48px 14px;
    background-position: center;
  }
  .landing-body .landing-wrapper .landing-news h3 {
    font-size: 21px;
  }
  .landing-body .landing-wrapper .landing-news p {
    font-size: 17px;
    line-height: 1.47;
  }
  .landing-body .landing-wrapper .landing-pricing {
    padding: 72px 51px;
  }
  .landing-body .landing-wrapper .landing-pricing .pricing-topic-shadow {
    top: -72px;
    left: -38px;
  }
  .landing-body .landing-wrapper .landing-pricing .pricing-box {
    margin-bottom: 12px;
  }
  .landing-body .landing-wrapper .landing-multimedia {
    padding: 41px 21px 72px 14px;
  }
  .landing-body .landing-wrapper .landing-multimedia .multimedia-topic-shadow {
    top: -41px;
  }
  .landing-body .landing-wrapper .landing-multimedia p {
    width: auto;
  }
  .landing-body .landing-wrapper .landing-multimedia .video-container iframe {
    width: auto;
    height: auto;
  }
  .landing-body .landing-wrapper .landing-footer {
    text-align: center;
    padding: 48px 0;
  }
  .landing-body .landing-wrapper .landing-footer h4 {
    margin-top: 12px;
  }
  .landing-body.landing-body-block-scroll {
    overflow: hidden;
  }
}
.overview-box {
  position: relative;
  padding: 0.5em 1em;
}
.overview-box .overview-box-title {
  font-size: 13px;
  margin-bottom: 1.2em;
  color: #252529;
}
.overview-box .overview-box-value {
  color: #252529;
  font-size: 21px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 0.25em;
}
.overview-box img {
  width: 100%;
}
.overview-box .overview-box-status {
  position: absolute;
  right: 1em;
  top: 0.5em;
  color: #0fc752;
  font-size: 14px;
  font-weight: 500;
}
.overview-box.bluebg {
  background-color: #1bb7ee;
}
.overview-box.bluebg .overview-box-title {
  color: #ffffff;
}
.overview-box.bluebg .overview-box-value {
  color: #ffffff;
}
.overview-box.bluebg .overview-box-status {
  color: #ffffff;
}
.overview-box.orangebg {
  background-color: #fa8966;
}
.overview-box.orangebg .overview-box-title {
  color: #ffffff;
}
.overview-box.orangebg .overview-box-value {
  color: #ffffff;
}
.overview-box.orangebg .overview-box-status {
  color: #ffffff;
}
.overview-box.purplebg {
  background-color: #a966fa;
}
.overview-box.purplebg .overview-box-title {
  color: #ffffff;
}
.overview-box.purplebg .overview-box-value {
  color: #ffffff;
}
.overview-box.purplebg .overview-box-status {
  color: #ffffff;
}
.overview-box.limebg {
  background-color: #c5da00;
}
.overview-box.limebg .overview-box-title {
  color: #ffffff;
}
.overview-box.limebg .overview-box-value {
  color: #ffffff;
}
.overview-box.limebg .overview-box-status {
  color: #ffffff;
}

.timeline {
  min-height: 495px;
}
.timeline ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.timeline ul .timeline-event-title {
  vertical-align: middle;
  font-weight: 500;
}
.timeline ul .timeline-event-time {
  background-color: #ebebef;
  padding: 0.25em;
  vertical-align: middle;
  margin-left: 1em;
  display: inline-block;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.timeline ul img {
  width: 100%;
}
.timeline ul li {
  border-bottom: 1px solid #ebebef;
  padding: 1em;
}
.timeline ul li i {
  font-size: 24px;
  margin-right: 0.25em;
  vertical-align: middle;
}
.timeline ul li:nth-child(1) i {
  color: #0f97c7;
}
.timeline ul li:nth-child(2) i {
  color: #1cb9d7;
}
.timeline ul li:nth-child(3) i {
  color: #f56f64;
}
.timeline ul li:nth-child(4) i {
  color: #9643F9;
}
.timeline ul li:last-child {
  border-bottom: 0 none;
}
.timeline ul p {
  color: #86868d;
  margin: 0.5em 0;
}

.live-support ul {
  padding: 12px;
  margin: 0;
  list-style-type: none;
}
.live-support ul li {
  padding: 12px;
}
.live-support ul li .p-col-fixed {
  width: 48px;
}
.live-support ul li img {
  width: 36px;
}
.live-support ul li .chat-message {
  position: relative;
  padding: 8px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.live-support ul li.message-from .chat-message {
  background-color: #ebebef;
}
.live-support ul li.message-from .chat-message:before {
  right: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  top: 16px;
}
.live-support ul li.message-from .chat-message:before {
  border-right-color: #ebebef;
  border-width: 10px;
  margin-top: -10px;
}
.live-support ul li.message-to .chat-message {
  background-color: #ffffff;
  border: 1px solid #ebebef;
}
.live-support ul li.message-to .chat-message:after {
  left: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  top: 18px;
  border-left-color: #ffffff;
  border-width: 9px;
  margin-top: -10px;
}
.live-support ul li.message-to .chat-message:before {
  left: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  top: 16px;
  border-left-color: #ebebef;
  border-width: 11px;
  margin-top: -10px;
}
.live-support .new-message {
  border: 1px solid #ebebef;
  border-right: 0 none;
}
.live-support .new-message input {
  border: 0 none;
  width: 100%;
  outline: 0 none;
  color: #86868d;
  font-family: "Inter UI", sans-serif;
}
.live-support .new-message .p-col-fixed {
  width: 100px;
}
.live-support .new-message .p-col-fixed button {
  width: 100%;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.resolution-center {
  min-height: 325px;
}
.resolution-center .ui-inputfield {
  display: block;
  margin-bottom: 2em;
}
.resolution-center .resolution-button-bar .ui-button {
  width: 48%;
}
.resolution-center .resolution-button-bar .ui-button:first-child {
  margin-right: 4%;
}

.team {
  min-height: 325px;
}
.team ul {
  padding: 0;
}
.team ul li {
  list-style: none;
  padding: 0.5em;
}
.team ul li:after {
  content: "";
  display: table;
  clear: both;
}
.team ul img {
  width: 36px;
  height: 36x;
  vertical-align: middle;
  display: inline-block;
}
.team ul .team-box {
  margin-left: 1em;
  display: inline-block;
  vertical-align: middle;
}
.team ul .team-box .team-member {
  display: block;
  font-weight: 500;
}
.team ul .team-box .team-member-account {
  color: #86868d;
}
.team ul a {
  float: right;
  color: #86868d;
  font-size: 18px;
  margin-left: 1em;
}
.team ul a i {
  font-size: 18px;
}

.user-card {
  padding: 0;
}
.user-card .user-card-header {
  height: 120px;
  overflow: hidden;
}
.user-card .user-card-header img {
  width: 100%;
  height: 100%;
}
.user-card .user-card-content img {
  width: 60px;
  height: 60px;
  margin: -30px 0 0 24px;
}
.user-card .user-card-content .ui-button {
  float: right;
  width: 36px;
  height: 36px;
  margin: -18px 24px 0 0;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.user-card .user-card-content .user-card-name {
  font-size: 13px;
  color: #ffffff;
  position: relative;
  top: -55px;
  margin-left: 100px;
  font-weight: 700;
  white-space: nowrap;
}
.user-card .user-card-content .user-detail {
  padding: 0.5em 1em;
}
.user-card .user-card-content .user-detail .user-detail-box {
  padding: 0.5em;
  position: relative;
  border: 1px solid #dadada;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.user-card .user-card-content .user-detail .user-detail-box .user-detail-box-detail {
  color: #86868d;
}
.user-card .user-card-content .user-detail .user-detail-box i {
  position: absolute;
  color: #8b8b90;
  top: 0.5em;
  right: 0.5em;
}
.user-card .user-card-content .user-detail .ui-progressbar {
  height: 4px;
  margin-top: 20px;
}

.layout-rtl.layout-wrapper .layout-topbar {
  direction: rtl;
  left: auto;
  right: 0;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-logo {
  margin-left: 0px;
  margin-right: 1.5em;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search {
  margin-left: 0;
  margin-right: 120px;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search i {
  left: auto;
  right: 11px;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search input {
  padding: 6px 35px 6px 6px;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu {
  float: left;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile .layout-profile-icon {
  margin: 14px 8px 0 0;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li {
  float: left;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > a .layout-profile-userinfo {
  text-align: right;
  margin: 6px 8px 0 0;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > ul {
  right: auto;
  left: 0;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > ul a {
  text-align: right;
}
.layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li > ul a .topbar-menu-info {
  left: auto;
  right: 50px;
}
.layout-rtl.layout-wrapper .layout-topbar .layout-right-panel-button {
  float: left;
}

@media screen and (max-width: 991px) {
  .layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search {
    left: auto;
    right: 0;
    margin-right: 0;
  }
  .layout-rtl.layout-wrapper .layout-topbar .layout-topbar-search i {
    left: auto;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul {
    width: 211px;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:before, .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:after {
    right: 190px;
    left: auto;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:before {
    margin-right: -10px;
    margin-left: 0;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu .user-profile ul:after {
    margin-left: 0;
    margin-right: -9px;
  }
  .layout-rtl.layout-wrapper .layout-topbar .topbar-menu > li {
    margin-right: 0;
    margin-left: 0.5em;
  }
}
.layout-rtl.layout-wrapper .layout-menu-container {
  direction: rtl;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a {
  text-align: right;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-profile .layout-profile-menu li a i {
  margin-right: 0;
  margin-left: 0.5em;
  vertical-align: middle;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu > li.active-menuitem {
  border-left-color: transparent;
  border-right-color: #1d1c1e;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-icon {
  margin-right: 0;
  margin-left: 0.5em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  right: auto;
  left: 16px;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li a {
  padding-left: 0;
  padding-right: 2em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li a {
  padding-left: 0;
  padding-right: 3em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li a {
  padding-left: 0;
  padding-right: 4em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li li a {
  padding-left: 0;
  padding-right: 5em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li a {
  padding-left: 0;
  padding-right: 6em;
}
.layout-rtl.layout-wrapper .layout-menu-container .layout-menu li ul li li li li li li a {
  padding-left: 0;
  padding-right: 7em;
}
.layout-rtl.layout-wrapper .layout-menu-container .ui-scrollpanel .ui-scrollpanel-content {
  padding: 0 0 18px 18px;
}
.layout-rtl.layout-wrapper .layout-menu-container .ui-scrollpanel .menu-scroll-content {
  padding-right: 0;
  padding-left: 18px;
}
.layout-rtl.layout-wrapper .layout-menu-container .ui-scrollpanel .ui-scrollpanel-bar-y {
  right: auto !important;
  left: -278px;
}
.layout-rtl.layout-wrapper.layout-menu-light .layout-menu-container {
  border-left: 1px solid #ebebef;
  border-right: 0;
}
.layout-rtl.layout-wrapper.layout-menu-dark .layout-menu-container {
  border: 1px solid #252529;
  border-right: 0;
}

@media screen and (min-width: 992px) {
  .layout-rtl.layout-wrapper.layout-static .layout-menu-container {
    left: auto;
    right: 0;
    -moz-transition: right 0.2s;
    -o-transition: right 0.2s;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
  }
  .layout-rtl.layout-wrapper.layout-static .layout-main {
    margin-left: 0;
    margin-right: 288px;
    -moz-transition: margin-right 0.2s;
    -o-transition: margin-right 0.2s;
    -webkit-transition: margin-right 0.2s;
    transition: margin-right 0.2s;
  }
  .layout-rtl.layout-wrapper.layout-static .layout-footer {
    margin-left: 0;
    margin-right: 288px;
    -moz-transition: margin-right 0.2s;
    -o-transition: margin-right 0.2s;
    -webkit-transition: margin-right 0.2s;
    transition: margin-right 0.2s;
  }
  .layout-rtl.layout-wrapper.layout-static.layout-static-inactive .layout-menu-container {
    left: auto;
    right: -288px;
  }
  .layout-rtl.layout-wrapper.layout-static.layout-static-inactive .layout-main {
    margin-left: 0;
    margin-right: 0;
  }
  .layout-rtl.layout-wrapper.layout-static.layout-static-inactive .layout-footer {
    margin-left: 0;
    margin-right: 0;
  }
  .layout-rtl.layout-wrapper.layout-overlay .layout-menu-container {
    left: auto;
    right: -288px;
    -moz-transition: right 0.2s;
    -o-transition: right 0.2s;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
  }
  .layout-rtl.layout-wrapper.layout-overlay.layout-overlay-active .layout-menu-container {
    left: auto;
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container {
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-profile .layout-profile-menu {
    left: auto;
    right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    font-size: 18px;
    margin-right: 0;
    margin-left: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu > li > ul {
    left: auto;
    right: 52px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip {
    left: auto;
    right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    left: auto;
    right: 0;
    border-width: 5px 0px 5px 5px;
    border-left-color: #333333;
    border-right-color: transparent;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .ui-scrollpanel .menu-scroll-content {
    padding: 0;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-main {
    margin-left: 0;
    margin-right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-slim .layout-footer {
    margin-left: 0;
    margin-right: 57px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo {
    margin: 10px 5em 0 0;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .ui-scrollpanel .menu-scroll-content {
    padding-right: 0;
    padding-left: 18px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-menuitem-icon {
    margin-right: 0;
    margin-left: 0.5em;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > a .layout-submenu-toggler {
    margin-left: 0;
    margin-right: 0.5em;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li > ul {
    left: auto;
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu > li.active-menuitem > a {
    border-right-color: transparent;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-search, .layout-rtl.layout-wrapper.layout-slim .layout-topbar .layout-topbar-search {
    margin-left: 0;
    margin-right: 40px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li a {
    padding-left: 0;
    padding-right: 16px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li a {
    padding-left: 0;
    padding-right: 32px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li a {
    padding-left: 0;
    padding-right: 48px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li a {
    padding-left: 0;
    padding-right: 64px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li a {
    padding-left: 0;
    padding-right: 80px;
  }
  .layout-rtl.layout-wrapper.layout-horizontal .layout-menu-container .layout-menu ul li li li li li li a, .layout-rtl.layout-wrapper.layout-slim .layout-menu-container .layout-menu ul li li li li li li a {
    padding-left: 0;
    padding-right: 96px;
  }
}
@media screen and (max-width: 991px) {
  .layout-rtl.layout-wrapper .layout-topbar .layout-topbar-logo {
    margin-left: 0;
    margin-right: 1em;
  }
  .layout-rtl.layout-wrapper .layout-menu-container {
    left: auto;
    right: -288px;
    -moz-transition: right 0.2s;
    -o-transition: right 0.2s;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
  }
  .layout-rtl.layout-wrapper .layout-main {
    margin-right: 0;
    margin-left: 0;
    -moz-transition: margin-right 0.2s;
    -o-transition: margin-right 0.2s;
    -webkit-transition: margin-right 0.2s;
    transition: margin-right 0.2s;
  }
  .layout-rtl.layout-wrapper .layout-mask {
    left: auto;
    right: 0;
  }
  .layout-rtl.layout-wrapper.layout-mobile-active .layout-menu-container {
    left: auto;
    right: 0;
  }
}
.layout-rtl .layout-right-panel {
  direction: rtl;
  right: auto;
  left: -288px;
  border-left: 0;
  border-right: solid 1px #ebebef;
  -moz-transition: left 0.2s;
  -o-transition: left 0.2s;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.layout-rtl .layout-right-panel.layout-right-panel-active {
  right: auto;
  left: 0;
}
.layout-rtl .layout-right-panel .ui-tabview.ui-tabview-top .ui-tabview-nav li {
  margin-left: 0;
  margin-right: 0;
}
.layout-rtl .layout-right-panel .status-title i {
  float: left;
}

.layout-rtl .layout-footer {
  direction: rtl;
  padding: 1.5em 3em 1.5em 1.5em;
}
.layout-rtl .layout-footer .footer-icons {
  text-align: left;
}
.layout-rtl .layout-footer .footer-icons a {
  margin-right: 0;
  margin-left: 16px;
}

.help-page p {
  margin: 0;
}
.help-page .help-search {
  background: url("") 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: #86868d;
  width: 2rem;
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  margin-top: -0.75rem;
  margin-left: 1rem;
}
.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("");
}
.help-page .blog-post:nth-child(2) {
  background-image: url("");
}
.help-page .blog-post:nth-child(3) {
  background-image: url("");
}

@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 {
  height: 70px;
  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 #ebedef;
}
.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 #ebedef;
}
.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 {
  .invoice {
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: #424242;
  }
}
.layout-config {
  position: fixed;
  top: 0;
  padding: 0;
  right: 0;
  display: block;
  width: 240px;
  z-index: 1000;
  height: 100%;
  transform: translate3d(240px, 0px, 0px);
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  box-shadow: 0 24px 64px -2px rgba(0, 0, 0, 0.02), 0 6px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -2px rgba(0, 0, 0, 0.08);
  color: #252529;
  background-color: #ffffff;
}
.layout-config.layout-config-active {
  transform: translate3d(0px, 0px, 0px);
}
.layout-config.layout-config-active .layout-config-content .layout-config-button i {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.layout-config .layout-config-content {
  position: relative;
  height: 100%;
}
.layout-config .layout-config-content > form {
  height: 100%;
}
.layout-config .layout-config-content .layout-config-form {
  overflow: auto;
  overflow-x: hidden;
}
.layout-config .layout-config-content .layout-config-button {
  display: block;
  position: absolute;
  width: 52px;
  height: 52px;
  line-height: 52px;
  background-color: #1d1c1e;
  text-align: center;
  color: #ffffff;
  top: 230px;
  left: -52px;
  z-index: -1;
  cursor: pointer;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-config .layout-config-content .layout-config-button i {
  font-size: 32px;
  line-height: inherit;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: transform 1s;
  -o-transition: transform 1s;
  -webkit-transition: transform 1s;
  transition: transform 1s;
}
.layout-config .layout-config-content .layout-config-button:hover {
  background-color: #2a282b;
}
.layout-config .layout-config-content .layout-config-header {
  padding: 18px 12px;
  margin-bottom: 12px;
  background-image: linear-gradient(90deg, #1d1c1e 10%, #313033 100%);
}
.layout-config .layout-config-content .layout-config-header > h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
  color: #ffffff;
}
.layout-config .layout-config-content .layout-config-header > span {
  font-size: 12px;
  display: block;
  color: #ffffff;
}
.layout-config .layout-config-content .layout-config-section {
  padding: 10px;
}
.layout-config .layout-config-content .layout-config-section .section-name {
  font-weight: 500;
  font-size: 12px;
  display: block;
  color: #252529;
}
.layout-config .layout-config-content .layout-config-section.dark {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-config .layout-config-content .layout-config-section.dark .section-name {
  margin-right: 18px;
}
.layout-config .layout-config-content .layout-config-section.dark .ui-inputswitch .ui-inputswitch-on,
.layout-config .layout-config-content .layout-config-section.dark .ui-inputswitch .ui-inputswitch-off {
  padding: 0;
}
.layout-config .layout-config-content .layout-config-section.colors .layout-config-colors {
  padding: 0 10px;
  margin-top: 3px;
}
.layout-config .layout-config-content .layout-config-section.colors .layout-config-colors .p-col-fixed {
  padding: 0.5em;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options {
  margin-top: 3px;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options .ui-selectoneradio {
  width: 100%;
  padding: 0 10px;
}
.layout-config .layout-config-content .layout-config-section.options .layout-config-options .ui-selectoneradio label {
  font-size: 12px;
  margin: 0;
  margin-left: 6px;
}
.layout-config .layout-config-content .layout-config-section a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  position: relative;
  color: #252529;
  text-transform: capitalize;
}
.layout-config .layout-config-content .layout-config-section a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-text {
  margin-top: 0.2em;
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-color {
  width: 24px;
  height: 24px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option .layout-config-option-color .layout-config-option-accentcolor {
  display: block;
  width: 18px;
  height: 28px;
  position: absolute;
  bottom: -10px;
  right: -7px;
  transform: rotate(45deg);
}
.layout-config .layout-config-content .layout-config-section a.layout-config-option i {
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  color: var(--primary-color-text);
}

.blocked-scroll-config {
  overflow: hidden;
}

.layout-rtl .layout-config {
  right: auto;
  left: 0;
  transform: translate3d(-240px, 0px, 0px);
}
.layout-rtl .layout-config.layout-config-active {
  transform: translate3d(0px, 0px, 0px);
}
.layout-rtl .layout-config.layout-config-active .layout-config-content .layout-config-button i {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.layout-rtl .layout-config .layout-config-content .layout-config-button {
  left: auto;
  right: -51px;
}

@media (max-width: 991px) {
  .layout-config {
    height: 100%;
    width: 70vw;
    transform: translate3d(70vw, 0px, 0px);
  }
  .layout-config.layout-config-active {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-config .layout-config-button {
    left: auto;
    right: -52px;
  }
  .layout-config .ui-tabs.ui-tabs-top > .ui-tabs-nav li:first-child {
    margin-left: 13px;
  }
}
@media (max-width: 640px) {
  .layout-config .ui-tabs.ui-tabs-top .ui-tabs-panels .p-grid, .layout-config .ui-tabs.ui-tabs-top .ui-tabs-panels .double-tabmenu {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .layout-config .ui-tabs.ui-tabs-top .ui-tabs-panels .layout-config-palette .layout-config-selected-palette {
    width: 60px;
    height: 60px;
  }
}
@font-face {
  font-family: "Inter UI";
  font-style: normal;
  font-weight: 400;
  src: url("/javax.faces.resource/fonts/Inter-UI-Regular.otf.xhtml?ln=roma-layout") format("opentype"), url("/javax.faces.resource/fonts/Inter-UI-Regular.woff2.xhtml?ln=roma-layout") format("woff2"), url("/javax.faces.resource/fonts/Inter-UI-Regular.woff.xhtml?ln=roma-layout") format("woff"), url("/javax.faces.resource/fonts/Inter-UI-Regular.ttf.xhtml?ln=roma-layout") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Inter UI";
  font-style: normal;
  font-weight: 500;
  src: url("/javax.faces.resource/fonts/Inter-UI-SemiBold.otf.xhtml?ln=roma-layout") format("opentype"), url("/javax.faces.resource/fonts/Inter-UI-SemiBold.woff2.xhtml?ln=roma-layout") format("woff2"), url("/javax.faces.resource/fonts/Inter-UI-SemiBold.woff.xhtml?ln=roma-layout") format("woff"), url("/javax.faces.resource/fonts/Inter-UI-SemiBold.ttf.xhtml?ln=roma-layout") format("truetype");
  /* Safari, Android, iOS */
}
@font-face {
  font-family: "Inter UI";
  font-style: normal;
  font-weight: 700;
  src: url("/javax.faces.resource/fonts/Inter-UI-Bold.otf.xhtml?ln=roma-layout") format("opentype"), url("/javax.faces.resource/fonts/Inter-UI-Bold.woff2.xhtml?ln=roma-layout") format("woff2"), url("/javax.faces.resource/fonts/Inter-UI-Bold.woff.xhtml?ln=roma-layout") format("woff"), url("/javax.faces.resource/fonts/Inter-UI-Bold.ttf.xhtml?ln=roma-layout") format("truetype");
  /* Safari, Android, iOS */
}
.cmf-resources-grid {
  display: grid;
}
.cmf-resources-grid.layout-style-1 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 1rem;
}
.cmf-resources-grid > div {
  cursor: pointer;
  height: 140px;
  background: rgba(0, 0, 0, 0.0705882353);
  border-radius: 2px;
}
.cmf-resources-grid > div:hover {
  color: #d4a304;
  background-color: #1d1c1e;
}
.cmf-resources-grid > div:hover i {
  color: white;
}
.cmf-resources-grid > div i {
  font-size: 60px;
  color: #1d1c1e;
}
.cmf-resources-grid > div img {
  height: 60px;
}
.cmf-resources-grid > div .title {
  text-align: center;
  padding: 0.5em;
}

.cmf-onclick {
  cursor: pointer;
}

.cmf-image-box {
  max-width: 100%;
  max-height: 300px;
  margin: auto;
  display: block;
}

.cmf-info-box {
  margin-left: 5px;
}

.cmf-newsentry-grid.accordion-filter {
  box-shadow: none;
  margin-left: -13px;
  margin-right: -13px;
}
.cmf-newsentry-grid.accordion-filter .title {
  border: transparent !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.cmf-newsentry-grid.accordion-filter .drop-down-filter.ui-selectonemenu {
  min-width: 100% !important;
}
.cmf-newsentry-grid.accordion-filter .drop-down-filter.ui-selectcheckboxmenu-multiple.ui-selectcheckboxmenu {
  width: 100%;
}
.cmf-newsentry-grid.accordion-filter .filter-explanation {
  max-width: 400px;
}
.cmf-newsentry-grid.accordion-filter .filter-explanation-icon {
  margin-left: 8px;
}
.cmf-newsentry-grid.accordion-filter .text-filter {
  margin-top: 6px;
}
.cmf-newsentry-grid.accordion-filter .text-filter .ui-inputgroup-addon {
  border-right: none;
}
.cmf-newsentry-grid.accordion-filter .filter-category {
  padding-right: 10px;
}
.cmf-newsentry-grid.grid .ui-datagrid {
  margin-left: -6px;
  margin-right: -6px;
}
.cmf-newsentry-grid.grid .ui-datagrid .ui-datagrid-content > .p-grid, .cmf-newsentry-grid.grid .ui-datagrid .ui-datagrid-content > .double-tabmenu {
  margin: 6px -3px 6px -3px;
}
.cmf-newsentry-grid.grid .ui-datagrid-column:hover {
  background: #eaeaea;
}
.cmf-newsentry-grid.grid .ui-datagrid-column:hover .block-with-text:after {
  background: #eaeaea;
}
.cmf-newsentry-grid.grid .ui-datagrid-column a {
  text-decoration: none;
  padding: 0;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry {
  width: 100%;
  padding: 0;
  max-height: 222.5px;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-header {
  padding: 12px 8px 8px 8px;
  line-height: 1;
  color: #96969d;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-header .module-name {
  margin-left: 10px;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry hr {
  opacity: 0.5;
  border-bottom: none;
  margin-left: 6px;
  margin-right: 6px;
  margin-bottom: 0;
  border-top: 1px solid #96969d;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content {
  height: 130px;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .image-container {
  width: 135px;
  float: left;
  display: inline-block;
  margin-left: 6px;
  margin-right: 0;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .image-container .image {
  width: 123px;
  height: 123px;
  box-sizing: border-box;
  resize: horizontal;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: top;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .image-container .image .image-icons {
  background: white;
  height: 26px;
  font-size: 18px;
  text-align: center;
  position: absolute;
  padding-right: 8px;
  padding-left: 8px;
  bottom: 6px;
  right: 5px;
  box-shadow: 1px 1px 1px grey;
  border-radius: 2px;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .image-container .image .image-icons .confirmation-required-icon {
  margin-right: 2px;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .text {
  height: 100%;
  width: calc(100% - 205px);
  position: relative;
  display: inline-block;
  margin-right: 4px;
  padding-top: 6px;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .text .date {
  margin-top: 4px;
  color: #96969d;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .text .properties {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .text .properties > div {
  width: 100%;
  display: flex;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .text .properties > div > .icon {
  width: 30px;
  text-align: center;
}
.cmf-newsentry-grid.grid .ui-datagrid-column .single-entry .single-entry-content .text .properties > div > .icon i {
  font-size: 20px;
}
.cmf-newsentry-grid .show-more-link {
  width: 100%;
  text-align: right;
}

.cmf-badge {
  color: #252529;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  padding-top: 2px;
  box-sizing: border-box;
  z-index: 3;
}
.cmf-badge.color-1 {
  background: #d4a304;
}
.cmf-badge.color-2 {
  background: #1d1c1e;
  color: #ffffff;
}
.cmf-badge.color-3 {
  background: #ef6f06;
  color: #fff;
}
.cmf-badge.color-4 {
  background: #ef2106;
  color: #fff;
}

a .cmf-badge {
  text-decoration: none;
}

.cmf-tag {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  vertical-align: baseline;
  position: relative;
  font-size: 90%;
  padding: 0.2em 0.6em 0.2em 0.6em;
  border-radius: 10rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin: 0 2px 6px;
}
.cmf-tag .cmf-tag-text {
  padding: 0 2em 0 0.5em;
  position: relative;
  display: block;
  text-align: left;
}
.cmf-tag .cmf-tag-close-panel {
  position: absolute;
  margin-top: -0.7em;
  margin-right: 0.2em;
  right: 0.2em;
  top: 50%;
}
.cmf-tag .cmf-tag-close-panel .cmf-tag-separator {
  font-size: 80%;
  margin-right: 0.3em;
}
.cmf-tag .cmf-tag-close-panel .ui-button.nobackground.cmf-tag-close.ui-button-icon-only {
  display: inline-block;
  width: 1em;
}
.cmf-tag .cmf-tag-close-panel .ui-button.nobackground.cmf-tag-close.ui-button-icon-only .ui-button-text {
  width: 1em;
  padding: 0;
}
.cmf-tag .cmf-tag-close-panel .ui-button.nobackground.cmf-tag-close.ui-button-icon-only .ui-button-icon-left.ui-icon {
  margin-top: -0.4em;
}
.cmf-tag .cmf-tag-close-panel .ui-button.nobackground.cmf-tag-close.ui-button-icon-only:hover {
  cursor: pointer;
  color: #cccccc;
}

.cmf-form > label, .cmf-form input, .cmf-form textarea {
  width: 100%;
}
.cmf-form > label {
  display: inline-block;
  margin: 0 0 5px;
}

.cmf-form {
  margin-top: 0.5em;
}
.cmf-form:first-of-type {
  margin-top: 0.7em;
}

body .cmf-input-color input {
  color: grey;
}
body .cmf-input-color .ui-button {
  background-color: transparent;
  border: none;
  height: 100% !important;
  width: 31px;
}
body .cmf-input-color .ui-button .ui-button-text.ui-c {
  padding: 0;
  height: 100%;
}
body .cmf-input-color .ui-button .ui-button-text.ui-c > span {
  height: 100% !important;
  width: 100% !important;
}

.cmf-input-time-span .cmf-form {
  margin-top: 0;
}
.cmf-input-time-span .p-datepicker {
  width: 4em;
  min-width: unset;
}
.cmf-input-time-span .p-datepicker input {
  text-align: center;
}
.cmf-input-time-span .disabled-input-time-span {
  width: 10.1em;
  text-align: center;
}
.cmf-input-time-span .ui-datepicker-timeonly {
  width: 7.3em;
  min-width: unset;
  font-size: 1.3em !important;
  padding: 0.4em 0.75em;
  box-shadow: 0 9px 11px -4px rgba(0, 0, 0, 0.15) !important;
}
.cmf-input-time-span .ui-datepicker-timeonly a {
  text-decoration: none;
}
.cmf-input-time-span .ui-datepicker-timeonly a:hover {
  color: #1d1c1e !important;
}
.cmf-input-time-span .ui-datepicker-timeonly .ui-picker-up {
  margin-bottom: 6px !important;
}
.cmf-input-time-span .ui-datepicker-timeonly .ui-hour-picker {
  margin-left: unset;
}

@media screen and (max-width: 991px) {
  .lunchbreak-enabled {
    margin-bottom: 4em;
  }
}
.signature-wrapper div.signature {
  width: 100%;
  height: 250px;
}

.scrollable-messages {
  max-height: 20vh;
  overflow-y: auto;
}

.happening-statistics-table {
  margin: 0 auto;
}

.layout-footer {
  display: block;
}
.layout-footer .app-version {
  font-size: 10px;
  opacity: 0.7;
}
.layout-footer .logo img {
  height: 32px;
}
.layout-footer .company-details {
  text-align: right;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.layout-footer .company-details .company-detail-link {
  flex-grow: 1;
  text-align: right;
  padding-right: 12px;
}
.layout-footer .company-details .company-detail-link a {
  text-decoration: none;
}
@media screen and (max-width: 425px) {
  .layout-footer .app-version {
    opacity: 0;
  }
}

.login-body {
  background-repeat: no-repeat;
  background-position: top center;
  background-color: #1d1c1e;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  background-image: url("");
}
.login-body .login-panel {
  overflow-y: auto;
  background-color: #ffffff;
}

@media (max-width: 1080px) {
  .login-body {
    background-image: url("");
  }
}
.login-version {
  color: white;
  font-size: 9px;
  opacity: 0.5;
  position: absolute;
  bottom: 8px;
  left: 8px;
}

@media screen and (max-width: 40em) {
  .login-version {
    font-size: 0.6em;
    height: 0.6em;
    top: 8px;
    right: 8px;
    text-align: right;
  }
}
body {
  min-width: 300px;
}

.mediaLibraryDialog .ui-confirm-dialog-message {
  display: block !important;
}
.mediaLibraryDialog .ui-icon.ui-confirm-dialog-severity.fa, .mediaLibraryDialog .ui-icon.ui-confirm-dialog-severity.fas {
  display: inline-block;
  float: left;
}

body .layout-wrapper.layout-static .layout-menu-container .layout-menu li ul, body .layout-wrapper.layout-overlay .layout-menu-container .layout-menu li ul {
  display: none;
}
body .layout-wrapper .layout-menu-container {
  z-index: 5;
  height: calc(100vh - 73px);
}
body .layout-wrapper .layout-menu-container .layout-menu li a .layout-submenu-toggler {
  right: 16px;
}
body .layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-icon {
  margin-top: 2px;
  float: left;
}
body .layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-icon::before {
  width: 16px;
  display: inline-block;
  text-align: left;
}
body .layout-wrapper .layout-menu-container .layout-menu li a .layout-menuitem-text {
  max-width: 80%;
  word-wrap: break-word;
}
body .layout-wrapper .layout-menu-container .nano > .nano-content.menu-scroll-content .layout-menu {
  padding-bottom: unset;
}

.menu-switcher {
  width: 50%;
  border: none;
  box-shadow: none;
  border-radius: 0px;
}

@media screen and (max-width: 896px) {
  .layout-wrapper .layout-main {
    padding-top: 110px;
  }
  .layout-wrapper.layout-mobile-active .layout-content-mask {
    z-index: 5;
  }
  .layout-wrapper.layout-mobile-active .layout-menu-container {
    z-index: 999;
  }
}
.double-tabmenu div.ui-tabmenu {
  padding: 0;
}
.double-tabmenu div.inner-tabmenu-wrapper.outer-tabmenu-displayed {
  padding: 10px 10px 10px 10px;
}
.double-tabmenu div.inner-tabmenu-wrapper.outer-tabmenu-hidden {
  padding: 0;
}
.double-tabmenu div.inner-tabmenu-wrapper div.content {
  margin: auto;
  padding: 10px 10px 10px 10px;
}
.double-tabmenu div.inner-tabmenu-wrapper div.content.outer-tabmenu-displayed {
  border-bottom: 1px solid #d8d8dc;
  border-left: 1px solid #d8d8dc;
  border-right: 1px solid #d8d8dc;
}
.card-search {
  position: relative;
  border-radius: 2px;
  background: #ffffff;
  padding: 1em;
  box-sizing: border-box;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
  margin: 0 0 1em;
}
.card-search .ui-inputfield {
  background: #f3f3f3;
  border-color: #cccccc;
}
.card-search.results {
  font-size: 1.2em;
}
.card-search .filter-label {
  margin-bottom: 7px;
}
.card-search .filter-reset-label {
  position: absolute;
  top: 13px;
  right: 15px;
  cursor: pointer;
  color: #1d1c1e;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.card-search .filter-reset-label:hover {
  color: #111111;
}

.filter-row {
  margin-bottom: 28px;
}
.filter-row:last-of-type {
  margin-bottom: 2px;
}

.filter-count {
  display: none;
  padding: 10px 0 10px 19px;
  margin-top: 23px;
  background: #eaeaea;
}
.filter-count span {
  font-weight: bold;
}

.custom-radio-select-button {
  font-size: 0;
}
.custom-radio-select-button > div {
  background-color: #eaeaea;
  color: #252529;
  border: 1px solid #eaeaea;
  font-size: 13px;
  margin: 4px 2px 0;
  padding: 0.6em 1.2em;
  outline: 0 none;
  display: inline-block;
  cursor: pointer;
  -moz-transition: background-color 0.2s, box-shadow 0.2s;
  -o-transition: background-color 0.2s, box-shadow 0.2s;
  -webkit-transition: background-color 0.2s, box-shadow 0.2s;
  transition: background-color 0.2s, box-shadow 0.2s;
}
.custom-radio-select-button > div i {
  padding-right: 5px;
}
.custom-radio-select-button > div:hover {
  color: #1d1c1e;
}
.custom-radio-select-button > div.active {
  background-color: #1d1c1e;
  border-color: #1d1c1e;
  color: #ffffff;
}
.custom-radio-select-button > div.active:hover {
  background-color: #ffffff;
  border-color: #a27d03;
  color: #ffffff;
}

.search-result-type {
  margin-bottom: 40px;
}
.search-result-type:last-of-type {
  margin-bottom: 80px;
}
.search-result-type .ui-datatable-header {
  font-size: 1.4em;
  margin-top: 17px;
}
.search-result-type .ui-datatable-header i {
  vertical-align: middle;
  font-size: 1.8em;
}
.search-result-type .ui-datatable-header span {
  position: relative;
  left: 12px;
  color: #535359;
  font-weight: normal;
}
.search-result-type.ui-datatable thead th {
  background: #d81b60;
  color: #ffffff;
  font-size: 14px;
  padding: 7px 0 7px 15px;
}
.search-result-type .ui-datatable-data > tr.clickable {
  cursor: pointer;
}
.search-result-type .ui-datatable-data > tr:hover td {
  background: #eee;
  -moz-transition: background 0.2s;
  -o-transition: background 0.2s;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.search-result-type .ui-datatable-data > tr:nth-of-type(2n) {
  background-color: #ffffff;
}
.search-result-type .ui-datatable-data > tr:nth-of-type(2n + 1) {
  background-color: #f8f8f8;
}
.search-result-type .ui-datatable-data > tr td blockquote {
  background: rgba(0, 0, 0, 0.062745098);
  display: block;
  font-size: 0.9em;
  margin: 10px 1px 0 1px;
  padding: 2px 9px 4px;
  border-left: 5px solid lightgrey;
  position: relative;
}
.search-result-type .ui-datatable-data > tr td br {
  display: block;
  margin-top: 7px;
}
.search-result-type .ui-datatable-data > tr td .sr-img-s {
  display: block;
  margin-top: 7px;
}
.search-result-type .ui-datatable-data > tr td span.highlight {
  color: #0097a6;
  font-weight: bold;
}
.search-result-type .ui-datatable-data > tr td i.highlight {
  background: #ffc000;
  font-weight: bold;
}
.search-result-type .ui-datatable-data > tr td .more-hits {
  font-style: italic;
  color: grey;
}
.search-result-type .ui-datatable-data > tr td .ui-button {
  padding: 0.5em 1em 0.5em 0.2em;
  margin: 2px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.search-result-type .ui-datatable-data > tr td .ui-button > i {
  padding: 0 10px 0;
}
.search-result-type .ui-datatable-data > tr td .ui-button:hover {
  border-color: #a27d03;
  background-color: #a27d03;
}

@media (max-width: 640px) {
  .search-result-type .ui-datatable-header {
    padding-bottom: 22px !important;
  }
}
@media (min-width: 1200px) {
  body .layout-wrapper .layout-topbar .layout-topbar-search {
    margin-left: 80px;
  }

  body .layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search input {
    width: 300px;
  }
}
.layout-wrapper.layout-topbar-theme .layout-topbar {
  z-index: 15;
  background-color: #1d1c1e;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
}
.layout-wrapper.layout-topbar-theme .layout-topbar i {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .layout-topbar-icon {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .layout-topbar-icon:hover {
  background-color: #ecd690;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .layout-topbar-icon:hover .cmf-badge {
  display: none;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .layout-topbar-icon .cmf-badge {
  position: absolute;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form {
  display: inline-block;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search {
  background-color: #1d1c1e;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search input {
  color: #d4a304;
  background: #1d1c1e;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search input::-webkit-input-placeholder {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search input:-moz-placeholder {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search input::-moz-placeholder {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search input:-ms-input-placeholder {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search input.ui-state-focus {
  box-shadow: unset;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .layout-topbar-search i {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .search-submit {
  background: none;
  border: none;
  position: relative;
  left: 10px;
  -moz-transition: left 0.2s;
  -o-transition: left 0.2s;
  -webkit-transition: left 0.2s;
  transition: left 0.2s;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .search-submit:hover {
  left: 15px;
}
.layout-wrapper.layout-topbar-theme .layout-topbar #search-form .search-submit.ui-state-focus {
  box-shadow: unset;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .user-profile .layout-profile-name, .layout-wrapper.layout-topbar-theme .layout-topbar .user-profile .layout-profile-role, .layout-wrapper.layout-topbar-theme .layout-topbar .user-profile .layout-profile-icon {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .user-profile li i {
  min-width: 16px;
  color: #1d1c1e;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .user-profile a {
  text-decoration: none;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .user-profile a:hover .layout-profile-name, .layout-wrapper.layout-topbar-theme .layout-topbar .user-profile a:hover .layout-profile-role, .layout-wrapper.layout-topbar-theme .layout-topbar .user-profile a:hover .layout-profile-icon {
  color: #d4a304;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu .user-profile {
  padding: 3px 8px !important;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu .user-profile ul {
  width: 200px !important;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu .user-profile .layout-profile-userinfo {
  text-align: left;
  margin: 2px 0 0 4px;
  vertical-align: top;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu .user-profile .layout-profile-userinfo .layout-profile-name {
  font-size: 14px;
  display: block;
  font-weight: 500;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu .user-profile .layout-profile-userinfo .layout-profile-role {
  font-size: 12px;
  margin-top: 0 !important;
  display: block;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification {
  padding-right: 16px;
  float: right;
  position: relative;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > a {
  position: relative;
  display: block;
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > ul {
  position: absolute;
  background: #ffffff;
  top: 58px;
  right: 0;
  display: none;
  width: 283px;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  animation-duration: 0.2s;
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: thin;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0px 2px 0 rgba(0, 0, 0, 0.16);
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > ul .notification-list .notification-spinner {
  text-align: center;
  padding-bottom: 10px;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > ul a {
  padding: 0.75em 1em;
  text-align: left;
  text-decoration: none;
  align-items: center;
  display: flex;
  color: #252529;
  position: relative;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > ul a img {
  margin-top: 5px;
  width: 30px;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > ul a .topbar-menu-info .topbar-menu-name {
  font-size: 12px;
  display: block;
  font-weight: 500;
  color: #252529;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > ul a .topbar-menu-info .topbar-menu-role {
  font-size: 12px;
  display: block;
  color: #252529;
  word-break: break-word;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification > ul a:hover {
  background-color: #eaeaea;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification .topbar-icon {
  width: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 23px;
  vertical-align: middle;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification .topbar-icon.topbar-icon-content {
  color: rgba(134, 134, 141, 0.4);
  flex: 0 0 45px;
  height: unset;
  font-size: 26px;
  padding-right: 12px;
  line-height: initial;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification.active-topmenuitem > ul {
  display: block;
}
.layout-wrapper.layout-topbar-theme .layout-topbar .topbar-menu li.topbar-menu-li-notification.active-topmenuitem .layout-profile-icon {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
@media screen and (max-width: 425px) {
  .layout-wrapper.layout-topbar-theme .layout-topbar .layout-topbar-logo {
    display: none;
  }
}

@media screen and (max-width: 896px) {
  .layout-wrapper .layout-topbar .layout-topbar-search {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.16);
  }
}
.card, .double-tabmenu div.inner-tabmenu-wrapper.outer-tabmenu-displayed, .double-tabmenu div.inner-tabmenu-wrapper div.content.outer-tabmenu-hidden {
  margin-bottom: 0;
}
.card.card-w-title.title-only h1, .double-tabmenu div.card-w-title.title-only.inner-tabmenu-wrapper.outer-tabmenu-displayed h1, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.title-only.content.outer-tabmenu-hidden h1, .card.card-w-title.title-only h2, .double-tabmenu div.card-w-title.title-only.inner-tabmenu-wrapper.outer-tabmenu-displayed h2, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.title-only.content.outer-tabmenu-hidden h2, .card.card-w-title.title-only h3, .double-tabmenu div.card-w-title.title-only.inner-tabmenu-wrapper.outer-tabmenu-displayed h3, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.title-only.content.outer-tabmenu-hidden h3, .card.card-w-title.title-only h4, .double-tabmenu div.card-w-title.title-only.inner-tabmenu-wrapper.outer-tabmenu-displayed h4, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.title-only.content.outer-tabmenu-hidden h4, .card.card-w-title.title-only h5, .double-tabmenu div.card-w-title.title-only.inner-tabmenu-wrapper.outer-tabmenu-displayed h5, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.title-only.content.outer-tabmenu-hidden h5, .card.card-w-title.title-only h6, .double-tabmenu div.card-w-title.title-only.inner-tabmenu-wrapper.outer-tabmenu-displayed h6, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.title-only.content.outer-tabmenu-hidden h6 {
  display: inline !important;
}
.card.card-w-title.card-hidden, .double-tabmenu div.card-w-title.card-hidden.inner-tabmenu-wrapper.outer-tabmenu-displayed, .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.card-hidden.content.outer-tabmenu-hidden {
  opacity: 0.6;
}
.card.card-highlight, .double-tabmenu div.card-highlight.inner-tabmenu-wrapper.outer-tabmenu-displayed, .double-tabmenu div.inner-tabmenu-wrapper div.card-highlight.content.outer-tabmenu-hidden {
  color: #d4a304;
  background-color: #1d1c1e;
}
.card.dashboard-widget .p-grid, .double-tabmenu div.dashboard-widget.inner-tabmenu-wrapper.outer-tabmenu-displayed .p-grid, .double-tabmenu div.inner-tabmenu-wrapper div.dashboard-widget.content.outer-tabmenu-hidden .p-grid, .card.dashboard-widget .double-tabmenu, .double-tabmenu div.dashboard-widget.inner-tabmenu-wrapper.outer-tabmenu-displayed .double-tabmenu, .double-tabmenu div.inner-tabmenu-wrapper div.dashboard-widget.content.outer-tabmenu-hidden .double-tabmenu {
  margin-bottom: -0.5em;
}
.card.dashboard-widget h1, .double-tabmenu div.dashboard-widget.inner-tabmenu-wrapper.outer-tabmenu-displayed h1, .double-tabmenu div.inner-tabmenu-wrapper div.dashboard-widget.content.outer-tabmenu-hidden h1 {
  font-size: 22px;
}
.card.dashboard-widget .image-width, .double-tabmenu div.dashboard-widget.inner-tabmenu-wrapper.outer-tabmenu-displayed .image-width, .double-tabmenu div.inner-tabmenu-wrapper div.dashboard-widget.content.outer-tabmenu-hidden .image-width {
  width: 150px;
}
.card.dashboard-widget .statistics-height, .double-tabmenu div.dashboard-widget.inner-tabmenu-wrapper.outer-tabmenu-displayed .statistics-height, .double-tabmenu div.inner-tabmenu-wrapper div.dashboard-widget.content.outer-tabmenu-hidden .statistics-height {
  height: 150px;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.min-width-auto {
  min-width: auto !important;
}

.checkbox-label-before {
  margin-right: 6px;
}

.checkbox-label-after {
  margin-left: 6px;
}

.truncate-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.truncate-text.one-line {
  -webkit-line-clamp: 1;
}
.truncate-text.two-lines {
  -webkit-line-clamp: 2;
}
.truncate-text.three-lines {
  -webkit-line-clamp: 3;
}
.truncate-text.four-lines {
  -webkit-line-clamp: 4;
}

.layout-wrapper .layout-ajax-loader {
  position: fixed;
  right: 15px;
  bottom: 53px;
  z-index: 1035;
}

.checkbox-label-right-of-box {
  margin-left: 8px;
}

.checkbox-label-left-of-box {
  margin-right: 8px;
}

.label-right-of-icon {
  margin-left: 8px;
}

.tagChips.ui-autocomplete, .tagChips .ui-autocomplete-multiple-container {
  width: 100%;
}
.tagChips.ui-autocomplete .ui-autocomplete-token, .tagChips .ui-autocomplete-multiple-container .ui-autocomplete-token {
  margin-bottom: 5px !important;
  max-width: 100%;
  height: fit-content;
  border-radius: 10px;
}
.tagChips.ui-autocomplete .ui-autocomplete-token .ui-autocomplete-token-label, .tagChips .ui-autocomplete-multiple-container .ui-autocomplete-token .ui-autocomplete-token-label {
  white-space: normal;
  height: fit-content;
  word-break: break-word;
  width: 100%;
  display: block;
}

.ui-autocomplete-panel .ui-autocomplete-items .ui-autocomplete-item.ui-state-highlight {
  background-color: #1d1c1e !important;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  body .ui-datatable-reflow .ui-datatable-header {
    border: none;
  }

  body .ui-datatable-reflow .ui-datatable-data tr td[role=gridcell]:not(.ui-helper-hidden) {
    border-left: 1px solid #d8d8dc;
    border-right: 1px solid #d8d8dc;
  }
  body .ui-datatable-reflow .ui-datatable-data tr td[role=gridcell]:first-of-type {
    border-top: 1px solid #d8d8dc;
  }
  body .ui-datatable-reflow .ui-datatable-data tr td[role=gridcell]:last-of-type {
    border-bottom: 1px solid #d8d8dc;
  }

  body .ui-datatable .ui-datatable-data > tr {
    border-top: 15px solid;
    border-color: #f4f4f4;
  }
  body .ui-datatable .ui-datatable-data > tr.ui-state-highlight td[role=gridcell]:nth-of-type(2n) {
    background-color: #1d1c1e;
  }
  body .ui-datatable .ui-datatable-data > tr.ui-state-highlight td[role=gridcell]:nth-of-type(2n + 1) {
    background-color: #111111;
  }
  body .ui-datatable .ui-datatable-data > tr td[role=gridcell]:nth-of-type(2n) {
    background-color: #ffffff;
  }
  body .ui-datatable .ui-datatable-data > tr td[role=gridcell]:nth-of-type(2n + 1) {
    background-color: #f8f8f8;
  }
  body .ui-datatable .ui-datatable-data > tr td[role=gridcell] .ui-column-title {
    font-weight: bold;
    padding: 0;
    margin: 0 0 5px 0;
    display: block;
  }
}
.short-profile {
  text-align: left;
  box-shadow: 0px 1px 5px 0px lightgrey;
  display: flex;
  padding: 0.4em;
}
.short-profile .short-profile-image {
  float: left;
  border-radius: 40px;
  color: white;
  font-size: 3em !important;
  display: grid;
  place-items: center;
}
.short-profile .short-profile-text {
  padding: 0.7em;
  display: grid;
}
.short-profile .short-profile-text div {
  margin-bottom: 0.2em;
}
.short-profile .short-profile-text div.name {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 0.4em;
}
.short-profile .short-profile-text div.chatButton {
  margin-top: 1em;
}

.profile-image-wrapper {
  position: relative;
}
.profile-image-wrapper .profile-image-short-wrapper {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #ffffff;
  top: 44px;
  width: max-content;
}

.profile-name {
  display: inline;
  vertical-align: middle;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.profile-icon {
  display: inline;
}

.visibility-hidden {
  visibility: hidden;
}

.break-all {
  word-break: break-all;
}

.ui-datatable.only-selected-rows-editable tr .ui-row-editor.hide-when-inactive {
  display: none;
}
.ui-datatable.only-selected-rows-editable tr .ui-row-editor.hide-when-inactive span {
  color: white;
}
.ui-datatable.only-selected-rows-editable tr.ui-state-highlight .ui-row-editor.hide-when-inactive {
  display: unset;
}

.image-cropper-container {
  display: grid;
  grid-template: 1fr/1fr;
}
.image-cropper-container .image-cropper-image {
  z-index: 0;
  grid-column: 1/1;
  grid-row: 1/1;
}
.image-cropper-container .image-cropper-icon {
  z-index: 1;
  grid-column: 1/1;
  grid-row: 1/1;
  text-align: right;
}
.image-cropper-container .image-cropper-icon button {
  font-size: 20px;
}

body .preview720 > img {
  max-width: 100%;
  max-height: 100%;
}
body .card.card-w-title.membership-box, body .double-tabmenu div.card-w-title.membership-box.inner-tabmenu-wrapper.outer-tabmenu-displayed, .double-tabmenu body div.card-w-title.membership-box.inner-tabmenu-wrapper.outer-tabmenu-displayed, body .double-tabmenu div.inner-tabmenu-wrapper div.card-w-title.membership-box.content.outer-tabmenu-hidden, .double-tabmenu div.inner-tabmenu-wrapper body div.card-w-title.membership-box.content.outer-tabmenu-hidden {
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  word-break: break-all;
}
body .scrollable-dialog {
  max-width: calc(100vw - 100px);
  max-height: calc(100vh - 10px);
  overflow: scroll;
}
body .ui-datatable-header.ui-widget-header.ui-corner-top {
  min-height: 53px;
}
body .layout-wrapper .layout-main {
  padding-top: 70px;
  display: block;
}
