/*
Custom Mycrogym Settings
*/

.custom_list_group_active {
  border-bottom: 1rem solid #FF5722;
}

/* component style */
.vue-slider-disabled .vue-slider-process {
  background-color: #a7a7a7;
}
.vue-slider-disabled .vue-slider-dot-handle {
  border-color: #a7a7a7;
}
.vue-slider-disabled .vue-slider-mark-step-active {
  box-shadow: 0 0 0 2px #a7a7a7;
}
/* Skeletons */

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.skeleton-text {
  width: 100%;
  height: 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}

.skeleton-text__body {
  width: 75%;
}

.skeleton-footer {
  width: 30%;
}
/* Custom Tabs */
.nav-pills .nav-link.active {
  color: black;
  background-color: white;
  border-radius: 0.5rem 0.5rem 0 0;
  font-weight: 600;
}
a.active {
  border-bottom: 2px solid #55c57a;
}
/* rail style */
.vue-slider-rail {
  background-color: whitesmoke;
  border-radius: 15px;
  transition: background-color 0.3s;
}
.vue-slider:hover .vue-slider-rail {
  background-color: #e1e1e1;
}

/* process style */
.vue-slider-process {
  background-color: #9cd5ff;
  border-radius: 15px;
  transition: background-color 0.3s;
}
.vue-slider:hover .vue-slider-process {
  background-color: #69c0ff;
}

/* mark style */
.vue-slider-mark-step {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #e8e8e8;
  background-color: #fff;
}
.vue-slider-mark-step-active {
  box-shadow: 0 0 0 2px #9cd5ff;
}
.vue-slider:hover .vue-slider-mark-step-active {
  box-shadow: 0 0 0 2px #69c0ff;
}

