body {
  font-family: "Inter", sans-serif;
  color: #334155;
  background: #f8fafc;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

body,
html {
  font-size: 16px;
}

body > * {
  font-size: 14px;
}

rt.display-block {
  display: block;
}

.tooltip {
  position: fixed;
}

.color-white {
  color: #fff !important;
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

[dir="rtl"] .mright5 {
  margin-right: 0px;
  margin-left: 5px;
}

[dir="rtl"] .mright10 {
  margin-right: 0px;
  margin-left: 10px;
}

[dir="rtl"] .mleft5 {
  margin-left: 0px;
  margin-right: 5px;
}

[dir="rtl"] .mleft10 {
  margin-left: 0px;
  margin-right: 10px;
}

[dir="rtl"] .input-group-addon:last-child {
  border-left: 1px solid #ccc;
}

[dir="rtl"] .colorpicker.colorpicker-visible.dropdown-menu {
  left: 0px !important;
  right: auto;
  padding-left: 3px;
  margin-left: 45px;
}

.border-right {
  border-right: 1px solid #f0f0f0;
}

.line-throught {
  text-decoration: line-through;
}

.full-width {
  width: 100%;
}

.no-margin {
  margin: 0px !important;
}

.no-mtop {
  margin-top: 0px !important;
}

.no-p-left {
  padding-left: 0px !important;
}

.no-p-right {
  padding-right: 0px;
}

.relative {
  position: relative;
}

.font-medium {
  font-size: 15px;
}

.inline-block {
  display: inline-block;
}

.alert-validation {
  margin-top: 5px;
}

.table-image {
  height: 75px;
  width: 250px;
  margin: 15px 0px;
}

.announcement small {
  font-size: 12px;
  color: #333;
}

.announcement {
  font-size: 14px;
}

.bgwhite {
  background: white;
  border: 1px solid #e4e5e7;
}

.warning-bg {
  background: #ff6f00 !important;
  color: #fff !important;
  border: 1px solid #ff6f00 !important;
}

.success-bg {
  background: #84c529 !important;
  color: #fff !important;
  border: 1px solid #84c529 !important;
}

.primary-bg {
  background: #28b8da;
  color: #fff !important;
  border: 1px solid #28b8da;
}

.info-bg {
  background: #03a9f4 !important;
  color: #fff !important;
  border: 1px solid #03a9f4 !important;
}

.danger-bg {
  background: #fc2d42 !important;
  color: #fff !important;
  border: 1px solid #fc2d42 !important;
}

.submenu {
  display: inline-block;
  float: right;
  margin-bottom: 25px;
}

.submenu li {
  display: inline-block;
  margin-right: 15px;
}

.submenu li:last-child {
  margin-right: 0px;
}

.submenu li a {
  font-size: 17px;
  color: #475569 !important;
}

.submenu li a:hover,
.submenu li a:active,
.submenu li a:focus {
  color: #1e293b !important;
}

.tickets table tr.text-danger a {
  color: #fc2d42;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

.text-white {
  color: #fff !important;
}

#wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

footer {
  background: #f1f5f9;
  padding: 15px;
  width: 100%;
  height: 50px;
  margin-top: 25px;
  border-top: 1px solid #e2e8f0;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
}

h1,
h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

.h4,
h4,
.h3,
h3 {
  font-weight: 400;
}

a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
}

.navbar {
  padding: 0px;
  min-height: 60px;
  border-radius: 0px;
}

.navbar-default {
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  background: white;
}

.navbar-default .navbar-nav > li > a {
  color: #334155;
  line-height: 85px;
  font-size: 14.5px;
  display: inline;
  margin-right: 3px;
}

.navbar-default .navbar-nav > li > a i {
  margin-right: 5px;
  color: inherit;
}

.navbar-default .navbar-nav > li:last-child > a {
  margin-right: 0;
}

@media (min-width: 768px) {
  .navbar-nav > li > a {
    padding: 8px 10px;
  }
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  color: #0f172a;
  border-radius: 6px;
  background: #f1f5f9;
}

.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
  background: #f1f5f9;
  border-radius: 4px;
  color: #0f172a;
  transition: ease-in-out 0.2s;
}

.navbar-default .navbar-nav > li.dropdown > a.dropdown-toggle:focus,
.navbar-default .navbar-nav > li.dropdown > a.dropdown-toggle:hover {
  background: transparent;
  border-radius: 0;
}

.navbar a.navbar-brand {
  padding: 23px 0px 25px 0px;
  height: auto;
  margin-right: 10px;
}

.navbar a.navbar-brand img {
  width: auto;
  height: 34px;
}

.navbar-default .navbar-nav > li.customers-nav-item-login > a {
  background: #2563eb !important;
  color: #fff !important;
  display: inline;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px !important;
  padding: 8px 16px;
  margin-left: 10px;
}

.navbar-default .navbar-nav > li.customers-nav-item-login > a:hover,
.navbar-default .navbar-nav > li.customers-nav-item-login > a:active {
  background: #1d4ed8 !important;
  border-radius: 6px !important;
}

.navbar-default .navbar-nav > li.customers-nav-item-profile > a {
  padding-right: 0;
}

@media (max-width: 767px) {
  .customers-nav-item-languages {
    display: none;
  }
}

.btn.btn-input-group {
  padding: 7px 16px;
  border: 1px transparent;
}

.btn-icon {
  padding: 2px 6px 2px 6px !important;
}

.original-button {
  margin-top: 22px;
  padding: 6px 12px;
}

#client-home-chart {
  max-width: 100%;
}

.client-reply .panel-body {
  background: #fefce8 !important;
  color: #854d0e;
}

body.viewinvoice .alert {
  margin-top: 10px;
  margin-bottom: -7px;
  border-radius: 1px;
}

.navbar-default .navbar-brand.logo-text {
  font-size: 24px;
  margin-top: 13px;
  display: inline-block;
  color: #1e293b;
  font-weight: 600;
}

.logo-text:hover,
.logo-text:focus,
.logo-text:active {
  color: #0f172a;
}

@media (max-width: 767px) {
  .navbar a.navbar-brand img {
    margin-left: 25px;
  }

  .navbar-default .navbar-brand.logo-text {
    margin-left: 15px;
    margin-top: 15px;
  }
}

.p7 {
  padding: 7px;
}

.p8 {
  padding: 8px;
}

.p8-half {
  padding: 8.5px;
}

.p15 {
  padding: 15px;
}

.valign-middle {
  vertical-align: middle;
}

.mtop5 {
  margin-top: 5px;
}

.mtop7 {
  margin-top: 7px;
}

.mtop10 {
  margin-top: 10px;
}

.mtop15 {
  margin-top: 15px;
}

.mtop20 {
  margin-top: 20px;
}

.mtop25 {
  margin-top: 25px;
}

.mtop30 {
  margin-top: 30px;
}

.mtop40 {
  margin-top: 40px;
}

.mbot5 {
  margin-bottom: 5px;
}

.mbot10 {
  margin-bottom: 10px;
}

.mbot15 {
  margin-bottom: 15px;
}

.mbot20 {
  margin-bottom: 20px;
}

.mbot25 {
  margin-bottom: 25px;
}

.mbot30 {
  margin-bottom: 30px;
}

.mbot40 {
  margin-bottom: 40px;
}

.mleft5 {
  margin-left: 5px;
}

.mleft10 {
  margin-left: 10px;
}

.mright5 {
  margin-right: 5px;
}

.mright10 {
  margin-right: 10px;
}

.padding-30 {
  padding: 30px !important;
}

.no-mbot {
  margin-bottom: 0px;
}

.invoice-quick-info h5 {
  margin-top: 0px;
}

.table.items {
  margin-top: 25px;
  font-size: 13.5px;
}

.table.items thead {
  background: #f1f5f9;
  color: #1e293b;
}

.table.items > thead:first-child > tr:first-child > th {
  border-top: 1px solid #e2e8f0;
}

.table.items thead th {
  border-right: 1px solid #e2e8f0;
}

.table.items thead th:first-child {
  border-left: 1px solid #e2e8f0;
}

.table.items tbody > tr > td,
.table.items thead > tr > th {
  padding: 8px 10px;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
  border-color: #e2e8f0;
}

.navbar-default .navbar-toggle {
  border-color: transparent;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #cbd5e1;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: transparent;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav > li > a {
    line-height: 35px;
    color: #64748b;
  }

  .navbar-default .navbar-nav > .active > a,
  .navbar-default .navbar-nav > .active > a:focus,
  .navbar-default .navbar-nav > .active > a:hover,
  .navbar-default .navbar-nav > li > a:focus,
  .navbar-default .navbar-nav > li > a:hover {
    background: transparent;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #475569;
  }

  .navbar-default .navbar-nav > li.customers-nav-item-login {
    padding-bottom: 10px;
  }

  .navbar-default .navbar-nav > li.customers-nav-item-login > a {
    margin-left: 15px;
  }

  .navbar a.navbar-brand {
    padding: 13px 0px 19px 0px;
  }

  .navbar-toggle {
    margin-top: 15px;
  }

  #staff_logged_in {
    display: none;
  }

  .viewestimate .panel-body,
  .viewinvoice .panel-body {
    padding: 0px;
  }
}

.dataTables_length select {
  padding-top: 5px;
  height: inherit;
}

[dir="rtl"] div.dataTables_wrapper div.dataTables_filter {
  text-align: left;
}

[dir="rtl"] div.dataTables_wrapper {
  direction: rtl;
}

[dir="rtl"] div.dataTables_wrapper div.dataTables_filter .input-group-addon {
  border-right: 1px solid #bfcbd9;
}

.label-href:visited,
.label-href {
  outline: 0 !important;
  border: 0 !important;
}

.pointer {
  cursor: pointer;
}

.mime {
  background-repeat: no-repeat;
  background-position: 0 0;
  padding: 1px 0 4px 26px;
}

.mime-word {
  background-image: url(../../../images/mime/word.png);
}

.mime-excel {
  background-image: url(../../../images/mime/excel.png);
}

.mime-powerpoint {
  background-image: url(../../../images/mime/powerpoint.png);
}

.mime-pdf {
  background-image: url(../../../images/mime/pdf.png);
}

.mime-zip {
  background-image: url(../../../images/mime/zip.png);
}

.mime-image {
  background-image: url(../../../images/mime/image.png);
}

.mime-file {
  background-image: url(../../../images/mime/file.png);
}

.mime-photoshop {
  background-image: url(../../../images/mime/photoshop.png);
}

.mime-illustrator {
  background-image: url(../../../images/mime/illustrator.png);
}

.mime-video {
  background-image: url(../../../images/mime/video.png);
}

.mime-audio {
  background-image: url(../../../images/mime/audio.png);
}

.files-container {
  margin: 0 0 10px;
}

.files {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.hr-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mime > a {
  color: #555 !important;
  text-decoration: none;
}

.white {
  color: #fff;
}

.advanced-editor-wrapper {
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

.staff-profile-image-small {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.staff-profile-xs-image {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.staff-profile-image-small {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.staff-profile-image-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
}

.task-attachment {
  border: 1px solid #f0f0f0;
  padding: 10px;
  border-radius: 3px;
  max-height: 255px;
  min-height: 255px;
  overflow: hidden;
}

.task-attachment .task-attachment-no-preview {
  margin-top: 45px;
  text-align: center;
}

.task-attachment .preview_image {
  margin: 0px;
  width: 100%;
}

.task-attachment .open-in-external {
  position: absolute;
  right: 30px;
}

.task-attachment .task-attachment-user {
  padding-bottom: 10px;
  display: inline-block;
  width: 100%;
  margin-left: 0px;
  border-bottom: 1px solid #f0f0f0;
}

.media-body {
  word-break: break-word;
}

#proposal-wrapper {
  overflow: hidden;
  min-height: 100%;
}

#proposal-wrapper .proposal-left img {
  margin-left: 10px;
  margin-right: 10px;
}

div.proposal-wrapper img:not(.media-object) {
  display: block;
  max-width: 100%;
  height: auto;
}

.proposal-comment {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}

.table.proposal-items thead > tr > th {
  padding-left: 10px;
}

.table.proposal-items tbody > tr > td,
.table.proposal-items thead > tr > th {
  text-align: left;
}

.client-profile-image-small {
  height: 32px;
  width: 32px;
  border-radius: 50%;
}

.client-profile-image-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
}

#task h4 {
  font-size: 15px;
}

#task h5 {
  font-size: 14px;
}

#task .task-info {
  font-size: 10px;
  vertical-align: middle;
  padding: 10px;
}

#task .task-info h5 {
  font-size: 13px;
  font-weight: 400;
}

.jquery-comments [contentEditable="true"]:empty:not(:focus):before {
  color: #a1b4cc;
  font-size: 14px;
}

