
:root {
  --site-border-color: #C8C8C8;
  --site-black: #222222;
  --site-red: #BC5554;
  --site-red-active: #A54B4A;
  --site-grey: #f0f0f0;
  --site-grey-active: #dfdfdf;
  --btn-background-hex: #CB4C4E;
  --btn-background-rgb: rgba(203, 76, 78, 1);
}

:root {
  --site-small-text-color: #9c9e9f;
  --site-btn-color: #0d6efd;
  --site-btn-active: #0a58ca;
  --site-filter-active: #6c8ce0;
  --tool-btn-color: rgba(0,0,0,0.35);
  --tool-btn-active: rgba(0,0,0,0.65);
}

button {
  touch-action: manipulation;
}

html, body {
  position: relative;
  height: 100%;
  font-family: "Figtree", sans-serif !important;
  font-size: 16px;
  color: var(--site-black);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.root-content-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

  .root-content-container .bot {
    display: flex;
    flex: 1;
    overflow-x: hidden;
  }

    .root-content-container .bot > .left {
      width: 100px;
      border-right: 1px solid var(--site-border-color);
      overflow: hidden;
      transition: all 0.4s linear;
      position: fixed;
      transform: translate(-100px, 0);
    }

      .root-content-container .bot > .left.open {
        transform: translate(0, 0);
      }

      .root-content-container .bot > .left.hidden {
        width: 0;
        border-right: 1px solid var(--site-border-color);
      }

    .root-content-container .bot > .right {
      flex: 1;
      width: 100%;
    }

@media (min-width: 767px) {
  .root-content-container .bot > .left {
    position: relative;
    transform: initial;
  }
}


.field-error {
  margin-top: 10px;
  font-size: 0.9rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s linear;
}

  .field-error.display {
    visibility: visible;
    opacity: 1;
  }

.text-info {
  color: #212529 !important;
}

dl, ol, ul {
  margin: 0;
  padding: 0 20px;
}

.h1, h1, h2, .h2 {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 600;
}

h3, .h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

h4, .h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .h1, h1, h2, .h2 {
    font-size: 1.9rem;
  }

  h3, .h3 {
    font-size: 1.6rem;
  }

  h4, .h4 {
    font-size: 1.4rem;
  }
}

button {
  border: none;
  background-color: transparent;
}

a.btn, .btn {
  padding: .4rem 1rem;
  border-radius: .5rem;
  color: #FFF;
  font-weight: 500;
}

  a.btn:hover, .btn:hover {
    color: #FFF;
  }

a.btnRed, .btnRed {
  background-color: var(--site-red);
  border-color: var(--site-red);
}

  a.btnRed:hover, .btnRed:hover {
    background-color: var(--site-red-active);
    border-color: var(--site-red-active);
  }

a.btnGrey, .btnGrey {
  background-color: var(--site-grey);
  border-color: var(--site-border-color);
  color: var(--site-black);
  border-width: 1px;
}

  a.btnGrey:hover, .btnGrey:hover {
    background-color: var(--site-grey-active);
    color: var(--site-black);
    border-color: var(--site-border-color);
  }

a.create-btn, .create-btn {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--site-btn-color);
  gap: 5px;
}

  a.create-btn:hover, .create-btn:hover {
    background-color: var(--site-btn-active);
  }

  a.create-btn:before, .create-btn:before {
    content: "+";
    position: relative;
    top: -1px;
    display: inline;
    font-size: 1.5rem;
    line-height: 1rem;
    font-weight: 100;
  }

a.arrow-btn, .arrow-btn {
  color: var(--site-btn-color);
  text-decoration: none;
  border-bottom: 1px solid var(--site-btn-color);
  transition: all .15s linear;
}

  a.arrow-btn:hover, .arrow-btn:hover {
    color: var(--site-btn-active);
    border-color: var(--site-btn-active);
  }

.button-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}

input[type=search] {
  outline-offset: 0px;
}

input:not([type=checkbox]), select, textarea {
  border: 1px solid var(--site-border-color);
  padding: .25rem .75rem;
  border-radius: .5rem;
  width: 100%;
}

  input::placeholder, select::placeholder {
    color: #8e9091;
  }

  input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--site-filter-active);
  }

.left-border-radius {
  border-bottom-left-radius: .4rem;
  border-top-left-radius: .4rem;
}

.right-border-radius {
  border-bottom-right-radius: .4rem;
  border-top-right-radius: .4rem;
}

footer {
  position: relative;
}

.page-wrap {
  padding: 20px;
}

.infoToolTip {
  border: 1px solid var(--site-black);
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem
}


/* --------------------------------------------------
  Header Styles
-------------------------------------------------- */
header nav {
  padding: 0 !important;
  margin: 0 !important;
}

/* --------------------------------------------------
  Modal Styles
-------------------------------------------------- */

.modal-body ul {
  margin-bottom: 1rem;
}

  .modal-body ul ul {
    margin-top: 10px;
  }
/* --------------------------------------------------
  Form Styles
-------------------------------------------------- */
.modal .standard-form input,
.modal .standard-form select {
  padding-top: 5px;
  padding-bottom: 5px;
}

.standard-form label {
  display: block;
  margin-bottom: .5rem;
}

.standard-form input:not([type=checkbox]),
.standard-form select,
.standard-form textarea {
  width: 100%;
}

.standard-form textarea {
  min-height: 150px;
}

.standard-form .form-group {
  margin-bottom: 1rem;
}

.standard-form .labelHeader {
  display: flex;
  gap: 5px;
  align-items: baseline;
}

.standard-form label.required::after {
  content: " *";
  color: #c43531;
  font-weight: bold;
}

