@import url("https://fonts.googleapis.com/css?family=Open+Sans:300");

.title-bar {
  background: #404040;
  position: relative;
  z-index: 99999;
}

.title-bar::before {
  position: absolute;
  top: 4px;
  content: "";
  display: block;
  width: 100%;
  height: 26px;
  -webkit-app-region: drag;
  -webkit-user-select: none;
}

.window-controls {
  width: 90px;
  float: right;
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.window-min,
.window-max,
.window-close {
  position: relative;
  height: 30px;
  width: 30px;
  color: #fff;
  cursor: pointer;
  background: #333;
  -webkit-app-region: no-drag;
}

.window-close:hover {
  background: #d00;
}

.window-min:hover,
.window-max:hover {
  background: #777;
}

.window-max::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  background: 0;
  border: 1px solid #fff;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}

.window-close::after {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 15px;
  transform: rotate(45deg);
  background: #fff;
  top: calc(50% - 7.5px);
  left: calc(50% - 1px);
}

.window-close::before {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 15px;
  transform: rotate(-45deg);
  background: #fff;
  top: calc(50% - 7.5px);
  left: calc(50% - 1px);
}

.window-min::after {
  position: absolute;
  display: block;
  content: "";
  width: 12px;
  height: 2px;
  background: #aaa;
  top: calc(50% + 4px);
  left: calc(50% - 6px);
}

.window-title {
  position: absolute;
  display: block;
  color: #fff;
  left: 0;
  right: 0;
  top: 2px;
  text-align: center;
}

body .toast-top-right {
  top: 30px;
  right: 0px;
}

#dev-tools-container {
  /* -webkit-app-region: drag; */
}

/* Allow window to be moved around by dragging element */
#app-header {
  -webkit-app-region: drag;
  -webkit-user-select: none;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  /* -webkit-app-region: drag; */
}