.jquery-comments ul.main {
  list-style: none !important;
}

.jquery-comments.tc-content ul.main ul:not(.child-comments) {
  list-style: initial !important;
}

.jquery-comments ul.navigation li,
.jquery-comments ul.main li.comment .actions > *,
.jquery-comments ul.main li.comment .name,
.jquery-comments .highlight-font-bold {
  font-weight: 500 !important;
}

.jquery-comments ul.main li.comment .name {
  color: #0081bb;
}

.jquery-comments ul.main li.comment .wrapper .content {
  padding: 5px 0px 5px 0px;
}

.jquery-comments ul.navigation li {
  color: #323a45;
}

.jquery-comments .textarea-wrapper .control-row > span.upload {
  padding: 5px 20px;
  background-color: #7d838b;
}

.jquery-comments .highlight-background {
  background: #03a9f4 !important;
}

.jquery-comments .textarea-wrapper .control-row > span {
  padding: 5px 20px !important;
  border-radius: 4px;
}

.jquery-comments .textarea-wrapper .control-row {
  margin-top: 10px;
}

.jquery-comments ul.main li.comment .actions > * {
  color: #7c838b;
}

.jquery-comments ul.navigation .navigation-wrapper {
  padding: 10px 0px 0px 0px;
}

.jquery-comments ul.navigation {
  border-bottom: 1px solid #efefef;
  margin-bottom: 1.5em;
}

.jquery-comments .textarea-wrapper {
  padding-left: 21px;
}

.jquery-comments .textarea-wrapper:before {
  border: 0px;
}

.jquery-comments .textarea-wrapper .textarea {
  border-radius: 3px;
  border: 1px solid #bfcbd9;
}

.project-info-bg {
  background: #fbfbfb !important;
  color: #333 !important;
  border-top: 1px solid #e4e5e7;
  border-left: 1px solid #e4e5e7;
  border-right: 1px solid #e4e5e7;
  font-weight: 500;
}

.no-radius {
  border-radius: 0px !important;
}

.team-members .panel-body {
  padding: 0px;
}

.team-members .media-left {
  padding: 10px;
}

.team-members .media-body {
  padding-right: 10px;
  padding-top: 12px;
}

.team-members .media:last-child {
  border-bottom: 0px;
}

.team-members .media {
  margin-top: 0px;
  border-bottom: 1px solid #f0f0f0;
}

.project-percent {
  position: absolute;
  font-size: 33px;
  font-weight: 500;
  top: 35%;
  left: 0;
  right: 0;
}

.project-file-image {
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  margin-right: 15px;
}

#task-tracking-stats-modal {
  z-index: 999999999999;
}

.phase-logged-time {
  color: #3b6900;
}

.progress-bg-dark {
  background-color: #7c838b;
}

.project-overview-progress-bar {
  height: 50px;
  background-color: #7c838b;
  position: relative;
}

.project-overview-progress-bar .project-progress-number {
  font-size: 16px;
  position: absolute;
  display: block;
  width: 100%;
  color: #fff;
  font-weight: 500;
  margin-top: 15px;
  text-shadow: 0px 0px 2px #333;
}

.task-user {
  border: 1px solid #f0f0f0;
  padding: 2px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
  position: relative;
}

.task-checklist-indicator {
  border-radius: 50%;
  border: 1px solid #f0f0f0;
  width: 20px;
  height: 21px;
  display: inline-block;
}

.task-checklist-indicator i {
  margin: 0 auto;
  vertical-align: middle;
  margin-left: 3px;
}

#task-comments {
  background: #fdfdfd;
  margin-right: -20px;
  margin-left: -20px;
  padding: 20px;
  display: inline-block;
}

form.dropzone {
  background-color: #fbfdff;
  border: 1px dashed #c0ccda;
  border-radius: 6px;
}

.dropzone .dz-message {
  margin-top: 45px;
  color: #03a9f4;
}

@media (max-width: 768px) {
  #content {
    padding: 15px;
  }

  ._buttons .mleft5 {
    margin-left: 0px !important;
  }

  ._buttons .mright10 {
    margin-right: 0px !important;
  }

  ._buttons .pull-left,
  ._buttons .pull-right {
    float: none !important;
  }

  ._buttons .btn,
  ._buttons .btn-group {
    display: inline-block;
    margin-left: 0px !important;
    width: 100%;
    margin-bottom: 5px !important;
    float: none !important;
  }

  .project-overview-column {
    margin-top: 15px;
  }
}

.tasks-phases .panel-body {
  background: #fbfbfb;
  padding: 10px;
}

.tasks-phases ._task_wrapper {
  background: #fff;
  padding: 5px 10px 5px 10px;
  border: 1px solid #e4e5e7;
  border-radius: 4px;
}

.activity-feed {
  padding: 15px;
}

.activity-feed .feed-item {
  position: relative;
  padding-bottom: 20px;
  padding-left: 30px;
  border-left: 2px solid #84c529;
}

.activity-feed .feed-item:last-child {
  border-color: transparent;
}

.activity-feed .feed-item:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #4b5158;
}

.activity-feed .feed-item .date {
  position: relative;
  top: -5px;
  color: #333;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.activity-feed .feed-item .text {
  position: relative;
  top: -3px;
}

.full-screen-modal {
  width: 90%;
  height: 90%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  overflow-y: initial !important;
}

.full-screen-modal .modal-content {
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

.full-screen-modal .modal-footer {
  bottom: 0px;
  position: absolute;
  width: 100%;
}

.project_file_discusssions_area,
.project_file_area {
  overflow-y: scroll;
  height: 400px;
}

@media (max-width: 768px) {
  .project_file_discusssions_area,
  .project_file_area {
    height: auto !important;
  }

  .full-screen-modal {
    width: auto;
    height: auto;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 10px;
    overflow-y: initial !important;
  }

  .project_file_discusssions_area {
    margin-top: 30px;
  }

  .full-screen-modal .modal-footer {
    width: auto;
    position: relative !important;
  }
}

.preview_image {
  height: auto;
  width: 250px;
  overflow: hidden;
  margin-bottom: 15px;
  margin-top: 15px;
}

.preview_image:last-child {
  margin-top: 0px;
  margin-bottom: 0px;
}

.preview_image img {
  width: 100%;
  height: auto;
}

.fc-event {
  padding: 8px !important;
  border: 0px !important;
  border-radius: 2px !important;
  margin: 5px 10px 5px 10px !important;
  font-size: 11px;
  cursor: pointer;
}

.fc-view {
  overflow-y: scroll;
}

#calendar .fc-header-toolbar button,
#calendar .fc-day-header,
#calendar .fc-toolbar .fc-center {
  text-transform: capitalize;
}

.tc-content ul,
.tc-content ol {
  list-style: inherit;
  margin-left: 15px;
}

.tc-content ol {
  list-style-type: decimal;
}

.tc-content table {
  margin-top: 0px;
  border-collapse: initial;
}

.tc-content table > tbody > tr > td {
  padding: 5px 10px 5px 10px;
}

.tc-content img {
  max-width: 100%;
}

.tc-content table[border="1"],
.tc-content table[border="1"] td {
  border: 1px solid;
}

.tc-content em {
  font-style: italic;
}

.proposal-view .tc-content ul,
.proposal-view .tc-content ol,
.contract-view .tc-content ul,
.contract-view .tc-content ol {
  margin-left: 0px;
}

.kb-search-jumbotron {
  margin-top: -20px;
  margin-bottom: 10px;
  background: #f9fafb;
}

.has-feedback.has-feedback-left .form-control-feedback {
  left: 0;
}

.kb-search .form-control-feedback {
  left: 6px !important;
  top: 17px;
  font-size: 16px;
}

.kb-search input[type="search"] {
  padding-left: 40px;
  height: 50px;
  font-size: 17px;
}

.kb-search input[type="search"]:focus {
  padding-left: 15px;
}

.kb-search button[type="submit"] {
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

#toplink,
#botlink {
  position: fixed;
  right: 7.5%;
  bottom: 53%;
  padding: 10px;
  margin: 0 -20px 0 0;
  color: #666;
  background: #e9ebef;
  font-size: 1.5em;
  border: 1px solid #b4b4b4;
  border-bottom: 1px solid #b8b8b8;
  border-radius: 6px 6px 0 0;
  z-index: 99;
  -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
}

#botlink {
  top: 47%;
  padding: 10px;
  bottom: auto;
  border: 1px solid #b4b4b4;
  border-top: 1px solid #ddd;
  border-radius: 0 0 6px 6px;
}

#toplink:hover,
#botlink:hover {
  color: #84c529;
  background: #fcfcfc;
  text-decoration: none;
}

.panel-body.project-description {
  padding: 11px;
}

.custom-field-inline-edit-link {
  float: left;
  margin-right: 5px;
}

.task-single-status .label {
  float: left;
}

._task_wrapper.overdue-task {
  background: #f2dede !important;
  border-color: #eab8b7 !important;
}

.form-group + p.alert-validation {
  margin-top: -10px;
}

@media screen and (max-height: 575px),
  screen and (min-width: 992px) and (max-width: 1199px) {
  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.83);
    -webkit-transform: scale(0.83);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}

th[align="left"],
td[align="left"] {
  text-align: left;
}

th[align="right"],
td[align="right"] {
  text-align: right;
}

th[align="center"],
td[align="center"] {
  text-align: center !important;
}

[dir="rtl"] th[align="left"],
[dir="rtl"] td[align="left"] {
  text-align: right !important;
}

[dir="rtl"] th[align="right"],
[dir="rtl"] td[align="right"] {
  text-align: left !important;
}

.signature-pad--body {
  border-radius: 4px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #c0cbda;
}

.gdpr-right {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 35px 15px;
  text-align: center;
  margin-bottom: 25px;
  border-radius: 6px;
}

.gdpr-right .gdpr-right-heading {
  margin-top: 0px;
  margin-bottom: 20px;
  font-size: 22px;
}

.gdpr-purpose {
  border: 1px solid #d8d8d8;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
}

.gdpr-purpose .gdpr-purpose-heading {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 500;
  color: #5a5a5a;
}

.list-status h3 {
  margin-top: 0px;
}

.list-status:last-child {
  border-right: 0px;
}

.list-status a {
  border: 1px solid #eeeeee;
  padding: 15px;
  display: inline-block;
  width: 100%;
  border-radius: 4px;
}

.list-status a.active {
  background: #f9fafb;
}

.ticket-info p:last-child {
  margin-bottom: 0px;
}

.gpicker {
  opacity: 0;
}

.gpicker + div[id^="dropbox-chooser"] {
  float: right;
  margin-left: 5px;
}

.gpicker {
  height: 14px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: #4c4c4c;
  text-decoration: none;
  padding: 1px 7px 5px 3px;
  border: 1px solid #ebebeb;
  border-radius: 2px;
  border-bottom-color: #d4d4d4;
  background: #fcfcfc;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fcfcfc),
    to(#f5f5f5)
  );
  background: linear-gradient(to bottom, #fcfcfc 0%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#f5f5f5', GradientType=0);
  line-height: 18px !important;
  text-decoration: none !important;
  box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  -moz-box-sizing: content-box !important;
}

.preview-sticky-header {
  z-index: 1;
  background: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-box-shadow: 0px 1px 15px 1px rgba(90, 90, 90, 0.08);
  box-shadow: 0px 1px 15px 1px rgba(90, 90, 90, 0.08);
  width: 100% !important;
  left: 0px !important;
}

@media (max-width: 767px) {
  .preview-sticky-header {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.preview-sticky-header .sticky-hidden {
  display: none !important;
}

.preview-sticky-header .sticky-visible {
  display: inherit !important;
}

.mobile .preview-sticky-header {
  padding: 15px;
}

/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops

  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1281px), (min-width: 1025px) and (max-width: 1280px) {
  .preview-top-wrapper {
    margin-top: 25px;
  }
}

[dir="rtl"] .bootstrap-select .dropdown-toggle .filter-option {
  right: 0;
  margin-right: auto;
  text-align: right;
  padding-right: 16px;
}

.task-comment .task-attachment-col-more {
  display: block !important;
}

.comment-content .task-attachment-col:nth-child(2),
.comment-content .task-attachment-col:nth-child(3),
.comment-content .task-attachment-col:nth-child(4) {
  margin-top: 15px;
}

.task-comment .task-attachment-col {
  margin-left: 0;
  padding-left: 0;
}

.tasks-phases {
  overflow: scroll hidden;
}

.kan-ban-col {
  width: 326px;
  height: 416px;
  margin-right: 6px;
  display: inline-block;
}

.tasks-phases .kan-ban-col .panel-body {
  height: 100%;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .kan-ban-col {
    width: 216px;
    height: 416px;
    margin-right: 6px;
    display: inline-block;
  }
}

body[dir="rtl"].safari .table-responsive .table {
  max-width: none;
  -webkit-overflow-scrolling: touch !important;
}

@media (max-width: 991px) {
  .register-heading.text-right {
    text-align: center;
  }
}

.g-recaptcha > div {
  margin: 0 auto;
}

body.acrie-theme {
  background: hsl(220 20% 97%);
  color: hsl(222 25% 15%);
}

.acrie-theme #wrapper,
.acrie-theme #content {
  flex: 1;
}

.acrie-theme .topbar .container,
.acrie-theme #content > .container,
.acrie-theme .acrie-content__container {
  width: 100%;
  max-width: 1180px;
  padding-left: 16px;
  padding-right: 16px;
}

.acrie-theme .topbar .container {
  padding-left: 0;
}

.acrie-theme .topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(220 15% 91%);
}

