/*----------------------------------------------------------------------
 Project:        Izy - Responsive HTML Template Based On Twitter Bootstrap 3.3.4 Version:        1.0

-----------------------------------------------------------------------*/
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

body,
table,
div,
article,
aside,
p,
span,
b,
i {
  color: var(--primary-text-color);
}

svg .stroke-none {
  stroke: none !important;
}

.blue-icon path {
  fill: var(--additional-blue-color);
  stroke: var(--additional-blue-color);
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

p.small {
  font-size: 14px;
}

.toolbar-user-image {
  width: 35px;
  height: 35px;
  border-radius: 100%;
}

.chip {
  font-size: 0.87em;
  margin-bottom: 12px;
  box-shadow: 3px 4px 4px -3px #887d90;
}

.chip * {
  padding: 0;
  margin: 0;
}

.chip.chip-bordered {
  border: 1px solid #ddd;
}

.chip.chip-bordered .chip-header,
.chip.chip-bordered .chip-body {
  padding: 12px;
}

.chip.chip-bordered .chip-header {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.chip .icon {
  float: left;
  margin-right: 12px;
}

.chip .icon img,
.chip .icon .acronym {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.chip .icon .acronym {
  display: inline-block;
  color: var(--primary-text-color);
  background-color: #1b6d85;
  padding-left: 20px;
  line-height: 3.5;
  font-size: 1.2em;
}

.chip .chip-heading {
  margin-top: 8px;
  float: left;
}

.chip .extra {
  margin-top: 12px;
  float: right;
}

.chip .extra .fa {
  font-size: 1.4em;
}

.chip .info-text {
  margin-bottom: 8px;
}

.chip .info-text .main-text {
  font-weight: bold;
}

/****CSS Loader***********/
.cssload-parent {
  position: relative;
}

.cssload-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background: rgba(0, 0, 0, 0.5);
}

.cssload-container {
  position: relative;
  top: 50%;
}

.cssload-whirlpool,
.cssload-whirlpool::before,
.cssload-whirlpool::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid #cccccc;
  border-left-color: black;
  border-radius: 699px;
  -o-border-radius: 699px;
  -ms-border-radius: 699px;
  -webkit-border-radius: 699px;
  -moz-border-radius: 699px;
}

.cssload-whirlpool {
  z-index: 99999999;
  margin: -17px 0 0 -17px;
  height: 35px;
  width: 35px;
  animation: cssload-rotate 1150ms linear infinite;
  -o-animation: cssload-rotate 1150ms linear infinite;
  -ms-animation: cssload-rotate 1150ms linear infinite;
  -webkit-animation: cssload-rotate 1150ms linear infinite;
  -moz-animation: cssload-rotate 1150ms linear infinite;
}

.cssload-whirlpool::before {
  content: "";
  margin: -16px 0 0 -16px;
  height: 31px;
  width: 31px;
  animation: cssload-rotate 1150ms linear infinite;
  -o-animation: cssload-rotate 1150ms linear infinite;
  -ms-animation: cssload-rotate 1150ms linear infinite;
  -webkit-animation: cssload-rotate 1150ms linear infinite;
  -moz-animation: cssload-rotate 1150ms linear infinite;
}

.cssload-whirlpool::after {
  content: "";
  margin: -20px 0 0 -20px;
  height: 39px;
  width: 39px;
  animation: cssload-rotate 2300ms linear infinite;
  -o-animation: cssload-rotate 2300ms linear infinite;
  -ms-animation: cssload-rotate 2300ms linear infinite;
  -webkit-animation: cssload-rotate 2300ms linear infinite;
  -moz-animation: cssload-rotate 2300ms linear infinite;
}

@keyframes cssload-rotate {
  100% {
    transform: rotate(360deg);
  }
}

@-o-keyframes cssload-rotate {
  100% {
    -o-transform: rotate(360deg);
  }
}

@-ms-keyframes cssload-rotate {
  100% {
    -ms-transform: rotate(360deg);
  }
}

@-webkit-keyframes cssload-rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes cssload-rotate {
  100% {
    -moz-transform: rotate(360deg);
  }
}

/**** css loader end ******/
.entering {
  opacity: 0;
}

.entered {
  opacity: 1;
}

.exiting {
  opacity: 0;
}

/******Toaster notification style ***********************/
#nico-toast-container {
  position: fixed;
  z-index: 99999;
}

#nico-toast-container.left {
  left: 10px;
  top: 10px;
}

#nico-toast-container.right {
  right: 10px;
  top: 10px;
}

#nico-toast-container .nico-alert {
  background: white;
  -webkit-transition:
    opacity 0.5s,
    visibility 1s;
  -moz-transition:
    opacity 0.5s,
    visibility 1s;
  -ms-transition:
    opacity 0.5s,
    visibility 1s;
  -o-transition:
    opacity 0.5s,
    visibility 1s;
  transition:
    opacity 0.5s,
    visibility 1s;
  opacity: 0;
  margin-bottom: 5px;
}

#nico-toast-container .nico-alert.entering {
  opacity: 0;
}

#nico-toast-container .nico-alert.entered {
  opacity: 1;
}

#nico-toast-container .nico-alert.exiting {
  opacity: 0;
}

.nico-alert-success {
  border: 1px solid #278679;
}

.nico-alert-danger {
  border: 1px solid #a72632;
}

.nico-alert-ban {
  border: 1px solid #d04141;
}

.nico-alert-warning {
  border: 1px solid #bf6d19;
}

.nico-alert-default {
  border: 1px solid #9a9a9a;
}

.nico-alert-info {
  border: 1px solid #5f779a;
}

.nico-alert {
  box-shadow: 0.5px 1px 1px #a7a7a7;
}

.nico-alert .alert-icon {
  padding: 11px 14px;
  margin-right: 8px;
  color: #ffffff;
  font-size: 1.1em;
  top: 0;
}

.nico-alert-success .alert-icon {
  background-color: #278679;
}

.nico-alert-ban .alert-icon {
  background-color: #d04141;
}

.nico-alert-default .alert-icon {
  background-color: #9a9a9a;
}

.nico-alert-info .alert-icon {
  background-color: #5f779a;
}

.nico-alert-warning .alert-icon {
  background-color: #bf6d19;
}

.nico-alert-danger .alert-icon {
  background-color: #a72632;
}

.nico-alert .close {
  padding-top: 14px;
  padding-right: 7px;
  padding-left: 7px;
}

/***********end toaster notification style ***************/
/************* Nico Tooltip ************************/
.has-form-error .form-group {
  position: relative;
}

.nico-tooltip.entering {
  height: 0;
}

.nico-tooltip {
  -webkit-transition:
    opacity 600ms,
    height 250ms;
  -moz-transition:
    opacity 600ms,
    height 250ms;
  -ms-transition:
    opacity 600ms,
    height 250ms;
  -o-transition:
    opacity 600ms,
    height 250ms;
  transition:
    opacity 600ms,
    height 250ms;
}

.nico.upload-file-container {
  /** Resets **/ /** end of resets **/ /** for detach feedback **/
}

.nico.upload-file-container * {
  margin: 0;
  padding: 0;
}

.nico.upload-file-container [type="file"] {
  display: none;
}

.nico.upload-file-container .progress-container .progress {
  margin: 0;
  padding: 0;
}

.nico.upload-file-container label {
  cursor: pointer;
}

.nico.upload-file-container .detached {
  position: fixed;
  width: 250px;
  border: 1px solid #999999;
  box-shadow: 1px 1px 4px 0 #cccccc;
  top: 40%;
  left: 40%;
  background: #ffffff;
}

.nico.upload-file-container .detached .progress-container {
  padding: 10px 40px 7px 10px;
}

.nico.upload-file-container .detached .progress-container .progress {
  margin-top: 10px;
  margin-bottom: 4px;
  height: 10px;
}

.nico.upload-file-container .detached .cross {
  cursor: pointer;
  position: absolute;
  top: 0;
  display: block;
  right: 0;
  background: #ccc;
  padding: 19.5px 8px;
}

.nico.upload-file-container .detached .feedback {
  text-align: center;
  font-size: 0.8em;
}

::-webkit-scrollbar {
  width: 7px;
  height: 4px;
  background-color: var(--secondary-background-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--light-text-color);
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-background-color);
}

html {
  overflow-x: hidden;
}

html,
html a,
body {
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1.5;
  font-family: "Poppins", "Avenir", sans-serif;
  letter-spacing: 0.25px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 15px;
  background: #626a6d;
}

.body-ovrflw {
  overflow: hidden;
}

.color-secondary {
  color: #5bbfeb !important;
}

p {
  line-height: 1.6;
}

a {
  cursor: pointer;
  outline: 0;
}

a:focus,
a:hover,
a:active {
  outline: 0;
  cursor: pointer;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.5;
  font-family: "Poppins", "Avenir", sans-serif;
}

figure {
  overflow: hidden;
}

pre {
  background-color: rgba(0, 0, 0, 0.4);
  color: #f8f8f2;
  white-space: pre-wrap;
  font-family: "Avenir", sans-serif;
  border: 0;
}

.row {
  margin: 0 -10px;
}

.row *[class*="col-"] {
  padding: 0 10px;
}

:active,
:focus {
  outline: none;
}

.flex-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: row;
}

.toggle-bar {
  background: transparent;
  border: none;
  padding: 15px;
  font-size: 18px;
  margin-right: 33px;
}

.status-success {
  color: #1a9c43 !important;
}

.status-warning {
  color: #f0ad4e !important;
}

.status-danger {
  color: #ef3333 !important;
}

.status-info {
  color: var(--additional-blue-color) !important;
}

.status-gray {
  color: var(--light-text-color) !important;
}

.info-bg {
  background: #5bbfeb !important;
}

.warning-bg {
  background: #f0ad4e !important;
}

.danger-bg {
  background: #ef3333 !important;
}

.color-white {
  color: #fff !important;
}

.wrapper {
  overflow: hidden;
  flex: 1 0 auto;
}

.label {
  padding: 0.3em 0.6em;
  font-size: 11px;
  vertical-align: middle;
}

.label-wrapped {
  display: inline-block;
  white-space: normal;
  padding: 4px 2px;
}

.page-search form .flex-container .action-bar {
  margin-left: auto;
}

.page-search form .flex-container .form-group:first-child {
  flex: 1 1 25%;
  max-width: 25%;
}

.page-search form .flex-container .form-group:nth-child(2) {
  padding-left: 20px;
  flex: 1 1 10%;
  max-width: 10%;
}

.page-search form .flex-container .form-group:nth-child(3) {
  flex: 1 1 33%;
  max-width: 33%;
  margin-left: auto;
}

.page-search form .flex-container .form-group.form-group-button {
  margin-left: 20px;
  flex: 1 1 10%;
  max-width: 10%;
}

.page-search form .flex-container .form-group.custom-filter {
  max-width: 26%;
  flex: 1 1 26%;
  margin-left: auto;
}

.page-search form .flex-container .input-group:first-child {
  flex: 1 1 25%;
  max-width: 25%;
}

.page-search form .flex-container .input-group:nth-child(2) {
  padding-left: 20px;
  flex: 1 1 25%;
  max-width: 25%;
}

.page-search form .flex-container .date-group:first-child {
  flex: 1 1 25%;
  max-width: 25%;
}

.page-search form .flex-container .date-group:nth-child(2) {
  padding-left: 20px;
  flex: 1 1 25%;
  max-width: 25%;
}

.page-search form .flex-container .date-group.form-group-button {
  margin-left: 20px;
  flex: 1 1 10%;
  max-width: 10%;
}

.page-search form .flex-container .date-group .selectiongroup {
  height: 55px;
  background: transparent;
}

.page-search form .flex-container .date-group .selectiongroup input {
  background: rgba(0, 0, 0, 0.2);
  height: 50px !important;
  border: none;
  padding: 10px 25px;
  color: #fff;
}

.page-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 0 30px;
  align-items: center;
  border: none;
  padding: 0;
}

.page-header .page-description h1 i {
  font-size: 18px;
  color: #5bbfeb;
}

.page-header .page-description .page-title {
  color: var(--primary-text-color);
  margin-bottom: 5px;
}

.page-header .page-description p {
  color: var(--light-text-color);
  margin-bottom: 0;
}

.tab-header {
  width: 100%;
  position: relative;
}

.tab-header .filter {
  flex: 1 1 100%;
  max-width: 100%;
}

.tab-header .action-bar {
  margin-left: auto;
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: auto;
}

.filter {
  margin-bottom: 15px;
  border-bottom: 2px solid var(--primary-text-color);
}

.filter > li {
  font-size: 15px;
  padding: 0;
  margin-bottom: -1px;
}

.filter > li.dropdown {
  float: right;
}

.filter > li.dropdown:after {
  clear: both;
}

.filter > li > a {
  font-weight: normal;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 22px;
  border-bottom: 4px solid transparent;
  transition-duration: 250ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  padding: 0 25px 15px;
}

.filter > li > a.active {
  text-shadow: 1px 0px 0px #000;
  border-bottom: 4px solid var(--lapis-120);
}

.filter > li > a:hover {
  border-bottom: 4px solid #5bbfeb;
}

.filter > li > a small {
  display: block;
  font-size: 70%;
}

.progress-container .feedback {
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.progress-container .progress {
  height: 5px;
  margin-top: 10px;
  margin-bottom: 5px;
  background: #fff;
}

.black-overlay {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.custom-badge,
.badge-warning,
.badge-info,
.badge-danger,
.badge-success {
  font-size: 11px;
  padding: 5px 10px;
  display: inline-block;
  border-radius: 6px;
  text-transform: uppercase;
  min-width: 90px;
  text-align: center;
}

.badge-warning {
  border: 1px solid #f0ad4e;
}

.badge-info {
  border: 1px solid #5bbfeb;
}

.badge-danger {
  border: 1px solid #ef3333;
}

.badge-success {
  border: 1px solid #1a9c43;
}

#nico-toast-container .nico-alert {
  background: rgba(0, 0, 0, 0.9);
  border: none !important;
  box-shadow: none !important;
  color: #fff;
  position: relative;
  padding: 10px 35px 10px 50px;
}

#nico-toast-container .nico-alert .alert-icon {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: auto;
  height: 100%;
}

#nico-toast-container .nico-alert .alert-icon:before {
  vertical-align: middle;
  height: 100%;
}

#nico-toast-container .nico-alert-success .alert-icon {
  background: #1a9c43;
  vertical-align: middle;
}

#nico-toast-container .nico-alert-info .alert-icon {
  background: #5bbfeb;
  vertical-align: middle;
}

#nico-toast-container .nico-alert-warning .alert-icon {
  background-color: #f0ad4e;
  vertical-align: middle;
}

#nico-toast-container .nico-alert-danger .alert-icon {
  background: #ef3333;
  vertical-align: middle;
}

#nico-toast-container .close {
  float: none;
  color: #fff;
  opacity: 1;
  background: transparent !important;
  text-shadow: none;
  width: auto;
  height: 100%;
  font-size: 21px;
  position: absolute;
  top: 0;
  left: auto;
  right: 5px;
  bottom: auto;
  display: inline-block;
  padding: 9px;
  vertical-align: middle;
}

.nico-tooltip {
  position: absolute;
  background: transparent;
  color: #ef3333;
  border-radius: 2px;
  font-size: 12px;
  font-weight: normal;
  box-shadow: none;
  padding: 0;
  bottom: 0;
  left: 0;
}

.nico-tooltip.entered {
  height: auto;
}

.time-slot-wrapper .time-slot-item {
  margin-top: 30px;
  padding: 20px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(66, 69, 70, 0.3);
}