.grid-container {
  display: flex;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.logo {
  grid-area: logo;
  background-color: #000541;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo__img {
  width: 60%;
}

.sidenav {
  grid-area: sidenav;
  background-image: linear-gradient(to right, #000539, #020d72);
  cursor: pointer;
  overflow-y: auto;
  /* z-index: 99; */
}

.sidenav__list {
  flex-direction: column;
  padding-left: 0;
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
}

.sidenav__list div {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 16%;
  /* padding: 20px 0; */
}

.sidenav__list div:hover {
  background-color: #2c384e;
}

.header {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: start;
  border-bottom: 3px solid #ededed;
}

.header__title {
  padding-left: 24px;
  font-family: "Futura PT Book";
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.menubar {
  grid-area: menubar;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: end;
  color: #000000;
}

.menubar__button {
  width: 93px;
  height: 32px;
  border-radius: 20px;
  border: 1px #0091ff solid;
  background-color: #ffffff;
  color: #0091ff;
  font-family: "Futura PT Book";
  margin-right: 16px;
  position: relative;
}

.arrow-right {
  border: solid #0091ff 1px;
  border-width: 0 1px 1px 0;
  display: inline-block;
  margin: 0 0 4px 8px;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.menubar__button:hover {
  width: 93px;
  height: 32px;
  border-radius: 20px;
  border: 1px #ffffff solid;
  background-color: #0091ff;
  color: #ffffff;
  font-family: "Futura PT Book";
  margin-right: 16px;
}

.menubar__button:hover .arrow-right {
  border: solid #ffffff 1px;
  border-width: 0 1px 1px 0;
  display: inline-block;
  margin: 0 0 8px 8px;
  padding: 3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.content {
  margin: 0;
  width: 100%;
  background: rgb(var(--page-bg));
  ;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.content.no-bg-color {
  background: none;
}

.content>.dsh-global {
  overflow: hidden;
}

.vert-center-row {}

.drawer {
  position: relative;
}

.drawer:hover .drawer-menu,
.drawer:hover .menubar__drawer__menu {
  visibility: visible;
}

.drawer {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(var(--company-darker)) 50%);
  background-position: -0% 0%;
  background-size: 200% auto;
  text-decoration: none;
  transition: background-position 0.2s ease-out;
}

.drawer:hover {
  background-position: -99.99% 0;
}

.drawer-menu {
  display: block;
  position: fixed;
  z-index: 100;
  left: 150px;
  font-size: 24px;
  color: #999999;
  background-color: #ffffff;
  width: max-content;
  margin-top: -2vh;
  box-shadow: 0 0 8px rgb(0, 0, 0, 0.3);
  visibility: hidden;
  transition: 0.4s;
}

.drawer-menu a:link,
.drawer-menu a:visited,
.drawer-menu a:active {
  color: #999999;
  text-decoration: none;
}

.drawer-menu a:hover {
  color: #ffffff;
}

.drawer-menu li {
  padding: 0 16px;
  font-family: "Futura PT";
  text-transform: uppercase;
  border-bottom: solid 2px #999999;
}

.drawer-menu li a {
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.drawer-menu li:hover a {
  color: #ffffff;
}

.drawer-menu li:hover {
  color: #ffffff;
  background-color: #999999;
}

.menubar__drawer__menu {
  display: block;
  position: absolute;
  z-index: 100;
  left: 0px;
  top: 100%;
  /* font-size: 24px; */
  font-size: 20px;
  color: #999999;
  background-color: #ffffff;
  width: max-content;
  /* margin-top: -2vh; */
  box-shadow: 0 0 8px rgb(0, 0, 0, 0.3);
  visibility: hidden;
  transition: 0.4s;
}

.menubar__drawer__menu__right {
  left: unset;
  right: 0px;
}

.menubar__drawer__menu a:link,
.menubar__drawer__menu a:visited,
.menubar__drawer__menu a:active {
  color: #999999;
  text-decoration: none;
}

.menubar__drawer__menu li a {
  margin: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.menubar__drawer__menu a:hover {
  color: #ffffff;
}

.menubar__drawer__menu li {
  text-align: start;
  padding: 0 16px;
  font-family: "Futura PT";
  text-transform: uppercase;
  border-bottom: solid 2px #999999;
}

.menubar__drawer__menu li:hover a {
  color: #ffffff;
}

.menubar__drawer__menu li:hover {
  color: #ffffff;
  background-color: #999999;
}

.profile-img {
  border-radius: 50%;
}

.comment-loader {
  border: 0.5em solid #f3f3f3;
  /* Light grey */
  border-top: 0.5em solid #3498db;
  /* Blue */
  border-radius: 50%;
  width: 1.8em;
  height: 1.8em;
  animation: spin 2s linear infinite;
  float: left;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Loader */
.loader {
  /*border: 16px solid #f3f3f3;*/
  /* Light grey */
  /*border-top: 16px solid #3498db;*/
  /* Blue */
  /*border-radius: 50%;*/
  width: 300px;
  height: 300px;
  position: fixed;
  top: 30%;
  left: 0;
  right: 0;
  z-index: 999999999999;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
  animation: fade 2s alternate infinite;
}

.absolute {
  position: absolute;
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 99998;
  top: 0;
  left: 0;
  position: fixed;
}

[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  display: none !important;
}

.nav-header {
  display: flex;
  flex: 0;
  padding: 8px;
  background-color: #3f51b5;
}

.nav-header-left {
  display: flex;
  margin: 0 0 0 24px;
  width: 50%;
  justify-content: flex-start;
}

.nav-header-right {
  display: flex;
  margin: 0 16px 0 0;
  width: 100%;
  justify-content: flex-end;
}

.nav-header-right li {
  margin: 0 16px;
}

.nav-header-right li a {
  color: #000541;
}

.center {
  text-align: center;
}

.clear {
  width: 100%;
  height: 20px;
}

#view {
  background: #f7f7f7;
  padding-right: 0px;
}

#view.other {
  margin-top: 0;
  background: none;
}

#view.main {
  width: 100%;
  height: 95%;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
  align-items: center;
  color: black;
}

#view.main::-webkit-scrollbar-track {}

#view.main::-webkit-scrollbar-thumb {}

body.main-bg {
  background-image: url('/img/background-main.png');
  background-position: center;
  background-size: cover;
}

.main-bg-center {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul {
  padding-left: 0;
}

ul li {
  list-style-type: none;
}

.logout-button {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #337ab7;
}

/* Pagination */

.pagination>li>a,
.pagination>li>span {
  padding: 3px;
  background-color: transparent;
  border: none;
  color: #363636;
}

.pagination>li>a:hover {
  color: #0192d8;
}

/* Loading */

.loading-text {
  position: absolute;
  font-size: 30px;
  top: calc(50% + 20px);
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #d3d3d3;
  z-index: 99;
  height: auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  overflow: scroll;
  top: 0;
}

.loading-buttons {
  position: absolute;
  font-size: 30px;
  top: 0px;
  right: 0px;
  left: 0;
  margin: auto;
  text-align: center;
  color: #fff;
  z-index: 100;
  height: auto;
  padding: 20px;
}

.finish-button {
  position: absolute;
  font-size: 30px;
  margin: auto;
  text-align: center;
  color: #fff;
  z-index: 999999999999999999999999999;
  height: auto;
  background: #000;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  top: 20px;
  right: 20px;
  width: 300px;
  cursor: pointer;
}

.finish-button:hover {
  color: green;
  font-weight: bold;
}

.loading-text-left {
  float: left;
  color: red;
  width: 49%;
  text-align: left;
  padding-left: 20px;
  max-height: 550px;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5) !important;
}

.loading-text-right {
  float: right;
  color: green;
  width: 49%;
  text-align: right;
  padding-right: 20px;
  max-height: 550px;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.5) !important;
}

.loading-text .subtext {
  font-size: 12px;
  color: #fff;
}

.closing-x {
  position: absolute;
  right: 20px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.custom-modal {
  position: fixed;
  margin: auto;
  width: 1000px;
  height: 500px;
  padding: 20px;
  z-index: 999999999999999;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  top: 20px;
  left: 0;
  right: 0;
  transition: all 0.7s ease;
}

.edit-match-status,
.edit-match-status-break {
  /*display: none !important;*/
}

.candidate-block:hover .edit-match-status-break {
  /*display: block !important;*/
}

.candidate-block:hover .edit-match-status {
  /*display: inline-block !important;*/
}

.tiny-btn {
  padding: 3px 8px !important;
}

.ta-editor {
  min-height: 150px !important;
  height: auto !important;
  padding-top: 15px !important;
}

.drop-highlight {
  background: rgba(0, 0, 0, 0.3);
}

.relevant-row {
  background: #7cfc00;
  color: #000;
}

.payperiod-row {
  font-weight: bold;
}

.gray-row {
  background: #e7e7e7;
}

.sort-item {
  width: 100%;
  height: 60px;
  background-color: #2a3f54;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: move;
  padding: 5px 10px;
  margin: 0;
  margin-top: 5px;
  border-width: 2px;
  border-style: solid;
  border-color: rgb(68, 68, 68);
  border-image: initial;
  border-radius: 5px;
}

/**
 * The dnd-list should always have a min-height,
 * otherwise you can't drop to it once it's empty
 */
.simpleDemo ul[dnd-list] {
  min-height: 42px;
  padding-left: 0px;
}

/**
 * The dndDraggingSource class will be applied to
 * the source element of a drag operation. It makes
 * sense to hide it to give the user the feeling
 * that he's actually moving it.
 */
.simpleDemo ul[dnd-list] .dndDraggingSource {
  display: none;
}

/**
 * An element with .dndPlaceholder class will be
 * added to the dnd-list while the user is dragging
 * over it.
 */
.simpleDemo ul[dnd-list] .dndPlaceholder {
  background-color: #ddd;
  display: block;
  min-height: 42px;
}

.simpleDemo ul[dnd-list] li {
  background-color: #fff;
  border: 1px solid #ddd;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
}

/**
 * Show selected elements in green
 */
.simpleDemo ul[dnd-list] li.selected {
  background-color: #dff0d8;
  color: #3c763d;
}

.left_col,
.sidebar-footer,
.nav_title {
  background: #000 !important;
}

.sidebar-footer a {
  background: #b7962c !important;
  color: #000;
}

body .nav.side-menu>li.active>a {
  color: #b7962c !important;
}

.nav.side-menu>li.active,
.nav.side-menu>li.current-page {
  border-right: 5px solid #b7962c !important;
}

button.btn.btn-primary {
  background: #000 !important;
  color: #fff !important;
}

body {
  background: #fff;
}

body .container.body .right_col {
  background: #fff !important;
}

.container {
  max-width: 100%;
}

table.table-hover {
  background: #fdfdfd !important;
}

table.open-table thead:hover {
  background-color: #333 !important;
}

.datetimepicker {
  color: #333;
}

md-tabs {
  width: 100% !important;
}

md-tab-content,
md-tabs-content-wrapper {
  left: initial !important;
  right: initial !important;
}

md-tab-content {
  min-height: 100vh !important;
  max-height: none !important;
  overflow: hidden;
}

.commissions-tab md-tab-content,
.commissions-tab md-tabs {
  height: auto;
  max-height: none;
}

md-tabs-content-wrapper {
  overflow: visible !important;
}

.message-unread {
  background: #b7962c;
  color: #fff;
}

.message-unread a {
  color: #fff !important;
}

.message-unread>a:hover {
  background: #b7962c !important;
}

.notification-dropdown a img {
  margin-right: 10px;
}

.notification-dropdown a {
  padding-left: 0 !important;
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.icon-wrapper {
  position: relative;
  float: left;
}

*.icon-blue {
  color: #0088cc;
}

*.icon-grey {
  color: grey;
}

i {
  width: auto;
  text-align: center;
  vertical-align: middle;
}

.badge {
  background: #b7962c !important;
  border-radius: 50% !important;
  margin: 0;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -9px;
  padding: 3px 6px !important;
  font-size: 9px !important;
  z-index: 1;
}

/*.dropdown-toggle.notification-toggle, .dropdown-toggle.notification-toggle:hover {*/
/*background: transparent !important;*/
/*}*/

#slideoutContainer {
  position: fixed;
  z-index: 999;
  width: 100%;
}

#slideOut {
  position: absolute;
  width: 300px;
  height: 800px;
  top: 30px;
  right: -300px;
  z-index: 9;
  /* Animation  */
  /*transition-property: all;*/
  /*transition-duration: .5s;*/
  /*transition-timing-function: cubic-bezier(0, 1, 0.5, 1);*/
}

/* Display slideOut */

.showSlideOut {
  right: 0px !important;
}

.admin-commission-offset {
  margin-top: -100px;
}

body .nav>li>a:hover {
  background-color: transparent !important;
}

.nav.side-menu>li>a:hover,
.nav>li>a:hover {
  background-color: transparent !important;
}

/* Tab */

.slideOutTab {
  margin-top: 120px;
  position: absolute;
  left: -40px;
  height: 50px;
  width: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  background: #b7962c;
  border-radius: 15px 0px 0px 15px;
}

.slideOutTab div {
  text-align: center;
  position: relative;
  right: 70px;
  top: 12px;
  /*background: #b7962c;*/
  width: 180px;
  cursor: pointer;
  /*-webkit-transform: rotate(270deg);*/
  /*-moz-transform: rotate(270deg);*/
  /*-o-transform: rotate(270deg);*/
  /*writing-mode: lr-tb;*/
}

.nav>li>a:hover {
  background: #d9dee4 !important;
}

.top_nav .dropdown-menu li {
  overflow: hidden;
}

.navbar-nav .open .dropdown-menu {
  max-height: 325px;
  overflow: scroll;
}

.commissions-tab md-tab-content,
.commissions-tab md-tabs {
  min-height: 1600px;
}

#scrollable-area1 {
  height: auto !important;
  overflow-y: inherit !important;
}

/* DRAG/DROP Styles go here */

.lvl-over {
  /* applied to a drop target when a draggable object is over it */
  /*border: 2px dashed black !important;*/
}

.lvl-target {
  /* applied to all drop targets when a drag operation begins, used to indicate drop targets on a page */
  background-color: #ddd;
  opacity: 0.5;
}

[draggable] {
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Required to make elements draggable in old WebKit */
  -khtml-user-drag: element;
  -webkit-user-drag: element;
  cursor: auto;
  /* @NOTE: This was causing black outlines on map can uncomment if needed, but will have to remove map shapes */
  /*border: 1px solid black;*/
}

.peg {
  text-align: center;
  font-weight: bold;
  border: 1px black solid;
  width: 75px;
  margin: 10px;
}

.slot {
  padding: 0.5em;
  height: auto;
  display: inline-block;
  background-color: #0091ff;
  color: black;
}

.col-xs-3 div:last-child .col-xs-12.slot,
.table-tab div:last-child .col-xs-12.slot {
  border-bottom: 1px solid #000;
}

.red {
  background-color: red;
}

.blue {
  background-color: blue;
}

.green {
  background-color: green;
}

.black {
  background-color: black;
  color: white;
}

.grey {
  background-color: grey;
}

pre strong {
  font-size: 12pt;
}

.list-table {
  border: none;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 10px;
  position: relative;
}

.archive-button {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 25px;
  cursor: pointer;
}

.archive-button:hover {
  opacity: 0.5;
}

/* This will disable the panel animation */
md-tabs [role="tabpanel"] {
  transition: none;
}

/* This will disable the `ink-bar` animation (border-bottom of selected tab) */
md-tabs md-ink-bar {
  transition: none;
}

.circle-icon {
  background: #fff;
  width: 100px;
  color: #333;
  text-align: center;
  font-weight: lighter;
  top: 0;
  cursor: default;
}

.card-date {
  margin-left: 1em;
  float: left;
}

.assign-owner-icon {
  margin-left: 0.5em;
  margin-right: 1em;
  margin-bottom: 0.25em;
  width: 2em;
  height: 2em;
  object-fit: cover;
}

.assign-owner-icon:hover {
  cursor: pointer;
  transform: scale(1.3);
}

.ownership-row {
  height: 0.5em;
  margin-right: 1em;
}

.ownership-assignment {
  float: right;
}

.ownership-quickchange-tag {
  float: left;
}

.c2m-filter-container {
  display: inline-block;
}

.c2m-filter {
  display: block;
}

.btn-offer-salary-change {
  font-size: 17px;
  clear: right;
}

.btn-offer-status-change {
  position: relative;
  /* right: -7px; */
  font-size: 17px;
  float: right;
  clear: right;
}

.btn-offer-status-change.row5 {
  font-size: 14px;
}

.panel-title {
  cursor: pointer;
}

.modal-link {
  cursor: pointer;
}

.modal-link:hover {
  color: blue;
}

.modal-link:active {
  color: red;
}

.modal-toolbar {
  background-color: #ffffff;
}

.modal-toolbar-title {
  color: black;
  font-family: "Futura PT";
  font-size: 20px;
  letter-spacing: 1.5px;
}

.modal-toolbar-close {
  color: black;
}

.card-icon {
  cursor: pointer;
  /* margin: 0.3em;
  padding: 0.1em; */
}

.card-icon img {
  float: left;
  /* margin-right: 5px; */
  width: 30px;
  height: 30px;
}

.card-icon:hover {
  transform: scale(1.3);
}

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

h3.table-label {
  padding-bottom: 0;
  margin-bottom: 0;
  background: #333;
  color: #fff;
  padding: 10px;
}

button.change-log-btn {
  float: right;
  margin-top: -9px;
  margin-bottom: 0;
  background: none;
  text-transform: capitalize;
  text-align: right;
  margin-right: 0;
}

button.send-email-btn {
  float: right;
  margin-right: 0px;
  margin-top: -9px;
  height: 20px;
  height: 10px;
  font-size: 13px;
  margin-bottom: 0;
}

body md-checkbox .md-icon {
  height: 15px !important;
  width: 15px !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

body .navbar-default,
body .navbar-default.navbar-default .navbar-nav>.open>a,
body .navbar-default.navbar-default .navbar-nav>.open>a:focus,
body .navbar-default.navbar-default .navbar-nav>.open>a:hover {
  background: rgb(63, 81, 181);
  background-color: rgb(63, 81, 181);
  margin-bottom: 0;
  border-bottom: 1px solid;
  border-color: #e8bd00;
  border-radius: 0;
}

body .navbar {
  border-top: none;
  border-left: none;
  border-right: none;
}

body .navbar-default .navbar-nav>li>a {
  color: #fff;
}

body .navbar-default .navbar-nav>li>a:focus,
body .navbar-default .navbar-nav>li>a:hover,
body .navbar-default .navbar-nav>.open>a,
body .navbar-default .navbar-nav>.open>a:focus,
body .navbar-default .navbar-nav>.open>a:hover {
  opacity: 0.7;
  color: #fff;
}

.main-section {
  z-index: 999;
  float: right;
}

.main-section:first-of-type {
  margin-right: 22px !important;
}

body .panel-heading {
  padding-left: 30px;
  padding-right: 30px;
  border-bottom: none;
  background-image: linear-gradient(180deg, #22A5F0, #1771E6);
}

body #OnlineUsers .panel-primary {
  border-color: transparent;
}

body h2,
body h3 {
  font-size: initial;
}

#c2m-report-container .md-select-value span {
  color: white;
}

.selectedUsersHeader .header-searchbox {
  border: none;
  outline: none;
  height: 100%;
  width: 100%;
  padding: 0;
}

.selectedUsersHeader .select-header {
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.14),
    0 0 0 0 rgba(0, 0, 0, 0.12);
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: auto;
}

.selectedUsersHeader md-content._md {
  max-height: 240px;
}

.like-button img {
  position: absolute;
  left: 0;
  margin-right: 20px;
  transition: opacity 0.5s ease-in-out;
}

.like-button img.image-top:hover {
  opacity: 0;
}

.wall-comment {
  padding: 3px;
  border: #e9ebee solid 3px;
  border-radius: 15px;
}

.error-text {
  color: red;
  font-size: 0.8em;
  text-align: left;
  width: 100%;
}

#archived-search-container {
  display: flex;
  margin-top: 8px;
  align-items: center;
}

.archived-search-item {
  max-width: min-content;
  margin: 8px 16px;
}

.archived-search-item label,
.archived-search-item p {
  margin: 0;
}

.archived-search-item p {
  font-size: smaller;
}

.form-error {
  color: red;
}

.user-management-tabs {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  background: rgb(var(--bg));
  padding: 12px 0;
}

#c2m-action-log {
  overflow-y: hidden;
}