.acrie-theme .topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 80px;
  gap: 20px;
}

.acrie-theme .brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 0 0 auto;
  order: 1;
  margin-left: 0;
}

.acrie-theme .brand-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: max-content;
  overflow: visible;
}

.acrie-theme .brand-logo .navbar-brand {
  float: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: 180px;
  padding: 0;
  margin: 0;
  height: auto;
  overflow: visible;
}

.acrie-theme .brand-logo .navbar-brand img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 180px !important;
  max-height: 34px !important;
  margin-left: 0;
  object-fit: contain;
}

.acrie-theme .brand-logo .logo-text {
  margin: 0;
  font-size: 24px;
  color: var(--acrie-primary);
}

.acrie-theme .menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 10px;
}

.acrie-theme .menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: hsl(222 25% 15%);
  border-radius: 999px;
}

.acrie-theme .nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  width: auto;
  order: 2;
}

.acrie-theme .nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acrie-theme .nav > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.acrie-theme .nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(222 25% 15% / 0.7);
  border-radius: 0.6rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acrie-theme .nav .nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.acrie-theme .nav a:hover,
.acrie-theme .nav a.active,
.acrie-theme .nav > li.active > a {
  color: var(--acrie-primary);
  background: hsl(340 82% 52% / 0.06);
}

.acrie-theme .nav a svg {
  width: 16px;
  height: 16px;
}

.acrie-theme .nav-dropdown {
  position: relative;
}

.acrie-theme .nav-caret {
  width: 14px !important;
  height: 14px !important;
}

.acrie-theme .nav-submenu {
  min-width: 190px;
  margin-top: 10px;
  border: 1px solid hsl(220 15% 91%);
  border-radius: 14px;
  box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.acrie-theme .nav-submenu li a {
  display: block;
  padding: 10px 14px;
  color: hsl(222 25% 15% / 0.78);
  font-size: 0.875rem;
}

.acrie-theme .nav-submenu li a:hover {
  background: hsl(220 15% 95%);
  color: var(--acrie-primary);
}

.acrie-theme .actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-left: auto;
  order: 3;
}

.acrie-theme .icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(222 25% 15%);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.acrie-theme .icon-btn:hover {
  background: hsl(220 15% 95%);
  border-radius: 0.6rem;
}

.acrie-theme .icon-btn svg {
  width: 20px;
  height: 20px;
}

.acrie-theme .icon-btn .dot {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--acrie-primary);
}

.acrie-theme .icon-btn .counter {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  min-height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: hsl(38 92% 50%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.acrie-theme .avatar-link {
  display: inline-flex;
}

.acrie-theme .avatar,
.acrie-theme .avatar-image {
  width: 40px;
  height: 40px;
  border-radius: 999px;
}

.acrie-theme .avatar {
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px -4px hsl(340 82% 52% / 0.25);
}

.acrie-theme .avatar-image {
  object-fit: cover;
}

.acrie-theme .customers-nav-item-profile {
  position: relative;
}

.acrie-theme .customers-nav-item-profile .dropdown-menu {
  left: auto;
  right: 0;
  min-width: 200px;
  margin-top: 10px;
  border: 1px solid hsl(220 15% 91%);
  border-radius: 12px;
  box-shadow: 0 14px 30px -24px rgba(15, 23, 42, 0.25);
  overflow: hidden;
}

.acrie-theme .customers-nav-item-profile .dropdown-menu > li > a {
  white-space: normal;
}

.acrie-theme .notifications-dropdown {
  position: relative;
}

.acrie-theme .notifications-panel {
  right: 0;
  left: auto;
  width: 400px;
  padding: 0;
  margin-top: 14px;
  border: 1px solid hsl(220 15% 91%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px -28px rgba(15, 23, 42, 0.35);
}

.acrie-theme .notifications-panel__head,
.acrie-theme .notifications-panel__footer {
  padding: 14px 16px;
  background: #fff;
}

.acrie-theme .notifications-panel__head {
  text-align: center;
  border-bottom: 1px solid hsl(220 15% 91%);
}

.acrie-theme .notifications-panel__head a,
.acrie-theme .notifications-panel__footer a {
  color: #2563eb;
  font-weight: 500;
}

.acrie-theme .notifications-panel__list {
  max-height: 420px;
  overflow-y: auto;
  background: #f8fafc;
}

.acrie-theme .notifications-panel__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid hsl(220 15% 91%);
  color: hsl(222 25% 15%);
}

.acrie-theme .notifications-panel__item:hover {
  background: #eef2ff;
}

.acrie-theme .notifications-panel__item-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.acrie-theme .notifications-panel__item-body strong {
  font-size: 14px;
  font-weight: 500;
}

.acrie-theme .notifications-panel__item-body span {
  font-size: 13px;
  color: hsl(220 10% 46%);
}

.acrie-theme .notifications-panel__item i {
  margin-top: 3px;
  color: hsl(220 10% 46%);
}

.acrie-theme .notifications-panel__empty {
  padding: 18px 16px;
  text-align: center;
  color: hsl(220 10% 46%);
  font-size: 13px;
}

.acrie-theme .notifications-panel__footer {
  text-align: center;
  border-top: 1px solid hsl(220 15% 91%);
}

.acrie-theme .acrie-template-row {
  margin-left: 0;
  margin-right: 0;
}

.acrie-theme .acrie-dashboard {
  padding-left: 0;
  padding-right: 0;
}

.acrie-theme .acrie-page-shell {
  padding-top: 2.5rem;
  padding-left: 0;
  padding-right: 0;
}

.acrie-theme .acrie-template-row.acrie-page-shell > .acrie-page-shell {
  padding-top: 0;
}

.acrie-theme .acrie-page-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: hsl(222 25% 15%);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

.acrie-theme .acrie-page-title--stack {
  margin-bottom: 1.25rem;
}

.acrie-theme .acrie-page-title__text,
.acrie-theme .acrie-page-title__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.acrie-theme .acrie-page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.acrie-theme .acrie-page-toolbar__left,
.acrie-theme .acrie-page-toolbar__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.acrie-theme #content h4.tw-font-semibold,
.acrie-theme #content h4.section-heading,
.acrie-theme #content .section-text,
.acrie-theme #content .tickets-summary-heading,
.acrie-theme #content .projects-summary-heading,
.acrie-theme #content .invoices-quick-info-heading {
  color: hsl(222 25% 15%);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1.1rem;
}

.acrie-theme #content .tw-flex > h4.section-heading,
.acrie-theme #content .row.section-heading h4,
.acrie-theme #content .section-profile h4 {
  margin-bottom: 0;
}

.acrie-theme #content .panel_s {
  background: #fff;
  border: 1px solid hsl(220 15% 91% / 0.8);
  border-radius: 18px;
  box-shadow: 0 10px 24px -22px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.acrie-theme #content .panel_s .panel-body {
  padding: 1.6rem;
  background: #fff;
}

.acrie-theme #content .panel_s .panel-footer {
  padding: 1rem 1.6rem 1.25rem;
  background: hsl(220 20% 98%);
  border-top: 1px solid hsl(220 15% 91%);
}

.acrie-theme #content .panel_s hr {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border-top-color: hsl(220 15% 91%);
}

.acrie-theme #content .btn.btn-primary,
.acrie-theme #content .btn-primary {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
  box-shadow: 0 8px 24px -16px hsl(340 82% 52% / 0.55);
  font-weight: 600;
  padding: 0.72rem 1.2rem;
}

.acrie-theme #content .btn.btn-default {
  border-radius: 999px;
  border-color: hsl(220 15% 88%);
  color: hsl(220 10% 35%);
  background: #fff;
}

.acrie-theme #content .form-control,
.acrie-theme #content .bootstrap-select > .dropdown-toggle {
  height: 46px;
  border-radius: 12px;
  border-color: hsl(220 15% 88%);
  box-shadow: none;
  color: hsl(222 25% 15%);
  background: #fff;
}

.acrie-theme #content textarea.form-control {
  height: auto;
  min-height: 120px;
  border-radius: 16px;
}

.acrie-theme #content .form-control:focus,
.acrie-theme #content .bootstrap-select > .dropdown-toggle:focus {
  border-color: hsl(340 82% 52% / 0.45);
  box-shadow: 0 0 0 4px hsl(340 82% 52% / 0.08);
}

.acrie-theme #content .bootstrap-select .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

.acrie-theme #content .table {
  margin-bottom: 0;
}

.acrie-theme #content .table > thead > tr > th {
  padding: 8px;
  border-bottom: 1px solid hsl(220 15% 91%);
  color: hsl(220 10% 46%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acrie-theme #content .table > tbody > tr > td {
  padding: 8px;
  border-top: 1px solid hsl(220 15% 94%);
  color: hsl(222 25% 15%);
  vertical-align: middle;
}

.acrie-theme #content .table > tbody > tr:first-child > td {
  border-top: 0;
}

.acrie-theme #content .table > tbody > tr:hover > td {
  background: hsl(220 20% 98%);
}

.acrie-theme #content .panel_s a:not(.btn),
.acrie-theme #content .panel_s .btn-link {
  color: var(--acrie-primary);
}

.acrie-theme #content .panel_s .table a {
  color: hsl(222 25% 15%);
  font-weight: 500;
}

.acrie-theme #content .panel_s .table a:hover,
.acrie-theme #content .panel_s a:hover {
  color: var(--acrie-primary);
}

.acrie-theme #content .label,
.acrie-theme #content .label-tag {
  border-radius: 999px;
  padding: 0.42rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.acrie-theme #content .row-options {
  margin-top: 0.45rem;
}

.acrie-theme #content .row-options a {
  font-size: 0.78rem;
  color: hsl(220 10% 46%);
}

.acrie-theme #content .row-options a.text-danger {
  color: hsl(0 84% 60%);
}

.acrie-theme .acrie-projects-page {
  padding-left: 0;
  padding-right: 0;
}

.acrie-theme .acrie-projects-summary-wrap {
  margin-bottom: 1.5rem;
}

.acrie-theme .acrie-project-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.acrie-theme .acrie-project-summary__card {
  display: block;
  border-radius: 18px;
  border: 1px solid hsl(220 15% 91%) !important;
  background: #fff !important;
  box-shadow: 0 1px 2px 0 hsl(220 15% 20% / 0.04);
  text-decoration: none;
}

.acrie-theme .acrie-project-summary__inner {
  padding: 1.2rem 1.25rem !important;
}

.acrie-theme .acrie-project-summary__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.acrie-theme .acrie-project-summary__value-wrap {
  margin-top: 0.8rem !important;
}

.acrie-theme .acrie-project-summary__value {
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

.acrie-theme #content .table-projects.dataTable {
  width: 100% !important;
}

.acrie-theme #content .table-projects > thead > tr > th {
  color: hsl(220 10% 46%);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.1;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-right: 28px;
  vertical-align: middle;
}

.acrie-theme #content .table-projects > tbody > tr > td {
  white-space: nowrap;
}

.acrie-theme #content .dataTables_wrapper .row:first-child {
  margin-bottom: 0.75rem;
}

.acrie-theme #content .dataTables_wrapper .dataTables_length,
.acrie-theme #content .dataTables_wrapper .dataTables_filter {
  margin-bottom: 0.5rem;
}

.acrie-theme #content .dataTables_wrapper .dataTables_length label,
.acrie-theme #content .dataTables_wrapper .dataTables_filter label {
  font-weight: 400;
  color: hsl(220 10% 46%);
}

.acrie-theme #content .dataTables_wrapper .dataTables_length select {
  min-width: 76px;
  height: 46px;
  border: 1px solid hsl(220 15% 88%);
  border-radius: 14px;
  padding: 0 12px;
  background: #fff;
  color: hsl(222 25% 15%);
}

.acrie-theme #content .dataTables_wrapper .dataTables_filter {
  text-align: right;
}

.acrie-theme #content .dataTables_wrapper .dataTables_filter .input-group {
  display: inline-flex;
  align-items: stretch;
}