.standard-form select,
.standard-form input[type=checkbox] {
  cursor: pointer;
}

.formErrorGroup:not(:empty) {
  margin-bottom: 15px;
  color: #c43531;
}

.standard-form .field-validation-error {
  font-size: .9rem;
}

/* --------------------------------------------------
  Top Nav Styles
-------------------------------------------------- */

.site-top-nav {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--site-border-color);
  height: 57px;
  background-color: #FFF;
  width: 100%;
  position: relative;
}

  .site-top-nav .toggle-mobile-sidebar {
    position: absolute;
    left: 30px;
    bottom: 0;
    top: 0;
    margin: auto 0;
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
  }

    .site-top-nav .toggle-mobile-sidebar span {
      position: relative;
      display: block;
      width: 23px;
      height: 2px;
      background-color: var(--site-black);
      transition: all 0.4s linear;
    }

    .site-top-nav .toggle-mobile-sidebar.open span:nth-child(2) {
      opacity: 0;
    }

    .site-top-nav .toggle-mobile-sidebar.open span:nth-child(1) {
      transform: rotate(45deg) translate(3px, 6px);
    }

    .site-top-nav .toggle-mobile-sidebar.open span:nth-child(3) {
      transform: rotate(-45deg) translate(3px, -6px);
    }


  /*  Left Side */
  .site-top-nav .desktop {
    display: none;
  }

    .site-top-nav .desktop a {
      font-size: 1.1rem;
      text-decoration: none;
    }

  .site-top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
  }

  .site-top-nav ul {
    display: flex;
  }

    .site-top-nav ul li {
      display: flex;
      align-items: center;
      position: relative;
      padding: 0 4%;
      text-align: center;
    }

      .site-top-nav ul li.active::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--site-red-active);
      }

      .site-top-nav ul li a {
        color: inherit;
      }

      .site-top-nav ul li.active a {
        color: var(--site-red-active);
      }

      .site-top-nav ul li a:hover {
        color: var(--site-red-active);
      }

  /* Right Side */

  .site-top-nav .other-items {
    display: flex;
    justify-content: flex-end;
  }

    .site-top-nav .other-items li {
      padding: 0 20px;
      border-left: 1px solid #ccd0d9;
    }

      .site-top-nav .other-items li:last-of-type {
      }

      .site-top-nav .other-items li button,
      .site-top-nav .other-items li a {
        font-size: 1.2rem;
        color: inherit;
      }

        .site-top-nav .other-items li button:hover,
        .site-top-nav .other-items li a:hover {
          color: var(--site-red-active);
        }

@media (min-width: 767px) {
  .site-top-nav .desktop {
    display: flex;
  }

  .site-top-nav .toggle-mobile-sidebar {
    display: none;
  }
}

/* --------------------------------------------------
  Page Sidebar Styles
-------------------------------------------------- */

#PageSidebar {
  height: 100%;
  background-color: #FFF;
  z-index: 1001;
}

  #PageSidebar > .content {
    padding: 20px;
  }

  #PageSidebar .sidebarHeader {
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--site-small-text-color);
    margin-bottom: 10px;
  }

  #PageSidebar .sidebarSection {
    margin-bottom: 20px;
  }

    #PageSidebar .sidebarSection .mobile-logo {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10px;
    }

      #PageSidebar .sidebarSection .mobile-logo img {
        border-radius: 5px;
      }

  #PageSidebar ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

    #PageSidebar ul li,
    #PageSidebar form {
      text-align: center;
    }

  #PageSidebar a,
  #PageSidebar button {
    text-decoration: none;
    color: inherit;
    font-size: 1.5rem;
    text-align: center;
    display: inline-block;
    padding: 0 7px;
  }

  #PageSidebar li.active a,
  #PageSidebar li a:hover,
  #PageSidebar li button:hover {
    background-color: #f7f7f7;
    color: var(--site-red-active);
    border-radius: .5rem;
  }

  #PageSidebar ul {
    list-style: none;
    padding: 0;
  }


@media (Min-width: 767px) {
  #PageSidebar .sidebarSection .mobile-logo {
    display: none;
  }
}


/* --------------------------------------------------
  Dashboard Styles
-------------------------------------------------- */

#Dashboard {
  display: flex;
  flex-direction: column;
}

  #Dashboard .list-header {
    margin-bottom: 20px;
  }

@media (min-width: 767px) {
  #Dashboard {
    flex-direction: row;
  }

    #Dashboard .left {
      flex-basis: 500px;
    }
}

/* --------------------------------------------------
  Start Asset List
-------------------------------------------------- */

.projectAssetsWrap .assets {
}


/* --------------------------------------------------
  End Asset List
-------------------------------------------------- */
/* --------------------------------------------------
  Start Asset
-------------------------------------------------- */

