:root {
    /* main color and buttons */
    --main-color: #24695c;
    --accent-color: #003A60;
    --cancel-color: #4C758F;
    --success-color: #4caf50;
    --success-hover-color: #5ad352;
    --red-button: maroon;
    --red-button-hover: rgb(156, 0, 0);
    --grey: #484848;
    --beige: #BFB498;
    --beige2: #eae4d9;
    --blue: #004581;
    --grey-font: #5F5F5F;
    --grey-hover-color: #bfb497;

    /* Calendar Colors */
    --calendar-red: #fe6d6e;
    --calendar-yellow: #fde976;
    --calendar-green: #6df779;
    --calendar-turquoise: #66ece8;
    --calendar-blue: #6c70df;
    --calendar-purple: #eb6be0;
    --calendar-black: #706d6b;
    --calendar-white: #f9f6f3;
}

html{
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body{
  height: 100vh;
  font-family: Roboto,sans-serif !important;
}


/* Top Bar */
.top-bar {
  padding: 10px;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  border-bottom: #003A60 solid 5px;
}

.v-navigation-drawer{
    padding-top: 75px;
}

.page-content{
    padding: 75px 10px;
}

.top-bar .top-buttons {
 float: right;
}

.top-bar .top-buttons button{
  margin: 5px;
}

/* Left Navigation */
.v-list--nav .v-list-item{
  /* color: white; */
  text-decoration: none;
}

.v-list--nav .v-list-item--active{
  background: #111;
  box-shadow: 1px 2px 4px rgba(0,0,0,.4);
}

label{
  margin-bottom: 0px;
}


/* Attribute Remover And Forcer */
.no-padding{
  padding: 0px !important;
}

.grey-background{
  background: var(--grey) !important;
}

.shadow{
  box-shadow: 1px 2px 4px rgba(0,0,0,.4);
}


/* Loading Circle */
.loadingCircle{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	padding-top: 20%;
	background-color: rgba(255,255,255,.7);
	z-index: 99999999;
}

.loadingCircle .logo{
    width: 210px;
    height: 20%;
    margin-bottom: 10px;
    margin: auto;
}

.loadingCircle.hidden{
	display: none;
}

.text-white {
    color: white !important;
}
.child-text-white * {
    color: white !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.full-width {
    width: 100% !important;
}
.d-block {
    display: block !important;
}
.overflow-hidden {
  overflow: hidden;
}
.bg-dark-gray {
    background-color: rgb(63, 63, 63) !important;
}
.v-list-item--active {
    background-color: rgb(39, 39, 39) !important;
}

.font-18px {
    font-size: 18px !important;
}
.font-20px {
    font-size: 20px;
}

.border-radius-6px {
    border-radius: 6px;
}

.bg-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.bg-white-t03 {
  background-color: rgba(255, 255, 255, 0.3);
}
.bg-white-t05 {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-none {
  background: none !important;
  background-color: transparent !important;
}

.bg-white-alternating-t05:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.5);
}

.padding-top-switch label{
  padding-top: 24px;
}

.padding-top-button label{
  padding-top: 12px;
}

.preview-image{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.preview-image img{
  max-width: 100%;
  max-height: 500px;
  cursor: zoom-in;
}

/* HTML Editor */
.html-editor{
  background-color:white !important;
  padding: 10px;
}

.html-editor-headline{
  position: absolute;
  top: -6px;
  left: 15px;
  color: rgba(0,0,0,.6);
  font-size: 12px;
}

.html-editor .ql-toolbar{
  border: 0px;
}

.html-editor .ql-container{
  border: 0px;
  border-top: 1px solid var(--main-color);
}

.html-editor .ql-editor{
  min-height: 0px !important;
}

.directions.html-editor .ql-editor{
  min-height: 180px !important;
}

.directions.html-editor{
  background-color:white !important;
}

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

/* Input type file stuff */

.inputfile{
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile, label.uploadImage{
    font-size: 1.25rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    padding: 0.625rem 1.25rem;
    color: var(--sec-color);
    background-color: var(--main-color);
    transition: .2s;
    opacity: .8;
    width: 100%;
    text-align: center;
}

.inputfile +label:hover{
    opacity: 1;
}

.inputfile + label svg{
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: white;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

label.uploadImage span{
    color: white;
}

@media print { html, body { display: none;  /* hide whole page */ } }

a.v-btn:hover{
  text-decoration: none;
}

/* Custom behaviour */

.top-bar {
  z-index: 4;
}

.font-bigger{
  font-size: 1.2em;
}

.font-blue{
  color: var(--blue);
}

.font-grey{
  color: var(--grey-font);
}

div.for-headline{
  min-height: 60px;
}

.header-image{
  max-height: 430px;
  height: 430px;
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.header-image.large{
  max-height: 550px;
  height: 550px;
}

.header-image .header-logo{
  position: absolute;
  right: 20px;
  top: 120px;
}

.header-image .header-logo img{
  max-width: 200px;
}

.headline{
  padding: 15px;
  background-color: var(--beige);
  color: white;
  text-transform: uppercase;
  position: absolute;
  left: 0px;
  padding-left: 50px;
  bottom: 30px;
}

.headline h1{
  font-size: 1.5rem;
}

/* .headline h1::after{
  content: ".";
} */

.headline h2{
  font-size: 1.2rem;
  text-transform: initial;
  color: white;
}

.header-image.large .headline h1{
  font-size: 1.7rem;
}

.header-image.large .headline h2{
  font-size: 1.4rem;
}

.headline img{
  vertical-align: initial;
}

.text-content{
  margin-top: 20px;
  padding-bottom: 20px;
}

.v-data-table .v-btn.v-btn--disabled .v-icon, .v-data-table .theme--light.v-btn.v-btn--disabled .v-icon {
  color: #999 !important;
}

.v-data-table .theme--light.v-btn.v-btn--disabled:not(.v-btn--flat):not(.v-btn--text):not(.v-btn--outlined){
  background-color: transparent !important;
  cursor: not-allowed;
}

.v-data-table tr{
  cursor: pointer;
}

.not-allowed{
  cursor: not-allowed !important;
}

/* .v-dialog{
  background-color: var(--beige2);
  padding: 20px;
} */

.v-dialog h3{
  color: var(--grey-font);
}

.top-bar-title{
  width: 100%;
  background-color: #EAEAEA;
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: uppercase;
  color: var(--blue);
  position: fixed;
  top: 0px;
  left: 0px;
  font-size: 18px;
}

.menu-buttons-row{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}


.divider{
  height: 1px;
  width: 100%;
  background-color: var(--blue);
  margin-bottom: 10px;
}

.divider.right-side{
  position: absolute;
}

p{
  color: var(--grey-font);
}

/* Login Page */
.side-background {
  height: 100vh;
  position: absolute;
  width: 100%;
  background-size: cover;
  background-position: center;
  /* text-align: center; */
}

.side-background-foreground {
  /* padding: 200px 50px 50px;
  max-width: 500px; */
  margin: 0 auto;
}

.side-background-foreground .v-card{
  background-color: rgba(255,255,255,.7);
  padding: 20px;
}

.side-background-foreground .v-card__title{
  padding-bottom: 40px;
}

.password-reset-link{
  width: 100%;
  text-align: left;
  display: block;
}

/* Expansion Panels */
.v-expansion-panel{
  border-radius: 0px !important;
  margin-bottom: 10px;
}

.v-expansion-panel-content{
  background-color: var(--beige2);
}

.v-expansion-panel-header{
  background-color: var(--blue);
  color: white;
}

.v-expansion-panel-header  .v-expansion-panel-header__icon .panelarrow_down{
  transform: rotate(90deg);
}

.v-expansion-panel-header--active  .v-expansion-panel-header__icon .panelarrow_up{
  transform: rotate(270deg);
}

.v-expansion-panel-header .v-expansion-panel-header__icon i{
  color: white !important;
}

/* Block Tiles */

.block-tile, .event-tile{
  border: 1px solid var(--blue);
  background-color: white;
}

.event-tile{
  cursor: pointer;
}

.block-background-image{
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  top: 0px;
  left: 0px;
}

.block-tile.trainer-block{
  min-height: 230px;
}

.block-tile h4{
  color: var(--blue);
}

.event-tile h4, .event-tile p{
  position: relative;
  z-index: 1;
}

div.bg-blue{
  background-color: var(--blue);
  color: white;
}

.bottom-row{
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0px;
  padding-left: 5px;
  /* text-transform: uppercase; */
}

.v-text-field__details{
  background: transparent !important;
}

.v-text-field.v-input--dense .v-input__append-inner, .v-text-field.v-input--dense .v-input__prepend-inner {
  margin-top: 0 !important;
}

.v-text-field.v-input--dense .v-input__slot{
  padding-right: 0px !important;
}

.v-btn--contained {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.event-background-image{
  background-image: url("/static/img/calendar_grey.png");
  background-size: contain;
  width: 100px;
  height: 100px;
  position: absolute;
  transform: rotate(30deg);
  z-index: 0;
  right: 20px;
  top: 20px;
  opacity: .6;
}

.v-data-table{
  background-color: transparent !important;
}

.no-border-radius{
  border-radius: 0 !important;
}

/* .file-input .v-chip{
  border-radius: 0px !important;
  background-color: var(--blue) !important;
  border-color: var(--blue) !important;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
 */

.upload-component .file-selection{
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 60% 20% auto;
  color: var(--grey-font);
}

.upload-component .file-name{
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}

.upload-component .file-name:hover{
  text-decoration: underline;
  color: var(--main-color);
}

.upload-component .file-size{
  text-align: right;
}

.upload-component .file-delete{
  text-align: right;
}

.upload-component .file-delete button{
  font-size: 20px;
}

.upload-component .already-uploaded{
  background-color: white;
  padding: 10px;
  margin-top: -5px;
}

.upload-component .already-uploaded .file-selection{
  grid-template-columns: 85% auto;
}

.upload-component .v-file-input__text--placeholder{
  cursor: pointer;
}

.upload-component label{
  color: #717171 !important;
  font-weight: 400;
  font-size: 14px;
}

/* Spinner Animation */
.spinner-badge{
  -webkit-animation:spin 4s linear infinite;
  -moz-animation:spin 4s linear infinite;
  animation:spin 4s linear infinite;
}
.v-badge__badge .v-icon.spinner-badge{
  margin-top: -2px;
}
@-moz-keyframes spin { 
  100% { -moz-transform: rotate(360deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(360deg); } 
}
@keyframes spin { 
  100% { 
      -webkit-transform: rotate(360deg); 
      transform:rotate(360deg); 
  } 
}


/* Calendar Styling */
.calendar-year{
  display: grid;
  grid-template-columns: 100px auto 100px;
  background-color: var(--blue);
}

.calendar-year div{
  text-align: center;
  color: white;
}

.calendar-month{
  display: grid;
  grid-template-columns: auto;
  margin-bottom: 20px;
}

.calendar-month div{
  text-align: center;
}

.calendar-month .calendar-first-row{
  display: grid;
  grid-template-columns: 100px 1271px;
}

.calendar-month .calendar-content-row{
  display: grid;
  grid-template-columns: 100px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px 40px;
  grid-gap: 1px;
  border-bottom: 1px solid white;
}

.bg-beige-dark{
  background-color: var(--beige);
  color: white;
}

.bg-beige{
  background-color: var(--beige2);
  color: white;
}

.calendar-month .bg-beige{
  color: black;
}

.calendar-day{
  overflow: visible;
  cursor: pointer;
  border: 1px solid transparent;
}

.calendar-day:hover{
  border: 1px solid var(--main-color);
}

.calendar-day:hover .hover-element{
  visibility: visible;
  opacity: 1;
}

.calendar-day .hover-element{
  visibility: hidden;
  position: absolute;
  transition: .3s;
  opacity: 0;
  background-color: white;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 10px;
}

.calendar-day .hover-element .v-divider{
  margin-top: 5px;
  margin-bottom: 5px;
}

.calendar-day.training_as_trainer{
  background-color: var(--calendar-blue);
}

.calendar-day.vacation, .calendar-day.absence, .calendar-day.holiday{
  background-color: var(--calendar-red);
}

.calendar-day.training_initiative{
  background-color: var(--calendar-yellow);
}

.calendar-day.training_development{
  background-color: var(calendar-yellow);
}

.calendar-day.preparation_time{
  background-color: var(calendar-purple);
}

.calendar-day.postprocession_time{
  background-color: var(calendar-purple);
}

.calendar-day.travel_time{
  background-color: var(--calendar-turquoise);
}

.calendar-day.further_education{
  background-color: var(--calendar-green);
}

.calendar-day.service{
  background-color: var(--calendar-black)
}

.calendar-day.miscellaneous{
  background-color: var(--calendar-white);
}

.calendar-month .weekday.sa, .calendar-month .weekday.so{
  color: maroon;
}

.arrow-img-left{
  transform: rotate(180deg);
}

.clickable-link, .clickable{
  cursor: pointer;
}

.clickable-link:hover{
  text-decoration: underline;
}

.aboutus-image{
  height: 200px;
  background-size: cover;
  background-position: center;
  margin-bottom: 15px;
}

.aboutus-image-big{
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
  margin-bottom: 25px;
}

/* Ellipsis */
.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
  }
  .lds-ellipsis div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--main-color);
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
	left: 6px;
	animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
	left: 6px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
	left: 26px;
	animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
	left: 45px;
	animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
	0% {
	  transform: scale(0);
	}
	100% {
	  transform: scale(1);
	}
  }
  @keyframes lds-ellipsis3 {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(0);
	}
  }
  @keyframes lds-ellipsis2 {
	0% {
	  transform: translate(0, 0);
	}
	100% {
	  transform: translate(19px, 0);
	}
  }


/* Ring */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 51px;
    height: 51px;
    margin: 6px;
    border: 6px solid var(--main-color);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--main-color) transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/* Roller */

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-color);
    margin: -3px 0 0 -3px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }







