﻿:root {
  --sidebar-width: 220px;
}

.flipper {
  perspective: 1000px;
  position: relative;
}
.flipper-container {
  height: inherit;
  width: 100%;
  will-change: transform;
  transform-style: preserve-3d;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1.3);
}
.flipper-flipped .flipper-container {
  transform: rotateY(-180deg);
}
.flipper-container-modal {
  display: flex;
  pointer-events: initial;
  will-change: left, top, height, width, transform, box-shadow;
  transform: rotateY(0deg) translate(0, 0);
  transition: left 0.3s, top 0.3s, height 0.3s, width 0.3s, transform 0.3s, box-shadow 0.3s;
  transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1.3);
}
.flipper-container-modal.flipper-flipped {
  left: 50% !important;
  top: 35% !important;
  height: 400px !important;
  width: 400px !important;
  max-width: 100% !important;
  transform: rotateY(-180deg) translate(50%, -50%);
}
.flipper-container-modal.flipper-flipped .flipper-back {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.3);
}
.flipper-front, .flipper-back {
  float: left;
  height: inherit;
  width: inherit;
  overflow-y: auto;
  position: relative;
  will-change: max-height;
  transition: max-height 0s 0.12s;
  transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1.3);
}
.flipper-front {
  margin-right: -100%;
  max-height: 100vh;
}
.flipper-flipped .flipper-front {
  max-height: 0;
}
.flipper-back {
  background-color: #aaa;
  max-height: 0 !important;
  transform: rotateY(180deg);
}
.flipper-flipped .flipper-back {
  max-height: 100vh !important;
}
.flipper-modals {
  pointer-events: none;
  will-change: auto;
}
.flipper-modals-active {
  perspective: 1000px;
  position: fixed;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: 1060;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/*@font-face {
  font-family: 'Poppins';
  src: url("../fonts/poppins/Poppins-Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
}*/
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html {
  font-size: 12px !important;
  position: relative;
  min-height: 100%;
}

header {
  height: var(--nav-height);
  padding-bottom: 15px;
}

body {
  margin-bottom: 60px;
  background-color: var(--body-backgroundcolor);
  overflow: hidden;
}

/* Forms */
.form-control:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.scrollbar-thin {
  /* Handle */
  /* Handle on hover */
}
.scrollbar-thin::-webkit-scrollbar {
  width: 5px;
}
.scrollbar-thin::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.scrollbar-thin::-webkit-scrollbar-thumb {
  background: #888;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.sidebar-secondary {
  overflow: auto;
  height: calc(100vh - var(--nav-height));
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16), 0 2px 10px rgba(0, 0, 0, 0.12);
  width: var(--sidebar-width);
  z-index: 2;
}
.sidebar-secondary .accordion {
  border-left: 0 !important;
  border-right: 0 !important;
}
.sidebar-secondary .accordion-button {
  --bs-accordion-btn-bg: var(--bs-gray-200);
  height: 40px;
}
.sidebar-secondary .accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
.sidebar-secondary .accordion-item, .sidebar-secondary .list-group-item {
  border-top: none;
  border-left: none;
  border-right: none;
}
.sidebar-secondary .accordion-item:first-of-type, .sidebar-secondary .list-group-item:first-of-type {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.sidebar-secondary .accordion-item:first-of-type:not(.list-group-item), .sidebar-secondary .list-group-item:first-of-type:not(.list-group-item) {
  border-bottom: none;
}
.sidebar-secondary .accordion-item:last-of-type, .sidebar-secondary .list-group-item:last-of-type {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.sidebar-secondary .accordion-item .btn.btn-link.bi.collapsed:before, .sidebar-secondary .list-group-item .btn.btn-link.bi.collapsed:before {
  content: "\f4fe";
}
.sidebar-secondary .accordion-item .btn.btn-link.bi:not(.collapsed):before, .sidebar-secondary .list-group-item .btn.btn-link.bi:not(.collapsed):before {
  content: "\f2ea";
}

.list-group.dropdown-menu {
  display: none;
}
.list-group.dropdown-menu.show {
  display: flex;
}

.list-group-item:is(a, .btn):is(:hover, .active, :active) {
  text-decoration: none !important;
  --bs-list-group-active-color: #000;
  --bs-list-group-active-bg: var(--bs-gray-400);
  --bs-list-group-bg: var(--bs-gray-400);
  --bs-list-group-active-border-color: var(--bs-gray-500);
}
.list-group-item svg {
  height: 24px;
  margin: auto;
}

.indicator-progress {
  display: none;
}

[data-ecw-indicator=on] > .indicator-progress {
  display: inline-block;
}

[data-ecw-indicator=on] > .indicator-label {
  display: none;
}

.btn:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
.btn:active:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.btn.btn-icon {
  transition: box-shadow ease-in-out 0.2s;
}
.btn.btn-icon:focus {
  box-shadow: none;
  border-color: transparent;
}
.btn.btn-icon:is(:active, .active, .show) {
  border-color: transparent;
  box-shadow: inset 0px 0px 0px 16px var(--bs-gray-300) !important;
}

.btn-link.nav-link:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* Widget Grid */
#grid-holder {
  margin: auto;
  max-width: calc(300px * 4 + 20px * 3);
}
.aside-panel #grid-holder .grid, .aside-panel #grid-holder {
  margin: auto;
  max-width: calc(300px * 3 + 20px * 2);
}
@media (max-width: calc(300px * 4 + 20px * 3)) {
  .aside-panel #grid-holder .grid, .aside-panel #grid-holder {
    max-width: calc(300px * 2 + 20px);
  }
}
@media (max-width: calc(300px * 3 + 20px * 2)) {
  .aside-panel #grid-holder .grid, .aside-panel #grid-holder {
    max-width: 300px;
  }
}
@media (max-width: calc(300px * 4 + 20px * 3)) {
  #grid-holder {
    max-width: calc(300px * 3 + 20px * 2);
  }
}
@media (max-width: calc(300px * 3 + 20px * 2)) {
  #grid-holder {
    max-width: calc(300px * 2 + 20px);
  }
}
@media (max-width: calc(300px * 2 + 20px)) {
  #grid-holder {
    max-width: 300px;
  }
}
#grid-holder .grid-item {
  margin-bottom: 20px;
  width: 100%;
  max-width: 300px;
}
@media (min-width: calc(300px * 2 + 20px)) {
  #grid-holder .grid-item--width2 {
    max-width: calc(300px * 2 + 20px);
  }
}
@media (min-width: calc(300px * 3 + 20px * 2)) {
  #grid-holder .grid-item--width3 {
    max-width: calc(300px * 3 + 20px * 2);
  }
}
@media (min-width: calc(300px * 4 + 20px * 3)) {
  #grid-holder .grid-item--width4 {
    max-width: calc(300px * 4 + 20px * 3);
  }
}
#grid-holder .grid-item--height2 {
  height: calc(var(--grid-height) * 2 + var(--gutter));
}
#grid-holder .grid-item--height3 {
  height: calc(var(--grid-height) * 3 + var(--gutter) * 2);
}

