* {
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
}

/* Console login page styling */
.full-page.login-page.console-container {
  background-color: #0f1e5c;
  background-image: linear-gradient(135deg, #0a1542 0%, #1a2980 35%, #2d4aa7 70%, #4a6bb8 100%);
}

/* Disable the white overlay for console */
.full-page.console-container:after {
  display: none;
}

/* Console footer styling - white text but exclude card content */
.full-page.console-container .footer nav > ul a:not(.btn),
.full-page.console-container .footer .copyright,
.full-page.console-container .footer .copyright a {
  color: #FFFFFF;
}

.full-page.console-container .footer nav > ul a:not(.btn):hover,
.full-page.console-container .footer .copyright a:hover {
  color: #e0e0e0;
}

/*-------------------
 Vue.js
---------------------*/
[v-cloak] > * {
  display: none;
}

/*-------------------
 Input
---------------------*/
input[type="checkbox"],
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  outline: none;
  border: none !important;
  width: 20px;
  height: 20px;
  position: relative;
  opacity: .5;
  transition: opacity 0.2s linear;
  margin: 0;
  cursor: pointer;
  vertical-align: top;
}

input[type="checkbox"]:before,
input[type="radio"]:before {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
  font-size: 20px;
  color: #66615b;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
  opacity: 1;
}

input[type="checkbox"]:disabled:before,
input[type="radio"]:disabled:before {
  color: #cfcfcf;
}

input[type="checkbox"]:before {
  font-weight: 900;
  content: "\f0c8";
}

input[type="checkbox"]:checked:before {
  content: "\f14a";
}

input[type="radio"]:before {
  font-weight: 400;
  content: "\f111";
}

input[type="radio"]:not(:disabled):hover:before {
  content: "\f192";
}

input[type="radio"]:checked:before {
  content: "\f192";
}

input[type="file"] {
  line-height: 1;
}


/*-------------------
 Display
---------------------*/
.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

/*-------------------
 Position
---------------------*/
.p-relative {
  position: relative !important;
}

/*-------------------
 Font Size
---------------------*/
.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-24 {
  font-size: 24px !important;
}

/*-------------------
 Font Weight
---------------------*/
.fw-normal {
  font-weight: normal !important;
}

.fw-bold {
  font-weight: bold !important;
}

/*-------------------
 Word break
---------------------*/
.wb-break-all {
  word-break: break-all !important;
}

/*-------------------
 White Space
---------------------*/
.ws-nowrap {
  white-space: nowrap !important;
}

.ws-pre {
  white-space: pre !important;
}

/*-------------------
 Text Overflow
---------------------*/
.to-ellipsis {
  text-overflow: ellipsis !important;
}

/*-------------------
 Border Width
---------------------*/
.brw-2 {
  border-right-width: 2px !important;
}

.blw-2 {
  border-left-width: 2px !important;
}

.bbw-2 {
  border-bottom-width: 2px !important;
}

/*-------------------
 Icon
---------------------*/
.c_icon {
  box-sizing: content-box;
  display: inline-block;
  min-width: 16px;
  color: #333333;
  line-height: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  padding: 2px;
  margin: 2px;
  background-color: #99ccdd;
  border: 2px solid #99ccdd;
  border-radius: 4px;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.c_icon.circle {
  border-radius: 20px;
}

.c_icon.active {
  background-color: #9d9;
  border-color: #9d9;
}

.c_icon.error {
  background-color: #f66;
  border-color: #f66;
}

.c_icon.error.active {
  background-color: #f99;
  border-color: #f99;
}

.c_icon.info {
  color: #fff;
  background-color: #68b3c8;
  border-color: #68b3c8;
}

.c_icon.bordered {
  background-color: transparent;
}

.c_icon.d-inline-flex {
  justify-content: center;
}

.fa, .fab, .fad, .fal, .far, .fas {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1em;
}

/*-------------------
 full-page: paper dashboard css overwrite
---------------------*/
.full-page:after {
  background: #fafafa;
}

.full-page > .content {
  z-index: 5;
}

.full-page .footer {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 4;
}

.full-page .footer nav > ul a:not(.btn),
.full-page .footer .copyright,
.full-page .footer .copyright a {
  color: #66615b;
}

/*-------------------
 Side Bar: paper dashboard css overwrite
---------------------*/
.sidebar:before {
  box-shadow: inset -1px 0 0 0 #cfcfca;
}

.sidebar .logo {
  display: flex;
  align-items: center;
  padding: 0;
}

.sidebar .logo,
.sidebar .sidebar-wrapper {
  box-shadow: none;
}

.sidebar .sidebar-wrapper {
  padding-bottom: 50px;
  overflow-x: hidden !important;
}

.sidebar .sidebar-wrapper:not(:hover)::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):before,
.sidebar .sidebar-wrapper li.active > a:not([data-toggle="collapse"]):after {
  content: none;
}

.sidebar .user {
  margin-top: 10px !important;
  padding-bottom: 10px !important;
}

.sidebar .user .info a,
.sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
.sidebar .sidebar-wrapper > .nav p,
.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal {
  white-space: initial;
}

.sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal {
  padding-left: 45px;
}

.sidebar .sidebar-wrapper > .nav {
  margin-top: 0;
}

.sidebar .sidebar-wrapper > .nav .nav-separator:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.sidebar[data-background-color="white"] .sidebar-wrapper > .nav .nav-separator:before {
  background-color: rgba(102, 97, 91, 0.3);
}

.sidebar .sidebar-wrapper > .nav:first-of-type .nav-separator:first-of-type:before {
  content: none;
}

.sidebar .sidebar-wrapper > .nav .nav-separator + .nav-separator:before {
  content: none;
}

.sidebar .sidebar-wrapper> .nav .list-pager {
  margin-bottom: 10px;
}

.sidebar .sidebar-wrapper> .nav .badge {
  background-color: #eb5e28;
}

.sidebar .user .photo {
  position: absolute;
  top: 50%;
  left: 23px;
  margin: 0;
  transform: translateY(-50%);
  float: none;
}

.sidebar .user .info a[data-toggle="collapse"] {
  padding-left: 68px;
}

.sidebar .user .info .caret,
.sidebar .sidebar-wrapper > .nav .caret {
  top: calc(50% - 2px);
  margin: 0;
}

.sidebar .sidebar-wrapper > .nav li > a {
  margin: 0;
}

.sidebar .user .info a[data-toggle="collapse"] span,
.sidebar .sidebar-wrapper > .nav p {
  padding-right: 10px;
}

.sidebar .sidebar-wrapper > .nav p {
  font-size: 14px;
  text-transform: none !important;
}

.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini i {
  width: 30px;
}

.sidebar .sidebar-wrapper > .nav i,
.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini {
  margin-right: 2px;
}

.sidebar .sidebar-wrapper > .nav p,
.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal {
  padding-left: 35px;
}

@media (max-width: 992px) {
  .sidebar .sidebar-wrapper {
    height: calc(100% - 41px);
  }

  .sidebar .logo {
    height: 41px;
  }

  .sidebar .logo .ssLogo {
    background-position: 15px center;
  }
}

@media (min-width: 992px) {
  .sidebar,
  .sidebar .sidebar-wrapper > .nav p {
    font-size: 12px;
  }

  .sidebar,
  .sidebar .sidebar-wrapper,
  .sidebar-mini .sidebar:hover,
  .sidebar-mini .sidebar:hover .sidebar-wrapper {
    width: 200px;
  }

  .sidebar-mini .sidebar,
  .sidebar-mini .sidebar .sidebar-wrapper {
    width: 60px;
  }

  .sidebar .logo {
    height: 66px;
  }

  .sidebar .logo .ssLogo {
    width: calc(100% - 30px);
    height: auto;
    padding: 0;
  }

  body:not(.sidebar-mini) .sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li,
  .sidebar-mini .sidebar:hover .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li,
  body:not(.sidebar-mini) .sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li,
  .sidebar-mini .sidebar:hover .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li {
    padding-left: 22px;
  }

  .sidebar .user .info .caret,
  .sidebar .sidebar-wrapper > .nav .caret {
    right: 1px;
  }

  .sidebar .user {
    margin-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .sidebar .user .photo {
    width: 20px;
    height: 20px;
    left: 20px;
  }

  .sidebar .user .photo img {
    vertical-align: initial;
  }

  .sidebar .user .info a[data-toggle="collapse"] {
    min-width: 200px;
  }

  .sidebar .user .info a[data-toggle="collapse"] > span {
    padding-right: 10px;
  }

  .sidebar .sidebar-wrapper > .nav p {
    min-width: 150px;
  }

  .sidebar-mini .sidebar:not(:hover) .user .info a,
  .sidebar-mini .sidebar:not(:hover) .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
  .sidebar-mini .sidebar:not(:hover) .sidebar-wrapper > .nav p,
  .sidebar-mini .sidebar:not(:hover) .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal {
    white-space: nowrap;
  }

  .sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
  .sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal {
    min-width: 115px;
  }

  .sidebar .user .info a[data-toggle="collapse"],
  .sidebar .sidebar-wrapper > .nav li > a,
  .sidebar .sidebar-wrapper .user li > a{
    padding: 10px 20px;
  }

  .sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini,
  .sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini {
    width: 20px;
    margin: 0;
  }

  .sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini i,
  .sidebar .sidebar-wrapper > .nav i,
  .sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-mini i {
    font-size: 16px;
    width: 20px;
    line-height: 20px;
  }

  .sidebar .user .info a[data-toggle="collapse"] > span,
  .sidebar .sidebar-wrapper > .nav p,
  .sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal,
  .sidebar .sidebar-wrapper .user .info [data-toggle="collapse"] ~ div > ul > li > a .sidebar-normal {
    padding-left: 22px;
    line-height: 20px;
  }

  .sidebar-mini .sidebar:hover {
    z-index: 10;
  }

  .sidebar-mini .sidebar[data-background-color="white"]:hover {
    border-right: 1px solid #f1eae0;
  }

  .sidebar-mini .sidebar:not(:hover) {
    animation: sidebar-mini-hide .35s;
    -webkit-animation: sidebar-mini-hide .35s;
  }

  @keyframes sidebar-mini-hide {
    0% {
      z-index: 10;
    }
    99% {
      z-index: 10;
    }
    100% {
      z-index: 3;
    }
  }
  @-webkit-keyframes sidebar-mini-hide {
    0% {
      z-index: 10;
    }
    99% {
      z-index: 10;
    }
    100% {
      z-index: 3;
    }
  }
}

body:not(.sidebar-mini) .sidebar-no-icon .sidebar-mini,
.sidebar-mini .sidebar:hover .sidebar-no-icon .sidebar-mini {
  display: none;
}

.sidebar .sidebar-wrapper > .nav [data-toggle="collapse"] ~ div > ul > li.sidebar-no-icon > a .sidebar-normal {
  padding-left: 0;
}

.sidebar-mini .sidebar:not(:hover) #switcher {
  overflow-x: hidden;
}