.time-slot-wrapper .time-slot-item .flex-container {
  justify-content: space-between;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel:last-child
  .panel-default {
  border-bottom: none;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel:last-child
  .panel-default
  .panel-heading {
  padding-bottom: 0;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel:first-child
  .panel-default
  .panel-heading {
  padding-top: 0;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel
  .panel-default {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel
  .panel-default
  > .panel-heading {
  border: none;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel
  .panel-default
  > .panel-heading
  + .panel-collapse
  > .panel-body {
  padding: 0 5px 20px;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel
  .panel-heading {
  padding: 10px 0;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel
  .in {
  transition: 1s ease-in-out;
  -moz-transition: 1s ease-in-out;
  -o-transition: 1s ease-in-out;
  -webkit-transition: 1s ease-in-out;
}

.time-slot-wrapper
  .time-slot-item
  .dark-accordion.panel-group
  accordion
  panel
  .table {
  margin-bottom: 0;
}

.time-slot-wrapper .time-slot-item .panel-body {
  padding: 0;
}

.time-slot-wrapper .time-slot-item header {
  position: relative;
  width: 50%;
  padding-bottom: 10px;
}

.time-slot-wrapper .time-slot-item header.panel-title {
  width: 100%;
  padding-bottom: 0;
}

.time-slot-wrapper .time-slot-item header.panel-title a {
  display: block;
  height: auto;
}

.time-slot-wrapper .time-slot-item header.panel-title i {
  font-size: 30px;
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 20px;
}

.time-slot-wrapper .time-slot-item header .media-heading {
  color: #fff;
  font-weight: 600;
}

.time-slot-wrapper .time-slot-item header .media-body p {
  margin-bottom: 0;
}

.time-slot-wrapper .time-slot-item header .media-left {
  padding-right: 20px;
}

.time-slot-wrapper .time-slot-item header .media-object {
  height: 65px;
  width: 65px;
  border-radius: 4px;
}

.time-slot-wrapper .time-slot-item header .media-object img {
  object-fit: cover;
  height: inherit;
  width: inherit;
}

.time-slot-wrapper .time-slot-item a {
  margin-left: auto;
  height: 40px;
}

.time-slot-wrapper .time-slot-item a.btn-sm {
  padding: 10px 15px;
}

.add-menu {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  min-height: 350px;
}

.add-menu .input-group .input-group-addon {
  background: #5bbfeb;
  color: #fff;
  border: none;
  padding: 10px 20px;
}

.add-menu .input-group .input-group-addon i {
  font-size: 18px;
}

.add-menu h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.lunch-menu-item-list {
  margin-top: 15px;
}

.lunch-menu-item-list.scrollable {
  max-height: 460px;
  overflow-y: scroll;
}

.lunch-menu-item-list::-webkit-scrollbar {
  width: 5px;
  background-color: var(--secondary-text-color);
}

.lunch-menu-item-list::-webkit-scrollbar-thumb {
  background-color: var(--light-text-color);
}

.lunch-menu-item-list::-webkit-scrollbar-track {
  background-color: var(--secondary-background-color);
}

.lunch-menu-item-list:after {
  clear: both;
}

.lunch-menu-item-list li {
  margin-bottom: 15px;
  margin-right: 10px;
}

.lunch-menu-item-list li .close {
  font-size: 13px;
  height: 25px;
  width: 25px;
  text-align: center;
  padding-top: 5px;
  opacity: 1;
  position: absolute;
  top: -10px;
  left: auto;
  right: 0;
  bottom: auto;
  color: #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.lunch-menu-item-list li .media {
  border-radius: 4px;
  position: relative;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lunch-menu-item-list li .media figure {
  height: 55px;
  width: 55px;
}

.lunch-menu-item-list li .media figure img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}

.lunch-menu-item-list li .media .media-body {
  width: 100%;
}

.lunch-menu-item-list li .media .media-body .media-heading {
  color: #fff;
  font-size: 14px;
  max-width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lunch-menu-item-list li .media .media-body .checkbox {
  position: absolute;
  top: 35%;
  left: auto;
  right: 10px;
  bottom: auto;
  z-index: 5;
  display: block;
}

.lunch-menu-item-list li .media .media-body .checkbox:after {
  clear: both;
}

.lunch-menu-item-list li .media .label {
  display: inline-block;
  max-width: 250px;
  white-space: normal;
  overflow: visible;
  text-align: left;
}

.add-time-slot-wrapper h4 {
  font-size: 15px;
  color: #fff;
}

.add-time-slot-wrapper .image-thumbnail .custom-input-block + label {
  width: 30px;
  height: 30px;
  right: 10px;
}

.add-time-slot-wrapper .image-thumbnail .custom-input-block + label span {
  font-size: 12px;
}

.add-time-slot-wrapper .image-thumbnail figure {
  height: 125px;
  width: 100%;
  border-radius: 4px;
}

.add-time-slot-wrapper .image-thumbnail figure img {
  height: inherit;
  width: inherit;
  object-fit: cover;
}

.add-time-slot-wrapper .selected-lunch-menu-items {
  min-height: 280px;
  padding-right: 17px;
  margin-bottom: 30px;
}

.add-time-slot-wrapper .selected-lunch-menu-items.added-menu-list {
  overflow-y: scroll;
  max-height: 280px;
}

.add-time-slot-wrapper
  .selected-lunch-menu-items.added-menu-list::-webkit-scrollbar {
  width: 5px;
  background-color: var(--secondary-text-color);
}

.add-time-slot-wrapper
  .selected-lunch-menu-items.added-menu-list::-webkit-scrollbar-thumb {
  background-color: var(--light-text-color);
}

.add-time-slot-wrapper
  .selected-lunch-menu-items.added-menu-list::-webkit-scrollbar-track {
  background-color: var(--secondary-background-color);
}

.add-time-slot-wrapper .lunch-menu-item-list {
  height: auto;
  overflow: visible;
}

.add-time-slot-wrapper .lunch-menu-item-list li {
  margin-right: 0;
  margin-bottom: 20px;
}

.add-time-slot-wrapper .lunch-menu-item-list li .form-control {
  display: inline-block;
  height: 28px;
  width: 80px;
  padding: 5px;
  margin-left: 10px;
  font-size: 12px;
  position: absolute;
  top: auto;
  left: auto;
  right: 10px;
  bottom: auto;
  box-shadow: none;
}

.add-time-slot-wrapper .lunch-menu-item-list li:after {
  clear: both;
  display: block;
}

.add-time-slot-wrapper button {
  margin-left: 20px;
}

.add-time-slot-wrapper textarea {
  max-height: 85px;
}

.hot-dish {
  width: 60%;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 4px;
}

.hot-dish figure {
  margin-right: 5%;
  height: 200px;
}

.hot-dish figure img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}

.hot-dish article {
  color: #fff;
}

.hot-dish article .hot-dish-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hot-dish article p:last-child {
  margin-bottom: 0;
}

.hot-dish .close {
  opacity: 1;
  color: var(--primary-text-color);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding-top: 10px;
  font-size: 16px;
  position: absolute;
  top: -20px;
  left: auto;
  right: -10px;
  bottom: auto;
  z-index: 5;
}

.canteen-info-wrapper .canteen-details figure img,
.canteen-form-wrapper .canteen-details figure img,
.canteen-info-wrapper .canteen-info-wrapper figure img,
.canteen-form-wrapper .canteen-info-wrapper figure img {
  width: 100%;
  height: auto;
}

.canteen-info-wrapper {
  background: var(--secondary-background-color);
  padding: 30px;
  border-radius: 4px;
  position: relative;
}

.canteen-info-wrapper .canteen-details {
  padding-right: 20px;
}

.canteen-info-wrapper .canteen-details article h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-right: 35px;
}

.canteen-info-wrapper .canteen-details article h3 a {
  position: absolute;
  right: 0;
  top: 4px;
}

.canteen-info-wrapper .canteen-details article p strong {
  color: #5bbfeb;
}

.canteen-info-wrapper .canteen-details article p:last-child {
  margin-bottom: 0;
}

.canteen-info-wrapper .canteen-details article i {
  font-size: 18px;
  color: #5bbfeb;
  padding-right: 15px;
}

.canteen-info-wrapper .canteen-details:after {
  content: " ";
  width: 1px;
  height: inherit;
  display: block;
  background: #666666;
  position: absolute;
  top: 10px;
  left: auto;
  right: 15px;
  bottom: 10px;
}

.canteen-info-wrapper .beacon h3 {
  margin-bottom: 20px;
}

.canteen-info-wrapper .beacon ul li {
  margin-bottom: 20px;
}

.canteen-info-wrapper .beacon ul li:last-child {
  margin-bottom: 0;
}

.canteen-info-wrapper .beacon ul li i {
  color: var(--additional-blue-color);
  padding-right: 15px;
}

.canteen-info-wrapper .close {
  opacity: 1;
  display: inline-block;
  text-align: center;
  padding-top: 10px;
  font-size: 16px;
  position: absolute;
  top: -20px;
  left: auto;
  right: -10px;
  bottom: auto;
  z-index: 5;
}

.canteen-form-wrapper.nico-modal .modal-dialog {
  width: 100%;
  margin: 0 !important;
}

.canteen-form-wrapper .mb-15 {
  margin-bottom: 15px !important;
}

.canteen-form-wrapper .image-thumbnail .custom-input-block + label {
  right: 5px;
}

.office-details {
  width: 60%;
  position: relative;
  background: var(--secondary-background-color);
  padding: 30px;
  border-radius: 4px;
}

.office-details .office-details-title {
  padding-bottom: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  border-bottom: 2px solid #666666;
}

.office-details .office-details-title i {
  color: #5bbfeb;
}

.office-details p i {
  color: #5bbfeb;
  padding-right: 10px;
  width: 30px;
}

.office-details p strong {
  display: inline-block;
  padding-right: 10px;
}

.office-details .close {
  opacity: 1;
  display: inline-block;
  padding-top: 10px;
  font-size: 16px;
  text-align: center;
  z-index: 5;
  position: absolute;
  top: -20px;
  left: auto;
  right: -10px;
  bottom: auto;
}

.office-details p.activation {
  margin-bottom: 5px;
}

.office-details .office-details-footer {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid #666666;
}

.office-details .office-details-body {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #666666;
}

.office-details.visma-details {
  margin-top: 30px;
}

.close {
  background-color: #5bbfeb;
  width: 40px;
  height: 40px;
  font-size: 28px;
  border-radius: 50%;
}

.has-dark-bg {
  background: var(--secondary-background-color);
  padding: 30px 32px 17px 32px;
  border-radius: 4px;
}

.def-manage-data .office-details p {
  margin-bottom: 0;
}

.def-manage-data .office-details .office-details-footer {
  padding: 0;
  margin: 0;
  border: 0;
}

.def-manage-data .office-details .office-details-footer .status-info {
  margin-top: 15px;
  margin-bottom: 0;
  line-height: 20px;
  font-size: 14px;
}

.dropdown-menu {
  padding: 0;
  margin-top: 0;
}

.main-header .user-options > ul > li .dropdown-menu {
  width: 480px;
  max-width: 480px;
  border: none;
  margin: 0;
  background: #424546;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 0;
  position: absolute;
  top: 80px;
  left: auto;
  right: -30px;
  bottom: auto;
}

.main-header .user-options > ul > li .dropdown-menu:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #f2f2f2;
  position: absolute;
  top: -15px;
  left: auto;
  right: 45px;
  bottom: auto;
}

.main-header .user-options > ul > li .dropdown-menu .dropdown-title {
  background: #f2f2f2;
  padding: 10px 20px;
  letter-spacing: 1px;
  font-size: 13px;
  border-radius: 4px 4px 0 0;
  font-weight: 700;
  border-bottom: 1px solid #e6e6e6;
}

.main-header .user-options > ul > li .dropdown-menu ul {
  height: 300px;
  overflow-y: scroll;
}

.main-header .user-options > ul > li .dropdown-menu ul::-webkit-scrollbar {
  width: 5px;
  background-color: var(--secondary-text-color);
}

.main-header
  .user-options
  > ul
  > li
  .dropdown-menu
  ul::-webkit-scrollbar-thumb {
  background-color: var(--light-text-color);
}

.main-header
  .user-options
  > ul
  > li
  .dropdown-menu
  ul::-webkit-scrollbar-track {
  background-color: var(--secondary-background-color);
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a {
  justify-content: space-between;
  align-content: center;
  color: #fff;
  white-space: initial;
  flex-direction: row;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a > figure {
  flex: 0 0 50px;
  height: 50px;
  max-width: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a > figure img {
  width: 100%;
  height: 50px;
  object-fit: cover;
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a > p {
  flex: 0 0 85%;
  max-width: 85%;
  margin: 0;
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a > p b {
  color: #5bbfeb;
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a > p span {
  display: block;
  font-size: 11px;
  margin-top: 5px;
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a:hover {
  background: rgba(0, 0, 0, 0.5);
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a.unread {
  background: rgba(0, 0, 0, 0.1);
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a.unread:hover,
.main-header .user-options > ul > li .dropdown-menu ul > li > a.unread:focus {
  background: rgba(0, 0, 0, 0.2);
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a.read {
  background: transparent;
}

.main-header .user-options > ul > li .dropdown-menu ul > li > a.read:hover,
.main-header .user-options > ul > li .dropdown-menu ul > li > a.read:focus {
  background: rgba(0, 0, 0, 0.2);
}

.main-header .user-options > ul > li .dropdown-menu ul > li:last-child a {
  border: none;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  position: static;
}

.dropdown-submenu.toggle-dropdown > .dropdown-menu {
  display: block;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

.authentication {
  background: #313334;
  display: flex;
  height: 100vh;
  justify-content: center;
}

.authentication .flex-container {
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.authentication .flex-container figure {
  border-right: 1px solid rgba(91, 191, 235, 0.2);
  flex-basis: 1;
  padding: 150px 60px;
  flex-basis: 45%;
  justify-content: center;
}

.authentication .flex-container figure img {
  margin: 0 auto;
  display: block;
  max-height: 205px;
  width: auto;
  max-width: 100%;
}

.authentication .flex-container .authentication-form {
  flex-basis: 45%;
  flex-direction: column;
  padding: 0 0 0 60px;
}

.authentication .flex-container .authentication-form h1 {
  text-transform: uppercase;
  margin-bottom: 40px;
}

.authentication .flex-container .authentication-form .form-group-lg {
  margin-bottom: 40px;
}

.authentication
  .flex-container
  .authentication-form
  .form-group-lg
  .form-control {
  height: 65px;
  max-height: 65px;
  padding: 10px 16px 10px 25px;
  color: var(--primary-text-color);
  caret-color: var(--primary-text-color);
  -webkit-text-fill-color: var(--primary-text-color);
  outline: none;
}

.authentication
  .flex-container
  .authentication-form
  .form-group-lg
  .form-control:focus {
  border-color: var(--light-text-color);
}

.authentication
  .flex-container
  .authentication-form
  .form-group-lg.has-error
  .nico-tooltip {
  text-shadow: none;
}

.authentication .flex-container .authentication-form-buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.authentication .flex-container .authentication-form-buttons .link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.activation-body {
  margin-top: 50px;
}

.body-wrap {
  width: 100%;
  color: #fff;
}

.emailer-container {
  display: block;
  clear: both;
  margin: 0 auto;
  max-width: 580px;
  font-size: 14px;
}

.emailer-container table {
  width: 100%;
  border-collapse: collapse;
}

.emailer-container .masthead {
  padding: 20px 0;
}

.emailer-container .masthead .emailer-header img {
  width: auto;
  max-width: 220px;
  max-height: 150px;
  display: block;
  margin: 0 auto;
}

.emailer-container .content {
  font-family: Arial, sans-serif;
  padding: 30px 35px;
  color: #fff;
  background: #272a2c;
  text-align: center;
}

.emailer-container .content .link_btn img {
  max-width: 240px;
}

.emailer-container .content .link_block {
  margin: 30px 0;
}

.emailer-container .content h4 {
  font-family: Arial, sans-serif;
  font-size: 25px;
  margin-bottom: 25px;
  font-weight: 600;
}

.emailer-container .content p {
  margin: 0 0 15px;
}

.link_text {
  color: #5bbfeb;
}

.table.table-dark {
  margin-bottom: 0;
}

.table.table-dark > thead {
  border: none;
  margin-bottom: 15px;
}

.table.table-dark > thead tr {
  border: none;
}

.table.table-dark > thead tr th {
  cursor: pointer;
  color: var(--light-text-color);
  word-wrap: break-word;
  white-space: inherit;
  border: none;
  padding-bottom: 15px;
}

.table.table-dark > tbody > tr {
  background: var(--secondary-background-color);
  margin-bottom: 15px;
  border-radius: 4px;
}

.table.table-dark > tbody > tr.spacer {
  height: 10px;
  box-shadow: none;
}

.table.table-dark > tbody > tr > th {
  padding: 10px 0;
  color: var(--light-text-color);
  font-size: 16px;
  border-top: none;
  vertical-align: middle;
}

.table.table-dark > tbody > tr > td {
  font-size: 15px;
  border-top: none;
  height: 80px;
  padding: 8px;
  vertical-align: middle;
  word-wrap: break-word;
}

.table.table-dark > tbody > tr > td .label-small-blue {
  overflow: hidden;
  text-overflow: ellipsis;
}

.table.table-dark > tbody > tr > td:first-child {
  border-radius: 4px 0 0 4px;
}

.table.table-dark > tbody > tr > td:last-child {
  border-radius: 0 4px 4px 0;
}

.table.table-dark > tbody > tr > td small {
  color: #5bbfeb;
}

.table.table-dark > tbody > tr > td > i {
  color: #5bbfeb;
  padding-right: 10px;
}

.table.table-dark > tbody > tr > td figure {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  height: 55px;
  width: 55px;
}

.table.table-dark > tbody > tr > td figure img {
  height: 55px;
  width: 100%;
  object-fit: cover;
}

.table.table-dark > tbody > tr > td .table-list {
  padding: 0 0 0 15px;
  margin-bottom: 0;
}

.table.table-dark > tbody > tr > td .text-overflow {
  max-width: 80%;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
}

.table.table-dark > tbody > tr > td .table-title {
  margin-bottom: 0;
  width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table.table-dark tr.no-data {
  text-align: center;
}

.table.table-dark .item-icon {
  font-size: 30px;
}

.table.table-dark tr[disabled],
.table.table-dark tr:disabled {
  opacity: 0.8;
}

.table.table-dark tr th.action {
  width: 121px;
}

.table.table-dark tr th.al-actions {
  width: 170px;
}

.table.table-dark.table-order tbody tr td {
  padding: 10px;
}

.table.table-dark.table-order tbody tr td .form-control {
  width: 55px;
  padding: 10px;
  text-align: center;
}

.table.table-dark.table-order tbody tr td:last-child {
  text-align: right;
}

.table.table-dark.table-order tbody tr td:nth-child(2) {
  width: 95px;
}

.table {
  margin-bottom: 0;
}

.table .actions {
  margin-bottom: 0;
  margin-top: 10px;
}

.table .actions li {
  padding-right: 15px;
  font-size: 24px;
}

.table .actions li:last-child {
  padding-right: 0;
}

.table .actions li a:disabled,
.table .actions li a[disabled] {
  cursor: not-allowed;
}

.table .actions li .fa-save,
.table .actions li .fa-edit,
.table .actions li .fa-undo,
.table .actions li .edit-record {
  color: #5bbfeb;
}

.table .actions li .fa-save.disabled,
.table .actions li .fa-edit.disabled,
.table .actions li .fa-undo.disabled,
.table .actions li .edit-record.disabled {
  color: gray;
}

.table .actions li .fa-trash-o,
.table .actions li .fa-ban,
.table .actions li .remove-record {
  color: #ef3333;
}

.table .actions li .fa-trash-o.disabled,
.table .actions li .fa-ban.disabled,
.table .actions li .remove-record.disabled {
  color: gray;
}

.table .actions li .fa-close {
  color: #ef3333;
}

.table .actions li.active a {
  color: #5bbfeb;
}

.table .actions li.disabled a {
  color: #999999;
}

.table .actions li i {
  vertical-align: middle;
}

.table .actions[disabled],
.table .actions:disabled {
  cursor: not-allowed;
}

.action-column {
  width: 120px;
}

.table.table-accordion > tbody > tr td {
  border: none;
  vertical-align: middle;
  font-size: 15px;
  padding: 10px 0;
}

.table.table-accordion > tbody > tr td img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  padding-right: 10px;
}

.table.table-accordion > tbody > tr td i {
  color: #5bbfeb;
}

.table.table-accordion > tbody > tr td:nth-child(1) {
  width: 5%;
}

.table.table-accordion > tbody > tr td:nth-child(2) {
  width: 45%;
}

.table.table-accordion > tbody > tr td:nth-child(3) {
  width: 25%;
  font-size: 13px;
}

.table.table-accordion > tbody > tr td:nth-child(4) {
  width: 20%;
  text-align: right;
}

.table.table-accordion > tbody > tr td img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  padding-right: 10px;
}

.table.table-accordion > tbody > tr th {
  border: none;
}

.table.table-time-slots tbody tr td {
  vertical-align: top;
  padding-top: 30px;
}

.table.table-time-slots tbody tr td:last-of-type a {
  font-size: 20px;
}

.table.table-time-slots tbody tr td:last-of-type a + a {
  margin-left: 20px;
}

.table.table-time-slots tbody tr.is-holiday .add-time-slot {
  opacity: 0.5;
  pointer-events: none;
}

.table.table-bordered-header-only {
  table-layout: fixed;
}

.table.table-bordered-header-only thead tr th {
  word-wrap: break-word;
  white-space: inherit;
}

.profile .image-thumbnail figure img {
  width: 135px;
  height: 135px;
  object-fit: cover;
  border-radius: 50%;
}

.nico-modal .modal-dialog .modal-body .form-group .image-thumbnail figure img,
.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  > .cover-image-upload
  > figure
  > img,
.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  > figure
  > img,
.nico-modal .modal-dialog .item-details .item-header figure img,
.nico-modal .modal-dialog .item-image img,
.nico-modal.has-ft-img .item-details > img,
.nico-modal.has-ft-img .news-thumbnail > img,
.add-time-slot-wrapper .image-thumbnail.image-thumbnail-small figure img,
.canteen-info-wrapper .canteen-details figure img,
.canteen-form-wrapper .canteen-details figure img,
.order-image img,
.def-comment-activities ul li .def-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery.full-width-page-gallery .form-group .image-thumbnail .close,
.nico-modal .modal-dialog .modal-body .form-group .close,
.nico-modal
  .modal-dialog
  .modal-body
  .gallery
  .form-group
  .image-thumbnail
  .close,
.nico-modal .modal-dialog .modal-body .form-group .close {
  font-size: 13px;
  height: 25px;
  width: 25px;
  text-align: center;
  top: -10px;
  background: rgba(0, 0, 0, 0.5);
}

.gallery.full-width-page-gallery .form-group .image-thumbnail .close {
  background: var(--primary-color);
}

.nico-modal .modal.cancellation-dialog .modal-footer button:first-child {
  float: left;
}

.nico-modal .modal.cancellation-dialog .modal-footer button:last-child {
  background: var(--status-danger);
}

.nico-modal .modal {
  background: var(--background-color-dialog);
}

.nico-modal .modal.confirm-dialog .modal-footer {
  padding: 30px;
}

.nico-modal .modal-dialog {
  margin: 80px auto 30px;
}

.nico-modal .modal-dialog .modal-content {
  background: var(--secondary-background-color);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.nico-modal .modal-dialog .modal-header {
  border: none;
  padding: 20px 30px 0;
}

.nico-modal .modal-dialog .modal-header .close {
  opacity: 1;
  color: #fff;
  background: #5bbfeb;
  float: none;
  text-shadow: none;
  position: absolute;
  top: -20px;
  left: auto;
  right: -20px;
  bottom: auto;
}

.nico-modal .modal-dialog .modal-body {
  padding: 15px 30px 0;
}

.nico-modal .modal-dialog .modal-body::-webkit-scrollbar {
  width: 5px;
  background-color: var(--secondary-text-color);
}

.nico-modal .modal-dialog .modal-body::-webkit-scrollbar-thumb {
  background-color: var(--light-text-color);
}

.nico-modal .modal-dialog .modal-body::-webkit-scrollbar-track {
  background-color: var(--secondary-background-color);
}

.full-width-page-gallery .close,
.nico-modal .modal-dialog .modal-body .close {
  height: 40px;
  width: 40px;
  opacity: 1;
  font-size: 28px;
  border-radius: 50%;
  background: #5bbfeb;
  float: none;
  text-shadow: none;
  z-index: 99;
  position: absolute;
  top: -20px;
  left: auto;
  right: -20px;
  bottom: auto;
}

.nico-modal .modal-dialog .modal-body header {
  margin-bottom: 20px;
}

.nico-modal .modal-dialog .modal-body .gallery .control-label {
  margin-bottom: 10px;
}

.gallery.full-width-page-gallery .form-group .image-thumbnail {
  width: 160px;
  height: 160px;
  box-shadow: 0 2px 4px rgba(25, 25, 25, 0.5);
  border-radius: 4px;
}

.gallery.full-width-page-gallery .form-group .image-thumbnail figure,
.nico-modal
  .modal-dialog
  .modal-body
  .gallery
  .form-group
  .image-thumbnail
  figure {
  border-radius: 4px;
  width: 100%;
}

.gallery.full-width-page-gallery .form-group .image-thumbnail figure {
  height: 160px;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .custom-input-block
  + label,
.nico-modal
  .modal-dialog
  .modal-body
  .gallery
  .form-group
  .image-thumbnail
  .custom-input-block
  + label {
  right: 10px;
  height: 30px;
  width: 30px;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .custom-input-block
  + label
  span,
.nico-modal
  .modal-dialog
  .modal-body
  .gallery
  .form-group
  .image-thumbnail
  .custom-input-block
  + label
  span {
  font-size: 14px;
  margin: 5px 0;
}

.gallery.full-width-page-gallery .form-group .image-thumbnail .close,
.nico-modal
  .modal-dialog
  .modal-body
  .gallery
  .form-group
  .image-thumbnail
  .close {
  right: -9px;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .main-image-checkbox {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  color: #fff;
  padding-left: 10px;
  border-radius: 0 0 4px 4px;
  background-color: #fff;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .main-image-checkbox
  input[type="checkbox"] {
  margin: 0;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .main-image-checkbox
  input[type="checkbox"]:checked {
  background: var(--primary-color);
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .main-image-checkbox
  .checkbox {
  margin: 0;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .main-image-checkbox
  .checkbox
  .styled-checkbox
  + label:before {
  width: 18px;
  height: 18px;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .main-image-checkbox
  .checkbox
  .styled-checkbox:checked
  + label:after {
  font-size: 11px;
}

.gallery.full-width-page-gallery
  .form-group
  .image-thumbnail
  .main-image-checkbox
  span {
  line-height: 12px;
}

.nico-modal .modal-dialog .modal-body .form-group {
  margin-bottom: 20px;
}

.nico-modal .modal-dialog .modal-body .form-group .link {
  padding: 16px 0;
  display: inline-block;
}

.nico-modal .modal-dialog .modal-body .form-group .close {
  right: 0;
}

.nico-modal .modal-dialog .modal-body .form-group .image-thumbnail {
  position: relative;
}

.nico-modal .modal-dialog .modal-body .form-group .image-thumbnail.small {
  width: 50px;
}

.nico-modal .modal-dialog .modal-body .form-group .image-thumbnail .relaod {
  font-size: 18px;
  position: absolute;
  left: 10px;
  bottom: 4px;
  z-index: 11;
}

.nico-modal .modal-dialog .modal-body .form-group .image-thumbnail figure {
  height: 135px;
  border-radius: 4px;
  overflow: hidden;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-thumbnail.small
  figure {
  height: 50px;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-thumbnail.small
  .custom-input-block
  + label {
  height: 30px;
  width: 30px;
  right: -10px;
  margin: 0;
  bottom: -7px;
}

.full-width-page-gallery .col-md-4 {
  width: auto;
}

.full-width-page-gallery
  .form-group
  .image-thumbnail
  .custom-input-block
  + label,
.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-thumbnail
  .custom-input-block
  + label {
  right: 10px;
}

.gallery .custom-input + label > span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
  border-radius: 4px;
}

.gallery.full-width-page-gallery .custom-input + label > span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
  height: 160px;
  width: 160px;
  border-radius: 4px;
}

.full-width-page-gallery .caption {
  margin: 25px 0 27px;
}

.gallery .custom-input + label span b {
  font-size: 30px;
  font-weight: 200;
  line-height: 30px;
  padding-bottom: 5px;
  color: var(--additional-blue-color);
}

.nico-modal .modal-dialog .modal-body .form-group .image-full-width-thumbnail {
  margin-bottom: 50px;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  .black-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  .image-thumbnail {
  position: absolute;
  top: -100px;
  left: 30px;
  right: auto;
  bottom: auto;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  .image-thumbnail
  .custom-input-block {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  .image-thumbnail
  .custom-input-block
  + label {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 10px;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  .image-thumbnail
  .custom-input-block
  + label
  span {
  display: block;
  font-size: 18px;
  margin: 7px 0;
  color: #fff;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  > .row {
  position: absolute;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  > .cover-image-upload
  > figure {
  height: 200px;
}

.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  > figure {
  height: 200px;
}

.nico-modal .modal-dialog .modal-body .form-group.has-error {
  margin: 0 0 20px;
}

.nico-modal .modal-dialog .modal-body .form-control.custom-select select {
  width: 83%;
}

.nico-modal .modal-dialog .modal-footer {
  border: none;
  padding: 0 30px 30px;
}

.nico-modal .modal-dialog .modal-footer .output {
  vertical-align: middle;
  display: inline-block;
  width: 56%;
}

.nico-modal .modal-dialog .item-details .item-header {
  width: 100%;
  margin: 10px 0 20px;
  z-index: 99;
}

.nico-modal .modal-dialog .item-details .item-header figure {
  border-radius: 6px;
  height: 110px;
  width: 110px;
  overflow: hidden;
}

.nico-modal .modal-dialog .item-details .item-header .item-info {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
}

.nico-modal .modal-dialog .item-details .item-header .item-info i {
  color: #5bbfeb;
  padding-left: 5px;
  display: inline-block;
}

.nico-modal .modal-dialog .item-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.nico-modal .modal-dialog .item-image {
  height: 135px;
  margin-bottom: 20px;
  position: relative;
}

.nico-modal .modal-dialog .invoice-users p {
  margin: 10px 0;
}

.nico-modal .modal-dialog .item-highlight {
  color: #5bbfeb !important;
  font-weight: 700;
  margin-bottom: 0;
}

.nico-modal .modal-dialog .item-description .btn-custom {
  margin: 30px 0 15px;
}

.nico-modal .modal-dialog .item-description .item-price li {
  font-size: 16px;
  padding-right: 5%;
}

.nico-modal .modal-dialog .item-description .item-price li span {
  font-size: 24px;
  font-weight: 600;
}

.nico-modal .modal-dialog .item-user {
  color: #5bbfeb;
  margin-bottom: 10px;
}

.nico-modal .modal-dialog .item-user span {
  color: var(--primary-text-color);
  display: block;
  font-size: 15px;
  margin-top: -2px;
}

.nico-modal .modal-dialog .item-invoice table {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.nico-modal .modal-dialog .item-invoice table tr > td {
  vertical-align: middle;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  padding: 20px 8px;
}

.nico-modal .modal-dialog .item-invoice table tr > td:first-child {
  width: 70%;
}

.nico-modal .modal-dialog .item-invoice table tr > td:nth-child(2) {
  width: 30%;
}

.nico-modal .modal-dialog .item-invoice .item-invoice-print {
  position: absolute;
  right: 30px;
  top: 44px;
}

.nico-modal .modal-dialog .item-invoice .item-total {
  margin-top: 20px;
}

.nico-modal .modal-dialog .item-invoice .item-total .list-group {
  margin-bottom: 0;
}

.nico-modal
  .modal-dialog
  .item-invoice
  .item-total
  .list-group
  .list-group-item {
  background: transparent;
  padding: 5px;
  border: none;
  text-transform: uppercase;
}

.nico-modal
  .modal-dialog
  .item-invoice
  .item-total
  .list-group
  .list-group-item
  span {
  float: right;
  text-transform: initial;
}

.nico-modal
  .modal-dialog
  .item-invoice
  .item-total
  .list-group
  .list-group-item
  span:after {
  clear: both;
}

.nico-modal .modal-dialog .item-invoice .item-transaction {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

.nico-modal .modal-dialog .item-invoice .item-transaction .list-unstyled {
  flex: 1;
}

.nico-modal .modal-dialog .item-invoice .transaction-id {
  color: var(--light-text-color);
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  width: 265px;
}

.nico-modal .modal-dialog .item-invoice .transaction-id small,
.nico-modal .modal-dialog .item-invoice .transaction-id p {
  display: block;
  font-size: 13px;
}

.nico-modal .modal-dialog .item-invoice .item-unit-price {
  font-size: 18px;
  color: #fff;
  text-align: right;
  font-weight: 300;
}

.nico-modal .modal-dialog .item-invoice.conference-meals {
  font-size: 13px;
}

.nico-modal .modal-dialog .item-invoice.conference-meals h3 {
  min-height: 60px;
  padding-right: 35px;
}

.nico-modal .modal-dialog .item-invoice.conference-meals .scrollable {
  max-height: 230px;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .scrollable
  .item-unit-price {
  padding-right: 20px;
}

.nico-modal .modal-dialog .item-invoice.conference-meals .item-transaction {
  padding: 0 0 13px 0;
  margin: 0 0 20px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.nico-modal .modal-dialog .item-invoice.conference-meals .list-unstyled li {
  line-height: 21px;
}

.nico-modal .modal-dialog .item-invoice.conference-meals .color-white {
  font-size: 15px;
}

.nico-modal .modal-dialog .item-invoice.conference-meals .table tbody tr td {
  font-size: 15px;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .table
  tbody
  tr
  td
  .item-highlight {
  font-size: 13px;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .additional-item-details {
  margin: 0 0 10px 0;
  word-wrap: break-word;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .additional-item-details
  .col-md-6 {
  line-height: 22px;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .additional-item-details
  .col-md-6:nth-child(2n + 1) {
  clear: left;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .additional-item-details
  .col-md-6:nth-of-type(even) {
  text-align: right;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .additional-item-details
  .col-md-12,
.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .additional-item-details
  .item-description
  p {
  line-height: 22px;
}

.nico-modal .modal-dialog .item-invoice.conference-meals .item-total,
.nico-modal .modal-dialog .item-invoice.conference-meals .item-unit-price {
  font-size: 15px;
}

.nico-modal .modal-dialog .item-invoice.conference-meals .item-description {
  margin: 0 0 20px 0;
}

.nico-modal .modal-dialog .item-invoice.lunch-ordered .info-bg {
  margin-right: 8px;
}

.nico-modal .modal-dialog .item-invoice.purchased-service .scrollable {
  max-height: 407px;
}

.nico-modal
  .modal-dialog
  .item-invoice.purchased-service
  .scrollable
  .item-unit-price {
  padding-right: 20px;
}

.nico-modal .modal-dialog .item-layouts {
  margin-top: 15px;
}

.nico-modal .modal-dialog .item-layouts .media {
  padding: 12px 8px;
  background: rgba(91, 191, 235, 0.3);
  margin-bottom: 20px;
  border-radius: 4px;
  color: #fff;
}

.nico-modal .modal-dialog .item-layouts .media .media-heading {
  font-size: 15px;
  margin-bottom: 0;
}

.nico-modal .modal-dialog .item-layouts .media.disabled {
  background: rgba(255, 255, 255, 0.3);
}

.nico-modal .modal-dialog .item-layouts .media .media-body,
.nico-modal .modal-dialog .item-layouts .media .media-left,
.nico-modal .modal-dialog .item-layouts .media .media-right {
  vertical-align: middle;
}

.nico-modal .modal-dialog .item-layouts .media .media-left .media-object {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nico-modal.has-ft-img .item-details {
  margin: -15px -30px 60px;
  position: relative;
  height: 200px;
}

.nico-modal.has-ft-img .item-details .item-header {
  padding: 0 25px;
  position: absolute;
  top: auto;
  left: auto;
  right: auto;
  bottom: -45px;
  width: 100%;
  z-index: 99;
  margin: 0;
}

.nico-modal.has-ft-img .item-details .item-title {
  height: 60px;
}

.nico-modal.has-ft-img .black-overlay {
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.nico-modal.has-ft-img .news-thumbnail {
  margin: -15px -30px 15px;
  position: relative;
}

.nico-modal .input-group {
  margin-bottom: 20px;
}

.nico-modal .bst-adv-dropdown .dropdown-menu {
  min-width: 100%;
  max-height: 300px;
  overflow-y: scroll;
  background: #424546;
  width: 100%;
}

.nico-modal .bst-adv-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 5px;
  background-color: var(--secondary-text-color);
}

.nico-modal .bst-adv-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--light-text-color);
}

.nico-modal .bst-adv-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--secondary-background-color);
}

.nico-modal .bst-adv-dropdown .dropdown-menu li > ul {
  margin: 0;
  padding: 0;
}

.nico-modal .bst-adv-dropdown .dropdown-menu li > ul > li {
  list-style: none;
}

.nico-modal .bst-adv-dropdown .dropdown-menu li > ul > li > strong > a {
  color: #fff;
  padding: 15px 4px;
  display: block;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.nico-modal .bst-adv-dropdown .dropdown-menu li > ul > li > strong > a:hover {
  color: #5bbfeb;
}

.nico-modal .bst-adv-dropdown .dropdown-menu li > ul > li > .item-list-wrapper {
  background: var(--secondary-background-color);
  padding: 5px 8px;
  cursor: pointer;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--primary-text-color);
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li:last-child
  > .item-list-wrapper {
  border-bottom: none;
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li
  > .item-list-wrapper
  > figure {
  display: inline-block;
  overflow: hidden;
  margin-right: 10px;
  height: 40px;
  width: 40px;
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li
  > .item-list-wrapper
  > figure
  img {
  width: 100%;
  object-fit: contain;
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li
  > .item-list-wrapper
  > span
  a {
  color: var(--primary-text-color);
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li
  > .item-list-wrapper
  > p {
  margin: 0;
  width: 100%;
  display: block;
  color: var(--light-text-color);
  font-size: 85%;
  line-height: 18px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li
  > .item-list-wrapper
  .label {
  margin-left: 5px;
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li
  > .item-list-wrapper:hover {
  background: var(--additional-light-mint-color);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.scrollable {
  max-height: 600px;
  overflow-y: scroll;
}

.scrollable::-webkit-scrollbar {
  width: 5px;
  background-color: var(--secondary-text-color);
}

.scrollable::-webkit-scrollbar-thumb {
  background-color: var(--light-text-color);
}

.scrollable::-webkit-scrollbar-track {
  background-color: var(--secondary-background-color);
}

.ql-container {
  box-sizing: border-box;
  font-size: 14px;
  height: 140px;
  margin: 0;
  position: relative;
}

.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}

.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}

.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  cursor: text;
  top: 50%;
}

.ql-editor {
  box-sizing: border-box;
  width: 100%;
  height: 140px;
  overflow: auto;
  padding: 17px 25px;
  border-radius: 4px;
  border-width: 1px;
  color: var(--primary-text-color);
  white-space: pre-wrap;
  overflow-wrap: break-word;
  letter-spacing: normal;
  word-spacing: normal;
  display: inline-block;
  margin: 0;
}

.ql-editor:focus {
  border-color: #5bbfeb;
  webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.ql-editor.ql-blank::before {
  content: attr(data-placeholder);
  left: 25px;
  pointer-events: none;
  position: absolute;
  right: 25px;
  color: rgba(255, 255, 255, 0.3);
}

.ql-editor > * {
  cursor: text;
}

.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}

.ql-editor ol > li {
  list-style-type: none;
}

.ql-editor ul > li {
  list-style-type: none;
}

.ql-editor ul > li::before {
  content: "\2022";
}

.ql-editor ul[data-checked="true"],
.ql-editor ul[data-checked="false"] {
  pointer-events: none;
}

.ql-editor ul[data-checked="true"] > li *,
.ql-editor ul[data-checked="false"] > li * {
  pointer-events: all;
}

.ql-editor ul[data-checked="true"] > li::before,
.ql-editor ul[data-checked="false"] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}

.ql-editor ul[data-checked="true"] > li::before {
  content: "\2611";
}

.ql-editor ul[data-checked="false"] > li::before {
  content: "\2610";
}

.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}

.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}

.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}

.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}

.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}

.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}

.ql-editor ol li:before {
  content: counter(list-0, decimal) ". ";
}

.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) ". ";
}

.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
  counter-reset: list-6 list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
  counter-reset: list-7 list-8 list-9;
}

.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) ". ";
}

.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
  counter-reset: list-8 list-9;
}

.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) ". ";
}

.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
  counter-reset: list-9;
}

.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) ". ";
}

.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}

.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) ". ";
}

.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}

.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}

.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}

.ql-editor .ql-bg-black {
  background-color: #fff;
}

.ql-editor .ql-bg-red {
  background-color: #e60000;
}

.ql-editor .ql-bg-orange {
  background-color: #f90;
}

.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}

.ql-editor .ql-bg-green {
  background-color: #008a00;
}

.ql-editor .ql-bg-blue {
  background-color: #06c;
}

.ql-editor .ql-bg-purple {
  background-color: #93f;
}

.ql-editor .ql-color-white {
  color: #fff;
}

.ql-editor .ql-color-red {
  color: #e60000;
}

.ql-editor .ql-color-orange {
  color: #f90;
}

.ql-editor .ql-color-yellow {
  color: #ff0;
}

.ql-editor .ql-color-green {
  color: #008a00;
}

.ql-editor .ql-color-blue {
  color: #06c;
}

.ql-editor .ql-color-purple {
  color: #93f;
}

.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}

.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}

.ql-editor .ql-size-small {
  font-size: 0.75em;
}

.ql-editor .ql-size-large {
  font-size: 1.5em;
}

.ql-editor .ql-size-huge {
  font-size: 2.5em;
}

.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}

.ql-editor .ql-align-center {
  text-align: center;
}

.ql-editor .ql-align-justify {
  text-align: justify;
}

.ql-editor .ql-align-right {
  text-align: right;
}

.ql-snow {
  box-sizing: border-box;
  background: var(--secondary-background-color);
  border: 1px solid var(--light-text-color);
  border-radius: 0 0 4px 4px;
}

.ql-snow .ql-toolbar,
.ql-snow.ql-toolbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ql-snow .ql-toolbar button,
.ql-snow.ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 22px;
  padding: 0 5px;
  width: 30px;
}

.ql-snow .ql-toolbar button svg,
.ql-snow.ql-toolbar button svg {
  float: left;
  height: 100%;
}

.ql-snow .ql-toolbar button::active::hover,
.ql-snow.ql-toolbar button::active::hover {
  outline: none;
  color: #5bbfeb !important;
}

.ql-snow .ql-toolbar:after,
.ql-snow.ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}

.ql-snow .ql-hidden {
  display: none;
}

.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}

.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}

.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}

.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}

.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}

.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}

.ql-snow .ql-stroke {
  fill: none;
  stroke: var(--light-text-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: var(--light-text-color);
  stroke-miterlimit: 10;
  stroke-width: 2;
}

.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: var(--light-text-color);
  stroke: none;
}

.ql-snow .ql-empty {
  fill: none;
}

.ql-snow .ql-even {
  fill-rule: evenodd;
}

.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}

.ql-snow .ql-transparent {
  opacity: 0.4;
}

.ql-snow .ql-direction svg:last-child {
  display: none;
}

.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}

.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}

.ql-snow .ql-editor h1 {
  font-size: 2em;
}

.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}

.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}

.ql-snow .ql-editor h4 {
  font-size: 1em;
}

.ql-snow .ql-editor h5 {
  font-size: 0.83em;
}

.ql-snow .ql-editor h6 {
  font-size: 0.67em;
}

.ql-snow .ql-editor a {
  text-decoration: underline;
}

.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}

.ql-snow .ql-editor code {
  background-color: #f0f0f0;
  border-radius: 3px;
  font-size: 85%;
  padding: 2px 4px;
}

.ql-snow .ql-editor pre {
  background-color: #f0f0f0;
  border-radius: 3px;
  white-space: pre-wrap;
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}

.ql-snow .ql-editor pre.ql-syntax {
  background-color: rgba(0, 0, 0, 0.4);
  color: #f8f8f2;
  overflow: visible;
  font-family: "Avenir", sans-serif;
}

.ql-snow .ql-editor img {
  max-width: 100%;
}

.ql-toolbar.ql-snow {
  border-radius: 4px 4px 0 0;
}

button.ql-indent .ql-fill.ql-stroke,
button.ql-direction .ql-fill.ql-stroke {
  stroke: var(--light-text-color);
}

@media (pointer: coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #fff;
  }

  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #fff;
  }

  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #fff;
  }
}

