@import url("https://use.typekit.net/kuo4qia.css");
/* Add your customizations of the layout variables here */
@-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;
}

@-webkit-keyframes modal-in {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
@keyframes modal-in {
  from {
    background-color: transparent;
  }
  to {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
.modal-in {
  -webkit-animation-name: modal-in;
  animation-name: modal-in;
}

h1, h2, h3, h4, h5, h6 {
  margin: 15px 0;
  font-family: inherit;
  font-weight: 600;
  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: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

.normal-text {
  color: var(--text-color) !important;
}

.dark-text {
  color: var(--text-color-secondary) !important;
}

.light-text {
  color: var(--primary-color-text);
}

.primary-text {
  color: var(--primary-color) !important;
}

.secondary-text {
  color: var(--secondary-color) !important;
}

.dialog-text {
  color: #00a89e;
}

.gradient-text {
  background: -webkit-linear-gradient(var(--primary-color), var(--secondary-color)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 5px;
  font-family: monospace;
}

blockquote {
  margin: 1rem 0;
  padding: 0 2rem;
  border-left: 4px solid #90A4AE;
}

hr {
  border-top: solid #f0f0f0;
  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-scrollbar-track {
  background: var(--surface-e);
}

*::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-color: var(--surface-e);
}

html {
  height: 100%;
  font-size: 14px;
}

body {
  font-family: century-gothic, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.blocked-scroll {
  overflow: auto;
}
body.gradient-one {
  background: linear-gradient(-180deg, #08a79d 0%, #415c96 100%);
}
body.gradient-two {
  background: linear-gradient(-180deg, #0b9397 5%, #32618d 70%, #5a3084 100%);
}
body .primary-back {
  background-color: var(--primary-color) !important;
}
body .primary-color {
  color: var(--primary-color) !important;
}
body .secondary-back {
  background-color: var(--secondary-color) !important;
}
body .secondary-color {
  color: var(--secondary-color) !important;
}

a {
  text-decoration: none;
  color: #8238b8;
  color: var(--primary-color);
}

.ajax-loader {
  font-size: 32px;
  color: #662c91;
  color: var(--primary-color);
}

.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;
  padding-top: 62px;
  -moz-transition: padding-left 0.2s;
  -o-transition: padding-left 0.2s;
  -webkit-transition: padding-left 0.2s;
  transition: padding-left 0.2s;
}

.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;
}

.loading-div #loadingSvg g path:nth-child(1), .loading-div #loadingSvg g path:nth-child(2), .loading-div #loadingSvg g path:nth-child(3) {
  stroke: #3E4754;
}
.loading-div.primary #loadingSvg g path:nth-child(1), .loading-div.primary #loadingSvg g path:nth-child(2), .loading-div.primary #loadingSvg g path:nth-child(3) {
  stroke: #662c91;
}

.layout-content {
  flex: 1 1 auto;
}

@media (max-width: 991px) {
  .layout-content {

  }
}
.layout-topbar-light .layout-topbar {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  height: 62px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
  height: 100%;
  padding: 0 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
  height: 21px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
  height: 29px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-img {
  display: none;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-name {
  display: inline;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button {
  padding: 6px;
  margin-right: 16px;
  border-radius: 4px;
  display: none;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button i {
  font-size: 18px;
  width: 18px;
  height: 18px;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
  height: 100%;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-right: solid 1px transparent;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a {
  width: 100%;
  padding: 6px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  font-size: 18px;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a.layout-rightpanel-button i {
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  display: none;
  position: absolute;
  top: 62px;
  right: 0px;
  list-style-type: none;
  margin: 0;
  padding: 7px 0 8px;
  z-index: 1000;
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  min-width: 250px;
  animation-duration: 0.2s;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .angle-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li {
  padding: 10px 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
  margin-bottom: 4px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  margin-right: 10px;
  padding: 6px;
  border-radius: 2px;
  width: 26px;
  height: 26px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a img {
  height: 36px;
  width: 36px;
  margin-right: 10px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item a {
  width: auto;
  display: block;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item .search-input-wrapper {
  position: relative;
  width: 0;
  opacity: 0;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item .search-input-wrapper .ui-inputfield {
  background: #F7FAFF;
  width: 100%;
  position: relative;
  padding: 9px;
  padding-left: 37px;
  border: none;
  color: #3E4754;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item .search-input-wrapper i {
  position: absolute;
  left: 9px;
  font-size: 18px;
  top: 50%;
  margin-top: -9px;
  display: none;
  z-index: 1;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a {
  margin-left: 2px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a > img {
  height: 45px;
  width: 45px;
  border-radius: 10px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item a {
  display: none;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item .search-input-wrapper {
  width: 200px;
  opacity: 1;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item .search-input-wrapper i {
  display: block;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > ul {
  display: none;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem > ul {
  display: block;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  font-size: 18px;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  margin-left: 26px;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding: 0 6px;
  }
}
@media (max-width: 576px) {
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item a {
    display: block;
  }
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > .search-input-wrapper {
    display: none;
  }
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > ul {
    display: block;
    padding: 0;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
  }
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
    left: 10px;
    right: 10px;
    position: fixed;
    top: 62px;
  }
}
.layout-topbar-light .layout-topbar {
  background-color: #ffffff;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button > i {
  color: #293241;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button:hover {
  background-color: #E8EDF0;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  color: #293241;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i {
  background-color: #E8EDF0;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input {
  background-color: #f8fafc;
  border: 1px solid #ebedef;
  color: #8238b8;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input::placeholder {
  color: #8238b8;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  color: #293241;
  opacity: 0.5;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  box-shadow: 0 2px 8px 0 rgba(25, 26, 28, 0.12);
  background-color: white;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  background-color: #7c35b0;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h6 {
  color: #ffffff;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header:hover {
  background-color: #7c35b0;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  color: #000000
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  background-color: rgba(102, 44, 145, 0.8);
  color: #ffffff;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a .notification-detail {
  color: rgba(41, 50, 65, 0.5);
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text p {
  color: #000000
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text span {
  color: rgba(41, 50, 65, 0.5);
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li:hover {
  background-color: rgba(102, 44, 145, 0.2);
  background-color: var(--primary-lighter-color);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  color: #293241;
  background-color: transparent;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button:hover {
  background-color: #E8EDF0;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.layout-topbar-dark .layout-topbar {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
  height: 62px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
  height: 100%;
  padding: 0 16px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  z-index: 999;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
  height: 21px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
  height: 29px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-img {
  display: none;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-name {
  display: inline;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button {
  padding: 6px;
  margin-right: 16px;
  border-radius: 4px;
  display: none;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button i {
  font-size: 18px;
  width: 18px;
  height: 18px;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
  height: 100%;
  flex-grow: 1;
  padding: 0 16px 0 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-right: solid 1px transparent;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a {
  width: 100%;
  padding: 6px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  font-size: 18px;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a.layout-rightpanel-button i {
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  display: none;
  position: absolute;
  top: 62px;
  right: 0px;
  list-style-type: none;
  margin: 0;
  padding: 7px 0 8px;
  z-index: 1000;
  -moz-border-radius-bottomleft: 2px;
  -webkit-border-bottom-left-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -webkit-border-bottom-right-radius: 2px;
  border-bottom-right-radius: 2px;
  min-width: 250px;
  animation-duration: 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .angle-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
  justify-content: flex-end;
  flex-grow: 1;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li {
  padding: 10px 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
  margin-bottom: 4px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  margin-right: 10px;
  padding: 6px;
  border-radius: 2px;
  width: 26px;
  height: 26px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a img {
  height: 36px;
  width: 36px;
  margin-right: 10px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item a {
  width: auto;
  display: block;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item .search-input-wrapper {
  position: relative;
  width: 0;
  opacity: 0;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item .search-input-wrapper .ui-inputfield {
  background: #F7FAFF;
  width: 100%;
  position: relative;
  padding: 9px;
  padding-left: 37px;
  border: none;
  color: #3E4754;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item .search-input-wrapper i {
  position: absolute;
  left: 9px;
  font-size: 18px;
  top: 50%;
  margin-top: -9px;
  display: none;
  z-index: 1;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a {
  margin-left: 2px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a > img {
  height: 45px;
  width: 45px;
  border-radius: 10px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item a {
  display: none;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item .search-input-wrapper {
  width: 200px;
  opacity: 1;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item .search-input-wrapper i {
  display: block;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > ul {
  display: none;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem > ul {
  display: block;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  font-size: 18px;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  margin-left: 26px;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding: 0 6px;
  }
}
@media (max-width: 576px) {
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item a {
    display: block;
  }
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > .search-input-wrapper {
    display: none;
  }
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > ul {
    display: block;
    padding: 0;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
  }
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
    left: 10px;
    right: 10px;
    position: fixed;
    top: 62px;
  }
}
.layout-topbar-dark .layout-topbar {
  background-color: #293241;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button > i {
  color: #E9E9E9;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button:hover {
  background-color: #333e51;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a > .topbar-icon {
  color: #E9E9E9;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i {
  background-color: #333e51;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input {
  background-color: #333e51;
  border: 1px solid #333e51;
  color: #9a57cc;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input::placeholder {
  color: #9a57cc;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  color: #E9E9E9;
  opacity: 0.5;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  box-shadow: 0 2px 8px 0 rgba(25, 26, 28, 0.12);
  background-color: #333e51;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  background-color: #7c35b0;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h6 {
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header:hover {
  background-color: #7c35b0;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  color: #E9E9E9;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  background-color: rgba(102, 44, 145, 0.8);
  color: #ffffff;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a .notification-detail {
  color: #C2C2C2;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text p {
  color: #E9E9E9;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text span {
  color: #C2C2C2;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li:hover {
  background-color: rgba(102, 44, 145, 0.2);
  background-color: var(--primary-lighter-color);
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button {
  color: #E9E9E9;
  background-color: transparent;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button:hover {
  background-color: #333e51;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.menu-wrapper {
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
}
.menu-wrapper .sidebar-logo {
  height: 62px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center;
}
.menu-wrapper .sidebar-logo .sidebar-pin {
  display: none;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.menu-wrapper .sidebar-logo .sidebar-pin > span {
  display: block;
  height: 16px;
  width: 16px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
}
.menu-wrapper .sidebar-logo img {
  height: 39px;
  border: 0 none;
  margin: auto;
}
.menu-wrapper .sidebar-logo img.logo-name {
  display: none;
  opacity: 0;
}
.menu-wrapper .layout-menu-container {
  height: calc(100% - 62px);
}
.menu-wrapper .layout-menu-container .layout-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  max-width: 62px;
  overflow: hidden;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.menu-wrapper .layout-menu-container .layout-menu > li > a {
  position: relative;
}
.menu-wrapper .layout-menu-container .layout-menu > li > a::before {
  content: "";
  width: 4px;
  height: 12px;
  display: block;
  border-radius: 0px 3px 3px 0px;
  position: absolute;
  left: 0;
}
.menu-wrapper .layout-menu-container .layout-menu > li > ul > li {
  margin-left: 6px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.menu-wrapper .layout-menu-container .layout-menu li {
  padding: 0px 0;
}
.menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a i.layout-submenu-toggler {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.menu-wrapper .layout-menu-container .layout-menu li .layout-menu-tooltip {
  display: none;
}
.menu-wrapper .layout-menu-container .layout-menu li > a {
  margin: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  font-size: 13px;
  padding: 6px 20px;
  user-select: none;
  cursor: pointer;
}
.menu-wrapper .layout-menu-container .layout-menu li > a > span {
  margin: 0 8px;
  margin-left: 14px;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  visibility: hidden;
  white-space: nowrap;
}
.menu-wrapper .layout-menu-container .layout-menu li > a > i {
  font-size: 24px;
}
.menu-wrapper .layout-menu-container .layout-menu li > a > i.layout-submenu-toggler {
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  margin-left: auto;
  font-size: 12px;
  visibility: hidden;
}
.menu-wrapper .layout-menu-container .layout-menu li > a.rotated-icon i {
  transform: rotate(90deg);
}
.menu-wrapper .layout-menu-container .layout-menu li > ul {
  display: none;
  list-style-type: none;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul li ul {
  display: none;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li {
  padding: 0;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li > a {
  padding: 10px 18px;
  margin-left: 0px;
  padding-right: 8px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li i {
  font-size: 14px;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li ul li {
  padding: 0;
}
.menu-wrapper .layout-menu-container .layout-menu li > ul > li.layout-root-menuitem > a {
  display: -ms-flexbox;
  display: flex;
}
.menu-wrapper #powerdBy {
  width: 88%;
  margin: 10px 8% 20px;
  max-width: 14rem;
  position: absolute;
  bottom: 0;
}

@media (min-width: 992px) {
  .layout-wrapper.layout-sidebar .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
    display: none;
  }
  .layout-wrapper.layout-sidebar .layout-main {
    padding-left: 62px;
  }
  .layout-wrapper.layout-static .menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo {
    justify-content: space-between;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo img.logo-img {
    display: none;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo img.logo-name {
    display: inline;
    opacity: 1;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo .app-name {
    display: none;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo .sidebar-pin {
    display: inline-block;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo .sidebar-pin > span {
    display: block;
    height: 16px;
    width: 16px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #f0f0f0;
    border: 2px solid var(--primary-light-color);
    background-color: #f0f0f0;
    background-color: var(--primary-lighter-color);
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu {
    max-width: 230px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu > li {
    min-width: 230px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu > li > ul > li {
    margin-left: 10px;
    margin-right: 12px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li a {
    padding-left: 20px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li a {
    padding-left: 30px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li ul li a {
    padding-left: 40px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li ul li ul li a {
    padding-left: 50px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li a {
    padding-left: 60px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li a {
    padding-left: 70px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 80px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 90px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 100px;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li > a > span {
    visibility: visible;
    white-space: normal;
  }
  .layout-wrapper.layout-static .menu-wrapper .layout-menu li > a i.layout-submenu-toggler {
    visibility: visible;
  }
  .layout-wrapper.layout-static .layout-main {
    padding-left: 250px;
    -moz-transition: padding-left 0.2s;
    -o-transition: padding-left 0.2s;
    -webkit-transition: padding-left 0.2s;
    transition: padding-left 0.2s;
  }
  .menu-wrapper.layout-sidebar-active {
    transform: translate3d(0px, 0px, 0px);
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo {
    justify-content: space-between;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo img.logo-img {
    visibility: hidden;
    opacity: 0;
    width: 0px;
    margin: 0;
    transition: visibility 0s, opacity 0.5s linear;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo img.logo-name {
    visibility: visible;
    display: inline;
    opacity: 1;
    transition: visibility 0s, opacity 0.5s linear;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo .app-name {
    display: inline;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin {
    display: inline-block;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin > span {
    display: block;
    height: 16px;
    width: 16px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
  }
  .menu-wrapper.layout-sidebar-active .layout-menu {
    max-width: 230px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu > li {
    min-width: 230px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu > li > ul > li {
    margin-left: 10px;
    margin-right: 12px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li a {
    padding-left: 20px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li a {
    padding-left: 30px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li ul li a {
    padding-left: 40px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li ul li ul li a {
    padding-left: 50px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li ul li ul li ul li a {
    padding-left: 60px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li ul li ul li ul li ul li a {
    padding-left: 70px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 80px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 90px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li ul li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 100px;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li > a > span {
    visibility: visible;
    white-space: normal;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu li > a i.layout-submenu-toggler {
    visibility: visible;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu-container {
    overflow: auto;
  }
}
@media (max-width: 991px) {
  .layout-wrapper .menu-wrapper {
    top: 62px;
    z-index: 1010;
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transform: translate3d(-230px, 0px, 0px);
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .layout-wrapper .menu-wrapper .sidebar-logo {
    display: none;
  }
  .layout-wrapper .menu-wrapper .layout-menu-container .layout-menu {
    max-width: 230px;
  }
  .layout-wrapper.layout-mobile-active {
    overflow: hidden;
    height: 100vh;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper {
    transform: translate3d(0px, 0px, 0px);
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu {
    max-width: 230px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu > li {
    min-width: 230px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu > li > ul > li {
    margin-left: 10px;
    margin-right: 12px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li a {
    padding-left: 20px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li a {
    padding-left: 30px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li ul li a {
    padding-left: 40px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li ul li ul li a {
    padding-left: 50px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li a {
    padding-left: 60px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li a {
    padding-left: 70px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 80px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 90px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li ul li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 100px;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li > a > span {
    visibility: visible;
    white-space: normal;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu li > a i.layout-submenu-toggler {
    visibility: visible;
  }
  .layout-wrapper.layout-mobile-active .menu-wrapper .layout-menu-container {
    overflow: auto;
  }
  .layout-wrapper.layout-mobile-active .layout-mask {
    display: block;
  }
  .layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button {
    display: block;
  }
}
@media (min-width: 992px) {
  .layout-wrapper.layout-horizontal .menu-wrapper {
    top: 0px;
    width: 100%;
    height: 62px;
    position: relative;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .sidebar-logo {
    display: none;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu {
    list-style-type: none;
    margin: 0px 16px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
    overflow: visible;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu li.active-menuitem > a i.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-horizontal .menu-wrapper .layout-menu-container .layout-menu > li {
    padding: 0;
    position: relative;
    margin: 0 9px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li .layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li a {
    margin: 0px;
    padding: 10px 5px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li a:before {
    display: none;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li a > span {
    margin: 0 8px;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    visibility: visible;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li a > i {
    font-size: 14px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li a > i.layout-submenu-toggler {
    -moz-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
    margin-left: auto;
    font-size: 12px;
    visibility: visible;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.layout-root-menuitem > div {
    display: none;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    display: none;
    list-style-type: none;
    top: 44px;
    left: 0px;
    width: 230px;
    position: absolute;
    padding: 10px;
    margin: 0;
    z-index: 100;
    overflow: auto;
    max-height: 460px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li {
    border: 0 none;
    margin: 0;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li a {
    padding-left: 20px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li a {
    padding-left: 30px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li a {
    padding-left: 40px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li a {
    padding-left: 50px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li a {
    padding-left: 60px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li ul li a {
    padding-left: 70px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 80px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 90px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul > li ul li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 100px;
  }
  .layout-wrapper.layout-horizontal .menu-wrapper #powerdBy {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button-wrapper .menu-button {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item a {
    display: block;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > .search-input-wrapper {
    display: none;
  }
  .layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem.search-item > ul {
    display: block;
    padding: 0;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
  }
}
@media (min-width: 992px) {
  .layout-wrapper.layout-slim .menu-wrapper {
    width: 62px;
    overflow: visible;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container {
    padding: 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu {
    overflow: visible;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip {
    display: none;
    padding: 0 0.412px;
    position: absolute;
    left: 72px;
    top: 16px;
    line-height: 1;
    border-radius: 2px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    padding: 6px 8px;
    font-weight: 500;
    min-width: 75px;
    white-space: nowrap;
    text-align: center;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
    -moz-box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
    box-shadow: 0 2px 10px 0 rgba(0, 3, 6, 0.16);
  }
  .layout-wrapper.layout-slim .menu-wrapper .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: -4px;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li {
    position: relative;
    padding: 10px 12px 10px 14px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a {
    margin: 0px;
    padding: 6px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: relative;
    border: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a:before {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a span {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a i {
    margin-right: 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a i.layout-submenu-toggler {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a .menuitem-badge {
    display: none;
    margin-left: auto;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a:hover + .layout-menu-tooltip {
    display: block;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    position: absolute;
    top: 0;
    left: 62px;
    min-width: 250px;
    max-height: 450px;
    display: none;
    padding: 10px;
    overflow: auto;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li {
    margin: 0;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    padding: 10px 5px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a > span {
    visibility: visible;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a > i.layout-submenu-toggler {
    visibility: visible;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li a {
    padding-left: 20px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li a {
    padding-left: 30px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li ul li a {
    padding-left: 40px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li ul li ul li a {
    padding-left: 50px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li ul li ul li ul li a {
    padding-left: 60px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 70px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 80px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 90px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li ul li ul li ul li ul li ul li ul li ul li ul li ul li a {
    padding-left: 100px;
  }
  .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
    display: none;
  }
  .layout-wrapper.layout-slim .menu-wrapper #powerdBy {
    width: 88%;
    margin: 10px 5%;
    max-width: 10rem;
    position: absolute;
    bottom: 0;
  }
  .layout-wrapper.layout-slim .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-main {
    padding-left: 62px;
  }
}
.layout-menu-dark .menu-wrapper {
  background-color: #293241;
  border-right: 2px solid #f0f0f0;
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > a {
  color: #E9E9E9;
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
  color: #662c91;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
  color: #662c91;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
  background-color: #662c91;
  background-color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
  background-color: #293241;
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
  background-color: #293241;
  color: #662c91;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
  color: rgba(233, 233, 233, 0.8);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
  background-color: rgba(102, 44, 145, 0.2);
  background-color: var(--primary-lighter-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
  color: #662c91;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a::before {
  background-color: #662c91;
  background-color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper #powerdBy #powerdByPath,
.layout-menu-dark .menu-wrapper #powerdBy #ico-1,
.layout-menu-dark .menu-wrapper #powerdBy #ico-2,
.layout-menu-dark .menu-wrapper #powerdBy #ico-3 {
  fill: #E9E9E9;
  transition: fill 0.3s ease, opacity 1s ease;
  opacity: 0.3;
}
.layout-menu-dark .menu-wrapper #powerdBy:hover #powerdByPath {
  fill: #E9E9E9;
}
.layout-menu-dark .menu-wrapper #powerdBy:hover #ico-3 {
  fill: #70c7a7;
}
.layout-menu-dark .menu-wrapper #powerdBy:hover #ico-2 {
  fill: #0abcd8;
}
.layout-menu-dark .menu-wrapper #powerdBy:hover #ico-1 {
  fill: #5966b4;
}
.layout-menu-dark .menu-wrapper #powerdBy:hover #powerdByPath,
.layout-menu-dark .menu-wrapper #powerdBy:hover #ico-1,
.layout-menu-dark .menu-wrapper #powerdBy:hover #ico-2,
.layout-menu-dark .menu-wrapper #powerdBy:hover #ico-3 {
  opacity: 1;
}
@media (min-width: 992px) {
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a {
    color: #E9E9E9;
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #662c91;
    background-color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
    color: #E9E9E9;
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li a {
    color: rgba(233, 233, 233, 0.8);
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #E9E9E9;
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #E9E9E9;
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #662c91;
    background-color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
    color: #E9E9E9;
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: rgba(233, 233, 233, 0.8);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #E9E9E9;
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper {
    box-shadow: none;
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #E9E9E9;
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    background-color: #293241;
    box-shadow: 0px 10px 40px rgba(41, 50, 65, 0.06);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: rgba(233, 233, 233, 0.8);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip {
    background-color: #293241;
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    color: #ffffff;
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    border-right-color: #293241;
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0px 10px 40px rgba(41, 50, 65, 0.06);
    background-color: #293241;
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: rgba(233, 233, 233, 0.8);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-light-color);
  }
}
@media (max-width: 991px) {
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #E9E9E9;
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #662c91;
    background-color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
    color: #E9E9E9;
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: rgba(233, 233, 233, 0.8);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #E9E9E9;
  }
}

.layout-menu-light .menu-wrapper {
  background-color: #ffffff;
  border-right: 2px solid #f0f0f0;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a {
  color: #293241;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
  color: #662c91;
  color: var(--primary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
  color: #662c91;
  color: var(--primary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
  background-color: #662c91;
  background-color: var(--primary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
  background-color: #ffffff;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
  background-color: #ffffff;
  color: #662c91;
  color: var(--primary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
  color: rgba(41, 50, 65, 0.7);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
  background-color: rgba(102, 44, 145, 0.2);
  background-color: var(--primary-lighter-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
  color: #662c91;
  color: var(--primary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a::before {
  background-color: #662c91;
  background-color: var(--primary-color);
}
.layout-menu-light .menu-wrapper #powerdBy #powerdByPath,
.layout-menu-light .menu-wrapper #powerdBy #ico-1,
.layout-menu-light .menu-wrapper #powerdBy #ico-2,
.layout-menu-light .menu-wrapper #powerdBy #ico-3 {
  fill: #293241;
  transition: fill 0.3s ease, opacity 1s ease;
  opacity: 0.3;
}
.layout-menu-light .menu-wrapper #powerdBy:hover #powerdByPath {
  fill: #293241;
}
.layout-menu-light .menu-wrapper #powerdBy:hover #ico-3 {
  fill: #70c7a7;
}
.layout-menu-light .menu-wrapper #powerdBy:hover #ico-2 {
  fill: #0abcd8;
}
.layout-menu-light .menu-wrapper #powerdBy:hover #ico-1 {
  fill: #5966b4;
}
.layout-menu-light .menu-wrapper #powerdBy:hover #powerdByPath,
.layout-menu-light .menu-wrapper #powerdBy:hover #ico-1,
.layout-menu-light .menu-wrapper #powerdBy:hover #ico-2,
.layout-menu-light .menu-wrapper #powerdBy:hover #ico-3 {
  opacity: 1;
}
@media (min-width: 992px) {
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a {
    color: #293241;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #662c91;
    background-color: var(--primary-color);
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
    color: #293241;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li a {
    color: rgba(41, 50, 65, 0.7);
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #293241;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #293241;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #662c91;
    background-color: var(--primary-color);
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
    color: #293241;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: rgba(41, 50, 65, 0.7);
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #293241;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper {
    box-shadow: none;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #293241;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
    color: var(--primary-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    background-color: #ffffff;
    box-shadow: 0px 10px 40px rgba(41, 50, 65, 0.06);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: rgba(41, 50, 65, 0.7);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip {
    background-color: #293241;
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    color: #ffffff;
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    border-right-color: #293241;
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: 0px 10px 40px rgba(41, 50, 65, 0.06);
    background-color: #ffffff;
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: rgba(41, 50, 65, 0.7);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-color);
  }
}
@media (max-width: 991px) {
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #293241;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #662c91;
    color: var(--primary-color);
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #662c91;
    background-color: var(--primary-color);
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(102, 44, 145, 0.2);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
    color: #293241;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: rgba(41, 50, 65, 0.7);
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(102, 44, 145, 0.1);
    background-color: var(--primary-lighter-color);
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
    color: #293241;
  }
}

.layout-rightpanel {
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 62px;
  height: calc(100% - 62px);
  padding: 0;
  width: 418px;
  overflow: auto;
  background-color: #F7FAFF;
  transform: translate3d(418px, 0px, 0px);
  -moz-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 0px 10px 40px rgba(41, 50, 65, 0.06);
}
.layout-rightpanel .rightpanel-wrapper {
  padding: 22px 20px 40px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section {
  padding: 16px 0;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section .section-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section .section-header > h6 {
  margin: 0;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.tasks-section > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: auto;
  max-height: 320px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.tasks-section > ul > li {
  padding: 16px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.tasks-section > ul > li .task-info h6 {
  color: #3E4754;
  margin: 0 0 4px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.tasks-section > ul > li .task-info > span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: rgba(41, 50, 65, 0.5);
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.tasks-section > ul > li.done {
  opacity: 0.5;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.tasks-section > ul > li.done .task-info h6 {
  text-decoration: line-through;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.favorites-section .favorite-items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  margin: -7px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.favorites-section .favorite-items .favorite-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  box-shadow: 0px 0px 1px rgba(41, 50, 65, 0.5), 0px 1px 1px rgba(41, 50, 65, 0.2);
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  margin: 7px;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.favorites-section .favorite-items .favorite-item:hover {
  background-color: #F7F7F8;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.favorites-section .favorite-items .add-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  width: 80px;
  height: 80px;
  margin: 7px;
  border: 1px dashed #f0f0f0;
  color: #f0f0f0;
  -moz-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.favorites-section .favorite-items .add-item:hover {
  background-color: #F7F7F8;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section {
  margin-top: 40px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel {
  height: 400px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat {
  height: 400px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .fade {
  background-image: linear-gradient(180deg, #F7FAFF 0%, rgba(234, 237, 243, 0) 100%);
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content {
  max-height: 400px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message .message {
  background-color: #ffffff;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts {
  max-height: 400px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.chat-section .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts ul > li:hover {
  background-color: #ffffff;
}

.layout-wrapper.layout-rightpanel-active .layout-rightpanel {
  transform: translate3d(0px, 0px, 0px);
}

@media (max-width: 576px) {
  .layout-rightpanel {
    width: 100%;
    transform: translate3d(100%, 0px, 0px);
  }
}
.layout-footer {
  padding: 30px 36px;
}
.layout-footer .footer-menutitle {
  color: rgba(41, 50, 65, 0.5);
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  min-height: 15px;
  display: block;
  margin-bottom: 9px;
}
.layout-footer .footer-subtitle {
  font-weight: 500;
  font-size: 14px;
  display: block;
  color: rgba(41, 50, 65, 0.5);
}
.layout-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.layout-footer ul > li {
  padding: 7px 0;
}
.layout-footer ul > li > a {
  color: #000000;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.layout-footer ul > li > a:hover {
  color: rgba(41, 50, 65, 0.5);
}
.layout-footer .newsletter-input {
  margin-top: 16px;
  background-color: #ffffff;
  position: relative;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.layout-footer .newsletter-input > input {
  width: 100%;
  background-color: transparent;
  border: none;
  padding: 11px 16px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 200%;
}
.layout-footer .newsletter-input > button {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  position: absolute;
  right: 6px;
  top: 50%;
  margin-top: -16px;
}
.layout-footer .newsletter-input > button > span {
  display: block;
  padding: 0;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
}
.layout-footer .footer-bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.layout-footer .footer-bottom h4 {
  line-height: 22px;
  margin: 0;
  margin-right: 32px;
}
.layout-footer .footer-bottom h6 {
  line-height: 17px;
  margin: 0;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 500;
}
.layout-footer.landing-footer {
  background-color: rgb(52, 58, 64);
  width: 100%;
}
.layout-footer.landing-footer .footer-outer-div {
  justify-content: space-between;
  display: flex;
}
.layout-footer.landing-footer .footer-outer-div div {
  margin: auto;
  width: 210px;
  text-align: center;
}
.layout-footer.landing-footer .footer-outer-div div:first-of-type {
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}
.layout-footer.landing-footer .footer-outer-div div:last-of-type {
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
@media (max-width: 640px) {
  .layout-footer.landing-footer {
    background-color: rgb(52, 58, 64);
    width: 100%;
  }
  .layout-footer.landing-footer .footer-outer-div {
    justify-content: center;
    display: flex;
    flex-direction: column-reverse;
  }
  .layout-footer.landing-footer .footer-outer-div div {
    margin: 1rem auto 0;
    text-align: center;
  }
  .layout-footer.landing-footer .footer-outer-div div:first-of-type, .layout-footer.landing-footer .footer-outer-div div:last-of-type {
    margin: 1rem auto 0;
    text-align: center;
  }
}

/* Utils */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.ui-radius {
  border-radius: 5px !important;
}

.card {
  background: #ffffff;
  padding: 5px;
  box-sizing: border-box;
  box-shadow: 0 10px 40px rgba(41, 50, 65, 0.06);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 2rem;
}
.card:last-child {
  margin-bottom: 0;
}
.card .card-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 16px;
}
.card .card-header h6 {
  margin-bottom: 2px;
}
.card .card-header .subtitle {
  font-weight: 600;
  color: rgba(41, 50, 65, 0.5);
}
.card .card-subtitle {
  color: rgba(41, 50, 65, 0.5);
  font-weight: 600;
  margin: -1rem 0 1rem 0;
}
.card.no-gutter {
  margin-bottom: 0;
}

.nopad {
  padding: 0;
}
.nopad .ui-panel-content {
  padding: 0;
}

.advance-search-col {
  width: calc(100% - 3rem);
  max-width: 350px;
}

.p-sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.ui-text-secondary {
  color: rgba(41, 50, 65, 0.5);
}

.advert-div {
  position: relative;
}
.advert-div a.advert-link {
  position: absolute;
  z-index: 2;
  width: calc(100% - 2rem);
  height: calc(100% - 6rem);
  top: 1rem;
  left: 1rem;
}

.assessment-results .assessment-result-card * img,
.assessment-results .assessment-result-card > img,
.assessment-results .assessment-result-card img {
  width: 38px;
  height: 30px;
  border-radius: 6px;
}

.center-img-50,
.center-img-100,
.center-img-150,
.center-img-200,
.center-img-250 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.center-img-50 img,
.center-img-100 img,
.center-img-150 img,
.center-img-200 img,
.center-img-250 img {
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
}

body .ui-card.assessment-result-card {
  max-width: 100%;
}
body .ui-card.assessment-result-card.ui-secondary-card {
  border-color: #000;
}
body .ui-card.assessment-result-card.ui-secondary-card .ui-card-content {
  height: 150px;
  margin-top: -60px;
}
body .ui-card.assessment-result-card.ui-secondary-card .ui-card-subtitle div {
  width: 100px;
}
body .ui-card.assessment-result-card.ui-secondary-card .ui-card-subtitle div .Fs10 {
  font-size: 16px !important;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6 {
  width: max-content !important;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6.p-pr-0 {
  padding-right: 1rem !important;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6.p-d-flex {
  flex-direction: column;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6.p-d-flex .p-my-auto {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6.p-d-flex .small-img {
  width: 120px;
  height: 120px;
  max-width: 120px;
  min-width: 120px;
  max-height: 120px;
  min-height: 120px;
}

body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(2), body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(2) ~ .p-col-6 {
  margin-right: 15%;
  margin-left: 15%;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(3), body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(3) ~ .p-col-6 {
  margin-right: 6%;
  margin-left: 6%;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(4), body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(4) ~ .p-col-6 {
  margin-right: 3%;
  margin-left: 3%;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(5), body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-child:nth-last-child(5) ~ .p-col-6 {
  margin-right: 1.5%;
  margin-left: 1.5%;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:first-of-type {
  margin-left: auto !important;
}
body .ui-card.assessment-result-card.ui-secondary-card .p-col-6:last-of-type {
  margin-right: auto !important;
}
body .ui-card.assessment-result-card .ui-card-content {
  height: 140px;
}
body .ui-card.assessment-result-card .ui-card-content .p-grid {
  height: 100%;
}
body .ui-card.assessment-result-card.ui-secondary-card .vendor-card-img {
  border: 2px solid var(--secondary-color);
}
body .ui-card.assessment-result-card.ui-primary-card .vendor-card-img {
  border: 2px solid var(--primary-color);
}

.center-img-50 {
  height: 50px !important;
}

.center-img-100 {
  height: 100px !important;
}

.center-img-150 {
  height: 150px !important;
}

.center-img-200 {
  height: 200px !important;
}

.center-img-250 {
  height: 250px !important;
}

.maxWidth {
  width: 100%;
}

.maxHeight {
  height: 100%;
}

.autoHeight {
  height: auto !important;
}

.max100 {
  max-width: 100px !important;
}

.max150 {
  max-width: 150px !important;
}

.max200 {
  max-width: 200px !important;
}

.max400 {
  max-width: 400px !important;
}

.maxCon {
  max-width: max-content !important;
}

.product-item .product-item-content {
  height: 300px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.product-item .product-item-content img {
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
}

.grid-checkbox {
  width: 100%;
}
.grid-checkbox tr {
  background-color: var(--surface-a);
  margin: 1px;
  display: block;
}
.grid-checkbox td {
  padding: 0.5rem 1.2rem;
}

.ui-card.auto-height-card .ui-card-content {
  height: auto !important;
}

.ui-card.vendor-card,
.vendor-card.large-card {
  width: 100%;
}
.ui-card.vendor-card .ui-card-body,
.vendor-card.large-card .ui-card-body {
  background-color: #f7f7f7;
  border-radius: 10px;
}
.ui-card.vendor-card .ui-card-content,
.vendor-card.large-card .ui-card-content {
  position: relative;
  display: flex;
  padding: 0;
}
.ui-card.vendor-card .ui-card-content .ui-button,
.vendor-card.large-card .ui-card-content .ui-button {
  margin: 0 0 auto auto;
}
.ui-card.vendor-card.vendor-card-description .ui-card-footer p,
.vendor-card.large-card.vendor-card-description .ui-card-footer p {
  font-size: 13px;
  font-weight: 200;
  color: var(--secondary-light-color);
  display: -webkit-box;
  height: 62px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.625;
  min-height: 62px;
  max-height: 62px;
}

.vendor-card-img {
  width: 100%;
  overflow: hidden;
  height: 60px;
  width: 60px;
  border-radius: 12px;
  margin-right: 17px;
  position: relative;
  background: #f7f7f7;
  background: linear-gradient(137deg, rgba(0, 168, 158, 0.2), rgba(101, 35, 130, 0.2) 118%), #f7f7f7;
  max-width: 60px;
  min-width: 60px;
  max-height: 60px;
  min-height: 60px;
}
.vendor-card-img.medium-img {
  width: 120px;
  height: 120px;
  max-width: 120px;
  min-width: 120px;
  max-height: 120px;
  min-height: 120px;
}
.vendor-card-img.small-img {
  width: 38px;
  height: 38px;
  max-width: 38px;
  min-width: 38px;
  max-height: 38px;
  min-height: 38px;
}
.vendor-card-img.combined-image {
  width: 100px;
  height: 100px;
  max-width: 100px;
  min-width: 100px;
  max-height: 100px;
  min-height: 100px;
}
.vendor-card-img.rounded-img {
  border-radius: 200px;
}
.vendor-card-img img {
  height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  background: #f7f7f7;
  background: linear-gradient(137deg, rgba(0, 168, 158, 0.2), rgba(101, 35, 130, 0.2) 118%), #f7f7f7;
}
.vendor-card-img .no-vendor-card-img {
  font-size: 14px;
  font-weight: bold;
  color: #00a89e;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 21px;
}

.vendor-card-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.vendor-card-info span {
  margin-top: 0;
  margin-bottom: auto;
}
.vendor-card-info .vendor-card-greybar {
  margin-bottom: 0;
  margin-top: auto;
}

.vendor-card.large-card {
  display: flex;
  flex-direction: row;
}

.ui-border {
  border: solid 1px #d3d8dd;
}
.ui-border.bottom {
  border-width: 0 0 1px 0;
}
.ui-border.top {
  border-width: 1px 0 0 0;
}

body .menu-select-one {
  display: flex;
  justify-content: center;
}
body .menu-select-one .ui-selectonebutton.menu-select-one-button {
  padding: 2px;
  background-color: rgba(118, 118, 128, 0.12);
  border-radius: 8px;
}
body .menu-select-one .ui-selectonebutton.menu-select-one-button .ui-button {
  padding: 4px;
  border-radius: 6px;
  background-color: transparent;
  color: #000;
  border-width: 0;
  font-weight: bold;
}
body .menu-select-one .ui-selectonebutton.menu-select-one-button .ui-button.ui-state-active {
  color: #000;
  background-color: #fff;
  border-width: 0;
  box-shadow: 0px 4px 8px -5px rgba(41, 50, 65, 0.45);
}
body .menu-select-one .ui-selectonebutton.menu-select-one-button .ui-button .ui-button-text {
  padding: 1px 15px;
}

.translating-data-table .left-side-factors .factors-inner {
  border: solid #d4d6d9;
  border-width: 0;
  border-right-width: 1px;
  margin: 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-left {
  border: solid #d4d6d9;
  border-width: 0 1px 0 0;
  padding: 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-left div {
  display: flex;
  height: 2rem;
  text-align: center;
  border: solid #d4d6d9;
  border-width: 0 0 1px 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-left div:last-child {
  border-width: 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-left div:first-child {
  height: 6rem;
}
.translating-data-table .left-side-factors .factors-inner .factors-left div span {
  margin: auto auto 0 auto;
}
.translating-data-table .left-side-factors .factors-inner .factors-left.six-factors div:first-child {
  height: 10rem;
}
.translating-data-table .left-side-factors .factors-inner .factors-left.five-factors div:first-child {
  height: 8rem;
}
.translating-data-table .left-side-factors .factors-inner .factors-left.three-factors div:first-child {
  height: 4rem;
}
.translating-data-table .left-side-factors .factors-inner .factors-left.two-factors div:first-child {
  height: 2rem;
}
.translating-data-table .left-side-factors .factors-inner .factors-center {
  border: solid #d4d6d9;
  border-width: 0 1px 0 0;
  padding: 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-center div {
  display: flex;
  height: 2rem;
  text-align: right;
  border: solid #d4d6d9;
  border-width: 0 0 1px 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-center div:last-child {
  border-width: 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-center div span {
  margin: auto auto 0 auto;
}
.translating-data-table .left-side-factors .factors-inner .factors-right {
  border: solid #d4d6d9;
  border-width: 0;
  padding: 0;
  max-width: 40px;
}
.translating-data-table .left-side-factors .factors-inner .factors-right div {
  display: flex;
  height: 2rem;
  text-align: center;
  border: solid #d4d6d9;
  border-width: 0 0 1px 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-right div:last-child {
  border-width: 0;
}
.translating-data-table .left-side-factors .factors-inner .factors-right div span {
  margin: auto auto 0 auto;
}
.translating-data-table .right-side-factors .factors-inner {
  border: solid #d4d6d9;
  border-width: 0px;
  border-left-width: 1px;
  margin: 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-left {
  border: solid #d4d6d9;
  border-width: 0;
  padding: 0;
  max-width: 40px;
}
.translating-data-table .right-side-factors .factors-inner .factors-left div {
  display: flex;
  height: 2rem;
  text-align: center;
  border: solid #d4d6d9;
  border-width: 0 0 1px 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-left div:last-child {
  border-width: 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-left div span {
  margin: auto auto 0 auto;
}
.translating-data-table .right-side-factors .factors-inner .factors-center {
  border: solid #d4d6d9;
  border-width: 0 0 0 1px;
  padding: 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-center div {
  display: flex;
  height: 2rem;
  text-align: left;
  border: solid #d4d6d9;
  border-width: 0 0 1px 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-center div:last-child {
  border-width: 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-center div span {
  margin: auto auto 0 auto;
}
.translating-data-table .right-side-factors .factors-inner .factors-right {
  border: solid #d4d6d9;
  border-width: 0 0 0 1px;
  padding: 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-right div {
  display: flex;
  height: 2rem;
  text-align: center;
  border: solid #d4d6d9;
  border-width: 0 0 1px 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-right div:last-child {
  border-width: 0;
}
.translating-data-table .right-side-factors .factors-inner .factors-right div:first-child {
  height: 6rem;
}
.translating-data-table .right-side-factors .factors-inner .factors-right div span {
  margin: auto auto 0 auto;
}
.translating-data-table .right-side-factors .factors-inner .factors-right.six-factors div:first-child {
  height: 10rem;
}
.translating-data-table .right-side-factors .factors-inner .factors-right.five-factors div:first-child {
  height: 8rem;
}
.translating-data-table .right-side-factors .factors-inner .factors-right.three-factors div:first-child {
  height: 4rem;
}
.translating-data-table .right-side-factors .factors-inner .factors-right.two-factors div:first-child {
  height: 2rem;
}
.translating-data-table .factors-inner div span:empty {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(212, 214, 217);
}
.translating-data-table.no-edge-factors .left-side-factors .factors-inner .factors-right {
  max-width: inherit;
}
.translating-data-table.no-edge-factors .right-side-factors .factors-inner .factors-left {
  max-width: inherit;
}

.layout-wrapper .layout-ajax-loader {
  position: absolute;
  right: 15px;
  bottom: 70px;
}
.layout-wrapper .layout-ajax-loader .layout-ajax-loader-icon {
  color: red;
  font-size: 32px;
}
.layout-wrapper .layout-footer .footer-bottom #powerdBy {
  display: none;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy {
  width: 85%;
  max-width: 9rem;
  display: inline;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy #powerdByPath,
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy #ico-1,
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy #ico-2,
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy #ico-3 {
  fill: rgba(41, 50, 65, 0.5);
  transition: fill 0.3s ease, opacity 1s ease;
  opacity: 0.5;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #powerdByPath {
  fill: #3E4754;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #ico-3 {
  fill: #70c7a7;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #ico-2 {
  fill: #0abcd8;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #ico-1 {
  fill: #5966b4;
}
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #powerdByPath,
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #ico-1,
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #ico-2,
.layout-wrapper.layout-horizontal .layout-footer .footer-bottom #powerdBy:hover #ico-3 {
  opacity: 1;
}

body div.combined-head .p-col {
  min-width: 220px;
}
body div.combined-head .p-col:first-child:nth-last-child(1), body div.combined-head .p-col:first-child:nth-last-child(1) ~ .p-col {
  width: 100%;
}
body div.combined-head .p-col:first-child:nth-last-child(2), body div.combined-head .p-col:first-child:nth-last-child(2) ~ .p-col {
  width: 50%;
}
body div.combined-head .p-col:first-child:nth-last-child(3), body div.combined-head .p-col:first-child:nth-last-child(3) ~ .p-col {
  width: 33.3%;
}
body div.combined-head .p-col:first-child:nth-last-child(4), body div.combined-head .p-col:first-child:nth-last-child(4) ~ .p-col {
  width: 25%;
}
body div.combined-head .p-col:first-child:nth-last-child(5), body div.combined-head .p-col:first-child:nth-last-child(5) ~ .p-col {
  width: 20%;
}
body div .combined-info .p-col {
  min-width: 220px;
}
body div .combined-info .p-col:first-child:nth-last-child(1), body div .combined-info .p-col:first-child:nth-last-child(1) ~ .p-col {
  width: 100%;
}
@media (max-width: 420px) {
  body div .combined-info .p-col:first-child:nth-last-child(1) .col-matched, body div .combined-info .p-col:first-child:nth-last-child(1) ~ .p-col .col-matched {
    min-width: 100%;
  }
  body div .combined-info .p-col:first-child:nth-last-child(1) .col-missed, body div .combined-info .p-col:first-child:nth-last-child(1) ~ .p-col .col-missed {
    min-width: 100%;
  }
}
body div .combined-info .p-col:first-child:nth-last-child(2), body div .combined-info .p-col:first-child:nth-last-child(2) ~ .p-col {
  width: 50%;
}
@media (max-width: 1024px) {
  body div .combined-info .p-col:first-child:nth-last-child(2) .col-matched, body div .combined-info .p-col:first-child:nth-last-child(2) ~ .p-col .col-matched {
    min-width: 100%;
  }
  body div .combined-info .p-col:first-child:nth-last-child(2) .col-missed, body div .combined-info .p-col:first-child:nth-last-child(2) ~ .p-col .col-missed {
    min-width: 100%;
  }
}
body div .combined-info .p-col:first-child:nth-last-child(3), body div .combined-info .p-col:first-child:nth-last-child(3) ~ .p-col {
  width: 33.3%;
}
@media (max-width: 1529px) {
  body div .combined-info .p-col:first-child:nth-last-child(3) .col-matched, body div .combined-info .p-col:first-child:nth-last-child(3) ~ .p-col .col-matched {
    min-width: 100%;
  }
  body div .combined-info .p-col:first-child:nth-last-child(3) .col-missed, body div .combined-info .p-col:first-child:nth-last-child(3) ~ .p-col .col-missed {
    min-width: 100%;
  }
}
body div .combined-info .p-col:first-child:nth-last-child(4), body div .combined-info .p-col:first-child:nth-last-child(4) ~ .p-col {
  width: 25%;
}
@media (max-width: 1800px) {
  body div .combined-info .p-col:first-child:nth-last-child(4) .col-matched, body div .combined-info .p-col:first-child:nth-last-child(4) ~ .p-col .col-matched {
    min-width: 100%;
  }
  body div .combined-info .p-col:first-child:nth-last-child(4) .col-missed, body div .combined-info .p-col:first-child:nth-last-child(4) ~ .p-col .col-missed {
    min-width: 100%;
  }
}
body div .combined-info .p-col:first-child:nth-last-child(5), body div .combined-info .p-col:first-child:nth-last-child(5) ~ .p-col {
  width: 20%;
}
@media (max-width: 2299px) {
  body div .combined-info .p-col:first-child:nth-last-child(5) .col-matched, body div .combined-info .p-col:first-child:nth-last-child(5) ~ .p-col .col-matched {
    min-width: 100%;
  }
  body div .combined-info .p-col:first-child:nth-last-child(5) .col-missed, body div .combined-info .p-col:first-child:nth-last-child(5) ~ .p-col .col-missed {
    min-width: 100%;
  }
}
body .combined-info .p-col .col-matched,
body .combined-info .p-col .col-missed {
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding: 0 1rem;
}

.p-xxl-1,
.p-xxl-2,
.p-xxl-3,
.p-xxl-4,
.p-xxl-5,
.p-xxl-6,
.p-xxl-7,
.p-xxl-8,
.p-xxl-9,
.p-xxl-10,
.p-xxl-11,
.p-xxl-12,
.p-xxxl-1,
.p-xxxl-2,
.p-xxxl-3,
.p-xxxl-4,
.p-xxxl-5,
.p-xxxl-6,
.p-xxxl-7,
.p-xxxl-8,
.p-xxxl-9,
.p-xxxl-10,
.p-xxxl-11,
.p-xxxl-12 {
  padding: 1rem;
}

@media screen and (min-width: 1800px) {
  .p-xxl-1,
  .p-xxl-2,
  .p-xxl-3,
  .p-xxl-4,
  .p-xxl-5,
  .p-xxl-6,
  .p-xxl-7,
  .p-xxl-8,
  .p-xxl-9,
  .p-xxl-10,
  .p-xxl-11,
  .p-xxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .p-xxl-1 {
    width: 8.3333%;
  }
  .p-xxl-2 {
    width: 16.6667%;
  }
  .p-xxl-3 {
    width: 25%;
  }
  .p-xxl-4 {
    width: 33.3333%;
  }
  .p-xxl-5 {
    width: 41.6667%;
  }
  .p-xxl-6 {
    width: 50%;
  }
  .p-xxl-7 {
    width: 58.3333%;
  }
  .p-xxl-8 {
    width: 66.6667%;
  }
  .p-xxl-9 {
    width: 75%;
  }
  .p-xxl-10 {
    width: 83.3333%;
  }
  .p-xxl-11 {
    width: 91.6667%;
  }
  .p-xxl-12 {
    width: 100%;
  }
  .p-xxl-offset-12 {
    margin-left: 100%;
  }
  .p-xxl-offset-11 {
    margin-left: 91.66666667%;
  }
  .p-xxl-offset-10 {
    margin-left: 83.33333333%;
  }
  .p-xxl-offset-9 {
    margin-left: 75%;
  }
  .p-xxl-offset-8 {
    margin-left: 66.66666667%;
  }
  .p-xxl-offset-7 {
    margin-left: 58.33333333%;
  }
  .p-xxl-offset-6 {
    margin-left: 50%;
  }
  .p-xxl-offset-5 {
    margin-left: 41.66666667%;
  }
  .p-xxl-offset-4 {
    margin-left: 33.33333333%;
  }
  .p-xxl-offset-3 {
    margin-left: 25%;
  }
  .p-xxl-offset-2 {
    margin-left: 16.66666667%;
  }
  .p-xxl-offset-1 {
    margin-left: 8.33333333%;
  }
  .p-xxl-offset-0 {
    margin-left: 0%;
  }
}
@media screen and (min-width: 2400px) {
  .p-xxxl-1,
  .p-xxxl-2,
  .p-xxxl-3,
  .p-xxxl-4,
  .p-xxxl-5,
  .p-xxxl-6,
  .p-xxxl-7,
  .p-xxxl-8,
  .p-xxxl-9,
  .p-xxxl-10,
  .p-xxxl-11,
  .p-xxxl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .p-xxxl-1 {
    width: 8.3333%;
  }
  .p-xxxl-2 {
    width: 16.6667%;
  }
  .p-xxxl-3 {
    width: 25%;
  }
  .p-xxxl-4 {
    width: 33.3333%;
  }
  .p-xxxl-5 {
    width: 41.6667%;
  }
  .p-xxxl-6 {
    width: 50%;
  }
  .p-xxxl-7 {
    width: 58.3333%;
  }
  .p-xxxl-8 {
    width: 66.6667%;
  }
  .p-xxxl-9 {
    width: 75%;
  }
  .p-xxxl-10 {
    width: 83.3333%;
  }
  .p-xxxl-11 {
    width: 91.6667%;
  }
  .p-xxxl-12 {
    width: 100%;
  }
  .p-xxxl-offset-12 {
    margin-left: 100%;
  }
  .p-xxxl-offset-11 {
    margin-left: 91.66666667%;
  }
  .p-xxxl-offset-10 {
    margin-left: 83.33333333%;
  }
  .p-xxxl-offset-9 {
    margin-left: 75%;
  }
  .p-xxxl-offset-8 {
    margin-left: 66.66666667%;
  }
  .p-xxxl-offset-7 {
    margin-left: 58.33333333%;
  }
  .p-xxxl-offset-6 {
    margin-left: 50%;
  }
  .p-xxxl-offset-5 {
    margin-left: 41.66666667%;
  }
  .p-xxxl-offset-4 {
    margin-left: 33.33333333%;
  }
  .p-xxxl-offset-3 {
    margin-left: 25%;
  }
  .p-xxxl-offset-2 {
    margin-left: 16.66666667%;
  }
  .p-xxxl-offset-1 {
    margin-left: 8.33333333%;
  }
  .p-xxxl-offset-0 {
    margin-left: 0%;
  }
}
.loading-div {
  width: 120px;
  height: 120px;
  margin: 2rem;
  position: relative;
}
.loading-div.data #loadingSvg g path:nth-child(1) {
  stroke: #14bcd9;
}
.loading-div.data #loadingSvg g path:nth-child(2) {
  stroke: #72c7a8;
}
.loading-div.data #loadingSvg g path:nth-child(3) {
  stroke: #5a68b1;
}

#loadingSvg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
}
#loadingSvg g path {
  fill: none;
  fill-opacity: 1;
  stroke-width: 9.78958321;
  stroke-miterlimit: 4;
  stroke-opacity: 1;
  stroke-linejoin: round;
  stroke-linecap: round;
  animation-name: loading-anim;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  opacity: 0;
}
#loadingSvg g path:nth-child(1) {
  stroke-dasharray: 219.42;
  stroke-dashoffset: 219.42;
  animation-delay: 6s;
}
#loadingSvg g path:nth-child(2) {
  stroke-dasharray: 164.7;
  stroke-dashoffset: 164.7;
  animation-delay: 3s;
}
#loadingSvg g path:nth-child(3) {
  stroke-dasharray: 106.8;
  stroke-dashoffset: 106.8;
}

.loading-div.forChad #loadingSvg g path {
  animation-name: loading-chad;
  animation-duration: 1.5s;
}
.loading-div.forChad #loadingSvg g path:nth-child(1) {
  animation-delay: 3s;
}
.loading-div.forChad #loadingSvg g path:nth-child(2) {
  animation-delay: 1.5s;
}

@keyframes loading-anim {
  80% {
    opacity: 0.9;
    stroke-dashoffset: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading-chad {
  0% {
    opacity: 1;
  }
  5% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  85% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  95% {
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 576px) {
  body .ui-card.assessment-result-card {
    width: 100%;
    max-width: 100%;
  }
  body .ui-card.assessment-result-card .ui-card-content {
    height: auto;
  }
  body .ui-card.assessment-result-card .ui-card-content .p-grid {
    height: 100%;
  }
}
.layout-dashboard .chart {
  overflow: auto;
  position: relative;
}
.layout-dashboard .mobile-teams {
  display: none;
}

@media (max-width: 1200px) {
  .layout-dashboard .desktop-teams {
    display: none;
  }
  .layout-dashboard .mobile-teams {
    display: block;
  }
  .layout-dashboard .mobile-teams .team {
    height: 100%;
    flex-direction: column;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .layout-dashboard .mobile-teams .team .peoples {
    margin: 12px -8px;
  }
}
.overview-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 24px;
  height: 100%;
  min-width: 200px;
}
.overview-box .overview-info > h6 {
  margin: 0 0 2px;
}
.overview-box .overview-info > h1 {
  margin: 0;
}
.overview-box > i {
  font-size: 24px;
}
.overview-box.white {
  background: #FFFFFF;
  color: #000000
}
.overview-box.blue {
  background: #69B7FF;
  color: #FFFFFF;
}
.overview-box.gray {
  background: rgba(41, 50, 65, 0.4);
  color: #FFFFFF;
}
.overview-box.darkgray {
  background: rgba(41, 50, 65, 0.8);
  color: #FFFFFF;
}
.overview-box.orange {
  background: linear-gradient(90deg, #FFB340 0%, #FFA740 100%);
  color: #FFFFFF;
}

.timeline {
  padding-right: 4px;
}
.timeline > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 372px;
  overflow: auto;
  margin-bottom: 1em;
}
.timeline > ul > li {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
.timeline > ul > li > i {
  font-size: 8px;
  margin-right: 10px;
  margin-top: 4px;
}
.timeline > ul > li .event-content span {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 12px;
  color: rgba(41, 50, 65, 0.5);
}
.timeline > ul > li .event-content span.event-title {
  color: #3E4754;
}
.timeline > ul > li .event-content span.time {
  font-size: 10px;
  font-weight: 400;
  color: rgba(41, 50, 65, 0.5);
}
.timeline > ul > li.blue > i {
  color: #297FFF;
}
.timeline > ul > li.green > i {
  color: #34B56F;
}
.timeline > ul > li.orange > i {
  color: #FFA928;
}

.statistics .statistic-item .item-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4px;
}
.statistics .statistic-item .item-title span {
  display: block;
  margin-right: 12px;
}
.statistics .statistic-item .item-title h5 {
  margin: 0;
  font-weight: 700;
}
.statistics .statistic-item h6 {
  margin: 0;
  font-weight: 600;
  color: rgba(41, 50, 65, 0.5);
}

.operations {
  overflow: auto;
  position: relative;
}
.operations .insights {
  padding: 16px 15px;
  background-color: rgba(41, 127, 255, 0.04);
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  margin: 12px 0 16px;
}
.operations .insights .insight-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
}
.operations .insights .insight-header h6 {
  margin: 0 6px;
}
.operations .insights > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.operations .insights > ul > li {
  margin: 8px 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: rgba(41, 50, 65, 0.5);
}
.operations .insights > ul > li span {
  font-weight: 600;
}
.operations .insights > ul > li span > span {
  font-size: 8px;
  line-height: 10px;
  font-weight: normal;
}
.operations > button {
  width: 100%;
}

.notification {
  padding: 30px 24px;
  background-color: #ffffff;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.notification > h6 {
  margin: 0;
  color: #000000
}
.notification > h6 > a {
  margin-left: 10px;
}
.notification > h6 > a i {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.image-card {
  padding: 0;
  position: relative;
}
.image-card > span {
  position: absolute;
  right: 20px;
  top: 20px;
}
.image-card > img {
  width: 100%;
  height: auto;
  border-radius: 24px 24px 12px 12px;
}
.image-card .image-content {
  padding: 32px 20px 28px;
}
.image-card .image-content h6 {
  margin: 0 0 8px;
}
.image-card .image-content > p {
  color: rgba(41, 50, 65, 0.5);
}
.image-card .image-content > button {
  margin-top: 32px;
  width: 100%;
}

.login-wrapper .login-panel {
  width: 50%;
  height: 100%;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  margin: 5px auto;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  flex: 1 1 100%;
}

.login-wrapper .login-panel > a {
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
}
.login-wrapper .login-panel > a.forget-password {
  margin-left: 0;
  margin-right: auto;
  color: #00a89e;
}
.login-wrapper .login-panel .div-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.login-wrapper .login-panel .div-link a {
  font-weight: bold;
  font-size: 18px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
}

.login-wrapper .login-panel > p {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
  color: #000000;
  margin-top: 40px;
}
.login-wrapper .login-panel > p > a {
  color: #662c91;
  cursor: pointer;
}
.login-wrapper .login-panel .ui-input-icon-right {
  width: 100%;
}
.login-wrapper .login-panel .ui-input-icon-right > i {
  margin-top: -0.8rem !important;
  right: 1rem !important;
}
.login-wrapper .login-panel > input,
.login-wrapper .login-panel .ui-inputfield {
  width: 100%;
  margin-bottom: 20px;
  border: solid 2px #a0aeb7;
  background-color: #fff;
  color: #515c66;
}
.login-wrapper .login-panel > input::placeholder,
.login-wrapper .login-panel .ui-inputfield::placeholder {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 0.75;
}
.login-button {
  width: 100%;
  margin-bottom: 10px;
  padding: 0;
}
.login-wrapper .login-panel > button {
  width: 100%;
  max-width: none;
  margin-bottom: 20px;
}
.login-wrapper .login-panel > button > span {
  margin: 10px 10px !important;
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}
.login-wrapper .login-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 70px;
}
.login-wrapper .login-footer h4 {
  line-height: 22px;
  margin: 0;
  margin-right: 32px;
}
.login-wrapper .login-footer h6 {
  line-height: 17px;
  margin: 0;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 500;
}

.login-body.dark-login-one {
  background: linear-gradient(-180deg, #08a79d 0%, #415c96 100%);
}
.login-body.dark-login-two {
  background: linear-gradient(-180deg, #0b9397 5%, #32618d 70%, #5a3084 100%);
}
.login-wrapper .login-panel .logo, .login-body.dark-login-two .login-wrapper .login-panel .logo {
  margin-bottom: 16px;
}
.login-wrapper .login-panel .logo img, .login-body.dark-login-two .login-wrapper .login-panel .logo img {
  height: 84px;
}
.login-wrapper .login-panel .logo img.dark, .login-body.dark-login-two .login-wrapper .login-panel .logo img.dark {
  display: none;
}
.login-wrapper .login-panel .logo img.light, .login-body.dark-login-two .login-wrapper .login-panel .logo img.light {
  display: inline-block;
}
.login-wrapper .login-panel > a,
.login-wrapper .login-panel > p,
.login-wrapper .login-panel > a, .login-body.dark-login-two .login-wrapper .login-panel > a,
.login-wrapper .login-panel > p,
.login-wrapper .login-panel > a {
  color: #ffffff;
}


@media (max-width: 992px) {
  .login-wrapper .login-panel {
    width: 95%;
    margin: auto;
  }
}
.exception-body .exception-topbar {
  height: 62px;
  background-color: #ffffff;
  box-shadow: 0 10px 40px 0 rgba(41, 50, 65, 0.06);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 16px;
}
.exception-body .exception-topbar .layout-topbar-logo > img {
  height: 15px;
}
.exception-body .exception-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100vh - 62px);
}
.exception-body .exception-wrapper .exception-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  flex: 1 1 auto;
}
.exception-body .exception-wrapper .exception-content > span {
  font-weight: normal;
  font-size: 60px;
  line-height: 73px;
  text-align: center;
  display: block;
}
.exception-body .exception-wrapper .exception-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 70px;
}
.exception-body .exception-wrapper .exception-footer h4 {
  line-height: 22px;
  margin: 0;
  margin-right: 32px;
}
.exception-body .exception-wrapper .exception-footer h6 {
  line-height: 17px;
  margin: 0;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 500;
}
.exception-body.notfound .exception-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100vh - 62px);
}
.exception-body.notfound .exception-wrapper .exception-content {
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  flex: 1 1 auto;
}
.exception-body.notfound .exception-wrapper .exception-content img {
  width: 332px;
  height: 271px;
  margin-bottom: -150px;
}
.exception-body.notfound .exception-wrapper .exception-content > span {
  font-size: 140px;
  line-height: 171px;
}
.exception-body.notfound .exception-wrapper .exception-content > span.exception-subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: rgba(41, 50, 65, 0.5);
}
.exception-body.notfound .exception-wrapper .exception-content > button {
  padding: 0;
  margin-top: 20px;
  width: 155px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.exception-body.notfound .exception-wrapper .exception-content > button > span {
  padding: 18px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .exception-body .exception-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100vh - 62px);
  }
  .exception-body .exception-wrapper .exception-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px;
  }
}
.landing-body {
  background-color: #ffffff;
}
.landing-body .p-grid {
  width: 100%;
}
.landing-body .color-block {
  position: absolute;
  opacity: 1;
  border-radius: 15px;
  transform: rotate(-20deg);
}
.landing-body .color-block.small {
  width: 44px;
  height: 44px;
  width: calc(20px + 2vw);
  height: calc(20px + 2vw);
}
.landing-body .color-block.medium {
  width: 75px;
  height: 75px;
  width: calc(35px + 2vw);
  height: calc(35px + 2vw);
}
.landing-body .color-block.large {
  width: 120px;
  height: 120px;
  width: calc(70px + 2vw);
  height: calc(70px + 2vw);
}
.landing-body .color-block.primary {
  background-color: var(--primary-color);
}
.landing-body .color-block.secondary {
  background-color: var(--secondary-color);
}
.landing-body .color-block.light {
  opacity: 0.3;
}
.landing-body .color-block.one {
  right: 47%;
  top: 47%;
}
.landing-body .color-block.two {
  bottom: 7%;
  right: 56%;
}
.landing-body .color-block.three {
  bottom: 11%;
  right: 23%;
}
.landing-body .color-block.four {
  top: 33%;
  left: 46%;
}
.landing-body .color-block.five {
  bottom: 39%;
  right: 7%;
}
.landing-body .border-left {
  border-left: 5px solid var(--primary-color);
  padding-left: 18px;
}
.landing-body .ellipse {
  min-width: 4px !important;
  min-height: 4px !important;
  border-radius: 4px;
  flex-grow: 0;
  margin: 20px 20px 20px 20px;
  background-color: var(--secondary-color);
}
.landing-body .dots-banner {
  margin: 36px 0;
  width: 246px;
}
.landing-body .dots-banner.primary path {
  fill: var(--primary-color);
}
.landing-body .dots-banner.secondary path {
  fill: var(--secondary-color);
}
.landing-body .dots-banner.light path {
  fill: var(--surface-a);
}
.landing-body .landing-topbar {
  height: 83px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  z-index: 999;
  padding: 20px 18px;
  padding-left: 0px;
  position: fixed;
  top: 0;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.landing-body .landing-topbar .landing-topbar-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-left: calc(20px + 4vw);
}
.landing-body .landing-topbar .landing-topbar-left img {
  height: 67px;
  width: auto;
  margin-top: 10px;
  margin-bottom: -10px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.landing-body .landing-topbar .landing-topbar-right {
  display: flex;
}
.landing-body .landing-topbar .landing-topbar-right > ul {
  list-style-type: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.landing-body .landing-topbar .landing-topbar-right > ul > li #landing-menu-close {
  display: none;
}
.landing-body .landing-topbar .landing-topbar-right > ul > li > a {
  font-weight: normal;
  font-size: 16px;
  line-height: 14px;
  color: #fff;
  padding: 14px 10px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  margin: 0 10px;
  min-width: 100px;
  -moz-transition: color 0.2s;
  -o-transition: color 0.2s;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.landing-body .landing-topbar .landing-topbar-right > ul > li > a:hover {
  color: #662c91;
}
.landing-body .landing-topbar .landing-topbar-right #landing-menu-button {
  display: none;
  padding: 0 8px;
  cursor: pointer;
}
.landing-body .landing-topbar .landing-topbar-right #landing-menu-button i {
  font-size: 20px;
  color: #fff;
}
.landing-body .landing-topbar .landing-topbar-right .landing-button {
  margin-left: 20px;
}
.landing-body .landing-button {
  background: var(--primary-color);
  border: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.landing-body .landing-button.ui-button,
.landing-body .landing-button > a {
  padding: 0;
}
.landing-body .landing-button.ui-button > .ui-button-text,
.landing-body .landing-button.ui-button .ui-button-text,
.landing-body .landing-button > a > .ui-button-text,
.landing-body .landing-button > a .ui-button-text {
  padding: 15px 35px;
  min-width: 110px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  line-height: 16px;
  display: block;
}
.landing-body .landing-button:hover {
  background: var(--primary-dark-color);
}
.landing-body .landing-button.secondary-button {
  background: var(--secondary-color);
}
.landing-body .landing-button.secondary-button:hover {
  background: var(--secondary-dark-color);
}
.landing-body .landing-banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 30vh calc(20px + 4vw) 20vh;
  position: relative;
  transform-style: inherit;
  background: url("/javax.faces.resource/images/pages/agree-men.png.jsf?ln=freya-layout"), url("/javax.faces.resource/images/pages/Rectangle308.svg.jsf?ln=freya-layout");
  background-size: calc(200px + 42vw);
  background-repeat: no-repeat;
  background-position: right bottom, right top;
  min-height: 500px;
  height: 100vh;
}
.landing-body .landing-banner .landing-banner-content {
  position: relative;
}
.landing-body .landing-banner .landing-banner-content .title {
  display: block;
  font-size: 55px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1.7px;
  text-align: left;
  color: #000;
  margin-bottom: 30px;
}
.landing-body .landing-banner .landing-banner-content .title span {
  color: var(--primary-color);
}
.landing-body .landing-banner .landing-banner-content h3 {
  margin: 40px 0 30px;
  color: #000000;
  font-weight: 500;
  line-height: 29px;
}
.landing-body .section-header {
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
}
.landing-body .section-header .title {
  display: block;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  color: rgba(41, 50, 65, 0.9);
}
.landing-body .section-header h3 {
  margin: 15px 0 100px;
  color: rgba(41, 50, 65, 0.9);
  font-weight: 500;
  line-height: 29px;
  max-width: 800px;
}
.landing-body .landing-about {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: calc(80px + 4vh) calc(20px + 4vw);
  position: relative;
  transform-style: inherit;
  background: url("");
  background-size: calc(100px + 10vw);
  background-repeat: no-repeat;
  background-position: right calc(200px + 30vh);
  min-height: 800px;
  height: 120vh;
}
.landing-body .landing-about img.bird {
  width: calc(129px + 12vw);
  position: absolute;
  right: calc(40px + 2vw);
  bottom: calc(-6px - 2vh);
  z-index: 1;
}
.landing-body .landing-journey {
  position: relative;
  transform-style: inherit;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.landing-body .landing-journey img.hand {
  width: 40vw;
}

.card-journey {
  border-radius: 31px;
  box-shadow: 8px 8px 24px 0 rgba(2, 2, 70, 0.05);
  background-color: #fff;
}

.journey-map {
  max-width: calc(36px + 3rem);
  padding: 0 1.5rem;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 45%, var(--secondary-color) 45%, var(--secondary-dark-color) 55%, rgba(255, 255, 255, 0) 55%);
  background-size: 100% 100%;
  background-origin: unset;
  background-clip: unset;
  background-repeat: no-repeat;
  min-height: 80px;
}

.journey-map-end {
  max-width: calc(36px + 3rem);
  padding: 0 1.5rem;
  text-align: center;
  background-size: 100% 100%;
  background-origin: unset;
  background-clip: unset;
  background-repeat: no-repeat;
}

.landing-body .landing-solutions {
  /* Targtes on Chrome, Edge, and Safari */
  --solution-card-width: 263px;
  background-color: #ffffff;
  position: relative;
  text-align: center;
}
.landing-body .landing-solutions *::-webkit-scrollbar {
  width: 40px;
  height: 40px;
}
.landing-body .landing-solutions *::-webkit-scrollbar-track {
  background: #d9d9d9;
  border-radius: 20px;
  margin: 0 10vw;
}
.landing-body .landing-solutions *::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 40px;
}
.landing-body .landing-solutions ::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0;
  border-radius: 0;
  background: url("/javax.faces.resource/images/pages/barOnly.svg.jsf?ln=freya-layout");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-position: center;
  background-color: #01a89e;
  border-radius: 30px;
  box-shadow: inset 0px 0px 0px 8px #d9d9d9, inset 0px 8px 0px 0px #d9d9d9, inset 8px 0px 0px 0px #d9d9d9, inset -8px 0px 0px 0px #d9d9d9, inset 0px -8px 0px 0px #d9d9d9, inset 0px 0px 12px 10px rgba(82, 82, 82, 0.4);
}
.landing-body .landing-solutions h1 {
  margin-left: calc(50px + 2vw);
  text-align: left;
  margin-bottom: 3rem;
}
.landing-body .landing-solutions .solution-view {
  max-width: 100%;
  overflow-x: auto;
}
.landing-body .landing-solutions .solution-scroll {
  width: calc(var(--solution-card-width) * 7);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.landing-body .landing-solutions .solution-journey {
  width: calc(var(--solution-card-width) * 2);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.landing-body .landing-solutions .solution-scroll .solution-card {
  overflow: hidden;
  display: inline-block;
  width: var(--solution-card-width);
  height: 478px;
  padding: 47px 14px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-body .landing-solutions .solution-journey .solution-card {
  overflow: hidden;
  display: inline-block;
  width: calc(var(--solution-card-width) * 2);
  padding: 47px 14px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-body .landing-solutions .solution-scroll .solution-card h2 {
  min-height: 120px;
}
.landing-body .landing-solutions .solution-scroll .solution-card p {
  min-height: 150px;
}
.landing-body .landing-solutions .solution-scroll .solution-card h2,
.landing-body .landing-solutions .solution-scroll .solution-card p {
  color: var(--primary-color-text);
  text-align: left;
}
.landing-body .landing-solutions .solution-scroll .solution-card .ui-button {
  width: 100%;
}
.landing-body .landing-solutions .solution-scroll .solution-card:nth-of-type(even) {
  background-color: var(--secondary-color);
}
.landing-body .landing-solutions .solution-scroll .solution-card:nth-of-type(even) > .ui-button {
  background-color: var(--primary-color);
}
.landing-body .landing-solutions .solution-scroll .solution-card:nth-of-type(odd) {
  background-color: var(--primary-color);
}
.landing-body .landing-solutions .solution-scroll .solution-card:nth-of-type(odd) > .ui-button {
  background-color: var(--secondary-color);
}
.landing-body .landing-solutions .solution-scroll .solution-card.bubble-one {
  background-image: url("/javax.faces.resource/images/pages/Bubble-one.svg.jsf?ln=freya-layout");
}
.landing-body .landing-solutions .solution-scroll .solution-card.bubble-two {
  background-image: url("/javax.faces.resource/images/pages/Bubble-two.svg.jsf?ln=freya-layout");
}
.landing-body .landing-solutions .solution-scroll .solution-card.bubble-three {
  background-image: url("/javax.faces.resource/images/pages/Bubble-three.svg.jsf?ln=freya-layout");
}
.landing-body .landing-solutions .solution-scroll .solution-card.bubble-four {
  background-image: url("/javax.faces.resource/images/pages/Bubble-four.svg.jsf?ln=freya-layout");
}
.landing-body .landing-solutions .solution-scroll .solution-card.bubble-five {
  background-image: url("/javax.faces.resource/images/pages/Bubble-five.svg.jsf?ln=freya-layout");
}
.landing-body .landing-testimonials {
  padding: calc(50px + 2vw);
}
.landing-body .landing-testimonials h1 {
  margin-bottom: 82px;
}
.landing-body .landing-testimonials .testimonial-card {
  width: 50%;
  position: relative;
}
.landing-body .landing-testimonials .testimonial-card img.quote {
  position: absolute;
}
.landing-body .landing-testimonials .testimonial-card img.quote.top {
  top: -16px;
  left: 10px;
}
.landing-body .landing-testimonials .testimonial-card img.quote.bottom {
  bottom: -16px;
  right: 10px;
}
.landing-body .landing-testimonials .testimonial-card .testimonial-card-info {
  padding: 29px 31px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
}
.landing-body .landing-testimonials .testimonial-card .testimonial-card-info .testimonial-name .testimonial-img {
  max-width: 60px;
  max-height: 60px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
}
.landing-body .landing-joinUs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  transform-style: inherit;
  background: url("/javax.faces.resource/images/pages/Rectangle309.svg.jsf?ln=freya-layout");
  background-size: calc(200px + 39vw);
  background-repeat: no-repeat;
  background-position: left bottom;
}
.landing-body .landing-joinUs .joinUs-card {
  background-color: #fff;
  padding: 26px;
  box-shadow: 0 3px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  max-width: 530px;
  width: 100%;
  line-height: 25px;
}
.landing-body .landing-joinUs .dots-banner {
  position: absolute;
  width: calc(100px + 4vw);
}
.landing-body .landing-joinUs .dots-banner.secondary {
  right: 0px;
  top: 6%;
}
.landing-body .landing-joinUs .dots-banner.light {
  margin: 0;
  left: calc(20px + 4vw);
  bottom: 0;
}
.landing-body .landing-joinUs .joinUs-max {
  min-height: 100%;
  padding-left: 30px;
}
.landing-body .layout-footer {
  background-color: #343a40;
  position: relative;
}
.landing-body .layout-footer .footer-menutitle {
  color: rgba(41, 50, 65, 0.2);
}
.landing-body .layout-footer .footer-subtitle {
  color: rgba(41, 50, 65, 0.3);
}
.landing-body .layout-footer ul > li {
  color: rgba(41, 50, 65, 0.5);
}
.landing-body .layout-footer ul > li > a {
  color: rgba(41, 50, 65, 0.5);
}
.landing-body .layout-footer ul > li > a:hover {
  color: rgba(41, 50, 65, 0.3);
}
.landing-body .layout-footer .newsletter-input {
  background-color: rgba(41, 50, 65, 0.04);
}
.landing-body .layout-footer .footer-bottom {
  color: rgba(41, 50, 65, 0.7);
}
.landing-body .layout-footer .footer-bottom h6 {
  color: rgba(41, 50, 65, 0.5);
}
.landing-body .landing-mask {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 998;
}

@media (max-width: 991px) {
  .landing-body .hide-all-tablet {
    display: none !important;
  }
  .landing-body.block-scroll {
    overflow: hidden;
  }
  .landing-body.block-scroll .landing-wrapper .landing-mask {
    display: block;
  }
  .landing-body .landing-wrapper.landing-menu-active .landing-topbar .landing-menu {
    transform: translate3d(0px, 0px, 0px);
  }
  .landing-body .landing-wrapper .landing-topbar {
    padding: 0 13px;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu {
    position: fixed;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end;
    right: 0;
    top: 0;
    padding: 28px 15px;
    z-index: 999;
    width: 220px;
    height: 100%;
    background-color: #eef5ff;
    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);
    transform: translate3d(260px, 0px, 0px);
    -moz-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li {
    margin: 0;
    width: 100%;
    margin-bottom: 12px;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li > a {
    padding: 6px 16px;
    font-size: 14px;
    text-align: right;
    background-color: #eef5ff;
    display: block;
    color: rgba(41, 50, 65, 0.9);
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li > a:hover {
    color: rgba(41, 50, 65, 0.6);
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li #landing-menu-close {
    display: block;
    font-size: 20px;
    text-align: right;
    color: rgba(41, 50, 65, 0.9);
  }
  .landing-body .landing-wrapper .landing-topbar .landing-menu > li #landing-menu-close:hover {
    color: rgba(41, 50, 65, 0.6);
  }
  .landing-body .landing-wrapper .landing-topbar #landing-menu-button {
    display: block;
    color: rgba(41, 50, 65, 0.9);
    font-size: 20px;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-topbar-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-topbar-right .second-menubutton {
    display: none;
  }
  .landing-body .landing-wrapper .landing-topbar .landing-topbar-right .landing-button {
    margin-right: 20px;
  }
  .landing-body .color-block {
    position: absolute;
    opacity: 1;
    border-radius: 15px;
    transform: rotate(-20deg);
    z-index: -1;
  }
  .landing-body .color-block.small {
    width: 44px;
    height: 44px;
    width: calc(20px + 2vw);
    height: calc(20px + 2vw);
  }
  .landing-body .color-block.medium {
    width: 75px;
    height: 75px;
    width: calc(35px + 2vw);
    height: calc(35px + 2vw);
  }
  .landing-body .color-block.large {
    width: 120px;
    height: 120px;
    width: calc(70px + 2vw);
    height: calc(70px + 2vw);
  }
  .landing-body .color-block.secondary {
    background-color: var(--secondary-color);
  }
  .landing-body .color-block.light {
    opacity: 0.3;
  }
  .landing-body .color-block.one {
    right: 47%;
    top: 47%;
  }
  .landing-body .color-block.two {
    bottom: 7%;
    right: 56%;
  }
  .landing-body .color-block.three {
    bottom: 11%;
    right: 23%;
  }
  .landing-body .color-block.four {
    top: 33%;
    left: 46%;
  }
  .landing-body .color-block.five {
    bottom: 39%;
    right: 7%;
  }
  .landing-body .landing-banner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 19vh calc(20px + 4vw) 13vh;
    position: relative;
    transform-style: inherit;
    background: url("/javax.faces.resource/images/pages/Rectangle308.svg.jsf?ln=freya-layout");
    background-size: calc(200px + 42vw);
    background-repeat: no-repeat;
    background-position: right top;
    min-height: 500px;
    height: auto;
  }
  .landing-body .landing-banner .landing-banner-content {
    width: 100%;
    text-align: center;
  }
  .landing-body .landing-banner .title {
    font-size: 42px;
  }
  .landing-body .landing-banner .title span {
    text-shadow: 1px 2px 2px var(--secondary-color);
  }
  .landing-body .landing-banner h3 {
    margin: 40px 0 30px;
    color: #000000;
    font-weight: 500;
    line-height: 29px;
  }
  .landing-body .landing-about {
    background: none;
    min-height: 957px;
    height: auto;
  }
  .landing-body .landing-about h2 {
    font-size: 30px !important;
  }
  .landing-body .landing-about img.bird {
    width: calc(129px + 12vw);
    position: absolute;
    right: calc(40px + 2vw);
    bottom: calc(-6px - 2vh);
    z-index: 1;
  }

  .landing-body .landing-testimonials {
    padding: calc(50px + 2vw);
  }
  .landing-body .landing-testimonials .testimonial-card {
    width: 100%;
    position: relative;
  }
  .landing-body .landing-joinUs {
    height: auto;
  }
  .landing-body .landing-joinUs .joinUs-card {
    margin: auto;
  }
  .landing-body .landing-joinUs .joinUs-max {
    text-align: right;
  }
  .landing-body .landing-joinUs .joinUs-max h1 {
    text-align: left;
  }
  .landing-body .landing-joinUs .joinUs-max div {
    text-shadow: 0px 0px 3px #fff;
  }
}

@media print {
  .invoice {
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: #424242;
  }
}
.layout-config {
  width: 16rem;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  padding: 1rem;
  overflow: auto;
  background: #ffffff;
  z-index: 999;
  border-left: 0 none;
  transform: translateX(100%);
  transition: transform 0.2s cubic-bezier(0.05, 0.74, 0.2, 0.99);
}
.layout-config.layout-config-active {
  transform: translateX(0);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-config.layout-config-active .layout-config-content .layout-config-button i {
  transform: rotate(360deg);
}
.layout-config .ui-selectoneradio td {
  padding: 0.5rem;
}
.layout-config p {
  line-height: 1.5rem;
  color: #6c757d;
}
.layout-config .layout-themes {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layout-config .layout-themes > div {
  padding: 0.25rem;
}
.layout-config .layout-themes a {
  width: 2rem;
  height: 2rem;
  border-radius: 5px;
  display: block;
  position: relative;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  transition: transform 0.2s;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.layout-config .layout-themes a i {
  font-size: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
}
.layout-config .layout-themes a:hover {
  transform: scale(1.1);
}

.layout-config-button {
  display: block;
  position: fixed;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  background: #662c91;
  color: #ffffff;
  text-align: center;
  top: 50%;
  right: 0;
  margin-top: -1.5rem;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: background-color 0.2s;
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15);
}
.layout-config-button i {
  font-size: 2rem;
  line-height: inherit;
  transform: rotate(0deg);
  transition: transform 1s;
}
.layout-config-button:hover {
  background: #7432a5;
}

/* Add your customizations of the layout styles here */
.layout-wrapper .layout-rightpanel .rightpanel-wrapper {
  position: relative;
  height: 100%;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-header {
  text-align: center;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-header .profile {
  padding: 12px;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-actions {
  padding: 12px 6px 36px;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-actions .actions .action-buttons .p-col-6, .layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-actions .actions .action-buttons .p-md-4 {
  padding: 0.2em;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav {
  background-color: white;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header {
  padding: 1rem;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header a {
  font-size: 12px;
  font-weight: 500;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header > span {
  font-size: 10px;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-nav li.ui-tabs-header.ui-state-active {
  background-color: #F7FAFF;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels {
  background-color: white;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels .ui-tabs-panel {
  padding: 0;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message .message {
  width: 80%;
}
.layout-wrapper .layout-rightpanel .rightpanel-wrapper .rightpanel-chat .ui-tabs .ui-tabs-panels .ui-tabs-panel .chat .chat-input input {
  width: 105px;
  margin-right: 7px;
}

/* Hadeda Dialog Style */

.hadeda-dialog-container {

}

.hadeda-buttons-no-top-margin {
  width: 100%;
  text-align: right;
}

.hadeda-buttons-no-top-margin button {
  margin-left: 0.4em;
  margin-right: 0.4em;
}

.hadeda-buttons {
  margin-top: 1.5em;
  width: 100%;
  text-align: right;
}

.hadeda-buttons button {
  margin-left: 0.4em;
  margin-right: 0.4em;
}
