/* 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;
  }
}
@keyframes fadeinlogo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.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: 1.5rem 0 1rem 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: 2.5rem !important;
}

h2 {
  font-size: 2rem !important;
}

h3 {
  font-size: 1.75rem !important;
}

h4 {
  font-size: 1.5rem !important;
}

h5 {
  font-size: 1.25rem !important;
}

h6 {
  font-size: 1rem !important;
}

.secondary-text-grey {
  color: var(--text-color-secondary) !important;
}

.text-grey {
  color: --text-color !important;
}

.primary-color {
  color: var(--primary-color) !important;
}

.primary-dark-color {
  color: var(--primary-dark-color) !important;
}

.primary-light-color {
  color: var(--primary-light-color) !important;
}

.primary-lighter-color {
  color: var(--primary-lighter-color) !important;
}

.secondary-color {
  color: var(--secondary-color) !important;
}

.secondary-dark-color {
  color: var(--secondary-dark-color) !important;
}

.secondary-light-color {
  color: var(--secondary-light-color) !important;
}

.secondary-lighter-color {
  color: var(--secondary-lighter-color) !important;
}

.primary-color-text {
  color: var(--primary-color-text) !important;
}

mark {
  background: #FFF8E1;
  padding: 0.25rem 0.4rem;
  border-radius: 24px;
  font-family: "DM Sans", sans-serif;
}

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

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

.Fsi {
  font-size: inherit !important;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary-color) var(--secondary-lighter-color);
}

/* Targtes on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 20px;
  height: 20px;
}

*::-webkit-scrollbar-track {
  background: var(--surface-e);
  border-radius: 20px;
}

*::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 20px;
  border-color: var(--surface-e);
  box-shadow: inset 0px 0px 0px 4px var(--surface-e);
  border: 1px solid var(--surface-e);
}

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

body {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #161616;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.blocked-scroll {
  overflow: auto;
}

a {
  text-decoration: none;
  color: #4f8eec;
  color: var(--primary-color);
}
a .card {
  color: var(--primary-color);
}

.ajax-loader {
  font-size: 32px;
  color: #2170E7;
  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: 82px;
  -moz-transition: padding-left 0.2s;
  -o-transition: padding-left 0.2s;
  -webkit-transition: padding-left 0.2s;
  transition: padding-left 0.2s;
}
.layout-main.has-claims-top {
  padding-top: 160px;
}
@media screen and (max-width: 1200px) {
  .layout-main.has-claims-top {
    padding-top: 190px;
  }
}
@media screen and (max-width: 991px) {
  .layout-main.has-claims-top {
    padding-top: 180px;
  }
}
@media screen and (max-width: 796px) {
  .layout-main.has-claims-top {
    padding-top: 190px;
  }
}
@media screen and (max-width: 576px) {
  .layout-main.has-claims-top {
    padding-top: 260px;
  }
}

.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: #111d42;
}
.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: #2170E7;
}

.layout-content {
  padding: 30px 36px 13px;
  flex: 1 1 auto;
}

@media (max-width: 991px) {
  .layout-content {
    padding: 32px 14px;
  }
}
.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: 40px;
  display: flex;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
  height: 40px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-name {
  margin-left: -25px;
}
.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;
  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-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: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
  margin-bottom: 1px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  width: 100%;
  height: 100%;
  margin: 10px 15px;
  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: #111d42;
}
.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: 16px;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a > img {
  height: 28px;
  width: 28px;
  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;
  }
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
    height: 30px;
  }
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
    height: 30px;
  }
  .layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-name {
    margin-left: -19px;
  }
}
@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: #f4f9fe;
  box-shadow: none;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button > i {
  color: #161616;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-left .menu-button:hover {
  background-color: transparent;
  -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: #161616;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i {
  background-color: transparent;
  -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: transparent;
  border: 1px solid var(--secondary-lighter-color);
  color: #161616;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input::placeholder {
  color: #161616;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper i {
  color: #161616;
  opacity: 0.5;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
  box-shadow: none;
  background-color: #f4f9fe;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
  background-color: #4688eb;
}
.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: #4688eb;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  color: #161616;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a i {
  background-color: rgba(33, 112, 231, 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: #161616;
}
.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(33, 112, 231, 0.2);
  background-color: transparent;
  -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: #161616;
  background-color: transparent;
}
.layout-topbar-light .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-rightpanel-button:hover {
  background-color: transparent;
  -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: 40px;
  display: flex;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
  height: 40px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-name {
  margin-left: -25px;
}
.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: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
  margin-bottom: 1px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li > a {
  width: 100%;
  height: 100%;
  margin: 10px 15px;
  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: #111d42;
}
.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: 16px;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.user-profile > a > img {
  height: 28px;
  width: 28px;
  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;
  }
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
    height: 30px;
  }
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img {
    height: 30px;
  }
  .layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo > img.logo-name {
    margin-left: -19px;
  }
}
@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;
  box-shadow: none;
}
.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: #7dabf1;
}
.layout-topbar-dark .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > form > .search-input-wrapper input::placeholder {
  color: #7dabf1;
}
.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: #4688eb;
}
.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: #4688eb;
}
.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(33, 112, 231, 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(33, 112, 231, 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;
}

.layout-floatbar-light .layout-floatbar {
  position: absolute;
  top: 43px;
  z-index: 999;
  width: 100%;
  left: 0;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
.layout-floatbar-light .layout-floatbar .main-float-col {
  padding: 0.5rem 1rem;
  min-height: 5rem;
  display: flex;
}
.layout-floatbar-light .layout-floatbar .p-grid {
  margin: auto !important;
}
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-1,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-2,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-3,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-4,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-5,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-6,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-7,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-8,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-9,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-10,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-11,
.layout-floatbar-light .layout-floatbar .p-grid .p-sm-12,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-1,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-2,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-3,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-4,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-5,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-6,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-7,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-8,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-9,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-10,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-11,
.layout-floatbar-light .layout-floatbar .p-grid .p-md-12,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-1,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-2,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-3,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-4,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-5,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-6,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-7,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-8,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-9,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-10,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-11,
.layout-floatbar-light .layout-floatbar .p-grid .p-lg-12,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-1,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-2,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-3,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-4,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-5,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-6,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-7,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-8,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-9,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-10,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-11,
.layout-floatbar-light .layout-floatbar .p-grid .p-xl-12 {
  padding: 0rem;
}
.layout-floatbar-light .layout-floatbar .p-grid .float-head {
  width: 100%;
  background-image: url("/javax.faces.resource/images/claim/greyBlobOne.svg.jsf?ln=freya-layout"), url("/javax.faces.resource/images/claim/greyBlobTwo.svg.jsf?ln=freya-layout"), url("/javax.faces.resource/images/claim/greyBlobThree.svg.jsf?ln=freya-layout");
  background-size: auto, 50%, 50%;
  background-repeat: no-repeat;
  background-position: left top, right -2px, 10% -2px;
}
.layout-floatbar-light .layout-floatbar .p-grid .float-head h1,
.layout-floatbar-light .layout-floatbar .p-grid .float-head h2,
.layout-floatbar-light .layout-floatbar .p-grid .float-head h3,
.layout-floatbar-light .layout-floatbar .p-grid .float-head h4,
.layout-floatbar-light .layout-floatbar .p-grid .float-head h5,
.layout-floatbar-light .layout-floatbar .p-grid .float-head h6 {
  margin-bottom: 0;
  margin-left: 4rem;
}
.layout-floatbar-light .layout-floatbar .p-grid .p-d-flex {
  justify-content: flex-start;
}
.layout-floatbar-light .layout-floatbar .p-grid .p-d-flex .float-info {
  padding: 0 0.5rem;
  margin: 0 0 0.5rem;
  color: #f4f9fe;
}
.layout-floatbar-light .layout-floatbar .p-grid .p-d-flex .float-info a.ui-commandlink {
  color: #f4f9fe;
  font-size: 1.2rem;
}
.layout-floatbar-light .layout-floatbar .p-grid .p-d-flex .float-info label, .layout-floatbar-light .layout-floatbar .p-grid .p-d-flex .float-info span {
  color: #f4f9fe;
  font-size: 1rem;
}
.layout-floatbar-light .layout-floatbar .p-grid .float-map {
  padding: 0.4rem;
}
.layout-floatbar-light .layout-floatbar .p-grid .float-map a.ui-commandlink {
  color: #f4f9fe;
  font-size: 2.4rem;
}
.layout-floatbar-light .layout-floatbar .layout-floatbar-wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .layout-floatbar-light .layout-floatbar {
    top: 60px;
  }
  .layout-floatbar-light .layout-floatbar .p-grid .float-head h4 {
    margin-left: 2rem;
    font-size: 1.2rem !important;
  }
  .layout-floatbar-light .layout-floatbar .p-grid .float-map a .ui-commandlink {
    font-size: 1rem;
  }
  .layout-floatbar-light .layout-floatbar .p-grid .p-d-flex .float-info {
    margin: 0 0.5rem 0 0;
  }
  .layout-floatbar-light .layout-floatbar .p-grid .p-d-flex .float-info label, .layout-floatbar-light .layout-floatbar .p-grid .p-d-flex .float-info span {
    font-size: 0.8rem;
  }
  .layout-floatbar-light .layout-floatbar .layout-floatbar-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding: 0 6px;
  }
}
.layout-floatbar-light .layout-floatbar {
  background-color: rgba(var(--secondary-color-rgb), 1);
}
.layout-floatbar-dark .layout-floatbar {
  position: absolute;
  top: 43px;
  z-index: 999;
  width: 100%;
  left: 0;
  -moz-transition: width 0.2s;
  -o-transition: width 0.2s;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
.layout-floatbar-dark .layout-floatbar .main-float-col {
  padding: 0.5rem 1rem;
  min-height: 5rem;
  display: flex;
}
.layout-floatbar-dark .layout-floatbar .p-grid {
  margin: auto !important;
}
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-1,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-2,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-3,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-4,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-5,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-6,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-7,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-8,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-9,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-10,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-11,
.layout-floatbar-dark .layout-floatbar .p-grid .p-sm-12,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-1,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-2,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-3,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-4,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-5,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-6,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-7,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-8,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-9,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-10,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-11,
.layout-floatbar-dark .layout-floatbar .p-grid .p-md-12,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-1,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-2,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-3,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-4,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-5,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-6,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-7,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-8,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-9,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-10,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-11,
.layout-floatbar-dark .layout-floatbar .p-grid .p-lg-12,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-1,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-2,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-3,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-4,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-5,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-6,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-7,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-8,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-9,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-10,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-11,
.layout-floatbar-dark .layout-floatbar .p-grid .p-xl-12 {
  padding: 0rem;
}
.layout-floatbar-dark .layout-floatbar .p-grid .float-head {
  width: 100%;
  background-image: url("/javax.faces.resource/images/claim/greyBlobOne.svg.jsf?ln=freya-layout"), url("/javax.faces.resource/images/claim/greyBlobTwo.svg.jsf?ln=freya-layout"), url("/javax.faces.resource/images/claim/greyBlobThree.svg.jsf?ln=freya-layout");
  background-size: auto, 50%, 50%;
  background-repeat: no-repeat;
  background-position: left top, right -2px, 10% -2px;
}
.layout-floatbar-dark .layout-floatbar .p-grid .float-head h1,
.layout-floatbar-dark .layout-floatbar .p-grid .float-head h2,
.layout-floatbar-dark .layout-floatbar .p-grid .float-head h3,
.layout-floatbar-dark .layout-floatbar .p-grid .float-head h4,
.layout-floatbar-dark .layout-floatbar .p-grid .float-head h5,
.layout-floatbar-dark .layout-floatbar .p-grid .float-head h6 {
  margin-bottom: 0;
  margin-left: 4rem;
}
.layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex {
  justify-content: flex-start;
}
.layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex .float-info {
  padding: 0 0.5rem;
  margin: 0 0 0.5rem;
  color: #f4f9fe;
}
.layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex .float-info a.ui-commandlink {
  color: #f4f9fe;
  font-size: 1.2rem;
}
.layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex .float-info label, .layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex .float-info span {
  color: #f4f9fe;
  font-size: 1rem;
}
.layout-floatbar-dark .layout-floatbar .p-grid .float-map {
  padding: 0.4rem;
}
.layout-floatbar-dark .layout-floatbar .p-grid .float-map a.ui-commandlink {
  color: #f4f9fe;
  font-size: 2.4rem;
}
.layout-floatbar-dark .layout-floatbar .layout-floatbar-wrapper {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991px) {
  .layout-floatbar-dark .layout-floatbar {
    top: 60px;
  }
  .layout-floatbar-dark .layout-floatbar .p-grid .float-head h4 {
    margin-left: 2rem;
    font-size: 1.2rem !important;
  }
  .layout-floatbar-dark .layout-floatbar .p-grid .float-map a .ui-commandlink {
    font-size: 1rem;
  }
  .layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex .float-info {
    margin: 0 0.5rem 0 0;
  }
  .layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex .float-info label, .layout-floatbar-dark .layout-floatbar .p-grid .p-d-flex .float-info span {
    font-size: 0.8rem;
  }
  .layout-floatbar-dark .layout-floatbar .layout-floatbar-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;
    padding: 0 6px;
  }
}
.layout-floatbar-dark .layout-floatbar {
  background-color: rgba(var(--secondary-color-rgb), 1);
}
.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;
  padding: 0 10px;
}
.menu-wrapper .sidebar-logo .sidebar-pin {
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
  margin-right: -50px;
  margin-left: 12px;
}
.menu-wrapper .sidebar-logo .sidebar-pin > span {
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: block;
  height: 34px;
  width: 40px;
  background-color: #ffffff;
}
.menu-wrapper .sidebar-logo .sidebar-pin > span i {
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: 7px 4px 7px 10px;
  font-size: 22px;
  transform: rotate(180deg);
}
.menu-wrapper .sidebar-logo .sidebar-pin > span i.fa-times {
  display: none;
}
.menu-wrapper .sidebar-logo .sidebar-pin > span i.fa-plus {
  display: none;
}
.menu-wrapper .sidebar-logo .sidebar-pin:hover > span i.fa-arrow-left {
  display: none;
}
.menu-wrapper .sidebar-logo .sidebar-pin:hover > span i.fa-times {
  display: none;
}
.menu-wrapper .sidebar-logo .sidebar-pin:hover > span i.fa-plus {
  display: inline-block;
}
.menu-wrapper .sidebar-logo img {
  height: 70px;
  border: 0 none;
  margin-top: 28px;
}
.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::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  position: absolute;
  right: 2px;
}
.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: 10px 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);
  display: none;
}
.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;
  display: none;
}
.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 .layout-menu-container .layout-menu li.repeat_menu {
  position: relative;
}
.menu-wrapper .layout-menu-container .layout-menu li.repeat_menu::after {
  content: attr(style);
  position: absolute;
  height: 15px;
  background-color: transparent;
  top: 1px;
  color: var(--secondary-color);
  font-size: 10px;
  text-align: right;
  padding: 4px;
  right: 7px;
  width: calc(100% - 15px);
}
.menu-wrapper .layout-menu-container .layout-menu li.repeat_menu.active-menuitem::after {
  background-color: transparent;
  color: var(--secondary-color);
}
.menu-wrapper .layout-menu-container .layout-menu li.repeat_menu.active-menuitem > ul {
  height: 147px;
  overflow-y: auto;
  box-shadow: inset 0px -2px 0px rgba(var(--secondary-color-rgb), 0.15);
}

@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-floatbar {
    width: calc(100% - 62px);
    left: 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-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;
    padding: 0 14px 0 18px;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo a:not(.sidebar-pin) {
    margin-right: 20px;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo img {
    height: 33px;
    margin-top: 0px;
    display: inline;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo img.logo-name {
    opacity: 1;
    margin-left: -23px;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo .app-name {
    display: inline;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo .sidebar-pin {
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo .sidebar-pin > span {
    display: block;
    height: 36px;
    width: 40px;
    background-color: #ffffff;
  }
  .layout-wrapper.layout-static .menu-wrapper .sidebar-logo .sidebar-pin > span i {
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    transform: rotate(0deg);
  }
  .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;
    display: none;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin > span {
    background-color: #ffffff;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin > span i.fa-times {
    display: none;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin:hover > span i.fa-arrow-left {
    display: none;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin:hover > span i.fa-times {
    display: inline-block;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin:hover > span i.fa-plus {
    display: none;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .layout-floatbar {
    width: calc(100% - 230px);
    left: 230px;
    -moz-transition: padding-left 0.2s;
    -o-transition: padding-left 0.2s;
    -webkit-transition: padding-left 0.2s;
    transition: padding-left 0.2s;
  }
  .layout-wrapper.layout-static .layout-main {
    padding-left: 230px;
    -moz-transition: padding-left 0.2s;
    -o-transition: padding-left 0.2s;
    -webkit-transition: padding-left 0.2s;
    transition: padding-left 0.2s;
  }
  .layout-wrapper.layout-static .layout-floatbar {
    width: calc(100% - 230px);
    left: 230px;
    -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;
    padding: 0 14px 0 18px;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo a:not(.sidebar-pin) {
    margin-right: 20px;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo img {
    height: 33px;
    margin-top: 0px;
    display: inline;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo img.logo-name {
    opacity: 1;
    margin-left: -23px;
    animation: fadeinlogo 1s;
    -webkit-animation: fadeinlogo 1s;
    -moz-animation: fadeinlogo 1s;
    -o-animation: fadeinlogo 1s;
    -ms-animation: fadeinlogo 1s;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo .app-name {
    display: inline;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin {
    display: inline-block;
    margin-right: 0;
    margin-left: 0;
  }
  .menu-wrapper.layout-sidebar-active .sidebar-logo .sidebar-pin > span {
    display: block;
    height: 36px;
    width: 40px;
    background-color: #ffffff;
  }
  .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;
    display: none;
  }
  .menu-wrapper.layout-sidebar-active .layout-menu-container {
    overflow: auto;
  }
  .menu-wrapper.layout-sidebar-active .layout-floatbar {
    width: calc(100% - 230px);
    left: 230px;
    -moz-transition: padding-left 0.2s;
    -o-transition: padding-left 0.2s;
    -webkit-transition: padding-left 0.2s;
    transition: padding-left 0.2s;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .sidebar-logo img.logo-name {
    opacity: 1 !important;
  }
  .layout-wrapper.layout-static .menu-wrapper.layout-sidebar-active .layout-floatbar {
    width: calc(100% - 230px);
    left: 230px;
    -moz-transition: padding-left 0.2s;
    -o-transition: padding-left 0.2s;
    -webkit-transition: padding-left 0.2s;
    transition: padding-left 0.2s;
  }
}
@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;
    display: none;
  }
  .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);
    display: none;
  }
  .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;
    display: none;
  }
  .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 .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 .sidebar-logo .sidebar-pin {
    display: none;
  }
  .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, .layout-wrapper.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > a::after {
    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 .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
    display: none;
  }
  .layout-wrapper.layout-slim .layout-floatbar {
    width: calc(100% - 62px);
    left: 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-wrapper.layout-slim .layout-main {
    padding-left: 62px;
  }
}
.layout-menu-dark .menu-wrapper {
  background-color: #293241;
  box-shadow: 0px 10px 40px rgba(41, 50, 65, 0.06);
}
.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: #2170E7;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > a i {
  color: var(--primary-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
  color: #2170E7;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::after {
  background-color: #2170E7;
  background-color: var(--primary-light-color);
  background-color: var(--secondary-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: #2170E7;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem i {
  color: var(--secondary-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(33, 112, 231, 0.2);
  background-color: var(--primary-lighter-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li a i {
  color: var(--surface-e);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
  color: #2170E7;
  color: var(--primary-light-color);
}
.layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a::before {
  background-color: #2170E7;
  background-color: var(--primary-light-color);
}
@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::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 5px;
    position: absolute;
    right: 20px;
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a:hover {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #2170E7;
    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: #2170E7;
    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(33, 112, 231, 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(33, 112, 231, 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(33, 112, 231, 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::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 5px;
    position: absolute;
    right: 20px;
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #2170E7;
    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(33, 112, 231, 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(33, 112, 231, 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(33, 112, 231, 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-static .menu-wrapper .layout-menu {
    margin-top: 25px;
  }
  .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: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: rgba(33, 112, 231, 0.2);
    background-color: var(--primary-lighter-color);
    color: var(--primary-light-color);
    box-shadow: 0px 11px 0px -9px var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::after {
    display: none;
  }
  .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(33, 112, 231, 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: #2170E7;
    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(33, 112, 231, 0.2);
    background-color: var(--primary-lighter-color);
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #2170E7;
    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(33, 112, 231, 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: #2170E7;
    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::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 5px;
    position: absolute;
    right: 20px;
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #2170E7;
    color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #2170E7;
    background-color: var(--primary-light-color);
  }
  .layout-menu-dark .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(33, 112, 231, 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(33, 112, 231, 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(33, 112, 231, 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: #f4f9fe;
  box-shadow: none;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a {
  color: #2d3031;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
  color: #2170E7;
  color: #2d3031;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a i {
  color: var(--primary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
  color: #2170E7;
  color: #2d3031;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::after {
  background-color: #2170E7;
  background-color: #2d3031;
  background-color: var(--secondary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
  background-color: #f4f9fe;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem > a {
  background-color: #f4f9fe;
  color: #2170E7;
  color: #2d3031;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem i {
  color: var(--secondary-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
  color: #2d3031;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
  background-color: rgba(33, 112, 231, 0.2);
  background-color: var(--primary-lighter-color);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a i {
  color: var(--surface-e);
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a {
  color: #2170E7;
  color: #2d3031;
}
.layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li.active-menuitem > a::before {
  background-color: #2170E7;
  background-color: #2d3031;
}
@media (min-width: 992px) {
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a {
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 5px;
    position: absolute;
    right: 20px;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > a:hover {
    color: #2170E7;
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #2170E7;
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #2170E7;
    background-color: #2d3031;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(33, 112, 231, 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(33, 112, 231, 0.1);
    background-color: var(--primary-lighter-color);
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li a {
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper.layout-sidebar-active .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(33, 112, 231, 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: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 5px;
    position: absolute;
    right: 20px;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #2170E7;
    color: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #2170E7;
    color: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #2170E7;
    background-color: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(33, 112, 231, 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(33, 112, 231, 0.1);
    background-color: var(--primary-lighter-color);
    color: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(33, 112, 231, 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: #2d3031;
  }
  .layout-menu-light.layout-static .menu-wrapper .layout-menu {
    margin-top: 25px;
  }
  .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: #2d3031;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #2170E7;
    color: #2d3031;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    background-color: rgba(33, 112, 231, 0.2);
    background-color: transparent;
    color: var(--secondary-color);
    box-shadow: 0px 11px 0px -9px var(--primary-light-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #2170E7;
    color: var(--secondary-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #2170E7;
    color: var(--secondary-color);
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::after {
    display: none;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    background-color: #f4f9fe;
    box-shadow: none;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: #2d3031;
  }
  .layout-menu-light.layout-horizontal .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(33, 112, 231, 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: #2170E7;
    color: #2d3031;
  }
  .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(33, 112, 231, 0.2);
    background-color: transparent;
    color: #2170E7;
    color: var(--secondary-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a i {
    color: #2170E7;
    color: var(--secondary-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a:hover {
    color: #2170E7;
    color: var(--secondary-color);
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul {
    box-shadow: none;
    background-color: #f4f9fe;
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a {
    color: #2d3031;
  }
  .layout-menu-light.layout-slim .menu-wrapper .layout-menu-container .layout-menu > li > ul li > a:hover {
    background-color: rgba(33, 112, 231, 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: #2170E7;
    color: #2d3031;
  }
}
@media (max-width: 991px) {
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a {
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 5px;
    position: absolute;
    right: 20px;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > a:hover {
    color: #2170E7;
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a {
    color: #2170E7;
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li.active-menuitem > a::before {
    background-color: #2170E7;
    background-color: #2d3031;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul > li.active-menuitem {
    background-color: rgba(33, 112, 231, 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(33, 112, 231, 0.1);
    background-color: var(--primary-lighter-color);
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a {
    color: #2d3031;
  }
  .layout-menu-light .menu-wrapper .layout-menu-container .layout-menu > li > ul li a:hover {
    background-color: rgba(33, 112, 231, 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: #2d3031;
  }
}

.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.weather-section .weather {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 16px;
  background-image: url("");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 10px 40 rgba(41, 50, 65, 0.06);
  -moz-box-shadow: 0px 10px 40 rgba(41, 50, 65, 0.06);
  box-shadow: 0px 10px 40 rgba(41, 50, 65, 0.06);
  color: rgba(41, 50, 65, 0.8);
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.weather-section .weather > img {
  height: 60px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.weather-section .weather .weather-info {
  margin-left: 16px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.weather-section .weather .weather-info h6 {
  margin: 0 0 2px;
}
.layout-rightpanel .rightpanel-wrapper .rightpanel-section.weather-section .weather .weather-info h1 {
  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: #111d42;
  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 #dee2e6;
  color: #dee2e6;
  -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: 1px 36px 6px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.layout-footer .copyright {
  font-size: 12px;
}
.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: #161616;
  -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 .footer-logo-container img {
  height: 20px;
}
.layout-footer .footer-logo-container img.logo-name {
  margin-left: -13px;
}
.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 .pwdBy {
  min-width: 138px;
  max-width: 138px;
  margin: 0 0 0 auto;
}
.layout-footer #powerdBy #powerdByPath,
.layout-footer #powerdBy #ico-1,
.layout-footer #powerdBy #ico-2,
.layout-footer #powerdBy #ico-3 {
  fill: #6c757d;
  transition: fill 0.3s ease, opacity 1s ease;
  opacity: 0.3;
}
.layout-footer #powerdBy:hover #powerdByPath {
  fill: #161616;
}
.layout-footer #powerdBy:hover #ico-3 {
  fill: #70c7a7;
}
.layout-footer #powerdBy:hover #ico-2 {
  fill: #0abcd8;
}
.layout-footer #powerdBy:hover #ico-1 {
  fill: #5966b4;
}
.layout-footer #powerdBy:hover #powerdByPath,
.layout-footer #powerdBy:hover #ico-1,
.layout-footer #powerdBy:hover #ico-2,
.layout-footer #powerdBy:hover #ico-3 {
  opacity: 1;
}

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

.text-center {
  text-align: center;
}

.border-left {
  border-left: 2px solid var(--secondary-lighter-color) !important;
}

.border-top {
  border-top: 2px solid var(--secondary-lighter-color) !important;
}

.border-right {
  border-right: 2px solid var(--secondary-lighter-color) !important;
}

.border-bottom {
  border-bottom: 2px solid var(--secondary-lighter-color) !important;
}

.total-border {
  border: 1px solid var(--secondary-lighter-color) !important;
}

body .ui-inputfield.RED {
  background-color: #eb2553 !important;
  border-color: #eb2553;
  color: #ffffff;
  opacity: 1;
}
body .ui-inputfield.AMBER {
  background-color: #ff5c01 !important;
  border-color: #ff5c01;
  color: #ffffff;
  opacity: 1;
}
body .ui-inputfield.GREEN {
  background-color: #00d16a !important;
  border-color: #00d16a;
  color: #ffffff;
  opacity: 1;
}

.times-color,
.check-color {
  border-radius: 2rem;
  padding: 0.2rem;
  color: var(--surface-a);
  font-size: 1rem;
}

.check-color {
  background-color: rgb(var(--good-rgb));
}

.times-color {
  background-color: rgb(var(--error-rgb));
  padding: 0.2rem 0.4rem;
}

.card {
  background: #ffffff;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 0px 21px -6px rgba(131, 135, 137, 0.35);
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  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;
}
.card.no-shadow {
  box-shadow: none;
}
.card.grey-back {
  background: #f4f9fe;
}
.card.note-grid-card {
  min-height: calc(100% - 0.5rem);
}
.card.note-grid-card .ui-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.note-grid-card .ui-card-body .card-title {
  margin-bottom: 0.5rem;
}
.card.note-grid-card .ui-card-body .card-subtitle {
  margin: -2rem 0 1rem 0;
}
.card.note-grid-card .ui-card-body .card-footer {
  margin-top: auto;
  margin-bottom: 0;
}

.grid-media {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16vw, 1fr));
  grid-gap: 1rem;
}
.grid-media a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.grid-media a .media-image {
  cursor: pointer;
  min-height: 150px;
  object-fit: cover;
  width: 100%;
  max-width: 15vw;
  height: 11vw;
}
.grid-media .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}
.grid-media .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) {
  .grid-media {
    grid-template-columns: repeat(auto-fill, minmax(40vw, 1fr));
  }
  .grid-media a .media-image {
    cursor: pointer;
    min-height: 150px;
    object-fit: cover;
    width: 100%;
    max-width: 39vw;
    height: 25vw;
  }
}
.show-dv-btns {
  width: calc(100% - 80px);
  margin-bottom: -36px;
}

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

.radius14 {
  border-radius: 14px;
}

.radius13 {
  border-radius: 13px;
}

.radius12 {
  border-radius: 12px;
}

.radius11 {
  border-radius: 11px;
}

.radius10 {
  border-radius: 10px;
}

.radius9 {
  border-radius: 9px;
}

.radius8 {
  border-radius: 8px;
}

.radius7 {
  border-radius: 7px;
}

.radius6 {
  border-radius: 6px;
}

.radius5 {
  border-radius: 5px;
}

.radius4 {
  border-radius: 4px;
}

.radius3 {
  border-radius: 3px;
}

.radius2 {
  border-radius: 2px;
}

.radius1 {
  border-radius: 1px;
}

.radius0 {
  border-radius: 0px;
}

.max-max-content {
  max-width: max-content;
}

.max-fit-content {
  max-width: fit-content;
}

.max-min-content {
  max-width: min-content;
}

.min-max-content {
  min-width: max-content;
}

.min-min-content {
  min-width: min-content;
}

.pw100-35 {
  width: calc(100% - 35px);
}

.max-600 {
  max-width: 600px !important;
}

.max-650 {
  max-width: 650px !important;
}

.min-600 {
  min-width: 600px !important;
}

.min-650 {
  min-width: 650px !important;
}

.max-500 {
  max-width: 500px !important;
}

.max-550 {
  max-width: 550px !important;
}

.min-500 {
  min-width: 500px !important;
}

.min-550 {
  min-width: 550px !important;
}

.max-400 {
  max-width: 400px !important;
}

.max-450 {
  max-width: 450px !important;
}

.min-400 {
  min-width: 400px !important;
}

.min-450 {
  min-width: 450px !important;
}

.max-300 {
  max-width: 300px !important;
}

.max-350 {
  max-width: 350px !important;
}

.min-300 {
  min-width: 300px !important;
}

.min-350 {
  min-width: 350px !important;
}

.max-200 {
  max-width: 200px !important;
}

.max-250 {
  max-width: 250px !important;
}

.min-200 {
  min-width: 200px !important;
}

.min-250 {
  min-width: 250px !important;
}

.max-100 {
  max-width: 100px !important;
}

.max-150 {
  max-width: 150px !important;
}

.min-100 {
  min-width: 100px !important;
}

.min-150 {
  min-width: 150px !important;
}

.max-100p {
  max-width: 100% !important;
}

.max-50 {
  max-width: 50px !important;
}

.width-600 {
  width: 600px !important;
}

.width-650 {
  width: 650px !important;
}

.width-500 {
  width: 500px !important;
}

.width-550 {
  width: 550px !important;
}

.width-400 {
  width: 400px !important;
}

.width-450 {
  width: 450px !important;
}

.width-300 {
  width: 300px !important;
}

.width-350 {
  width: 350px !important;
}

.width-200 {
  width: 200px !important;
}

.width-250 {
  width: 250px !important;
}

.width-100 {
  width: 100px !important;
}

.width-150 {
  width: 150px !important;
}

.width-80 {
  width: 80px !important;
}

.width-60 {
  width: 60px !important;
}

.width-50 {
  width: 50px !important;
}

.width-20 {
  width: 20px !important;
}

.height-20 {
  height: 20px !important;
}

.min-50 {
  min-width: 50px !important;
}

.max-h-600 {
  max-height: 600px !important;
}

.max-h-650 {
  max-height: 650px !important;
}

.min-h-600 {
  min-height: 600px !important;
}

.min-h-650 {
  min-height: 650px !important;
}

.max-h-500 {
  max-height: 500px !important;
}

.max-h-550 {
  max-height: 550px !important;
}

.min-h-500 {
  min-height: 500px !important;
}

.min-h-550 {
  min-height: 550px !important;
}

.max-h-400 {
  max-height: 400px !important;
}

.max-h-360 {
  max-height: 360px !important;
}

.max-h-404 {
  max-height: 404px !important;
}

.max-h-450 {
  max-height: 450px !important;
}

.min-h-400 {
  min-height: 400px !important;
}

.min-h-450 {
  min-height: 450px !important;
}

.max-h-300 {
  max-height: 300px !important;
}

.max-h-350 {
  max-height: 350px !important;
}

.min-h-300 {
  min-height: 300px !important;
}

.min-h-350 {
  min-height: 350px !important;
}

.max-h-200 {
  max-height: 200px !important;
}

.max-h-250 {
  max-height: 250px !important;
}

.max-h-270 {
  max-height: 270px !important;
}

.min-h-200 {
  min-height: 200px !important;
}

.min-h-270 {
  min-height: 270px !important;
}

.min-h-250 {
  min-height: 250px !important;
}

.max-h-100 {
  max-height: 100px !important;
}

.max-h-150 {
  max-height: 150px !important;
}

.min-h-100 {
  min-height: 100px !important;
}

.min-h-150 {
  min-height: 150px !important;
}

.max-h-50 {
  max-height: 50px !important;
}

.min-h-50 {
  min-height: 50px !important;
}

.maxhp {
  height: 100% !important;
}

.maxhp-6 {
  height: calc(100% - 6rem) !important;
}

.maxwp {
  width: 100% !important;
}

.maxvh {
  height: 100vh !important;
}

.ui-knob .knob {
  color: rgba(41, 50, 65, 0.5) !important;
}
.ui-knob .knob::placeholder {
  color: #F7F7F8 !important;
}

.viewname {
  font-size: 26px;
  font-weight: bold;
  display: inline-block;
  margin-top: -15px;
}

.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);
}

.dialog-scroll-1 {
  max-height: calc(96vh - 74px);
}

.dialog-scroll-2 {
  max-height: calc(96vh - 80px);
}

.overflow-y-auto {
  overflow-y: auto;
}

.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: #111d42;
}
.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;
}

.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%;
  }
}
#besideMouse {
  width: 112px;
  position: absolute;
  font-weight: bold;
  color: white;
  z-index: 9999;
  font-size: 16px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: #fc6200;
}

div#wave {
  position: relative;
  text-align: center;
  display: inline-block;
}
div#wave .dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
  animation: wave 1.3s linear infinite;
}
div#wave .dot:nth-child(2) {
  animation-delay: -1.1s;
}
div#wave .dot:nth-child(3) {
  animation-delay: -0.9s;
}

@keyframes wave {
  0%, 60%, 100% {
    transform: initial;
  }
  30% {
    transform: translateY(-4px);
  }
}
.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;
  }
}
.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-around;
  height: 100%;
  min-width: 200px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid #008cf3;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  margin-right: 5px;
  margin-bottom: 5px;
  border-radius: 8px;
  overflow: hidden;
}
.overview-box .overview-box-title {
  width: 100%;
  padding: 10px 5px;
  font-size: 18px;
  letter-spacing: 0.23px;
  min-height: 55px;
  background-color: #ffffff;
  color: #2c3031;
  transition: all 0.3s ease-in-out;
  align-content: center;
}
.overview-box .overview-box-title.box-title-flex {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  min-height: 120px;
}
.overview-box .overview-box-title.box-title-flex span {
  color: #131313;
  font-size: 20px;
}
.overview-box .overview-box-title.box-title-flex span.title-vs {
  font-weight: 600;
  color: #fc6200;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
.overview-box .overview-box-value {
  padding: 5px;
  font-size: 30px;
  letter-spacing: 1px;
}
.overview-box .overview-box-status-group,
.overview-box .overview-status-footer-group {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.overview-box .overview-status-footer-group {
  min-height: 17px;
}
.overview-box .overview-box-status,
.overview-box .overview-status-footer {
  color: #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(1),
.overview-box .overview-status-footer:first-child:nth-last-child(1) {
  width: 100%;
  border-right-color: transparent;
}
.overview-box .overview-box-status:first-child:nth-last-child(2), .overview-box .overview-box-status:first-child:nth-last-child(2) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(2),
.overview-box .overview-status-footer:first-child:nth-last-child(2) ~ div {
  width: 50%;
}
.overview-box .overview-box-status:first-child:nth-last-child(2):first-of-type, .overview-box .overview-box-status:first-child:nth-last-child(2) ~ div:first-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(2):first-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(2) ~ div:first-of-type {
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(3), .overview-box .overview-box-status:first-child:nth-last-child(3) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(3),
.overview-box .overview-status-footer:first-child:nth-last-child(3) ~ div {
  width: 33.3333%;
}
.overview-box .overview-box-status:first-child:nth-last-child(3):first-of-type, .overview-box .overview-box-status:first-child:nth-last-child(3) ~ div:first-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(3):first-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(3) ~ div:first-of-type {
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(3):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(3) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(3):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(3) ~ div:last-of-type {
  border-left: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(4), .overview-box .overview-box-status:first-child:nth-last-child(4) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(4),
.overview-box .overview-status-footer:first-child:nth-last-child(4) ~ div {
  width: 25%;
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(4):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(4) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(4):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(4) ~ div:last-of-type {
  border-right-width: 0px;
}
.overview-box .overview-box-status:first-child:nth-last-child(5), .overview-box .overview-box-status:first-child:nth-last-child(5) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(5),
.overview-box .overview-status-footer:first-child:nth-last-child(5) ~ div {
  width: 20%;
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(5):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(5) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(5):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(5) ~ div:last-of-type {
  border-right-width: 0px;
}
.overview-box .overview-box-status:first-child:nth-last-child(6), .overview-box .overview-box-status:first-child:nth-last-child(6) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(6),
.overview-box .overview-status-footer:first-child:nth-last-child(6) ~ div {
  width: 16.6666%;
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(6):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(6) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(6):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(6) ~ div:last-of-type {
  border-right-width: 0px;
}
.overview-box .overview-box-status:first-child:nth-last-child(7), .overview-box .overview-box-status:first-child:nth-last-child(7) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(7),
.overview-box .overview-status-footer:first-child:nth-last-child(7) ~ div {
  width: 14.2857%;
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(7):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(7) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(7):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(7) ~ div:last-of-type {
  border-right-width: 0px;
}
.overview-box .overview-box-status:first-child:nth-last-child(8), .overview-box .overview-box-status:first-child:nth-last-child(8) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(8),
.overview-box .overview-status-footer:first-child:nth-last-child(8) ~ div {
  width: 12.5%;
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(8):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(8) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(8):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(8) ~ div:last-of-type {
  border-right-width: 0px;
}
.overview-box .overview-box-status:first-child:nth-last-child(9), .overview-box .overview-box-status:first-child:nth-last-child(9) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(9),
.overview-box .overview-status-footer:first-child:nth-last-child(9) ~ div {
  width: 11.1111%;
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(9):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(9) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(9):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(9) ~ div:last-of-type {
  border-right-width: 0px;
}
.overview-box .overview-box-status:first-child:nth-last-child(10), .overview-box .overview-box-status:first-child:nth-last-child(10) ~ div,
.overview-box .overview-status-footer:first-child:nth-last-child(10),
.overview-box .overview-status-footer:first-child:nth-last-child(10) ~ div {
  width: 10%;
  border-right: 1px solid #2c3031;
}
.overview-box .overview-box-status:first-child:nth-last-child(10):last-of-type, .overview-box .overview-box-status:first-child:nth-last-child(10) ~ div:last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(10):last-of-type,
.overview-box .overview-status-footer:first-child:nth-last-child(10) ~ div:last-of-type {
  border-right-width: 0px;
}
.overview-box .overview-box-status:last-child,
.overview-box .overview-status-footer:last-child {
  border-right-color: transparent;
}
.overview-box .overview-box-status .rag-r,
.overview-box .overview-box-status .rag-a,
.overview-box .overview-box-status .rag-g,
.overview-box .overview-box-status .rag-f,
.overview-box .overview-status-footer .rag-r,
.overview-box .overview-status-footer .rag-a,
.overview-box .overview-status-footer .rag-g,
.overview-box .overview-status-footer .rag-f {
  text-decoration: underline 3px;
}
.overview-box .overview-box-status .rag-r,
.overview-box .overview-status-footer .rag-r {
  text-decoration-color: #eb2553;
}
.overview-box .overview-box-status .rag-a,
.overview-box .overview-status-footer .rag-a {
  text-decoration-color: #ff5c01;
}
.overview-box .overview-box-status .rag-g,
.overview-box .overview-status-footer .rag-g {
  text-decoration-color: #00d16a;
}
.overview-box .overview-box-status .rag-f,
.overview-box .overview-status-footer .rag-f {
  text-decoration-color: #008cf3;
}
.overview-box .overview-box-status[role=red] .overview-status-head,
.overview-box .overview-status-footer[role=red] .overview-status-head {
  background-color: #eb2553;
}
.overview-box .overview-box-status[role=amber] .overview-status-head,
.overview-box .overview-status-footer[role=amber] .overview-status-head {
  background-color: #ff5c01;
}
.overview-box .overview-box-status[role=green] .overview-status-head,
.overview-box .overview-status-footer[role=green] .overview-status-head {
  background-color: #00d16a;
}
.overview-box .overview-box-status[role=grey] .overview-status-head,
.overview-box .overview-status-footer[role=grey] .overview-status-head {
  background-color: #008cf3;
}
.overview-box .overview-box-status[role=red-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=red-dot] .overview-status-body .ui-outputlabel:after {
  background-color: #eb2553;
}
.overview-box .overview-box-status[role=amber-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=amber-dot] .overview-status-body .ui-outputlabel:after {
  background-color: #ff5c01;
}
.overview-box .overview-box-status[role=green-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=green-dot] .overview-status-body .ui-outputlabel:after {
  background-color: #00d16a;
}
.overview-box .overview-box-status[role=grey-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=grey-dot] .overview-status-body .ui-outputlabel:after {
  background-color: #008cf3;
}
.overview-box .overview-box-status[role=red-dot], .overview-box .overview-box-status[role=amber-dot], .overview-box .overview-box-status[role=green-dot], .overview-box .overview-box-status[role=grey-dot],
.overview-box .overview-status-footer[role=red-dot],
.overview-box .overview-status-footer[role=amber-dot],
.overview-box .overview-status-footer[role=green-dot],
.overview-box .overview-status-footer[role=grey-dot] {
  border-top: 1px solid #008cf3;
}
.overview-box .overview-box-status[role=red-dot] .overview-status-body .ui-outputlabel, .overview-box .overview-box-status[role=amber-dot] .overview-status-body .ui-outputlabel, .overview-box .overview-box-status[role=green-dot] .overview-status-body .ui-outputlabel, .overview-box .overview-box-status[role=grey-dot] .overview-status-body .ui-outputlabel,
.overview-box .overview-status-footer[role=red-dot] .overview-status-body .ui-outputlabel,
.overview-box .overview-status-footer[role=amber-dot] .overview-status-body .ui-outputlabel,
.overview-box .overview-status-footer[role=green-dot] .overview-status-body .ui-outputlabel,
.overview-box .overview-status-footer[role=grey-dot] .overview-status-body .ui-outputlabel {
  position: relative;
}
.overview-box .overview-box-status[role=red-dot] .overview-status-body .ui-outputlabel:after, .overview-box .overview-box-status[role=amber-dot] .overview-status-body .ui-outputlabel:after, .overview-box .overview-box-status[role=green-dot] .overview-status-body .ui-outputlabel:after, .overview-box .overview-box-status[role=grey-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=red-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=amber-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=green-dot] .overview-status-body .ui-outputlabel:after,
.overview-box .overview-status-footer[role=grey-dot] .overview-status-body .ui-outputlabel:after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 1rem;
  display: block;
  margin-left: 1rem;
  position: absolute;
  bottom: 31%;
  left: 1.5rem;
}
.overview-box .overview-box-status {
  padding: 0;
  font-size: 14px;
}
.overview-box .overview-box-status .overview-status-head {
  font-size: 12px;
  padding: 5px;
}
.overview-box .overview-box-status .overview-status-body {
  font-size: 44px;
  font-weight: bold;
}
.overview-box .overview-box-status .overview-status-body .ui-outputlabel {
  font-size: 44px;
  font-weight: bold;
}
.overview-box .overview-info > h6 {
  margin: 0 0 2px;
}
.overview-box .overview-info > h1 {
  margin: 0;
}
.overview-box > i {
  font-size: 24px;
}
.overview-box.overview-white {
  background: #ffffff;
  color: rgba(41, 50, 65, 0.8);
}
.overview-box.overview-white h6 {
  color: #111d42;
}
.overview-box.overview-white h1 {
  color: #288de7;
}
.overview-box.overview-white i {
  color: var --primary-color;
}
.overview-box.overview-blue {
  background: #69b7ff;
  color: #ffffff;
}
.overview-box.overview-gray {
  background: rgba(41, 50, 65, 0.4);
  color: #ffffff;
}
.overview-box.overview-darkgray {
  background: rgba(41, 50, 65, 0.8);
  color: #ffffff;
}
.overview-box.overview-orange {
  background: linear-gradient(90deg, #ffb340 0%, #ffa740 100%);
  color: #ffffff;
}

a:hover {
  text-decoration: none !important;
}
a:hover .overview-box {
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 20px 0 rgba(0, 142, 243, 0.25);
}
a:hover .overview-box .overview-box-title span.title-vs {
  color: #008cf3;
  transition: all 0.3s ease-in-out;
}

.dt-head-reports {
  margin-right: 5px;
  border: 1px solid;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
.dt-head-reports[role=red] {
  border-color: #eb2553;
}
.dt-head-reports[role=red] .reports-head {
  background-color: #eb2553;
  color: white;
}
.dt-head-reports[role=amber] {
  border-color: #ff5c01;
}
.dt-head-reports[role=amber] .reports-head {
  background-color: #ff5c01;
  color: white;
}
.dt-head-reports[role=green] {
  border-color: #00d16a;
}
.dt-head-reports[role=green] .reports-head {
  background-color: #00d16a;
  color: white;
}
.dt-head-reports[role=grey] {
  border-color: #008cf3;
}
.dt-head-reports[role=grey] .reports-head {
  background-color: #008cf3;
}
.dt-head-reports .reports-head {
  font-size: 12px;
  padding: 3px 6px;
  text-align: center;
}
.dt-head-reports .reports-body {
  font-size: 16px;
  text-align: center;
  padding: 0 10px;
  color: black !important;
}

.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;
}
.timeline > ul > li .event-content span.event-title {
  color: #111d42;
}
.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;
}

.device-status .content {
  color: rgba(41, 50, 65, 0.5);
  line-height: 1.4;
  margin-bottom: 20px;
}
.device-status .progress {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
  color: rgba(41, 50, 65, 0.5);
}
.device-status .progress > span {
  min-width: 40px;
}
.device-status .progress .ui-progressbar {
  width: 100%;
  margin: 0 12px;
  background: rgba(41, 127, 255, 0.2);
  background: var(--primary-lighter-color);
}
.device-status .progress .ui-progressbar .ui-progressbar-value {
  background: rgba(41, 127, 255, 0.2);
  background: var(--primary-color);
  opacity: 0.8;
}
.device-status .progress.active .ui-progressbar {
  width: 100%;
  margin: 0 12px;
  background: rgba(41, 127, 255, 0.2);
  background: var(--primary-lighter-color);
}
.device-status .progress.active .ui-progressbar .ui-progressbar-value {
  background: linear-gradient(270deg, #42bbff 0%, #6129ff 100%);
  background: linear-gradient(270deg, var(--primary-lighter-color) 0%, var(--primary-color) 100%);
  opacity: 0.8;
}
.device-status .device {
  margin-bottom: 16px;
}
.device-status .device span {
  color: #2170E7;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}
.device-status .device span > span {
  font-size: 8px;
  font-weight: normal;
}
.device-status .device span.status {
  font-size: 12px;
  color: rgba(41, 50, 65, 0.5);
  margin-top: 4px;
  display: block;
}

.team {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.team .card-header {
  padding: 0;
  min-width: 70px;
}
.team .peoples {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}
.team .peoples > img {
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 8px 8px;
  width: 32px;
  height: 32px;
}
.team .peoples .no-picture {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 8px 8px;
  width: 32px;
  height: 32px;
  background: rgba(41, 50, 65, 0.1);
  color: #161616;
  font-size: 12px;
  -moz-transition: background 0.2s;
  -o-transition: background 0.2s;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.team .peoples .no-picture:hover {
  background: rgba(41, 50, 65, 0.2);
}

.map {
  padding: 0;
}
.map > img {
  width: 100%;
  height: auto;
  border-radius: 24px 24px 12px 12px;
}
.map .map-content {
  padding: 50px 20px 28px;
}
.map .map-content h6 {
  margin: 0 0 16px;
}
.map .map-content .city {
  margin-bottom: 16px;
}
.map .map-content .city span {
  color: #2170E7;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
}
.map .map-content .city span > span {
  font-size: 8px;
  font-weight: normal;
}
.map .map-content .city span.status {
  font-size: 12px;
  color: rgba(41, 50, 65, 0.5);
  margin-top: 4px;
  display: block;
}

.schedule > p {
  color: rgba(41, 50, 65, 0.5);
}
.schedule > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.schedule > ul > li {
  background: #F7F7F8;
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 5px 16px 12px;
}
.schedule > ul > li .schedule-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
.schedule > ul > li .schedule-header h6 {
  line-height: 24px;
  margin: 0;
}
.schedule > ul > li .schedule-header span {
  color: rgba(41, 50, 65, 0.5);
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
}
.schedule > ul > li > span {
  margin-top: 4px;
  color: rgba(41, 50, 65, 0.5);
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.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);
}

.stocks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.stocks ul > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #F7FAFF;
  padding: 0;
  margin: 0 0 12px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.stocks ul > li .stock-name {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #EEF5FF;
  padding: 18px 10px;
  min-width: 70px;
  margin-right: 4px;
}
.stocks ul > li .stock-name h6 {
  margin: 0;
  color: #161616;
  line-height: 17px;
  font-weight: 600;
}
.stocks ul > li > img {
  margin: 0 4px;
  height: 25px;
}
.stocks ul > li .stock-price {
  padding: 0 10px;
  color: #34b56f;
  margin: 0 4px;
}
.stocks ul > li .stock-price h6 {
  line-height: 17px;
  font-weight: 600;
  display: inline-block;
}
.stocks ul > li .stock-price i {
  display: inline-block;
}
.stocks ul > li .stock-status {
  margin-left: 4px;
  padding: 0 20px;
}
.stocks ul > li .stock-status span {
  display: block;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
}
.stocks ul > li.down .stock-price {
  color: #ff6e49;
}
.stocks ul > li.same .stock-price {
  color: #ffa928;
}
.stocks > .ui-button {
  width: 100%;
  margin-top: 30px;
}

.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: #161616;
}
.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);
}

.chat .ui-tabs.ui-tabs-top .ui-tabs-nav {
  background-color: transparent;
  margin: 0 -10px;
  border: none;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav:before {
  display: none;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header {
  padding: 9px 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0 10px;
  border: none;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header a {
  position: relative;
  width: 52px;
  height: 52px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #d0d6dd;
  cursor: pointer;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #2170E7;
  color: var(--primary-color);
  border: 0 none;
  overflow: visible;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header a img {
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header a .ui-badge {
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-active {
  padding: 0 0 9px;
  border: none;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-active a {
  box-shadow: 0px 0px 1px rgba(41, 50, 65, 0.16), 0px 1px 2px rgba(41, 50, 65, 0.04), 0px 6px 12px rgba(41, 50, 65, 0.24);
  border: 0 none;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-active:before {
  content: "";
  width: 12px;
  height: 2px;
  background: #2170E7;
  background: var(--primary-color);
  border-radius: 3px;
  position: absolute;
  bottom: -10px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-nav .ui-tabs-header.ui-state-hover {
  border: none;
  padding: 0 0 9px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels {
  background-color: transparent;
  border: none;
  padding: 16px 0 0;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel {
  padding: 0;
  height: 350px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 350px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .fade {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 44px;
  background-image: linear-gradient(180deg, #ffffff 0%, rgba(234, 237, 243, 0) 100%);
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content {
  max-height: 400px;
  overflow: auto;
  padding: 30px 6px 12px;
  flex: 1 1 auto;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message .name {
  display: block;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message .message {
  max-width: 250px;
  padding: 8px 10px;
  box-shadow: 0px 0px 1px rgba(41, 50, 65, 0.5), 0px 1px 1px rgba(41, 50, 65, 0.2);
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  background-color: #F7FAFF;
  margin-bottom: 8px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message .message p {
  padding: 0;
  margin: 0 0 2px;
  color: #161616;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message .message span {
  display: block;
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message.send {
  -ms-flex-align: end;
  align-items: flex-end;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content .chat-message.send .message span {
  text-align: right;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content.no-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-content.no-message h4 {
  color: rgba(41, 50, 65, 0.5);
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts {
  flex: 1 1 auto;
  max-height: 400px;
  overflow: auto;
  padding: 0px 0 12px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts ul > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  padding: 8px 10px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts ul > li img {
  margin-right: 12px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts ul > li h6 {
  margin: 0 0 2px;
  color: #161616;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts ul > li span {
  display: block;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .contacts ul > li:hover {
  background-color: #F7FAFF;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-input {
  margin-top: 30px;
}
.chat .ui-tabs.ui-tabs-top .ui-tabs-panels .ui-tabs-panel .chat .chat-input input {
  width: 100%;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  padding: 20px 19px;
  background-color: #F7F7F8;
  border: none;
}

.chat-custom {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 350px;
}
.chat-custom .fade {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 44px;
  background-image: linear-gradient(180deg, #ffffff 0%, rgba(234, 237, 243, 0) 100%);
}
.chat-custom .chat-content {
  max-height: 322px;
  overflow: auto;
  padding: 30px 6px 12px;
  flex: 1 1 auto;
}
.chat-custom .chat-content .chat-message {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
.chat-custom .chat-content .chat-message .name {
  display: block;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
}
.chat-custom .chat-content .chat-message .message {
  max-width: 250px;
}
.chat-custom .chat-content .chat-message .message .user-comment {
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  border-top-left-radius: 0;
  background: var(--surface-e);
  margin-bottom: 8px;
  padding: 8px 10px;
}
.chat-custom .chat-content .chat-message .message .user-comment .user-name {
  opacity: 0.6;
  font-size: 11px;
  text-align: left;
}
.chat-custom .chat-content .chat-message .message p {
  padding: 0;
  margin: 0 0 2px;
  color: #161616;
}
.chat-custom .chat-content .chat-message .message span {
  display: block;
  font-weight: 600;
  font-size: 10px;
  line-height: 14px;
}
.chat-custom .chat-content .chat-message .message .user-chat-date {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-color-secondary);
}
.chat-custom .chat-content .chat-message.send {
  -ms-flex-align: end;
  align-items: flex-end;
}
.chat-custom .chat-content .chat-message.send .message .user-comment {
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  border-bottom-right-radius: 0;
  background: var(--primary-color);
  color: var(--surface-a);
}
.chat-custom .chat-content .chat-message.send .message .user-comment span {
  text-align: right;
}
.chat-custom .chat-content .chat-message.send .message .user-comment .user-name {
  text-align: right;
}
.chat-custom .chat-content.no-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.chat-custom .chat-content.no-message h4 {
  color: rgba(41, 50, 65, 0.5);
}
.chat-custom .contacts {
  flex: 1 1 auto;
  max-height: 400px;
  overflow: auto;
  padding: 0px 0 12px;
}
.chat-custom .contacts ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.chat-custom .contacts ul > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 6px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  padding: 8px 10px;
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}
.chat-custom .contacts ul > li img {
  margin-right: 12px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.chat-custom .contacts ul > li h6 {
  margin: 0 0 2px;
  color: #161616;
}
.chat-custom .contacts ul > li span {
  display: block;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
}
.chat-custom .contacts ul > li:hover {
  background-color: #F7FAFF;
}
.chat-custom .chat-input {
  margin-top: 30px;
}
.chat-custom .chat-input input {
  width: 100%;
  padding: 20px 19px;
  background-color: #F7F7F8;
  border: none;
}

.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%;
}

@media screen and (max-width: 992px) {
  .overview-box .overview-box-title.box-title-flex span {
    font-size: 18px;
  }
  .overview-box .overview-box-title.box-title-flex span.title-vs {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .overview-box .overview-box-title.box-title-flex {
    min-height: 85px;
  }
  .overview-box .overview-box-title.box-title-flex span {
    font-size: 16px;
  }
  .overview-box .overview-box-title.box-title-flex span.title-vs {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  .overview-box {
    min-width: auto;
  }
  .overview-box .overview-box-title.box-title-flex span {
    font-size: 15px;
  }
  .overview-box .overview-box-title.box-title-flex span.title-vs {
    font-size: 13px;
  }
}
.login-body {
  background: var(--secondary-color);
  background-image: url("/javax.faces.resource/images/pages/login.png.jsf?ln=freya-layout");
  background-repeat: no-repeat;
  background-size: cover;
}
.login-body .login-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-around;
  flex-direction: column;
  height: 100vh;
}
.login-body .login-wrapper .login-panel {
  background: var(--surface-a);
  width: 489px;
  height: max-content;
  text-align: center;
  padding: 82px;
  padding-bottom: 39px;
  max-width: 90%;
  min-width: 315px;
  border-radius: 20px;
  margin: auto 4vw auto auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.login-body .login-wrapper .login-panel .logo {
  text-align: center;
}
.login-body .login-wrapper .login-panel .logo img {
  height: 58px;
}
.login-body .login-wrapper .login-panel .logo img.logo-name {
  margin-left: -37px;
}
.login-body .login-wrapper .login-panel > a {
  font-weight: 500;
  font-size: 14px;
  line-height: 12px;
  color: var(--text-color);
  width: 100%;
  text-align: end;
  margin-bottom: 30px;
}
.login-body .login-wrapper .login-panel > p {
  font-weight: 500;
  margin: 0;
  color: var(--text-color);
}
.login-body .login-wrapper .login-panel > p > a {
  color: #092159;
  cursor: pointer;
}
.login-body .login-wrapper .login-panel > input {
  width: 100%;
  margin-bottom: 30px;
  background-color: #f6f7f7;
  border: 1.2px solid #d4d6d9;
  color: var(--text-color);
  padding: 12px 10px;
}
.login-body .login-wrapper .login-panel > input::placeholder {
  color: var(--text-color);
}
.login-body .login-wrapper .login-panel > button {
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
}
.login-body .login-wrapper .login-panel > button > span {
  padding: 15px 20px;
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}
.login-body .login-wrapper .login-panel .inner-links {
  margin-bottom: 20px;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.login-body .login-wrapper .login-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 70px;
}
.login-body .login-wrapper .login-footer h4 {
  line-height: 22px;
  margin: 0;
  margin-right: 32px;
}
.login-body .login-wrapper .login-footer h6 {
  line-height: 17px;
  margin: 0;
  color: rgba(41, 50, 65, 0.5);
  font-weight: 500;
}
.login-body .login-wrapper #powerdBy {
  width: 42%;
  min-width: 150px;
  margin: 3px auto 0;
  max-width: 15rem;
}
.login-body .login-wrapper #powerdBy #powerdByPath,
.login-body .login-wrapper #powerdBy #ico-1,
.login-body .login-wrapper #powerdBy #ico-2,
.login-body .login-wrapper #powerdBy #ico-3 {
  fill: rgba(41, 50, 65, 0.5);
  transition: fill 0.3s ease, opacity 1s ease;
  opacity: 0.8;
}
.login-body .login-wrapper #powerdBy:hover #powerdByPath {
  fill: #0e1d3e;
}
.login-body .login-wrapper #powerdBy:hover #ico-3 {
  fill: #70c7a7;
}
.login-body .login-wrapper #powerdBy:hover #ico-2 {
  fill: #0abcd8;
}
.login-body .login-wrapper #powerdBy:hover #ico-1 {
  fill: #5966b4;
}
.login-body .login-wrapper #powerdBy:hover #powerdByPath,
.login-body .login-wrapper #powerdBy:hover #ico-1,
.login-body .login-wrapper #powerdBy:hover #ico-2,
.login-body .login-wrapper #powerdBy:hover #ico-3 {
  opacity: 1;
}

@media (max-width: 992px) {
  .login-body .login-wrapper .login-panel {
    width: 100%;
  }
}
.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: #E5E5E5;
}
.landing-body .landing-topbar {
  height: 83px;
  background-color: #FFFFFF;
  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 40px;
  position: relative;
}
.landing-body .landing-topbar .landing-topbar-left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.landing-body .landing-topbar .landing-topbar-left .logo {
  margin-right: 40px;
}
.landing-body .landing-topbar .landing-topbar-left .logo img {
  height: 16px;
  width: auto;
}
.landing-body .landing-topbar .landing-topbar-left > 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-left > ul > li #landing-menu-close {
  display: none;
}
.landing-body .landing-topbar .landing-topbar-left > ul > li > a {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: rgba(41, 50, 65, 0.9);
  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-left > ul > li > a:hover {
  color: #2170E7;
}
.landing-body .landing-topbar .landing-topbar-right .second-menubutton {
  margin-right: 20px;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: rgba(41, 50, 65, 0.9);
  padding: 14px 10px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  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 .second-menubutton:hover {
  color: #2170E7;
}
.landing-body .landing-topbar .landing-topbar-right .landing-button span {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
}
.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;
}
.landing-body .landing-button {
  background: linear-gradient(108.43deg, #297FFF 12.5%, #7A0EE7 96.32%);
  border: none;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  -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 {
  padding: 0;
}
.landing-body .landing-button.ui-button > .ui-button-text {
  padding: 14px 10px;
  min-width: 121px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: block;
}
.landing-body .landing-button > a .ui-button-text {
  padding: 14px 10px;
  min-width: 87px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: block;
}
.landing-body .landing-button:hover {
  background: linear-gradient(108.43deg, #2f79e7 12.5%, #781cd4 96.32%);
}
.landing-body .landing-banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 303px 30px 218px;
  position: relative;
  transform-style: inherit;
  background: url("/javax.faces.resource/images/pages/asset-landing-header.jpg.jsf?ln=freya-layout");
  background-size: cover;
  height: 80vh;
}
.landing-body .landing-banner .landing-banner-content {
  text-align: center;
  position: relative;
}
.landing-body .landing-banner .landing-banner-content .title {
  display: block;
  font-weight: 500;
  font-size: 70px;
  line-height: 84px;
  color: #FFFFFF;
}
.landing-body .landing-banner .landing-banner-content h3 {
  margin: 40px 0 30px;
  color: #FFFFFF;
  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-features {
  background-color: #FFFFFF;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 36px 6% 125px;
}
.landing-body .landing-features .p-lg-3 {
  transition: transform 250ms linear;
  -webkit-transition: transform 250ms linear;
}
.landing-body .landing-features .feature {
  display: -ms-flexbox;
  display: flex;
}
.landing-body .landing-features .feature > span {
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  color: rgba(41, 50, 65, 0.8);
  margin-top: 30px;
  margin-right: 12px;
}
.landing-body .landing-features .feature .feature-card {
  -moz-border-radius: 36px;
  -webkit-border-radius: 36px;
  border-radius: 36px;
  padding: 28px 30px;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.landing-body .landing-features .feature .feature-card > span {
  display: none;
}
.landing-body .landing-features .feature .feature-card h3 {
  font-weight: 500;
  line-height: 36px;
  margin: 0 0 20px;
  color: rgba(41, 50, 65, 0.8);
}
.landing-body .landing-features .feature .feature-card h5 {
  margin: 0;
  font-weight: normal;
  line-height: 150%;
  color: rgba(41, 50, 65, 0.9);
  opacity: 0.8;
}
.landing-body .landing-features .feature.yellow .feature-card {
  padding-bottom: 128px;
  background: linear-gradient(197.55deg, #FFD37D -1.02%, #FFDB7D 46.53%);
}
.landing-body .landing-features .feature.blue .feature-card {
  padding-bottom: 67px;
  background: linear-gradient(156.18deg, #DAF4FF 38.02%, #CEDFFF 95.69%);
}
.landing-body .landing-features .feature.darker-blue .feature-card {
  padding-bottom: 164px;
  background: linear-gradient(165.84deg, #C1E9FF 42.24%, rgba(219, 242, 255, 0.23) 97.17%);
}
.landing-body .landing-features .feature.darker-gray .feature-card {
  padding-bottom: 109px;
  background: linear-gradient(176.91deg, rgba(41, 50, 65, 0.6) 50%, rgba(41, 50, 65, 0.282) 115.03%);
}
.landing-body .landing-features .feature.darker-gray .feature-card h3 {
  color: #FFFFFF;
}
.landing-body .landing-features .feature.darker-gray .feature-card h5 {
  color: #FFFFFF;
  opacity: 0.8;
}
.landing-body .landing-features .feature.gray .feature-card {
  padding-bottom: 50px;
  background: linear-gradient(11.49deg, rgba(41, 50, 65, 0.1) 60.37%, rgba(41, 50, 65, 0.026) 98.03%);
}
.landing-body .landing-pricing {
  background-color: #FFFFFF;
  position: relative;
  padding: 125px 15% 260px;
  text-align: center;
}
.landing-body .landing-pricing .pricing-card {
  background: #FFFFFF;
  box-shadow: 0px 0px 1px rgba(41, 50, 65, 0.5), 0px 1px 1px rgba(41, 50, 65, 0.2);
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  padding: 30px 20px 33px;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 60px;
}
.landing-body .landing-pricing .pricing-card .preferred-tag {
  padding: 14px 24px;
  background: linear-gradient(112.58deg, #FFD029 22.19%, #F1AF60 100%);
  box-shadow: 0px 10px 40px rgba(41, 50, 65, 0.06);
  -moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  transform: rotate(-7.18deg);
  position: absolute;
  top: -32px;
  color: #FFFFFF;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
}
.landing-body .landing-pricing .pricing-card h2 {
  margin: 0 0 14px;
  color: rgba(41, 50, 65, 0.9);
}
.landing-body .landing-pricing .pricing-card .price {
  display: block;
  color: #2170E7;
  font-weight: bold;
  font-size: 80px;
  line-height: 95px;
}
.landing-body .landing-pricing .pricing-card .time {
  color: rgba(41, 50, 65, 0.5);
  font-size: 12px;
  line-height: 14px;
  display: block;
  margin-bottom: 32px;
}
.landing-body .landing-pricing .pricing-card > ul {
  padding: 42px 0 0;
  width: 100%;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(41, 50, 65, 0.1);
}
.landing-body .landing-pricing .pricing-card > ul > li {
  font-size: 16px;
  line-height: 205.34%;
  color: rgba(41, 50, 65, 0.5);
}
.landing-body .landing-pricing .pricing-card.pro {
  background: linear-gradient(333.31deg, #EFF3FB 6.36%, #FFFFFF 72.79%);
}
.landing-body .landing-pricing .pricing-card.enterprise {
  background: linear-gradient(156.19deg, rgba(41, 50, 65, 0.8) 10.28%, rgba(35, 40, 49, 0.496) 87.74%);
}
.landing-body .landing-pricing .pricing-card.enterprise h2 {
  margin: 0 0 14px;
  color: #FFFFFF;
}
.landing-body .landing-pricing .pricing-card.enterprise .price {
  color: #FFFFFF;
}
.landing-body .landing-pricing .pricing-card.enterprise .time {
  color: #FFFFFF;
  opacity: 0.6;
}
.landing-body .landing-pricing .pricing-card.enterprise > ul {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.landing-body .landing-pricing .pricing-card.enterprise > ul > li {
  color: #FFFFFF;
}
.landing-body .landing-pricing > a {
  font-size: 24px;
  line-height: 29px;
  display: block;
}
.landing-body .layout-footer {
  background-color: #FFFFFF;
  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.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 .landing-wrapper .landing-banner {
    background-position: top;
    padding: 80px 23px;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: auto;
    top: auto !important;
  }
  .landing-body .landing-wrapper .landing-banner .landing-banner-content {
    text-align: left;
    max-width: 262px;
    top: auto !important;
  }
  .landing-body .landing-wrapper .landing-banner .landing-banner-content > span {
    font-size: 60px;
    line-height: 91.84%;
  }
  .landing-body .landing-wrapper .landing-banner .landing-banner-content > h3 {
    font-size: 18px;
    line-height: 130%;
  }
  .landing-body .landing-wrapper .landing-features {
    padding: 36px 20px 30px;
  }
  .landing-body .landing-wrapper .landing-features .p-lg-3 {
    transform: translateY(0) !important;
    margin-top: auto !important;
  }
  .landing-body .landing-wrapper .landing-features .feature-empty {
    display: none;
  }
  .landing-body .landing-wrapper .landing-features .feature-3 {
    margin-top: auto;
  }
  .landing-body .landing-wrapper .landing-features .feature-4 {
    margin-top: auto;
  }
  .landing-body .landing-wrapper .landing-features .feature > span {
    display: none;
  }
  .landing-body .landing-wrapper .landing-features .feature .feature-card {
    padding-bottom: 28px !important;
  }
  .landing-body .landing-wrapper .landing-features .feature .feature-card > span {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: rgba(41, 50, 65, 0.8);
    margin-right: 12px;
    margin-top: 8px;
    display: block;
  }
  .landing-body .landing-wrapper .landing-features .feature.blue .feature-card {
    flex-direction: row-reverse;
    text-align: right;
  }
  .landing-body .landing-wrapper .landing-features .feature.blue .feature-card > span {
    margin-right: 0px;
    margin-left: 12px;
  }
  .landing-body .landing-wrapper .landing-features .feature.darker-gray .feature-card {
    flex-direction: row-reverse;
    text-align: right;
  }
  .landing-body .landing-wrapper .landing-features .feature.darker-gray .feature-card > span {
    color: #FFFFFF;
    float: right;
    margin-right: 0px;
    margin-left: 12px;
  }
  .landing-body .landing-wrapper .section-header .title {
    font-size: 60px;
    line-height: 72px;
  }
  .landing-body .landing-wrapper .section-header h3 {
    font-size: 18px;
    line-height: 130%;
  }
  .landing-body .landing-wrapper .landing-pricing {
    padding: 30px 20px 97px;
  }
  .landing-body .landing-wrapper .landing-pricing .pricing-card {
    margin-bottom: 20px;
  }
  .landing-body .landing-wrapper .landing-pricing .pricing-card > ul {
    display: none;
  }
  .landing-body .landing-wrapper .landing-pricing .preferred {
    order: -1 !important;
  }
  .landing-body .landing-wrapper .landing-pricing .preferred .pricing-card > ul {
    display: block;
  }
}
.help-page p {
  margin: 0;
}
.help-page .help-search {
  background-image: url("/javax.faces.resource/images/pages/search.png.jsf?ln=freya-layout");
  padding: 0;
  text-align: center;
}
.help-page .help-search .help-search-content {
  padding: 5rem 12rem;
}
.help-page .help-search .help-search-content h3 {
  color: #161616;
  font-weight: 500;
}
.help-page .help-search .search-container {
  font-size: 1rem;
  padding: 1rem;
  position: relative;
}
.help-page .help-search .search-container input {
  appearance: none;
  font-size: 1rem;
  text-indent: 2rem;
  padding: 1rem;
  width: 100%;
}
.help-page .help-search .search-container i {
  width: 1rem;
  position: absolute;
  margin-left: 1rem;
  top: 50%;
  margin-top: -0.5rem;
}
.help-page .status-bars {
  margin-top: 1rem;
  display: -ms-flexbox;
  display: flex;
}
.help-page .status-bars .status-bar {
  flex: 1 1 0;
  -ms-flex: 1 1 0px;
  background: #6EC180;
  height: 50px;
  margin-right: 0.25rem;
  transition: transform 0.2s;
}
.help-page .status-bars .status-bar:last-child {
  margin-right: 0;
}
.help-page .status-bars .status-bar.status-bar-failure {
  background: #FF6E49;
}
.help-page .status-bars .status-bar:hover {
  transform: scale(1.1);
}
.help-page .status-bar-footer {
  padding: 1rem 0 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.help-page .blog-post {
  border-radius: 4px;
  padding: 20px;
  margin: 3rem 2rem;
  border: 1px solid #dee2e6;
  background-color: #ffffff;
  position: relative;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
}
.help-page .blog-post:last-child {
  margin-bottom: 1rem;
}
.help-page .blog-post img {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.help-page .blog-post .blog-text h1 {
  color: #161616;
  margin-bottom: 1rem;
  font-weight: 500;
}
.help-page .blog-post .blog-text span {
  color: rgba(41, 50, 65, 0.5);
  line-height: 1.4;
}
.help-page .blog-post .blog-profile {
  position: absolute;
  top: -25px;
  left: -25px;
}
.help-page .blog-post .blog-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

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

@media print {
  .invoice {
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: #424242;
  }
}
.layout-config {
  width: 630px;
  height: 100%;
  max-height: 640px;
  position: fixed;
  right: 62px;
  margin-left: 63px;
  top: calc(50% - 320px);
  padding: 0;
  overflow: auto;
  background: #ffffff;
  z-index: 999;
  border-left: 0 none;
  transform: translateX(111%);
  -moz-transition: transform 0.2s cubic-bezier(0.05, 0.74, 0.2, 0.99);
  -o-transition: transform 0.2s cubic-bezier(0.05, 0.74, 0.2, 0.99);
  -webkit-transition: transform 0.2s cubic-bezier(0.05, 0.74, 0.2, 0.99);
  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: 24px;
  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.config-shadow {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.5);
}

.layout-config-button {
  display: block;
  position: fixed;
  width: 2.5rem;
  height: 3rem;
  line-height: 1rem;
  background: #f4f9fe;
  color: #ffffff;
  text-align: center;
  opacity: 0.5;
  top: 50%;
  right: 0;
  margin-top: -1.5rem;
  border-radius: 10px 0 0 10px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
  cursor: pointer;
  z-index: 999;
  box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15);
  padding: 1rem 1rem 1rem 0.3rem;
}
.layout-config-button:hover {
  opacity: 1;
  width: 3rem;
  height: 3rem;
}
.layout-config-button i {
  padding: 0.5rem;
  margin-top: -0.5rem;
  font-size: 1rem;
  line-height: inherit;
  transform: rotate(0deg);
  transition: transform 1s;
  background: transparent;
  color: #1976D2;
  border-radius: 24px;
}
.layout-config-button.config-cancel {
  opacity: 1;
  width: 5rem;
  height: 4rem;
}
.layout-config-button.config-cancel i {
  background: #1976D2;
  color: #ffffff;
}
.layout-config-button .ui-button {
  margin-top: 1rem;
  border-radius: 24px;
}
.layout-config-button .ui-button.ui-button-icon-only {
  width: 2rem;
  min-width: 1.5rem;
}
.layout-config-button .ui-button.ui-button-icon-only .ui-button-text {
  padding: 0.29rem 0;
}
.layout-config-button.config-button-thick {
  -moz-transition: all 2s ease-out;
  -o-transition: all 2s ease-out;
  -webkit-transition: all 2s ease-out;
  transition: all 2s ease-out;
  width: 4rem;
  height: 10rem;
  margin-top: -5rem;
  padding: 1.5rem 1rem;
}

/* Add your customizations of the layout styles here */
body .ui-fluid .ui-buttonset,
body .ui-fluid .ui-button {
  width: auto;
  min-width: 120px;
}
body .ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button, body .ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button, body .ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button, body .ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button, body .ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button, body .ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button,
body .ui-fluid .ui-button.ui-buttonset-1 .ui-button,
body .ui-fluid .ui-button.ui-buttonset-2 .ui-button,
body .ui-fluid .ui-button.ui-buttonset-3 .ui-button,
body .ui-fluid .ui-button.ui-buttonset-4 .ui-button,
body .ui-fluid .ui-button.ui-buttonset-5 .ui-button,
body .ui-fluid .ui-button.ui-buttonset-6 .ui-button {
  width: auto;
  min-width: 120px;
}
body .ui-fluid .ui-buttonset.ui-buttonset-1 .ui-button.ui-button-icon-only, body .ui-fluid .ui-buttonset.ui-buttonset-2 .ui-button.ui-button-icon-only, body .ui-fluid .ui-buttonset.ui-buttonset-3 .ui-button.ui-button-icon-only, body .ui-fluid .ui-buttonset.ui-buttonset-4 .ui-button.ui-button-icon-only, body .ui-fluid .ui-buttonset.ui-buttonset-5 .ui-button.ui-button-icon-only, body .ui-fluid .ui-buttonset.ui-buttonset-6 .ui-button.ui-button-icon-only,
body .ui-fluid .ui-button.ui-buttonset-1 .ui-button.ui-button-icon-only,
body .ui-fluid .ui-button.ui-buttonset-2 .ui-button.ui-button-icon-only,
body .ui-fluid .ui-button.ui-buttonset-3 .ui-button.ui-button-icon-only,
body .ui-fluid .ui-button.ui-buttonset-4 .ui-button.ui-button-icon-only,
body .ui-fluid .ui-button.ui-buttonset-5 .ui-button.ui-button-icon-only,
body .ui-fluid .ui-button.ui-buttonset-6 .ui-button.ui-button-icon-only {
  min-width: 2.2em;
}
body .ui-fluid .ui-buttonset.ui-button-icon-only,
body .ui-fluid .ui-button.ui-button-icon-only {
  min-width: 2.2em;
}
body .customers-table-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.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;
}