/* Exigo Card */
.card {
  --bs-card-border-color: #e5e5e5;
}
.card-header {
  --bs-card-cap-padding-y: 16px;
  --bs-card-cap-padding-x: 14px;
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}
.card-footer-link .bi {
  font-size: 20px;
}

/**
 * tab-nav.css
 * -----------
 *
 * HTML STRUCTURE:
 * <ul class="tab-nav">
 *   <li class="tab-nav-item">
 *     <button type="button" class="tab-nav-btn"></button>
 *   </li>
 * </ul>
 */
.tab-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}
.card .tab-nav {
  margin-top: -8px;
}

.tab-nav-item {
  display: inline-block;
  flex-grow: 1;
  text-align: center;
  position: relative;
  vertical-align: bottom;
}
.tab-nav-item:not(.collapsed) {
  pointer-events: none;
}

.tab-nav-btn,
.nav-link {
  background-color: transparent;
  border: 0;
  color: inherit;
  display: inline-block;
  padding: 16px 8px 12px;
  text-transform: uppercase;
  width: 100%;
}
.tab-nav-btn:after,
.nav-link:after {
  background-color: var(--bs-primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  content: " ";
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: all 0.25s;
  transform: scale(0);
}

.tab-nav-btn:hover,
.tab-nav-btn:focus,
.nav-link:hover,
.nav-link:focus {
  color: inherit;
}

.tab-nav-item:not(.collapsed) .tab-nav-btn:after,
.tab-nav-item.active .nav-link:after {
  transform: scale(1);
  opacity: 1;
}

.card .tab-nav .tab-nav-btn:not(.collapsed):after {
  left: 0;
  width: 100%;
}

.tab-nav-contents {
  display: flex;
}

.tab-nav-content {
  width: 100%;
  min-width: 100%;
  margin-left: -100%;
  position: relative;
}
.tab-nav-content:first-of-type {
  margin-left: 0;
}

/* Utility */
.collapse-nodelay + :is(.show:not(.hiding), .collapsing, .showing).offcanvas-start {
  left: 0 !important;
}
.collapse-nodelay + :is(.show:not(.hiding), .collapsing, .showing).offcanvas-end {
  right: 0 !important;
}

.collapse-width {
  transition: width 0.2s linear;
}
.collapse-width.collapsing {
  width: 0;
  height: auto;
  overflow: hidden;
}

/* Squares */
.square-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
  padding: 3px 6px;
}
.square-grid-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 94px;
  margin: 3px;
  text-align: center;
  width: calc(33.33333% - 6px);
  transition: all 0.2s;
}
.square-grid-item.flipper-flipped {
  cursor: initial;
}
.square-grid-item.flipper-flipped .flipper-container {
  display: none;
}
.square-grid-item:hover {
  transform: scale(1.06) translateZ(0);
  perspective: unset;
}