/* Vue JS Noty Manual CSS Impoort */
.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 9999999;
    -webkit-transform: translateZ(0) scale(1, 1);
            transform: translateZ(0) scale(1, 1);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    filter: blur(0);
    -webkit-filter: blur(0);
    max-width: 90%; }
  
  #noty_layout__top {
    top: 0;
    left: 5%;
    width: 90%; }
  
  #noty_layout__topLeft {
    top: 20px;
    left: 20px;
    width: 325px; }
  
  #noty_layout__topCenter {
    top: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
            transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }
  
  #noty_layout__topRight {
    top: 80px;
    right: 20px;
    width: 325px; }
  
  #noty_layout__bottom {
    bottom: 0;
    left: 5%;
    width: 90%; }
  
  #noty_layout__bottomLeft {
    bottom: 20px;
    left: 20px;
    width: 325px; }
  
  #noty_layout__bottomCenter {
    bottom: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
            transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1); }
  
  #noty_layout__bottomRight {
    bottom: 20px;
    right: 20px;
    width: 325px; }
  
  #noty_layout__center {
    top: 50%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
            transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1); }
  
  #noty_layout__centerLeft {
    top: 50%;
    left: 20px;
    width: 325px;
    -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
            transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }
  
  #noty_layout__centerRight {
    top: 50%;
    right: 20px;
    width: 325px;
    -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
            transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1); }
  
  .noty_progressbar {
    display: none; }
  
  .noty_has_timeout .noty_progressbar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #646464;
    opacity: 0.2;
    filter: alpha(opacity=10); }
  
  .noty_bar {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) scale(1, 1);
        transform: translate(0, 0) scale(1, 1);
    -webkit-font-smoothing: subpixel-antialiased;
    overflow: hidden; }
  
  .noty_effects_open {
    opacity: 0;
    -webkit-transform: translate(50%);
        -ms-transform: translate(50%);
            transform: translate(50%);
    -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  
  .noty_effects_close {
    -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  
  .noty_fix_effects_height {
    -webkit-animation: noty_anim_height 75ms ease-out;
            animation: noty_anim_height 75ms ease-out; }
  
  .noty_close_with_click {
    cursor: pointer; }
  
  .noty_close_button {
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out; }
  
  .noty_close_button:hover {
    background-color: rgba(0, 0, 0, 0.1); }
  
  .noty_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    opacity: .3;
    left: 0;
    top: 0; }
  
  .noty_modal.noty_modal_open {
    opacity: 0;
    -webkit-animation: noty_modal_in .3s ease-out;
            animation: noty_modal_in .3s ease-out; }
  
  .noty_modal.noty_modal_close {
    -webkit-animation: noty_modal_out .3s ease-out;
            animation: noty_modal_out .3s ease-out;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  
  @-webkit-keyframes noty_modal_in {
    100% {
      opacity: .3; } }
  
  @keyframes noty_modal_in {
    100% {
      opacity: .3; } }
  
  @-webkit-keyframes noty_modal_out {
    100% {
      opacity: 0; } }
  
  @keyframes noty_modal_out {
    100% {
      opacity: 0; } }
  
  @keyframes noty_modal_out {
    100% {
      opacity: 0; } }
  
  @-webkit-keyframes noty_anim_in {
    100% {
      -webkit-transform: translate(0);
              transform: translate(0);
      opacity: 1; } }
  
  @keyframes noty_anim_in {
    100% {
      -webkit-transform: translate(0);
              transform: translate(0);
      opacity: 1; } }
  
  @-webkit-keyframes noty_anim_out {
    100% {
      -webkit-transform: translate(50%);
              transform: translate(50%);
      opacity: 0; } }
  
  @keyframes noty_anim_out {
    100% {
      -webkit-transform: translate(50%);
              transform: translate(50%);
      opacity: 0; } }
  
  @-webkit-keyframes noty_anim_height {
    100% {
      height: 0; } }
  
  @keyframes noty_anim_height {
    100% {
      height: 0; } }
  
  .noty_theme__relax.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative; }
    .noty_theme__relax.noty_bar .noty_body {
      padding: 10px; }
    .noty_theme__relax.noty_bar .noty_buttons {
      border-top: 1px solid #e7e7e7;
      padding: 5px 10px; }
  
  .noty_theme__relax.noty_type__alert,
  .noty_theme__relax.noty_type__notification {
    background-color: #fff;
    border: 1px solid #dedede;
    color: #444; }
  
  .noty_theme__relax.noty_type__warning {
    background-color: #FFEAA8;
    border: 1px solid #FFC237;
    color: #826200; }
    .noty_theme__relax.noty_type__warning .noty_buttons {
      border-color: #dfaa30; }
  
  .noty_theme__relax.noty_type__error {
    background-color: #FF8181;
    border: 1px solid #e25353;
    color: #FFF; }
    .noty_theme__relax.noty_type__error .noty_buttons {
      border-color: darkred; }
  
  .noty_theme__relax.noty_type__info,
  .noty_theme__relax.noty_type__information {
    background-color: #78C5E7;
    border: 1px solid #3badd6;
    color: #FFF; }
    .noty_theme__relax.noty_type__info .noty_buttons,
    .noty_theme__relax.noty_type__information .noty_buttons {
      border-color: #0B90C4; }
  
  .noty_theme__relax.noty_type__success {
    background-color: #BCF5BC;
    border: 1px solid #7cdd77;
    color: darkgreen; }
    .noty_theme__relax.noty_type__success .noty_buttons {
      border-color: #50C24E; }
  
  .noty_theme__metroui.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0; }
    .noty_theme__metroui.noty_bar .noty_progressbar {
      position: absolute;
      left: 0;
      bottom: 0;
      height: 3px;
      width: 100%;
      background-color: #000;
      opacity: 0.2;
      filter: alpha(opacity=20); }
    .noty_theme__metroui.noty_bar .noty_body {
      padding: 1.25em;
      font-size: 14px; }
    .noty_theme__metroui.noty_bar .noty_buttons {
      padding: 0 10px .5em 10px; }
  
  .noty_theme__metroui.noty_type__alert,
  .noty_theme__metroui.noty_type__notification {
    background-color: #fff;
    color: #1d1d1d; }
  
  .noty_theme__metroui.noty_type__warning {
    background-color: #FA6800;
    color: #fff; }
  
  .noty_theme__metroui.noty_type__error {
    background-color: #CE352C;
    color: #FFF; }
  
  .noty_theme__metroui.noty_type__info,
  .noty_theme__metroui.noty_type__information {
    background-color: #1BA1E2;
    color: #FFF; }
  
  .noty_theme__metroui.noty_type__success {
    background-color: #60A917;
    color: #fff; }
  
  .noty_theme__mint.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative; }
    .noty_theme__mint.noty_bar .noty_body {
      padding: 10px;
      font-size: 14px; }
    .noty_theme__mint.noty_bar .noty_buttons {
      padding: 10px; }
  
  .noty_theme__mint.noty_type__alert,
  .noty_theme__mint.noty_type__notification {
    background-color: #fff;
    border-bottom: 1px solid #D1D1D1;
    color: #2F2F2F; }
  
  .noty_theme__mint.noty_type__warning {
    background-color: #FFAE42;
    border-bottom: 1px solid #E89F3C;
    color: #fff; }
  
  .noty_theme__mint.noty_type__error {
    background-color: var(--red-button);
    border-bottom: 1px solid var(--red-button-hover);
    color: #fff; }
  
  .noty_theme__mint.noty_type__info,
  .noty_theme__mint.noty_type__information {
    background-color: #7F7EFF;
    border-bottom: 1px solid #7473E8;
    color: #fff; }
  
  .noty_theme__mint.noty_type__success {
    background-color: var(--success-color);
    border-bottom: 1px solid var(--success-hover-color);
    color: #fff; }
  
  .noty_theme__sunset.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative; }
    .noty_theme__sunset.noty_bar .noty_body {
      padding: 10px;
      font-size: 14px;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
    .noty_theme__sunset.noty_bar .noty_buttons {
      padding: 10px; }
  
  .noty_theme__sunset.noty_type__alert,
  .noty_theme__sunset.noty_type__notification {
    background-color: #073B4C;
    color: #fff; }
    .noty_theme__sunset.noty_type__alert .noty_progressbar,
    .noty_theme__sunset.noty_type__notification .noty_progressbar {
      background-color: #fff; }
  
  .noty_theme__sunset.noty_type__warning {
    background-color: #FFD166;
    color: #fff; }
  
  .noty_theme__sunset.noty_type__error {
    background-color: var(--red-button);
    color: #fff; }
    .noty_theme__sunset.noty_type__error .noty_progressbar {
      opacity: .4; }
  
  .noty_theme__sunset.noty_type__info,
  .noty_theme__sunset.noty_type__information {
    background-color: #118AB2;
    color: #fff; }
    .noty_theme__sunset.noty_type__info .noty_progressbar,
    .noty_theme__sunset.noty_type__information .noty_progressbar {
      opacity: .6; }
  
  .noty_theme__sunset.noty_type__success {
    background-color: var(--success-color);
    color: #fff; }
  
  .noty_theme__bootstrap-v3.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    border-radius: 4px; }
    .noty_theme__bootstrap-v3.noty_bar .noty_body {
      padding: 15px; }
    .noty_theme__bootstrap-v3.noty_bar .noty_buttons {
      padding: 10px; }
    .noty_theme__bootstrap-v3.noty_bar .noty_close_button {
      font-size: 21px;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      filter: alpha(opacity=20);
      opacity: .2;
      background: transparent; }
    .noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
      background: transparent;
      text-decoration: none;
      cursor: pointer;
      filter: alpha(opacity=50);
      opacity: .5; }
  
  .noty_theme__bootstrap-v3.noty_type__alert,
  .noty_theme__bootstrap-v3.noty_type__notification {
    background-color: #fff;
    color: inherit; }
  
  .noty_theme__bootstrap-v3.noty_type__warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
    border-color: #faebcc; }
  
  .noty_theme__bootstrap-v3.noty_type__error {
    background-color: #f2dede;
    color: #a94442;
    border-color: #ebccd1; }
  
  .noty_theme__bootstrap-v3.noty_type__info,
  .noty_theme__bootstrap-v3.noty_type__information {
    background-color: #d9edf7;
    color: #31708f;
    border-color: #bce8f1; }
  
  .noty_theme__bootstrap-v3.noty_type__success {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6; }
  
  .noty_theme__bootstrap-v4.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    border-radius: .25rem; }
    .noty_theme__bootstrap-v4.noty_bar .noty_body {
      padding: .75rem 1.25rem; }
    .noty_theme__bootstrap-v4.noty_bar .noty_buttons {
      padding: 10px; }
    .noty_theme__bootstrap-v4.noty_bar .noty_close_button {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      filter: alpha(opacity=20);
      opacity: .5;
      background: transparent; }
    .noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
      background: transparent;
      text-decoration: none;
      cursor: pointer;
      filter: alpha(opacity=50);
      opacity: .75; }
  
  .noty_theme__bootstrap-v4.noty_type__alert,
  .noty_theme__bootstrap-v4.noty_type__notification {
    background-color: #fff;
    color: inherit; }
  
  .noty_theme__bootstrap-v4.noty_type__warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
    border-color: #faebcc; }
  
  .noty_theme__bootstrap-v4.noty_type__error {
    background-color: #f2dede;
    color: #a94442;
    border-color: #ebccd1; }
  
  .noty_theme__bootstrap-v4.noty_type__info,
  .noty_theme__bootstrap-v4.noty_type__information {
    background-color: #d9edf7;
    color: #31708f;
    border-color: #bce8f1; }
  
  .noty_theme__bootstrap-v4.noty_type__success {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6; }
  
  .noty_theme__semanticui.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    font-size: 1em;
    border-radius: .28571429rem;
    box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent; }
    .noty_theme__semanticui.noty_bar .noty_body {
      padding: 1em 1.5em;
      line-height: 1.4285em; }
    .noty_theme__semanticui.noty_bar .noty_buttons {
      padding: 10px; }
  
  .noty_theme__semanticui.noty_type__alert,
  .noty_theme__semanticui.noty_type__notification {
    background-color: #f8f8f9;
    color: rgba(0, 0, 0, 0.87); }
  
  .noty_theme__semanticui.noty_type__warning {
    background-color: #fffaf3;
    color: #573a08;
    box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent; }
  
  .noty_theme__semanticui.noty_type__error {
    background-color: #fff6f6;
    color: #9f3a38;
    box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent; }
  
  .noty_theme__semanticui.noty_type__info,
  .noty_theme__semanticui.noty_type__information {
    background-color: #f8ffff;
    color: #276f86;
    box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent; }
  
  .noty_theme__semanticui.noty_type__success {
    background-color: #fcfff5;
    color: #2c662d;
    box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent; }
  
  .noty_theme__nest.noty_bar {
    margin: 0 0 15px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0; }
    .noty_theme__nest.noty_bar .noty_body {
      padding: 10px;
      font-size: 14px;
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1); }
    .noty_theme__nest.noty_bar .noty_buttons {
      padding: 10px; }
  
  .noty_layout .noty_theme__nest.noty_bar {
    z-index: 5; }
  
  .noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
    position: absolute;
    top: 0;
    margin-top: 4px;
    margin-right: -4px;
    margin-left: 4px;
    z-index: 4;
    width: 100%; }
  
  .noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
    position: absolute;
    top: 0;
    margin-top: 8px;
    margin-right: -8px;
    margin-left: 8px;
    z-index: 3;
    width: 100%; }
  
  .noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
    position: absolute;
    top: 0;
    margin-top: 12px;
    margin-right: -12px;
    margin-left: 12px;
    z-index: 2;
    width: 100%; }
  
  .noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
    position: absolute;
    top: 0;
    margin-top: 16px;
    margin-right: -16px;
    margin-left: 16px;
    z-index: 1;
    width: 100%; }
  
  .noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
    position: absolute;
    top: 0;
    margin-top: 20px;
    margin-right: -20px;
    margin-left: 20px;
    z-index: -1;
    width: 100%; }
  
  #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
  #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
    margin-top: 4px;
    margin-left: -4px;
    margin-right: 4px; }
  
  #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
  #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
    margin-top: 8px;
    margin-left: -8px;
    margin-right: 8px; }
  
  #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
  #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
    margin-top: 12px;
    margin-left: -12px;
    margin-right: 12px; }
  
  #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
  #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
    margin-top: 16px;
    margin-left: -16px;
    margin-right: 16px; }
  
  #noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
  #noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
    margin-top: 20px;
    margin-left: -20px;
    margin-right: 20px; }
  
  .noty_theme__nest.noty_type__alert,
  .noty_theme__nest.noty_type__notification {
    background-color: #073B4C;
    color: #fff; }
    .noty_theme__nest.noty_type__alert .noty_progressbar,
    .noty_theme__nest.noty_type__notification .noty_progressbar {
      background-color: #fff; }
  
  .noty_theme__nest.noty_type__warning {
    background-color: #FFD166;
    color: #fff; }
  
  .noty_theme__nest.noty_type__error {
    background-color: var(--red-button);
    color: #fff; }
    .noty_theme__nest.noty_type__error .noty_progressbar {
      opacity: .4; }
  
  .noty_theme__nest.noty_type__info,
  .noty_theme__nest.noty_type__information {
    background-color: #118AB2;
    color: #fff; }
    .noty_theme__nest.noty_type__info .noty_progressbar,
    .noty_theme__nest.noty_type__information .noty_progressbar {
      opacity: .6; }
  
  .noty_theme__nest.noty_type__success {
    background-color: var(--success-color);
    color: #fff; }


    /* --- */
  .v-toolbar.v-toolbar--absolute {width: auto !important;}

  header div.v-toolbar__content{
    height: auto !important;
  }

  .theme--light.v-divider {
    border-color: var(--accent-color) !important; 
    border-width: thick 0 0 !important;
  }
  .border.v-card{
    border-color: var(--accent-color) !important; 
    border-width: 2px !important;
    border-radius: 0px !important;
  }

  .border.v-card .v-card.img{
    border-radius: 0px !important;
    border-color: var(--accent-color) !important; 
    /* border-right-width: 2px !important; */
    border-width: 0 2px 0 0 !important;
  }

  .searchbar{
    max-width: 100%;
    border-radius: 0px;
  }

  .searchbar.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot fieldset {
    color:var(--accent-color)
  }

  .datainput{
    border-radius: 0px;
  }
  .datainput.primary--text{
    color:white !important;
    caret-color: black !important;
  }
  .datainput.theme--light.v-text-field--outlined:not(.v-input--is-focused):not(.v-input--has-state) > .v-input__control > .v-input__slot fieldset {
    color:white !important;
  }
  .datainput .theme--light.v-input{
    color:var(--accent-color);
  }
  .upload-component .datainput >.v-input__control{
    background-color: white !important;
  }
  .datainput >.v-input__control .v-input__slot{
    background-color: white !important;
  }
  .datainput .v-label--active{
    left: -12px !important;
    top: -2px !important;
  }
  /* .datainput.v-text-field--outlined.v-input--dense .v-label{
    left: -12px !important;
    top: -2px !important;
  } */
  .pbot-15{
    padding-bottom: 15px !important;
  }
  

  .disablerow{
    margin-right: 0px !important;
    margin-left: 0px !important;
    padding: 0 !important;
  }

  .disablemrow{
    margin-right: 0px !important;
    margin-left: 0px !important;
  }

  .createrow .col-md-4 {
    padding-bottom: 4px;
    padding-top: 4px;
  }
  
  .footer.open{
    /* margin-left:254px !important;
    margin-right:254px !important; */
  }

  .footerbtn.close{
    top:0px !important;
  }

  .footer .row{
    margin-left:0px !important;
    margin-right:0px !important;
  }

  .footer{
    text-align: left;
  }

  .category-name .v-list-item__title {
    white-space: break-spaces;
  }

  .no-background-hover::before {
    background-color: transparent !important;
  }

  .headerbtn{
    color:var(--accent-color) !important;
    font-size: 16px !important;
    letter-spacing: normal;
    border-radius: 0px;
    transition: .3s;
    border-bottom: 5px solid transparent;
  }

  .header-divider{
    width: 100%;
    height: 5px;
    background-color: var(--blue);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: -1;
  }

  .v-toolbar__content{
    padding-bottom: 0px;
    background-color: white;
  }

  .headerbtn:hover{
    border-bottom: 5px solid var(--beige);
  }

  /* Footer Buttons */
  .theme--light.v-bottom-navigation .v-btn:not(.v-btn--active), .v-item-group.v-bottom-navigation .v-btn.v-btn--active{
    color: white !important;
    text-transform: none !important;
    max-width: unset;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    transition: .3s;
    font-size: 14px;
  }

  .theme--light.v-bottom-navigation .v-btn:not(.v-btn--active):hover{
    color: var(--grey-hover-color) !important;
  }
  
  .theme--light.v-btn.v-btn--disabled, .theme--light.v-btn.v-btn--disabled .v-btn__loading, .theme--light.v-btn.v-btn--disabled .v-icon {
    color:var(--accent-color) !important;
  }

  .languagepicker .v-input__slot::before, .languagepicker .v-input__slot::after { 
    border:none!important 
  }

  .transparency{
    background-color: transparent !important;
  }

  .userstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:last-child, .userstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:not(.v-data-table__mobile-row), .userstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:last-child, .userstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:not(.v-data-table__mobile-row), .userstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr:last-child > th {
    border-bottom: 2px solid var(--accent-color);
  }

  .userstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th {
    color: var(--accent-color);
    font-size: 1rem !important;
  }

  .userstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th,.userstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
    padding-left: 0px;
  }

  .trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:last-child, .trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:not(.v-data-table__mobile-row), .trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:last-child, .trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:not(.v-data-table__mobile-row), .trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr:last-child > th {
    border-bottom: 2px solid var(--accent-color);
  }

  .trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th {
    color: var(--accent-color);
    font-size: 1rem !important;
  }

  .trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th,.trainingstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
    padding-left: 0px;
  }

  .venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:last-child, .venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:not(.v-data-table__mobile-row), .venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:last-child, .venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:not(.v-data-table__mobile-row), .venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr:last-child > th {
    border-bottom: 2px solid var(--accent-color);
  }

  .venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th {
    color: var(--accent-color);
    font-size: 1rem !important;
  }

  .venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th,.venuestable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
    padding-left: 0px;
  }

  .tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:last-child, .tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > td:not(.v-data-table__mobile-row), .tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:last-child, .tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr:not(:last-child) > th:not(.v-data-table__mobile-row), .tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr:last-child > th {
    border-bottom: 2px solid var(--accent-color);
  }

  .tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th {
    color: var(--accent-color);
    font-size: 1rem !important;
  }

  .tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > thead > tr > th,.tenantstable.theme--light.v-data-table > .v-data-table__wrapper > table > tbody > tr > td {
    padding-left: 0px;
  }
  
  .button-container {
    color: var(--accent-color);
  }

  .button-container .v-btn:not(.v-btn--round).v-size--default {
    height: 100%;
  }

  @media (max-width:990px){
    .mbres {
      display: none !important;
    }
  }

  @media (max-width:728px){
    .resimg{
      width: 250px !important;
    }
    .resshortimg{
      display: none !important;
    }
  }

  @media (max-width:768px){
    .resbtn{
      display: none !important;
    }
  }

  @media (max-width:544px){
    .resimg{
      display: none !important;
    }

  }
  /* Calendar */
  .theme--light.v-calendar-weekly .v-calendar-weekly__head-weekday{
    border-right: none !important;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 14px !important;
    font-weight: bold;
    color: var(--accent-color);
  }

  .theme--light.v-calendar-weekly .v-calendar-weekly__head-weekday.v-past{
    color: var(--accent-color);
  }

  .products > .productcard-outer > .productcard:nth-child(2+1n){

  }


  .theme--light.v-calendar-weekly .v-calendar-weekly__head{
    border: 2px solid var(--accent-color);
  }

  .calendarlegend .v-list {
    padding-top: 0px !important;
  }
  .calendarlegend .v-list-item{
    font-size: 14px !important;
    font-weight: bold;
    align-items: start !important;
  }

  .calendarlegend .v-list-item .v-list-item__title{
    color: var(--accent-color) !important;
  }
  .calendarlegend .legendentry{
    color: var(--accent-color) !important;
    align-items: start !important;
    min-height: auto !important;
  }

  .v-list-item--active {
    background-color: white !important;
  }

  .v-application--is-ltr .v-tabs--align-with-title > .v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing) > .v-slide-group__wrapper > .v-tabs-bar__content > .v-tab:first-child, .v-application--is-ltr .v-tabs--align-with-title > .v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing) > .v-slide-group__wrapper > .v-tabs-bar__content > .v-tabs-slider-wrapper + .LanguageselectTab.v-tab,.v-application--is-ltr .v-tabs--align-with-title > .v-tabs-bar:not(.v-tabs-bar--show-arrows):not(.v-slide-group--is-overflowing) > .v-slide-group__wrapper > .v-tabs-bar__content > .v-tabs-slider-wrapper + .userTypeselectTab.v-tab {
    margin-left: 0 !important;
  }

  .LanguageselectTab .v-slide-group__prev,.userTypeselectTab .v-slide-group__prev {
    display: none !important;
  }
  
  .userTypeselectTabgroup.v-tabs:not(.v-tabs--vertical).v-tabs--right > .v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__next, .userTypeselectTabgroup.v-tabs:not(.v-tabs--vertical):not(.v-tabs--right) > .v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__prev, .LanguageselectTabgroup.v-tabs:not(.v-tabs--vertical).v-tabs--right > .v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__next, .LanguageselectTabgroup.v-tabs:not(.v-tabs--vertical):not(.v-tabs--right) > .v-slide-group--is-overflowing.v-tabs-bar--is-mobile:not(.v-slide-group--has-affixes) .v-slide-group__prev {
    display: none !important;
  }

  .LanguageselectTab.v-tab,.userTypeselectTab.v-tab {
    background-color: var(--accent-color);
    border-bottom: none;
  }
  
  .userTypeselectTab.v-tab {
    padding: 0 50px !important;
  }
  .LanguageselectTabgroup .LanguageselectTab.v-tab:nth-child(2n+1) {
    border-left: none;
    border-right: none;
  }

  .LanguageselectTab.v-tab--active ,.userTypeselectTab.v-tab--active{
    color: white;
    background-color: var(--beige);
  }

  .theme--light.v-tabs > .v-tabs-bar .v-tab:not(.v-tab--active){
    color: white !important;
  }

  .theme--light.v-tabs-items {
    background-color: transparent !important;
  }   

  .LanguageselectTabgroup .v-slide-group{
    height: 25px !important;
  }

  .userTypeselectTabgroup .v-slide-group{
    height: 38px !important;
  }

  .v-tabs-slider-wrapper {
    display: none;
  }

  .userTypeselectTab.v-tab--active{

  }

  .innercreatetraining{
    background-color:var(--beige2);
  }

  .innercreatetraining > .theme--light.v-tabs-items {
    
    background-color: inherit !important;
  }

  .outercreatetraining{
    
  }

  .headlinecolor{
    color: var(--accent-color);
  }

  .savebutton{
    background-color: var(--accent-color);
    color: white !important;
    border: none !important;
  }

  .cancelbutton{
    background-color: var(--cancel-color);
    color: white !important;
    border: none !important;
  }

  .deletebutton{
    background-color: var(--beige);
    color: white !important;
    border: none !important;
  }

  .hide{
    display: none !important;
  }

  /* Medium size Screen -> md */
  @media screen and (min-width:960px){
    .innercreatetraining{

    }
    .outercreatetraining{
      margin-left: 140px !important;
      margin-right: 140px !important;
    }
  }

  /* small size Screen -> sm */
  @media screen and (min-width:600px) and (max-width:960px){
    .innercreatetraining{
    }
    .outercreatetraining{
      margin-left: 40px !important;
      margin-right: 40px !important;
    }

  }

  /* extrasmall size Screen */
  @media only screen  and (max-width:600px){
    .mainmobile{
      padding-bottom: 40px !important;
    }
  }

  .roominput .v-select__selections{
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }


    
.toprightarrow{
  transform: rotate(45deg);
  color: white;
}

.rightarrow{
  transform: rotate(90deg);
  color: #444;
}

.bottomrightarrow{
  transform: rotate(135deg);
  color: white;
}

.bg-error{
  background-color: rgb(122, 22, 22);
}

.error-color{
  color: rgb(122, 22, 22) !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.overflow-y-scroll {
    overflow-y: scroll !important;
}

.border-bottom-last-child-none:last-child {
    border-bottom-style: none !important;
}

#mainnav li a i{
  margin-right: 15px;
}

.preview-container .previewer{
  max-height: 200px;
  overflow-y: auto;
  padding-right: 20px;
}

.preview-container .icon-preview{
  display: block;
}

.preview-container .icon-preview .icon-wrapper{
  font-size: 20px;
  color: #24695C;
  padding: 5px;
  border-radius: 10px;
  text-align: center;
}

.table thead th{
  position: sticky; 
  top: 0;
}