/**
 * Main importer for app zone
 * This file imports all LESS files from the layout/ directory
 */
/**
 * Color Variables
 */
/**
 * Main importer for app zone
 * This file imports all LESS files from the layout/ directory
 */
.checkbox {
  padding-left: 20px;
}
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: "FontAwesome";
  content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}
.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff;
}
.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff;
}
.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff;
}
.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff;
}
.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;
}
.checkbox.checkbox-sm label::before {
  width: 30px;
  height: 30px;
  top: -13px;
}
.checkbox.checkbox-sm label::after {
  width: 30px;
  height: 30px;
  padding-left: 4px;
  font-size: 20px;
  left: 1px;
  top: -13px;
}
.checkbox.checkbox-sm label {
  padding-left: 18px;
  top: 13px;
}
.checkbox.checkbox-md label::before {
  width: 34px;
  height: 34px;
  top: -17px;
}
.checkbox.checkbox-md label::after {
  width: 34px;
  height: 34px;
  padding-left: 4px;
  font-size: 24px;
  left: 1px;
  top: -18px;
}
.checkbox.checkbox-md label {
  padding-left: 22px;
  top: 17px;
}
.checkbox.checkbox-lg label::before {
  width: 46px;
  height: 46px;
  top: -28px;
}
.checkbox.checkbox-lg label::after {
  width: 46px;
  height: 46px;
  padding-left: 4px;
  font-size: 36px;
  left: 1px;
  top: -31px;
}
.checkbox.checkbox-lg label {
  padding-left: 34px;
  top: 32px;
}
.radio {
  padding-left: 20px;
}
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: border 0.15s ease-in-out;
  -o-transition: border 0.15s ease-in-out;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -webkit-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}
.radio-primary input[type="radio"] + label::after {
  background-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #337ab7;
}
.radio-danger input[type="radio"] + label::after {
  background-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #d9534f;
}
.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}
.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e;
}
.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c;
}
input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
  font-family: 'FontAwesome';
  content: "\f00c";
}
input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
  color: #fff;
}
input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
  color: #fff;
}
.radio.radio-sm label::before {
  width: 30px;
  height: 30px;
  top: -13px;
}
.radio.radio-sm label::after {
  width: 22px;
  height: 22px;
  padding-left: 4px;
  font-size: 20px;
  left: 4px;
  top: -9px;
}
.radio.radio-sm label {
  padding-left: 18px;
  top: 13px;
}
.radio.radio-md label::before {
  width: 34px;
  height: 34px;
  top: -17px;
}
.radio.radio-md label::after {
  width: 26px;
  height: 26px;
  padding-left: 4px;
  font-size: 24px;
  left: 4px;
  top: -13px;
}
.radio.radio-md label {
  padding-left: 22px;
  top: 17px;
}
.radio.radio-lg label::before {
  width: 46px;
  height: 46px;
  top: -28px;
}
.radio.radio-lg label::after {
  width: 36px;
  height: 36px;
  padding-left: 4px;
  font-size: 36px;
  left: 5px;
  top: -23px;
}
.radio.radio-lg label {
  padding-left: 34px;
  top: 32px;
}
/**
 * This file is for overriding some default bootstrap styles.
 *
 * > NOTE THAT THIS FILE AFFECTS GLOBAL STYLES.
 */