.acrie-theme #content .dataTables_wrapper .dataTables_filter .input-group-addon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border: 1px solid hsl(220 15% 88%);
  border-right: 0;
  border-radius: 14px 0 0 14px;
  background: #fff;
  color: hsl(220 10% 46%);
}

.acrie-theme #content .dataTables_wrapper .dataTables_filter input {
  width: 180px !important;
  height: 46px;
  margin-left: 0;
  border: 1px solid hsl(220 15% 88%);
  border-radius: 0 14px 14px 0;
  padding: 0 14px;
  box-shadow: none;
  color: hsl(222 25% 15%);
  background: #fff;
}

.acrie-theme #content .dataTables_wrapper .dataTables_filter input:focus,
.acrie-theme #content .dataTables_wrapper .dataTables_length select:focus {
  border-color: hsl(340 82% 52% / 0.45);
  outline: 0;
  box-shadow: 0 0 0 4px hsl(340 82% 52% / 0.08);
}

.acrie-theme #content .tw-grid > a,
.acrie-theme #content dl.tw-grid > a {
  border-radius: 18px;
  border-color: hsl(220 15% 91%) !important;
  background: #fff !important;
  box-shadow: 0 1px 2px 0 hsl(220 15% 20% / 0.04);
}

.acrie-theme #content dl.tw-grid dt {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.acrie-theme #content dl.tw-grid dd {
  color: hsl(222 25% 15%);
}

.acrie-theme .main {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.acrie-theme .welcome {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.acrie-theme .welcome-copy {
  max-width: 620px;
}

.acrie-theme .welcome h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.acrie-theme .welcome h1 .text-primary {
  color: var(--acrie-primary);
}

.acrie-theme .welcome-actions {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  flex-wrap: wrap;
}

.acrie-theme .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid hsl(220 15% 91%);
  background: #fff;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acrie-theme .btn-outline:hover {
  background: hsl(220 15% 95%);
}

.acrie-theme .btn-outline svg,
.acrie-theme .btn-primary svg {
  width: 16px;
  height: 16px;
}

.acrie-theme .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
  border-radius: 999px;
  box-shadow: 0 8px 32px -4px hsl(340 82% 52% / 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acrie-theme .btn-primary.full {
  width: 100%;
  margin-top: 1.25rem;
}

.acrie-theme .btn-primary[disabled] {
  cursor: not-allowed;
  opacity: 0.9;
}

.acrie-theme .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.acrie-theme .section-head h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}

.acrie-theme .bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--acrie-primary);
  display: inline-block;
}

.acrie-theme #content h3.ehm-module-section-heading,
.acrie-theme #content h4.ehm-module-section-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(222 25% 15%);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25;
}

.acrie-theme #content .ehm-module-section-heading::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: var(--acrie-primary);
}

.acrie-theme #content .ehm-status-server-detail .ehm-status-center-heading h4.section-heading {
  margin-bottom: 0.25rem;
}

.acrie-theme #content .ehm-status-server-detail .ehm-status-component-header h4.tw-font-semibold {
  margin-bottom: 0;
}

.acrie-theme #content .section-heading-service-information + .panel_s .panel-body {
  padding: 1.8rem;
}

.acrie-theme #content .section-heading-service-information + .panel_s dl.row {
  margin-right: 0;
  margin-left: 0;
  row-gap: 1.8rem;
}

.acrie-theme #content .section-heading-service-information + .panel_s dl.row > div {
  margin-bottom: 0 !important;
  padding-right: 2rem;
  padding-left: 0;
}

.acrie-theme #content .section-heading-service-information + .panel_s dl.row > div > div {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.acrie-theme #content .section-heading-service-information + .panel_s dt {
  margin-bottom: 0.45rem !important;
  color: hsl(220 10% 46%);
  font-size: 0.8rem;
  line-height: 1.3;
}

.acrie-theme #content .section-heading-service-information + .panel_s dt .fa {
  width: 1rem;
  color: var(--acrie-primary);
  text-align: center;
}

.acrie-theme #content .section-heading-service-information + .panel_s dd {
  color: hsl(222 25% 15%);
  font-size: 0.95rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.acrie-theme #content .section-heading-service-information + .panel_s dl + div {
  margin-top: 1.8rem !important;
  padding-top: 1.35rem !important;
  border-top-color: hsl(220 15% 91%) !important;
}

.acrie-theme #content .section-heading-service-information + .panel_s dl + div h5 {
  margin-bottom: 1rem !important;
  color: hsl(222 25% 15%);
  font-size: 0.9rem;
}

@media (max-width: 767px) {
  .acrie-theme #content .section-heading-service-information + .panel_s dl.row {
    row-gap: 1.25rem;
  }

  .acrie-theme #content .section-heading-service-information + .panel_s dl.row > div {
    padding-right: 0;
  }
}

.acrie-theme .link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--acrie-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.acrie-theme .link:hover {
  text-decoration: underline;
}

.acrie-theme .badge-new {
  margin-left: 0.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
  box-shadow: 0 8px 32px -4px hsl(340 82% 52% / 0.25);
}

.acrie-theme .card {
  background: #fff;
  border: 1px solid hsl(220 15% 91% / 0.6);
  border-radius: 0.875rem;
  box-shadow: 0 1px 2px 0 hsl(220 15% 20% / 0.04);
  padding: 1.5rem;
}

.acrie-theme .grid {
  display: grid;
  gap: 1rem;
}

.acrie-theme .grid-stats {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.acrie-theme .stat {
  min-height: 152px;
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  min-width: 0;
}

.acrie-theme .stat:hover,
.acrie-theme .service:hover {
  box-shadow: 0 4px 12px -2px hsl(220 15% 20% / 0.06),
    0 2px 4px -2px hsl(220 15% 20% / 0.04);
  transform: translateY(-4px);
}

.acrie-theme .icon-box {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 0 1px transparent;
}

.acrie-theme .icon-box svg {
  width: 20px;
  height: 20px;
}

.acrie-theme .icon-box.neutral {
  background: hsl(220 15% 95% / 0.6);
  color: hsl(220 10% 46%);
  box-shadow: inset 0 0 0 1px hsl(220 15% 91%);
}

.acrie-theme .icon-box.info {
  background: hsl(199 89% 48% / 0.1);
  color: hsl(199 89% 48%);
  box-shadow: inset 0 0 0 1px hsl(199 89% 48% / 0.2);
}

.acrie-theme .icon-box.warning {
  background: hsl(38 92% 50% / 0.1);
  color: hsl(38 92% 50%);
  box-shadow: inset 0 0 0 1px hsl(38 92% 50% / 0.2);
}

.acrie-theme .icon-box.danger {
  background: hsl(0 84% 60% / 0.1);
  color: hsl(0 84% 60%);
  box-shadow: inset 0 0 0 1px hsl(0 84% 60% / 0.2);
}

.acrie-theme .icon-box.primary {
  background: hsl(340 82% 52% / 0.1);
  color: var(--acrie-primary);
  box-shadow: inset 0 0 0 1px hsl(340 82% 52% / 0.2);
}

.acrie-theme .icon-box.success {
  background: hsl(142 71% 45% / 0.1);
  color: hsl(142 71% 45%);
  box-shadow: inset 0 0 0 1px hsl(142 71% 45% / 0.2);
}

.acrie-theme .icon-box-lg {
  width: 48px;
  height: 48px;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.acrie-theme .icon-box-lg.gradient {
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
  box-shadow: 0 8px 32px -4px hsl(340 82% 52% / 0.25);
}

.acrie-theme .icon-box-lg svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.acrie-theme .stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: hsl(220 10% 46%);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.acrie-theme .stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.acrie-theme .cloud-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 2fr;
}

.acrie-theme .cloud-overview {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, hsl(340 82% 52% / 0.08), hsl(340 90% 65% / 0.04));
  box-shadow: 0 4px 12px -2px hsl(220 15% 20% / 0.06),
    0 2px 4px -2px hsl(220 15% 20% / 0.04);
}

.acrie-theme .blob {
  position: absolute;
  top: -32px;
  right: -32px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: hsl(340 82% 52% / 0.1);
  filter: blur(40px);
}

.acrie-theme .cloud-inner {
  position: relative;
}

.acrie-theme .cloud-inner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.acrie-theme .mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.acrie-theme .mini {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.75rem;
  border: 1px solid hsl(220 15% 91% / 0.4);
  border-radius: 0.75rem;
}

.acrie-theme .mini-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: hsl(220 10% 46%);
}

.acrie-theme .mini-label svg {
  width: 14px;
  height: 14px;
}

.acrie-theme .mini-value {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 2px;
}

.acrie-theme .cloud-services {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}

.acrie-theme .service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.acrie-theme .service h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.acrie-theme .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.acrie-theme .pill.success {
  background: hsl(142 71% 45% / 0.1);
  color: hsl(142 71% 45%);
}

.acrie-theme .ping {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: hsl(142 71% 45%);
  animation: pulse 1.6s ease-in-out infinite;
}

.acrie-theme .metrics {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.acrie-theme .metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.acrie-theme .metric-row span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: hsl(220 10% 46%);
}

.acrie-theme .metric-row svg {
  width: 14px;
  height: 14px;
}

.acrie-theme .bar {
  height: 6px;
  width: 100%;
  background: hsl(220 15% 95%);
  border-radius: 999px;
  overflow: hidden;
}

.acrie-theme .bar-fill {
  height: 100%;
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
}

.acrie-theme .invoices {
  padding: 1.9rem 1.95rem 2rem;
  box-shadow: 0 4px 12px -2px hsl(220 15% 20% / 0.06),
    0 2px 4px -2px hsl(220 15% 20% / 0.04);
}

.acrie-theme .invoice-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.acrie-theme .invoice {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: hsl(222 25% 15%);
  text-decoration: none;
}

.acrie-theme .invoice-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  gap: 0.75rem;
}