.ql-snow .ql-picker {
  color: #444;
  background: #fff;
  display: inline-block;
  float: left;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}

.ql-snow .ql-picker .ql-stroke {
  stroke: var(--light-text-color);
}

.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}

.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}

.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}

.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}

.ql-snow
  .ql-picker.ql-header
  .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-font
  .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-size
  .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-header
  .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-font
  .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow
  .ql-picker.ql-size
  .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}

.ql-snow .ql-picker.ql-header {
  width: 105px;
}

.ql-snow .ql-picker.ql-header.ql-picker {
  margin-right: 5px;
}

.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}

.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before {
  content: "Heading 6";
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: 0.83em;
}

.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: 0.67em;
}

.ql-snow .ql-picker.ql-font {
  width: 105px;
}

.ql-snow .ql-picker.ql-font.ql-picker {
  margin-right: 5px;
}

.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="serif"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
  content: "Serif";
}

.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="monospace"]::before {
  content: "Monospace";
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
  content: "Monospace";
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="serif"]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}

.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="monospace"]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}

.ql-snow .ql-picker.ql-size {
  width: 105px;
}

.ql-snow .ql-picker.ql-size.ql-picker {
  margin-right: 5px;
}

.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="small"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
  content: "Small";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="large"]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
  content: "Large";
}