/* fullcalendar overrides */
#calendar-wdgt .dot {
  height: 5px;
  width: 5px;
  background-color: #32CD32;
  border-radius: 50%;
  display: inline-block;
}
#calendar-wdgt .fc-scrollgrid, #calendar-wdgt th, #calendar-wdgt td {
  border: none;
}
#calendar-wdgt .fc-daygrid-day-frame {
  max-height: 40px;
}
#calendar-wdgt .fc-daygrid-day-top {
  width: 34px;
}
#calendar-wdgt .fc-daygrid-day-number {
  width: 24px;
  height: 24px;
  text-decoration: none;
  text-align: center;
}
#calendar-wdgt .fc-day-today .fc-daygrid-day-number {
  color: white;
  border-radius: 50%;
  background-color: gray;
}
#calendar-wdgt .fc-today-button {
  display: none;
}
#calendar-wdgt .fc-toolbar {
  background-image: url("../images/calendar-tmp-bg.jpg");
  height: 170px;
  padding: 0;
  margin: 0;
  text-align: left;
  background-size: 100% 171px;
  background-color: #fff;
  flex-direction: column;
}
#calendar-wdgt .fc-toolbar-chunk {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
}
#calendar-wdgt .fc-toolbar-chunk .fc-bannerDate-button {
  background-color: transparent;
  font-size: 20px;
  border: none;
}
#calendar-wdgt .fc-toolbar-chunk .fc-bannerDate-button:hover {
  background-color: transparent;
  cursor: default;
}
#calendar-wdgt .fc-toolbar-chunk:nth-of-type(2) {
  justify-content: center;
}
#calendar-wdgt .fc-toolbar-chunk:last-of-type {
  background-color: #e5e5e5;
  padding: 5px 0;
}
#calendar-wdgt .fc-toolbar-chunk .fc-button-primary:is(:not(:disabled), :active, :focus) {
  box-shadow: none;
}
#calendar-wdgt .fc-toolbar-chunk .fc-button:not(.fc-bannerDate-button) {
  flex-grow: 0;
  background-color: transparent;
  color: #38516b;
  border: none;
  border-radius: 50%;
}
#calendar-wdgt .fc-toolbar-chunk .fc-button:not(.fc-bannerDate-button):hover {
  background-color: white;
}
#calendar-wdgt .fc-toolbar-chunk .fc-button:not(.fc-bannerDate-button) .fc-icon {
  font-family: "bootstrap-icons", serif !important;
  font-size: 16px;
}
#calendar-wdgt .fc-toolbar-chunk .fc-button:not(.fc-bannerDate-button) .fc-icon.fc-icon-chevron-left:before {
  content: "\f284";
}
#calendar-wdgt .fc-toolbar-chunk .fc-button:not(.fc-bannerDate-button) .fc-icon.fc-icon-chevron-right:before {
  content: "\f285";
}
#calendar-wdgt .fc-toolbar-title {
  text-align: center;
  font-size: 18px;
}
#calendar-wdgt .fc-daygrid-day-events .fc-daygrid-dot-event {
  justify-content: center;
}
#calendar-wdgt .fc-daygrid-day-events .fc-daygrid-dot-event .fc-event-time {
  display: none;
}
#calendar-wdgt .fc-daygrid-day-events .fc-daygrid-dot-event .fc-event-title {
  display: none;
}
#calendar-wdgt .fc-daygrid-day, #calendar-wdgt .fc-col-header-cell {
  border: none;
  background-color: white;
}
#calendar-wdgt .fc-col-header-cell-cushion {
  text-decoration: none;
  font-weight: 400;
}
#calendar-wdgt .fc-day-disabled .fc-daygrid-day-frame {
  max-height: 1px;
}
#calendar-wdgt .fc-button {
  padding: 0;
}

#view-event-modal a {
  text-decoration: none;
}
#view-event-modal a.btn {
  border-radius: 0;
}
#view-event-modal #event-color-box {
  width: 18px;
  height: 18px;
  border: 1px solid gray;
}

/*Visual Tree - Needs refactoring*/
#treeError, #leftJumpingNode, #rightJumpingNode {
  display: none;
}

.ds_Tree-viewer-tree {
  cursor: move;
  opacity: 1;
  transition: opacity 300ms;
  position: absolute;
  height: 100%;
  width: 100%;
}
.ds_Tree-viewer-tree--hidden {
  opacity: 0;
  touch-events: none;
  pointer-events: none;
}
.ds_Tree-viewer-tree-link {
  fill: none;
  stroke: #424242;
  stroke-width: 2px;
  opacity: 1;
  transition: opacity 300ms;
}
.ds_Tree-viewer-tree-link--hidden {
  opacity: 0;
}
.ds_Tree-viewer-tree .ds_Tree-viewer-tree-node {
  cursor: default;
}
.ds_Tree-viewer-tree .ds_Tree-viewer-tree-node__front {
  overflow: visible;
}
.ds_Tree-viewer-tree .ds_Tree-viewer-tree-node__placement {
  overflow: visible;
}
.ds_Tree-viewer-tree .ds_Tree-viewer-tree-node__name, .ds_Tree-viewer-tree .ds_Tree-viewer-tree-node-back__name, .ds_Tree-viewer-tree .ds_Tree-viewer-tree-node__rank, .ds_Tree-viewer-tree .ds_Tree-viewer-tree-node-back__rank, .ds_Tree-viewer-tree .ds_Tree-viewer-tree-node__custom-color-label {
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-weight: 400;
}

#nodeDetailsBottom {
  bottom: 0;
  height: auto;
  max-height: 60px;
  position: absolute;
  width: 100%;
  z-index: 100;
  -webkit-transition: 0.6s all;
  -moz-transition: 0.6s all;
  transition: 0.6s all;
}
#nodeDetailsBottom.expanded {
  max-height: 500px;
}
#nodeDetailsBottom nav {
  font-size: 20px;
  height: 60px;
  padding: 10px 0;
}
#nodeDetailsBottom nav img {
  margin: 0 20px;
  max-height: 40px;
  max-width: 40px;
  border-radius: 50%;
}
#nodeDetailsBottom nav #noProfileImgBottom {
  font-size: 27px;
}
#nodeDetailsBottom nav button {
  -webkit-transition: 0.6s all;
  -moz-transition: 0.6s all;
  transition: 0.6s all;
  cursor: pointer;
  margin-right: 20px;
  opacity: 1;
}
#nodeDetailsBottom nav button.detail-expanded {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
#nodeDetailsBottom .content {
  background-color: #fff;
  overflow-y: scroll;
}
#nodeDetailsBottom .content section {
  padding: 10px 0;
}
#nodeDetailsBottom .content section #actionsBar {
  line-height: 18px;
}
#nodeDetailsBottom .content section a {
  text-decoration: none;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.7);
}
#nodeDetailsBottom .content__left-col {
  font-size: 14px;
  padding: 2px 4px 2px 0;
  text-align: right;
}
#nodeDetailsBottom .content__right-col {
  font-size: 14px;
  padding: 2px 0 2px 4px;
}