.sticky-container {
  overflow-y: scroll;
}

.sticky-header {
  background: #e0e0e0;
  position: sticky;
  top: -1px;
}

.action-log-tabs>md-tabs-wrapper {
  width: 100%;
  background-color: #5f46c6;
  position: fixed;
}

.action-log-tabs>md-tabs-template>thead {
  position: fixed;
}

.action-log-tabs>md-tabs-wrapper>md-tabs-canvas>md-pagination-wrapper>md-tab-item.md-active {
  color: white;
}

.action-log-tabs>md-tabs-wrapper>md-tabs-canvas>md-pagination-wrapper>md-tab-item {
  color: white;
}

a:hover {
  cursor: pointer;
}

input.hide-arrows::-webkit-outer-spin-button,
input.hide-arrows::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.widget-notifications {
  transition: all linear 0.2s;
  opacity: 1;
  background: #fff;
  overflow: hidden;
  width: 400px;
  position: absolute;
  left: 74px;
  z-index: 999;
  height: auto;
}

.widget-notifications.ng-hide {
  width: 0px;
  overflow: hidden;
  left: 74px;
  background: #fff;
  opacity: 1;
}

.flex-container {
  display: flex;
  justify-content: center;
}

.cloud-tool-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: white;
  align-items: center;
}