.assetPageWrap {
  display: flex;
  flex-direction: column;
  min-height: 0%;
  flex: 1;
}

  .assetPageWrap .comment-section-wrap {
    width: 350px;
    border-top-right-radius: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

#AssetCanvasWrapper {
  position: relative;
  background-color: #f0f1f4;
  border-right: 1px solid #ccd0d9;
  height: 75vh;
}

  #AssetCanvasWrapper #AddCommentModal {
    z-index: 1051;
  }

    #AssetCanvasWrapper #AddCommentModal .modal-dialog {
      margin: 0;
      opacity: 0;
      transition: opacity 0.2s linear;
      position: fixed;
    }

    #AssetCanvasWrapper #AddCommentModal .modal-header {
      padding: .5rem 1rem;
    }

      #AssetCanvasWrapper #AddCommentModal .modal-header h5 {
        font-size: 1rem;
      }

    #AssetCanvasWrapper #AddCommentModal .modal-body {
      padding: .5rem 1rem 1rem;
    }

    #AssetCanvasWrapper #AddCommentModal .addNewComment {
      padding: 0;
    }

    #AssetCanvasWrapper #AddCommentModal .borderRight::after {
      content: "";
      border-style: solid;
      border-width: 20px 0px 0px 20px;
      border-color: #FFF #FFF #FFF transparent;
      position: absolute;
      bottom: -14px;
      right: 1px;
    }

    #AssetCanvasWrapper #AddCommentModal .borderLeft::after {
      content: "";
      border-style: solid;
      border-width: 20px 20px 0px 0px;
      border-color: #FFF transparent transparent;
      position: absolute;
      bottom: -14px;
      left: 1px;
    }

    #AssetCanvasWrapper #AddCommentModal .borderLeft.borderTop::after {
      bottom: initial;
      top: -14px;
      border-width: 20px 0px 0px 20px;
      border-color: transparent rgb(255, 255, 255);
    }

    #AssetCanvasWrapper #AddCommentModal .borderRight.borderTop::after {
      border-width: 20px 20px 0px 0px;
      border-color: transparent #FFF transparent transparent;
      top: -14px;
      bottom: initial;
    }

  #AssetCanvasWrapper .loadingAssetDisplay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFF;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    z-index: 100;
    transition: opacity .2s linear;
  }

    #AssetCanvasWrapper .loadingAssetDisplay > div {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    #AssetCanvasWrapper .loadingAssetDisplay i {
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

.asset-view-top-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccd0d9;
  height: 50px;
}

  .asset-view-top-toolbar .backWrap a {
    text-decoration: none;
    border-bottom: none;
    color: inherit;
  }

  .asset-view-top-toolbar .select-asset-version label {
    display: none;
  }

  .asset-view-top-toolbar .select-asset-version select {
    cursor: pointer;
    color: inherit;
    background-color: #FFF;
  }

.asset-view-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  border-top: 1px solid #ccd0d9;
  height: 50px;
}

  .asset-view-toolbar .left {
    display: flex;
    gap: 5px;
    align-items: center;
  }

  .asset-view-toolbar .toggle-main-sidebar,
  .asset-view-toolbar .toggle-comment-sidebar {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1025;
    border: 1px solid #ccd0d9;
    display: none;
  }

  .asset-view-toolbar .toggle-main-sidebar {
    left: -15px;
  }

  .asset-view-toolbar .toggle-comment-sidebar {
    right: -15px;
  }

  .asset-view-toolbar .toggle-main-sidebar.active {
    left: 5px;
    transform: rotate(180deg);
  }

  .asset-view-toolbar .toggle-comment-sidebar.active {
    right: 5px;
    transform: rotate(180deg);
  }

  .asset-view-toolbar .zoom-in,
  .asset-view-toolbar .zoom-out {
    padding: 5px;
  }

    .asset-view-toolbar .zoom-in svg,
    .asset-view-toolbar .zoom-out svg {
      width: 24px;
      fill: var(--tool-btn-color);
    }

    .asset-view-toolbar .zoom-in:hover svg,
    .asset-view-toolbar .zoom-out:hover svg {
      fill: var(--tool-btn-active);
    }



  .asset-view-toolbar .commentToggle label {
    display: flex;
    align-items: center;
    z-index: 1;
    gap: 10px;
  }

  .asset-view-toolbar .commentToggle input {
    margin: 0;
    cursor: pointer;
  }

  .asset-view-toolbar .commentToggle label {
    font-size: .9rem;
  }

  .asset-view-toolbar .center {
    display: flex;
    align-items: center;
  }

@media (min-width: 767px) {
  .asset-view-toolbar .toggle-main-sidebar {
    display: block;
  }

  .assetPageWrap {
    height: 100%;
  }
}

@media (min-width: 1000px) {
  .assetPageWrap {
    flex-direction: row;
  }

  #AssetCanvasWrapper {
    flex: 1;
    min-width: 0%;
    min-height: 0%;
    height: initial;
  }

  .asset-view-toolbar .toggle-comment-sidebar {
    display: block;
  }
}

/* -------------------------------------------- 
    Asset Canvas Specific 
-------------------------------------------- */

.asset-bounds-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
  height: calc(100% - 100px);
}

.asset-container *:not(canvas) {
  width: 100%;
  height: 100%;
}

.asset-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  overflow: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

  .asset-container .asset {
    margin: auto;
    outline: none;
  }

  .asset-container .content-container {
    position: relative;
    width: 100%;
    will-change: transform;
  }

  .asset-container .body {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: visible;
  }

  .asset-container .section {
    padding: 0px !important;
    margin-top: 0px !important;
    margin-right: auto;
    margin-bottom: 0px !important;
    margin-left: auto;
    top: 0px;
    position: relative;
    text-align: start;
    box-shadow: none;
    display: flex;
    align-items: baseline;
    justify-content: left;
    overflow: auto;
  }

  .asset-container canvas {
    background-color: rgb(243, 244, 246);
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

/* -------------------------------------------- 
    Comment Section/List Specific 
-------------------------------------------- */

#CommentSection {
  display: flex;
  flex-direction: column;
  visibility: visible;
  overflow: hidden;
  transition: width .4s linear;
  overflow: hidden;
}

  #CommentSection.hidden {
    width: 0px;
  }

  #CommentSection #CommentList {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    overflow-y: auto;
    max-height: 350px;
  }

  #CommentSection .comment {
    border: none;
    text-align: initial;
    background: #FFF;
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: block;
    color: inherit;
  }

    #CommentSection .comment.active {
      background-color: #FFF;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .3), 0 4px 8px 3px rgba(0, 0, 0, .15);
    }

    #CommentSection .comment.highlight {
      background-color: #fff8b3; /* soft yellow */
    }

    #CommentSection .comment .commentHeader {
      margin-bottom: 6px;
    }

    #CommentSection .comment .commentName {
      font-size: .95em;
      font-weight: 600;
    }

    #CommentSection .comment .commentDate {
      font-size: 0.8em;
    }

    #CommentSection .comment .commentMessage {
      font-size: 0.95em;
    }