#nodeDetailsSideNav {
  overflow-x: hidden;
  position: absolute;
  max-width: 230px;
}
#nodeDetailsSideNav .offcanvas-header {
  min-height: 120px;
  max-height: 120px;
  height: 120px;
}
#nodeDetailsSideNav .offcanvas-header .header-profile img, #nodeDetailsSideNav .offcanvas-header header-profile i {
  border-radius: 50%;
  height: 80px;
  max-height: 80px;
  width: 80px;
  font-size: 80px;
}
#nodeDetailsSideNav .offcanvas-header #noProfileImg {
  fill: #FFF;
  font-size: 60px;
}
#nodeDetailsSideNav .offcanvas-header #msgUser {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  position: absolute;
  right: 15px;
  top: 95px;
}
#nodeDetailsSideNav .offcanvas-body h3 {
  cursor: pointer;
}
#nodeDetailsSideNav .offcanvas-body .content-item {
  display: block;
  color: #AAA;
  font-size: 12px;
}
#nodeDetailsSideNav .offcanvas-body .content-item-value {
  font-size: 14px;
}
#nodeDetailsSideNav .info-tip {
  background-color: #EEE;
  padding: 10px;
}
#nodeDetailsSideNav .info-tip-header {
  font-weight: bold;
}
#nodeDetailsSideNav .info-tip-header i {
  margin-right: 6px;
}
#nodeDetailsSideNav .focus {
  background-color: transparent;
  padding: 10px 2px;
  line-height: 1.5em;
  text-align: left;
  text-transform: uppercase;
}
#nodeDetailsSideNav .focus span {
  position: relative;
  top: -1px;
}

.place-header {
  margin: -1rem -1rem 0 -1rem;
  padding: 10px;
}
.place-header img, .place-header i {
  border-radius: 50%;
  height: 80px;
  max-height: 80px;
  width: 80px;
  font-size: 80px;
}
.place-header i {
  position: relative;
  top: -17px;
}

#placementTable {
  max-height: 300px;
  padding-top: 25px;
}

#selectionMsg {
  padding-top: 25px;
}

.filter-toolbar {
  background-color: #FFF;
  min-height: 64px;
  font-size: 14px;
  overflow: visible;
  z-index: 1;
}
.filter-toolbar > div {
  margin: 0 12px;
}
.filter-toolbar .btn-icon {
  color: rgba(0, 0, 0, 0.54);
}
.filter-toolbar-desktop, .filter-toolbar-mobile {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  min-height: 64px;
  transform: translateX(0);
  transition: transform 300ms;
}
.filter-toolbar-desktop.ng-hide {
  transform: translateX(-100%);
}
.filter-toolbar-mobile.ng-hide {
  transform: translateX(100%);
}

/*.md-virtual-repeat-container.md-autocomplete-suggestions-container {
    max-height: 217px !important;
}*/
.zoom {
  width: 400px;
  padding: 0 20px;
}
.zoom input {
  margin: 0 20px;
}
.zoom i {
  color: #CCC;
}

#showCustomersMenu li, #showCustomersMenu li input, #showCustomersMenu li div {
  cursor: pointer;
}

#relBottom {
  bottom: 0;
  height: auto;
  max-height: 60px;
  position: absolute;
  width: 100%;
  z-index: 100;
  -webkit-transition: 0.6s all;
  -moz-transition: 0.6s all;
  transition: 0.6s all;
}
#relBottom.expanded {
  max-height: 500px;
}
#relBottom nav {
  font-size: 20px;
  height: 60px;
  color: rgb(255, 255, 255);
  padding: 11px 0 11px 20px;
}
#relBottom nav h3, #relBottom nav h4 {
  margin: 0;
}
#relBottom nav button {
  color: rgb(255, 255, 255);
  -webkit-transition: 0.6s all;
  -moz-transition: 0.6s all;
  transition: 0.6s all;
  cursor: pointer;
  margin-right: 20px;
  opacity: 1;
}
#relBottom nav button.detail-expanded {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
#relBottom nav.inactive {
  background-color: #d6d6d6;
}
#relBottom .content {
  background-color: #fff;
  overflow-y: scroll;
}
#relBottom .content section {
  padding: 10px 0;
}
#relBottom .content .list {
  margin: 20px;
}
#relBottom .content .list-item {
  cursor: pointer;
}
#relBottom .content .focus {
  background-color: transparent;
  padding: 10px;
  text-transform: uppercase;
}

#relSide {
  -webkit-box-shadow: -1px 0 4px -1px rgba(0, 0, 0, 0.54);
  -moz-box-shadow: -1px 0 4px -1px rgba(0, 0, 0, 0.54);
  box-shadow: -1px 0 4px -1px rgba(0, 0, 0, 0.54);
  overflow-x: hidden;
  position: absolute;
  max-width: 230px;
}
#relSide .offcanvas-body .list {
  margin: 20px 0;
}
#relSide .offcanvas-body .list-item {
  cursor: pointer;
}
#relSide .offcanvas-body .focus {
  background-color: transparent;
  padding: 10px 2px;
  line-height: 1.5em;
  text-align: left;
  text-transform: uppercase;
}