.sidebar #switcher .switcher-search {
  position: relative;
  padding: 0 20px 10px 42px;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.sidebar #switcher .switcher-search:before {
  content: "\f002";
  position: absolute;
  top: 6px;
  left: 48px;
  font-size: 12px;
}

.sidebar #switcher .switcher-search > input {
  width: 100%;
  padding: 2px 5px 2px 20px;
  border: 1px solid #e8e7e3;
  border-radius: 2px;
  outline: none;
  color: #66615b;
  font: 500 12px 'Muli', Arial, sans-serif;
  line-height: 1.5;
}

.sidebar #switcher .switcher-search > input::placeholder {
  color: #cfcfca;
}

@media (max-width: 992px) {
  .sidebar #switcher .switcher-search {
    padding: 0 25px 10px;
  }

  .sidebar #switcher .switcher-search:before {
    left: 31px;
  }
}

#minimizeSidebar i {
  font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
  font-weight: 900;
  width: 1em;
  text-align: center;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;

  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

#minimizeSidebar .ti-more-alt:before {
  content: "\f142";
}

#minimizeSidebar .ti-menu-alt:before {
  content: "\f0ca";
}

/*-------------------
 Main Panel: paper dashboard css overwrite
---------------------*/
.main-panel {
  z-index: 5;
}

@media (min-width: 992px) {
  .main-panel {
    width: calc(100% - 200px);
  }

  .sidebar-mini .main-panel {
    width: calc(100% - 60px);
  }

  .main-panel > .content {
    min-height: calc(100% - 132px);
  }
}

@media (max-width: 992px) {
  .main-panel {
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .main-panel > .content {
    padding-top: 10px;
  }

  .main-panel .notifications.panel-group {
    margin-bottom: 10px;
  }
}

/*-------------------
 Navbar: paper dashboard css overwrite
---------------------*/
.navbar .container-fluid {
  display: flex;
}

.navbar .navbar-header {
  flex: 1;
  min-width: 0;
  display: flex;
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0 15px;
  margin: 0;
  order: 1;
}

.navbar .navbar-brand > .title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.navbar .navbar-brand > .title + .btn {
  margin-left: 5px;
}

.navbar .navbar-toggle {
  order: 2;
}

.navbar.center-logo .navbar-header {
  width: 100%;
  margin-left: 0;
  justify-content: center;
}

.navbar.center-logo .navbar-brand {
  justify-content: center;
}

.navbar.center-logo .navbar-brand .ssLogo {
  background-position: center;
  margin-left: 0;
}

.navbar + .wrapper.wrapper-full-page {
  min-height: calc(100% - 110px);
}

.navbar + .wrapper > .login-page > .content {
  padding-top: calc(20vh - 110px);
}

.navbar + .wrapper > .full-page > .content {
  min-height: calc(100vh - 180px);
}

@media (min-width: 768px) {
  .navbar .container-fluid > .navbar-header {
    margin-right: -15px;
  }
}

@media (max-width: 992px) {
  .navbar {
    min-height: 0;
  }

  .navbar .container-fluid {
    height: 40px;
  }

  .navbar .navbar-header .navbar-toggle {
    margin: 0 10px 0 0;
  }

  .navbar .navbar-brand > .title {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .navbar {
    min-height: 66px;
  }

  .navbar .container-fluid {
    height: 65px;
  }

  .navbar .navbar-minimize .btn {
    margin: 13.5px 3px;
  }

  .navbar .navbar-nav {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .navbar .navbar-nav > li > a,
  .navbar .navbar-nav > li > a.btn {
    margin: 0;
  }

  .navbar .navbar-nav > .dropdown .dropdown-menu {
    position: absolute;
  }

  .navbar .navbar-nav.navbar-right > .dropdown .dropdown-menu:before,
  .navbar .navbar-nav.navbar-right > .dropdown .dropdown-menu:after {
    left: auto;
    right: 10px;
    border-top: none;
  }

  .navbar .navbar-nav.navbar-right > .dropdown .dropdown-menu:before {
    top: -12px;
  }

  .navbar .navbar-nav.navbar-right > .dropdown .dropdown-menu:after {
    top: -11px;
  }

  .navbar + .wrapper.wrapper-full-page {
    min-height: calc(100% - 101px);
  }

  .navbar + .wrapper > .login-page > .content {
    padding-top: calc(20vh - 101px);
  }

  .navbar + .wrapper > .full-page > .content {
    min-height: calc(100vh - 171px);
  }

}

/*-------------------
 Notifications
---------------------*/
.notifications .panel {
  background: #fff;
  padding: 0;
}

.notifications .panel + .panel {
  margin-top: 2px;
}

.notifications .panel:first-of-type {
  margin-top: 0;
}

.notifications .panel .panel-heading {
  background: #fff;
}

.notifications .panel .panel-heading .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.notifications .panel .panel-heading .panel-title .notification-toggle {
  margin-left: 10px;
  color: #66615b;
  font-size: 14px;
  text-decoration: underline;
  white-space: nowrap;
  cursor: pointer;
}

.notifications .panel .panel-heading .panel-title .notification-toggle > i {
  font-size: 16px;
}

.notifications .panel-body {
  padding: 0 15px;
}

.notifications .panel-collapse {
  overflow: hidden;
  display: block !important;
  height: 0;
}

.notifications .panel-collapse.panel-collapse-enter-active,
.notifications .panel-collapse.panel-collapse-leave-active {
  transition: height 0.3s;
}

/*-------------------
 Panel: paper dashboard css overwrite
---------------------*/
.panel-default .panel-body a:not(.btn) {
  color: #eb5e28;
  text-decoration: underline;
}

.panel-default .panel-body a:not(.btn):hover {
  text-decoration: none;
}

.panel-default .panel-body .btn:hover,
.panel-default .panel-body .btn:active,
.panel-default .panel-body .btn:focus {
  color: rgba(255, 255, 255, 0.85);
}

.panel-default .panel-body .pager a {
  color: #68b3c8;
  text-decoration: none;
}

.panel-default .panel-body .pager .disabled>a,
.panel-default .panel-body .pager .disabled>a:focus,
.panel-default .panel-body .pager .disabled>a:hover,
.panel-default .panel-body .pager .disabled>span {
  color: #777;
}

.panel-title {
  position: relative;
  padding-right: 20px;
}

.panel-default a .panel-title > i {
  float: none;
  position: absolute;
  top: 0;
  right: 0;
}

/*-------------------
 Footer: paper dashboard css overwrite
---------------------*/
footer.footer nav ul {
  text-align: center;
}

@media (max-width: 550px) {
  footer.footer nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
  }

  footer.footer .copyright {
    padding: 0;
  }
}

@media (min-width: 992px) {
  footer.footer {
    min-height: 66px;
  }

  footer.footer nav ul li,
  footer.footer .copyright {
    margin: 11px 3px;
  }
}

/*-------------------
 Card: paper dashboard css overwrite
---------------------*/
.card {
  overflow: hidden;
}

.card .card-title .dropdown .dropdown-toggle {
  margin-top: 0;
  padding: 0 5px;
  border: none !important;
}

.card .card-header {
  z-index: auto;
}

.card .card-content {
  padding: 15px;
}

.card .card-header.with-search {
  display: flex;
  flex-wrap: wrap;
}

.card .card-header.with-search .card-title {
  flex-shrink: 0;
  margin-right: 10px;
  margin-bottom: 10px;
}

.card .card-header.with-search .search-box {
  flex-grow: 1;
  width: 75px;
  margin-top: -7.5px;
}

.card .card-header.with-search + .card-content {
  margin-top: -10px;
}

@media (max-width: 992px) {
  .card-content .alert {
    margin-bottom: 0;
  }
}

/*-------------------
 Row: paper dashboard css overwrite
---------------------*/
.row.row-flex {
  display: flex;
  flex-wrap: wrap;
}

.row.row-flex > [class*="col-"] {
  float: none;
}

.row.row-flex > [class*="col-"] .card {
  height: calc(100% - 20px);
}

/*-------------------
 Pager: paper dashboard css overwrite
---------------------*/
.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}

.pager:before,
.pager:after {
  content: none;
}

.pager .previous > a,
.pager .next > a {
  padding: 4px 5px;
  border: none;
  border-radius: 0;
  color: #66615B;
  float: none;
}

.pager .previous > a:hover,
.pager .next > a:hover {
  background-color: #fff;
}

.pager .previous.disabled > a,
.pager .next.disabled > a {
  opacity: .2;
  cursor: not-allowed;
}

.pager .pager-input {
  display: inline;
  width: auto;
  height: auto;
  padding: 2px 5px;
  text-align: center;
}

.pager .pager-title {
  display: inline;
  margin-right: 10px;
  font-weight: bold;
}

/*-------------------
 Form: bootstrap css overwrite
---------------------*/
.form-group .alert {
  margin-bottom: 5px;
}

.form-group.disabled label {
  color: #888;
}

.form-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.form-flex > input[type="checkbox"] {
  margin: 0 4px 5px 0;
}

.form-flex > input[type="checkbox"] + :not(.form-inline-item):not(.inline-fc):not(.is-inline) {
  flex-grow: 1;
  width: auto;
}

.form-flex > .form-control-static {
  min-height: 0;
  margin-bottom: 5px;
  padding: 0;
}

.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 22px !important;
  height: 38px;
  font: 500 14px 'Muli', Arial, sans-serif;
}