/* C2M START */
.card-tool-left {
  padding: 0 8px;
}

.card-tool-center {
  margin: 0 auto;
}

.cloud-tool-right {
  margin-left: auto;
  padding-right: 8px;
  display: inline-flex;
}

.cloud-tool-right>label {
  padding-right: 8px;
}

.pre-c2m-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 1rem;
  grid-template-areas:
    "resume-list pre-c2m-side";
  grid-auto-flow: column;
  overflow-x: auto;
}

.card-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 1rem;
  grid-auto-columns: minmax(400px, 1fr);
  grid-auto-flow: column;
  overflow-x: auto;
}

.card-column {
  flex-direction: column;
  justify-content: center;
  margin: 8px;
  background-color: #eeeff0;
  box-shadow: 0 0 8px rgb(0, 0, 0, 0.3);
  border-radius: 15px;
  height: min-content;
}

.card-column .panel-group:first-child {
  margin-top: 16px;
}

.card-column>.card-column-toolbar {
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  max-height: min-content;
  color: black;
  border-radius: 15px 15px 0 0;
  position: relative;
  z-index: 0;
}

.card-column-toolbar-text {
  letter-spacing: 2px;
  font-family: "Futura PT Book";
  font-size: 22px;
}

.card-column-toolbar-subtext {
  color: #a2a2a2;
  font-size: 17px;
  font-family: "Futura PT Light";
}