.vue-slider-mark-label {
  font-size: 12px;
  white-space: nowrap;
}
/* dot style */
.vue-slider-dot-handle {
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #9cd5ff;
  box-sizing: border-box;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.vue-slider:hover .vue-slider-dot-handle {
  border-color: #69c0ff;
}

.vue-slider-dot-handle-focus {
  border-color: #36abff;
  box-shadow: 0 0 0 5px rgba(54, 171, 255, 0.2);
}
.vue-slider:hover .vue-slider-dot-handle-focus {
  border-color: #36abff;
}

.vue-slider-dot-handle:hover {
  border-color: #36abff;
}
.vue-slider:hover .vue-slider-dot-handle:hover {
  border-color: #36abff;
}

.vue-slider-dot-handle-disabled {
  cursor: not-allowed;
  border-color: #ddd !important;
}

.vue-slider-dot-tooltip {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.vue-slider-dot-tooltip-inner {
  font-size: 14px;
  white-space: nowrap;
  padding: 6px 8px;
  color: #fff;
  border-radius: 5px;
  border-color: rgba(0, 0, 0, 0.75);
  background-color: rgba(0, 0, 0, 0.75);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform 0.3s;
}
.vue-slider-dot-tooltip-inner::after {
  content: "";
  position: absolute;
}
.vue-slider-dot-tooltip-inner-top::after {
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-top-color: inherit;
}
.vue-slider-dot-tooltip-inner-bottom::after {
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-bottom-color: inherit;
}
.vue-slider-dot-tooltip-inner-left::after {
  left: 100%;
  top: 50%;
  transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-left-color: inherit;
}
.vue-slider-dot-tooltip-inner-right::after {
  right: 100%;
  top: 50%;
  transform: translate(0, -50%);
  height: 0;
  width: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px;
  border-right-color: inherit;
}
.vue-slider-dot-tooltip-inner-top {
  transform-origin: 50% 100%;
}
.vue-slider-dot-tooltip-inner-bottom {
  transform-origin: 50% 0;
}
.vue-slider-dot-tooltip-inner-left {
  transform-origin: 100% 50%;
}
.vue-slider-dot-tooltip-inner-right {
  transform-origin: 0% 50%;
}

.vue-slider-dot:hover .vue-slider-dot-tooltip, .vue-slider-dot-tooltip-show {
  opacity: 1;
  visibility: visible;
}
.vue-slider-dot:hover .vue-slider-dot-tooltip .vue-slider-dot-tooltip-inner, .vue-slider-dot-tooltip-show .vue-slider-dot-tooltip-inner {
  transform: scale(1);
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.wrapper {
  height: 100vh;
}
.rotationouter {
  width: 34px;
}
.rotationouter_bottom {
  width: 30px;
}
.rotationouter2 {
  width:38px;
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
}
.img-thumbnail {
  max-width: 60% !important;
}
.video-thumbnail {
  transition: all 0.2s ease-in-out;
  max-width: 60%;
  height: auto;
}
/* Transition Settings */
.fade-enter-active, .fade-leave-active {
  transition: opacity .5s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}
.slide-fade-enter-active {
  transition: all .3s ease;
}
.slide-fade-leave-active {
  transition: all .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.slide-fade-enter, .slide-fade-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
  transform: translateX(10px);
  opacity: 0;
}
.flip-list-move {
  transition: transform 1s;
}
/* Other Settings */
ul.folderlist {
  padding: 12px;
}
.folderlist li {
  list-style-type: none;
  font-size: 14px;
}
ul.filelist {
  padding: 12px;
  position: relative;
  float: left;
  padding: 12px;
  height: 220px;
  background-color: #f8f8f8;
}
.filelist li {
  list-style-type: none;
  font-size: 14px;
}
.file {
  float: left;
  width: 220px;
}
.file-inner {
  border: 1px solid #e7eaec;
  padding: 0;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 20px;
  margin-right: 20px;
}
.file-icon {
  height: 100px;
  overflow: hidden;
  padding: 15px 10px;
  text-align: center;
}
.file-icon i {
  font-size: 70px;
  color: #dadada;
}
.file-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.file-image img {
  height: auto;
  width: 100%;
}
.file-name {
  padding: 10px;
  background-color: #f8f8f8;
  border-top: 1px solid #e7eaec;
}
.file-name small {
  color: #676a6c;
}
.dropwrapper {
  position: relative;
  width: 100%;
  height:200px;
  -moz-transition: height 1s ease;
  -webkit-transition: height 1s ease;
  -o-transition: height 1s ease;
  transition: height 1s ease;
}
.dropwrapper.hover {
  height: 400px;
}
.dropcontainer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 10px dashed #ccc;
  text-align: center;
}
.dropcontainer i {
  font-size: 48px;
}
.image-parent {
  width: auto;
  max-height: 250px;
}
.image-container {
  border: 1px solid black;
  background-repeat: no-repeat;
}
.closedcard {
  height: 70px;
  overflow: hidden;
}
.cardtransitionheight {
  transition: height 0.5s;
  transition-timing-function: ease-in-out;
}
.cardtransitionwidth {
  transition: width 0.5s;
  transition-timing-function: ease-in-out;
}
.opencard {
  height: auto;
}
.rotate{
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.rotate.down{
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.avatarhorizontallist {
  list-style-type: none;
  height:46px;
  padding:0px;
  margin:0px;
  height: 36px;
}
.avatarhorizontallist li {
  display:inline-block;
  width:16px;
  height:24px;
  transition: width 0.5s;
  transition-timing-function: ease-in-out;
}
.avatarhorizontallist:hover li {
  display:inline-block;
  width:32px;
}
.cta_red {
  border: 5px solid #ff3860;
  background-color: #ff3860;
  color: #fff;
}
.cta_yellow {
  border: 5px solid rgb(255, 235, 59);
  background-color: rgb(255, 235, 59);
  color: #fff;
}
.cta_yellow:hover {
  border: 5px solid #ff3860;
  background-color: #ff3860;
  color: #fff;
}
.cta_green {
  border: 5px solid #4dbd74;
  background-color: #4dbd74;
  color: #fff;
}
.cta_green:hover {
  border: 5px solid #ff3860;
  background-color: #ff3860;
  color: #fff;
}
.cta_grey {
  border: 5px solid #ccc;
  background-color: #fff;
  color: #4dbd74;
}
.cta_grey:hover {
  border: 5px solid #4dbd74;
  background-color: #4dbd74;
  color: #fff;
}
.cta_grey2 {
  border: 5px solid rgb(255, 235, 59);
  background-color: #fff;
  color: rgb(255, 235, 59);
}
.cta_grey2:hover {
  border: 5px solid rgb(255, 235, 59);
  background-color: rgb(255, 235, 59);
  color: #fff;
}
.cta_expanding {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 5px solid rgba(0,0,0,0.2);
  float: right;
  font-size: 20px;
}
.cta_expanding:hover {
  width: 140px;
  transition: width 0.7s ease;
}

.cta_expanding i {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.cta_expanding:hover i {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cta_expanding .button-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 140px;
  right: 0;
  font-size: 18px;
  padding-right: 20px;
 }
.cta_expanding .button-text i {
 opacity: 1;
 transition: opacity 0.5s ease;
}
.cta_expanding:hover .button-text {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}
.loading {
  position: relative;
  background-color: #E2E2E2;
}
.loading .card-image {
    border-radius: 0;
  }

.loading::after {
    display: block;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    animation: loading 1.5s infinite;
  }

@keyframes loading {
  100% {
    transform: translateX(100%);
  }
}
.mobile::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* Chrome/Safari/Webkit */
}
.badge-today {
  border: 2px solid #4dbd74;
}
.app-header.navbar .dropdown-item.selected {
  background-color: #ff6f00;
  color: #ffffff;
}
.app-header.navbar .dropdown-item:hover, .app-header.navbar .dropdown-item:active {
  background-color: #fcb680;
  color: #ffffff;
}
.app-header.navbar .dropdown-item:hover, .app-header.navbar .dropdown-item:active {
  background-color: #fcb680;
  color: #ffffff;
}
@media (max-width: 768px) {
  .app-body {
    margin-top: 0px !important;
  }
  .wrapper {
    margin-top: 48px;
  }
  .main {
    margin-top: 48px;
    padding-bottom: 48px;
    height: 100% !important;
  }
  .locationsheader {
    max-height: 400px;
    overflow-y: scroll;
  }
  #mobilecalendarmenu {
    transition: height 800ms ease-out;
  }
  .mobilecalendarmenu {
    background-color: #343a40 !important;
    width: 100%;
    height: 185px;
    padding-top: 6px;
    transition: height 800ms ease-out;
    margin-bottom: 80px;
  }

  .mobilecalendarmenu--collapsed {
    background-color: #343a40 !important;
    width: 100%;
    height: 0px;
    transition: height 400ms ease-in;
  }
}
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}
#footernav .statusbar {
  flex-direction: row !important;
}
#footernav .statusbar .item {
  margin-right: 12px;
  float: left;
}
#footernav.navbar-dark .navbar-toggler {
  color: #ffffff;
  border-color: #ffffff;
  font-size: 5vw;
  background-color: transparent;
  border-radius: .25rem;
  float: right;
}
#footernav.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
#footernav.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#footernav.navbar {
  -ms-flex-direction: row;
  flex-direction: row;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 12px 24px 12px;
  min-height: 105px;
}
#footernav .nav-link, .navbar .dropdown-toggle {
  color: #ffffff !important;
  font-size: 5vw;
  margin-right: 12px;
}
#footernav .navbar-nav {
  display: flex !important;
  flex-direction: row;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  float: left;
}
#footernav .navbar-collapse .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  width: 100%;
  margin-top: 24px;
}
#footernav .navbar-collapse .navbar-nav .nav-item {
  margin-top: 12px;
}
#footernav .navbar-collapse .nav-link, .navbar .dropdown-toggle {
  color: #ffffff !important;
  font-size: 16px;
  margin-right: 30px;
}
.fixed-bottom-shortinfo {
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  width: 100%;
}
#loading-wrapper {
  position: fixed;
  z-index: 1090;
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
#loading-text {
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 80px);
  color: #000000;
  width: 250px;
  height: 80px;
  margin: -7px 0 0 -45px;
  text-align: center;
  font-size: 20px;
}
.loading-text-line {
  position: relative;
  margin: 12px;
  width: 100%;
  text-align: center;
  font-size: 20px;
}
.progressloading {
  font-size: 12px;
  padding: 6px;
  text-align: center;
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.flip-list-move {
  transition: transform 0.5s;
}
.no-move {
  transition: transform 0s;
}
.ghost {
  opacity: 0.5;
  background: #c8ebfb;
}
.list-group {
  min-height: 20px;
}
.list-group-item {
  cursor: move;
}
.list-group-item i {
  cursor: pointer;
}
.list-group.list-group-root {
    padding: 0;
    overflow: hidden;
}

.list-group.list-group-root .list-group {
    margin-bottom: 0;
}

.list-group.list-group-root .list-group-item {
    border-radius: 0;
    border-width: 1px 0 0 0;
}

.list-group.list-group-root > .list-group-item:first-child {
    border-top-width: 0;
}

.list-group.list-group-root > .list-group > .list-group-item {
    padding-left: 30px;
}

.list-group.list-group-root > .list-group > .list-group > .list-group-item {
    padding-left: 45px;
}

.list-group-item .glyphicon {
    margin-right: 5px;
}
.login-background {
  background-image: url("../img/b-background.jpg");
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 0px !important;
}
#map { height: 100%; width: 100%; padding: 0px; position:relative;float:left;}
.hide {
  transition: 0.01s;
  transform:translateX(-9999px);
}
.bookingbutton {
  position: absolute;
  bottom: 4px;
  right: -6px;
}
.label__checkbox {
  display: none;
}
.label__check {
  display: inline-block;
  border-radius: 50%;
  border: 5px solid rgba(0,0,0,0.1);
  background: white;
  vertical-align: middle;
  margin-right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border .3s ease;
}
.label__check i.icon {
  opacity: 0.2;
  font-size: 1rem;
  color: transparent;
  transition: opacity .3s .1s ease;
}
.label__check:hover {
  border: 5px solid rgba(0,0,0,0.2);
}
.label__checkbox:checked + .label__text .label__check {
  animation: check .5s cubic-bezier(0.895, 0.030, 0.685, 0.220) forwards;
}
.label__checkbox:checked + .label__text .label__check .icon {
  opacity: 1;
  transform: scale(0);
  color: white;
  -webkit-text-stroke: 0;
  animation: icon .3s cubic-bezier(1.000, 0.008, 0.565, 1.650) .1s 1 forwards;
}

@keyframes icon {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes check {
  0% {
    width: 1.5em;
    height: 1.5em;
    border-width: 5px;
  }
  10% {
    width: 1.5em;
    height: 1.5em;
    opacity: 0.1;
    background: rgba(0,0,0,0.2);
    border-width: 15px;
  }
  12% {
    width: 1.5em;
    height: 1.5em;
    opacity: 0.4;
    background: rgba(0,0,0,0.1);
    border-width: 0;
  }
  50% {
    width: 26px;
    height: 26px;
    background: #4dbd74;
    border: 0;
    opacity: 0.6;
  }
  100% {
    width: 26px;
    height: 26px;
    background: #4dbd74;
    border: 0;
    opacity: 1;
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
    transform: scale(.1);
  }

  85% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#calendarweekcompact {
  height: 100%;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
#calendarmonth {
  width: 100%;
}
#calendarmonth td:nth-child(1) {
    border-style: none;
    border-right-style: solid;
    padding: 0;
}
.sidebar .nav {
  width: 70px !important;
}
/**
Draggable
*/
.switch-success .switch-input:checked+.switch-slider {
  background-color: #4dbd74;
  border-color: #3a9d5d;
}
.switch-pill .switch-slider {
  border-radius: 50em;
}
.switch-slider {
  position: relative;
  display: block;
  height: inherit;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #c8ced3;
  transition: .15s ease-out;
  border-radius: .25rem;
}
.clientbackground {
  background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%);
}
.sidebarx {
  padding: 6px;
}
.list-group.inner li{
}
.timeray {
  height:1px;
  width:100%;
  background-color: #4dbd74;
  position:absolute;
  left: 60px;
}
.resourceslist, .resourcesdates, .resourcestrash {
  list-style: none;
  padding-left: 0px;
  min-height: 60px;
}
.resourceslist .resource {
  height:42px;
  border-bottom: 1px solid;
  border-color: #000000;
}
.resourceslist .resource .title {
  height: 34px;
  width: 50%;
}
.resourceslist .resource .hours {
  float: right !important;
  height: 34px;
  width: 50%;
  background-color: #4dbd74;
}
.draggable_ghost {
  border-style: solid;
  border-color: #4dbd74;
  background-color: #4dbd74;
  height: 60%;
  width: 60px;
}
.draggable_choosen {
  background-color: #ffffff !important;
  border-style: solid;
  border-color: #ffffff;
  height: 30px;
}
.draggable_drag {
  background-color: #ffffff !important;
  border-style: solid;
  border-color: #ffffff;
  height: 30px;
}
.list-enter-active,
.list-leave-active,
.list-move {
  transition: 500ms cubic-bezier(0.59, 0.12, 0.34, 0.95);
  transition-property: opacity, transform;
}