* {
  box-sizing: border-box;
}
body {
  background-color: #f3f4f4;
}
a,
.pseudo-link {
  color: #398387;
}
a:hover {
  color: #133537;
  text-decoration: none;
}
a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}
:focus-visible {
  outline: 1px dotted #466e70;
}
.pseudo-link {
  color: #398387;
  border-bottom: 1px dashed #466e70;
  cursor: pointer;
}
.pseudo-link:hover {
  color: #133537;
}
h1 {
  font-size: 1.5rem;
}
h2 {
  font-size: 1.3rem;
}
h3 {
  font-size: 1.1rem;
}
img {
  display: block;
}
hr {
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-top: 1px dashed #466e70;
}
.dropdown-menu {
  z-index: 910;
}
.tooltip {
  z-index: 1010;
  font-size: 0.9rem;
}
.tooltip-inner {
  outline: 4px solid #9b755745;
  max-width: 220px;
  padding: 10px 15px;
  color: #000;
  text-align: center;
  background-color: #faf6f0;
  border-radius: 0.25rem;
  border: 1px solid #bd9d84;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.tooltip-inner a {
  color: #3b3b3b;
  text-decoration: underline;
}
.tooltip-inner a:hover {
  color: #000000;
}
.tooltip-inner hr {
  margin-top: 0.7rem;
  margin-bottom: 0.5rem;
  color: #4b4b4b;
  border-top: 1px solid #4b4b4b;
}
.tooltip-hide-label {
  color: #3b3b3b;
  cursor: pointer;
  text-decoration: underline;
}
.tooltip-hide-label:hover {
  color: #000000;
}
.tooltip.show {
  opacity: 1;
}
.tooltip.bs-tooltip-auto[x-placement^=top] .arrow::before,
.tooltip.bs-tooltip-top .arrow::before {
  content: "";
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #7c6e59;
}
.tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.tooltip.bs-tooltip-bottom .arrow::before {
  content: "";
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: #7c6e59;
}
.tooltip.bs-tooltip-auto[x-placement^=right] .arrow::before,
.tooltip.bs-tooltip-right .arrow::before {
  content: "";
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #7c6e59;
}
.bg-dark {
  background-color: #565f55 !important;
}
.btn-primary {
  color: #466e70;
  border: 1px solid #b2c1c1;
  background-color: #dce1e1;
  border-radius: 1.2rem;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
  color: #466e70;
  background-color: #cbd8d8;
  text-shadow: 0px 0px 1px #9f9f9f;
  border-color: #7da3a3;
}
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
  color: #466e70;
  border: 1px solid #b2c1c1;
  background-color: #dce1e1;
  box-shadow: 0 0 0 0.2rem rgba(70, 110, 112, 0.322);
}
.btn-info {
  color: #fff;
  background-color: #568846;
  border-color: #588553;
}
.btn-info:hover {
  color: #fff;
  background-color: #588553;
  border-color: #588553;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #6E8234;
  border-color: #8ba049;
}
.btn-outline-info {
  cursor: pointer;
  border-radius: 1.2rem;
  padding: 0.3rem 0.9rem;
  font-weight: 350;
  /* font-size: .9rem; */
  /*  box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.3), 0 0.15px 0.9px 0 rgba(0, 0, 0, 0.1);*/
  color: #212529;
  border: 1px solid #b2c1c1;
  background-color: #dce1e1;
}
.btn-outline-info:hover {
  color: #2e2e2e;
  background-color: #cbd8d8;
  border: 1px solid #b2c1c1;
  text-shadow: 0px 0px 1px #9f9f9f;
}
.btn-outline-info.focus {
  background-color: #568082;
  border-color: #568082;
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #6d6d6d;
  background-color: #d9d9d9ab;
}
.btn-outline-info.focus,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(96, 167, 104, 0.568);
}
.btn-outline-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
  border-radius: 1.2rem;
}
.btn-outline-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #49834f;
  border-color: #49834f;
  outline: none;
}
.btn-outline-warning {
  color: #ffffff;
  background-color: #dc7521;
  border-color: #dc7521;
  border-radius: 1.2rem;
}
.btn-outline-warning:hover {
  color: #ffffff;
  background-color: #ea812d;
  border-color: #ea812d;
}
.btn-group-sm > .btn,
.btn-sm {
  border-radius: 1.2rem;
}
.btn-dark {
  color: #3d4c1c;
  /* border-color: #466e70; */
  /* background-color: #adc182; */
  border-radius: 2rem;
  border: 1px solid #839f70;
  background-color: #d4debe;
  box-shadow: 0 2px 10px -5px rgba(0, 0, 0, 0.3), 0 0.15px 0.9px 0 rgba(0, 0, 0, 0.1);
}
.btn-dark:hover {
  background-color: #bbc7a1;
  border-color: #77947a;
  color: #3d4c1c;
}
.btn-dark:focus {
  background-color: #bbc7a1;
  border-color: #77947a;
  color: #3d4c1c;
  box-shadow: 0 0 0 0.2rem rgba(163, 174, 100, 0.322);
}
.btn-dark:active {
  background-color: #bbc7a1 !important;
  border-color: #77947a !important;
  color: #3d4c1c !important;
}
.btn-outline-info:not(:disabled):not(.disabled):active {
  border-color: #568082;
  background-color: #568082;
}
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  border-color: #568082;
  background-color: #568082;
}
.navbar {
  padding: 0;
}
.navbar-brand {
  padding: 0;
  display: block;
  margin: 0;
}
@media (max-width: 576px) {
  .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.text-info {
  color: #568846 !important;
}
.bg-light {
  background-color: #fbfaf8 !important;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #f6f8f1 !important;
}
button:focus {
  outline: none !important;
}
.navbar-dark .navbar-nav .show > .nav-link {
  color: #7A724E;
}
.navbar-dark .navbar-nav .nav-link {
  margin: 0;
  padding: 0.4rem 0.9rem 0.4rem 0.9rem;
  color: #7A724E;
  transition: 0.2s background-color linear;
}
.nav-link-sub:first-child {
  margin-left: 0 !important;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #595339;
}
.navbar-nav .nav-item-selected {
  color: #595339 !important;
}
.navbar-dark .navbar-nav .nav-link-sub {
  position: relative;
  box-sizing: border-box;
  padding: 0 0 7px 0;
  margin: 0 0.5rem;
  color: #7A724E;
  border-bottom: 0px solid #82993d00;
  background: none;
  transition: 0.2s all linear;
}
.navbar-dark .navbar-nav .nav-link-sub:hover {
  text-decoration: none;
  transition: 0.2s all linear;
  text-shadow: 0px 0px 1px #857943;
}
.navbar-dark .navbar-nav .nav-link-sub::after {
  /* content:'';
 // visibility: hidden;
  opacity:0;
  transition: visibility 0s linear 0.5s, opacity 0.15s linear;

  margin-top: 4px;
  display: block;
  width: 100%;
  height: 2px;
  //border-radius: 50% ~"/" 100%;  // ~"/" must be use in LESS. In pure CSS we can use only /
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #7D9046;
  
  color: white;
  text-align: center;
*/
}
.navbar-dark .navbar-nav .nav-link-sub:hover::after {
  /*  content:'';
 // visibility: visible;
  opacity: 1;
  margin-top: 4px;
  display: block;
  width: 100%;
  height: 2px;
  //border-radius: 50% ~"/" 100%;  // ~"/" must be use in LESS. In pure CSS we can use only /
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #7D9046;
  
  color: white;
  text-align: center;
  */
}
.navbar-nav .nav-item-sub-selected {
  color: #857943;
  text-decoration: none;
  padding: 0 0 7px 0;
  margin: 0 0.5rem;
  text-shadow: 0px 0px 1px #857943;
  /*
  
  position:relative;
  box-sizing: border-box;
  padding: 0 0 7px 0;
  margin: 0 .5rem;;
  color: #63703d;
 // border-bottom: 4px solid #7D9046; //#9BB749
  background:none;
  transition: 0.2s all linear;
  */
}
.navbar-nav .nav-item-sub-selected::after {
  /*  content:'';
  margin-top: 4px;
  display: block;
  width: 100%;
  height: 2px;
  //border-radius: 5% ~"/" 100%;  // ~"/" must be use in LESS. In pure CSS we can use only /
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #7D9046;
  
  color: white;
  text-align: center;*/
}
.nav-item-sub-selected::after {
  /*  transition: 0.2s all linear;
  content: '';
  width: 0px; 
  height: 0px; 
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  
  border-bottom: 3px solid #9cb749;


  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0%;
  margin-left: 0px;*/
}
.info-feedback {
  display: node;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #17a2b8;
}
.btn,
[type='button'] {
  -webkit-appearance: none;
}
h1 > a:not(.btn),
h2 > a:not(.btn),
h3 > a:not(.btn),
h4 > a:not(.btn),
h5 > a:not(.btn),
h6 > a:not(.btn),
p > a:not(.btn),
li > a:not(.btn),
blockquote > a:not(.btn),
label > a:not(.btn),
h1 small > a:not(.btn),
h2 small > a:not(.btn),
h3 small > a:not(.btn),
h4 small > a:not(.btn),
h5 small > a:not(.btn),
h6 small > a:not(.btn),
p small > a:not(.btn),
li small > a:not(.btn),
blockquote small > a:not(.btn),
label small > a:not(.btn) {
  color: #398387;
  border-bottom: 1px dashed #466e70;
}
h1 > a:not(.btn):hover,
h2 > a:not(.btn):hover,
h3 > a:not(.btn):hover,
h4 > a:not(.btn):hover,
h5 > a:not(.btn):hover,
h6 > a:not(.btn):hover,
p > a:not(.btn):hover,
li > a:not(.btn):hover,
blockquote > a:not(.btn):hover,
label > a:not(.btn):hover,
h1 small > a:not(.btn):hover,
h2 small > a:not(.btn):hover,
h3 small > a:not(.btn):hover,
h4 small > a:not(.btn):hover,
h5 small > a:not(.btn):hover,
h6 small > a:not(.btn):hover,
p small > a:not(.btn):hover,
li small > a:not(.btn):hover,
blockquote small > a:not(.btn):hover,
label small > a:not(.btn):hover {
  text-decoration: none;
  color: #000;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  border-radius: 35px;
  font-size: 24px;
  line-height: 1.33;
}
.btn-circle.btn-sm {
  width: 22px;
  height: 22px;
  padding: 2px 0px;
  margin: 2px 0px;
  border-radius: 16px;
  font-size: 12px;
  line-height: 1.5;
}
.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0px;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;
}
.card__clock-info {
  float: right;
}
.card__img {
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 235px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.card__info-hover {
  position: absolute;
  padding: 16px;
  width: 100%;
  opacity: 0;
  top: 0;
}
.card__img--hover {
  transition: 0.2s all ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  height: 235px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  top: 0;
}
.card {
  transition: all 1s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
}
.card:hover {
  box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.25);
}
/************* modal confirmation dialog *******************/
.modal-backdrop {
  z-index: 983 !important;
  display: none;
}
.modal {
  -webkit-overflow-scrolling: touch;
  background-color: rgba(65, 65, 65, 0.5);
}
.modal .petticoat {
  position: fixed;
  width: 100%;
  height: 0px;
  z-index: 50;
  left: 0px;
  top: 0px;
}
.modal .modal-dialog {
  position: relative;
  max-width: 600px;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.modal .modal-content {
  display: block;
  position: relative;
  border-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
}
.modal .modal-content .modal-header {
  border-bottom: none;
  display: block;
  position: relative;
  text-align: center;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0px;
}
.modal .modal-content .modal-header .modal-close-button {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 6px;
  position: absolute;
  right: -5px;
  top: 0;
  background-image: url('/app/images/icons/close.png');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}
.modal .modal-content .modal-header .modal-close-button:focus {
  border-image: none;
  outline: none;
}
.modal .modal-content .modal-header .modal-close-button:hover {
  opacity: 1;
}
.modal .modal-content .modal-header .modal-icon {
  font-size: 1rem;
  line-height: 1.9rem;
}
.modal .modal-content .modal-header .modal-title {
  font-weight: 700;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.modal .modal-content .modal-header .modal-subtitle {
  margin-top: 0.2rem;
  border-top: 1px solid #c6c6c6;
  text-align: left;
  font-style: italic;
  font-weight: 200;
  font-size: 1rem;
}
.modal .modal-content .modal-header .modal-intro {
  margin-left: auto;
  margin-right: auto;
  color: #999999;
  margin-bottom: 20px;
}
.modal .modal-content .modal-header hr {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  width: 100px;
  height: 2px;
  border-top: 2px solid #398387;
}
.modal .modal-content .modal-body {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 0px;
}
.modal .modal-content .modal-body .section-heading {
  margin-top: 25px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e4e4e4;
}
.modal .modal-content .modal-footer {
  padding-top: 10px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 0px;
  border-top: 1px solid #e4e4e4;
  margin-top: 10px;
}
.modal .modal-content .modal-footer.no-border {
  border-top: 0px;
  padding-top: 10px;
  margin-top: 0px;
}
.driver-popover:has(.driver-popover-arrow-side-right) {
  margin-left: 12px;
  transform: translateX(12px) !important;
}
/* Z-index summary */
/* 
  1010  tooltips //in bootstrap-overrides.less
  970  my modules drop down menu
 // 1050  workaround for right resizable, sticked tabs (eg. tabs with todos in beekeeper visitation). Modal windows opend from component are hiddne withut this workaround
  1000  modal windows // in bootstrap-overrides.less
  985   burgermenu panel
  983   modal-backdrop (modal background) //in bootstrap-overrides.less
  982   NFC menu
  981   navbar-brand (logo)
  980   header with logo and navbar // in layout.less // it is out of order because is used function appendTo for Shoppng cart compnent
  942   sticked shopping cart button //in shop-shopping-cart-button
  940   back to top button // in layout.less
  910   dropdown menus (like shopping cart button) //in bootstrap-overrides.less
  800   SP slider arrows
*/
[v-cloak] {
  display: none;
}
html,
body {
  height: 100%;
  margin: 0;
}
#shoppingCartPlaceholder {
  display: none;
  visibility: hidden;
}
#shopping-cart-button {
  display: none;
  visibility: hidden;
}
h4 {
  transition: all 0.15s ease-in;
  font-size: 1.25rem;
  margin: 0;
  color: #212529;
}
.bold-link {
  font-weight: 700;
}
.hr2 {
  margin-top: 0;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px dashed #466e70;
}
.altcha .altcha-logo {
  margin-left: 0.5rem;
}
.altcha .altcha-label {
  margin-bottom: 0;
}
.round-button {
  display: inline-flex;
  height: fit-content;
  align-items: center;
  background-color: white;
  border: none;
  border-radius: 999px;
  padding: 0 1rem 0 0;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.round-icon {
  width: 3.7rem;
  height: 3.7rem;
  background-color: #466e70;
  /* tmavě zelená */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.round-icon img {
  width: 80%;
}
.round-label {
  margin-left: 0.75rem;
  font-size: 1rem;
  color: #2f6f3a;
  white-space: nowrap;
}
/* Pokud není text, skryj label a zmenši padding */
.round-button:has(.round-label:empty) {
  padding: 0;
}
.round-button:has(.round-label:empty) .round-label {
  display: none;
}
.round-only-icon {
  cursor: default!important;
}
header .app-header {
  z-index: 980;
  background-color: #f7f7f7;
  border-bottom: 1px dashed #466e70b3;
  box-shadow: 0px 2px 8px -2px rgba(0, 0, 0, 0.2);
}
header .header {
  position: relative;
  display: flex;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  padding: 0;
  align-items: center;
}
header .header-logo {
  position: absolute;
  left: 0;
  top: 0;
}
header .header-logo img,
header .header-logo svg {
  height: 4.3rem;
  padding: 0.5rem 0rem 0rem 0rem;
}
header .header-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 4.4rem;
}
header .header-menu {
  display: flex;
  margin-left: 15.2rem;
  height: 2rem;
}
header .header-menu-button:has(.header-menu-button-signup) {
  overflow: visible !important;
}
header .header-menu-stripe {
  border-radius: 0.3rem;
  padding: 0.2rem 0.5rem 0.2rem 0.3rem;
  font-size: 0.95rem;
}
header .header-menu-stripe a {
  display: block;
  padding: 0 1rem 0 0;
  color: #223031 !important;
  font-style: normal;
  font-weight: 400;
}
header .header-menu-stripe a:last-of-type {
  padding-right: 0;
}
header .header-menu-stripe a:hover {
  text-decoration: none;
  color: #000000 !important;
}
header .header-menu-stripe a.nav-item-selected {
  font-weight: 500;
}
header .header-menu-stripe span {
  padding: 0 0 0 1rem;
  cursor: pointer;
}
header .hand-animation div {
  position: relative;
  display: block;
  font-size: 0.9rem;
  padding-left: 0.1rem;
}
header .hand-animation:hover div {
  animation: pulse-updown 2s ease-in-out infinite;
}
@keyframes pulse-updown {
  0%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-4px);
  }
}
header .nfc-placeholder {
  min-width: 3.4rem;
  height: 2rem;
}
header .nfc-placeholder-fake {
  display: block;
  position: absolute;
  cursor: pointer;
  padding: 0;
  border: 0px;
  margin-left: 1rem;
  margin-right: 1rem;
  border-radius: 0.3rem;
  /* margin-bottom: .1rem;*/
}
header .nfc-placeholder-fake svg {
  display: block;
  position: relative;
  width: 1.4rem;
  height: 2rem;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  fill: #858585;
}
header .header-menu-main {
  width: 100%;
  vertical-align: middle;
  text-align: right;
  border-radius: 1rem;
  /* align-items: center !important; */
  background-color: #466E70;
  display: flex;
  align-items: center !important;
  justify-content: flex-end;
  padding: 0 1rem;
  font-weight: 200;
}
header .header-menu-main a {
  display: block;
  padding: 0;
  margin-right: 1rem;
  color: #f6f6f6 !important;
  font-style: normal;
  font-weight: 300;
  font-size: 1rem;
}
header .header-menu-main a:last-of-type {
  margin-right: 0;
}
header .header-menu-main a:hover {
  text-decoration: none;
  color: #ffffff !important;
}
header .header-menu-main a.nav-item-selected {
  font-weight: 500;
  color: #ffffff !important;
}
header .header-submenu {
  display: flex;
  margin-left: 15.2rem;
}
header .header-submenu-title {
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  height: 100%;
  color: #ffffff;
  font-weight: 400;
}
header .cloud-menu .btn-group {
  width: 100%;
}
header .cloud-menu-dropdown .cloud-menu-item-selected a {
  background-color: #466e7054 !important;
  font-weight: 400;
}
header .cloud-menu-dropdown .btn {
  padding: 0.1rem 0.75rem;
  background-color: #466e70;
  border: none;
  color: #f6f6f6;
  height: 2rem;
  font-weight: 400;
  border-radius: 0.7rem;
}
header .cloud-menu-dropdown .btn i {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.3s ease-in-out;
}
header .cloud-menu-dropdown .btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 156, 91, 0.3);
}
header .cloud-menu-dropdown .show > .btn-outline-info.dropdown-toggle {
  color: #ffffff;
  background-color: #466e70;
  border: none;
  outline: none;
}
header .cloud-menu-dropdown .btn-outline-info:not(:disabled):not(.disabled):active {
  color: #ffffff;
  background-color: #3b6567;
  border: none;
}
header .cloud-menu-dropdown .btn-outline-info:hover {
  border: none;
  color: #ffffff;
}
header .cloud-menu-dropdown .dropdown-menu {
  width: 100%;
  padding: 0;
  margin: 0.2rem 0 0 0;
  font-size: 1rem;
  background-color: #f2f2f200;
  border: 0;
  left: 50% !important;
  transform: translate3d(-50%, 1.97rem, 0px) !important;
}
header .cloud-menu-dropdown .dropdown-menu li {
  margin-bottom: -1px;
  text-align: center;
  font-weight: 300;
  color: #000000;
  background-color: #dce1e1;
  border-radius: 0;
  border-width: 1px;
  border-color: #466e70;
  border-style: solid;
  overflow: hidden;
}
header .cloud-menu-dropdown .dropdown-menu li:first-child {
  border-radius: 0.7rem 0.7rem 0 0;
}
header .cloud-menu-dropdown .dropdown-menu li:last-child {
  border-radius: 0 0 0.7rem 0.7rem;
}
header .cloud-menu-dropdown .dropdown-menu li:last-of-type a {
  margin-bottom: 0;
}
header .cloud-menu-dropdown .dropdown-item {
  margin: 0;
  padding: 0;
  border: none;
  padding: 0.3rem;
  color: #254b4d;
}
header .cloud-menu-dropdown .dropdown-item:hover {
  background-color: #cbd3d4;
  color: #254b4d;
}
.header-menu-button {
  position: relative;
  cursor: pointer;
  min-width: 2rem;
  min-height: 2rem;
}
.header-menu-button:hover .label {
  background-color: #e9e0c7;
}
.header-menu-button:hover .icon {
  box-shadow: 3px 0px 5px #1228292e;
}
.header-menu-button .label {
  display: flex;
  align-items: center;
  height: 2rem;
  padding: 0 0.7rem 0 2.4rem;
  font-size: 0.9rem;
  color: #212529;
  background-color: #eee7d3;
  border: 1px solid #bfb18c;
  border-radius: 1rem;
  min-width: max-content;
  text-wrap: nowrap;
  transition: background-color 0.2s ease;
}
.header-menu-button .label a {
  color: #212529;
  text-decoration: none;
}
.header-menu-button .icon {
  /* cursor: pointer; */
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #bfb18c;
  background-color: #F6F4E9;
  /* border-right: 1px solid #466E70; */
  z-index: 10;
  border-radius: 1rem;
  /* box-shadow: 1px 0 1px 0px #466e708a; */
  width: 2rem;
  height: 2rem;
  justify-content: center;
  align-items: center;
  transition: box-shadow 0.2s ease;
}
.header-menu-button .icon img {
  width: 2rem;
}
.header-menu-button .icon.badge::after {
  content: attr(data-badge);
  position: absolute;
  top: -0.2rem;
  right: -0.5rem;
  background-color: #466e70;
  color: white;
  font-size: 1rem;
  font-weight: 300;
  font-family: Arial, sans-serif;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.header-menu-button.nolink {
  cursor: default;
}
.header-menu-button.nolink:hover .icon {
  box-shadow: none;
}
.header-menu-button.nolink .label {
  cursor: default;
}
.header-menu-button.nolink .icon {
  cursor: default;
}
.header-menu-button.large {
  min-width: 3rem;
  min-height: 3rem;
}
.header-menu-button.large .label {
  height: 3rem;
  border-radius: 1.5rem;
  padding: 0 0.9rem 0 3.6rem;
}
.header-menu-button.large .icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
}
.header-menu-button.large .icon img {
  width: 3rem;
}
.header-menu-button.xlarge {
  min-width: 3.7rem;
  min-height: 3.7rem;
}
.header-menu-button.xlarge .label {
  height: 3.7rem;
  border-radius: 1.85rem;
  padding: 0 0.9rem 0 3.6rem;
}
.header-menu-button.xlarge .icon {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 1.85rem;
}
.header-menu-button.xlarge .icon img {
  width: 3.7rem;
}
.header-menu-button.left .label {
  padding: 0 3.6rem 0 0.9rem;
}
.header-menu-button.left .icon {
  left: unset;
  right: 0;
}
.cmm_tiles ul {
  padding: 0;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(4rem, 4rem));
  grid-gap: 1rem;
}
.cmm_tiles ul li {
  list-style-type: none;
}
.cmm_tiles ul li a {
  border: none;
}
.cursor-pointer {
  cursor: pointer;
}
.f-weight-500 {
  font-weight: 500;
}
.infobar {
  height: 1.7em;
  background-color: #e4ede1;
  box-shadow: inset 0px -3px 4px 0px rgba(0, 0, 0, 0.03);
}
.infobar a {
  font-size: 1em;
  color: #7A724E;
}
.fixed-top-spacer {
  height: 6rem;
}
.infobox {
  text-align: center;
}
.infobox div {
  display: inline-block;
  padding: 2rem 3rem;
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 0.5rem;
  box-shadow: 0px 3px 10px -8px rgba(0, 0, 0, 0.9);
}
.rounded-button-with-badge {
  width: 2.1rem;
  height: 2.1rem;
  position: relative;
  display: inline-block;
  padding: 0.5rem 0.5rem;
  margin-right: 0.7rem;
  color: #466e70;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1rem;
  border: 1px solid #b2c1c1;
  background-color: #dce1e1;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.rounded-button-with-badge:hover {
  background-color: #cbd8d8;
  text-shadow: 0px 0px 1px #9f9f9f;
}
.rounded-button-with-badge:focus {
  outline: none;
}
.rounded-button-with-badge.disabled {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #dfdfdf;
  border: 1px solid #b4b4b4;
  color: #a7a7a7;
}
.rounded-button-with-badge.active {
  border-color: #7da3a3;
  background-color: #cbd8d8;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
.rounded-button-with-badge::after {
  content: attr(data-badge);
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #cb8e4c;
  color: white;
  font-size: 10px;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.rounded-button-with-badge[data-badge="0"]::after {
  background-color: #b3b1ae;
}
.rounded-button-with-badge:not([data-badge])::after {
  display: none;
}
/********************/
/* Cloud menu********/
/*******************/
.cmm-header {
  padding-right: 1.4rem;
}
.cmm ul {
  display: inline-block;
  padding: 0;
  width: fit-content;
  margin-left: 0.8rem;
  margin-bottom: 1.2rem;
}
.cmm ul li {
  list-style-type: none;
  margin: 0rem 0 1.2rem 0rem;
}
.cmm ul li:last-of-type {
  margin-bottom: 0;
}
.cmm ul li a {
  border: none;
}
/*********************************************************/
/* Toolbar for mobile hamburger menu, shopping cart, ... */
/*********************************************************/
.b-sidebar > .b-sidebar-header {
  align-items: end;
}
.b-sidebar-header,
.b-sidebar-body {
  background-color: #f2f2f2;
}
.b-sidebar.b-sidebar-right > .b-sidebar-header .close {
  margin-right: unset;
  margin-left: auto;
}
/* Modules list */
.user_menu-item {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.3rem;
  padding: 0.2rem 0 0.2rem 0;
}
.menubar .nav-item {
  font-size: 1.6em;
  padding: 0.2rem 0.5rem 0.2rem 0.5rem;
  margin: auto 0.1em;
  color: #f4eee3;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.menubar .nav-item:hover {
  text-decoration: none;
  color: #f4eee3;
  background-color: #ad896d;
}
.menubar .nav-item-selected {
  text-decoration: none;
  color: #f4eee3;
  background-color: #ad896d;
}
/*******************************/
/* Submenu - user's cloud menu */
/*******************************/
.submenubar {
  z-index: 980;
  position: relative;
  height: 2.8rem;
  background-color: #a37c5d;
  font-size: 1rem;
  color: #ffffff;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.2);
}
.submenubar .nav-item-selected {
  color: #ffffff;
  background-color: #b19279;
}
.submenubar .nav-item-sub {
  cursor: pointer;
  font-weight: 400;
  font-size: 1rem;
  color: #fbf6ec;
  padding: 0.65rem 0.7rem;
  border-left: 3px solid #a37c5d;
  background-color: #ad896d;
}
.submenubar .nav-item-sub:last-child {
  margin-right: 0;
}
.submenubar .nav-item-sub:hover {
  text-decoration: none;
  background-color: #b19279;
}
.submenubar .nav-item-sub i {
  margin-left: 0.5rem;
}
.submenubar .nav-item-sub-selected {
  background-color: #b19279;
}
.icon-user {
  color: #f7f2ec !important;
}
.lightbulb-menu {
  text-shadow: 0px -3px 9px #FFF633;
}
/**************/
/* cloud menu */
/**************/
/**********************************/
/* modules menu - part of submenu */
/**********************************/
.icon-modules {
  height: 1.3rem;
  float: left;
  display: block;
  margin: 0.2rem 0.3rem 0.2rem 0;
}
.modules-menu {
  margin: 0;
}
.modules-menu li {
  list-style: none;
}
.modules-menu-item {
  display: block;
  text-wrap: nowrap;
  background-color: #568846;
  padding: 0.4rem 0.7rem;
  margin: 0.2rem 0.4rem;
  border: unset!important;
  text-decoration: none!important;
  color: #ffffff !important;
}
.modules-menu-item:hover {
  background-color: #6f9b61;
}
.modules-menu .selected {
  background: #568846;
  color: #ffffff !important;
}
.nav-text-small {
  font-size: 0.9rem;
  margin: 0.35rem 0.2rem;
  padding: 0.1rem 0.3rem;
}
/* ------------- */
/* My basic updates */
.dropdown-toggle-top-menu::after {
  font-family: "Font Awesome 5 free";
  font-size: 0.8em;
  border: none;
  content: "\f13a";
  font-weight: 600;
  right: -7px;
  top: 13%;
  position: absolute;
  display: inline-block;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #657c7c double;
  border-left-style: solid;
  border-radius: 50%;
  animation: spinner-rotation 0.75s infinite linear;
}
.spinner-small {
  width: 1.4rem;
  height: 1.4rem;
}
@keyframes spinner-rotation {
  to {
    transform: rotate(360deg);
  }
}
.spinner-container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: block;
  margin: auto;
}
.spinner-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('/images/spinner-loc.svg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.spinner-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  padding: 2px 4px;
}
.spinner-badges {
  position: absolute;
  right: 5px;
  bottom: 12px;
}
.tooltip {
  top: 0;
}
.cursor-pointer {
  cursor: pointer;
}
/* end of my basic updates */
.todo-card {
  display: block;
  padding-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 13rem;
  color: #000000;
  font-size: 0.9rem;
  transition: all 0.2s linear;
  margin-bottom: 1.5rem;
  border-radius: 0.7rem;
  border: 1px solid #afc1c1;
  overflow: hidden;
  background-color: #e8ebe8;
  box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: transform 0.7s ease, opacity 0.7s ease;
  transform: translateY(0);
}
.todo-card .todo-body {
  display: flex;
  height: 100%;
  /* background-color: #f7f7f7;*/
  background-color: #fafafa;
  flex-direction: column;
}
.todo-card .todo-body .todo-content {
  cursor: zoom-in;
  padding: 0.8rem 1rem 0 1rem;
  overflow: hidden;
  height: -webkit-fill-available;
  word-break: break-word;
  overflow-wrap: break-word;
}
.todo-card .todo-body .todo-content.overflowed::after {
  content: '\f141';
  line-height: 0.6rem;
  font-family: "Font Awesome 5 free";
  font-size: 1.3rem;
  font-weight: 600;
  color: #5a5a5a8f;
  position: absolute;
  text-align: center;
  bottom: 2.3rem;
  right: 0;
  /*background: #f7f7f7;*/
  background-color: #fafafa;
  border-radius: 4px;
  pointer-events: none;
  z-index: 53;
  width: -webkit-fill-available;
  -webkit-text-stroke: 2px #fafafa;
}
.todo-card .todo-badges {
  display: block;
  text-align: right;
  position: absolute;
  bottom: 3rem;
  right: 0;
  padding: 0 0.7rem;
}
.todo-card .todo-badges span {
  font-size: 0.8rem;
  display: block;
  width: fit-content;
  background-color: #e3e7e3;
  border-radius: 0.3rem;
  margin: 0.35rem 0 0 auto;
  padding: 0.1rem 0.5rem;
}
.todo-card .todo-badges .todo-badge-p1 {
  background-color: #ece9e3 !important;
}
.todo-card .todo-badges .todo-badge-p2 {
  background-color: #e9deb9 !important;
}
.todo-card .todo-badges .todo-badge-p3 {
  background-color: #f1caa0 !important;
}
.todo-card .todo-badges .todo-badge-ontop {
  background-color: #ced7d8 !important;
}
.todo-card .todo-badges .todo-badge-done {
  background-color: #d2dccc !important;
}
.todo-card .todox-card-menu {
  z-index: 54;
  position: absolute;
  width: 100%;
  bottom: 0;
  display: block;
  height: 2.2rem;
  background-color: #becccc5c;
  backdrop-filter: blur(10px);
  padding: 0rem 0.6rem;
  transition: background-color 0.3s ease;
}
.todo-card .todox-card-details {
  position: absolute;
  bottom: 0.5rem;
  width: -webkit-fill-available;
}
.todo-location-fullheight ul li {
  height: 1.2rem !important;
}
.todox-card-menu-bars {
  cursor: pointer;
  position: absolute;
  width: -webkit-fill-available;
  right: 0.5rem;
  bottom: 0.1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.9rem;
  text-align: right;
  border: none;
  color: #000000;
  border-radius: 0.4rem;
  z-index: 56;
}
.location-list {
  position: relative;
  font-size: 0.9rem;
  padding: 0.5rem;
}
.location-list li {
  display: block;
  line-height: 1.3rem;
  font-size: 0.8rem;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.location-list li i {
  opacity: 0;
  margin-right: 0.2rem;
  font-size: 0.7rem;
  color: #5a5a5a;
}
.location-list li:last-child i {
  opacity: 1;
}
.location-list li:last-child {
  height: 1.2rem;
}
.slide-menu {
  position: relative;
  justify-self: end;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  height: 7.8rem;
  margin-bottom: 1.8rem;
}
.slide-menu .slide-menu-button {
  display: block;
  position: relative;
  cursor: pointer;
  margin: 0 0 0.5rem 0;
  font-size: 0.8rem;
  line-height: 1.9rem;
  width: 2rem;
  height: 2rem;
  text-align: center;
  font-weight: 600;
  color: #000000;
  background-color: #f7f7f4;
  border-radius: 0.4rem;
  border: 1px solid #c9c9c9;
  box-shadow: 0 3px 4px -2px rgba(0, 0, 0, 0.2);
  z-index: 55;
}
.slide-menu .slide-menu-button:hover .slide-menu-button-tip {
  display: inline-block !important;
}
.slide-menu .slide-menu-button span {
  display: block;
  width: 100%;
  height: 100%;
}
.slide-menu .slide-menu-button-tip {
  position: absolute;
  display: none;
  right: 2.4rem;
  top: 0;
  width: max-content;
  height: 2rem;
  font-weight: 400;
  cursor: default ;
  padding: 0 0.4rem;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.9rem;
  background-color: #f7f7f4;
  border-radius: 0.4rem;
  border: 1px solid #c9c9c9;
  z-index: 55;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}
.slide-menu .slide-menu-button-tip:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0.65rem;
  width: 0;
  height: 0;
  border-width: 0.35rem 0 0.35rem 0.4rem;
  border-style: solid;
  border-color: transparent transparent transparent #878787;
}
.details-info {
  position: absolute;
  left: 0.8rem;
  bottom: 0.2rem;
  font-size: 0.8rem;
}
.todo-card.removing {
  transform: translateY(-120%);
  opacity: 0;
}
.todo-card:last-of-type {
  margin-bottom: 0;
}
.todox-card-menu:hover {
  background-color: #cbd8d8a1 !important;
}
.todo-card-body {
  cursor: pointer;
  background-color: #f7f7f7;
  padding: 1.5rem 1rem 1rem 1rem;
  transition: all 0.2s linear;
}
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: 'Normální' !important;
}
.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: 'Velké' !important;
}
.ql-container {
  font-size: 0.9rem;
}
.ql-editor .ql-size-large,
.ql-size-large {
  font-size: 1.2rem !important;
}
.todo-card-badges {
  cursor: pointer;
  text-align: right;
  position: relative;
  background-color: #f7f7f7;
  border-bottom: 1px dashed #8fa9a9;
  padding: 0 0.5rem 0.5rem 0.5rem;
  transition: all 0.2s linear;
}
.todo-card-badge {
  font-size: 0.8rem;
  display: inline-block;
  background-color: #ece9e3;
  border-radius: 0.3rem 0;
  margin-left: 0.2rem;
  margin-top: 0.2rem;
  margin-bottom: 2.2rem;
  padding: 0.05rem 0.5rem 0rem 0.5rem;
  border: 1px solid #c6c6c6;
}
.todo-card-menu {
  position: absolute;
  bottom: 0;
  cursor: pointer;
  display: block;
  height: 2.2rem;
  padding: 0rem 0.6rem;
}
.todo-card-menu-bars {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  padding: 0.5rem 0.5rem 0.3rem 0.5rem;
  font-size: 0.9rem;
  text-align: right;
  border: none;
  color: #000000;
  border-radius: 0.4rem;
}
.todo-card-details {
  position: relative;
  display: none;
  width: 100%;
}
.todo-info {
  position: relative;
  line-height: 1.2rem;
}
.todo-info-icon {
  position: relative;
}
.todo-info-icon::before {
  display: block;
  position: absolute;
  top: 0;
  left: -1rem;
  line-height: 1.4rem;
  font-family: "Font Awesome 5 free";
  font-size: 0.8em;
  border: none;
  font-weight: 600;
  color: #8b8b8b;
}
.todo-info-icon-created::before {
  right: 0.3rem;
}
.todo-info-icon-alarm::before {
  right: 0.3rem;
}
.todo-info-icon-detail::before {
  right: 0;
}
.todo-info-icon-done::before {
  right: 0;
}
.todo-info-icon-pin::before {
  content: "\f0e8";
  right: 0.2rem;
}
.todo-location-fullheight ul li {
  height: 1.2rem !important;
}
/* Duchovité překrytí */
.ghost {
  z-index: 1200;
  pointer-events: none;
  animation: dissolve 0.3s ease-out forwards;
}
/* Zajistí, že duch má stejný vzhled */
.ghost-wrapper {
  position: fixed;
  width: 1px;
  height: 1px;
  left: 0;
  top: 0;
  overflow: visible;
}
.ghost {
  position: fixed;
}
.ghost .location-list li i {
  opacity: inherit;
}
.ghost .details-info {
  display: none;
}
/* Efekt rozplynutí */
@keyframes dissolve {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.todo-content {
  /* Skryje výchozí marker seznamu */
  /* Checkbox marker pro zaškrtnuté položky */
  /* Checkbox marker pro nezaškrtnuté položky */
}
.todo-content .pseudolink {
  color: #398387;
}
.todo-content li[data-checked] {
  list-style-type: none;
  position: relative;
  padding-left: 2em;
}
.todo-content li[data-checked="true"]::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.25em;
  width: 1.1em;
  height: 1.1em;
  border: 1px solid #466e70;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
}
.todo-content li[data-checked="true"]::after {
  content: "";
  position: absolute;
  left: 0.45em;
  top: 0.55em;
  width: 0.6em;
  height: 0.35em;
  border-left: 2.5px solid #466e70;
  border-bottom: 2.5px solid #466e70;
  transform: rotate(-45deg);
}
.todo-content li[data-checked="false"]::before {
  content: "";
  position: absolute;
  left: 0.2em;
  top: 0.25em;
  width: 1.1em;
  height: 1.1em;
  border: 1px solid #466e70;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
}
.todo-importance-button {
  font-size: 0.9rem;
  display: inline-block;
  background-color: #ece9e3;
  border-radius: 0.3rem;
  margin: 0.2rem 0 0.2rem 0.3rem;
  cursor: pointer;
  padding: 0.1rem 0.5rem;
}
.todo-card-badge-p1 {
  background-color: #ece9e3 !important;
}
.todo-card-badge-p2 {
  background-color: #e9deb9 !important;
}
.todo-card-badge-p3 {
  background-color: #f1caa0 !important;
}
.todo-card-badge-ontop {
  background-color: #ced7d8 !important;
}
.todo-card-badge-done {
  background-color: #d2dccc !important;
}
.todo-importance-button label {
  margin: 0;
  cursor: pointer;
}
.todo-importance-button input {
  height: 0.7rem;
  margin: 0;
  cursor: pointer;
}
#page-wrap {
  height: 100%;
  height: auto !important;
  min-height: 100%;
  position: relative;
  padding-bottom: 3.4rem;
}
#page-wrap .tags {
  position: relative;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.05em;
  list-style: none;
  overflow: hidden;
  padding: 0;
}
#page-wrap .tags .tag::after {
  background: #f2f2f2;
}
#page-wrap .tags .tag a {
  color: #ffffff;
}
#page-wrap .tags .tag:hover {
  background-color: #c1823e;
}
#page-wrap .tags .tag:hover::after {
  border-left-color: #c1823e;
}
#page-wrap .tags .tag {
  background: #cb8e4c;
  border-radius: 0.6rem;
  color: #ffffff;
  display: inline-block;
  border: 0;
  padding: 0.2rem 0.5rem;
  position: relative;
  margin: 0 10px 10px 0;
  text-decoration: none;
  -webkit-transition: color 0.2s;
}
#page-wrap .tags .tag-pin {
  font-size: 1rem;
}
#page-wrap .tags-float {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  margin: 0;
}
#page-wrap .tags li {
  float: left;
  font-size: 0.7rem;
}
#page-wrap .blog-wrap {
  width: 100%;
  padding-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-gap: 20px;
}
@media (max-width: 767.99px) {
  #page-wrap .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.99px) and (max-width: 575.99px) {
  #page-wrap .blog-wrap {
    grid-template-columns: 1fr;
  }
}
#page-wrap .blog-card {
  text-decoration: none;
  color: #000000;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  min-width: 0;
  word-wrap: break-word;
  overflow: hidden;
  transition: all 0.3s ease-in;
  box-shadow: 1px 1px 6px 1px #7474741a;
  border-radius: 1rem;
  /* border-radius: .7rem; */
  border: 1px solid #d8d8d8;
  background-color: #ffffff;
}
#page-wrap .blog-card a {
  padding: 0.4rem;
  height: -webkit-fill-available;
}
#page-wrap .blog-card:hover .thumb span {
  transform: scale(1.06);
}
#page-wrap .blog-card:hover article h1 {
  text-shadow: 0 1px 3px rgba(70, 110, 112, 0.3);
}
#page-wrap .blog-card article {
  padding: 0.7rem 0.4rem 0.2rem 0.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#page-wrap .blog-card article p {
  margin-bottom: 0;
}
#page-wrap .blog-card h1 {
  transition: all 0.15s ease-in;
  font-size: 1.1rem;
  margin: 0;
  color: #212529;
}
#page-wrap .blog-card p {
  flex: 1;
  color: #434343;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 1rem;
}
#page-wrap .blog-card p.date {
  font-weight: 600;
  color: #858585;
  font-size: 0.9rem;
}
#page-wrap .blog-card p.date i {
  font-size: 0.8rem;
  margin-right: 0.2rem;
}
#page-wrap .blog-card .thumb {
  border-radius: 0.5rem;
  overflow: hidden;
}
#page-wrap .blog-card .thumb span {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Výška bude 2/3 šířky */
  max-height: 66.666%;
  /* fallback pro starší prohlížeče */
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease-in;
}
#page-wrap .blog-rows-wrap {
  display: block;
}
#page-wrap .blog-rows-wrap .blog-row-thumb {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.4rem;
}
#page-wrap .blog-rows-wrap .blog-row-thumb:hover span {
  transform: scale(1.06);
}
#page-wrap .blog-rows-wrap .blog-row-thumb span {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* Výška bude 2/3 šířky */
  max-height: 66.666%;
  /* fallback pro starší prohlížeče */
  background-size: cover;
  background-position: center center;
  transition: all 0.3s ease-in;
}
#page-wrap .blog-rows-wrap .blog-row-content {
  text-decoration: none;
  color: #000000;
  word-wrap: break-word;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