.ql-snow .ql-picker.ql-size .ql-picker-label[data-value="huge"]::before {
  content: "Huge";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
  content: "Huge";
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="small"]::before {
  font-size: 10px;
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="large"]::before {
  font-size: 18px;
}

.ql-snow .ql-picker.ql-size .ql-picker-item[data-value="huge"]::before {
  font-size: 32px;
}

.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}

.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}

.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}

.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}

.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  background: #424546;
  color: #fff;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}

.ql-snow .ql-icon-picker {
  width: 28px;
}

.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}

.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}

.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}

.ql-snow .ql-icon-picker .ql-picker-options {
  width: 24px;
  padding: 2px 4px;
}

.ql-toolbar.ql-snow {
  box-sizing: border-box;
  font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  padding: 8px;
  border: 1px solid #dadde1;
}

.ql-toolbar.ql-snow .ql-picker {
  background: rgba(0, 0, 0, 0.2);
}

.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--secondary-background-color);
}

.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ddd;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ddd;
}

.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}

.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}

.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: none !important;
}

.ql-editor {
  border: none !important;
}

.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}

.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}

.ql-snow .ql-tooltip input[type="text"] {
  display: none;
  border: 1px solid #ddd;
  font-size: 13px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  width: 170px;
}

.invitation-alert input[type="file"] {
  display: none;
}

.ql-snow .ql-tooltip a {
  line-height: 26px;
}

.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ddd;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}

.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}

.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}

.ql-snow .ql-tooltip.ql-editing input[type="text"] {
  display: inline-block;
}

.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0;
  content: "Save";
  padding-right: 0;
}

.ql-snow .ql-tooltip[data-mode="link"]::before {
  content: "Enter link:";
}

.ql-snow .ql-tooltip[data-mode="formula"]::before {
  content: "Enter formula:";
}

.ql-snow .ql-tooltip[data-mode="video"]::before {
  content: "Enter video:";
}

.ql-snow a {
  color: #5bbfeb;
}

.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: var(--light-text-color);
  stroke: none;
}

button.ql-header.ql-active .ql-fill,
button.ql-script.ql-active .ql-fill,
button.ql-strike.ql-active .ql-fill {
  fill: #fff;
  stroke: none;
}

.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 11.1111111111%;
}

.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 11.1111111111%;
}

.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 11.1111111111%;
}

.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 11.1111111111%;
}

.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 22.2222222222%;
}

.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 22.2222222222%;
}

.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 22.2222222222%;
}

.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 22.2222222222%;
}

.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 33.3333333333%;
}

.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 33.3333333333%;
}

.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 33.3333333333%;
}

.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 33.3333333333%;
}

.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 44.4444444444%;
}

.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 44.4444444444%;
}

.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 44.4444444444%;
}

.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 44.4444444444%;
}

.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 55.5555555556%;
}

.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 55.5555555556%;
}

.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 55.5555555556%;
}

.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 55.5555555556%;
}

.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 66.6666666667%;
}

.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 66.6666666667%;
}

.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 66.6666666667%;
}

.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 66.6666666667%;
}

.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 77.7777777778%;
}

.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 77.7777777778%;
}

.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 77.7777777778%;
}

.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 77.7777777778%;
}

.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 88.8888888889%;
}

.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 88.8888888889%;
}

.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 88.8888888889%;
}

.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 88.8888888889%;
}

.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 100%;
}

.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 100%;
}

.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 100%;
}

.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 100%;
}

quill-editor.is-disabled {
  cursor: not-allowed;
}

quill-editor.is-disabled .ql-toolbar.ql-snow {
  pointer-events: none;
  opacity: 0.5;
}

quill-editor.is-disabled .ql-editor.ql-blank,
quill-editor.is-disabled .ql-toolbar.ql-snow + .ql-container.ql-snow {
  pointer-events: none;
  opacity: 0.5;
}

.form-group.has-error {
  position: relative;
  margin: 0;
  padding-bottom: 18px;
}

.form-group.has-error .form-control,
.form-group.has-error .ql-editor {
  border: 1px solid #ef3333 !important;
}

.form-group .input-group.has-error .form-control,
.form-group .input-group.has-error input {
  border: 1px solid #ef3333 !important;
  webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
}

.form-group .input-group.has-error .nico-tooltip.entered {
  margin: 0;
}

.form-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--secondary-background-color) !important;
  color: var(--primary-text-color) !important;
  height: auto;
  min-height: 44px;
  padding: 10px 25px;
  border: 1px solid var(--light-text-color);
}

.form-control::placeholder {
  -webkit-text-fill-color: var(--light-text-color);
  color: var(--light-text-color);
}

.form-control:focus {
  border-color: var(--primary-text-color);
}

.form-control.canteen-dropdown {
  height: 55px;
  padding: 10px 40px 10px 20px;
  background: rgba(0, 0, 0, 0.2) url("/assets/images/angle-down.png") no-repeat;
  background-position: 90% center;
  margin-top: 1px;
}

.form-control.custom-input-wrapper {
  padding: 7px;
}

.form-control input::-webkit-input-placeholder,
.form-control input:-moz-placeholder,
.form-control input::-moz-placeholder,
.form-control input:-ms-input-placeholder {
  color: var(--primary-text-color);
}

.form-control textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control textarea:-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control.custom-select {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 10px 10px 10px 25px;
  align-items: center;
}

.form-control.custom-select select {
  padding-left: 10px;
  background: transparent;
  color: #5bbfeb;
  font-weight: 600;
  border: none;
  padding-right: 20px;
  appearance: none;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none;
  background: url("/assets/images/angle-down.png") no-repeat;
  background-position: right center;
  width: 80%;
}

.form-control.custom-select select option {
  background: #353738;
}

.form-control:disabled {
  opacity: 0.6;
}

.form-control:disabled input::-webkit-input-placeholder,
.form-control:disabled input:-moz-placeholder,
.form-control:disabled input::-moz-placeholder,
.form-control:disabled input:-ms-input-placeholder,
.form-control:disabled textarea::-webkit-input-placeholder,
.form-control:disabled textarea:-moz-placeholder,
.form-control:disabled textarea::-moz-placeholder,
.form-control:disabled textarea:-ms-input-placeholder,
.form-control.static textarea::-webkit-input-placeholder,
.form-control.static textarea:-moz-placeholder,
.form-control.static textarea::-moz-placeholder,
.form-control.static textarea:-ms-input-placeholder,
.form-control.static input:-ms-input-placeholder,
.form-control.static input::-moz-placeholder,
.form-control.static input:-moz-placeholder,
.form-control.static input::-webkit-input-placeholder {
  color: var(--primary-text-color);
}

.form-control.static {
  background: rgba(0, 0, 0, 0.05);
  box-shadow: none;
  color: #bfbfbf;
}

.form-control.language {
  height: auto;
  padding: 8px 70px 8px 20px;
  background: rgba(0, 0, 0, 0.6) url("/assets/images/angle-down.png") no-repeat;
  background-position: 85% center;
}

textarea.form-control {
  height: auto;
  max-width: 100%;
  width: 100%;
}

select.form-control {
  appearance: none;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none;
  background: rgba(0, 0, 0, 0.2) url("/assets/images/angle-down.png") no-repeat;
  background-position: 96% center;
}

select.form-control option {
  background: #353738;
}

.custom-input-group-addon,
.page-search form .flex-container .input-group .input-group-addon,
.nico-modal .input-group .input-group-addon {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #5bbfeb;
  font-size: 18px;
  padding: 6px 25px;
}

.image-thumbnail,
.image-full-width-thumbnail {
  position: relative;
}