.acrie-theme .invoice-label {
  color: hsl(222 25% 15%);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

.acrie-theme .invoice-count {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.acrie-theme .invoice-meta {
  margin: 0;
  font-size: 0.75rem;
  color: hsl(220 10% 46%);
}

.acrie-theme .invoice .bar {
  height: 8px;
  background: hsl(220 15% 95%);
}

.acrie-theme .chart-wrap {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(220 15% 91%);
}

.acrie-theme .chart-wrap-inner {
  margin-top: 1.5rem;
}

.acrie-theme .legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  color: hsl(220 10% 46%);
  font-weight: 500;
}

.acrie-theme .legend div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.acrie-theme .sq {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.acrie-theme .chart {
  position: relative;
  height: 255px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(340 82% 52% / 0.08), hsl(340 90% 65% / 0.04));
  border: 1px solid hsl(220 15% 91% / 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.acrie-theme .chart canvas {
  position: absolute;
  inset: 16px 16px 32px 16px;
  width: calc(100% - 32px) !important;
  height: calc(100% - 48px) !important;
}

.acrie-theme .chart-empty {
  text-align: center;
  color: hsl(220 10% 46%);
}

.acrie-theme .chart-empty svg {
  width: 40px;
  height: 40px;
  color: hsl(340 82% 52% / 0.4);
  margin: 0 auto 0.5rem;
}

.acrie-theme .chart-empty p {
  margin: 0;
  font-size: 0.875rem;
}

.acrie-theme .months {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.25rem;
  font-size: 10px;
  color: hsl(220 10% 46%);
  text-align: center;
}

.acrie-theme .footer {
  border-top: 1px solid hsl(220 15% 91%);
  background: rgba(255, 255, 255, 0.5);
  margin-top: 4rem;
  height: auto;
  padding: 0;
}

.acrie-theme .footer-inner {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.acrie-theme .footer-copy {
  margin: 0;
  text-align: center;
  color: hsl(220 10% 46%);
  font-size: 0.875rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .acrie-theme .nav-shell.collapse {
    display: flex !important;
  }
}

@media (max-width: 991px) {
  .acrie-theme .acrie-project-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .acrie-theme .welcome {
    align-items: center;
  }

  .acrie-theme .welcome-actions {
    margin-left: 0;
  }

  .acrie-theme .grid-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .acrie-theme .cloud-grid,
  .acrie-theme .cloud-services,
  .acrie-theme .invoice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .acrie-theme .invoice-grid {
    gap: 1.5rem 1.75rem;
  }
}

@media (max-width: 767px) {
  .acrie-theme .topbar .container,
  .acrie-theme #content > .container,
  .acrie-theme .acrie-content__container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .acrie-theme .topbar .container {
    padding-left: 16px;
  }

  .acrie-theme .brand-logo .navbar-brand img {
    margin-left: 0;
  }

  .acrie-theme .welcome,
  .acrie-theme .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .acrie-theme #content h4.tw-font-semibold,
  .acrie-theme #content h4.section-heading,
  .acrie-theme #content .section-text,
  .acrie-theme #content .tickets-summary-heading,
  .acrie-theme #content .projects-summary-heading,
  .acrie-theme #content .invoices-quick-info-heading {
    font-size: 1.18rem;
  }

  .acrie-theme .acrie-page-shell {
    padding-top: 2rem;
  }

  .acrie-theme .acrie-page-title {
    font-size: 1.125rem;
  }

  .acrie-theme .acrie-page-toolbar,
  .acrie-theme .acrie-page-toolbar__left,
  .acrie-theme .acrie-page-toolbar__right {
    flex-direction: column;
    align-items: flex-start;
  }

  .acrie-theme #content .panel_s .panel-body,
  .acrie-theme #content .panel_s .panel-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .acrie-theme .acrie-project-summary {
    grid-template-columns: 1fr;
  }

  .acrie-theme .welcome-actions {
    width: 100%;
    margin-left: 0;
  }

  .acrie-theme .topbar-inner {
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .acrie-theme .brand-wrap {
    order: 1;
    min-width: 0;
    flex: 1;
    justify-content: flex-start;
  }

  .acrie-theme .menu-toggle {
    display: inline-block;
  }

  .acrie-theme .actions {
    order: 2;
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
  }

  .acrie-theme .nav-shell.collapse {
    display: none;
  }

  .acrie-theme .nav-shell.collapse.in {
    display: block;
  }

  .acrie-theme .nav-shell {
    order: 3;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    width: 100%;
    flex: 0 0 100%;
    margin-top: 0;
    padding: 10px 0 12px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid hsl(220 15% 91%);
    border-bottom: 1px solid hsl(220 15% 91%);
    box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.22);
    z-index: 45;
  }

  .acrie-theme .nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .acrie-theme .nav a,
  .acrie-theme .nav .nav-item > a {
    width: 100%;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .acrie-theme .nav-dropdown .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    border-radius: 12px;
  }

  .acrie-theme .notifications-panel {
    width: 320px;
    max-width: calc(100vw - 30px);
    right: 0;
    left: auto;
  }

  .acrie-theme .customers-nav-item-profile .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
    min-width: 160px;
    max-width: calc(100vw - 24px);
  }

  .acrie-theme .main {
    padding: 2rem 0;
  }

  .acrie-theme .welcome h1 {
    font-size: 1.9rem;
  }

  .acrie-theme .grid-stats,
  .acrie-theme .cloud-grid,
  .acrie-theme .cloud-services,
  .acrie-theme .invoice-grid {
    grid-template-columns: 1fr;
  }

  .acrie-theme .invoices {
    padding: 1.5rem;
  }

  .acrie-theme .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.honey-element {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

@media screen and (max-height: 575px),
  screen and (min-width: 992px) and (max-width: 1199px) {
  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.83);
    -webkit-transform: scale(0.83);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}

/* ==========================================================
   ACRIE - Client authentication / login
   ========================================================== */
body.acrie-theme.acrie-auth-login-page {
  background:
    radial-gradient(circle at 9% 12%, hsl(340 82% 52% / 0.06), transparent 28%),
    radial-gradient(circle at 92% 88%, hsl(340 90% 65% / 0.05), transparent 30%),
    hsl(220 20% 97%);
}

.acrie-auth-login-page .topbar {
  display: none;
}

.acrie-auth-login-page #wrapper,
.acrie-auth-login-page #content {
  min-height: 0;
}

.acrie-auth-login-page #content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 34px 0 18px;
}

.acrie-auth-login-page #content > .container:first-child {
  position: relative;
  z-index: 5;
}

.acrie-auth-login-page .acrie-content__container {
  max-width: 1112px;
}

.acrie-auth-login-page .acrie-template-row {
  display: block;
}

.acrie-auth-login-page .footer {
  margin-top: 0;
  border-top: 0;
  background: transparent;
}

.acrie-auth-login-page .footer-inner {
  padding-top: 12px;
  padding-bottom: 22px;
}

.acrie-login-page {
  width: 100%;
  padding: 10px 0 18px;
}

.acrie-login-card {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 1040px;
  min-height: 620px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid hsl(220 15% 89% / 0.9);
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 32px 80px -48px rgba(29, 34, 48, 0.35),
    0 12px 32px -24px rgba(29, 34, 48, 0.18);
}

.acrie-login-panel {
  position: relative;
  min-width: 0;
}

.acrie-login-panel--form {
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 56px 48px;
  background: #fff;
}

.acrie-login-brand {
  min-height: 42px;
  margin-bottom: 38px;
}

.acrie-login-brand .acrie-login-logo,
.acrie-login-brand .navbar-brand,
.acrie-login-brand > a {
  float: none;
  display: inline-flex;
  align-items: center;
  height: auto;
  margin: 0;
  padding: 0;
}

.acrie-login-brand img {
  display: block;
  width: auto;
  max-width: 172px;
  max-height: 48px;
}

.acrie-login-heading { margin-bottom: 28px; }

.acrie-login-heading h1 {
  margin: 0 0 8px;
  color: var(--acrie-primary) !important;
  font-size: 1.3rem;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.acrie-login-form { width: 100%; }
.acrie-login-social { margin-bottom: 24px; }

.acrie-login-social .btn,
.acrie-login-social a.btn {
  min-height: 44px;
  border-radius: 9px !important;
  box-shadow: none !important;
}

.acrie-login-social hr { border-top-color: #e7e5e8; }
.acrie-login-social .row { margin-left: -5px; margin-right: -5px; }
.acrie-login-social [class*="col-"] { padding-left: 5px; padding-right: 5px; }

.acrie-login-field { margin-bottom: 20px; }

.acrie-login-field > label,
.acrie-login-label-row label {
  margin: 0 0 8px;
  color: #2c292e;
  font-size: .82rem;
  font-weight: 600;
}

.acrie-login-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.acrie-login-forgot {
  margin-bottom: 8px;
  color: var(--acrie-primary);
  font-size: .76rem;
  font-weight: 600;
  white-space: nowrap;
}

.acrie-login-forgot:hover,
.acrie-login-forgot:focus {
  color: hsl(340 82% 44%);
  text-decoration: underline;
}

.acrie-login-input-wrap { position: relative; }

.acrie-theme #content .acrie-login-input-wrap .form-control {
  height: 50px;
  padding: 0 42px 0 14px;
  border: 1px solid #dcd9de;
  border-radius: 9px;
  background: #fff;
  color: #1c1b1f;
  font-size: .88rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.acrie-theme #content .acrie-login-input-wrap .form-control::placeholder { color: #aaa6ad; }

.acrie-theme #content .acrie-login-input-wrap .form-control:focus {
  border-color: hsl(340 82% 52% / .55);
  background: #fff;
  box-shadow: 0 0 0 3px hsl(340 82% 52% / .07);
}

.acrie-login-password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #77727a;
  transform: translateY(-50%);
  transition: color .18s ease, background .18s ease;
}

.acrie-login-password-toggle:hover,
.acrie-login-password-toggle:focus {
  background: #f7f5f7;
  color: #29262b;
  outline: none;
}

.acrie-login-password-toggle svg,
.acrie-login-password-toggle i {
  width: 18px;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
}

.acrie-login-field .text-danger,
.acrie-login-field p.text-danger,
.acrie-login-recaptcha .text-danger {
  display: block;
  margin-top: 6px;
  color: #dc2626;
  font-size: .76rem;
}

.acrie-login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -2px 0 20px;
}

.acrie-login-remember.checkbox { margin: 0; }

.acrie-login-recaptcha { margin: 4px 0 18px; }

.acrie-login-submit,
.acrie-theme #content .acrie-login-submit {
  height: 50px;
  border: 0 !important;
  border-radius: 9px !important;
  background: var(--acrie-primary) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: .86rem;
  font-weight: 700;
  transition: background .18s ease, transform .18s ease;
}

.acrie-login-submit:hover,
.acrie-login-submit:focus {
  background: hsl(340 82% 46%) !important;
  transform: translateY(-1px);
}

.acrie-login-register {
  margin: 22px 0 0;
  color: #77727a;
  font-size: .8rem;
  text-align: center;
}

.acrie-login-register a {
  color: var(--acrie-primary);
  font-weight: 650;
}

.acrie-login-language {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 290px;
  margin: 22px auto 0;
  color: #77727a;
  font-size: .76rem;
}

.acrie-login-hook-end { margin-top: 18px; }

@media (max-width: 991px) {
  .acrie-auth-login-page #content {
    justify-content: flex-start;
    padding-top: 26px;
  }

  .acrie-login-card {
    grid-template-columns: 1fr;
    max-width: 640px;
    min-height: 0;
    margin: 0 auto;
  }

  .acrie-login-panel--promo {
    display: none;
  }

  .acrie-login-panel--form {
    padding: 48px 52px;
  }
}

@media (max-width: 600px) {
  .acrie-auth-login-page #content {
    padding: 10px 0 0;
  }

  .acrie-auth-login-page .acrie-content__container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .acrie-login-page {
    padding-top: 4px;
  }

  .acrie-login-card {
    border-radius: 18px;
  }

  .acrie-login-panel--form {
    padding: 34px 24px 30px;
  }

  .acrie-login-brand {
    margin-bottom: 30px;
  }

  .acrie-login-brand img {
    max-width: 150px;
    max-height: 42px;
  }

  .acrie-login-heading {
    margin-bottom: 24px;
  }

  .acrie-login-heading h1 {
    font-size: 2rem;
  }

  .acrie-login-label-row {
    align-items: flex-start;
  }

  .acrie-login-forgot {
    white-space: normal;
    text-align: right;
  }

  .acrie-login-language {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .acrie-auth-login-page .footer-copy {
    font-size: 0.74rem;
  }
}

/* ==========================================================
   ACRIE - Client authentication / register
   Compact registration layout. Scoped to the register route.
   ========================================================== */
body.acrie-theme.acrie-auth-register-page {
  background: #f4f5f7;
}

.acrie-auth-register-page .topbar {
  display: none;
}

.acrie-auth-register-page #wrapper,
.acrie-auth-register-page #content {
  min-height: 0;
}

.acrie-auth-register-page #content {
  padding: 34px 0 24px;
}

.acrie-auth-register-page .acrie-content__container {
  max-width: 960px;
}

.acrie-auth-register-page .acrie-template-row {
  display: block;
}

.acrie-auth-register-page .footer {
  margin-top: 0;
  border-top: 0;
  background: transparent;
}

.acrie-auth-register-page .footer-inner {
  padding-top: 14px;
  padding-bottom: 22px;
}

.acrie-register-page {
  width: 100%;
}

.acrie-register-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 18px;
}

.acrie-register-top h1 {
  margin: 0;
  color: #263246;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
}

.acrie-register-language {
  position: absolute;
  top: 50%;
  right: 0;
  width: 190px;
  transform: translateY(-50%);
}

.acrie-register-language .bootstrap-select,
.acrie-register-language > select {
  width: 100% !important;
}

.acrie-register-language .bootstrap-select > .dropdown-toggle,
.acrie-register-language > select.form-control {
  min-height: 36px;
  border: 1px solid #d8dbe1 !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: #4a5567 !important;
  font-size: .78rem;
}

.acrie-register-card {
  overflow: hidden;
  border: 1px solid #dfe2e7;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 28, 40, .04);
}

.acrie-register-body {
  padding: 28px 24px 30px;
}

.acrie-register-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
}

.acrie-register-column {
  min-width: 0;
}

.acrie-register-section-heading {
  margin-bottom: 16px;
}

.acrie-register-section-heading h2 {
  margin: 0;
  color: #273348;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.acrie-register-form .form-group {
  margin-bottom: 13px;
}

.acrie-register-form .control-label,
.acrie-register-form .form-group > label {
  display: block;
  margin-bottom: 5px;
  color: #405066;
  font-size: .77rem;
  font-weight: 600;
}

.acrie-register-form .text-danger {
  color: #e11d48;
}

.acrie-register-form input.form-control,
.acrie-register-form select.form-control,
.acrie-register-form textarea.form-control,
.acrie-register-form .bootstrap-select > .dropdown-toggle {
  width: 100%;
  min-height: 39px;
  border: 1px solid #d6d9df !important;
  border-radius: 6px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: #273348 !important;
  font-size: .8rem;
}

.acrie-register-form input.form-control,
.acrie-register-form select.form-control,
.acrie-register-form textarea.form-control {
  padding: 8px 10px;
}