/*Navigation*/
.navbar {
  background-color: #fff;
  height: var(--nav-height);
  z-index: 1030;
}
.navbar-header .form-control:focus {
  box-shadow: 0 1px 1px 0 rgba(65, 69, 73, 0.3), 0 1px 3px 1px rgba(65, 69, 78, 0.1);
  border-color: #000;
}

.navbar > .container-fluid {
  justify-content: flex-start;
}

/* Child Styles (Deep) */
/* Side Navigation */
.side-nav {
  width: calc(100vw - var(--sidenav-max) / 2);
  min-width: var(--sidenav-max);
  z-index: 1050;
  transition: all 0.4s;
  transition-timing-function: cubic-bezier(0.6, 0, 0.2, 1.2);
}
.side-nav-left {
  max-width: var(--sidenav-max);
  left: calc(-100vw + var(--sidenav-max) / 2);
  background-color: rgb(var(--main-backgroundcolor)) !important;
}
.side-nav-right {
  right: calc(-100vw + var(--sidenav-max) / 2);
  background-color: var(--body-backgroundcolor) !important;
}
.side-nav-right .menu-item {
  color: var(--main-fontcolor);
  font-weight: 500;
}
.side-nav hr {
  height: 0.5px;
  color: var(--main-fontcolor);
}

/* Menu */
.menu-folder {
  transition: all 0.4s;
  position: relative;
}
.menu-folder:after {
  content: "\f282";
  display: inline-block;
  font: 14px/1 "bootstrap-icons";
  text-rendering: auto;
  margin-right: 19px;
  transition: all 0.4s;
}
.menu-folder:not(.collapsed):after {
  transform: rotate(180deg);
}
.menu-folder:hover {
  left: 0;
}
.menu-sub {
  flex-direction: column;
  height: 0;
  transition: all 0.4s;
}
.menu-sub.show {
  display: block;
  height: auto;
}
.menu-link {
  display: flex;
  align-items: center;
  height: 40px;
  line-height: 1;
  transition: all 0.4s;
  cursor: pointer;
}
.menu-icon {
  fill: #9ca6b0;
  width: 24px;
}

#side-nav-btn {
  display: flex;
  height: var(--nav-height);
  width: var(--nav-height);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: rgb(var(--main-backgroundcolor));
}
#side-nav-btn:hover {
  cursor: pointer;
  background-color: #2a3846;
}

.menu-bg-transition .menu-folder:not(.collapsed) {
  background-image: linear-gradient(to right, #2a3846 50%, var(--theme-color1) 50%);
  background-size: 200% 100%;
  background-position: -100% 0;
}
.menu-bg-transition .menu-link {
  position: relative;
}
.menu-bg-transition .menu-link:hover:before {
  left: 0;
}
.menu-bg-transition .menu-link:before {
  content: "";
  background-color: var(--theme-color1);
  height: 100%;
  width: 4px;
  position: absolute;
  left: -4px;
  top: 0;
  transition: all 0.4s;
}

.menu-link {
  color: var(--sidenav-fontcolor);
}
.menu-link:hover {
  color: white;
  background-color: #2a3846;
}

.profile-nav ul.dropdown-menu {
  display: block !important;
  transition: all 0.3s;
  opacity: 0;
  transform: scale(0.1);
  right: -90px;
  left: auto;
  top: -30px;
}
.profile-nav ul.dropdown-menu.show {
  opacity: 1;
  transform: scale(1);
  top: 100%;
  right: 0;
}
.profile-nav .dropdown-item {
  display: flex;
  align-items: center;
  padding: 5px 0;
  color: var(--main-fontcolor);
  font-weight: 400;
}
.profile-nav .dropdown-item:hover {
  text-decoration: none;
}
.profile-nav button {
  font-weight: 500;
  color: var(--main-fontcolor) !important;
}

/*Shopping*/
#review-view .title {
  font-size: 1.5rem;
}
#review-view .edit-address,
#review-view .edit-shipMethod,
#review-view .edit-payment,
#review-view .edit-ao,
#review-view .edit-aod {
  font-size: 1rem;
  cursor: pointer;
  float: right;
}
#review-view .card-number-display,
#review-view .ship-method-display {
  font-size: 1.25rem;
}
#review-view .terms-agree {
  font-size: 0.75rem;
  border-bottom: 1px solid #dee2e6;
}
#review-view .review-ordertotal span {
  font-size: 1.5rem;
}
#review-view .review-change-address,
#review-view .review-change-payment,
#review-view .review-change-method,
#review-view .review-cancel-shipmethod-update,
#review-view .review-cancel-payment-update,
#review-view .review-cancel-address-update,
#review-view .review-method-change {
  cursor: pointer;
}
#review-view .review-change-address:hover,
#review-view .review-change-payment:hover,
#review-view .review-change-method:hover,
#review-view .review-cancel-shipmethod-update span:hover,
#review-view .review-cancel-payment-update span:hover,
#review-view .review-cancel-address-update span:hover {
  font-weight: bold;
}
#review-view .new-address-choice {
  cursor: pointer;
}
#review-view .review-img {
  position: relative;
}
#review-view .review-img span {
  position: absolute;
  right: 0.5rem;
  padding: 2px 12px;
  background-color: yellow;
  border-radius: 50rem;
}
#review-view .labl {
  display: block;
}
#review-view .labl > input { /* HIDE RADIO */
  visibility: hidden; /* Makes input not-clickable */
  position: absolute; /* Remove input from document flow */
}
#review-view .labl > input + div { /* DIV STYLES */
  cursor: pointer;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