.list-enter {
  opacity: 0;
  transform: translateX(50px) scaleY(0.5);
}

.list-enter-to {
  opacity: 1;
  transform: translateX(0) scaleY(1);
}

.list-leave-active {
  position: absolute;
}

.list-leave-to {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: center top;
}

/** ToDoApp */

.hidden {
	display: none;
}

.todoapp {
	background: #fff;
	margin: 130px 0 40px 0;
	position: relative;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
	            0 25px 50px 0 rgba(0, 0, 0, 0.1);
}

.todoapp input::-webkit-input-placeholder {
	font-style: italic;
	font-weight: 300;
	color: #e6e6e6;
}

.todoapp input::-moz-placeholder {
	font-style: italic;
	font-weight: 300;
	color: #e6e6e6;
}

.todoapp input::input-placeholder {
	font-style: italic;
	font-weight: 300;
	color: #e6e6e6;
}

.todoapp h1 {
	position: absolute;
	top: -155px;
	width: 100%;
	font-size: 100px;
	font-weight: 100;
	text-align: center;
	color: rgba(175, 47, 47, 0.15);
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
}

.new-todo,
.edit {
	position: relative;
	margin: 0;
	width: 80%;
	font-family: inherit;
	font-weight: inherit;
	line-height: 1.2em;
	outline: none;
	color: inherit;
	padding: 2px;
	border: 1px solid #999;
	box-shadow: inset 0 -1px 5px 0 rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

.new-todo {
	padding: 16px 16px 16px 60px;
	border: none;
	background: rgba(0, 0, 0, 0.003);
	box-shadow: inset 0 -2px 1px rgba(0,0,0,0.03);
}

.main {
	position: relative;
	z-index: 2;
	border-top: 1px solid #e6e6e6;
}

label[for='toggle-all'] {
	display: none;
}

.toggle-all {
	position: absolute;
	width: 60px;
	height: 34px;
	text-align: center;
	border: none; /* Mobile Safari */
}

.toggle-all:before {
	content: '❯';
	font-size: 22px;
	color: #e6e6e6;
	padding: 10px 27px 10px 27px;
}

.toggle-all:checked:before {
	color: #737373;
}

.todo-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.todo-list li {
	position: relative;
	font-size: 0.875rem;
	border-bottom: 1px solid #ededed;
}

.todo-list li:last-child {
	border-bottom: none;
}
.todo-list li.editing {
	border-bottom: none;
	padding: 0;
}
.todo-list li.editing .edit {
	display: block;
	width: 506px;
	padding: 13px 17px 12px 17px;
	margin: 0 0 0 43px;
}
.todo-list li.editing .view {
	display: none;
}
.todo-list li .toggle {
	text-align: center;
	width: 40px;
	/* auto, since non-WebKit browsers doesn't support input styling */
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	border: none; /* Mobile Safari */
	-webkit-appearance: none;
	appearance: none;
}
.todo-list li .toggle:after {
	content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#ededed" stroke-width="3"/></svg>');
}
.todo-list li .toggle:checked:after {
	content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="-10 -18 100 135"><circle cx="50" cy="50" r="50" fill="none" stroke="#bddad5" stroke-width="3"/><path fill="#5dc2af" d="M72 25L42 71 27 56l-4 4 20 20 34-52z"/></svg>');
}
.todo-list li label {
	white-space: pre-line;
	word-break: break-all;
	padding: 15px 60px 15px 15px;
	margin-left: 45px;
	display: block;
	line-height: 1.2;
	transition: color 0.4s;
}
.todo-list li.completed label {
	color: #d9d9d9;
	text-decoration: line-through;
}
.todo-list li .destroy {
	display: none;
	position: absolute;
	top: 0;
	right: 10px;
	bottom: 0;
	margin: auto 0;
	font-size: 30px;
	color: #ffffff;
	margin-bottom: 11px;
}
.todo-list li .destroy:hover {
	color: #ffffff;
}
.todo-list li .destroy:after {
	content: '×';
}
.todo-list li:hover .destroy {
	display: block;
}
.todo-list li .edit {
	display: none;
}
.todo-list li.editing:last-child {
	margin-bottom: -1px;
}
.filters {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	right: 0;
	left: 0;
}
.filters li {
	display: inline;
}
.filters li a {
	color: inherit;
	margin: 3px;
	padding: 3px 7px;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 3px;
}
.filters li a.selected,
.filters li a:hover {
	border-color: rgba(175, 47, 47, 0.1);
}
.filters li a.selected {
	border-color: rgba(175, 47, 47, 0.2);
}
/* Cards */
.card-body {
    padding: 1.25rem;
}
/*Sidebar Affix*/

.bs-docs-sidebar.affix {
    position: fixed;
    top: 20px;
}
.tableheadcontainer {
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
}
.tablebodycontainer{
  position: relative;
  float: left;
  height: calc(100vh - 300px);
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Calendar */
.calendarcontainer {
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
}
.calendarcontainer h1 {
  font-size: 3.0rem;
}
.calendarcontainer .calendarbody {
  padding: 0;
  margin: 0;
  position: relative;
  float: left;
  list-style: none;
  font-size: 0.75rem;
  height: 100%;
  width: 100%;
}
.calendarcontainermonth {
  position: relative;
  width: 100%;
  float: left;
  overflow: hidden;
}
.calendarcontainermonth .calendarbodymonth {
  padding: 0;
  margin: 0;
  position: relative;
  float: left;
  list-style: none;
  font-size: 0.75rem;
  height: 100%;
  width: 100%;
}
.scrolltable {
  overflow-x: scroll;
  margin-left: 60px;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.scrolltable::-webkit-scrollbar {
    display: none;
}
.timecal {
  display: block;
  position: relative;
  top: -8px;
}
.currentdate {
  color: #4dbd74;
  border-top: 2px solid !important;
  border-top-color: #4dbd74 !important;
  border-left: 2px solid !important;
  border-left-color: #4dbd74 !important;
  border-right: 2px solid !important;
  border-right-color: #4dbd74 !important;
}
.currentday {
  color: #4dbd74;
}
.calendartoday {
  border-left: 2px solid !important;
  border-left-color: #4dbd74 !important;
  border-right: 2px solid !important;
  border-right-color: #4dbd74 !important;
}
.dropzone {
  background-color: #ccffcc;
  opacity: 0.3;
}
.nodrop {
  background-color: #e0ebeb;
}
.tablewrapper {
  position: relative;
  float: left;
  height: calc(100vh - 300px);
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;
}
.tablewrappermonth {
  position: fixed;
  height: calc(100vh - 300px);
  float: left;
  margin-top: -1px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.tablewrappermonth::-webkit-scrollbar {
  display: none;
}
.tablewrappermonthscroll {
  position: relative;
  margin-left: 60px;
  height: calc(100vh - 300px);
  margin-top: -1px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.controlwrapper {
  position: relative;
  float: left;
  height: 100%;
}
.resourceswrapper {
  position: relative;
  float: left;
  height: calc(100vh - 40vh);
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;
}
.wrappercal {
  position: relative;
  width:100%;
  overflow: hidden;
}
tbody {
  display: inline-block;
  overflow-y: auto;
  overflow-x: hidden;
}
table {
  margin-bottom: 0px !important;
}
table tbody tr {
    width: 100%;
}
table thead, table tbody tr {
    display: table;
    table-layout: fixed;
}
table thead {
    /* head takes the height it requires,
    and it's not scaled when table is resized */
    flex: 0 0 auto;
    width: 100%;
}
.tableheadday {
  width: calc(100%);
}
.tableheadweek {
  width: calc(100%);
}
.tableheadmonth {
  width: calc(100%);
}
.tableheadmonthscroll {
  width: 100%;
}
table tfoot {
    display: table;
    vertical-align: middle;
    border-color: inherit;
    background-color: #f2f2f2;
    width: 100%;
}
.table th, .table td {
  border-right: 1px solid #d1d4d7;
  font-weight: normal;
}
.table .thead-light th {
  color: #3e515b;
  background-color: #d1d4d7;
  border-color: #d1d4d7;
  }
/* Transitions */
.list-item {
  display: inline-block;
}
.list-enter-active, .list-leave-active {
  transition: opacity .3s;
}
.list-enter, .list-leave /* .list-leave-active below version 2.1.8 */ {
  opacity: 0;
}
.listflip-complete-item {
  transition: all 1s;
  display: inline-block;
  margin-right: 10px;
}
.listflip-complete-enter, .list-complete-leave-to
/* .list-complete-leave-active below version 2.1.8 */ {
  opacity: 0;
  transform: translateY(30px);
}
.listflip-complete-leave-active {
  position: absolute;
}
.list-complete-item {
  padding: 4px;
  margin-top: 4px;
  border: solid 1px;
  transition: translateX(10px);
}
.list-complete-move {
  transition: all 0.2s;
}
.list-complete-enter-active {
  transition: translateX(10px) .3s ease;
}
.list-complete-leave-active {
  transition: translateX(10px) .8s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}
.list-complete-enter, .list-complete-leave-to
/* .slide-fade-leave-active below version 2.1.8 */ {
  transform: translateX(1px);
  opacity: 0;
}
.fade-enter-active, .fade-leave-active {
  transition: opacity .75s
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
  opacity: 0;
}
/* Appointments */
.calendar {
  overflow: hidden;
}
.calendarelementsmonth {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}
.calendarelementsweek {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.calendarelementsday {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.appointments {
  width: 100px;
  height: 500px;
  position: absolute;
  z-index: 1050;
  top: 0px;
  clear: both;
}
.resources {
  position: absolute;
  z-index: 1050;
  top: 0px;
  clear: both;
}
.functionbox {
  position: absolute;
  z-index: 1050;
  top: 0px;
  clear: both;
}
[draggable=true] {
  -khtml-user-drag: element;
}
.appointment {
  position: absolute;
  z-index: 1051;
  cursor: move;
  clear: both;
  list-style: none;
  box-shadow:  0 10px 20px rgba(119, 119, 119, 0.75), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 5px 11px 1px rgba(119, 119, 119, 0.75);
  -webkit-box-sizing: border-box;
  -webkit-user-drag: element;
  -webkit-user-select: none;
  -moz-box-sizing: border-box;
  /* animation: FadeIn 0.25s ease; */
  animation-fill-mode: both;

  -ms-touch-action: none;
  touch-action: none;
  user-select: none;
}
.appointmentloading {
  opacity: 0.5 !important;
}
.appointment::after {
  /* position: absolute; */
  /* z-index: 1051;*/
}
.appointment:-webkit-drag {
  background-color:rgb(255,255,154)
}

.appointments .archived {
  opacity: 0.5;
}
.label__check {
  animation: FadeIn 0.25s ease;
  animation-fill-mode: both;
}
.inner {
  position: relative;
  height: 100%;
  width: 100%;
  font-size: 0.8rem;
}
.attendeenumber {
  position: absolute;
  bottom: 12px;
  right: 12px;
}
.daynumber {
  -webkit-transition: max-width 1.5s ease, width 1.5s ease;
  -moz-transition: max-width 1.5s ease, width 1.5s ease;
  transition: max-width 1.5s ease, width 1.5s ease;
}
.resourceelement {
  position: absolute;
  z-index: 1051;
  clear: both;
  list-style: none;
  box-shadow:  0 10px 20px rgba(119, 119, 119, 0.75), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 3px 5px 11px 1px rgba(119, 119, 119, 0.75);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: initial;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  background-color: #ef5734;
  background-image: linear-gradient(315deg, #ef5734 0%, #ffcc2f 74%);
}
.resourceelementinner {
  height: 100%;
  width: 100%;
}
.resourceelementresizetop {
  position: absolute;
  top: 0;
  width: 100%;
  height: 20px;
  left: 0;
  right: 0;
  cursor: row-resize;
}
.resourceelementresizebottom {
  position: absolute;
  bottom: 0px;
  width: 100%;
  height: 20px;
  left: 0;
  right: 0;
  cursor: row-resize;
}
.appointment .draggablelementchangeposition {
  width: 100%;
  top: 0px;
  background-color: #ffc266;
}
.appointment .draggablelementchangeduration {
  width: 100%;
  bottom: 0px;
  background-color: #ffc266;
}
.list-group-item {
  /* display: inline !important; */
}
/* Opening Hours */
.openinghours .progress {
  display: flex;
  overflow: hidden;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  background-color: #d1d4d7;
  border-radius: 0.25rem;
  height: 34px;
  position: relative;
}

.openinghours .progress-bar {
  height: 34px;
  color: #fff;
  background-color: #20a8d8; }

.openinghours .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.openinghours .progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite; }

/* Kiosk */

.kioskevents .callout-color1 {
  border-left-color: #f8cb00;
}
.kioskevents .callout-color1 h4 {
  color: #f8cb00;
  font-size: 1rem;
}
.kioskevents .callout-new {
  position: relative;
  padding: 0 1rem;
  margin: 1rem 0;
  border: 0 solid #d1d4d7;
  border-left-width: 1rem;
}

/* Tabs */
.tab-content {
  border-top-style: none !important;
  margin-top: 0px !important;
}
.tab-content .fade {
  opacity: 1 !important;
}
.nav-tabs>li {
    float: left;
    margin-bottom: -1px;
}
.nav>li {
    position: relative;
    display: block;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}
.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}
.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}
.drop-activated {
  border-color: rgb(255, 87, 34);
  border-style: dotted;
  border-width: 0.75px;
  box-shadow: 0 10px 20px rgb(119 119 119 / 75%), inset 0 -3px 0 rgb(0 0 0 / 20%);
}
.appointmentbox {
  position: relative;
  float: left;
  min-height: 250px;
  width: 100%;
}
.tablewrapperbox {
  float: left;
  width: 100%;
  /* position: absolute; */
  display: inline-block;
  height: 100%;
}
.servicegroup {
  top: 0;
  bottom: 0;
  left: 0;
  right: -17px;
  overflow-y:scroll;
}
.option__desc, .option__image {
  display: inline-block;
  vertical-align: middle;
}
.option__desc {
  margin-left: 12px;
}
.multiselect--active {
    z-index: 1052 !important;
}
/* Validator */

.form-control.is-danger, .textarea.is-danger {
    border-color: #ff3860 !important;
}
.help.is-danger {
    color: #ff3860;
}
.avatarcontainer {
  position: relative;
  padding-top: 25px;
}
.avatar {
  vertical-align: middle;
  margin: 0px 0px 0px 10px;
}
.username {
  color: #000000;
  font-size: 14px;
  margin: 8px 0px 0px 8px;
}
.aside-menu-fixed.aside-menu-hidden .main {
  height: 100vH;
}
/* Tree Menu */
.tree-menu {
  .label-wrapper {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    .has-children {
      cursor: pointer;
    }
  }
}
/* Accordion */
.panel-group {
    margin-bottom: 20px;
}
.panel {
  margin-bottom: 6px;
}
.panel-group .panel {
    margin-bottom: 2px;
    border-radius: 4px;
}
.panel-primary>.panel-heading {
    color: #000;
    background-color: #d1d4d7;
    border-color: #d1d4d7;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel-info>.panel-heading {
    color: #000;
    background-color: #d1d4d7;
    border-color: #d1d4d7;
}
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}
.contractscontainer {
  position:relative;
  float:left;
  width: 100%;
  overflow: auto;
  overflow-x: scroll;
  overflow-y: hidden;
}
.agbcontainer {
  position:relative;
  float:left;
  width: 100%;
  max-height: 250px;
  overflow: auto;
  overflow-y: scroll;
  overflow-x: hidden;
}
.agbcontainer {
  position:relative;
  float:left;
}
.agbcontainerprint {
  font-size: 8px; padding: 200px 60px 24px 60px;
}
.agbcontainerprint p {
  line-height: 1;
  margin-bottom: 6px;
}
.pages {
  background: white;
  display: block;
  margin: 0 auto;
  width: 695px;
  height: 90%;
  overflow-y: hidden;
  overflow: auto;
  padding: 24px 24px 24px 24px;
}
.pagea4portrait {
  width: 595px;
  height: 842px;
  margin: 0 auto;
  margin-bottom: 0.5cm;
  box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}
.pagea4portraitbackground {
  background-image: url("../img/b1_Briefpapier.jpg");
  background-repeat: no-repeat;
}
.pagea4landscape {
  width: 21cm;
  height: 29.7cm;
}
.pagea3landscape {
  width: 29.7cm;
  height: 42cm;
}
.pagea3portrait {
  width: 42cm;
  height: 29.7cm;
}
.pagea5landscape {
  width: 14.8cm;
  height: 21cm;
}
.pagea5portrait {
  width: 21cm;
  height: 14.8cm;
}
.maincontent {
  position:relative;
  float:left;
  page-break-after: auto;
}
@pagea4portrait {
    size: A4;
    margin: 0;
}
@media print {
    html, body {
        width: 210mm;
        height: 297mm;
    }
    table {
        page-break-inside:auto
    }
    tr {
        page-break-inside:avoid; page-break-after:auto
    }
    .pagea4portrait {
        margin: 0;
        border: initial;
        border-radius: initial;
        width: initial;
        min-height: initial;
        box-shadow: initial;
        background: initial;
        page-break-after: always;
    }
    .maincontent {
      position:relative;
      float:left;
      page-break-after: auto;
    }
    .custompagebreak {
      page-break-after: always;
    }
    .agbcontainer {
      position:relative;
      float:left;
    }

}
.contractmodal .modal-lg,
.contractmodal .modal-dialog
 {
  max-width: 1024px !important;
}
.contractsummary {
  padding: 12px;
}