.card-column-toolbar-content {
  display: flex;
  width: 99%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-column-content {
  background-color: #eeeff0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 68vh;
  border-radius: 0 0 15px 15px;
  overflow-x: hidden;
  overflow-y: auto;
  /* border-top: 4px solid transparent;
  border-right: 9.5px solid transparent; */
}

.card-column-content .panel-group:first-child {
  margin-top: 16px;
}

.card-column-menu {
  display: flex;
  width: 1%;
  justify-content: flex-end;
  align-self: center;
}

.card {
  min-width: 95%;
  max-width: 95%;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.card-active {
  height: auto;
  display: inline-block;
  background-color: #0091ff;
  color: black;
}

.card-assigned {
  height: auto;
  display: inline-block;
  background-color: #9e005d;
  color: black;
}

/* .card-locked {
  height: auto;
  display: inline-block;
  background-color: dimgray;
  color: black;
} */

.card-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  color: white;
  align-items: center;
  padding: 2px 0 3.5px 0;
  letter-spacing: 0.5px;
}

.card-toolbar-left {
  padding: 0 10px;
}

.card-toolbar-left img {
  margin-right: 8px;
  width: 2rem;
}

.card-toolbar-left img:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.card-toolbar-center {
  margin: 0 auto;
  white-space: nowrap;
}

.card-toolbar-right {
  margin-left: auto;
  padding-right: 8px;
}

.card-toolbar-text {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
}

.card-header {
  background-color: #ffffff;
  border: none;
  border-radius: 0 0 12px 12px;
}

.card-header-attention {
  background-color: rgba(255, 0, 0, 0.2);
  border: none;
  border-radius: 0 0 12px 12px;
}

.card-header-content {
  border-radius: 0 0 12px 12px;
  background-color: #ffffff;
  padding: 10px 8px;
}

.card-header-content-attention {
  border-radius: 0 0 12px 12px;
  background-color: rgba(255, 0, 0, 0.2);
  padding: 10px 8px;
}

.card-header-container {
  cursor: pointer;
}

.card-header-subtext {
  font-size: 12px;
  margin: 0 8px;
}

.card-header-grid {
  display: grid;
  grid-template-columns: 1fr 3fr minmax(100px, 2fr);
  grid-gap: 0.5rem;
  align-items: start;
  /* align-items: center; */
}

.card-header-rank {
  display: flex;
  justify-content: center;
}

.card-header-rank img {
  margin-top: 20px;
  height: 30px;
  /* width: 50%; */
}

.card-header-grid-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.card-header-grid-subtitle {
  font-size: 12px;
}

.card-line {
  margin: 8px;
  border-top: 1px solid #e3e3e3;
}

.card-body-container {
  padding: 15px;
}

.card-body-container>.card-body:nth-child(n + 2) {
  margin-top: 16px;
}

.card-body {
  border-radius: 15px;
  box-shadow: 0 0 8px rgb(0, 0, 0, 0.2);
}

.card-table {
  font-size: 11px;
  margin: 0 auto;
  border-collapse: collapse;
  border-style: hidden;
}

.card-table td {
  padding: 1rem;
  border: 1px solid #e3e3e3;
}

.card-body-row {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  /* margin-top: 8px; */
  margin: 0px;
}

.card-button {
  border-width: 2px;
  border-style: none;
  border-image: initial;
  text-align: center;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 13px;
  background-color: #0091ff;
  color: white;
  border-radius: 8px;
  /* padding: 0 16px; */
  width: fit-content;
  height: 28px;
}

.icon-with-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* padding: 15.5px 0; */
  background-color: #ffffff;
  border-style: none;
  border-radius: 15px;
  box-shadow: 0 0 6px rgb(0, 0, 0, 0.2);
}

.icon-with-button>img {
  margin-right: 1.5rem;
}

.icon-with-button>span {
  font-weight: bolder;
  font-size: 18px;
}

.separator-with-text {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 22px;
  font-weight: bolder;
}

.separator-with-text::before,
.separator-with-text::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #cccccc;
}

.separator-with-text::before {
  margin-right: 0.25em;
}

.separator-with-text::after {
  margin-left: 0.25em;
}

.separator-with-text>span {
  margin: 0 16px;
}

.hyperlink-card-button {
  padding-top: 5px;
}

.card-button:hover {
  text-decoration: none;
  transform: scale(1.2);
}

.health-bar {
  width: 100%;
  height: 75px;
}

.health-percent-text {
  font-family: "Futura PT";
  font-size: 28px;
}

.health-status-text {
  font-family: "Futura PT Book";
  font-size: 12px;
}

/* C2M END */

/* DASH START */

.dash-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 1.5fr 2fr 2fr;
  grid-template-rows: 1fr 2fr;
  grid-template-areas:
    "announcements create-post leaderboard"
    "compensation-tracker wall action-list";
  grid-gap: 2.5rem;
  margin: 0 32px;
  padding: 32px 0;
}

.announcements {
  grid-area: announcements;
  height: 100%;
}

.create-post {
  grid-area: create-post;
  height: 100%;
}

.leaderboard {
  grid-area: leaderboard;
  height: 100%;
}

.compensation-tracker {
  grid-area: compensation-tracker;
  height: 95%;
}

.wall {
  grid-area: wall;
  height: 95%;
}

.action-list {
  grid-area: action-list;
  height: 95%;
}

.dash-card {
  height: 100%;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 8px rgb(0, 0, 0, 0.3);
}

.dash-card>.dash-toolbar {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 15px 15px 0 0;
  height: min-content;
  border-bottom: 2px solid #e1e1e1;
}

.dash-card-footer {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #ffffff;
  border-top: 2px solid #e1e1e1;
  border-radius: 0 0 15px 15px;
}

.dash-card-footer img {
  padding-right: 8px;
}

.dash-card-footer button {
  border: none;
  margin: 0;
  font-family: Futura PT;
  font-size: 16px;
  letter-spacing: 0.5px;
  margin-left: auto;
  background-color: #0091ff;
  color: #ffffff;
  border-radius: 30px;
  padding: 6px 18px;
}

.dash-toolbar-left {
  padding: 0 30px;
}

.dash-toolbar-center {
  margin: 0 auto;
}

.dash-toolbar-right {
  margin-left: auto;
  padding-right: 8px;
}

.dash-toolbar-text {
  letter-spacing: 2px;
  font-family: "Futura PT Book";
  font-size: 24px;
  color: #000000;
}

.announcement-white {
  background-color: #ffffff;
}

.announcement-blue {
  background-color: #e6f4ff;
}

.announcement {
  display: grid;
  grid-template-columns: min-content 1fr min-content;
  color: #000000;
  align-items: center;
  padding: 8px 0 8px 0;
  letter-spacing: 0.5px;
}