.assetPageWrap .addNewComment {
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px;
}

  .assetPageWrap .addNewComment .commentConfirmation {
    color: green;
    display: none;
  }

  .assetPageWrap .addNewComment .sendCommentButton {
    border: none;
    font-size: .9rem;
  }

  .assetPageWrap .addNewComment label {
    width: 100%;
    font-size: .9rem;
  }

  .assetPageWrap .addNewComment input,
  .assetPageWrap .addNewComment textarea {
    width: 100%;
    display: block;
    max-height: 250px;
  }

  .assetPageWrap .addNewComment button {
    padding: 5px;
    border: 1px solid #1e1e1e;
  }

@media (min-width: 1000px) {
  #CommentSection {
    width: 300px;
  }

    #CommentSection #CommentList {
      width: 100%;
      max-height: 100vh;
      height: 100%;
    }
}

@media (min-width: 1400px) {
  #CommentSection {
    width: 350px;
  }
}

/* --------------------------------------------------
  End Asset
-------------------------------------------------- */

/* --------------------------------------------------
  Start Global List Wrapper Styles
-------------------------------------------------- */
.list-wrapper {
  padding: 20px;
}

  .list-wrapper h1 {
    margin-bottom: 40px;
  }

  .list-wrapper .list-header {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--site-border-color);
    padding: 20px 0;
    gap: 10px;
  }

    .list-wrapper .list-header .button-list {
      gap: 5px;
    }

    .list-wrapper .list-header h4 {
      margin-bottom: 20px;
    }

  .list-wrapper ul {
    list-style: none;
    padding: 0;
  }

  .list-wrapper .list-tool-bar {
    border-bottom: 1px solid var(--site-border-color);
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }

    .list-wrapper .list-tool-bar .list-filters {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex: 1;
      gap: 1.5rem;
    }

      .list-wrapper .list-tool-bar .list-filters .button-list button {
        border: 2px solid var(--site-border-color);
        padding: .23rem .5rem;
        transition: all 0.2s linear;
      }

        .list-wrapper .list-tool-bar .list-filters .button-list button i {
          color: #8e9091;
          transition: all 0.2s linear;
        }

      .list-wrapper .list-tool-bar .list-filters .button-list li:first-child button {
        border-right-color: var(--site-filter-active);
      }

      .list-wrapper .list-tool-bar .list-filters .button-list li:last-child button {
        border-left: none;
      }

      .list-wrapper .list-tool-bar .list-filters .button-list button.active {
        border-color: var(--site-filter-active) !important;
      }

        .list-wrapper .list-tool-bar .list-filters .button-list button.active i {
          color: var(--site-filter-active);
        }

  /* Table Styles */

  .list-wrapper .list-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--site-border-color);
    border-radius: .75em;
    min-width: 625px;
    width: 100%;
    overflow: hidden;
  }

    .list-wrapper .list-table thead {
      background-color: var(--site-grey);
    }

    .list-wrapper .list-table > :not(caption) > * > * {
      padding: 1rem;
      border: none;
      border-bottom: 1px solid var(--site-border-color) !important;
    }

    .list-wrapper .list-table tbody tr:last-child td {
      border-bottom: none !important;
      vertical-align: middle;
    }

    .list-wrapper .list-table .btn-group i {
      color: #8e8e8e;
    }

    .list-wrapper .list-table thead tr th:last-child,
    .list-wrapper .list-table tbody tr td:last-child {
      text-align: right;
    }

  /* List Grid Styles */

  .list-wrapper .list-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }

    .list-wrapper .list-grid .list-card {
      border: 1px solid var(--site-border-color);
      padding: 1rem;
      border-radius: .75rem;
    }

      .list-wrapper .list-grid .list-card .top,
      .list-wrapper .list-grid .list-card .bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .5rem;
      }

      .list-wrapper .list-grid .list-card .bottom {
        justify-content: flex-end;
      }

      .list-wrapper .list-grid .list-card .top {
        border-bottom: 1px solid var(--site-border-color);
        padding-bottom: .75rem;
        margin-bottom: .75rem;
      }

@media (min-width: 767px) {
  .list-wrapper .list-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .list-wrapper h1,
  .list-wrapper .list-header h4 {
    margin-bottom: 0px;
  }

  .list-wrapper .list-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .list-wrapper .list-tool-bar {
    justify-content: space-between;
  }

    .list-wrapper .list-tool-bar .list-filters {
      justify-content: initial;
      flex: initial;
    }

  .list-wrapper .list-table {
    max-width: 100%;
  }
}

@media (min-width: 1300px) {
  .list-wrapper .list-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1500px) {
  .list-wrapper .list-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------------------------------------
  End Global List Wrapper Styles
-------------------------------------------------- */
/* --------------------------------------------------
  Start Clients Page
-------------------------------------------------- */

#ClientsPage .list-tool-bar {
  padding: 10px;
}

  #ClientsPage .list-tool-bar .left {
    display: none;
  }

    #ClientsPage .list-tool-bar .left ul {
      gap: 30px;
    }

    #ClientsPage .list-tool-bar .left button {
      position: relative;
      padding: .85rem 0;
    }

      #ClientsPage .list-tool-bar .left button:after {
        transition: background-color .2s linear;
        background-color: transparent;
      }

      #ClientsPage .list-tool-bar .left button.active:after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        height: 1px;
        width: 100%;
        background-color: var(--site-btn-color);
      }