.image-thumbnail .custom-input-block,
.image-full-width-thumbnail .custom-input-block {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.image-thumbnail .custom-input-block + label,
.image-full-width-thumbnail .custom-input-block + label {
  display: block;
  border-radius: 50%;
  background: #5bbfeb;
  text-align: center;
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  font-weight: 400;
}

.image-thumbnail .custom-input-block + label span,
.image-full-width-thumbnail .custom-input-block + label span {
  display: block;
  font-size: 18px;
  margin: 7px 0;
  color: var(--primary-text-color);
}

.image-thumbnail.small .custom-input-block + label span {
  margin: 0;
}

.image-thumbnail.small .custom-input-block + label span i {
  font-size: 14px;
  line-height: 14px;
}

.image-thumbnail .image-input,
.image-full-width-thumbnail .image-input {
  border: 2px dotted rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  height: 135px;
  text-align: center;
}

.image-thumbnail .image-input i,
.image-full-width-thumbnail .image-input i {
  display: block;
  color: #5bbfeb;
  margin-top: 45px;
}

.image-thumbnail .image-input span,
.image-full-width-thumbnail .image-input span {
  display: block;
  color: #fff;
}

.image-full-width-thumbnail figure {
  position: relative;
}

.image-full-width-thumbnail .custom-input-block + label {
  position: absolute;
  top: auto;
  left: auto;
  right: 20px;
  bottom: 10px;
}

.custom-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.custom-input + label {
  font-weight: 400;
  width: 100%;
}

.custom-input + label span {
  border: 2px dashed var(--additional-blue-color);
  color: var(--primary-text-color);
  padding-top: 35px;
  height: 135px;
  display: block;
  text-align: center;
  cursor: pointer;
}

.custom-input + label span i {
  display: block;
  padding-bottom: 20px;
  color: #5bbfeb;
}

.custom-input + label span.choose-file {
  color: #fff;
  background: #5bbfeb;
  padding: 10px 15px;
  width: 220px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  border-radius: 4px;
  vertical-align: middle;
}

.custom-input-wrapper > span {
  color: #999999;
  padding-left: 25px;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
}

.checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}

.checkbox .styled-checkbox {
  position: absolute;
  opacity: 0;
}

.checkbox .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}

.checkbox .styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: top;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.checkbox .styled-checkbox + label:before {
  content: "";
}

.checkbox .styled-checkbox:hover + label:before {
  background: var(--additional-blue-color);
}

.checkbox .styled-checkbox:checked + label:before {
  background: #5bbfeb;
  border: 2px solid transparent;
}

.checkbox .styled-checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.checkbox .styled-checkbox:disabled + label:before,
.checkbox .styled-checkbox:disabled:checked + label:before {
  box-shadow: none;
  background: var(--light-text-color);
}

.checkbox .styled-checkbox:checked + label:after {
  content: "\f00c";
  font-size: 18px;
  position: absolute;
  top: 2px;
  left: 4px;
  right: auto;
  bottom: auto;
  font-family: FontAwesome;
  color: #fff;
}

.checkbox .label:not(.info-bg) {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}

.control-label {
  color: #fff;
  font-weight: 400;
  margin-bottom: 15px;
}

.form-radio-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.form-radio-control:checked {
  background: #5bbfeb;
  border: 2px solid #5bbfeb;
}

.form-radio-control:disabled {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  border: 0;
}

.form-radio-control:focus {
  outline: none !important;
  border: 0;
}

.custom-input-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.custom-input-file + label {
  font-weight: 400;
  width: 100%;
}

.custom-input-file + label abbr {
  color: #999999;
  padding-left: 25px;
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
}

.custom-input-file + label abbr.choose-file {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 15px;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  border-radius: 4px;
  vertical-align: middle;
}

.custom-input-file + label abbr.choose-file i {
  color: #5bbfeb;
  font-size: 18px;
  padding-right: 10px;
}

.btn-custom {
  position: relative;
  background: var(--background-color);
  overflow: hidden;
  color: var(--primary-text-color);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  border: 1px solid var(--light-text-color);
  border-radius: 4px;
  font-size: 14px;
  padding: 0 18px;
  min-height: 50px;
}

.btn-custom i {
  padding-right: 8px;
}