.announcement-list {
  height: 21rem;
  overflow-y: auto;
}

.announcement-left {
  display: flex;
  padding: 0 24px;
}

.announcement-center {}

.announcement-right {
  margin-left: auto;
  padding-right: 8px;
}

.announcement-text {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
}

.create-post-textarea {
  width: 100%;
  height: 17rem;
  border: none;
  outline: none;
  resize: none;
}

.clause-text {
  font-size: 9px;
  text-align: center;
  color: red;
  padding-top: 8px;
}

.chart-container {
  display: flex;
  width: 100%;
  height: 22rem;
  align-items: center;
}

body .map-filters {
  background-color: #626fb8;
  justify-content: center;
  min-height: 40px;
  color: #fff;
  position: fixed;
  bottom: 0;
  width: calc(100% - 150px);
  z-index: 9999;
}

.filter-header {
  background: #626fb8;
  padding: 10px;
  color: #fff;
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
}

.filters-container {
  position: absolute;
  bottom: 0px;
  z-index: 999;
}

.filter-container {
  background: transparent;
  float: left;
  padding-top: 10px;
  padding-bottom: 20px;
}

.filter-container>div {
  margin-left: 5px;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  border-radius: 15px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #d1d3d4;
  /* border-radius:15px; */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #a2a2a2;
}

/*
* .electron-in-page-search-window is a class specified to default
* <webview> element for search window.
*/
.electron-in-page-search-window {
  position: fixed;
  top: 0;
  right: 0;
  border: solid grey 1px;
  background-color: white;
  width: 300px;
  height: 36px;
}

/*
* .search-inactive is added to search window <webview> when the window
* is inactive.
*/
.search-inactive {
  visibility: hidden;
}

/*
* .search-inactive is added to search window <webview> when the window
* is active.
*/
.search-active {
  visibility: visible;
}

.electron-in-page-search-window {
  width: 300px;
  height: 36px;
  background-color: white;
}

.electron-in-page-search-window.search-inactive {
  visibility: hidden;
}

.electron-in-page-search-window.search-active {
  visibility: visible;
}

#resume {
  position: fixed;
  margin: auto;
  top: 0;
  z-index: 999999;
  left: 0;
  right: 0;
}

#resume iframe {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  margin: auto;
  top: 0;
}

#closeResume {
  width: 100px;
  padding: 10px 20px;
  position: fixed;
  z-index: 9999999;
  top: 5px;
  left: 20px;
}

md-dialog-content iframe {
  height: 500px !important;
}

.preC2m-card-header {
  border-bottom: 1.5px solid #dddddd;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-family: "Futura PT Book";
  color: #000000;
  letter-spacing: 1.3px;
}

.preC2M-card-table {
  border-style: hidden;
  border-collapse: collapse;
  width: 100%;
}

.preC2M-card-tr:nth-child(even) {
  background-color: #e5f4ff;
}

.preC2M-card-tr:first-child>td {
  border-radius: 15px 15px 0 0;
}

.preC2M-card-td {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

/* Suggested Candidates */

table.no-padding {
  border: none;
}

table.no-padding td {
  padding: 0;
  margin: 0;
  border-left: none;
  padding-left: 20px;
}

table.no-padding td select {
  margin-top: 5px;
}

#suggested-candidates-filters td input {
  padding-left: 5px;
}

#suggested-candidates-filters td input,
#suggested-candidates-filters td select {
  margin-top: 0px;
  color: #000;
  font-size: 12px;
  height: 30px;
  width: 100%;
}

.pdfjs {
  height: 500px !important;
}

.blue-bar {
  flex-wrap: wrap;
}

.blue-bar * {
  white-space: nowrap;
}

.mul-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.mul-tabs {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
}

.mul-tab {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow: auto;
  visibility: hidden;
}

.mul-tab.mul-selected {
  visibility: visible;
}

.mul-progress-back {
  height: 2px;
  background: #aaa;
  width: 100%;
}

.mul-progress-front {
  height: 2px;
  background: #f00;
  position: relative;
}

.mod-backdrop {
  position: fixed;
  background: transparent;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  cursor: default;
}

.mod-backdrop::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  /* font primary*/
  opacity: 0.25;
  cursor: default;
}

.mod-modal {
  position: fixed;
  top: calc(50% + 15px);
  left: 50%;
  transform: translate(-50%, -50%);
}

body .mod-modal {
  cursor: default;
}

.c2m-placement-form {
  height: calc(100% - 69px);
}

/* .c2m-modal {
  background: #fff;
  max-width: 560px;
  width: 100%;
  height: 90vh;
  border-radius: 15px;
  z-index: 2;
} */

.c2m-change-owner {
  background: #fff;
  max-width: 560px;
  width: 100%;
  height: 90vh;
  border-radius: 15px;
  z-index: 2;
  padding: 20px 30px;
}

/* .c2m-modal h1 {
  margin: 0px;
  padding: 15px 30px;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.25em;
  font-family: "Futura PT";
} */

.c2m-modal-section {
  /* overflow: auto; */
  /* height: 100%;
  padding: 0px 30px 30px; */
}

.mod-close {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 9999;
  /* background: #f00; */
}

.mod-close::after {
  display: block;
  content: "";
  width: 2px;
  height: 20px;
  transform: rotate(45deg);
  background: #000;
  position: absolute;
  left: 50%;
}

.mod-close::before {
  display: block;
  content: "";
  width: 2px;
  height: 20px;
  transform: rotate(-45deg);
  background: #000;
  position: absolute;
  left: 50%;
}

.fancy-input-wrapper {
  display: inline-block;
  position: relative;
  padding-top: clamp(12px, 1em, 96px);
  /* min-width: 120 */
  --transition-time: 0.25s;
}

.fancy-input-wrapper::before {
  position: absolute;
  bottom: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  left: 50%;
  background: #000;
  opacity: 0.5;
  transform: translate(-50%, -50%);
}

.fancy-input-wrapper::after {
  position: absolute;
  bottom: 0px;
  content: "";
  display: block;
  width: 0px;
  height: 1px;
  left: 50%;
  background: #0000ff;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width var(--transition-time), opacity var(--transition-time);
}

.fancy-input-wrapper.invalid::after {
  background: #ff0000;
  width: 100%;
  opacity: 1;
}

.fancy-input-wrapper:focus-within::after {
  width: 100%;
  opacity: 1;
}