#ClientsPage .searchClients {
  display: flex;
  align-items: center;
  gap: 10px;
}

  #ClientsPage .searchClients i {
    color: #848688;
  }

  #ClientsPage .searchClients input {
  }

#ClientsPage .list-grid,
#ClientsPage .list-table {
  display: none;
}

  #ClientsPage .list-table.active {
    display: table;
    overflow: hidden;
    min-width: 675px;
  }

  #ClientsPage .list-table tbody td {
    min-height: 73px;
  }

  #ClientsPage .list-grid.active {
    display: grid;
  }

  #ClientsPage .list-grid .client-name {
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 50px;
    margin-bottom: 10px;
  }

  #ClientsPage .list-grid .client-phone,
  #ClientsPage .list-grid .client-email {
    font-size: .9em;
    display: flex;
    align-items: center;
    gap: .5rem;
  }

#ClientsPage .client-phone a,
#ClientsPage .client-email a {
  text-decoration: none;
}

.list-wrapper .list-table.client-table-list .client-name {
  display: flex;
  gap: .75rem;
  align-items: center;
}

#ClientsPage .list-wrapper .name {
  text-decoration: none;
}

#ClientsPage .list-wrapper .list-grid .client-name .logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0px 0px 12px -5px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

  #ClientsPage .list-wrapper .list-grid .client-name .logo i {
    font-size: 1.2rem;
  }

  #ClientsPage .list-wrapper .list-grid .client-name .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

@media (min-width: 767px) {


  .list-wrapper .list-table.client-table-list .client-name .logo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0px 0px 12px -5px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
  }

    .list-wrapper .list-table.client-table-list .client-name .logo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

  #ClientsPage .list-tool-bar {
    padding: 0;
  }

    #ClientsPage .list-tool-bar .left {
      display: block;
    }
}

/* --------------------------------------------------
  End Clients Page
-------------------------------------------------- */
/* --------------------------------------------------
  Start Login Page
-------------------------------------------------- */

#LoginRegisterPageWrap {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--site-grey);
  padding: 1.25rem;
}

  #LoginRegisterPageWrap .validation-summary-errors {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
  }

  #LoginRegisterPageWrap .border-wrap {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
  }

  #LoginRegisterPageWrap .content-width {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0px 0px 10px -3px var(--site-black);
  }

    #LoginRegisterPageWrap .content-width .left-right-wrap {
      display: flex;
      align-items: center;
      background-color: #FFF;
      border-radius: 1rem;
      flex-wrap: wrap;
    }

      #LoginRegisterPageWrap .content-width .left-right-wrap > div {
        flex-basis: 100%;
      }

    #LoginRegisterPageWrap .content-width .left {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 2rem;
    }

    #LoginRegisterPageWrap .content-width .right {
      background-color: var(--site-btn-color);
      border-radius: 1rem;
    }

  #LoginRegisterPageWrap h1,
  #LoginRegisterPageWrap .description {
    text-align: center;
  }

  #LoginRegisterPageWrap .login-form .checkbox-forgot-pass {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

    #LoginRegisterPageWrap .login-form .checkbox-forgot-pass label {
      margin: 0;
    }

  #LoginRegisterPageWrap .sep-login-with {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    #LoginRegisterPageWrap .sep-login-with::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: auto;
      width: 100%;
      height: 1px;
      background-color: #e6e8ec;
    }

    #LoginRegisterPageWrap .sep-login-with span {
      position: relative;
      z-index: 1;
      background-color: #FFF;
      display: inline-block;
      padding: 0 1em;
    }

  #LoginRegisterPageWrap .form-wrap {
    max-width: 400px;
    margin: 0 auto;
  }

  #LoginRegisterPageWrap #external-account div p {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

@media (min-width: 767px) {
  #LoginRegisterPageWrap .content-width .left-right-wrap > div {
    flex-basis: 50%;
  }

  #LoginRegisterPageWrap {
    border-radius: 1rem;
  }
}

.gsi-material-button {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-appearance: none;
  background-color: WHITE;
  background-image: none;
  border: 1px solid #747775;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #1f1f1f;
  cursor: pointer;
  font-size: 14px;
  height: 40px;
  letter-spacing: 0.25px;
  outline: none;
  overflow: hidden;
  padding: 0 12px;
  position: relative;
  text-align: center;
  -webkit-transition: background-color .218s, border-color .218s, box-shadow .218s;
  transition: background-color .218s, border-color .218s, box-shadow .218s;
  vertical-align: middle;
  white-space: nowrap;
  width: auto;
  max-width: 400px;
  min-width: min-content;
}

  .gsi-material-button .gsi-material-button-icon {
    height: 20px;
    margin-right: 12px;
    min-width: 20px;
    width: 20px;
  }

  .gsi-material-button .gsi-material-button-content-wrapper {
    -webkit-align-items: center;
    align-items: center;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }

  .gsi-material-button .gsi-material-button-contents {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: top;
  }

  .gsi-material-button .gsi-material-button-state {
    -webkit-transition: opacity .218s;
    transition: opacity .218s;
    bottom: 0;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
  }

  .gsi-material-button:disabled {
    cursor: default;
    background-color: #ffffff61;
    border-color: #1f1f1f1f;
  }

    .gsi-material-button:disabled .gsi-material-button-contents {
      opacity: 38%;
    }

    .gsi-material-button:disabled .gsi-material-button-icon {
      opacity: 38%;
    }

  .gsi-material-button:not(:disabled):active .gsi-material-button-state,
  .gsi-material-button:not(:disabled):focus .gsi-material-button-state {
    background-color: #303030;
    opacity: 12%;
  }

  .gsi-material-button:not(:disabled):hover {
    -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  }

    .gsi-material-button:not(:disabled):hover .gsi-material-button-state {
      background-color: #303030;
      opacity: 8%;
    }