.acrie-register-form input.form-control:focus,
.acrie-register-form select.form-control:focus,
.acrie-register-form textarea.form-control:focus,
.acrie-register-form .bootstrap-select.open > .dropdown-toggle,
.acrie-register-form .bootstrap-select > .dropdown-toggle:focus {
  border-color: #f92b5b !important;
  box-shadow: 0 0 0 2px rgba(249, 43, 91, .07) !important;
  outline: 0 !important;
}

.acrie-register-form .bootstrap-select {
  width: 100% !important;
}

.acrie-register-form .help-block,
.acrie-register-form p.text-danger,
.acrie-register-form .text-danger:not(.control-label .text-danger) {
  margin-top: 4px;
  font-size: .71rem;
}

.acrie-register-custom-fields:empty {
  display: none;
}

.acrie-register-terms,
.acrie-register-recaptcha {
  margin-top: 20px;
}

.acrie-register-terms {
  color: #626d7e;
  font-size: .75rem;
}

.acrie-register-terms .checkbox {
  margin: 0;
}

.acrie-register-footer-form {
  padding: 14px 24px;
  border-top: 1px solid #e1e3e7;
  background: #fafbfc;
}

.acrie-register-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.acrie-register-submit-row p {
  margin: 0;
  color: #677386;
  font-size: .77rem;
}

.acrie-register-submit-row p a {
  color: #f92b5b;
  font-weight: 650;
}

.acrie-register-submit,
.acrie-theme #content .acrie-register-submit {
  min-width: 138px;
  height: 38px;
  padding: 0 18px;
  border: 0 !important;
  border-radius: 7px !important;
  background: #f92b5b !important;
  box-shadow: none !important;
  color: #fff !important;
  font-size: .78rem;
  font-weight: 700;
}

.acrie-register-submit:hover,
.acrie-register-submit:focus {
  background: #e92251 !important;
}

@media (max-width: 991px) {
  .acrie-auth-register-page #content {
    padding-top: 24px;
  }

  .acrie-auth-register-page .acrie-content__container {
    max-width: 760px;
  }

  .acrie-register-top {
    justify-content: flex-start;
  }

  .acrie-register-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .acrie-auth-register-page #content {
    padding: 14px 0 0;
  }

  .acrie-auth-register-page .acrie-content__container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .acrie-register-top {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
  }

  .acrie-register-top h1 {
    font-size: 1.4rem;
  }

  .acrie-register-language {
    position: static;
    width: 100%;
    transform: none;
  }

  .acrie-register-card {
    border-radius: 8px;
  }

  .acrie-register-body {
    padding: 22px 18px 24px;
  }

  .acrie-register-columns {
    gap: 24px;
  }

  .acrie-register-footer-form {
    padding: 16px 18px;
  }

  .acrie-register-submit-row {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .acrie-register-submit,
  .acrie-theme #content .acrie-register-submit {
    width: 100%;
  }

  .acrie-register-submit-row p {
    text-align: center;
  }
}

/* --------------------------------------------------------------------------
   Customer theme color system

   Theme Style writes these custom properties on body.acrie-theme. Every
   property has the current visual identity as a fallback, so the theme keeps
   its original appearance until an administrator chooses another color.
   -------------------------------------------------------------------------- */
body.acrie-theme {
  --acrie-primary: hsl(340 82% 52%);
  --acrie-secondary: hsl(340 90% 65%);
  --acrie-button-primary: var(--acrie-primary);
  --acrie-page-background: hsl(220 20% 97%);
  --acrie-surface: #fff;
  --acrie-text: hsl(222 25% 15%);
  --acrie-text-muted: hsl(220 10% 46%);
  --acrie-border: hsl(220 15% 91%);
  --acrie-link: var(--acrie-primary);
  --acrie-link-hover: var(--acrie-primary);
  --acrie-table-link: var(--acrie-text);
  --acrie-table-link-hover: var(--acrie-link-hover);
  --acrie-table-heading: var(--acrie-text-muted);
  --acrie-navigation-background: rgba(255, 255, 255, 0.8);
  --acrie-navigation-text: var(--acrie-text);
  --acrie-footer-background: transparent;
  --acrie-footer-text: var(--acrie-text-muted);
  --acrie-login-background: #f7f5f7;
  --acrie-login-panel-background: hsl(222 32% 12%);
  --acrie-on-accent: #fff;
  --acrie-button-default: #fff;
  --acrie-success: hsl(142 71% 45%);
  --acrie-info: hsl(199 89% 48%);
  --acrie-warning: hsl(38 92% 50%);
  --acrie-danger: hsl(0 84% 60%);
  background: var(--acrie-page-background);
  color: var(--acrie-text);
}

.acrie-theme a,
.acrie-theme .link,
.acrie-theme #content .panel_s a:not(.btn),
.acrie-theme #content .panel_s .btn-link {
  color: var(--acrie-link);
}

.acrie-theme a:hover,
.acrie-theme a:focus,
.acrie-theme .link:hover,
.acrie-theme .link:focus,
.acrie-theme #content .panel_s a:hover {
  color: var(--acrie-link-hover);
}

.acrie-theme .topbar,
.acrie-theme .navbar-default {
  background: var(--acrie-navigation-background);
  border-color: var(--acrie-border);
}

.acrie-theme .nav a,
.acrie-theme .icon-btn,
.acrie-theme .menu-toggle span {
  color: var(--acrie-navigation-text);
}

.acrie-theme .nav a > i,
.acrie-theme .icon-btn > i {
  width: 16px;
  text-align: center;
}

.acrie-theme .icon-btn > i {
  width: 20px;
  font-size: 18px;
}

.acrie-theme .menu-toggle span {
  background: var(--acrie-navigation-text);
}

.acrie-theme .icon-btn .dot,
.acrie-theme #content .ehm-module-section-heading::before {
  background: var(--acrie-primary);
}

.acrie-theme .nav a:hover,
.acrie-theme .nav a.active,
.acrie-theme .nav > li.active > a,
.acrie-theme .nav-submenu li a:hover,
.acrie-theme .brand-logo .logo-text {
  color: var(--acrie-link-hover);
}

.acrie-theme .nav a:hover,
.acrie-theme .nav a.active,
.acrie-theme .nav > li.active > a {
  background: color-mix(in srgb, var(--acrie-primary) 6%, transparent);
}

.acrie-theme .nav-submenu,
.acrie-theme .customers-nav-item-profile .dropdown-menu,
.acrie-theme .notifications-panel,
.acrie-theme #content .panel_s,
.acrie-theme #content .panel_s .panel-body,
.acrie-theme .card,
.acrie-auth-login-page .acrie-login-panel--form,
.acrie-auth-register-page .acrie-register-card,
.acrie-auth-register-page .acrie-register-section-card {
  background: var(--acrie-surface);
  border-color: var(--acrie-border);
}

.acrie-theme #content .panel_s .panel-footer,
.acrie-theme #content .table > tbody > tr:hover > td,
.acrie-theme .nav-submenu li a:hover,
.acrie-auth-register-page .acrie-register-footer-form {
  background: color-mix(in srgb, var(--acrie-page-background) 72%, var(--acrie-surface));
  border-color: var(--acrie-border);
}

.acrie-theme h1,
.acrie-theme h2,
.acrie-theme h3,
.acrie-theme h4,
.acrie-theme h5,
.acrie-theme h6,
.acrie-theme .acrie-page-title,
.acrie-theme #content h4.tw-font-semibold,
.acrie-theme #content h4.section-heading,
.acrie-theme #content .section-text,
.acrie-theme #content .tickets-summary-heading,
.acrie-theme #content .projects-summary-heading,
.acrie-theme #content .invoices-quick-info-heading,
.acrie-theme #content .table > tbody > tr > td,
.acrie-theme #content .panel_s .table a {
  color: var(--acrie-text);
}

.acrie-theme .muted,
.acrie-theme .text-muted,
.acrie-theme .stat-label,
.acrie-theme .invoice-meta,
.acrie-theme .legend,
.acrie-theme .chart-empty,
.acrie-theme #content .row-options a,
.acrie-theme #content .table > thead > tr > th,
.acrie-auth-register-page .acrie-register-submit-row p {
  color: var(--acrie-text-muted);
}

.acrie-theme #content .panel_s,
.acrie-theme #content .panel_s hr,
.acrie-theme #content .table > thead > tr > th,
.acrie-theme #content .table > tbody > tr > td,
.acrie-theme #content .form-control,
.acrie-theme #content .bootstrap-select > .dropdown-toggle,
.acrie-theme .bar,
.acrie-theme .progress,
.acrie-auth-login-page .form-control,
.acrie-auth-register-page .form-control {
  border-color: var(--acrie-border);
}

.acrie-theme #content .table > thead > tr > th {
  color: var(--acrie-table-heading);
}

.acrie-theme #content .dataTables_wrapper table tbody a:not(.text-muted, .text-primary, .text-danger, .text-warning, .text-success, .text-info) {
  color: var(--acrie-table-link);
}

.acrie-theme #content .dataTables_wrapper table tbody a:hover:not(.text-muted, .text-primary, .text-danger, .text-warning, .text-success, .text-info),
.acrie-theme #content .dataTables_wrapper table tbody a:focus:not(.text-muted, .text-primary, .text-danger, .text-warning, .text-success, .text-info) {
  color: var(--acrie-table-link-hover);
}

.acrie-theme #content .btn.btn-primary,
.acrie-theme #content .btn-primary,
.acrie-theme .btn-primary,
.acrie-theme .acrie-register-submit,
.acrie-auth-login-page .acrie-login-submit {
  background-color: var(--acrie-button-primary) !important;
  background-image: none !important;
  border-color: var(--acrie-button-primary) !important;
  color: var(--acrie-on-accent) !important;
}

.acrie-theme .avatar,
.acrie-theme .icon-box.gradient {
  background-color: var(--acrie-primary) !important;
  background-image: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary)) !important;
  border-color: var(--acrie-primary) !important;
  color: var(--acrie-on-accent) !important;
}

.acrie-theme #content .btn.btn-primary:hover,
.acrie-theme #content .btn-primary:hover,
.acrie-theme .btn-primary:hover,
.acrie-theme .acrie-register-submit:hover,
.acrie-auth-login-page .acrie-login-submit:hover {
  filter: brightness(0.94);
}

.acrie-theme #content .btn.btn-default {
  background: var(--acrie-button-default);
  border-color: var(--acrie-border);
  color: var(--acrie-text);
}

.acrie-theme .btn-outline {
  background: var(--acrie-surface);
  border-color: var(--acrie-border);
  color: var(--acrie-text);
}

.acrie-theme .btn-outline:hover,
.acrie-theme .btn-outline:focus {
  background: color-mix(in srgb, var(--acrie-page-background) 72%, var(--acrie-surface));
  color: var(--acrie-link-hover);
}

.acrie-theme #content .form-control,
.acrie-theme #content .bootstrap-select > .dropdown-toggle,
.acrie-auth-login-page .form-control,
.acrie-auth-register-page .form-control {
  background: var(--acrie-surface);
  color: var(--acrie-text);
}

.acrie-theme #content .form-control:focus,
.acrie-theme #content .bootstrap-select > .dropdown-toggle:focus,
.acrie-auth-login-page .form-control:focus,
.acrie-auth-register-page .form-control:focus {
  border-color: color-mix(in srgb, var(--acrie-primary) 55%, var(--acrie-border));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--acrie-primary) 8%, transparent);
}

.acrie-theme .primary-c,
.acrie-theme .text-primary,
.acrie-theme .bullet,
.acrie-theme .icon-btn .dot,
.acrie-theme .bar-fill,
.acrie-theme .primary-bg {
  color: var(--acrie-primary);
}

.acrie-theme .bullet,
.acrie-theme .bar-fill,
.acrie-theme .primary-bg {
  background: var(--acrie-primary);
}

.acrie-theme .success-c,
.acrie-theme .text-success { color: var(--acrie-success); }
.acrie-theme .info-c,
.acrie-theme .text-info { color: var(--acrie-info); }
.acrie-theme .warning-c,
.acrie-theme .text-warning { color: var(--acrie-warning); }
.acrie-theme .danger-c,
.acrie-theme .text-danger { color: var(--acrie-danger); }
.acrie-theme .success-bg { background: var(--acrie-success); }
.acrie-theme .info-bg { background: var(--acrie-info); }
.acrie-theme .warning-bg { background: var(--acrie-warning); }
.acrie-theme .danger-bg { background: var(--acrie-danger); }

.acrie-theme .icon-box.success,
.acrie-theme .pill.success,
.acrie-theme .label-success {
  color: var(--acrie-success);
  background: color-mix(in srgb, var(--acrie-success) 10%, transparent);
}

.acrie-theme .icon-box.info,
.acrie-theme .label-info {
  color: var(--acrie-info);
  background: color-mix(in srgb, var(--acrie-info) 10%, transparent);
}