#review-view .labl > input:checked + div { /* (RADIO CHECKED) DIV STYLES */
  border: 3px solid #000;
}
#review-view .new-card-trigger, #review-view .new-card-cancel {
  margin: 0.5rem 0.5rem 1rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  cursor: pointer;
}
#review-view .new-card-trigger:hover, #review-view .new-card-cancel:hover {
  text-decoration: underline;
}
#review-view label {
  display: block;
  border-radius: 5px;
  padding-left: 0.5rem;
}
#review-view label.active {
  background-color: #FBF5EF;
  border: 1px solid #F5D9B8;
}
#review-view label input {
  vertical-align: middle;
}
#review-view td.ui-datepicker-week-end {
  visibility: hidden;
}

#item-detail-view .img-content > img {
  margin: auto;
  overflow: hidden;
}
#item-detail-view .img-content .images-container .images {
  text-align: center;
  cursor: pointer;
  max-width: 6.5rem;
  margin: 0 0.5rem;
}
#item-detail-view .img-content .images-container .images.active {
  border: 1px solid blue;
  padding: 0.5rem;
}
#item-detail-view select {
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  border: none;
  font-size: 1.25rem;
}
#item-detail-view select:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}
#item-detail-view select:disabled {
  background-color: white !important;
  background-image: none;
}
#item-detail-view #dynamic-kit-modal select {
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  min-width: 350px;
}
#item-detail-view .item-shortdetail {
  display: flex;
  flex: 1 1 20em;
}
#item-detail-view .buton-holder a {
  padding: 1rem 0.75rem;
}
#item-detail-view .labl {
  display: block;
}
#item-detail-view .labl > input { /* HIDE RADIO */
  visibility: hidden; /* Makes input not-clickable */
  position: absolute; /* Remove input from document flow */
}
#item-detail-view .labl > input + div { /* DIV STYLES */
  cursor: pointer;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
#item-detail-view .labl > input:checked + div { /* (RADIO CHECKED) DIV STYLES */
  border: 3px solid #000;
}
#item-detail-view p.detail-item-price,
#item-detail-view p.detail-item-aoprice {
  font-size: 1.25rem;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
}

#shopping_cart .offcanvas-end {
  width: 27rem;
}
#shopping_cart .offcanvas-end a {
  text-decoration: none;
}
#shopping_cart .top-cart-container .top-cart-header {
  height: 3.25rem;
}
#shopping_cart .cart-item-description a {
  font-size: 12px;
}
#shopping_cart .top-cart-item-image img {
  width: 60px;
}
#shopping_cart .offcanvas-footer {
  height: 175px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}
#shopping_cart .offcanvas-footer a {
  width: 80%;
}
#shopping_cart .sc-title {
  text-transform: uppercase;
  text-align: center;
  background-color: rgb(212, 212, 212);
  padding: 0.25rem;
  justify-content: center;
  font-weight: 700;
}
#shopping_cart .cart-item-quantity-control {
  height: 3.75rem;
}
#shopping_cart .cart-item-quantity-control .quantity-select {
  line-height: 3.75rem;
  vertical-align: middle;
}
#shopping_cart .bi {
  font-size: 12rem;
}

.top-cart-container {
  background-color: #FFF;
}
.top-cart-container .top-cart-header {
  height: 3.25rem;
}
.top-cart-container .top-cart-item-image img {
  width: 60px;
}
.top-cart-container .shopping_cart_body {
  margin-bottom: 175px;
}
.top-cart-container .sc-title {
  text-transform: uppercase;
  text-align: center;
  background-color: rgb(212, 212, 212);
  padding: 0.25rem;
  justify-content: center;
  font-weight: 700;
}
.top-cart-container .cart-item-quantity-control {
  height: 3.75rem;
}
.top-cart-container .cart-item-quantity-control .quantity-select {
  line-height: 3.75rem;
  vertical-align: middle;
}

.item-card .card {
  border-radius: 0 !important;
}
.item-card .card img {
  max-height: 18.175rem;
  max-width: 18.175rem;
  width: auto;
  height: auto;
  margin: auto;
}
.item-card .accordion-button {
  width: unset;
  background-color: unset;
}
.item-card .btn-link {
  text-decoration: none;
  color: #555;
  text-transform: uppercase;
  white-space: nowrap;
}
.item-card .btn-link:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.item-card .card-footer {
  background-color: white;
  height: 3.5rem;
}

#itemlist {
  max-width: 100rem;
  margin: auto;
  min-height: 100dvh;
}
#itemlist .accordion-item {
  background-color: inherit;
  border: 0;
}
#itemlist .accordion-button {
  width: unset;
  background-color: unset;
  border-bottom: 0 !important;
  color: #555;
  font-size: 1.25rem;
  font-weight: 600;
}
#itemlist .accordion-button:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
#itemlist .accordion-button::after, #itemlist .accordion-button:not(.collapsed)::after {
  margin-left: 0.5rem;
  color: #555 !important;
}
#itemlist .shopping_cart_body {
  overflow-y: auto;
  overflow-x: hidden;
}