/* --------------------------------------------------
  End Login Page
-------------------------------------------------- */
/* --------------------------------------------------
  Start Client Details
-------------------------------------------------- */

.interior-details-view {
  padding: 20px;
}

  .interior-details-view .view-content .content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .interior-details-view .view-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

    .interior-details-view .view-header .button-list {
      gap: 10px;
    }

  .interior-details-view .item-info {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid var(--site-border-color);
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

    .interior-details-view .item-info .label {
      display: inline-block;
      text-align: left;
    }

    .interior-details-view .item-info .flex-column .label {
      text-align: left;
    }

    .interior-details-view .item-info .info-wrap {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
    }

    .interior-details-view .item-info .logo-wrap {
      text-align: center;
      border-bottom: 2px solid #e6e8ec;
      padding-bottom: 10px;
      margin-bottom: 10px;
    }

      .interior-details-view .item-info .logo-wrap img {
        max-width: 250px;
        margin: 0 auto;
      }

  .interior-details-view .info-header {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .interior-details-view .item-list .list-wrapper {
    padding: 0;
  }

    .interior-details-view .item-list .list-wrapper table {
      margin-bottom: 0;
    }


@media (min-width: 1000px) {
  .interior-details-view .view-content .content {
    flex-direction: row;
  }

  .interior-details-view .view-content .left {
    flex-basis: 300px;
  }

  .interior-details-view .view-content .right {
    flex: 1;
  }
}

/* --------------------------------------------------
  End Client Details
-------------------------------------------------- */
/* --------------------------------------------------
  Project Popups
-------------------------------------------------- */

#EditProjectModal .current-project-thumbnail[src=""] {
  display: none;
}


/* ----------------------------------------------------
    Share Project Popup 
---------------------------------------------------- */

#ShareProjectModal .emailProjectWrap {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--site-border-color);
}

#ShareProjectModal .copyWrap {
  display: flex;
  margin-bottom: 1rem;
}

  #ShareProjectModal .copyWrap input {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  #ShareProjectModal .copyWrap button {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }

    #ShareProjectModal .copyWrap button:active {
      background-color: #0d6efd;
    }

    #ShareProjectModal .copyWrap button:focus-visible {
      outline: 1px solid #0d6efd;
    }
/* Form */
#ShareProjectForm .shareProjectEmailListDisplay {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

#ShareProjectForm .badge {
  padding: 8px;
  font-size: 0.8rem;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

#ShareProjectForm .formErrorGroup {
  display: none;
  color: red;
  margin-bottom: 10px;
}

#ShareProjectForm textarea {
  min-height: 100px;
}
/* --------------------------------------------------
  Start Asset List
-------------------------------------------------- */
.project-assets .list-wrapper .asset-name {
  text-align: center;
  font-weight: 500;
  font-size: .95rem
}

.project-assets .list-wrapper .thumbnail-wrap img {
  width: 100%;
  height: auto;
  border-radius: .5rem;
}

.project-assets .asset-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-assets .list-card {
  background-color: #f0f4f9;
  border: none !important;
}

  .project-assets .list-card:has(a:hover) {
    background-color: #c2e7ff;
  }