.acrie-theme .icon-box.warning,
.acrie-theme .label-warning {
  color: var(--acrie-warning);
  background: color-mix(in srgb, var(--acrie-warning) 10%, transparent);
}

.acrie-theme .icon-box.danger,
.acrie-theme .label-danger {
  color: var(--acrie-danger);
  background: color-mix(in srgb, var(--acrie-danger) 10%, transparent);
}

.acrie-theme .footer {
  background: var(--acrie-footer-background);
  color: var(--acrie-footer-text);
  border-color: var(--acrie-border);
}

.acrie-theme .footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Easy Host Manager dashboard: visual layout only; data remains in the module. */
.acrie-theme .ehm-client-dashboard-summary {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.acrie-theme .ehm-dashboard-summary-header {
  margin-bottom: 1.25rem;
}

.acrie-theme .ehm-module-dashboard-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--acrie-text) !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
}

.acrie-theme .ehm-module-dashboard-heading::before {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--acrie-primary);
  content: "";
}

.acrie-theme .ehm-dashboard-manage-link {
  display: inline-flex;
  align-items: center;
  color: var(--acrie-link);
}

.acrie-theme .ehm-dashboard-service-grid {
  gap: 1.25rem;
}

.acrie-theme .ehm-dashboard-overview-card,
.acrie-theme .ehm-dashboard-service-card {
  min-height: 350px;
  margin-bottom: 0;
  border: 1px solid var(--acrie-border);
  border-radius: 16px;
  background: var(--acrie-surface);
  box-shadow: 0 4px 12px -2px color-mix(in srgb, var(--acrie-text) 6%, transparent),
    0 2px 4px -2px color-mix(in srgb, var(--acrie-text) 4%, transparent);
  overflow: hidden;
}

.acrie-theme .ehm-dashboard-overview-card {
  position: relative;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--acrie-primary) 9%, var(--acrie-surface)),
    color-mix(in srgb, var(--acrie-secondary) 5%, var(--acrie-surface))
  ) !important;
  overflow: hidden;
}

.acrie-theme .ehm-dashboard-overview-card .panel-body {
  position: relative;
  z-index: 1;
  justify-content: flex-start !important;
  padding: 24px !important;
  background: transparent !important;
}

.acrie-theme .ehm-dashboard-overview-card::after {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 136px;
  height: 136px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--acrie-primary) 12%, transparent);
  filter: blur(40px);
  content: "";
  pointer-events: none;
}

.acrie-theme .ehm-dashboard-overview-heading {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 1rem;
  margin-bottom: 1rem !important;
}

.acrie-theme .ehm-dashboard-overview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
  color: var(--acrie-on-accent);
  font-size: 21px;
  line-height: 1;
  box-shadow: 0 8px 28px -4px color-mix(in srgb, var(--acrie-primary) 28%, transparent);
}

.acrie-theme .ehm-dashboard-overview-title {
  margin: 0 !important;
  color: var(--acrie-text) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em;
}

.acrie-theme .ehm-dashboard-overview-card dt,
.acrie-theme .ehm-dashboard-service-metric > div:first-child > span:first-child {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.acrie-theme .ehm-dashboard-overview-card dt i,
.acrie-theme .ehm-dashboard-service-metric i {
  width: 14px;
  color: var(--acrie-text-muted);
  text-align: center;
}

.acrie-theme .ehm-dashboard-overview-card > .panel-body > p {
  margin-bottom: 24px !important;
  color: var(--acrie-text-muted) !important;
  font-size: 14px;
  line-height: 1.45;
}

.acrie-theme .ehm-dashboard-overview-card dl > div {
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--acrie-border) 65%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--acrie-surface) 78%, transparent);
  backdrop-filter: blur(8px);
}

.acrie-theme .ehm-dashboard-overview-card dl {
  gap: 12px !important;
  margin-bottom: 20px !important;
}

.acrie-theme .ehm-dashboard-overview-card dt {
  color: var(--acrie-text-muted) !important;
  font-size: 12px !important;
  line-height: 1.35;
}

.acrie-theme .ehm-dashboard-overview-card dd {
  margin-top: 3px !important;
  color: var(--acrie-text) !important;
  font-size: 16px;
  font-weight: 700 !important;
}

.acrie-theme .ehm-dashboard-overview-card .btn {
  width: 100%;
  min-height: 44px;
  margin-top: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
}

.acrie-theme .ehm-dashboard-service-card .panel-body {
  justify-content: flex-start !important;
  padding: 24px !important;
}

.acrie-theme .ehm-dashboard-service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  margin-bottom: 16px !important;
}

.acrie-theme .ehm-dashboard-service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid color-mix(in srgb, var(--acrie-success) 25%, transparent);
  border-radius: 12px;
  background: color-mix(in srgb, var(--acrie-success) 10%, var(--acrie-surface));
  color: var(--acrie-success);
  font-size: 18px;
  line-height: 1;
}

.acrie-theme .ehm-dashboard-service-title {
  margin: 0 0 6px !important;
  color: var(--acrie-text) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em;
}

.acrie-theme .ehm-dashboard-service-title + p {
  margin-bottom: 0 !important;
  color: var(--acrie-text-muted) !important;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.acrie-theme .ehm-dashboard-service-head .label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.acrie-theme .ehm-dashboard-service-head .label::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.acrie-theme .ehm-dashboard-service-metrics {
  margin-top: 24px !important;
}

.acrie-theme .ehm-dashboard-service-metric {
  margin-bottom: 14px;
}

.acrie-theme .ehm-dashboard-service-metric:last-child {
  margin-bottom: 0;
}

.acrie-theme .ehm-dashboard-service-metric > div:first-child {
  margin-bottom: 7px !important;
  color: var(--acrie-text);
  font-size: 12px !important;
  line-height: 1.35;
}

.acrie-theme .ehm-dashboard-service-metric > div:first-child > span:first-child {
  color: var(--acrie-text-muted);
}

.acrie-theme .ehm-dashboard-service-metric > div:first-child > span:last-child {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}

.acrie-theme .ehm-dashboard-service-card .progress,
.acrie-theme .ehm-dashboard-service-card .bar,
.acrie-theme .invoice .bar {
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--acrie-border) 65%, transparent);
  box-shadow: none;
  overflow: hidden;
}

.acrie-theme .ehm-dashboard-service-card .progress-bar {
  border-radius: inherit;
  background: var(--acrie-primary);
  box-shadow: none;
}