.fancy-input-wrapper:focus-within label,
.fancy-input-wrapper.has-value label {
  font-size: clamp(12px, 0.75em, 96px);
  top: 0;
  /* bottom: 1.5em; */
}

.fancy-input-wrapper label {
  display: block;
  position: absolute;
  /* position: relative; */
  font-size: clamp(12px, 1em, 96px);
  top: 1em;
  /* bottom: 0px; */
  padding-left: 2px;
  transition: top var(--transition-time), font-size var(--transition-time);
  /* opacity: 0.5; */
  white-space: nowrap;
  margin: 0px;
}

/* input */
.fancy-input-wrapper input,
.fancy-input-wrapper textarea,
.fancy-input-wrapper select {
  border: none;
  outline: none;
  font-size: 1em;
  /* position: relative; */
  background: transparent;
  width: 100%;
}

.fancy-input-wrapper:not(.has-value).fancy-input-wrapper:not(:focus-within) ::-webkit-datetime-edit-text,
.fancy-input-wrapper:not(.has-value).fancy-input-wrapper:not(:focus-within) ::-webkit-datetime-edit-year-field,
.fancy-input-wrapper:not(.has-value).fancy-input-wrapper:not(:focus-within) ::-webkit-datetime-edit-month-field,
.fancy-input-wrapper:not(.has-value).fancy-input-wrapper:not(:focus-within) ::-webkit-datetime-edit-day-field {
  color: transparent;
  transition: color 0s 0s;
}

.fancy-input-wrapper.has-value ::-webkit-datetime-edit-text,
.fancy-input-wrapper.has-value ::-webkit-datetime-edit-year-field,
.fancy-input-wrapper.has-value ::-webkit-datetime-edit-month-field,
.fancy-input-wrapper.has-value ::-webkit-datetime-edit-day-field,
.fancy-input-wrapper:focus-within ::-webkit-datetime-edit-text,
.fancy-input-wrapper:focus-within ::-webkit-datetime-edit-year-field,
.fancy-input-wrapper:focus-within ::-webkit-datetime-edit-month-field,
.fancy-input-wrapper:focus-within ::-webkit-datetime-edit-day-field {
  transition: color calc(var(--transition-time) / 2) calc(var(--transition-time) / 2);
}

.fancy-input-wrapper ::-webkit-calendar-picker-indicator {
  font-size: 0.75em;
}

/* .c2m-modal-section .fancy-input-wrapper {
  margin-top: 10px;
  width: 100%;
}

.c2m-modal-section .heading-dialog {
  margin: 1em 0px 0px;
  text-align: center;
}

.c2m-modal-section .chip-wrapper {
  background: transparent;
  border-radius: 0px;
  padding: 0px;
}

.c2m-modal-section .chip-delete::after,
.c2m-modal-section .chip-delete::before {
  background: #000;
}

.c2m-modal-section .chip-wrapper {
  border-bottom: 1px solid #000;
  flex-wrap: wrap;
}

.c2m-modal-section .chips {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.c2m-modal-section .chip-wrapper input {
  width: unset;
  border: none;
}

.c2m-modal-section .chip {
  background: #aaeeff99;
}

.textarea-label {
  opacity: 0.25;
  display: block;
  margin-top: 1em;
}

.c2m-modal-section input[type="number"]::-webkit-outer-spin-button,
.c2m-modal-section input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.c2m-modal-section md-input-container,
.c2m-modal-section md-input-container label {
  margin-bottom: 0px;
}

.c2m-modal-section .md-errors-spacer {
  display: none;
}

.c2m-modal-section .fancy-input-wrapper label,
.c2m-modal-section .fancy-input-wrapper::before {
  opacity: 0.25;
}

.c2m-modal-section label {
  display: block;
  width: 100%;
  font-size: 0.75em;
  margin-top: 20px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  color: #aaaaaaaa;
}

.c2m-modal-section input,
.c2m-modal-section textarea,
.c2m-modal-section select {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
}

.half {
  width: 45%;
}

.side-to-side {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.stacked-inputs {
  display: flex;
  flex-direction: column;
}

.c2m-modal-section .hint {
  opacity: 0.75;
  width: 15%;
}

.c2m-modal-section .has-hint {
  width: 85%;
  display: inline-block;
}

.c2m-modal-section .new-contact-btn {
  margin: 15px auto 0px;
  display: block;
}

.c2m-modal-section .new-contact-input {
  border: 1px solid #000;
  border-radius: 5px;
  margin-top: 15px;
  width: 45%;
}

.new-contact-form select {
  margin-top: 15px;
}

.new-contact-form select {
  width: 45%;
}

.new-placement-comment {
  resize: none;
  width: 100%;
  padding: 0.125em;
  height: 2.6em;
}

.c2m-modal-section .missing-required-input {
  border-color: #f00;
}

.c2m-modal-section .missing-required-label {
  color: #f00;
}

.new-contact-input.missing-required-input::placeholder {
  color: #aa5555aa;
} */

#manual-update {
  position: absolute;
  top: 18px;
  right: 20px;
}

.needs-owner {
  color: #f00;
  font-size: 12px;
  text-align: center;
  margin: 0px;
  padding: 0.5em 0px;
}

.reassign-card {
  position: relative;
  display: block;
  margin: 8px auto 0px;
  font-size: 14px;
  border: 1px solid #0af;
  background: transparent;
  border-radius: 1em;
  padding: 0.25em 1em;
  color: #0af;
  transition: background-color 0.25s, color 0.25s;
}

.reassign-card:hover {
  background: #0af;
  color: #fff;
}

.action-disabled {
  position: relative;
  filter: grayscale(1) contrast(0.25) brightness(1.5);
}

.card-bottom-buttons {
  padding: 8px 0px;
}

.no-sidebar {
  right: 0 !important;
}

.navtabs {
  display: flex;
  flex-direction: row;
  justify-content: start;
  background: #fff;
  position: relative;
  box-shadow: 1px 0px 30px 0px #91caffaa;
  z-index: 1;
}

.navtab {
  grid-area: navtabs;
  text-align: center;
  min-width: 200px;
}

.navtab-label {
  display: inline-block;
  color: #0091ffff;
  padding: 0em 0.5em;
  margin: 0.5em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  font-family: 'Futura PT Book';
}

.navtab:first-child {
  margin-left: 1em;
}

.nav-current .navtab-label {
  border-bottom: 3px solid #0091ffff;
  font-family: Futura PT;
}

.navtab:hover {
  color: #0091ffff;
  text-decoration: none;
}