#page-wrap .blog-rows-wrap .blog-row-content:hover article h1 {
  text-shadow: 0 1px 3px rgba(70, 110, 112, 0.3);
}
#page-wrap .blog-rows-wrap .blog-row-content article {
  padding: 0.5rem 1rem 0 0.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#page-wrap .blog-rows-wrap .blog-row-content h1 {
  transition: all 0.15s ease-in;
  font-size: 1.1rem;
  margin: 0;
  color: #212529;
}
#page-wrap .blog-rows-wrap .blog-row-content p {
  flex: 1;
  color: #434343;
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 1rem;
}
#page-wrap .blog-rows-wrap .blog-row-content .date {
  padding: 0;
  margin: 0;
}
#page-wrap .blog-rows-wrap .blog-row-spacer {
  height: 3rem;
}
#page-wrap .blog-latest-list {
  padding: 0.3rem 0.9rem;
  background-color: #f7eee4;
  display: inline-block;
  margin: 0.3rem 0.3rem 0.3rem 0;
  border-radius: 1.5rem;
  border: 1px solid #e4c4a3;
}
#page-wrap .blog-latest-list:hover {
  background-color: #e9dcce;
}
#page-wrap .blog-latest-list a {
  font-weight: 400;
  color: #2b2b2b;
}
#page-wrap .second-cards-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#page-wrap .nextbutton-wrap {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 3.5rem;
}
#page-wrap .nextbutton {
  cursor: pointer;
  display: inline-block;
  padding: 0.5rem 0.8rem;
  background-color: #cb8e4c;
  color: #ffffff;
  border-radius: 1.2rem;
  font-weight: 400;
}
#page-wrap .nextbutton:hover {
  background-color: #c1823e;
}
#page-wrap .nextbutton-disabled {
  background-color: #ffffff;
  border: 1px solid #cbcbcb;
  color: #a9a9a9;
}
#page-wrap .nextbutton-disabled:hover {
  background-color: #ffffff;
  border: 1px solid #cbcbcb;
  color: #a9a9a9;
}
@media (max-width: 992px) {
  #page-wrap header .user_menu {
    margin-bottom: 0.3rem;
  }
  #page-wrap header .user_menu-item:last-child {
    margin-top: 0.2rem;
    font-size: 0.95rem;
  }
  #page-wrap header .user_menu-icon {
    font-size: 1.25rem;
  }
  #page-wrap header .main_menu {
    margin: 0;
  }
  #page-wrap header .main_menu li {
    padding: 0.6rem 0.5rem 0.4rem 0.5rem;
  }
  #page-wrap header .main_menu li a {
    font-size: 0.95rem;
  }
}
#page-wrap .app-header-nav-shrink {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media screen and (max-width: 767.99px) {
  #page-wrap .fixed-top-spacer {
    height: 4.8rem;
  }
  #page-wrap header .app-header {
    box-shadow: none;
    height: 4.5rem;
    border-bottom: none;
    padding: 0 0.5rem;
  }
  #page-wrap header .header {
    margin-top: 0;
    margin-bottom: 0;
    align-items: end;
  }
  #page-wrap header .header-logo {
    top: 1.05rem;
  }
  #page-wrap header .header-logo img {
    padding: 0 0 0 1rem;
    height: 1.8rem;
    border: none;
    box-shadow: none;
    background-color: unset;
  }
  #page-wrap header .header-menu {
    justify-content: flex-end;
    margin-right: 1rem;
    margin-top: 0.5rem;
  }
  #page-wrap .header-submenu {
    display: block;
    position: absolute;
    left: 0;
    top: 2.8rem;
    width: 100%;
    margin-left: 0;
    background-color: #466e70;
    border: none;
    height: 2rem;
    border-radius: 0.7rem;
  }
}
#page-wrap .navbar-nav {
  margin-top: 0px;
}
#page-wrap .unconfirmed-message {
  margin-top: 1.5rem;
  border-radius: 0.3rem;
  background-color: #d8d8d8;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  background-color: #f1c69454;
  border: 1px solid #c6b39d99;
}
#page-wrap .back-to-top {
  position: fixed;
  right: 0px;
  bottom: 3rem;
  border-radius: 2px 0px 0px 2px;
  background: #6d9e68;
  padding: 0.5rem;
  cursor: pointer;
  opacity: 50%;
  transition: opacity 0.5s;
  z-index: 940;
  font-size: 1.2em;
  border: none;
  font-weight: 600;
  color: #FBEED3;
}
#page-wrap .back-to-top:active,
#page-wrap .back-to-top:focus {
  border: none;
  outline: none;
}
#page-wrap .back-to-top:hover {
  opacity: 100%;
}
#page-wrap .back-to-top-hidden {
  opacity: 0%;
}
#page-wrap .ajax-button .button-loader,
#page-wrap .ajax-button .button-loading {
  display: inline-block;
  margin: auto;
  display: none;
}
#page-wrap .ajax-button .button-loader .loading-dot,
#page-wrap .ajax-button .button-loading .loading-dot {
  border-radius: 50%;
  background-color: #fff;
  float: left;
  opacity: 0;
  width: 16px;
  height: 16px;
  margin: 5px;
  -moz-animation-name: fade-in;
  -webkit-animation-name: fade-in;
  -ms-animation-name: fade-in;
  -o-animation-name: fade-in;
  animation-name: fade-in;
  -moz-animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-animation-direction: linear;
  -ms-animation-direction: linear;
  -o-animation-direction: linear;
  animation-direction: linear;
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#page-wrap .ajax-button .button-loader .loading-dot.dot1,
#page-wrap .ajax-button .button-loading .loading-dot.dot1 {
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  -ms-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
#page-wrap .ajax-button .button-loader .loading-dot.dot2,
#page-wrap .ajax-button .button-loading .loading-dot.dot2 {
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -ms-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
#page-wrap .ajax-button .button-loader .loading-dot.dot3,
#page-wrap .ajax-button .button-loading .loading-dot.dot3 {
  -moz-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