/* Service status summary follows the same visual language as project status cards. */
.acrie-theme .ehm-client-services-page .ehm-service-summary-card {
  min-height: 152px;
  margin-bottom: 16px !important;
  border: 1px solid var(--acrie-border);
  border-radius: 16px;
  background: var(--acrie-surface);
  box-shadow: 0 1px 2px color-mix(in srgb, var(--acrie-text) 4%, transparent);
  overflow: hidden;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px -2px color-mix(in srgb, var(--acrie-text) 6%, transparent),
    0 2px 4px -2px color-mix(in srgb, var(--acrie-text) 4%, transparent);
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card__body {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  min-height: 152px;
  padding: 1.25rem 1.35rem !important;
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  margin-bottom: 16px;
  border: 1px solid var(--acrie-border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--acrie-text-muted) 7%, var(--acrie-surface));
  color: var(--acrie-text-muted);
  font-size: 16px;
  line-height: 1;
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card__label {
  margin: 0;
  color: var(--acrie-text-muted) !important;
  font-size: .7rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card__value {
  display: block;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  margin-top: .25rem;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 30px !important;
  font-weight: 700;
  line-height: 1 !important;
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--active .ehm-service-summary-card__icon {
  border-color: color-mix(in srgb, var(--acrie-success) 24%, transparent);
  background: color-mix(in srgb, var(--acrie-success) 9%, var(--acrie-surface));
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--active .ehm-service-summary-card__icon,
.acrie-theme .ehm-client-services-page .ehm-service-summary-card--active .ehm-service-summary-card__value {
  color: var(--acrie-success) !important;
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--pending .ehm-service-summary-card__icon {
  border-color: color-mix(in srgb, var(--acrie-info) 24%, transparent);
  background: color-mix(in srgb, var(--acrie-info) 9%, var(--acrie-surface));
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--pending .ehm-service-summary-card__icon,
.acrie-theme .ehm-client-services-page .ehm-service-summary-card--pending .ehm-service-summary-card__value {
  color: var(--acrie-info) !important;
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--suspended .ehm-service-summary-card__icon {
  border-color: color-mix(in srgb, var(--acrie-warning) 28%, transparent);
  background: color-mix(in srgb, var(--acrie-warning) 9%, var(--acrie-surface));
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--suspended .ehm-service-summary-card__icon,
.acrie-theme .ehm-client-services-page .ehm-service-summary-card--suspended .ehm-service-summary-card__value {
  color: var(--acrie-warning) !important;
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--closed .ehm-service-summary-card__icon {
  border-color: var(--acrie-border);
  background: color-mix(in srgb, var(--acrie-text-muted) 7%, var(--acrie-surface));
}

.acrie-theme .ehm-client-services-page .ehm-service-summary-card--closed .ehm-service-summary-card__icon,
.acrie-theme .ehm-client-services-page .ehm-service-summary-card--closed .ehm-service-summary-card__value {
  color: var(--acrie-text-muted) !important;
}

/* Quick shortcuts use fixed grid tracks instead of text-sized columns. */
.acrie-theme .ehm-service-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 16px;
  margin: 0 !important;
}

.acrie-theme .ehm-service-shortcuts-grid::before,
.acrie-theme .ehm-service-shortcuts-grid::after {
  display: none !important;
  content: none !important;
}

.acrie-theme .ehm-service-shortcut-item {
  float: none;
  width: auto;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.acrie-theme .ehm-service-shortcut-form {
  width: 100%;
  height: 100%;
}

.acrie-theme .ehm-service-shortcut-button {
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  padding: 0 !important;
  color: var(--acrie-link) !important;
  line-height: 1.35;
  text-align: left;
  white-space: normal;
}

.acrie-theme .ehm-service-shortcut-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.acrie-theme .ehm-service-shortcut-label {
  min-width: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 991px) {
  .acrie-theme .ehm-service-shortcuts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .acrie-theme .ehm-service-shortcuts-grid {
    grid-template-columns: 1fr;
  }
}

/* Authentication uses configured company data and the same color system. */
.acrie-auth-login-page,
.acrie-auth-register-page {
  background: var(--acrie-login-background) !important;
}

.acrie-theme .chart {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--acrie-primary) 8%, var(--acrie-surface)),
    color-mix(in srgb, var(--acrie-secondary) 4%, var(--acrie-surface))
  );
  border-color: var(--acrie-border);
}

.acrie-theme .invoice,
.acrie-theme .invoice-label {
  color: var(--acrie-text);
}

.acrie-auth-login-page .acrie-login-forgot,
.acrie-auth-login-page .acrie-login-register a,
.acrie-auth-register-page .acrie-register-submit-row p a {
  color: var(--acrie-link);
}

.acrie-theme #content .section-heading-service-information + .panel_s dt .fa,
.acrie-theme .icon-box.primary {
  color: var(--acrie-primary);
}

.acrie-theme .icon-box.primary {
  background: color-mix(in srgb, var(--acrie-primary) 10%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--acrie-primary) 20%, transparent);
}

.acrie-theme .badge-new {
  background: linear-gradient(135deg, var(--acrie-primary), var(--acrie-secondary));
  color: var(--acrie-on-accent);
}

.acrie-theme #content .acrie-login-input-wrap .form-control,
.acrie-register-form input.form-control,
.acrie-register-form select.form-control,
.acrie-register-form textarea.form-control,
.acrie-register-form .bootstrap-select > .dropdown-toggle {
  background: var(--acrie-surface) !important;
  border-color: var(--acrie-border) !important;
  color: var(--acrie-text) !important;
}

.acrie-theme #content .acrie-login-input-wrap .form-control:focus,
.acrie-register-form input.form-control:focus,
.acrie-register-form select.form-control:focus,
.acrie-register-form textarea.form-control:focus,
.acrie-register-form .bootstrap-select.open > .dropdown-toggle,
.acrie-register-form .bootstrap-select > .dropdown-toggle:focus {
  border-color: color-mix(in srgb, var(--acrie-primary) 55%, var(--acrie-border)) !important;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--acrie-primary) 8%, transparent) !important;
}

@media (max-width: 767px) {
  .acrie-theme .ehm-dashboard-overview-card,
  .acrie-theme .ehm-dashboard-service-card {
    min-height: 0;
  }
}

.acrie-theme {
  --acrie-sidebar-width: 264px;
}

.acrie-theme .welcome-actions .btn-outline {
  border-radius: 10px;
}

.acrie-theme .welcome-actions .btn-outline.icon-btn {
  padding: 0;
}

.acrie-theme .acrie-content-actions,
.acrie-theme .acrie-sidebar-backdrop,
.acrie-theme .acrie-sidebar-action-label,
.acrie-theme .acrie-sidebar-profile-copy,
.acrie-theme .acrie-sidebar-profile-caret,
.acrie-theme .acrie-sidebar-mobile-utility {
  display: none;
}

@media (min-width: 1280px) {
  .acrie-theme .welcome-actions {
    align-items: center;
  }

  .acrie-theme .acrie-content-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
  }

  .acrie-theme .acrie-content-actions .icon-btn:focus-visible {
    outline: 2px solid var(--acrie-primary);
    outline-offset: 3px;
  }

  .acrie-theme .topbar.acrie-sidebar .actions > .notifications-dropdown,
  .acrie-theme .topbar.acrie-sidebar .actions > .icon-btn-cart {
    display: none;
  }

  .acrie-theme .topbar.acrie-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--acrie-sidebar-width);
    height: 100vh;
    border-right: 1px solid var(--acrie-border);
    border-bottom: 0;
  }

  .acrie-theme .topbar.acrie-sidebar .topbar-inner {
    display: flex;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    padding: 22px 16px 18px;
  }

  .acrie-theme .topbar.acrie-sidebar .brand-wrap {
    width: 100%;
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 10px 18px;
    border-bottom: 1px solid var(--acrie-border);
  }

  .acrie-theme .topbar.acrie-sidebar .brand-logo .navbar-brand,
  .acrie-theme .topbar.acrie-sidebar .brand-logo .navbar-brand img {
    max-width: 196px !important;
  }

  .acrie-theme .topbar.acrie-sidebar .brand-logo .navbar-brand img {
    max-height: 48px !important;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell,
  .acrie-theme .topbar.acrie-sidebar .nav-shell.collapse {
    display: block !important;
    width: 100%;
    min-height: 0;
    flex: 1 1 auto;
    order: 2;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell nav,
  .acrie-theme .topbar.acrie-sidebar .nav {
    width: 100%;
  }

  .acrie-theme .topbar.acrie-sidebar .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 5px;
  }

  .acrie-theme .topbar.acrie-sidebar .nav > li {
    width: 100%;
  }

  .acrie-theme .topbar.acrie-sidebar .nav a,
  .acrie-theme .topbar.acrie-sidebar .nav .nav-item > a {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .acrie-theme .topbar.acrie-sidebar .nav a > i:first-child {
    width: 18px;
    flex: 0 0 18px;
    text-align: center;
  }

  .acrie-theme .topbar.acrie-sidebar .nav a > span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-caret {
    margin-left: auto;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-submenu li.active > a {
    color: var(--acrie-link-hover);
    background: color-mix(in srgb, var(--acrie-primary) 6%, transparent);
  }

  .acrie-theme .topbar.acrie-sidebar .nav-submenu,
  .acrie-theme .topbar.acrie-sidebar .nav-dropdown .dropdown-menu,
  .acrie-theme .topbar.acrie-sidebar .nav > li.dropdown > .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    float: none;
    margin: 5px 0 3px;
    padding: 4px;
    border-radius: 10px;
    box-shadow: none;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-submenu li a {
    min-height: 38px;
    padding: 8px 10px 8px 42px;
  }

  .acrie-theme .topbar.acrie-sidebar .customers-nav-item-ehm-cart > a::after {
    order: 2;
    overflow: hidden;
    content: attr(title);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .acrie-theme .topbar.acrie-sidebar .customers-nav-item-ehm-cart > a .badge {
    order: 3;
    margin-left: auto;
  }

  .acrie-theme .topbar.acrie-sidebar .actions {
    display: flex;
    width: 100%;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 4px;
    order: 3;
    margin: auto 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--acrie-border);
  }

  .acrie-theme .topbar.acrie-sidebar .actions.acrie-sidebar-actions-public {
    display: none;
  }

  .acrie-theme .topbar.acrie-sidebar .notifications-dropdown,
  .acrie-theme .topbar.acrie-sidebar .customers-nav-item-profile {
    width: 100%;
  }

  .acrie-theme .topbar.acrie-sidebar .icon-btn,
  .acrie-theme .topbar.acrie-sidebar .avatar-link {
    display: flex;
    width: 100%;
    min-height: 44px;
    height: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
  }

  .acrie-theme .topbar.acrie-sidebar .customers-nav-item-profile .avatar-link {
    border: 1px solid var(--acrie-border);
    background: var(--acrie-surface);
  }

  .acrie-theme .topbar.acrie-sidebar .icon-btn:hover,
  .acrie-theme .topbar.acrie-sidebar .avatar-link:hover,
  .acrie-theme .topbar.acrie-sidebar .avatar-link:focus {
    background: color-mix(in srgb, var(--acrie-primary) 6%, transparent);
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-action-label,
  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-copy,
  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-caret {
    display: block;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-action-label {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-copy {
    min-width: 0;
    flex: 1;
    line-height: 1.2;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-copy strong,
  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-copy small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-copy strong {
    color: var(--acrie-navigation-text);
    font-size: 0.875rem;
    font-weight: 600;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-copy small {
    margin-top: 3px;
    color: var(--acrie-text-muted);
    font-size: 0.75rem;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-caret {
    margin-left: auto;
    color: var(--acrie-text-muted);
    font-size: 11px;
  }

  .acrie-theme .topbar.acrie-sidebar .icon-btn .counter {
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
  }

  .acrie-theme .topbar.acrie-sidebar .icon-btn .dot {
    top: 10px;
    right: 12px;
  }

  .acrie-theme .topbar.acrie-sidebar .customers-nav-item-profile .dropdown-menu {
    top: auto;
    right: auto;
    bottom: 0;
    left: calc(100% + 12px);
    min-width: 220px;
    margin: 0;
  }

  .acrie-theme .topbar.acrie-sidebar + .acrie-wrapper,
  .acrie-theme .topbar.acrie-sidebar ~ .footer {
    width: calc(100% - var(--acrie-sidebar-width));
    margin-left: var(--acrie-sidebar-width);
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar {
    right: 0;
    left: auto;
    border-right: 0;
    border-left: 1px solid var(--acrie-border);
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar + .acrie-wrapper,
  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar ~ .footer {
    margin-right: var(--acrie-sidebar-width);
    margin-left: 0;
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .nav-caret,
  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .acrie-sidebar-profile-caret {
    margin-right: auto;
    margin-left: 0;
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .nav-submenu li a {
    padding-right: 42px;
    padding-left: 10px;
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .customers-nav-item-profile .dropdown-menu {
    right: calc(100% + 12px);
    left: auto;
  }
}

@media (max-width: 1279px) {
  .acrie-theme .topbar.acrie-sidebar {
    position: sticky;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--acrie-border);
    background: var(--acrie-navigation-background);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .acrie-theme .topbar.acrie-sidebar .topbar-inner {
    min-height: 72px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
  }

  .acrie-theme .topbar.acrie-sidebar .brand-wrap {
    min-width: 0;
    flex: 1;
    order: 1;
    overflow: hidden;
  }

  .acrie-theme .topbar.acrie-sidebar .brand-logo {
    min-width: 0;
  }

  .acrie-theme .topbar.acrie-sidebar .brand-logo .navbar-brand,
  .acrie-theme .topbar.acrie-sidebar .brand-logo .navbar-brand img {
    max-width: 160px !important;
  }

  .acrie-theme .topbar.acrie-sidebar .actions {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    order: 2;
    margin: 0 0 0 auto;
  }

  .acrie-theme .topbar.acrie-sidebar .actions.acrie-sidebar-actions-public {
    display: flex;
  }

  .acrie-theme .topbar.acrie-sidebar .menu-toggle {
    display: inline-block;
    order: -1;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell,
  .acrie-theme .topbar.acrie-sidebar .nav-shell.collapse {
    position: fixed;
    top: 72px;
    bottom: 0;
    left: 0;
    z-index: 61;
    display: block !important;
    visibility: hidden;
    width: min(320px, calc(100vw - 48px));
    padding: 18px 14px;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid var(--acrie-border);
    background: var(--acrie-navigation-background);
    box-shadow: 18px 0 32px -24px rgba(15, 23, 42, 0.36);
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s ease;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell.collapse.in {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell.collapsing {
    height: auto !important;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell.acrie-sidebar-opening,
  .acrie-theme .topbar.acrie-sidebar .nav-shell.acrie-sidebar-closing {
    visibility: visible;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell.acrie-sidebar-opening {
    opacity: 1;
    transform: translateX(0);
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell.acrie-sidebar-closing {
    opacity: 0;
    transform: translateX(-100%);
  }

  .acrie-theme .topbar.acrie-sidebar .nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 5px;
  }

  .acrie-theme .topbar.acrie-sidebar .nav > li,
  .acrie-theme .topbar.acrie-sidebar .nav a,
  .acrie-theme .topbar.acrie-sidebar .nav .nav-item > a {
    width: 100%;
  }

  .acrie-theme .topbar.acrie-sidebar .nav a,
  .acrie-theme .topbar.acrie-sidebar .nav .nav-item > a {
    min-height: 44px;
    justify-content: flex-start;
    gap: 12px;
    padding: 10px 12px;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-caret {
    margin-left: auto;
  }

  .acrie-theme .topbar.acrie-sidebar .nav-dropdown .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    float: none;
    margin: 5px 0 3px;
    box-shadow: none;
  }

  .acrie-theme .topbar.acrie-sidebar .nav > li.dropdown > .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    float: none;
    margin: 5px 0 3px;
    box-shadow: none;
  }

  .acrie-theme .topbar.acrie-sidebar .notifications-dropdown,
  .acrie-theme .topbar.acrie-sidebar .customers-nav-item-profile {
    width: auto;
  }

  .acrie-theme .topbar.acrie-sidebar .icon-btn,
  .acrie-theme .topbar.acrie-sidebar .avatar-link {
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-action-label,
  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-copy,
  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-profile-caret {
    display: none;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-backdrop {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: none;
    padding: 0;
    border: 0;
    background: rgba(15, 23, 42, 0.38);
  }

  .acrie-theme .topbar.acrie-sidebar .nav-shell.in ~ .acrie-sidebar-backdrop {
    display: block;
  }

  .acrie-theme.acrie-sidebar-open {
    overflow: hidden;
  }

  .acrie-theme .topbar.acrie-sidebar + .acrie-wrapper,
  .acrie-theme .topbar.acrie-sidebar ~ .footer {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .actions {
    margin-right: auto;
    margin-left: 0;
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .nav-shell,
  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .nav-shell.collapse {
    right: 0;
    left: auto;
    border-right: 0;
    border-left: 1px solid var(--acrie-border);
    transform: translateX(100%);
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .nav-shell.collapse.in {
    transform: translateX(0);
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .nav-shell.acrie-sidebar-closing {
    transform: translateX(100%);
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .nav-caret {
    margin-right: auto;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .acrie-theme .topbar.acrie-sidebar .brand-logo .navbar-brand,
  .acrie-theme .topbar.acrie-sidebar .brand-logo .navbar-brand img {
    max-width: 126px !important;
  }

  .acrie-theme .topbar.acrie-sidebar .icon-btn-notifications,
  .acrie-theme .topbar.acrie-sidebar .icon-btn-cart {
    display: none;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-mobile-utility {
    display: block;
  }

  .acrie-theme .topbar.acrie-sidebar .acrie-sidebar-mobile-utility .label {
    margin-left: auto;
  }

  .acrie-theme[dir="rtl"] .topbar.acrie-sidebar .acrie-sidebar-mobile-utility .label {
    margin-right: auto;
    margin-left: 0;
  }
}
/* Acrie login promotional artwork */
.acrie-login-card--form-only {
  grid-template-columns: minmax(0, 1fr);
  max-width: 600px;
  min-height: 0;
}

.acrie-auth-login-page .acrie-login-panel--promo {
  display: block;
  padding: 0;
  background: var(--acrie-login-panel-background);
  color: var(--acrie-on-accent);
}

.acrie-auth-login-page .acrie-login-panel--promo::before {
  display: none;
  content: none;
}

.acrie-login-promo-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
}

.acrie-login-promo-link:hover,
.acrie-login-promo-link:focus {
  color: inherit;
  outline: none;
}

.acrie-login-promo-link:focus-visible {
  box-shadow: inset 0 0 0 3px var(--acrie-on-accent);
}

.acrie-login-promo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acrie-login-promo-image--left {
  object-position: left center;
}

.acrie-login-promo-image--center {
  object-position: center center;
}

.acrie-login-promo-image--right {
  object-position: right center;
}


@media (max-width: 991px) {
  .acrie-auth-login-page .acrie-login-panel--promo {
    display: none;
  }
}