@media (min-width: 1500px) {
  .project-assets .list-wrapper .list-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* --------------------------------------------------
  End Asset List
-------------------------------------------------- */
/* --------------------------------------------------
  Delete Popups
-------------------------------------------------- */

.bs-delete-alert svg {
  width: 16px;
  height: 14px;
  color: #842029;
  fill: #842029;
}

.confirm-deletion-input {
  width: 100%;
}

/* --------------------------------------------------
  Delete Popups
-------------------------------------------------- */
/* --------------------------------------------------
  Identity Section
-------------------------------------------------- */

.identity-page-wrap {
  padding: 20px;
}

  .identity-page-wrap h1 {
    border-bottom: 2px solid #e4e4e4;
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .identity-page-wrap .identity-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

@media (min-width: 767px) {
  .identity-page-wrap .identity-content {
    flex-direction: row;
  }
}

/* Sidebar */

.identity-page-wrap .identity-sidebar ul,
.identity-page-wrap .identity-sidebar ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.identity-page-wrap .identity-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.identity-page-wrap .identity-sidebar a {
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all .1s linear;
}

  .identity-page-wrap .identity-sidebar a.active,
  .identity-page-wrap .identity-sidebar a:hover {
    background-color: var(--site-btn-active);
    color: #FFF;
  }

@media (min-width: 767px) {
  .identity-page-wrap .identity-sidebar {
    width: 300px;
  }

    .identity-page-wrap .identity-sidebar a {
      padding: 10px;
      font-size: 1.2rem;
    }
}

/* Body */

.identity-page-wrap .identity-body {
  flex: 1;
}

  .identity-page-wrap .identity-body h3,
  .identity-page-wrap .identity-body h4 {
    border-bottom: 2px solid #e4e4e4;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .identity-page-wrap .identity-body .button-list {
    gap: 10px;
  }

@media (max-width: 1250px) {
  .identity-page-wrap .col-md-6 {
    width: 100%;
  }
}

/* -----------------------------------------------------------------
  Client Project Page
  ----------------------------------------------------------------- */

.clientProjectPageWrap {
  background-color: #f4f4f5;
  height: 100%;
  padding: 120px 0;
}

  .clientProjectPageWrap .content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
  }

  .clientProjectPageWrap .projectContainer {
    padding: 40px;
    background-color: #FFF;
    border: 1px solid #e0e5e9;
    box-shadow: 0px 3px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
  }

  .clientProjectPageWrap .pageHeader {
    padding-bottom: 30px;
    margin-bottom: 40px;
    color: #2f353e;
    border-bottom: 1px solid #e0e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .clientProjectPageWrap .projectName {
    font-size: 1.2em;
    font-weight: 500;
    text-align: left;
  }

  .clientProjectPageWrap .projectAssetList {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(1,1fr);
  }


  .clientProjectPageWrap .asset {
    text-decoration: none;
  }

    .clientProjectPageWrap .asset .imageWrap {
      overflow: hidden;
      border-radius: 10px;
      border: 1px solid #e0e5e9;
      transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
    }

    .clientProjectPageWrap .asset:hover .imageWrap {
      box-shadow: 0 0px 14px rgba(239, 65, 54, .3);
      transform: scale(1.015);
    }

    .clientProjectPageWrap .asset .imageWrap img {
      width: 100%;
      height: auto;
    }

  .clientProjectPageWrap .assetName {
    margin-top: 10px;
    font-weight: 500;
    font-size: 17px;
    color: #879aa9;
    transition: color 0.2s ease-in-out;
    text-decoration: none;
  }

  .clientProjectPageWrap a:hover .assetName {
    color: #546776;
  }

@media (min-width: 650px) {
  .clientProjectPageWrap .projectAssetList {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (min-width: 900px) {
  .clientProjectPageWrap .projectAssetList {
    grid-template-columns: repeat(3,1fr);
  }
}

/* -----------------------------------------------------------------
  Client Project Page
  ----------------------------------------------------------------- */

/* -----------------------------------------------------------------
  Commenter Modal
  ----------------------------------------------------------------- */

#CommenterSignUpModal form p {
  text-align: center;
}

#CommenterSignUpModal .pageTwo form,
#CommenterSignUpModal #CreateCommenterPageTwoButton {
  display: none;
}

/* -----------------------------------------------------------------
  Commenter Modal
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Clients Quick View
  ----------------------------------------------------------------- */

.clients-quick-view .list-header .button-list {
  gap: 5px;
}

.clients-quick-view .table tr td {
  min-height: 72px;
}


/* -----------------------------------------------------------------
  Clients Quick View
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Center Content Anonymous
  ----------------------------------------------------------------- */

.centerContentAnonymous {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  background-color: var(--site-grey);
}

  .centerContentAnonymous .content {
    max-width: 500px;
    height: 500px;
    height: 100%;
    width: 100%;
    border: 2px solid #FFF;
    border-radius: .75rem;
    padding: 1rem;
    box-shadow: 0px 0px 10px 10px rgba(0,0,0,.05);
  }

    .centerContentAnonymous .content .inner {
      background-color: #FFF;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      border-radius: .75rem;
      padding: 2.5rem;
    }

  .centerContentAnonymous h1 {
    border-bottom: 1px solid var(--site-border-color);
    width: 100%;
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .centerContentAnonymous .validation-summary-errors {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
/* -----------------------------------------------------------------
  Center Content Anonymous
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Create Asset Modal
  ----------------------------------------------------------------- */
.modal-body,
.modal-body {
  position: relative;
}

.modalOverlay,
.modalOverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.8);
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: -1;
}

  .modalOverlay > div,
  .modalOverlay > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

/* -----------------------------------------------------------------
  Create Asset Modal
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Start Comment Reply Styles
  ----------------------------------------------------------------- */

.commentThreadWrap {
  background-color: #edf2fa;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.4s linear;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

  .commentThreadWrap.resolved,
  .commentThreadWrap.hidden {
    display: none;
  }

    .commentThreadWrap.resolved.display {
      display: flex;
      opacity: 1 !important;
    }

  .commentThreadWrap .replyToCommentButton {
    background-color: #FFF;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    gap: 5px;
    align-items: center;
  }

    .commentThreadWrap .replyToCommentButton i {
      transform: scaleY(-1) rotate(180deg);
      font-size: 0.8rem;
    }

#CommentSection .replyToCommentMessageBox {
  display: none;
}

#CommentSection .replyBox {
  margin-top: 10px;
}

  #CommentSection .replyBox .commentConfirmation {
    color: green;
    display: none;
  }

#CommentSection .childComment {
  margin-left: 20px;
}


#CommentSection .commentHeader {
  position: relative;
}


  #CommentSection .commentHeader .commentResolvedToggle {
    position: absolute;
    top: 0;
    right: -10px;
  }

    #CommentSection .commentHeader .commentResolvedToggle input {
      cursor: pointer;
    }

#CommentSection .viewResolvedComments {
  padding: 11px 11px 12px;
  border-bottom: 1px solid #ccd0d9;
}

  #CommentSection .viewResolvedComments input {
    cursor: pointer;
  }

  #CommentSection .viewResolvedComments label {
    font-size: 0.9rem;
  }

/* -----------------------------------------------------------------
  End Comment Reply Styles
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Start Confirm Email Styles
  ----------------------------------------------------------------- */

.confirmEmailWrap .alert-success {
  text-align: center;
  padding-right: 1rem;
}

  .confirmEmailWrap .alert-success button {
    display: none;
  }


/* -----------------------------------------------------------------
  End Confirm Email Styles
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Start Project List Styles
  ----------------------------------------------------------------- */