.btn-custom:focus,
.btn-custom:active:focus,
.btn-custom.active:focus,
.btn-custom.focus,
.btn-custom:active.focus,
.btn-custom.active.focus {
  outline: none;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus {
  text-decoration: none;
  color: var(--secondary-text-color);
  background: var(--secondary-background-color);
}

.btn-custom.danger-bg:hover {
  color: #fff;
}

.btn-custom:active,
.btn-custom.active {
  background-image: none;
  outline: 0;
}

.btn-custom.disabled,
.btn-custom[disabled],
fieldset[disabled] .btn-custom {
  cursor: not-allowed;
  box-shadow: none;
  pointer-events: none;
}

.btn-custom + .btn-custom {
  margin-left: 5px;
}

.btn-outline {
  background: var(--primary-color);
  border: 1px solid var(--light-text-color);
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  font-size: 14px;
  padding: 14px 18px;
  height: 50px;
}

.btn-outline.btn-invite-excel {
  padding: 5px 15px;
  border-width: 1px;
}

.invitation-info,
.invitation-danger {
  color: #ffffff;
  padding: 16px;
  border-radius: 4px;
  width: 100%;
}

.invitation-log {
  margin-bottom: 10px;
}

.invitation-log .invitation-header {
  color: #ffffff;
  border-radius: 4px 4px 0 0;
  font-weight: 300;
}

.invitation-log .invitation-error-list {
  border-radius: 0 0 4px 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  padding: 11px 16px;
  max-height: 210px;
  overflow: auto;
}

.invitation-log .invitation-error-list .invitation-text-block {
  margin-bottom: 8px;
  border-bottom: 1px solid #666666;
}

.invitation-log .invitation-error-list .invitation-text-block p {
  position: relative;
  display: flex;
}

.invitation-log
  .invitation-error-list
  .invitation-text-block
  p:first-child
  span {
  min-width: 50%;
  display: inline-block;
}

.invitation-log
  .invitation-error-list
  .invitation-text-block
  p:last-child
  span {
  padding-right: 10px;
}

.invitation-log
  .invitation-error-list
  .invitation-text-block
  p:first-child
  span:nth-child(3),
.invitation-log
  .invitation-error-list
  .invitation-text-block
  p:first-child
  span:nth-child(2) {
  min-width: 25%;
}

.btn-outline:hover {
  background: var(--additional-light-mint-color);
}

.btn-outline:focus {
  background: var(--additional-dark-mint-color);
}

.btn-outline i {
  padding-right: 10px;
}

.nico-modal .bst-adv-dropdown .dropdown-menu {
  min-width: 100%;
  max-height: 300px;
  overflow-y: scroll;
  background: #424546;
  width: 100%;
}
a[href^="mailto:"]:focus {
  color: var(--primary-text-color);
  text-decoration: underline;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.link:after,
a[href^="http:"]:after,
a[href^="https:"]:after,
a[href^="tel:"]:after,
a[href^="mailto:"]:after {
  clear: both;
}

.link.link-lg {
  font-size: 18px;
}

.link.mt-20 {
  display: inline-block;
}

.dark-accordion .panel-default {
  border: none;
}

.dark-accordion .panel-default > .panel-heading {
  background: transparent;
  padding: 15px 10px;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.dark-accordion .panel-default > .panel-heading .panel-title {
  font-size: 13px;
  font-weight: 700;
}

.dark-accordion .panel-default > .panel-heading .panel-title i {
  float: right;
  color: #5bbfeb;
}

.dark-accordion .panel-default > .panel-heading .panel-title i:after {
  clear: both;
}

.dark-accordion
  .panel-default
  > .panel-heading
  + .panel-collapse
  > .panel-body {
  border: none;
  color: #fff;
  padding: 0 5px;
}

.dark-accordion .panel-default[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.dark-accordion .panel-default[disabled] a {
  pointer-events: none;
}

.panel {
  background: transparent;
  box-shadow: none;
}

.panel-group .panel {
  border-radius: 0;
}

@media (min-width: 1681px) and (max-width: 1920px) {
  .page-search form .flex-container .form-group:nth-child(3) {
    flex: 1 1 22%;
    max-width: 22%;
    margin-left: auto;
  }

  .page-search form .flex-container .form-group.form-group-button {
    margin-left: 20px;
    flex: 1 1 10%;
    max-width: 10%;
  }

  .nico-modal .modal-dialog .modal-body .form-group {
    margin-bottom: 25px;
  }

  .form-control.custom-select select {
    padding-right: 40px;
  }

  .hot-dish,
  .office-details {
    width: 60%;
  }

  .lunch-menu-item-list li .media .media-body .media-heading {
    max-width: 280px !important;
  }
}

@media (min-width: 1441px) and (max-width: 1680px) {
  .page-search form .flex-container .form-group:nth-child(3) {
    flex: 1 1 22%;
    max-width: 22%;
    margin-left: 38%;
  }

  .page-search form .flex-container .form-group.form-group-button {
    margin-left: 20px;
    flex: 1 1 10%;
    max-width: 10%;
  }

  .page-search form .flex-container .form-group.custom-filter {
    max-width: 22%;
    flex: 1 1 22%;
    margin-left: auto;
  }

  .hot-dish,
  .office-details {
    width: 60%;
  }

  .nico-modal .modal-dialog .modal-body .form-group {
    margin-bottom: 25px;
  }
}

@media (min-width: 1280px) and (max-width: 1440px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 30px;
  }

  .vertical-top .form-control {
    height: 50px;
  }

  .form-control.custom-select {
    padding: 10px 10px 10px 15px;
  }

  .btn-custom.btn-lg {
    padding: 15px 25px;
    font-size: 15px;
  }

  .page-search form .flex-container .form-group.custom-filter {
    max-width: 33%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 33%;
    flex: 1 1 33%;
  }

  .page-search form .flex-container .date-group:nth-child(1),
  .page-search form .flex-container .date-group:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 22%;
    flex: 1 1 22%;
    max-width: 22%;
  }

  .page-search form .flex-container .date-group .selectiongroup {
    height: 50px !important;
  }

  .page-search form .flex-container .date-group .selectiongroup input {
    height: 50px !important;
    padding: 14px 18px;
  }

  .table.table-dark > thead > tr > th {
    padding-right: 15px;
  }

  .table.table-dark > tbody > tr > td {
    font-size: 13px;
    height: 70px;
  }

  .table.table-dark > tbody > tr > td .actions li {
    padding-right: 15px;
  }

  .add-time-slot-wrapper .image-thumbnail figure {
    height: 115px;
  }

  .lunch-menu-item-list li .media .media-body .media-heading {
    max-width: 50%;
  }

  .lunch-menu-item-list li .media .label {
    max-width: 120px;
  }

  .nico-modal .modal-dialog .modal-footer .output {
    width: 69%;
  }

  .lunch-menu-item-list.place-order {
    margin-top: 10px;
  }

  .ql-container,
  .ql-editor {
    height: 146px;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  body {
    font-size: 12px;
  }

  h1 {
    font-size: 28px;
  }

  .authentication {
    height: 100%;
  }

  .authentication .flex-container {
    justify-content: center;
  }

  .authentication .flex-container figure img {
    max-width: 70%;
    width: auto;
  }

  .authentication
    .flex-container
    .authentication-form
    .form-group-lg
    .form-control {
    height: 55px;
    font-size: 13px;
  }

  .form-control.custom-select {
    padding: 10px 10px 10px 15px;
    width: 100%;
  }

  .ql-editor {
    padding: 15px;
  }

  .dropdown-menu {
    font-size: 12px;
  }

  .page-search form .flex-container .form-group.custom-filter {
    max-width: 37%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 37%;
    flex: 1 1 37%;
  }

  .page-search form .flex-container .form-group:nth-child(3) {
    max-width: 40%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 40%;
    flex: 1 1 40%;
  }

  .page-search form .flex-container .form-group.form-group-button {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 10%;
    flex: 1 1 10%;
    max-width: 10%;
    margin-left: 10px;
  }

  .page-search form .flex-container .date-group:nth-child(1),
  .page-search form .flex-container .date-group:nth-child(2) {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 23%;
    flex: 1 1 23%;
    max-width: 23%;
  }

  .page-search form .flex-container .date-group:nth-child(2) {
    padding-left: 10px;
  }

  .page-search form .flex-container .date-group .selectiongroup {
    height: 45px !important;
  }

  .page-search form .flex-container .date-group .selectiongroup input {
    height: 45px !important;
    padding: 14px 18px;
  }

  .table.table-dark > tbody > tr > td {
    font-size: 12px;
    height: 60px;
  }

  .table.table-dark > tbody > tr > td .actions li {
    padding-right: 15px;
    font-size: 18px;
  }

  .modal-dialog {
    width: 550px;
  }

  .nico-modal .modal-dialog .item-layouts .media {
    padding: 10px 6px;
  }

  .nico-modal .modal-dialog .item-layouts .media .media-heading {
    font-size: 12px;
  }

  .nico-modal .modal-dialog .item-layouts .media .media-left .media-object {
    width: 25px;
    height: 25px;
  }

  .nico-modal .modal-dialog .item-invoice .item-unit-price {
    font-size: 18px;
  }

  .nico-modal .modal-dialog .item-invoice table tr > td {
    padding: 10px 8px;
  }

  .nico-modal .modal-dialog .modal-footer .output {
    width: 68%;
  }

  .page-header {
    margin-bottom: 10px;
  }

  .main-wrapper {
    padding: 20px;
  }

  .ql-container,
  .ql-editor {
    height: 125px;
  }

  .table.table-dark.table-conference tr th.status {
    width: 115px;
  }

  .table.table-dark.table-kiosk tr th.action {
    width: 130px;
  }

  .table.table-dark tr th.action {
    width: 100px;
  }

  .table.table-dark.table-kiosk tr th.action {
    width: 130px;
  }
}

@media (min-width: 768px) and (max-width: 990px) {
  body {
    font-size: 13px;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  .authentication {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .authentication .flex-container {
    display: block;
    width: 600px;
    margin: 0 auto;
  }

  .authentication .flex-container figure {
    padding: 70px 0 20px;
    width: 40%;
    border: none;
    margin: 0 auto 20px;
  }

  .authentication .flex-container figure img {
    max-width: 100%;
    width: auto;
  }

  .authentication .flex-container .authentication-form {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .authentication .flex-container .authentication-form h1 {
    font-size: 30px;
    text-align: center;
  }

  .authentication .flex-container .authentication-form .form-group-lg {
    margin-bottom: 30px;
  }

  .authentication .flex-container .authentication-form-buttons {
    display: block;
  }

  .authentication .flex-container .authentication-form-buttons .btn-custom {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .authentication .flex-container .authentication-form-buttons .link {
    display: block;
    text-align: center;
  }

  .btn-custom.btn-lg {
    padding: 15px 25px;
    font-size: 13px;
  }

  .form-control.custom-select {
    padding: 10px 10px 10px 15px;
    width: 100%;
  }

  .table.table-dark > tbody > tr > td {
    font-size: 12px;
    height: 60px;
  }

  .table.table-dark > tbody > tr > td .actions li {
    padding-right: 15px;
    font-size: 18px;
  }

  .nico-modal .modal-dialog .modal-footer .output {
    width: 66%;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .authentication {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .authentication .flex-container {
    display: inline-table;
    width: 100%;
  }

  .authentication .flex-container figure {
    padding: 70px 0 20px;
    width: 60%;
    border: none;
    margin: 0 auto 20px;
  }

  .authentication .flex-container figure img {
    max-width: 100%;
    width: auto;
  }

  .authentication .flex-container .authentication-form {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .authentication .flex-container .authentication-form h1 {
    font-size: 30px;
    text-align: center;
  }

  .authentication .flex-container .authentication-form .form-group-lg {
    margin-bottom: 30px;
  }

  .authentication .flex-container .authentication-form-buttons {
    display: block;
  }

  .authentication .flex-container .authentication-form-buttons .btn-custom {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .authentication .flex-container .authentication-form-buttons .link {
    display: block;
    text-align: center;
  }
}

@media (min-width: 320px) and (max-width: 590px) {
  .main-header .user-options > ul > li {
    padding: 0 8px;
  }

  .main-header
    .nico-modal.nico-modal-small
    .bst-adv-dropdown
    button.form-control {
    min-width: 120px;
  }

  .main-wrapper {
    max-width: 100%;
    padding: 15px;
  }

  .page-header {
    margin-bottom: 15px;
  }

  .btn-custom {
    white-space: inherit;
    word-wrap: break-word;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .authentication {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .authentication .flex-container {
    display: inline-table;
    width: 100%;
  }

  .authentication .flex-container figure {
    padding: 70px 0 20px;
    width: 60%;
    border: none;
    margin: 0 auto 20px;
  }

  .authentication .flex-container figure img {
    max-width: 100%;
    width: auto;
  }

  .authentication .flex-container .authentication-form {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .authentication .flex-container .authentication-form h1 {
    font-size: 20px;
    text-align: center;
  }

  .authentication .flex-container .authentication-form .form-group-lg {
    margin-bottom: 30px;
  }

  .authentication
    .flex-container
    .authentication-form
    .form-group-lg
    .form-control {
    height: 55px;
    padding: 10px 16px 10px 16px;
  }

  .authentication
    .flex-container
    .authentication-form
    .authentication-form-buttons {
    display: block;
  }

  .authentication
    .flex-container
    .authentication-form
    .authentication-form-buttons
    .btn-custom {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .authentication
    .flex-container
    .authentication-form
    .authentication-form-buttons
    .link {
    display: block;
    text-align: center;
  }

  .authentication .form-group-lg .form-control {
    font-size: 14px;
    height: 45px;
    padding-right: 14px;
  }
}

@media screen and (max-width: 1280px) {
  .table.table-time-slots .has-multi-input-group .input-group {
    width: 90%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1260px) {
  .ql-editor,
  .ql-conntainer {
    height: 100%;
    border: none;
  }
}

@media screen and (max-width: 1100px) {
  .ql-editor,
  .ql-conntainer {
    height: 100%;
    border: none;
  }
}

@media screen and (max-width: 1002px) {
  body {
    font-size: 13px;
  }

  .office-details {
    width: 100%;
  }

  .wrapper.is-expanded .main-wrapper {
    max-width: 100%;
  }

  .office-details .office-details-title,
  .office-details .office-details-body {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .main-header,
  .toggle-bar {
    display: none;
  }

  .logo {
    padding-left: 15px;
  }
}

@media screen and (max-width: 991px) {
  [id="canteen-update-form"] .flex-container {
    display: block;
  }

  .btn-outline.btn-md {
    font-size: 12px;
    padding: 12px 18px;
    height: 45px;
  }

  .ql-editor,
  .ql-conntainer {
    height: 100%;
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .nico-modal .modal-dialog {
    margin: 80px 40px 30px !important;
  }
}

@media screen and (max-width: 640px) {
  .authentication input,
  .authentication select,
  .authentication input:focus,
  .authentication select:focus {
    font-size: 16px !important;
  }

  .flex-container.wrapper {
    display: block;
  }

  .flex-container.wrapper nav {
    display: none;
  }
}

@media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {
  /* IE10+ specific styles go here */
  .authentication .flex-container figure {
    flex-basis: auto;
  }
}

/*---------------------------------------------------------------------- Custom Styles -----------------------------------------------------------------------*/
.nico-modal .modal-dialog .modal-body .form-group .image-thumbnail figure img,
.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  > .cover-image-upload
  > figure
  > img,
.nico-modal
  .modal-dialog
  .modal-body
  .form-group
  .image-full-width-thumbnail
  > figure
  > img,
.nico-modal .modal-dialog .item-details .item-header figure img,
.nico-modal .modal-dialog .item-image img,
.nico-modal.has-ft-img .item-details > img,
.nico-modal.has-ft-img .news-thumbnail > img,
.add-time-slot-wrapper .image-thumbnail.image-thumbnail-small figure img,
.canteen-info-wrapper .canteen-details figure img,
.canteen-form-wrapper .canteen-details figure img,
.order-image img,
.def-comment-activities ul li .def-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

/* .mb-10 {
  margin-bottom: 10px !important;
} */

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.mr-15 {
  margin-right: 15px !important;
}

.mr-20 {
  margin-right: 20px !important;
}

.mr-25 {
  margin-right: 25px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.bold {
  font-weight: 700;
}

.logo figure {
  overflow: unset;
}

.logo figure img {
  height: 51px;
  width: auto;
}

.success-bg {
  background: #1a9c43 !important;
}

.main-header .user-options > ul > li {
  float: left;
}

.caption {
  color: var(--light-text-color) !important;
  margin-bottom: 10px;
}

.caption-highlight {
  color: #fff;
}

.hot-dish figure {
  height: auto;
}

.custom-filter .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom-filter .form-control.custom-select select {
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-filter > .form-control {
  background: rgba(0, 0, 0, 0.2);
  color: var(--light-text-color);
  font-weight: 600;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.custom-filter > .form-control:hover {
  background: rgba(0, 0, 0, 0.3);
}

.add-time-slot-wrapper {
  margin-bottom: 55px;
}

.add-time-slot-wrapper .selected-lunch-menu-items {
  margin-top: 10px;
  min-height: 0;
}

.add-time-slot-wrapper .selected-lunch-menu-items {
  margin-top: 0;
}

.add-time-slot-wrapper .image-thumbnail .custom-input-block + label {
  margin-bottom: 10px;
}

.image-thumbnail .custom-input-block + label,
.add-time-slot-wrapper .image-thumbnail .custom-input-block + label {
  cursor: pointer;
}

.image-thumbnail .relaod {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  height: 40px;
  width: 40px;
  padding: 5px;
  text-align: center;
}

.lunch-menu-item-list.scrollable {
  max-height: 440px;
}

.add-time-slot-wrapper .image-thumbnail .relaod {
  height: 30px;
  width: 30px;
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 11;
}

.add-time-slot-wrapper .nico-modal button.form-control {
  margin-left: 0;
}

.add-time-slot-wrapper .image-thumbnail.image-thumbnail-small {
  max-width: 140px;
}

.add-time-slot-wrapper .image-thumbnail.image-thumbnail-small figure {
  position: relative;
  height: 100px;
  width: 140px;
  overflow: hidden;
}

.add-time-slot-wrapper .image-thumbnail .upload {
  cursor: pointer;
}

#time-slot-update-form input.form-control {
  padding: 15px;
}

#time-slot-update-form input.form-control::placeholder {
  font-size: 12px;
}

.lunch-menu-item-list li .media .media-body .media-heading {
  max-width: 180px;
}

.lunch-menu-item-list .media-left .food-desc {
  font-size: 90%;
  color: var(--light-text-color);
}

.no-data {
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

.white-txt {
  color: #fff;
}

.canteen-details article p {
  margin-bottom: 15px;
  max-height: 145px;
  overflow-y: auto;
  padding-right: 15px;
}

.canteen-details .sensor-color label {
  margin: 0;
}

.beacon > .btn {
  margin-top: 20px;
}

.canteen-info-wrapper .canteen-details article i,
.canteen-info-wrapper .beacon ul li i {
  margin-right: 10px;
  padding-right: 0;
}

.canteen-info-wrapper .canteen-details figure,
.canteen-form-wrapper .canteen-details figure {
  border-radius: 4px;
  height: 260px;
}

.nico-modal .modal-dialog .item-invoice table tr > td {
  padding-left: 0;
  padding-right: 0;
}

.item-invoice .label-small-blue {
  display: block;
  margin-bottom: 10px;
}

.list-item {
  display: block;
}

.list-item .list-item-content > .more {
  color: #fff;
  font-size: 85%;
  display: block;
  margin-bottom: 10px;
  margin-left: 20px;
  text-decoration: underline;
}

.nico-modal.nico-modal-order-form-detail .modal-dialog .modal-body {
  padding-top: 0;
}

.nico-modal.nico-modal-order-form-detail
  .modal-dialog
  .modal-body
  .item-invoice
  table
  tr:first-of-type
  > td {
  border-top: none;
}

.modal.modal-large .modal-dialog {
  width: 920px;
}

.nico-modal .modal-dialog .modal-body .create-order-form {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 30px;
}

.nico-modal .modal-dialog .modal-body .create-order-form .form-group {
  margin-bottom: 15px;
}

.nico-modal .modal-dialog .modal-body .create-order-form .item-unit-price {
  margin-top: 10px;
}

.nico-modal .modal-dialog .modal-body .create-order-form .actions {
  float: right;
  margin-top: 10px;
}

.nico-modal .modal-dialog .modal-body .create-order-form .actions li a {
  font-size: 24px;
}

.nico-modal
  .modal-dialog
  .modal-body
  .create-order-form
  .actions
  li
  a
  .fa-trash-o {
  color: #ef3333;
}

.sensor-color {
  align-items: center;
}

.sensor-color label {
  font-weight: 300;
  position: relative;
  margin-bottom: 15px;
}

.sensor-color label:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 4px;
  margin-right: 10px;
  background: #fff;
  vertical-align: middle;
}

.sensor-color.no-queue label:before {
  background: #1a9c43;
}

.sensor-color.little-busy label:before {
  background: #f0ad4e;
}

.sensor-color.quite-busy label:before {
  background: #c77c11;
}

.sensor-color.packed label:before {
  background: #ef3333;
}

.range .sensor-color {
  display: inline-block;
  margin: 0 25px 10px 0;
}

.order-image {
  height: 95px;
}

.order-image img {
  border-radius: 4px;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .item-transaction.padded {
  padding: 0 0 20px 0;
  vertical-align: middle;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .item-transaction.padded
  .row {
  display: table;
  width: 102%;
}

.nico-modal
  .modal-dialog
  .item-invoice.conference-meals
  .item-transaction.padded
  .row
  [class*="col-"] {
  float: none;
  display: table-cell;
  vertical-align: middle;
}

.nico-modal .modal-dialog .item-invoice.conference-meals .cancel-details {
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  padding: 5px 0 0 0;
  margin: 2px 0 0 0;
}

.tabs {
  border: 1px solid var(--light-text-color);
  border-radius: 4px;
  display: inline-block;
  overflow: hidden;
}

.tabs li {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border-left: 1px solid var(--light-text-color);
}

.tabs li:first-child {
  border-left: none;
}

.tabs li a {
  font-weight: 500;
  display: block;
  padding: 15px 20px;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.tabs li.active a {
  background-color: var(--primary-color);
}

.tabs li a:hover {
  background-color: var(--additional-light-mint-color);
  color: var(--primary-text-color);
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.row-eq-height {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}

.list-item.plain-content > a {
  display: block;
  vertical-align: middle;
}

.list-item .list-item-img,
.list-item .list-item-icon {
  float: left;
  margin-right: 10px;
  max-width: 80px;
}

.list-item .list-item-img img,
.list-item .list-item-icon img {
  width: 100%;
  height: auto;
}

.list-item .list-item-img + .list-item-content,
.list-item .list-item-icon + .list-item-content {
  max-width: 50%;
}

.list-item .list-item-img img {
  border-radius: 6px;
}

.list-item .list-item-icon img {
  max-width: 32px;
}

.list-item .list-item-content {
  display: block;
  overflow: hidden;
}

.list-item .list-item-content.list-item-content-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  max-width: 70%;
}

.list-item .list-item-content ul.table-list {
  padding: 10px 10px 10px 20px !important;
}

.list-item .list-item-content ul.table-list li {
  margin-bottom: 8px;
}

.list-item .list-item-content ul.table-list li:last-of-type {
  margin-bottom: 0;
}

.list-item.vertical-align-middle .list-item-img,
.list-item.vertical-align-middle .list-item-icon,
.list-item.vertical-align-middle .list-item-content {
  display: inline-block;
  float: none;
  vertical-align: middle;
}

.list-item a {
  display: block;
}

.label-small-blue {
  color: #5bbfeb;
  font-size: 85%;
  font-weight: 600;
}

.scroll {
  overflow: auto;
}

.no-scroll {
  overflow: hidden;
}

.form-group.max-wid .form-control {
  max-width: 500px;
}

.container-fluid {
  padding: 0;
}

.data-filter h5 {
  margin-bottom: 15px;
}

.prelined-textarea {
  white-space: pre-line;
}

.wrapped-text {
  word-wrap: break-word;
}

.broken-link {
  word-break: break-all;
}

.cursor-link {
  cursor: pointer !important;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
  transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}

.no-margin {
  margin: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.form-group.form-group-mini {
  max-width: 140px;
  margin-bottom: 0;
}

.form-group.form-group-mini button.form-control {
  min-height: auto;
  min-width: 120px;
  padding: 10px 15px;
}

.form-group.form-group-mini button.form-control .pull-left {
  margin-right: 10px;
}

.form-group .input-group.has-error .form-control {
  border: 1px solid #ef3333 !important;
  webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) !important;
}

.form-group .input-group input[type="text"] {
  border-radius: 4px;
}

.form-group .input-group .input-group-addon {
  background-color: transparent;
  border: none;
  color: #5bbfeb;
  font-size: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  width: 48px;
  z-index: 11;
}

.form-group.has-multi-input-group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.form-group.has-multi-input-group.has-dropdown .nico-modal button {
  min-width: 145px;
}

.canteen-orders-form .nico-modal.nico-modal-menu button.form-control {
  min-width: 160px;
}

@media (min-width: 1280px) and (max-width: 1440px) {
  .canteen-orders-form .nico-modal.nico-modal-menu button.form-control {
    min-width: 160px !important;
  }
}

.form-group.has-multi-input-group.form-group-time-range
  .input-group
  input[type="text"] {
  padding-right: 15px;
}

.form-group.has-multi-input-group .input-group {
  flex: 1;
  min-width: 160px;
  margin-right: 10px;
  display: inline-block;
}

.form-group.has-multi-input-group .input-group:last-of-type {
  margin-right: 0;
}

.form-group.has-multi-input-group .input-group input[type="text"] {
  padding-right: 50px;
}

.form-group.has-multi-input-group.form-group-noflex-zone {
  display: inline-block;
}

.form-group.has-multi-input-group.form-group-noflex-zone.table-cell {
  display: table-cell;
}

.form-group.has-multi-input-group.form-group-noflex-zone .input-group {
  float: left;
  min-width: 0;
}

.form-group.form-group-inline > label {
  color: var(--light-text-color);
  margin-right: 10px;
}

.form-group.form-group-inline .form-control {
  width: auto;
  display: inline-block;
}

.form-actions.overlayed {
  bottom: 0;
  display: block;
  padding-right: 20px;
  position: absolute;
  width: 100%;
}

.form-control:disabled,
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  opacity: 0.6;
}

.form-control:disabled:focus,
.form-control[disabled]:focus,
.form-control[readonly]:focus,
fieldset[disabled] .form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.page-header {
  position: relative;
}

.page-header .tabs {
  margin: 0;
}

.page-options > ul,
.def-block-options > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-options > ul > li,
.def-block-options > ul > li {
  float: left;
  margin-left: 30px;
}

.def-block-options .form-group {
  margin: 0;
}

.def-block-options.def-block-options-vertically-align-middle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.def-alert {
  background-color: var(--secondary-background-color);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 30px;
}

.def-alert.def-alert-small {
  padding: 15px;
}

.def-alert.invitation-alert {
  border-width: 1px;
}

.def-alert h1,
.def-alert h2,
.def-alert h3,
.def-alert h4,
.def-alert h5,
.def-alert .h1,
.def-alert .h2,
.def-alert .h3,
.def-alert .h4,
.def-alert .h5 {
  line-height: 1.1;
}

.label {
  color: var(--primary-text-color);
}

.def-alert p {
  margin: 0;
}

.table-list span {
  color: var(--light-text-color);
}

.def-alert-summary {
  margin: 20px 0;
}

.table > thead tr th {
  padding-right: 30px;
  white-space: nowrap;
}

.table.table-dark > thead tr th {
  cursor: auto;
}

.table.table-dark.table-row-linked > tbody > tr {
  cursor: pointer;
}

.table.table-dark.table-row-not-linked > tbody > tr {
  cursor: auto;
}

.table.table-bordered {
  border: none;
}

.table.table-bordered > tbody tr {
  border-bottom: 1px solid var(--light-text-color);
}

.table.table-bordered > tbody tr:last-of-type {
  border: none;
}

.table.table-bordered > thead tr th,
.table.table-bordered > tbody tr td {
  border: none;
}

.table.table-bordered > thead tr th {
  color: var(--light-text-color);
  padding: 0;
}

.table.table-bordered > tbody tr td {
  color: var(--primary-text-color);
  padding: 20px 0;
  vertical-align: middle;
}

.table.table-bordered.table-bordered-header-only > thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table.table-bordered.table-bordered-header-only > tbody tr {
  border-bottom: none;
}

.table.table-bordered.table-padded > thead tr th,
.table.table-bordered.table-padded > tbody tr td {
  padding-left: 10px;
  padding-right: 10px;
}

.table.table-bordered.table-padded > thead tr th:first-of-type,
.table.table-bordered.table-padded > tbody tr td:first-of-type {
  padding-left: 0;
}

.table.table-bordered.table-padded > thead tr th:last-of-type,
.table.table-bordered.table-padded > tbody tr td:last-of-type {
  padding-right: 0;
}

.table.table-compressed > thead tr th {
  padding: 0 0 10px 0;
}

.table.table-compressed > tbody tr td {
  padding: 10px 0;
}

.table-order div {
  position: relative;
}

.table-order .close {
  position: absolute;
  right: 10px;
  font-size: 13px;
  width: 25px;
  height: 25px;
}

.page-navigation-compressed .pagination > li > a {
  padding: 10px 15px;
}

.table-tenant-user-pv > tbody tr.tr-has-error td {
  vertical-align: top;
}

.table-tenant-user-pv > tbody tr.tr-has-error td .total {
  margin-top: 17px;
}

.table-tenant-user-pv > tbody tr.tr-has-error td .actions.actions-inside-table {
  margin-top: 10px;
}

.table-tenant-user-pv > tbody tr td .form-group .nico-modal,
.table-tenant-user-pv > tbody tr td .form-group .nico-modal .dropdown {
  float: none;
}

.table-tenant-email-pv > tbody tr input {
  max-width: 400px;
}

.table-tenant-email-pv > tbody tr.tr-has-error td {
  vertical-align: top;
}

.table-tenant-email-pv > tbody tr.tr-has-error td .total {
  margin-top: 17px;
}

.table-tenant-email-pv
  > tbody
  tr.tr-has-error
  td
  .actions.actions-inside-table {
  margin-top: 10px;
}

.tenant-specific.disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.table-sensors tr.tr-has-error .actions-inside-table {
  margin-top: 10px;
}

.table-sensors tr.tr-has-error td .actions {
  margin-top: 10px;
}

.table-sensors .form-group {
  margin: 0;
}

.table-sensors .form-group .form-control,
.table-sensors .form-group.form-group-max {
  max-width: 400px;
}

.table.table-bordered.table-time-slots > tbody tr td:nth-child(1) {
  width: 30%;
}

.table.table-bordered.table-time-slots > tbody tr td:nth-child(2) {
  width: 10%;
}

.table.table-bordered.table-time-slots > tbody tr td:nth-child(3) {
  width: 50%;
}

.table.table-bordered.table-time-slots > tbody tr td:nth-child(4) {
  width: 10%;
}

.table.table-bordered.table-time-slots > tbody tr:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table.table-bordered.table-time-slots .servings {
  display: contents;
}

.select-search {
  background: var(--secondary-background-color);
  border: 1px solid var(--light-text-color);
  width: 100%;
  height: 55px;
  font-size: 14px;
  padding: 12px 20px;
  color: var(--primary-text-color);
  border-radius: 4px;
}

.nico-modal.nico-modal-invert .bst-adv-dropdown button.form-control {
  background: rgba(0, 0, 0, 0.6);
}

.nico-modal.nico-modal-small .bst-adv-dropdown button.form-control {
  min-height: auto;
  min-width: 160px;
  padding: 10px 15px;
}

.nico-modal.nico-modal-menu button.form-control {
  min-width: 320px;
  max-width: 320px;
}

.nico-modal .modal-dialog .modal-body {
  padding: 15px 30px 0;
}

.nico-modal .bst-adv-dropdown.open.position-up .dropdown-menu {
  bottom: 100%;
  margin-bottom: 2px;
  top: auto;
}

.nico-modal .bst-adv-dropdown button.form-control .dropdown-text {
  text-align: left;
  max-width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selected-items {
  height: 34px;
  position: relative;
  padding: 7px 16px;
  background: var(--background-color);
  border-radius: 17px;
  line-height: 16px;
  margin: 2px 10px 8px 0;
  color: var(--primary-text-color);
}

.nico-modal .bst-adv-dropdown button.form-control .dropdown-text p {
  margin: 0;
  font-size: 90%;
  color: var(--light-text-color);
  line-height: 18px;
}

.form-group.multiselect-app-select .form-control,
.nico-modal .form-group.multiselect-app-select .form-control {
  padding: 8px 16px;
  height: auto;
  max-height: 125px;
  overflow-y: auto;
}

.nico-modal
  .bst-adv-dropdown
  button.form-control
  .dropdown-text.dropdown-text-bg
  .app-select-close-item {
  position: absolute;
  top: 11px;
  right: 12px;
  padding: 0;
  font-size: 24px;
  font-weight: 200;
  transform: rotate(45deg);
}

.nico-modal
  .bst-adv-dropdown
  button.form-control
  .dropdown-text.dropdown-text-bg {
  position: relative;
  padding: 7px 37px 7px 16px;
  background: var(--background-color);
  border-radius: 20px;
  line-height: 16px;
}

.nico-modal .bst-adv-dropdown button.form-control .fa {
  font-size: 18px;
}

.nico-modal .bst-adv-dropdown .dropdown-menu {
  border: 1px solid var(--primary-text-color);
  overflow-y: auto;
}

.nico-modal .bst-adv-dropdown .dropdown-menu li:last-of-type {
  margin-bottom: 0;
}

.nico-modal .bst-adv-dropdown .dropdown-menu li > ul > li {
  color: var(--primary-text-color);
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li
  .item-list-wrapper.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.disabled:hover {
  background-color: transparent !important;
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li:last-of-type
  .item-list-wrapper {
  margin-bottom: 0;
}

.nico-modal
  .bst-adv-dropdown
  .dropdown-menu
  li
  > ul
  > li.def-selected
  .item-list-wrapper {
  background: rgba(91, 191, 235, 0.2);
}

.nico-modal .bst-adv-dropdown .dropdown-menu li.lined ul li .item-list-wrapper {
  flex-wrap: wrap;
}

.nico-modal.nico-modal-menu-items .item-details h3 {
  margin-bottom: 0;
}

.nico-modal.nico-modal-menu-items .item-details .label {
  display: inline-block;
  margin-bottom: 10px;
}

.nico-modal.nico-modal-menu-items .item-images {
  margin-top: 20px;
}

.form-group.form-group-mini button.form-control .dropdown-text {
  max-width: 75%;
}

/*UL Lists*/
.def-list.def-list-inline li {
  display: inline-block;
  margin-right: 20px;
}

.def-list.def-list-display {
  list-style: none;
  margin: 0;
  padding: 0;
}

.def-list.def-list-display li .fa {
  color: #5bbfeb;
}

.def-list.def-list-scrollable {
  max-height: 235px;
  overflow: auto;
}

.def-list.def-list-other-info {
  margin-top: 20px;
}

.lunch-menu-item-list.place-order li {
  margin-right: 0;
}

.lunch-menu-item-list.place-order li.has-error .media {
  border: 1px solid #ef3333;
  webkit-box-shadow: 0 2px 8px rgba(239, 51, 51, 0.3) !important;
  box-shadow: 0 2px 8px rgba(239, 51, 51, 0.3) !important;
}

.lunch-menu-item-list.place-order li .media {
  display: table;
  width: 100%;
  color: #fff;
}

.lunch-menu-item-list.place-order li .media .media-left,
.lunch-menu-item-list.place-order li .media .media-body,
.lunch-menu-item-list.place-order li .media .media-right {
  vertical-align: middle;
  display: table-cell;
}

.lunch-menu-item-list.place-order li .media .media-left {
  width: 50%;
  max-width: 0;
}

.lunch-menu-item-list.place-order li .media .media-body {
  width: 25%;
}

.lunch-menu-item-list.place-order li .media .media-body .form-control {
  width: 60px;
  padding: 10px;
  text-align: center;
}

.lunch-menu-item-list.place-order li .media .media-right {
  text-align: right;
  max-width: 0;
  word-wrap: break-word;
}

output .list-inline.express-service li {
  padding-right: 5%;
  font-size: 15px;
}

form .form-group.form-group-datepicker .input-group {
  width: 250px;
}

form .form-group .selectiongroup {
  height: 44px;
  background: transparent;
}

form .form-group .selectiongroup input {
  background: var(--secondary-background-color);
  height: 44px !important;
  border: 1px solid var(--light-text-color);
  padding: 15px;
  color: var(--primary-text-color);
  caret-color: var(--primary-text-color);
  -webkit-text-fill-color: var(--primary-text-color);
}

form.canteen-orders-form .form-group .selectiongroup input {
  height: 51px !important;
}

.def-block-wrapper.canteen-setup {
  margin-top: 20px;
}

.def-block-wrapper.canteen-setup .def-block {
  margin-bottom: 20px;
}

.def-block-wrapper.canteen-setup .def-block.def-block-lunch-menu .form-group,
.def-block-wrapper.canteen-setup
  .def-block.def-block-motemat-delivery
  .form-group {
  margin-bottom: 0;
}

.def-block-wrapper.canteen-setup .def-block.def-block-lunch-menu .btn-save,
.def-block-wrapper.canteen-setup
  .def-block.def-block-motemat-delivery
  .btn-save {
  margin-top: 15px;
  margin-bottom: 30px;
}

.def-block-wrapper.canteen-setup
  .def-block.def-block-lunch-menu
  .btn-add-tenant,
.def-block-wrapper.canteen-setup
  .def-block.def-block-motemat-delivery
  .btn-add-tenant {
  margin-bottom: 15px;
}

.def-block-wrapper.canteen-setup .actions {
  margin-left: 20px;
  margin-top: 7px;
}

.def-block-wrapper.canteen-setup .actions.actions-inside-table {
  margin: 0;
}

.def-block-wrapper.canteen-setup form .nico-modal {
  min-width: 80px;
}

.def-block-wrapper.canteen-setup form .nico-modal .dropdown,
.def-block-wrapper.canteen-setup form .nico-modal .dropup {
  max-width: 230px;
}

.def-block-wrapper.canteen-setup form .nico-modal .form-control {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  min-height: 45px;
}

.def-block-wrapper.canteen-setup
  form
  .form-group.form-group-time-range
  .input-group {
  max-width: 160px;
}

.def-block-wrapper.def-create-order .def-alert {
  margin: 0 10px 10px 0;
}

.def-block-wrapper.def-create-order
  .equal-height-body
  .col-md-8.col-lg-8.def-block.def-block-dark {
  height: 1px;
  position: relative;
  padding-bottom: 80px;
}

.def-block-wrapper.def-create-order
  .equal-height-body
  .col-md-8.col-lg-8.def-block.def-block-dark
  .def-footer {
  position: absolute;
  width: 100%;
  bottom: 30px;
  left: 0;
  padding-right: 30px;
}

.def-block-wrapper .def-motemat {
  background: var(--secondary-background-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.def-block-wrapper .def-motemat .def-alert,
.def-block-wrapper .def-motemat .def-block {
  margin-bottom: 25px;
}

.def-block-wrapper .def-motemat th .link {
  color: var(--light-text-color);
}

.def-block-wrapper .def-alert {
  position: relative;
}

.def-block-wrapper .def-alert .close {
  font-size: 13px;
  height: 25px;
  width: 25px;
  text-align: center;
  padding-top: 5px;
  opacity: 1;
  position: absolute;
  top: -13px;
  left: auto;
  right: -13px;
  bottom: auto;
  color: #fff;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
}

.def-block.def-block-dark {
  background-color: var(--secondary-background-color);
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.def-block.def-block-padded {
  padding: 30px;
}

.def-block .def-block-header {
  margin-bottom: 15px;
  position: relative;
}

.def-block .def-block-header p {
  color: var(--light-text-color);
}

.def-block-header-links {
  position: absolute;
  right: 0;
}

.def-block-header-links.vertical-align-middle {
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.def-block-header-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.def-block-order-form .def-block-header {
  margin-top: 20px;
}

.def-block-order-form .def-block-content .list-item-content > .more {
  margin-bottom: 0;
}

.def-block-order-form .def-block-content .list-item-content ul.table-list {
  margin-bottom: 0;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.def-block-order-form .def-block-content .list-item-content ul.table-list li {
  margin-bottom: 0;
}

.def-block-order-form
  .def-block-content
  .list-item-content
  ul.table-list
  li:last-of-type {
  margin-bottom: 0;
}

.def-block-order-form .def-block-content .page-navigation-compressed {
  margin-top: 30px;
}

.def-block-order-form
  .def-block-content
  .page-navigation-compressed
  .pagination {
  margin: 0;
}

.def-block-order-form .def-block-content .table .actions {
  float: right;
}

.def-block-order-form .def-block-content .table .actions li {
  padding-right: 10px;
}

.def-block-order-form .def-block-content .table .actions li:last-of-type {
  padding-right: 0;
}

.def-block-order-form .def-block-content .table .actions li a i {
  display: block;
}

.def-block-place-order .def-content .col-sm-4.col-md-4 {
  padding-right: 0;
}

.def-block-place-order .def-content .col-sm-4.col-md-4 button.form-control {
  border-radius: 4px 0 0 4px;
}

.def-block-place-order .def-content .col-sm-8.col-md-8 {
  padding-left: 0;
}

.def-block-place-order .def-content .col-sm-8.col-md-8 button.form-control {
  border-radius: 0 4px 4px 0;
}

.def-block-place-order .input-group {
  width: 100%;
}

.def-block-place-order .item-total {
  margin-top: 20px;
}

.def-block-place-order .item-total .list-group {
  margin-bottom: 0;
}

.def-block-place-order .item-total .list-group .vat-details {
  padding: 5px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin: 2px 0;
}

.def-block-place-order .item-total .list-group .list-group-item {
  background: transparent;
  color: #5bbfeb;
  padding: 5px;
  border: none;
  text-transform: uppercase;
}

.def-block-place-order .item-total .list-group .list-group-item span {
  float: right;
  text-transform: initial;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 45%;
}

.def-block-place-order .def-footer {
  text-align: right;
  margin-top: 30px;
}

.def-block-place-order .scrollable {
  max-height: 370px;
}

.def-block-place-order .scrollable .place-order {
  margin-right: 10px;
}

.def-block-motemat-delivery .form-group {
  margin-bottom: 0;
}

.def-block-motemat-delivery .btn-add-delivery {
  margin-bottom: 15px;
}

.def-block-deliver-option .title {
  width: 400px;
}

.def-block-deliver-option .price,
.def-block-deliver-option .vat {
  width: 200px;
}

.def-block-express-type .form-group {
  margin-bottom: 0;
}

.def-block-response-text textarea {
  min-height: 100px;
}

.def-block-response-text .def-block-content .col-md-6:nth-child(2n + 1) {
  clear: left;
}

.def-block-motemat .data-filter,
.def-block-motemat-email .data-filter {
  margin-top: 30px;
}

.def-motemat .btn-submit {
  margin-bottom: 15px;
}

.table-motemat-oh thead tr th {
  word-wrap: break-word;
  white-space: inherit;
}

.table-motemat-oh tbody tr.tr-has-error .nico-tooltip {
  max-width: 300px;
  display: block;
  margin: 0;
}

.table-motemat-oh tbody tr.tr-has-error td {
  vertical-align: top;
}

.table-motemat-oh tbody tr.tr-has-error .day-err,
.table-motemat-oh tbody tr.tr-has-error .err {
  margin-top: 15px !important;
}

.table-motemat-oh .input-group.is-text {
  width: 155px;
}

.table-motemat-oh .input-group.is-text input::placeholder {
  font-size: 13px;
}

.table-motemat-oh th.day {
  width: 100px;
}

.table-motemat-oh th.motemat-date-type {
  width: 380px;
}

.table-motemat-oh button.form-control {
  border: 1px solid transparent;
  border-radius: 4px !important;
}

.table-add-rent-space tbody tr.tr-has-error td {
  vertical-align: middle;
}

.table-add-rent-space th.day {
  width: 140px;
}

.table-add-rent-space th.del-options {
  width: 250px;
}

.def-block-view {
  margin-bottom: 20px;
}

.form-label {
  color: var(--light-text-color);
  margin-bottom: 10px;
}

.def-label-data {
  margin-bottom: 15px;
}

.def-label-data.def-label-data-photos {
  margin-bottom: 0;
}

.def-label-data.def-label-data-photos label {
  margin-bottom: 10px;
}

.def-label-data label {
  color: var(--light-text-color);
  display: block;
  font-weight: normal;
  margin: 0;
}

.def-label-data span,
.def-label-data p {
  word-wrap: break-word;
  margin: 0;
}

.def-label-data > a {
  display: inline-block;
  margin-top: 3px;
}

.def-label-data .form-group {
  margin-bottom: 0;
  margin-top: 5px;
}

.def-alink {
  text-decoration: underline;
  -moz-transition: all 500ms cubic-bezier(0.7, 1, 0.7, 1);
  -o-transition: all 500ms cubic-bezier(0.7, 1, 0.7, 1);
  -webkit-transition: all 500ms cubic-bezier(0.7, 1, 0.7, 1);
  transition: all 500ms cubic-bezier(0.7, 1, 0.7, 1);
}

.def-alink:hover,
.def-alink:focus {
  color: #5bbfeb;
  text-decoration: underline;
}

.table-dark.table-conference tr th.status {
  width: 145px;
}

.def-comment-activities {
  max-height: 550px;
  overflow-y: auto;
}

.def-comment-activities ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.def-comment-activities ul li {
  margin-bottom: 15px;
}

.def-comment-activities ul li:last-of-type {
  margin-bottom: 0;
}

.def-comment-activities ul li .def-user-avatar {
  float: left;
  margin-right: 15px;
  height: 60px;
  width: 60px;
}

.def-comment-activities ul li .def-user-avatar img {
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.def-comment-activities ul li .def-user-content {
  display: block;
  overflow: hidden;
}

.def-comment-activities ul li .def-user-content h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.def-comment-activities ul li .def-user-content span {
  color: var(--light-text-color);
  font-size: 13px;
}

.cancel-order {
  margin-top: 25px;
}

.error.flex-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.error.full-height {
  height: 85vh;
}

.error .error-type {
  font-size: 8em;
  font-weight: 800;
}

.error .error-title {
  font-size: 4.7em;
}

.error p {
  margin: auto;
  max-width: 580px;
}

.error .btn-custom {
  margin-top: 7em;
}

.table-conference .form-group-mini button.form-control .dropdown-text {
  max-width: 70%;
  font-size: 13px;
}

.table-conference .item-list-wrapper {
  font-size: 13px;
}

.table-conference .list-item-content .label.info-bg {
  margin-left: 20px;
  margin-bottom: 10px;
}

.equal-height-body {
  display: table;
  width: 100%;
}

.equal-height-body .col-md-4.col-lg-4,
.equal-height-body .col-md-8.col-lg-8 {
  float: none;
  display: table-cell;
  max-width: 0;
  vertical-align: top;
}

.def-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.def-switch.disabled-switch {
  opacity: 0.6;
}

.def-switch input {
  display: none;
}

.def-switch input + .def-switch-slider:before {
  background-color: var(--secondary-background-color);
}

.def-switch input:checked + .def-switch-slider:before {
  background-color: var(--secondary-background-color);
}

.def-switch input:checked + .def-switch-slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

.def-switch input:focus + .def-switch-slider {
  box-shadow: 0 0 1px #5bbfeb;
}

.def-switch .def-switch-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #6b6e76;
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 24%);
  border: 0;
}

.def-switch .def-switch-slider:before {
  position: absolute;
  content: "";
  bottom: 4px;
  border: 1px solid var(--light-text-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: #fff;
}

.def-switch .def-switch-slider.def-switch-slider-round {
  border-radius: 32px;
}

.def-switch .def-switch-slider.def-switch-slider-round:before {
  border-radius: 50%;
}

.check .control-label {
  color: var(--light-text-color);
}

.check .checkbox.inline .styled-checkbox + label {
  display: flex;
  align-items: center;
  padding-right: 60px;
}

output {
  color: #fff;
  padding-top: 15px;
}

output b {
  font-weight: normal;
  font-size: 13px;
}

.output {
  text-align: left;
}

.output b {
  font-weight: normal;
  font-size: 12px;
}

.output span {
  font-weight: 600;
}

#prices {
  vertical-align: middle;
}

#prices .form-group:first-child input {
  margin-bottom: 15px;
}

.def-block.def-tenant-add-form {
  margin: 0 !important;
  position: relative;
}

.def-block.def-tenant-add-form .def-block-header {
  margin-bottom: 10px;
}

.def-block.def-tenant-add-form .def-block-header h4 {
  color: var(--light-text-color);
  font-weight: 700;
  font-size: 16px;
}

.def-block.def-tenant-add-form .close {
  opacity: 1;
  display: inline-block;
  text-align: center;
  padding-top: 5px;
  font-size: 28px;
  position: absolute;
  top: -20px;
  left: auto;
  right: -15px;
  bottom: auto;
  z-index: 5;
}

.tenant-add-form-wrapper,
.accordion-mulitple-menu-items .panel {
  background: var(--secondary-background-color);
  padding: 17px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.tenant-specific td .vertical-top {
  display: inline-block;
  vertical-align: middle;
}

.accordion-mulitple-menu-items .panel-default > .panel-heading {
  border: 0;
  padding: 0;
  cursor: inherit;
}

.accordion-mulitple-menu-items
  .panel-default
  > .panel-heading
  .panel-title
  .form-group {
  display: inline-block;
  margin-bottom: 0;
}

.accordion-mulitple-menu-items .panel-default > .panel-heading .panel-title a {
  font-size: 16px;
  display: block;
}

.accordion-mulitple-menu-items
  .panel-default
  > .panel-heading
  .table
  tbody
  tr
  td {
  padding: 0;
  border: 0;
  position: relative;
}

.accordion-mulitple-menu-items
  .panel-default
  > .panel-heading
  .table
  tbody
  tr
  td
  .fa-angle-up,
.accordion-mulitple-menu-items
  .panel-default
  > .panel-heading
  .table
  tbody
  tr
  td
  .fa-angle-down {
  color: rgba(255, 255, 255, 0.5);
}

.accordion-mulitple-menu-items
  .panel-default
  > .panel-heading
  .table
  tbody
  tr
  td
  .actions {
  top: 50%;
  margin-top: -20px;
  right: 0;
  position: absolute;
  z-index: 10;
  min-width: 131px;
  text-align: right;
}

.accordion-mulitple-menu-items .panel-default .panel-body {
  padding: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.25) !important;
  margin-top: 15px;
}

.accordion-mulitple-menu-items .panel-default .panel-body table thead tr th {
  padding: 15px 0 0 0;
}

.accordion-mulitple-menu-items .panel-default .panel-body table td {
  padding: 15px 15px 15px 0;
  position: relative;
}

.accordion-mulitple-menu-items
  .panel-default
  .panel-body
  table
  .actions
  li:nth-of-type(2),
.accordion-mulitple-menu-items
  .panel-default
  .panel-body
  table
  .actions
  li:only-child {
  margin-right: 35px;
}

.table.table-bordered.tenant-specific tr th {
  padding-right: 15px;
  word-wrap: break-word;
  white-space: inherit;
  border: none;
}

.tenant-add-form-wrapper .table tbody tr:last-child,
.tenant-add-form-wrapper .table tbody tr:nth-last-child(2) {
  border-bottom: 0 !important;
}

.tenant-add-form-wrapper .table tbody tr td {
  padding: 15px 15px 15px 0;
  border: 0;
}

.tenant-add-form-wrapper .table .actions li:last-of-type {
  margin-right: 35px;
}

.tenant-add-form-wrapper .table + .table {
  margin-top: 20px;
}

.remove-record {
  opacity: 0.9;
}

.serving-time-schedule {
  position: relative;
  width: 150px;
  display: inline-block;
  margin: 0 15px 10px 0;
}

.serving-time-schedule.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.serving-time-schedule.disabled a {
  cursor: not-allowed;
  pointer-events: none;
}

.served-menu-type {
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 14px;
  display: flex;
  color: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.served-menu-type:hover,
.served-menu-type:focus,
.served-menu-type:active {
  color: #fff;
}

.served-menu-type figure {
  width: 50px;
  min-width: 50px;
  height: 50px;
}

.served-menu-type figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.served-menu-type > span {
  align-self: center;
  padding: 0 5px 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.remove-time-slot {
  width: 20px;
  height: 20px;
  text-shadow: none;
  opacity: 1;
  font-size: 14px;
  text-align: center;
  line-height: 19px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.remove-time-slot:hover,
.remove-time-slot:focus,
.remove-time-slot:active {
  opacity: 1;
}

.serving-time {
  color: var(--light-text-color);
  margin-bottom: 0;
}

.add-time-slot {
  color: #fff;
}

.add-time-slot:hover,
.add-time-slot:focus,
.add-time-slot:active {
  color: #fff;
}

.has-slots-recorded .has-multi-input-group {
  pointer-events: none;
  opacity: 0.5;
}

.time-slot-change-info {
  color: var(--light-text-color) !important;
}

.def-carousel-content-img {
  margin-bottom: 20px;
  display: block;
}

.def-carousel-content-img img {
  height: 205px;
  object-fit: fill;
  width: 100%;
  max-width: inherit;
}

_:-ms-lang(x),
.def-block-place-order {
  min-height: 820px;
}

.dropdown-item-title h4 {
  font-size: 14px;
  font-weight: 400;
}

.has-multi-line-row .dropdown-item-title {
  width: calc(100% - 35px);
  display: flex;
  align-items: start;
}

.has-multi-line-row .dropdown-item-title h4 {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: auto;
  display: inline-block;
  max-width: 50%;
  max-height: initial;
  overflow: hidden;
}

.has-multi-line-row .form-control {
  min-height: 50px;
  position: relative;
  text-align: left;
  padding: 4px 25px;
}

.has-multi-line-row .form-control .pull-left {
  display: inline-block;
  float: none !important;
}

.has-multi-line-row .form-control .pull-right {
  position: absolute;
  right: 0;
  top: 57%;
  transform: translateY(-50%);
  margin-top: 0 !important;
}

.dropdown-menu-items .has-multi-line-row .form-control {
  height: auto;
}

.dropdown-menu-items .has-multi-line-row .pull-left {
  float: left !important;
}

.dropdown-menu-items .item-list-wrapper > p {
  flex: 1 1 100%;
  padding-left: 35px;
  font-size: 90% !important;
  color: var(--light-text-color) !important;
}

.rs-filter-category {
  padding-right: 0 !important;
}

.rs-filter-category .form-control {
  border-radius: 4px 0 0 4px;
}

.rs-filter-room {
  padding-left: 0 !important;
}

.rs-filter-room .form-control {
  border-radius: 0 4px 4px 0;
}

.nico-modal .bst-adv-dropdown .dropdown-menu li.no-data p {
  color: var(--light-text-color);
  margin: 0;
  padding: 0 8px;
  word-wrap: break-word;
}

.table.table-dark tbody tr[disabled] {
  cursor: not-allowed;
}

.table.table-dark tbody tr[disabled] label {
  cursor: not-allowed;
  pointer-events: none;
}

.table.table-dark tbody tr[disabled] .list-inline.actions.disabled li a {
  pointer-events: none;
}

@media only screen and (max-width: 1890px) {
  .table-motemat-oh tbody tr.tr-has-error .nico-tooltip {
    max-width: 200px;
    margin-top: -5px;
    margin-right: 10px;
    clear: both;
  }

  .table-motemat-oh .form-group .input-group {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .table-motemat-oh .form-group .input-group:last-child {
    margin-bottom: 0;
  }

  .table-motemat-oh
    .form-group.has-multi-input-group.has-dropdown
    .input-group {
    width: 60%;
  }

  .table-motemat-oh th {
    padding-right: 12px;
  }

  .table-motemat-oh th.del-normal {
    width: 370px;
  }

  .table-motemat-oh.date-specific .form-group.has-input .is-text {
    width: 90.5%;
  }

  .table-motemat-oh.date-specific th.motemat-date-type {
    width: 370px;
  }

  .table-motemat-oh.date-specific th.del-options {
    width: 155px;
  }

  .table-motemat-oh.date-specific th.del-normal {
    width: 360px;
  }

  .table-motemat-oh input {
    width: 100%;
  }
}

@media only screen and (max-width: 1504px) {
  .table-motemat-oh.date-specific .form-group .input-group {
    display: block;
    width: 90%;
  }

  .table-motemat-oh.date-specific .form-group.has-input .is-text {
    width: 90%;
  }

  .table-motemat-oh.date-specific th.motemat-date-type,
  .table-motemat-oh.date-specific th.del-normal,
  .table-motemat-oh.date-specific th.del-options {
    width: 215px;
  }
}

@media only screen and (max-width: 1300px) {
  .filter.list-inline > li > a {
    padding: 0 15px 15px;
  }
}

@media only screen and (max-width: 1244px) {
  .filter.list-inline > li > a {
    padding: 0 10px 15px;
  }

  .table-motemat-oh.date-specific {
    /* .form-group{ .input-group{ display: block; width: 84%; }
 } */
  }

  .table-motemat-oh.date-specific th {
    /* &.motemat-date-type, &.del-normal{ width: 215px;
 } */
    /* &.del-options{ width: 155px;
    } */
  }
}

@media only screen and (max-width: 1199px) {
  .table-motemat-oh tbody tr.tr-has-error {
    max-width: 195px;
  }

  .table-motemat-oh
    .form-group.has-multi-input-group.has-dropdown
    .nico-modal
    button {
    min-width: auto;
  }

  .table-motemat-oh th.del-options {
    width: 240px;
  }

  .table-motemat-oh.date-specific th.del-options {
    width: 178px;
  }

  .table-motemat-oh.date-specific th.motemat-date-type,
  .table-motemat-oh.date-specific th.del-normal {
    width: 170px;
  }

  .form-group.form-group-mini button.form-control .dropdown-text,
  .nico-modal .bst-adv-dropdown button.form-control .dropdown-text {
    max-width: 70%;
  }

  form.canteen-orders-form .form-group .selectiongroup input {
    height: 47px !important;
  }

  .table-conference .form-group-mini button.form-control {
    min-width: 100px;
  }

  .table-conference .form-group-mini button.form-control .dropdown-text {
    max-width: 61%;
    font-size: 12px;
  }

  .table-conference .item-list-wrapper {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1040px) {
  .table-motemat-oh
    .form-group.has-multi-input-group.has-dropdown
    .nico-modal
    button {
    min-width: 145px;
  }

  .table-motemat-oh
    .form-group.has-multi-input-group.has-dropdown
    .input-group {
    width: 75%;
  }

  .table-motemat-oh th.del-options {
    width: 195px;
  }

  .table-motemat-oh.date-specific th.del-options,
  .table-motemat-oh.date-specific th.motemat-date-type,
  .table-motemat-oh.date-specific th.del-normal {
    width: 155px;
  }

  form .form-group .selectiongroup input {
    font-size: 12px !important;
  }
}

@media only screen and (min-width: 1366px) {
  .def-block-wrapper.canteen-setup form .nico-modal {
    min-width: 100px;
  }

  .def-block-wrapper.canteen-setup {
    margin-top: 30px;
  }

  .def-block-wrapper.canteen-setup .def-block {
    margin-bottom: 30px;
  }

  .def-block .def-block-header {
    margin-bottom: 20px;
  }

  form.canteen-orders-form .form-group .selectiongroup input {
    padding: 15px;
  }

  .form-group.has-multi-input-group .input-group {
    min-width: 200px;
  }

  .form-group.has-multi-input-group.form-group-noflex-zone .input-group {
    min-width: 0;
  }
}

@media only screen and (min-width: 1920px) {
  .def-block-wrapper.canteen-setup form .nico-modal {
    min-width: 160px;
  }

  .def-block-wrapper.canteen-setup
    form
    .form-group.form-group-time-range
    .input-group {
    max-width: none;
  }
}

.print {
  height: 100vh;
  overflow: hidden;
  padding: 20px;
}

.print svg {
  width: 5cm;
}

/* cmp-booking-order-information */

.error-message-block {
  margin-top: 4px;
  padding: 12px;
  border-radius: 4px;
  background: var(--status-danger);
  color: #ffffff;
  font-size: 14px;
  line-height: 19px;
}

/* */
.meeting-room-order {
  padding-top: 7px;
  border-radius: 4px;
}

.table.table-bordered.table-bordered-header-only.table-meeting-room > thead tr {
  border-color: rgba(0, 0, 0, 0.2);
}

.table.table-bordered.table-meeting-room > tbody tr td,
.table.table-bordered.table-meeting-room > thead tr th {
  padding: 5px;
}

.table.table-bordered.table-meeting-room > tbody tr td p {
  margin: 0;
}

.table.table-bordered.table-meeting-room > tbody tr td h5 > span.dark-inline {
  display: inline;
}

.table.table-bordered.table-meeting-room > tbody tr td h5 > span {
  display: block;
}

.table.table-bordered.table-meeting-room > thead tr th:first-child {
  min-width: 200px;
  width: 200px;
  padding-left: 16px;
}

.table.table-bordered.table-meeting-room > thead tr th:nth-child(2),
.table.table-bordered.table-meeting-room > thead tr th:nth-child(3) {
  min-width: 120px;
  width: 130px;
}

.table.table-bordered.table-meeting-room > thead tr th:nth-child(4),
.table.table-bordered.table-meeting-room > thead tr th:nth-child(5) {
  min-width: 40px;
}

.table.table-bordered.table-meeting-room > thead tr th:last-child {
  padding-right: 16px;
}

.table.table-bordered.table-meeting-room > tbody tr td {
  padding-bottom: 16px;
}

.table.table-bordered.table-meeting-room > tbody tr td:last-child,
.table.table-bordered.table-meeting-room > tbody tr td:first-child {
  padding-left: 16px;
}

.item-total-meeting-room {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 15px 0;
  padding: 15px 0;
}

.def-block-place-order
  .item-total.item-total-meeting-room
  .list-group
  .vat-details {
  border: none;
}

@media (min-width: 768px) and (max-width: 1441px) {
  .table.table-bordered.table-meeting-room > thead tr th:first-child,
  .table.table-bordered.table-meeting-room > thead tr th:nth-child(2),
  .table.table-bordered.table-meeting-room > thead tr th:nth-child(3),
  .table.table-bordered.table-meeting-room > thead tr th:nth-child(4),
  .table.table-bordered.table-meeting-room > thead tr th:nth-child(5),
  .table.table-bordered.table-meeting-room > thead tr th:last-child {
    width: auto;
  }
}

/*meeting-room-prices*/
.meeting-room-prices-item .prices-row-block .prices-inputs-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.meeting-room-prices-item .prices-row-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  padding: 24px 11px;
}

.meeting-room-prices-item button {
  margin-top: 32px;
}

.meeting-room-prices-item .prices-row-block .prices-inputs-wrapper .price-room {
  display: flex;
  align-items: center;
  padding-right: 16px;
  margin-bottom: 0;
}

.meeting-room-prices-item
  .prices-row-block
  .prices-inputs-wrapper
  .price-room
  input {
  min-width: 170px !important;
}

.meeting-room-prices-item
  .prices-row-block
  .prices-inputs-wrapper
  .price-description
  p,
.meeting-room-prices-item
  .prices-row-block
  .prices-inputs-wrapper
  .price-room
  p {
  padding-right: 16px;
  font-size: 16px;
  margin: 0;
}

.meeting-room-prices-item .prices-row-block .prices-inputs-wrapper > div {
  position: relative;
}

.meeting-room-prices-item
  .prices-row-block
  .prices-inputs-wrapper
  .nico-tooltip-price {
  position: absolute;
  bottom: -15px;
  left: 0;
  height: 13px;
}

.meeting-room-prices-item
  .prices-row-block
  .prices-inputs-wrapper
  .price-description {
  padding-right: 16px;
}

.meeting-room-prices-item .prices-row-block .price-remove-icon i::before {
  color: var(--status-danger);
  font-size: 22px;
}

.meeting-room-prices-item .prices-row-block .price-remove-icon:hover {
  opacity: 0.6;
}

.meeting-room-prices-item .prices-row-block .price-remove-icon {
  padding-right: 37px;
  cursor: pointer;
}

/*access-configurator.component*/

.access-configuration .access-configuration-toggle {
  display: flex;
  align-items: center;
}

.access-configuration .access-configuration-toggle p {
  margin-left: 20px;
}

/*booked-meeting-room-calendar*/

.calendar-filters .btn-save i {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 16px;
  height: 16px;
}

.calendar-filters .btnclear {
  display: none;
}

.current-date-filter {
  display: flex;
  justify-content: flex-end;
}

.current-date-filter .current-date {
  width: 208px;
  border-radius: 4px;
  background: #353738;
  margin: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
}

.current-date-filter form .input-group {
  width: 208px;
}

.current-date-filter form {
  height: 45px;
  margin: 0 16px;
}

@media (max-width: 1199px) and (min-width: 991px) {
  .calendar-filters .btn-custom.btn-save {
    padding: 13px 18px;
  }
}

@media (min-width: 1200px) {
  .meeting-room-prices-item
    .prices-row-block
    .prices-inputs-wrapper
    .price-room
    input {
    min-width: 220px !important;
  }
}

.canteen-form-wrapper .def-block-content > br,
.canteen-form-wrapper .def-block-content > br,
.item-description.local-service > br,
.prelined-textarea > br {
  display: none !important;
}