.side-nav-link {
  display: block;
  padding: 20px 0px;
  width: 100%;
  text-align: center;
}

#ChatRoomsContainer {
  display: block;
  position: fixed;
  width: 250px;
  top: initial;
  right: -1000px;
  bottom: 0;
  z-index: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 0.5s ease 0s;
  height: 400px;
  border-radius: 10px 10px 0px 0px;
}

#ChatRoomsContainer .panel-heading {
  background-color: #000430 !important;
  color: #fff;
  border-color: transparent;
  display: flex;
}

#ChatRoomsContainer .panel-primary {
  height: 400px;
  overflow: hidden;
  margin-bottom: 0px;
}

#ChatRoomsContainer .panel-body {
  min-height: 100px;
  height: 100%;
  overflow: scroll;
  background: #fff;
  color: #000;
  width: 100%;
  padding-bottom: 40px;
}

.left-side {
  display: inline-flex;
  align-content: flex-start;
  width: 100%;
}

#ChatRoomsContainer .panel-heading .left-side p {
  margin-bottom: 0px;
}

.right-side {
  display: block;
  align-content: flex-end;
  width: 22px;
  text-align: right;
}

#chat-sidebar {
  padding: 0;
  position: fixed;
  right: 0;
  z-index: 9;
}

.additional-items {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(-50%, -50%);
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky+.content {
  padding-top: 102px;
}

.cloudgate-container {
  background: #fff;
  border-radius: 10px 10px 10px 10px;
  padding: 0px 20px 20px 20px;
  width: 350px;
  max-width: 100%;
  margin: 0 auto;
}

.cloud-text {
  font-family: "Futura PT Light";
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.cloud-btn {
  font-family: "Futura PT";
  border-radius: 5px 5px 5px 5px;
  text-transform: uppercase;
  width: 100%;
  padding: 10px 20px 10px 10px;
}

.cloud-btn.primary {
  background-image: linear-gradient(#1771e6, #22a5f0);
  border: none;
  color: #fff;
}

.cloud-btn.secondary {
  background-image: linear-gradient(#ffffff, #f2f2f2);
  border: 1px solid #e6e6e6;
  color: grey;
}

.welcome-text {
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

.cloud-input-text {
  font-family: "Futura PT";
  font-size: 16px;
  border-radius: 5px 5px 5px 5px;
  box-shadow: none;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
  width: 100%;
  padding: 10px;
}

.cloud-radio-btn {
  display: inline-flex;
  background-color: #000 !important;
  margin-right: 5px !important;
  width: 15px;
  height: 15px;
}

.cloud-radio-btn:checked:before {
  background-color: #000;
}

.cloud-input-text::placeholder {
  color: #cccccc;
}

.flex-row {
  display: flex;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

.flex-row .column:first-of-type {
  padding-right: 10px;
}

.flex-row .column:last-of-type {
  padding-left: 10px;
}

.light-text {
  color: #cccccc;
}

.spaced-row {
  padding: 0 0 20px 0;
}

#messenger-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  cursor: pointer;
}

#chat-window-grid {
  position: fixed;
  width: 100%;
  z-index: 999;
  bottom: 0;
  right: 380px;
}

#chat-window-grid .main-section {
  float: right;
  position: relative;
  width: 300px;
  margin-right: 35px;
  height: 400px;
}

.messenger-timestamp {
  text-align: center;
  color: #cccccc;
  display: block;
  clear: both;
  font-size: 14px;
  margin-bottom: 10
}

button.container-btn {
  margin: auto;
  display: block;
  margin-bottom: 10px;
  width: 100%;
}

.user-management-table {
  width: 100%;
  border: none;
}

.user-management-table th.text-input-name,
.user-management-table td.text-input-name {
  width: 120px;
  min-width: 120px;
}

.user-management-table th.text-input-email,
.user-management-table td.text-input-email {
  width: 200px;
  min-width: 200px;
}

.user-management-table th.text-input-check,
.user-management-table td.text-input-check {
  width: 40px;
  min-width: 40px;
}

.user-management-table th.text-input-date,
.user-management-table td.text-input-date {
  width: 280px;
  min-width: 280px;
}

.user-management-table th.text-input-numbers,
.user-management-table td.text-input-numbers {
  width: 105px;
  min-width: 105px;
}

.user-management-table th.text-input-phone,
.user-management-table td.text-input-phone {
  width: 135px;
  min-width: 135px;
}

.user-management-table th {
  border: none;
  font-size: 12px;
  text-transform: capitalize;
  font-family: 'WorkSans-Regular';
  letter-spacing: 0px;
  /* padding: 0.5em 1em; */
}

.user-management-table td {
  border: none;
  white-space: nowrap;
  font-size: 14px;
}

.user-management-table.altus-table tbody tr:nth-child(odd) {
  background: none;
}

.user-management-table.altus-table tbody tr:nth-child(odd) td {
  background: rgba(var(--company-color), 0.125);
}

.user-management-table>tbody>tr:hover {
  background-color: #f5f5f5 !important;
}

#edit-subscription {
  height: 100%;
  overflow: auto;
}

#subscriptions {
  display: block;
  border: none;
  margin: 25px auto 0px;
  width: 100%;
}

/* Product Management */
.create-product-wrapper {
  border: 1px solid #000;
  border-radius: 15px;
  max-width: 480px;
  margin: 30px auto 0px;
  padding: 1em;
  background: #fafafa;
}

.create-product-label {
  display: block;
}

.create-product-input {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.create-product-submit {
  display: block;
  margin: 15px 0px 0px auto;
}

#snapshot-wrapper {
  position: relative;
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  background: #ffffff;
  padding: 32px;
}

#snapshot-inputs {
  display: flex;
}

#snapshot-datepickers {
  margin: 0px 0px 0px auto;
}

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

.c2m-chart-start-input,
.c2m-chart-end-input {
  display: inline-block;
}

.c2m-chart-inputs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.c2m-chart-date-inputs {
  margin-left: auto;
}

.c2m-chart-date-inputs label {
  margin: 0px 5px 0px 20px;
}

.c2m-chart-wrapper {
  position: relative;
  width: 100%;
  height: 600px !important;
  background: #ffffff;
  padding: 32px;
}

.maintenance-text {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  text-align: center;
  color: red;
  font-size: 40px;
}

#snapshot-rep-picker {
  padding: 1px 6px;
  margin-right: 5px;
  margin-bottom: 5px;
}