.form-control::-ms-expand {
  display: none;
}

.form-control.input-no-border {
  border: 1px solid #F3F2EE;
}

select.form-control {
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, #66615b 50%),
    linear-gradient(135deg, #66615b 50%, transparent 50%);
  background-position:
    calc(100% - 8px) 50%,
    calc(100% - 4px) 50%;
  background-size:
    4px 4px,
    4px 4px;
  background-repeat: no-repeat;
  transition: none;
  padding: 7px calc(1em + 12px) 7px 1em !important;
}

select[multiple].form-control {
  background-position: calc(100% - 16px) 15px, calc(100% - 12px) 15px;
}

.form-control.form-inline-item {
  display: inline-block;
  width: auto;
  vertical-align: baseline;
}

input[type=time].form-control {
  display: inline-flex;
  align-items: center;
}

input[type=file].form-control {
  height: 38px;
  line-height: 38px !important;
  background: transparent;
  padding: 0;
  border: none;
}

.form-control.datetime-picker-mobile {
  height: auto;
  background: transparent;
  padding: 0;
  border: none;
}

.form-control.datetime-picker-mobile > .datetime-picker-mobile-input > input {
  display: block;
  width: 100%;
  height: 38px;
  padding: 7px 18px;
  background-color: #F3F2EE;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  pointer-events: none;
}

.form-control.form-inline-item.datetime-picker-mobile > .datetime-picker-mobile-input,
.form-control.form-inline-item.datetime-picker-mobile > .datetime-picker-mobile-input > input {
  display: inline-block;
  width: auto;
}

.form-control-static {
  display: block;
  padding: 9px 0 0;
  font-size: 14px;
  vertical-align: top;
}

.form-control-static.with-icon {
  padding: 5px 0 0;
}

ul.form-control-static {
  padding: 9px 0 0 14px;
}

.form-horizontal .control-label.required:after {
  content: "*";
  margin-left: 5px;
  color: #EB5E28;
  font-size: 18px;
  line-height: 16px;
  vertical-align: sub;
}

.form-horizontal .form-group > [class*="col-"]:not(.control-label),
.form-horizontal .form-group .form-flex {
  min-height: 43px;
}

.form-horizontal .form-control,
.form-horizontal .form-select,
.form-horizontal .vue-tags-input,
.form-horizontal .tox-tinymce,
.form-horizontal .form-group > [class*="col-"]:not(.control-label) > input[type="checkbox"],
.form-horizontal .form-group > [class*="col-"]:not(.control-label) > input[type="radio"] {
  margin-bottom: 5px;
}

@media (min-width: 992px) {
  .form-horizontal .form-group > .control-label {
    width: 12em;
    padding-top: 9px !important;
  }

  .form-horizontal .form-group > .control-label + [class*="col-"] {
    width: calc(100% - 12em);
  }

  .form-horizontal .form-group > [class*="col-"]:not(.control-label) > input[type="checkbox"],
  .form-horizontal .form-group > [class*="col-"]:not(.control-label) > input[type="radio"] {
    margin-top: 9px;
  }

  .form-horizontal .btn-sm {
    margin-top: 2px;
  }
}

/*-------------------
 Timeline: paper dashboard css overwrite
---------------------*/
@media (max-width: 992px) {
  .card-timeline .timeline:before,
  .card-timeline .timeline > li > .timeline-badge {
    left: 25px;
  }

  .card-timeline .timeline > li > .timeline-panel {
    float: right;
    width: calc(100% - 75px);
  }

  .card-timeline .timeline > li > .timeline-panel:before,
  .card-timeline .timeline > li > .timeline-panel:after {
    border-left-width: 0;
    right: auto;
  }

  .card-timeline .timeline > li > .timeline-panel:before {
    border-right-width: 15px;
    left: -15px;
  }

  .card-timeline .timeline > li > .timeline-panel:after {
    border-right-width: 14px;
    left: -14px;
  }
}

/*-------------------
 Form Select
---------------------*/
.form-select {
  position: relative;
  width: 100%;
}

.form-select.is-inline {
  display: inline-block;
  width: auto;
  vertical-align: baseline;
}

.form-select > select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}

.form-select > .form-select-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.form-select > .form-select-wrapper > .form-select-selector {
  display: flex;
  align-items: center;
  background-color: #F3F2EE;
  height: 38px;
  padding: 0 5px 0 18px;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 300ms linear;
  cursor: pointer;
}

.form-select > .form-select-wrapper > .form-select-selector > input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: #66615b;
  font: 500 14px 'Font Awesome 5 Pro', 'Muli', Arial, sans-serif;
  line-height: 1;
  text-overflow: ellipsis;
  outline: none;
  opacity: 1;
  -webkit-text-fill-color: #66615b;
  -webkit-appearance: none;
  pointer-events: none;
}

.form-select > .form-select-wrapper > .form-select-selector > input::placeholder {
  color: #cfcfca;
  -webkit-text-fill-color: #cfcfca;
}

.form-select > .form-select-wrapper > .form-select-selector > i {
  margin-left: 18px;
  color: #66615b;
  font-size: 12px;
}

.form-select > .form-select-wrapper > .form-select-selector > i.fa-times {
  margin-right: -13px;
}

.form-select > .form-select-wrapper > .btn {
  position: relative;
  display: flex;
  margin: 0 !important;
  padding-right: 25px;
  text-align: left;
}