/*Shopping Header*/
.shopping-header {
  background-color: rgb(var(--main-backgroundcolor));
  min-height: 5rem;
  color: white;
}
.shopping-header a {
  display: block;
  font-size: 1rem;
  padding: 0 0.75rem;
  line-height: 3.25rem;
  vertical-align: middle;
}
.shopping-header a:hover {
  text-decoration: none !important;
}
.shopping-header .row, .shopping-header [class^=col] {
  height: inherit;
}
.shopping-header h3, .shopping-header i {
  line-height: inherit;
  vertical-align: middle;
}
.shopping-header i {
  font-size: 2rem;
  cursor: pointer;
}
.shopping-header .shopping-drop-down .btn {
  font-size: 1.25rem;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
}
.shopping-header .shopping-drop-down .dropdown-menu {
  padding: 0;
}
.shopping-header .shopping-drop-down .dropdown-menu li, .shopping-header .shopping-drop-down .dropdown-menu a {
  cursor: pointer;
}
.shopping-header .shopping-drop-down .dropdown-menu li.slcted, .shopping-header .shopping-drop-down .dropdown-menu li:hover, .shopping-header .shopping-drop-down .dropdown-menu a.slcted, .shopping-header .shopping-drop-down .dropdown-menu a:hover {
  background-color: #ededed;
}

/*Parties*/
#parties-container .modal-content {
  overflow-y: auto;
}

#party-details-container #guest-list {
  max-height: 217px;
  overflow-y: auto;
}
#party-details-container #kpi-container {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
  overflow-x: auto;
}
#party-details-container .modal-content {
  overflow-y: auto;
}

.rewards-container .col-12 {
  max-height: 250px;
  overflow-y: auto;
}

#search-results {
  max-height: 125px;
}

#clear-search {
  position: absolute;
  top: 6px;
  right: 13px;
}

#loading-search {
  position: absolute;
  top: 5px;
  right: 14px;
  height: 20px;
  width: 20px;
}

/*Calendar*/
#calendar-page-container {
  padding: 30px 20px 20px;
}
#calendar-page-container a {
  text-decoration: none;
}
#calendar-page-container a.btn {
  border-radius: 0;
}
#calendar-page-container #event-color-box {
  width: 18px;
  height: 18px;
  border: 1px solid gray;
}
#calendar-page-container #event-event-type {
  margin-top: -2px;
}
#calendar-page-container #event-date-recurrence:first-letter {
  text-transform: capitalize;
}
#calendar-page-container .f-s-22 {
  font-size: 22px;
  line-height: 22px;
}
#calendar-page-container .fc .fc-toolbar button {
  text-transform: capitalize;
}
#calendar-page-container .fc .fc-toolbar.fc-header-toolbar {
  margin-bottom: 0;
  align-content: flex-end;
  flex-wrap: wrap;
  color: white;
  height: 200px;
  z-index: 1;
  text-transform: uppercase;
  background-color: gray;
  background-repeat: no-repeat;
  background-position: inherit;
  background-size: 100% 100%;
}
#calendar-page-container .fc .fc-toolbar.fc-header-toolbar:before {
  content: "";
  height: 50px;
  width: 100%;
  background: rgba(0, 0, 0, 0.36);
  position: relative;
  top: 50px;
  z-index: -1;
}
#calendar-page-container .fc .fc-button {
  background-color: transparent;
  border-color: transparent;
  border-radius: 0;
  color: white;
  height: 50px;
}
#calendar-page-container .fc .fc-daygrid-day-top {
  display: flex;
  flex-direction: inherit;
}
#calendar-page-container .fc-daygrid-event {
  border-radius: 0;
}
#calendar-page-container .event-container-item {
  background-color: #364150;
  color: white;
  padding: 8px;
  margin-bottom: 4px;
}
#calendar-page-container .fc-toolbar-title {
  display: inline-block;
}

#calendar-subscriptions-container #find-customer-results-col {
  z-index: 10;
}
#calendar-subscriptions-container #other-calendars-row {
  max-height: 280px;
  overflow-y: auto;
}
#calendar-subscriptions-container .card .bi {
  color: inherit;
}
#calendar-subscriptions-container .modal-content {
  overflow-y: auto;
}

#calendar-event-legend-container .card .bi {
  color: inherit;
}

/*Chat*/
.msgBubble {
  border-radius: 3px;
  box-shadow: 0 3px 3px hsla(0deg, 0%, 0%, 0.2);
  padding: 10px;
}
.msgBubble:before, .msgBubble:after {
  content: "";
  height: 12px;
  width: 12px;
  position: absolute;
  top: 0;
  transform: skew(45deg, 0deg);
  z-index: -1;
}
.msgBubble:before {
  z-index: 1;
}
.flex-row .msgBubble {
  border-top-left-radius: 0;
  margin-left: 10px;
  word-break: break-word;
}
.flex-row .msgBubble:before, .flex-row .msgBubble:after {
  left: -6px;
  box-shadow: -4px 6px 3px hsla(0deg, 0%, 0%, 0.2);
}
.flex-row .msgBubble:before {
  box-shadow: none;
}
.flex-row-reverse .msgBubble {
  border-top-right-radius: 0;
  margin-right: 10px;
  word-break: break-word;
}
.flex-row-reverse .msgBubble:before, .flex-row-reverse .msgBubble:after {
  right: -6px;
  transform: skew(-45deg, 0deg);
  box-shadow: 4px 6px 3px hsla(0deg, 0%, 0%, 0.2);
}
.flex-row-reverse .msgBubble:before {
  box-shadow: none;
}

.convo {
  cursor: pointer;
  max-height: 65px;
}
.convo:hover {
  background-color: hsl(0deg, 0%, 97%);
}
.convo img {
  height: 40px;
  width: 40px;
}
.convo .bi-person-circle {
  font-size: 40px;
  position: relative;
  top: -10px;
}
.convo .lastMessage {
  max-width: 280px;
}