.client-projects-list .list-tool-bar {
  padding-bottom: .5rem;
  justify-content: end;
}

  .client-projects-list .list-tool-bar .list-filters {
    justify-content: flex-end;
  }

.client-projects-list .list-table.active {
  display: table;
  min-width: 675px;
}

.client-projects-list .project-name {
  font-size: 1.1rem;
  vertical-align: middle;
}

  .client-projects-list .project-name a {
    text-decoration: none;
    font-weight: 500;
  }

  .client-projects-list .project-name i {
    font-size: 0.9rem;
    display: none;
  }

    .client-projects-list .project-name i.archived {
      display: inline-block;
    }

.client-projects-list .archived {
  background-color: #f0f0f0;
}

.client-projects-list .list-card .bottom {
justify-content: space-between !important;
}

.client-projects-list .list-card .bottom .right {
  display: flex;
  gap: 5px;
}

.client-projects-list .list-card .projectArchivedToggle {
  font-size: 0.9rem;
}

  .client-projects-list .list-card .projectArchivedToggle input,
  .client-projects-list .list-card .projectArchivedToggle label {
    cursor: pointer;
  }
/* -----------------------------------------------------------------
  End Project List Styles
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Start Subscription Details Page
  ----------------------------------------------------------------- */
.subscriptionDetailsPage .headerWrapper {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.subscriptionDetailsPage h1 {
  margin-bottom: 20px;
}

.subscriptionDetailsPage h2 {
  font-size: 1.3rem;
  line-height: 1.3;
}

.subscriptionDetailsPage h3 {
  margin-bottom: 5px;
}

.subscriptionDetailsPage .pricing-cards-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

  .subscriptionDetailsPage .pricing-cards-container .pricing-card {
    border: 2px solid var(--site-filter-active);
    padding: 30px;
    border-radius: 1rem;
    margin: 0 auto;
  }

  .subscriptionDetailsPage .pricing-cards-container > .pricing-card:nth-child(2) {
    background-color: rgba(196, 53, 49, .05);
  }

    .subscriptionDetailsPage .pricing-cards-container > .pricing-card:nth-child(2) .btn {
      background-color: rgba(196, 53, 49, 1);
      border-color: rgba(196, 53, 49, 1);
    }

    .subscriptionDetailsPage .pricing-cards-container > .pricing-card:nth-child(2),
    .subscriptionDetailsPage .pricing-cards-container > .pricing-card:nth-child(2) .top {
      position: relative;
      border-color: rgba(196, 53, 49, 1);
    }

      .subscriptionDetailsPage .pricing-cards-container > .pricing-card:nth-child(2)::after {
        content: "Most Popular";
        --f: 12px; /* control the folded part*/
        --fo: calc(var(--f) + 1px); /* control the folded part offset */
        --r: 20px; /* control the ribbon shape */
        --t: 10px; /* the top offset */
        position: absolute;
        inset: var(--t) calc(-1*(var(--fo))) auto auto;
        padding: 0 10px var(--f) calc(10px + var(--r));
        clip-path: polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%, calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)), var(--r) calc(50% - var(--f)/2));
        background: #c43531;
        box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
        color: #FFF;
      }

.subscriptionDetailsPage .pricing-card .top {
  border-bottom: 2px solid var(--site-filter-active);
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
}


  .subscriptionDetailsPage .pricing-card .top i {
    font-size: 0.8rem;
    font-weight: 600;
  }

.subscriptionDetailsPage .pricing-card .price {
  font-size: 1.5rem;
  margin-top: 15px;
}

.subscriptionDetailsPage .pricing-card p {
  margin-bottom: 0;
}

.subscriptionDetailsPage .pricing-card ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

  .subscriptionDetailsPage .pricing-card ul li {
    display: flex;
    gap: 10px;
  }

@media (max-width: 767px) {
  .subscriptionDetailsPage .pricing-cards-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }

    .subscriptionDetailsPage .pricing-cards-container > .pricing-card:nth-child(2) {
      grid-row: 1;
    }
}




/* -----------------------------------------------------------------
  End Subscription Details Page
  ----------------------------------------------------------------- */
/* -----------------------------------------------------------------
  Start Admin Account Page
  ----------------------------------------------------------------- */

.topAccountButtons ul {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.account-page-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

  .account-page-wrap .list-wrapper {
    padding: 0;
  }

    .account-page-wrap .list-wrapper h3 {
      margin: 0;
    }

  .account-page-wrap .list-header {
    min-height: 80px;
  }

.admin-notifications {
  margin-top: 20px;
  padding: 1.25rem;
  border: 1px solid var(--site-border-color);
  border-radius: .75rem;
}

  .admin-notifications .alert-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .admin-notifications .alert {
    margin-bottom: 0;
  }

@media (min-width: 1000px) {
  .account-page-wrap {
    flex-direction: row;
  }

    .account-page-wrap .left {
      flex-basis: 30%;
    }

    .account-page-wrap .right {
      flex: 1;
    }
}

/* -----------------------------------------------------------------
  End Admin Account Page
  ----------------------------------------------------------------- */
/* --------------------------------------------------
  Start Admin User Management
-------------------------------------------------- */

.adminUserManagementWrapper .btn {
  padding: 5px 10px;
}

.adminUserManagementWrapper .modal-body .copy {
  margin-bottom: 10px;
}

.adminUserManagementWrapper .list-wrapper {
  padding: 0;
}

.adminUserManagementWrapper table {
  margin-top: 20px;
  min-width: 625px;
}


/* --------------------------------------------------
  End Admin User Management
-------------------------------------------------- */