.form-select > .form-select-wrapper > .btn > span {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-select > .form-select-wrapper > .btn > i {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -6px;
  vertical-align: middle;
}

.form-select.is-open > .form-select-wrapper > .form-select-selector {
  background-color: #FFFFFF;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-select > .form-select-wrapper > .form-select-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  margin: 5px 0;
  background: #FFFFFF;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  z-index: 1000;
}

.form-select > .form-select-wrapper > .form-select-menu:before,
.form-select > .form-select-wrapper > .form-select-menu:after {
  content: "";
  position: absolute;
  border: 6px solid transparent;
}

.form-select:not(.is-top) > .form-select-wrapper > .form-select-menu:before {
  top: -13px;
  border-bottom-color: #e8e7e3;
}

.form-select:not(.is-top) > .form-select-wrapper > .form-select-menu:after {
  top: -12px;
  border-bottom-color: #ffffff;
}

.form-select.is-top > .form-select-wrapper > .form-select-menu:before {
  bottom: -13px;
  border-top-color: #e8e7e3;
}

.form-select.is-top > .form-select-wrapper > .form-select-menu:after {
  bottom: -12px;
  border-top-color: #ffffff;
}

.form-select:not(.is-left) > .form-select-wrapper > .form-select-menu:before,
.form-select:not(.is-left) > .form-select-wrapper > .form-select-menu:after {
  left: 10px;
}

.form-select.is-left > .form-select-wrapper > .form-select-menu:before,
.form-select.is-left > .form-select-wrapper > .form-select-menu:after {
  right: 10px;
}

.form-select > .form-select-wrapper > .form-select-menu > *:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.form-select > .form-select-wrapper > .form-select-menu > *:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-btns {
  display: flex;
  padding: 5px;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-btns > button {
  background: #ffffff;
  width: 50%;
  min-width: 60px;
  padding: 5px 0;
  margin: 0;
  border: 2px solid #66615b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #66615b
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-btns > button:hover {
  background: #66615b;
  color: #ffffff
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-btns > button:first-child {
  border-right-width: 1px;
  border-radius: 3px 0 0 3px;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-btns > button:last-child {
  border-left-width: 1px;
  border-radius: 0 3px 3px 0;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-btns + .form-select-menu-search {
  padding-top: 0;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-search {
  position: relative;
  padding: 5px;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-search.hidden {
  display: block !important;
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-search:before {
  content: "\f002";
  position: absolute;
  bottom: 11.5px;
  left: 11px;
  font-size: 14px;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-search > input {
  width: 80px;
  min-width: 100%;
  padding: 2px 5px 2px 24px;
  border: 1px solid #66615B;
  border-radius: 2px;
  outline: none;
  color: #66615b;
  font: 500 14px 'Muli', Arial, sans-serif;
  line-height: 1.5;
  -webkit-appearance: none;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-search > input::placeholder {
  color: #cfcfca;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-list {
  flex-grow: 1;
}

.form-select > .form-select-wrapper > .form-select-menu > ul {
  flex-grow: 1;
  padding: 0;
  margin: 0;
  overflow: auto;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 5px 10px;
  font-size: 14px;
  color: #66615b;
  cursor: pointer;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li.form-select-menu-header {
  background: #e8e7e3;
  padding: 3px 5px;
  font-size: 12px;
  cursor: initial;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li:not(.form-select-menu-header):hover,
.form-select > .form-select-wrapper > .form-select-menu > ul > li.form-select-menu-active {
  background-color: #66615b;
  color: #FFFFFF;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li.form-select-menu-divider {
  border-top: 1px solid #e8e7e3;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li.form-select-menu-group-all {
  border-bottom: 1px dashed #ccc5b9;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li > span {
  flex-grow: 1;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li > i {
  visibility: hidden;
  margin-left: 10px;
}

.form-select > .form-select-wrapper > .form-select-menu > ul > li.form-select-menu-selected > i {
  visibility: visible;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-pagination {
  display: flex;
  padding: 5px;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-pagination > button {
  margin: 0;
  background: transparent;
  border: none;
  outline: none;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-pagination > button.disabled {
  opacity: .2;
  cursor: not-allowed;
}

.form-select > .form-select-wrapper > .form-select-menu > .form-select-menu-pagination > button:not(:first-child) {
  margin-left: 10px;
}

.has-error .form-select > .form-select-wrapper > .form-select-selector {
  background-color: #FFC0A4;
  border-color: #EB5E28;
}

.has-error .form-select > .form-select-wrapper > .form-select-selector > input {
  color: #EB5E28;
  -webkit-text-fill-color: #EB5E28;
}

.has-error ul {
  color: #EB5E28;
  padding: 0 0 0 1em;
}

.has-error .help-block {
  margin-top: 0px;
  margin-bottom: 5px;
}

/*-------------------
 Form Range
---------------------*/
.form-range {
  position: relative;
  display: flex;
  align-items: center;
  height: 15px;
}

.form-range > input[type="range"] {
  position: relative;
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 3;
  outline: none;
}

.form-range > input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.form-range > input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.form-range > .form-range-base,
.form-range > .form-range-active {
  position: absolute;
  top: 3.5px;
  left: 0;
  height: 8px;
  border-radius: 4px;
}

.form-range > .form-range-base {
  width: 100%;
  background: #E5E5E5;
  z-index: 1;
}

.form-range > .form-range-active {
  background: #66615B;
  z-index: 2;
}

/*-------------------
 Form Switch
---------------------*/
.form-switch {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
  vertical-align: middle;
}

.form-switch > .bootstrap-switch {
  margin: 0;
}

.form-switch > .bootstrap-switch .bootstrap-switch-container {
  transition: margin-left 0.05s;
}

@media (min-width: 992px) {
  .form-horizontal .form-group > [class*="col-"]:not(.control-label) > .form-switch {
    margin-top: 6px;
  }
}

/*-------------------
 Form Password
---------------------*/
.form-password {
  position: relative;
}

.form-password > input {
  padding-right: 42px;
}

.form-password > i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
}

/*-------------------
 Form Buttons
---------------------*/
.form-buttons {
  display: flex;
  flex-wrap: wrap;
}

.form-horizontal .form-buttons {
  margin-left: -15px;
  margin-right: -15px;
}

.form-buttons > .btn {
  margin-left: 15px;
}

.form-buttons > .btn:first-child {
  margin-left: calc(25% + 15px);
}

.form-buttons > .btn-simple {
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 992px) {
  .form-buttons > .btn:first-child {
    margin-left: 15px;
  }
}

/*-------------------
 Form Table
---------------------*/
.form-table th {
  padding: 0 15px 5px 0;
}

@media (max-width: 991px) {
  .form-table th {
    display: block;
    padding: 0;
  }

  .form-table td {
    display: block;
  }
}

/*-------------------
 Help Block: bootstrap css overwrite
---------------------*/
.help-block {
  margin-bottom: 0;
  white-space: pre-wrap;
  word-break: break-all;
}

/*-------------------
 Btn: paper dashboard css overwrite
---------------------*/
:not(.btn-group) > .btn:not(:last-child) {
  margin-right: 5px;
}

.btn-group > .btn {
  margin-bottom: 0 !important;
}

.btn-simple {
  border: solid 2px transparent !important;
}

.btn-simple.btn-xs {
  padding: 2px 5px;
}

.btn.btn-square {
  border-radius: 5px;
  padding: 7px 10px;
}

.btn i.fa-caret-down,
.btn i.fa-caret-up {
  position: relative;
  top: -1px;
  font-size: 12px;
}

.btn-not {
  background-image: repeating-linear-gradient(-45deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 3px, transparent 0, transparent 6px);
}

/*-------------------
 Dropdown: paper dashboard css overwrite
---------------------*/
.dropdown {
  display: inline-block;
  vertical-align: middle;
}

.dropdown > .btn {
  margin: 0!important;
}

.dropdown .dropdown-toggle {
  margin-top: -5px;
}

.dropdown .dropdown-menu {
  position: fixed;
  top: auto;
  left: auto;
  display: none;
  margin: 5px 0;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  box-shadow: none;
  transition: transform linear 150ms, opacity linear 150ms, visibility linear 150ms;
  transform: none !important;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown .dropdown-menu:before,
.dropdown .dropdown-menu:after {
  top: auto;
  right: auto;
  border: 6px solid transparent;
}


.dropdown:not(.is-top) .dropdown-menu:before {
  top: -13px;
  border-bottom-color: #e8e7e3;
}

.dropdown:not(.is-top) .dropdown-menu:after {
  top: -12px;
  border-bottom-color: #ffffff;
}

.dropdown.is-top .dropdown-menu:before {
  bottom: -13px;
  border-top-color: #e8e7e3;
}

.dropdown.is-top .dropdown-menu:after {
  bottom: -12px;
  border-top-color: #ffffff;
}

.dropdown:not(.is-left) .dropdown-menu:before,
.dropdown:not(.is-left) .dropdown-menu:after {
  left: 10px;
}

.dropdown.is-left .dropdown-menu:before,
.dropdown.is-left .dropdown-menu:after {
  right: 10px;
}

.dropdown .dropdown-menu > li:first-child > a {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.dropdown .dropdown-menu > li:last-child > a {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.dropdown .dropdown-menu li a:hover .sm-tooltip {
  color: #fff;
}

/*-------------------
 Alert: paper dashboard css overwrite
 http://scg.ar-ch.org/
---------------------*/
.alert {
  margin-bottom: 0;
}

.alert + * {
  margin-top: 20px;
}

.alert > p {
  font-size: 14px;
}

.alert-info {
  background-color: #e1f9ff; /* base:7ce4fe 20% */
}

.alert-success {
  background-color: #eafdf4; /* base:8ef3c5 20% */
}

.alert-warning {
  background-color: #fffcf2; /* base:ffe28c 20% */
}

.alert-danger {
  background-color: #ffd6c4; /* base:ff8f5e 20% */
}

/*-------------------
 Logo
---------------------*/
.ssLogo {
  margin-left: 15px;
  background-image: url("../img/logo-shiftmation.548fd2cef6fc.svg");
  background-size: auto 24px;
  background-position: left center;
  background-repeat: no-repeat;
  height: 46px;
  width: 200px;
  text-indent: -9999px;
  display: block;
}

.ssLogo.logo-white {
  background-image: url("../img/logo-shiftmation-white.a2e9194fee7e.svg");
}

.ssLogo.logo-console {
  background-image: url("../img/logo-console.4dce65ca8dd5.svg");
  background-size: contain;
  background-position: center;
}

.ssLogo.logo-white.logo-console {
  background-image: url("../img/logo-console-white.7e61786eeae9.svg");
  background-size: contain;
  background-position: center;
}

.ssLogo.logo-insight {
  background-image: url("../img/logo-insight.c270ccbb1859.svg");
}

.ssLogo.logo-white.logo-insight {
  background-image: url("../img/logo-insight-white.87fe4554b8d2.svg");
}

.ssLogo.logo-playbook {
  background-image: url("../img/logo-playbook.6a0a7bbbbdb9.svg");
}

.ssLogo.logo-white.logo-playbook {
  background-image: url("../img/logo-playbook-white.05e10eefbd99.svg");
}

/*-------------------
 index CSS
---------------------*/
/* viewport の幅が 640px 以上 */
@media screen and (min-width: 640px) {
  .ssMainBtn {
    padding: 40px 0px 40px 30px;
    border-radius: 25px;
    margin-bottom: 20px;
    text-align: left;
  }

  .ss2colL {
    margin-left: 7%;
    margin-right: 3%;
  }

  .ss2colR {
    margin-left: 3%;
    margin-right: 7%;
  }

}

/* viewport の幅が 640px 以下 */
@media screen and (max-width: 640px) {
  .ssMainBtn {
    width: 80vw;
    margin: 10px;
    text-align: left;
  }
}

/*------------------------
 Table
--------------------------*/
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  background: #fff;
  padding: 4px 8px;
}

.table th:not(:last-child),
.table td:not(:last-child) {
  border-right: solid 1px #f1eae0;
}

.table thead tr th {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
}

.table > tbody > tr > th,
.table > tbody > tr > td {
  position: relative;
  height: 28px;
}

.table > tbody > tr:hover > th:before,
.table > tbody > tr:hover > td:before {
  content: "";
  position: absolute;
  top:0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(102, 97, 91, .05);
  pointer-events: none;
}

.table > thead > tr[disabled],
.table > tbody > tr[disabled],
.table > tfoot > tr[disabled] {
  background: #E3E3E3;
}

.table > thead > tr[disabled] > th,
.table > tbody > tr[disabled] > th,
.table > tfoot > tr[disabled] > th,
.table > thead > tr[disabled] > td,
.table > tbody > tr[disabled] > td,
.table > tfoot > tr[disabled] > td {
  opacity: .5;
}

.table > thead > tr.border-double > th,
.table > tbody > tr.border-double > th,
.table > tfoot > tr.border-double > th,
.table > thead > tr.border-double > td,
.table > tbody > tr.border-double > td,
.table > tfoot > tr.border-double > td {
  border-top-style: double;
  border-top-width: 3px;
}

.table-striped tbody > tr:nth-of-type(2n+1) > th,
.table-striped tbody > tr:nth-of-type(2n+1) > td {
  background-color: #F3F2EE;
}

.table.va-top > tbody > tr > th,
.table.va-top > tbody > tr > td {
  vertical-align: top;
}

table .progress {
  height: 15px;
  margin: 0;
}

table th {
  white-space: nowrap;
}

th.all-checked {
  box-sizing: border-box;
  width: 30px;
  padding: 4px !important;
}

td.editable {
  padding: 4px !important;
  width: 1%;
  text-align: center;
  white-space: nowrap;
}

td.editable.text-left {
  text-align: left;
}

td .col-md-6 {
  padding: 0 !important;
}

/* 変更されたセル - 編集で値が変わった */
.table .state-changed {
  background-color: #fff3cd;
}

/* 削除予定の行 - 取り消し線と半透明 */
.table tr.state-deleted td,
.table tr.state-deleted td input[type="number"] {
  text-decoration: line-through;
}
.table tr.state-deleted {
  opacity: 0.6;
}

/* プラスの値の背景色強調 */
.table .emphasis-bg-pos {
  background-color: rgba(0, 123, 255, 0.08);
}

/* マイナスの値の背景色強調 */
.table .emphasis-bg-neg {
  background-color: rgba(220, 53, 69, 0.08);
}
/*------------------------
 Table Fixed
--------------------------*/
.table-fixed {
  width: 100% !important;
  table-layout: fixed;
}

.table-fixed th,
.table-fixed td {
  white-space: normal !important;
  word-break: break-all !important;
}

/*-------------------
 Responsive tables
---------------------*/
* + .responsive-table {
  margin-top: 10px;
}

.responsive-table {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.responsive-table + * {
  margin-top: 15px;
}

.responsive-table .pager {
  margin: 0;
}

.responsive-table .overlay-mask {
  background-color: rgba(255, 255, 255, .5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
}

.table-responsive {
  overflow-x: auto;
  border: 1px solid #ccc5b9;
  background-color: #fff;
}

.table-responsive > table {
  margin: 0 !important;
  padding: 0 !important;
}

.table-responsive > .tbody-only tbody tr:first-child th,
.table-responsive > .tbody-only tbody tr:first-child td {
  border-top: none;
}

@media (max-width: 991px) {
  .table-responsive {
    margin-bottom: 0;
  }
}

/*-------------------
 Table Accordion Row
---------------------*/
.table > tbody.table-accordion-row:not(:first-of-type) > tr > th,
.table > tbody.table-accordion-row:not(:first-of-type) > tr > td {
  border-top: 1px solid #CCC5B9;
}

/*-------------------
 Preparation table
---------------------*/
.preparation-table {
  margin: 15px 5px !important;
  border-color: #ccc5b9 !important;
  border-width: 1px 0 0 1px !important;
}

.preparation-table th,
.preparation-table td {
  font-size: 13px !important;
  font-weight: normal !important;
  text-align: center;
  padding: 2px !important;
  border-color: #ccc5b9 #f1eae0 !important;
  border-width: 1px 1px 1px 0 !important;
  line-height: 2.3em !important;
  position: relative;
}

.preparation-table th {
  white-space: nowrap;
}

.preparation-table tr th:first-of-type,
.preparation-table tr th.header {
  background-color: #f3f2ee;
  border-right: 2px solid #ccc5b9 !important;
}

.preparation-table thead tr:last-of-type th {
  border-bottom: 2px solid #ccc5b9 !important;
}

.preparation-table tbody tr th.header.text-right {
  text-align: right;
}

.preparation-table tbody tr td.fw-bold {
  font-weight: bold !important;
}

.preparation-table .header-fill th,
.preparation-table th.header-fill {
  background-color: #f3f2ee;
}

.preparation-table .c_icon {
  position: relative;
}

.preparation-table input[type="number"] {
  width: 5em !important;
}

.preparation-table tbody + tbody tr:first-of-type th,
.preparation-table tbody + tbody tr:first-of-type td {
  border-top: 2px solid #ccc5b9 !important;
}

.preparation-table tr th.end-of-month,
.preparation-table tr td.end-of-month {
  border-right: 2px solid #ccc5b9 !important;
}

.preparation-table tbody tr.shop-header th,
.preparation-table tbody tr.shop-header td {
  background-color: #f3f2ee;
  font-size: 12px !important;
  font-weight: normal;
  line-height: 1 !important;
  text-align: left;
}

.preparation-table td.text-right {
  text-align: right;
  width: 1%;
  padding: 2px 5px!important;
}

.preparation-table td.selected:before  {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(102, 97, 91,.2);
}

.preparation-table > tbody > tr:hover > th:before,
.preparation-table > tbody > tr:hover > td:before {
  content: none;
}

/*-------------------
 BtnTable
---------------------*/
.btn-table {
  width: 100%;
}

.btn-table th {
  position: relative;
  font-size: 14px;
  font-weight: normal;
  line-height: 38px;
  padding: 0 15px 5px 0;
  vertical-align: top;
}

.btn-table th:after {
  content: ':';
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  text-align: center;
}

.btn-table td {
  width: 100%;
  padding-top: 5px;
  letter-spacing: -.4em;
}

.btn-table td > * {
  letter-spacing: normal;
}

.btn-table td > .btn,
.btn-table td > .btn-group,
.btn-table td > .form-control,
.btn-table td > .form-select,
.btn-table td > .flex-toolbar-text {
  margin-right: 5px;
  margin-bottom: 5px;
}

.btn-table td > .form-switch {
  height: 38px;
  margin-right: 5px;
}

.btn-table td .alert {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .btn-table:not(.no-wrap) th,
  .btn-table:not(.no-wrap) td {
    display: block;
  }

  .btn-table:not(.no-wrap) th {
    max-width: initial;
  }

  .btn-table:not(.no-wrap) th:after {
    content: none;
  }
}

/*-------------------
 StickyTable
---------------------*/
.sticky-table {
  height: auto;
  max-height: 95vh;
  overflow: auto;
}

.sticky-table.no-vertical-sticky {
  max-height: none;
}

.sticky-table table {
  width: auto;
  max-width: inherit;
  min-width: 100%;
}

.sticky-table th,
.sticky-table td {
  box-sizing: content-box;
}

.sticky-table table > thead > tr > th {
  border-bottom-color: #ccc5b9;
  border-bottom-width: 1px;
  border-top: none;
}

.sticky-table table > tbody > tr:first-child > th,
.sticky-table table > tbody > tr:first-child > td {
  border-top: none;
}

.sticky-table > table tr th:last-child,
.sticky-table > table tr td:last-child {
  border-right: none;
}

.sticky-table table > thead > tr > th,
.sticky-table table > thead > tr > td,
.sticky-table table > tbody > tr > th {
  position: -webkit-sticky !important;
  position: sticky !important;
  z-index: 100;
}

.sticky-table.fixed-midashi {
  z-index: 100;
}

.sticky-table table.fixed-midashi {
  table-layout: fixed;
}

.sticky-table table.fixed-midashi input,
.sticky-table table.fixed-midashi button,
.sticky-table table.fixed-midashi .move-handle {
  cursor: not-allowed;
}

/*-------------------
 ColorPicker (huebee)
---------------------*/
.color-picker {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.color-picker.is-inline {
  flex-direction: column;
  align-items: stretch;
}

.color-picker.inline-fc {
  display: inline-flex;
  width: auto;
  vertical-align: baseline;
}

.color-picker>input {
  flex-grow: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 22px !important;
  height: 38px;
  font: 500 14px 'Muli', Arial, sans-serif;
  background-color: #F3F2EE;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #66615b;
  padding: 7px 18px;
  margin: 0;
  margin-bottom: 5px;
  cursor: pointer;
  outline: none;
}

.color-picker.is-inline > input {
  cursor: initial;
}

.color-picker>input::placeholder {
  color: #cfcfca;
  -webkit-text-fill-color: #cfcfca;
}

.color-picker>i.fa-times {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -2.5px;
  transform: translateY(-50%);
  background-color: transparent!important;
  color: #66615b;
  font-size: 12px;
  cursor: pointer;
}

.color-picker:not(.is-inline) .color-palette {
  position: fixed;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #e8e7e3;
  margin: 5px 0;
  padding: 10px;
  z-index: 1000;
}

.color-picker:not(.is-inline) .color-palette:before,
.color-picker:not(.is-inline) .color-palette:after {
  content: "";
  position: absolute;
  left: 10px;
  border: 6px solid transparent;
}

.color-picker .color-palette:not(.is-top):before {
  top: -13px;
  border-bottom-color: #e8e7e3;
}

.color-picker .color-palette:not(.is-top):after {
  top: -12px;
  border-bottom-color: #ffffff;
}

.color-picker .color-palette.is-top:before {
  bottom: -13px;
  border-top-color: #e8e7e3;
}

.color-picker .color-palette.is-top:after {
  bottom: -12px;
  border-top-color: #ffffff;
}

.color-picker .color-palette table {
  table-layout: fixed;
}

.color-picker .color-palette table td {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.color-picker .color-palette table td.selected {
  box-shadow: 0 0 0 2.5px #fff inset;
}

.color-picker .color-palette .color-alpha {
  margin-top: 5px;
}

.color-picker .color-palette .color-alpha p {
  color: #252422;
  font-size: 14px;
  margin: 0;
}

/*-------------------
 SelectorBase
---------------------*/
.selector-base {
  position: fixed;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid #e8e7e3;
  border-radius: 4px;
  z-index: 1000;
}

.selector-base:before,
.selector-base:after {
  content: "";
  position: absolute;
  border: 6px solid transparent;
}

.selector-base.is-top:before {
  bottom: -13px;
  border-top-color: #e8e7e3;
}

.selector-base.is-top:after {
  bottom: -12px;
  border-top-color: #ffffff;
}

.selector-base:not(.is-top):before {
  top: -13px;
  border-bottom-color: #e8e7e3;
}

.selector-base:not(.is-top):after {
  top: -12px;
  border-bottom-color: #ffffff;
}

.selector-base.is-left:before,
.selector-base.is-left:after {
  right: 10px;
}

.selector-base:not(.is-left):before,
.selector-base:not(.is-left):after {
  left: 10px;
}

/*-------------------
 ColorSelector
---------------------*/
.color-selector-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/*-------------------
 SortPicker (huebee)
---------------------*/
.sort-picker {
  letter-spacing: -.4em!important;
  white-space: nowrap;
}

.sort-picker > * {
  letter-spacing: normal;
}

.sort-picker .btn {
  vertical-align: top;
}

/*-------------------
 Tooltip
---------------------*/
.sm-tooltip {
  display: inline-block;
  position: relative;
  color: #66615b;
  font-size: 14px;
  font-weight: initial;
}

.sm-tooltip.click-hold {
  cursor: pointer;
}

.sm-tooltip-balloon {
  display: none;
  opacity: 0;
  position: fixed;
  transform: translateX(-50%) translateY(-100%);
  transition: opacity 100ms ease;
  z-index: 10000;
  pointer-events: none;
}

.sm-tooltip-balloon-inner {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 5px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 3px;
  background-color: #66615b;
  filter: drop-shadow(0 2px 1px rgba(17, 16, 15, .2));
  word-break: break-all;
}

.sm-tooltip-balloon-inner ul {
  padding: 0 0 0 1em;
  margin: 0;
}

.sm-tooltip-balloon-inner:before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #66615b;
}

.sm-tooltip-balloon.right {
  transform: translateX(-15px) translateY(-100%);
}

.sm-tooltip-balloon.right .sm-tooltip-balloon-inner {
  text-align: left;
}

.sm-tooltip-balloon.right .sm-tooltip-balloon-inner:before {
  left: 15px
}

.sm-tooltip-balloon.left {
  transform: translateX(calc(-100% + 15px)) translateY(-100%);
}

.sm-tooltip-balloon.left .sm-tooltip-balloon-inner {
  text-align: left;
}

.sm-tooltip-balloon.left .sm-tooltip-balloon-inner:before {
  left: calc(100% - 15px);
}

.sm-tooltip.warning .sm-tooltip-icon {
  color: orange;
}

.sm-tooltip-balloon.warning .sm-tooltip-balloon-inner {
  color: #8a6d3b;
  background-color: #fcf8e3;
}

.sm-tooltip-balloon.warning .sm-tooltip-balloon-inner:before {
  border-top-color: #fcf8e3;
}

/*-------------------
 List Pager
---------------------*/
.list-pager {
  padding: 0 60px 0 60px !important;
}

.list-pager a {
  margin: 0 !important;
  padding: 0 !important;
  display: inline !important;
}

.list-pager a.right {
  float: right;
}

/*-------------------
 Flex Table Toolbar
---------------------*/
.flex-toolbar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 10px;
}

.flex-toolbar + .flex-toolbar {
  margin-top: -10px;
}

.flex-toolbar .flex-toolbar-left {
  flex-grow: 1;
}

.flex-toolbar .flex-toolbar-right .flex-toolbar-row {
  text-align: right;
}

.flex-toolbar .flex-toolbar-row {
  letter-spacing: -.4em;
}

.flex-toolbar .flex-toolbar-row > * {
  vertical-align: top;
  letter-spacing: normal;
}

.flex-toolbar .flex-toolbar-row .flex-toolbar-text {
  line-height: 38px;
}

.flex-toolbar .flex-toolbar-row .btn,
.flex-toolbar .flex-toolbar-row .dropdown,
.flex-toolbar .flex-toolbar-row .form-select,
.flex-toolbar .flex-toolbar-row .form-control,
.flex-toolbar .flex-toolbar-row .sort-picker,
.flex-toolbar .flex-toolbar-row .flex-toolbar-text {
  margin-bottom: 5px;
}

.flex-toolbar .flex-toolbar-row .btn:not(:last-child),
.flex-toolbar .flex-toolbar-row .dropdown:not(:last-child),
.flex-toolbar .flex-toolbar-row .form-select:not(:last-child),
.flex-toolbar .flex-toolbar-row .form-control:not(:last-child),
.flex-toolbar .flex-toolbar-row .sort-picker:not(:last-child),
.flex-toolbar .flex-toolbar-row .flex-toolbar-text:not(:last-child) {
  margin-right: 5px;
}

.flex-toolbar .flex-toolbar-row .dropdown .dropdown-toggle {
  margin-top: 0;
  margin-bottom: 0;
}

.flex-toolbar .flex-toolbar-row > .form-control {
  display: inline-block;
  width: 200px;
  height: 38px;
  margin-bottom: 5px;
}

.flex-toolbar .btn-group > .btn {
  padding-left: 5px;
  padding-right: 5px;
}

.flex-toolbar .btn-group > .btn:first-child {
  padding-left: 10px;
}

.flex-toolbar .btn-group > .btn:last-child {
  padding-right: 10px;
}

.flex-toolbar .btn-table,
.flex-toolbar .btn-table td {
  width: auto;
  padding: 0;
}

@media (max-width: 768px) {
  .flex-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .flex-toolbar .flex-toolbar-left,
  .flex-toolbar .flex-toolbar-right {
    width: 100%;
  }

  .flex-toolbar .flex-toolbar-left {
    order: 2;
  }

  .flex-toolbar .flex-toolbar-right {
    order: 1;
  }

  .flex-toolbar .flex-toolbar-right .flex-toolbar-row {
    text-align: left;
  }

  .flex-toolbar .flex-toolbar-row > .form-control {
    width: 100%;
  }
}

/*-------------------
 Tab Table
---------------------*/
.tab-table .nav-tabs-navigation {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 15px;
}

.tab-table .hidden {
  display: block !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
}

/*-------------------
 Nav Tabs Navigation
---------------------*/
.nav-tabs-navigation {
  margin-bottom: 15px;
}

.nav-tabs-navigation,
.nav-tabs > li.active:before {
  border-bottom-color: #ccc5b9;
}

.nav-tabs > li.active:before,
.nav-tabs > li.active:after {
  right: calc(50% - 11px);
}

.nav-tabs-navigation-wrapper {
  position: relative;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc5b9;
  display: flex;
  align-items: flex-end;
}

.nav-tabs-navigation-wrapper .nav-tabs-navigation {
  flex: 1;
  margin-bottom: 0;
  border-bottom: none;
}

.nav-tabs-navigation-wrapper .nav-tabs-navigation-right {
  margin-bottom: 15px;
}

@media (min-width: 992px) {
  .nav-tabs > li .nav-tabs-icon {
    display: none;
  }
}

@media (max-width: 992px) {
  .nav-tabs > li .nav-tabs-text {
    display: none;
  }
}

/*-------------------
 Intercom Activator
---------------------*/
#intercom-activator .slide-label {
  display: none;
}

#intercom-activator:hover .slide-label {
  display: inline-block;
  animation: slide-label .5s both;
  -webkit-animation: slide-label .5s both;
}

@keyframes slide-label {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@-webkit-keyframes slide-label {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*------------------------
 Generic Edit Selector
--------------------------*/
.generic-edit-selector {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 1000;
}

.generic-edit-selector > .form-select {
  width: 0;
  height: 0;
}

.generic-edit-selector > .form-select > .form-select-wrapper > .btn {
  width: 0;
  height: 0;
  padding: 0;
  border: none;
  opacity: 0;
}

.generic-edit-selector > .form-select > .form-select-wrapper > .btn > * {
  display: none;
}

/*------------------------
 Date Header
--------------------------*/
.date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.date-header .date-header-date {
  position: relative;
  font-size: 2.6em;
  font-weight: 400;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: 'Muli', "Helvetica", Arial, sans-serif;
}

.date-header .date-header-date > span {
  display: flex;
  align-items: center;
}

.date-header .date-header-date > span > i {
  font-size: .5em;
}

.date-header .date-header-date .date-header-selector {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.date-header .date-header-date .date-header-selector.datetime-picker-mobile {
  position: relative;
  margin-top: -35px;
  opacity: 1;
  cursor: pointer;
}

.date-header .date-header-date .date-header-selector.datetime-picker-mobile > .datetime-picker-mobile-input {
  width: 100%;
  height: 35px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.date-header .date-header-date .date-header-selector.datetime-picker-mobile .bootstrap-datetimepicker-widget {
  padding-bottom: 10px;
}

.date-header .date-header-change-date {
  flex-grow: 1;
  margin-left: 10px;
}

.date-header .date-header-change-date .btn,
.date-header .date-header-change-view .btn {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 18px;
  margin-right: 2px;
  float: left;
}

.date-header .date-header-change-date .btn:last-child,
.date-header .date-header-change-view .btn:last-child {
  margin-right: 0;
}


.date-header .date-header-change-date .btn[disabled],
.date-header .date-header-change-date .btn[disabled]:focus,
.date-header .date-header-change-date .btn[disabled]:hover {
  background-color: #E3E3E3;
  border-color: #E3E3E3;
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  color: #66615b;
}

@media (max-width: 550px) {
  .date-header {
    margin-bottom: 5px;
  }

  .date-header .date-header-date {
    width: 100%;
    font-size: 1.5em;
    line-height: 35px;
  }

  .date-header .date-header-date > span > i {
    font-size: .65em;
  }

  .date-header .date-header-change-date {
    margin-left: 0;
  }

  .date-header .date-header-change-date .btn,
  .date-header .date-header-change-view .btn {
    margin-right: 4px;
  }

  .date-header .date-header-change-date .btn {
    padding: 7px 15px;
  }

  .date-header .date-header-change-view .btn {
    padding: 7px 10px;
  }
}

/*-------------------
 Datetime Picker
---------------------*/
.bootstrap-datetimepicker-widget {
  position: fixed;
  bottom: auto !important;
  right: auto !important;
  color: #66615b;
  font-size: 14px;
}

.bootstrap-datetimepicker-widget.bottom {
  margin-top: 11px;
}

.bootstrap-datetimepicker-widget .table-condensed > tbody > tr > td.disabled,
.bootstrap-datetimepicker-widget .table-condensed > tbody > tr > th.disabled,
.bootstrap-datetimepicker-widget .table-condensed > tfoot > tr > td.disabled,
.bootstrap-datetimepicker-widget .table-condensed > tfoot > tr > th.disabled,
.bootstrap-datetimepicker-widget .table-condensed > thead > tr > td.disabled,
.bootstrap-datetimepicker-widget .table-condensed > thead > tr > th.disabled {
  cursor: not-allowed;
}

.datetime-picker-mobile .bootstrap-datetimepicker-widget {
  position: relative;
  padding-top: 5px;
  z-index: 1;
}

/*-------------------
 Date Period Picker
---------------------*/
.date-period-picker {
  display: inline-block;
}

.date-period-picker > .form-control {
  background-color: #f3f2ee;
  color: #66615b;
  cursor: pointer;
}

.date-period-picker.is-show  > .form-control,
.date-period-picker > .form-control:focus {
  background-color: #fff;
}

.date-period-picker .form-control > span {
  display: inline-block;
  width: 6em;
}

.date-period-picker .form-control > span:first-child {
  text-align: left;
}

.date-period-picker .form-control > span:last-child {
  text-align: right;
}

.date-period-picker .date-period-picker-widget {
  position: fixed;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #e8e7e3;
  width: 266px;
  max-width: 100%;
  margin: 5px 0;
  padding: 4px;
  z-index: 1000;
  box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.1);
}

.date-period-picker.is-mobile .date-period-picker-widget {
  position: relative;
  border-radius: 0;
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
}

.date-period-picker .date-period-picker-widget:before,
.date-period-picker .date-period-picker-widget:after {
  content: "";
  position: absolute;
  left: 10px;
  border: 6px solid transparent;
}

.date-period-picker.is-mobile .date-period-picker-widget:before,
.date-period-picker.is-mobile .date-period-picker-widget:after {
  content: none;
}

.date-period-picker .date-period-picker-widget:not(.is-top):before {
  top: -13px;
  border-bottom-color: #e8e7e3;
}

.date-period-picker .date-period-picker-widget:not(.is-top):after {
  top: -12px;
  border-bottom-color: #ffffff;
}

.date-period-picker .date-period-picker-widget.is-top:before {
  bottom: -13px;
  border-top-color: #e8e7e3;
}

.date-period-picker .date-period-picker-widget.is-top:after {
  bottom: -12px;
  border-top-color: #ffffff;
}

.date-period-picker .date-period-picker-widget .bootstrap-datetimepicker-widget {
  position: relative;
  bottom: auto !important;
  right: auto !important;
  color: #66615b;
  font-size: 14px;
}

.date-period-picker .date-period-picker-widget .bootstrap-datetimepicker-widget .start > div,
.date-period-picker .date-period-picker-widget .bootstrap-datetimepicker-widget .end > div,
.date-period-picker .date-period-picker-widget .bootstrap-datetimepicker-widget .selecting > div {
  background-color: #68B3C8;
  color: #FFFFFF;
}

.date-period-picker .date-period-picker-widget .bootstrap-datetimepicker-widget .between > div {
  background-color: rgba(104, 179, 200, .2);
}

.date-period-picker .date-period-picker-widget .date-period-picker-clear {
  width: 100%;
  height: 2.5em;
  margin-top: 2px;
  border-radius: 4px;
  color: #68B3C8;
  line-height: 2.5;
  text-align: center;
  cursor: pointer;
}

.date-period-picker .date-period-picker-widget .date-period-picker-clear:hover {
  background: #E3E3E3;
}

.date-period-picker .date-period-picker-widget .date-period-picker-inputs {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding: 5px;
}

.date-period-picker.is-mobile .date-period-picker-widget .date-period-picker-inputs {
  margin-bottom: 5px;
  padding: 0;
}

.date-period-picker .date-period-picker-widget .date-period-picker-inputs > .form-control {
  margin: 0;
}

.date-period-picker .date-period-picker-widget .date-period-picker-inputs > .form-control.placeholder {
  color: #cfcfca;
}

.date-period-picker .date-period-picker-widget .date-period-picker-inputs > span {
  margin: 0 5px;
}

/*-------------------
 Vuejs datepicker
---------------------*/
.vdp-datepicker__calendar {
  font-size: 14px !important;
  border: 0 none !important;
  border-radius: 6px;
  margin-top: 5px;
  padding: 0;
  -webkit-box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.1);
  box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.1);
}

.vdp-datepicker__calendar header {
  line-height: 30px !important;
}

.vdp-datepicker__calendar header span {
  width: calc(100% - 90px) !important;
  height: 30px;
  margin: 5px;
  border-radius: 3px;
}

.vdp-datepicker__calendar header .prev,
.vdp-datepicker__calendar header .next {
  width: 30px !important;
  height: 30px;
  margin: 5px;
  border-radius: 50%;
}

.vdp-datepicker__calendar header .prev:after,
.vdp-datepicker__calendar header .next:after {
  border-width: 5px !important;
}

.vdp-datepicker__calendar header .prev:after {
  border-right-width: 6px !important;
  margin-left: -3px !important;
}

.vdp-datepicker__calendar header .next:after {
  border-left-width: 6px !important;
  margin-left: 3px !important;
}

.vdp-datepicker__calendar header .prev:not(.disabled):hover,
.vdp-datepicker__calendar header .next:not(.disabled):hover,
.vdp-datepicker__calendar header .up:not(.disabled):hover {
  background: #E3E3E3 !important;
}

.vdp-datepicker__calendar .cell.selected,
.vdp-datepicker__calendar .cell.selected:hover {
  background: #68b3c8 !important;
  color: #fff;
}

.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).day:hover,
.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).month:hover,
.vdp-datepicker__calendar .cell:not(.blank):not(.disabled).year:hover {
  background: #E3E3E3;
  border-color: transparent !important;
}

.vdp-datepicker__calendar .month,
.vdp-datepicker__calendar .year {
  width: 40px !important;
  border-radius: 50%;
  margin: 5px 17.5px;
  padding: 0 !important;
}

/*------------------------
 Info Table
--------------------------*/
.info-table {
  border: none !important;
  margin-bottom: 15px;
}

.info-table > tbody > tr > th,
.info-table > tbody > tr > td {
  border: none !important;
  padding: 4px 10px !important;
  height: auto !important;
  word-break: break-all;
}

.info-table > tbody > tr > th {
  width: 170px;
  text-align: right;
}

.info-table > tbody > tr:hover > th:before,
.info-table > tbody > tr:hover > td:before {
  content: none;
}

@media (max-width: 550px) {
  .info-table > tbody > tr > th,
  .info-table > tbody > tr > td {
    display: block;
    text-align: left;
  }
}

.info-table > tbody > tr > td.section-header,
.info-table > tbody > tr > th.section-header {
  background-color: #f3f2ee;
  font-weight: bold;
  text-align: left;
}

/*-------------------
 Search Box
---------------------*/
.search-box {
  position: relative;
}

.search-box i {
  color: #9a9a9a;
  position: absolute;
  top: 13px;
  left: 5px;
}

.search-box .form-control {
  padding-left: 25px;
}

/*------------------------
 Query Builder
--------------------------*/
.query-builder .rule-container,
.query-builder .rule-placeholder,
.query-builder .rules-group-container {
  border-color: #e8e7e3;
  background: #fff;
}

.query-builder .rules-group-header .group-conditions .btn.active:hover {
  background-color: #5e8283;
  color: #FFFFFF;
  border-color: #5e8283;
}

.query-builder .rules-group-header .group-conditions .btn.disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
  color: #7A9E9F;
}

.query-builder .rules-group-header .group-conditions .btn.disabled:hover {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
}

.query-builder .rules-group-header .group-actions [data-add="group"] {
  border-top-right-radius: 26px !important;
  border-bottom-right-radius: 26px !important;
}

.query-builder .rules-group-header .group-actions [data-delete="group"],
.query-builder .rules-group-body .rule-header .rule-actions [data-delete="rule"] {
  border-color: transparent;
  background: none;
}

.query-builder .rules-group-header .group-actions [data-delete="group"]:hover ,
.query-builder .rules-group-body .rule-header .rule-actions [data-delete="rule"]:hover {
  color: #c84513;
}

.query-builder .rules-group-header .group-actions [data-delete="group"] {
  border-radius: 26px;
  margin-left: 5px;
}

.query-builder .rules-group-body .rule-header .rule-actions [data-delete="rule"] {
  margin-top: 7px;
}

.query-builder-preview .query-builder-preview-rules {
  padding-left: 40px;
}

.query-builder-preview .query-builder-preview-rules .query-builder-preview-rule {
  position: relative;
}

.query-builder-preview .query-builder-preview-rules .query-builder-preview-rule:before {
  content: "";
  position: absolute;
  left: -16px;
  top: calc(50% - 2.5px);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #252422;
}

/*------------------------
 Loading Icon
--------------------------*/
.loading-icon {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.loading-icon:before {
  content: "\f251";
}

.loading-icon,
.loading-icon:before {
  -webkit-animation: loading-icon 1.5s linear infinite;
  animation: loading-icon 1.5s linear infinite;
}

@keyframes loading-icon {
  0% {
    content: "\f251";
  }
  25% {
    content: "\f252";
  }
  50% {
    content: "\f253";
  }
  75% {
    content: "\f253";
    -webkit-transform: rotate(0);
  }
  100% {
    content: "\f253";
    -webkit-transform: rotate(180deg);
  }
}

@-webkit-keyframes loading-icon {
  0% {
    content: "\f251";
  }
  25% {
    content: "\f252";
  }
  50% {
    content: "\f253";
  }
  75% {
    content: "\f253";
    transform: rotate(0);
  }
  100% {
    content: "\f253";
    transform: rotate(180deg);
  }
}

/*------------------------
 Button Accordion
--------------------------*/
.button-accordion {
  overflow: hidden;
  display: block !important;
}

.button-accordion.button-accordion-enter-active,
.button-accordion.button-accordion-leave-active {
  transition: height 0.3s;
}

.button-accordion-title {
  display: flex;
  align-items: baseline;
  margin: 0;
}

.button-accordion-title .sm-tooltip {
  margin-left: 3.5px;
}

.button-accordion-title button {
  padding: 0 !important;
  margin-left: 10px;
}

.dl-horizontal > dd .button-accordion + .btn {
  padding: 0;
  border: none !important;
}

.dl-horizontal > dd .button-accordion:not([style*="display: none;"]) + .btn {
  margin-top: 10px;
}

/*------------------------
 Text Accordion
--------------------------*/

.text-accordion {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}

.text-accordion-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: pre-wrap;
  word-break: break-all;
}

/*------------------------
 ijw-edit
--------------------------*/
.ijw-edits {
  display: flex;
  align-items: start;
}

.ijw-edits .ijw-edits-arrow {
  margin: 12px 5px 0;
}

.ijw-edits .ijw-edits-btns {
  margin-top: 5px;
  margin-left: 5px;
}

.ijw-edit-sub-kinds-selector {
  display: inline-flex;
  flex-direction: column;
}

.ijw-edit-sub-kinds-selector .btn-group .btn {
  width: 50%;
  margin: 0;
  border-radius: 0;
}

.ijw-edit-sub-kinds-selector .btn-group .btn:first-child {
  border-top-left-radius: 5px;
}

.ijw-edit-sub-kinds-selector .btn-group .btn:last-child {
  border-top-right-radius: 5px;
}

.ijw-edit-sub-kinds-selector .btn-group .btn.btn-fill {
  pointer-events: none;
}

.ijw-edit-sub-kinds-selector .form-select > .form-select-wrapper > .form-select-selector {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/*------------------------
 Output
--------------------------*/
.output-header {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.4em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.output-header h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4em;
  margin: 0;
}

/*-------------------
 Toggle Display Buttons
---------------------*/
.toggle-display-buttons > .btn {
  margin-bottom: 5px;
}

.toggle-display-buttons .toggle-display-buttons-wrapper > .btn,
.toggle-display-buttons .toggle-display-buttons-wrapper > .btn-group,
.toggle-display-buttons .toggle-display-buttons-wrapper > .form-select {
  margin-right: 5px;
  margin-bottom: 5px;
}

/*-------------------
 Filter Labels
---------------------*/
.filter-labels .filter-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #66615B;
  padding: 3px 6px;
  margin: 0 5px 5px 0;
  border-radius: 12px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.filter-labels .filter-label i {
  width: calc(1rem + 6px);
  padding: 3px;
  margin-left: 3px;
  cursor: pointer;
}

.blink {
  animation: blink-animation 2s ease-in-out infinite;
}

@keyframes blink-animation {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

/*-------------------
 Vue Tags Input
---------------------*/
.vue-tags-input {
  max-width: none !important;
}

.form-control:focus {
  border: 1px solid #e8e7e3;
  background-color: #FFFFFF;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0 !important;
}

.vue-tags-input .ti-input {
  height: 38px;
  background-color: #F3F2EE;
  border: 1px solid #e8e7e3 !important;
  border-radius: 4px;
  padding: 7px !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #66615b;
  font: 500 14px 'Muli', Arial, sans-serif;
  line-height: 22px !important;
}

.vue-tags-input.ti-focus .ti-input {
  background-color: #FFFFFF;
  border: 1px solid #e8e7e3 !important;
}

.vue-tags-input .ti-new-tag-input-wrapper {
  margin: 0 !important;
  padding: 0 !important;
  color: #66615b;
  font: 500 14px 'Muli', Arial, sans-serif !important;
  line-height: 22px !important;
}

.vue-tags-input .ti-new-tag-input {
  background-color: transparent;
}

.vue-tags-input .ti-new-tag-input::placeholder {
  color: #cfcfca;
  -webkit-text-fill-color: #cfcfca;
}

.vue-tags-input .ti-tag {
  margin: 0 2px !important;
  font: 500 14px 'Muli', Arial, sans-serif !important;
}

/*-------------------
 Other
---------------------*/
.text-black {
  color: #252422;
}

.nowrap {
  white-space: nowrap;
}

.inline-fc {
  display: inline-block !important;
  width: auto !important;
}

.move-handle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  background-color: #799;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: move;
  vertical-align: middle;
}

.card-content > p {
  font-size: 14px;
}

pre.agency_page {
  white-space: pre-wrap;
  overflow: none;
}

.cursor-pointer {
  cursor: pointer;
}

.pointer-events-none {
  pointer-events: none;
}

.forgot {
  margin-top: 15px;
}

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

.no-padding {
  padding: 0 !important;
}

.shop-detail .right-text-tabs .tab-pane {
  max-height: 500px;
  overflow: auto;
}

.shop-detail .right-text-tabs .tab-pane .table-responsive {
  max-height: 500px;
}

.trail-suggest {
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
}

.mce-notification {
  display: none !important;
}

.tag {
  background: #5c6bc0;
  color: #ffffff;
  border-radius: 2px;
  padding: 3px 5px;
  margin: 2px;
  font-size: .85em;
}

.day-6,
.fc-sat {
  color: blue !important;
}

.day-0,
.day-holiday,
.fc-sun {
  color: red !important;
}

.is-today {
  position: relative;
}

.is-today:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-right: 6px solid #66615B;
  border-bottom: 6px solid transparent;
}

.pseudo-hidden {
  display: block !important;
  height: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  margin: 0 !important;
}

.inline-edit .changed {
  border-color: orange;
}

.inline-edit .has-error {
  border-color: red !important;
}