.participant:hover {
  background-color: hsl(0deg, 0%, 97%);
}
.participant:hover .partDeleteBtn {
  display: block;
}

.partDeleteBtn {
  display: none;
}

/*Profile Settings*/
#profile-settings input[readonly] {
  border: none;
}
#profile-settings .profile-btn-toggle:not(.collapsed) {
  display: none;
}
#profile-settings .collapsing {
  transition: height 0s;
}
#profile-settings .form-control {
  width: 50%;
}
#profile-settings .form-control.show {
  display: inline;
}
#profile-settings .form-control:focus {
  box-shadow: none;
  color: none;
  border-color: none;
  outline: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes ExpandOut {
  from {
    width: var(--sidenav-min);
  }
  to {
    width: var(--sidenav-max);
  }
}
@keyframes ExpandIn {
  from {
    width: var(--sidenav-max);
  }
  to {
    width: var(--sidenav-min);
  }
}
@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}
@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}
@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}
/* Transitions */
.transition-scale > * {
  transition: opacity 0.8s, transform 0.25s;
  opacity: 0;
  transform: scale(0);
}
.transition-scale > .show {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}

.menu-icon-transform {
  transition: all 0.3s;
}
.show .menu-icon-transform, .menu-link:not(.collapsed) .menu-icon-transform {
  transform: rotateZ(180deg);
}

.transition-scale .collapsing {
  transition: height 0s;
}

.transition-scale .collapse:not(.show) {
  display: flex;
}

.transition-scale-badge .badge {
  transition: font-size 0.04s linear;
  font-size: 5px;
}
.transition-scale-badge .badge span {
  opacity: 0;
}
.transition-scale-badge:hover .badge {
  font-size: var(--bs-badge-font-size);
}
.transition-scale-badge:hover .badge span {
  opacity: 1;
}

.transition-collapse-icon .bi:before {
  transition: all 0.3s;
}
.transition-collapse-icon.collapsed .bi:before {
  transform: rotateZ(180deg);
}

.transition-place-holder {
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px;
  pointer-events: none;
  font-size: 1em;
  color: gray;
  text-transform: uppercase;
  transition: 0.5s;
}
input:is(:not(:placeholder-shown), :focus) ~ .transition-place-holder, select ~ .transition-place-holder {
  transform: translateX(10px) translateY(-7px);
  font-size: 0.65em;
  padding: 0 10px;
  background: #fff;
  color: #212529;
}

.grid.transition-scale > * {
  transition: opacity 0s, transform 0.25s;
}

/* DataTables CSS overrides */
table.dataTable > tbody > tr.selected > td.select-checkbox:after,
table.dataTable > tbody > tr.selected > th.select-checkbox:after {
  color: white;
  margin-top: -27px;
}

.text-truncate-clamp {
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.loading-skeleton h1,
.loading-skeleton h2,
.loading-skeleton h3,
.loading-skeleton h4,
.loading-skeleton h5,
.loading-skeleton h6,
.loading-skeleton p,
.loading-skeleton li,
.loading-skeleton .btn,
.loading-skeleton label,
.loading-skeleton span,
.loading-skeleton text,
.loading-skeleton small,
.loading-skeleton select,
.loading-skeleton a,
.loading-skeleton .form-control {
  color: transparent;
  appearance: none;
  -webkit-appearance: none;
  background-color: #B7B7B7;
  border-color: #eee;
}

.loading-skeleton h1::placeholder,
.loading-skeleton h2::placeholder,
.loading-skeleton h3::placeholder,
.loading-skeleton h4::placeholder,
.loading-skeleton h5::placeholder,
.loading-skeleton h6::placeholder,
.loading-skeleton p::placeholder,
.loading-skeleton li::placeholder,
.loading-skeleton .btn::placeholder,
.loading-skeleton label::placeholder,
.loading-skeleton span::placeholder,
.loading-skeleton text::placeholder,
.loading-skeleton small::placeholder,
.loading-skeleton select::placeholder,
.loading-skeleton a::placeholder,
.loading-skeleton .form-control::placeholder {
  color: transparent;
}

@keyframes loading-skeleton {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.loading-skeleton {
  pointer-events: none;
  animation: loading-skeleton 1s infinite alternate;
}

.loading-skeleton img {
  filter: grayscale(100) contrast(0%) brightness(1.8);
}

#filter-toolbar__search-menu {
  background-color: white;
  padding-left: 1em;
  max-height: 250px;
  overflow: auto;
  width: 300px;
}

#filter-toolbar__search-results {
  list-style: none;
  padding-left: 0;
  padding-top: 10px;
}

#filter-toolbar__search-results li {
  height: 1.5em;
  font-weight: 500;
}

.filter-toolbar__search {
  margin-top: 14px;
}

#waiting-room {
  width: 300px;
  z-index: 1;
  background-color: white;
  max-height: 600px;
  overflow: auto;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
#waiting-room ul {
  list-style: none;
}
#waiting-room ul li {
  margin-bottom: 2px;
  cursor: pointer;
}

#filterBar {
  z-index: 2 !important;
}

#modal-toastr-container {
  z-index: 9;
}
#modal-toastr-container .toast {
  background-color: white;
}
@media (max-width: 767px) {
  #modal-toastr-container {
    margin-top: 1.5em;
  }
}

.sandbox-alert {
  position: fixed;
  margin: 0;
  z-index: 9999999;
  bottom: 0;
}

@media only screen and (max-width: 768px) {
  .alert-padding {
    padding-bottom: 25px;
  }
}