#page-wrap .ajax-button .button-loader .loading-dot.dot4,
#page-wrap .ajax-button .button-loading .loading-dot.dot4 {
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -ms-animation-delay: 1s;
  -o-animation-delay: 1s;
  animation-delay: 1s;
}
#page-wrap .ajax-button .button-loader .loading-dot,
#page-wrap .ajax-button .button-loading .loading-dot {
  width: 7px;
  height: 7px;
  margin: 0px 3px;
  display: inline;
}
#page-wrap .ajax-button.syncing .button-loader,
#page-wrap .ajax-button.syncing .button-loading {
  display: inline-block;
}
#page-wrap .ajax-button.syncing .button-text {
  display: none;
}
#page-footer {
  height: 3.4rem;
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
#page-footer .page-footer-container {
  text-align: right !important;
  padding: 0.7rem 0 0.7rem 0;
}
#page-footer .page-footer {
  background-color: #e8ecec;
  border-radius: 1rem;
}
#page-footer .footer-menu {
  font-weight: 500;
  padding: 0.3rem 1rem !important;
}
#page-footer .footer-menu a {
  display: block;
  padding: 0 1rem 0 0;
  color: #466e70 !important;
  font-style: normal;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4rem;
}
#page-footer .footer-menu a:last-of-type {
  padding: 0;
}
#page-footer .footer-menu a:first-of-type {
  margin-left: 1rem;
}
#page-footer .footer-menu a:hover {
  text-decoration: none;
  color: #2b4143 !important;
}
#page-footer .footer-icon {
  display: block;
  font-size: 1.5rem;
  margin-right: 0.8rem;
  color: #5e8082;
}
#page-footer .footer-icon img {
  height: 1.3rem;
}
#page-footer .footer-icon i {
  display: block;
}
#page-footer .footer-icon:hover {
  text-decoration: none;
}
.bg-light-wrap {
  position: relative;
  z-index: 2;
  background: #fbfaf8;
  box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
}
@media (max-width: 800px) {
  #page-wrap #page-footer {
    padding: 0rem 0.5rem !important;
  }
}
@media (max-width: 576.99px) {
  #page-wrap #page-footer {
    padding: 0 0.5rem !important;
  }
}
@media (max-width: 450px) {
  #page-wrap #page-footer {
    padding: 0 0.5rem !important;
  }
  #page-wrap #page-footer .nav .nav-item .nav-link {
    padding: 0.5rem 0.5rem;
  }
}
