select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Ctitle%3Edown-arrow%3C%2Ftitle%3E%3Cg%20fill%3D%22%23000000%22%3E%3Cpath%20d%3D%22M10.293%2C3.293%2C6%2C7.586%2C1.707%2C3.293A1%2C1%2C0%2C0%2C0%2C.293%2C4.707l5%2C5a1%2C1%2C0%2C0%2C0%2C1.414%2C0l5-5a1%2C1%2C0%2C1%2C0-1.414-1.414Z%22%20fill%3D%22%23000000%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E") !important;
  background-size: .6em;
  background-position: calc(100% - 1em) center;
  background-repeat: no-repeat; 
}
/* Login */

.login {
  background-color: #fff;
  box-shadow: inset 0 -555px 555px -455px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  min-height: 100vh;
  font-family: 'Ubuntu', sans-serif;
}

.login label {
  margin-bottom: 5px;
}

.login-modal {
  width: 80vw;
  margin: 0 auto;
  max-width: 400px;
  background-color: #fff;
  padding: 35px;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.5), 0 0 0 9999px rgba(0, 0, 0, 0.3);
}

.login-modal .logo {
  text-align: center;
  width: 100%;
  max-width: none;
  border: 0;
  margin: 0 0 30px;
  padding: 5px;
  position: static;
  height: auto;
}

.login-modal .logo img {
  padding: 0;
  max-width: 160px;
  max-height: 60px;
}

.login-modal .terms {
  display: block;
  text-align: center;
}

.login-modal .terms a {
  color: #aaa;
}

.alert {
  padding: 9px 12px 12px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
}

.alert svg {
  margin-left: 5px;
  margin-right: 20px;
}

.alert-primary {
  background-color: #3765CF;
  border: 1px solid #3765CF;
  color: #fff;
}

.alert-secondary {
  background-color: #1c1c1c;
  border: 1px solid #1c1c1c;
  color: #fff;
}

.alert-success {
  background-color: #62E6AC;
  border: 1px solid #62E6AC;
  color: #fff;
}

.alert-warning {
  background-color: #E6BF62;
  border: 1px solid #E6BF62;
  color: #fff;
}

.alert-danger {
  background-color: #DE4F4F;
  border: 1px solid #DE4F4F;
  color: #fff;
}

nav {
  font-family: 'Gotham', 'helvetica neue', 'arial', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.logo {
  position: relative;
  top: 0;
  max-width: 100%;
  height: 80px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.logo img {
  max-width: 150px;
  max-height: 30px;
  margin: 0 0 3px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: #fff;
  z-index: 3;
  border-bottom: 1px solid #EBEBEB;
}

.user {
  position: fixed;
  right: 15px;
  top: 15px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  text-align: right;
  line-height: 150%;
}

.user .username {
  font-weight: bold;
  color: #262A3A;
}

.user .action a {
  color: #777887
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  margin: 0;
  padding: 0;
  border-right: 1px solid #EBEBEB;
  width: 184px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  padding-top: 80px;
  transition: all 0.5s ease;
}

#navigation:not(:checked) ~ nav .menu {
  left: -184px;
  box-shadow: none;
}

.menu li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  font-size: 16px;
}

.menu li.active {
  background-color: #F7F7F7;
  box-shadow: inset 5px 0 #62E6AC;
}

.menu li.active svg {
  color: #5DD9A3;
}

.menu li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  padding: 20px;
}

.menu li a:hover {
  box-shadow: inset 0 0 9999px 0 rgba(0, 0, 0, 0.03);
}

.menu li svg {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 18px;
  margin: 0 12px 3px 0;
}


nav + div.content {
  margin-top: 80px;
  transition: 0.5s ease all;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.welcome-message {
  width: calc(100% + 30px);
  background: url(//assets.bettyblocks.com/9d76c973fe6b42e1828382526c58a84c_assets/files/splash.png?_=aedcd542d1f905f394a3acedff8da8e2);
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  max-height: 500px;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  padding: 30px;
  position: relative;
  margin: 0 -15px;
}

.welcome-message h1 {
  margin-bottom: 80px;
}

.welcome-message * {
  color: #fff
}

.hero {
  width: calc(100% + 30px);
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  max-height: 500px;
  height: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  padding: 30px;
  position: relative;
  margin: 0 -15px;
}

.hero h1 {
  margin-bottom: 80px;
}

.hero * {
  color: #fff
}

.main-intro{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  color: inherit;
}

.main-intro * {
  color: #333333;
}

.main-intro svg{
  font-size: 40px;
}

.main-intro h2{
  font-size: 20px;
  margin: 10px 0;
}

.main-intro img {
    margin: 30px auto;
    max-width: 200px;
}

#navigation:checked + nav .nav-toggle {
  border-top: 2px solid RGBA(40, 44, 59, 0);
  margin-top: 4px;
}

#navigation:checked + nav .nav-toggle::after {
  transform: rotate(45deg);
  top: 8px;
  right: 0.5px;
}

#navigation:checked + nav .nav-toggle::before {
  transform: rotate(-45deg);
  top: 8px;
  left: 0.5px;
}

.nav-toggle {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  border-top: 2px solid rgba(98, 230, 172, 1);
  width: 22px;
  height: 30px;
  transition: 0.3s ease all;
  margin-top: 13px;
  z-index: 101;
}

.nav-toggle:after {
  content: "";
  border-top: 2px solid rgba(98, 230, 172, 1);
  position: absolute;
  left: 0;
  bottom: 21px;
  width: 22px;
  transition: 0.3s ease all;
  top: -9px;
}

.nav-toggle:before {
  content: "";
  border-top: 2px solid rgba(98, 230, 172, 1);
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 22px;
  transition: 0.3s ease all;
  top: 5px;
}

.welcome-message .trigger {
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 30px;
  border-left: 4px solid #fff;
  padding-left: 15px;
  padding-bottom: 60px;
}

.hero .trigger {
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 30px;
  border-left: 4px solid #fff;
  padding-left: 15px;
  padding-bottom: 60px;
}

.droplet {
  margin-bottom: 40px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: flex-end;
  align-items: flex-end;
  margin-left: 15px;
}

.droplet .vertical-stripe {
  height: 70px;
  margin-right: 20px;
}

.vertical-stripe {
  height: 138px;
  width: 4px;
  background-color: #62E6AC;
}

.horizontal-stripe {
  height: 4px;
  width: 64px;
  display: block;
  background-color: #BF8060;
  margin: 25px 0;
}

.horizontal-stripe.compact{
  margin: 18px 0 18px;
}

.horizontal-stripe.brown,
.vertical-stripe.brown {
  background-color: #BF8060;
}

.horizontal-stripe.blue,
.vertical-stripe.blue {
  background-color: #1D1E37;
}

.horizontal-stripe.green {
  background-color: #62E6AC;
}

.horizontal-stripe.white {
  background-color: #ffffff;
}

.page-content {
  width: 100%;
  padding: 0 15px;
}

.tile {
  background: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  width:100%;
  text-align: center;
  padding: 40px;
  margin-bottom: 30px;
  transition: 0.2s ease all;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.02);
	justify-content: center;
	-ms-align-items: center;
	align-items: center;
}

.menu li.disabled {
  pointer-events: none;
  opacity: 0.3;
}

.tile.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.tile.disabled * {
  color: #ccc;
}

.tile:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.04);
}

.tile-icon {
  font-size: 42px;
  margin-bottom: 20px;
  color: #1D1E37;
}

.tile-name {
  font-size: 26px;
  margin-bottom: 18px;
}

.tile-pitch {
  margin-bottom: 0;
  color: #1D1E37;
  opacity: 0.6;
}

.tiles > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.sub-header {
  font-size: 20px;
}

.event-lister-item {
  margin-bottom: 50px;
}

.event-lister-item > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.actions .btn {
  margin-top: 15px;
}

.event-lister-image {
  background-image: url(../img/preview_img.png);
  width: 100%;
  min-height: 270px;
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-lister-item .sub-header {
  margin-top: 10px;
}

.event-info > div {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  margin-bottom: 5px;
}

.event-icon {
  width: 25px;
}

.event-state {
  position: absolute;
  top: 0;
  left: 0;
  padding: 12px 16px;
  color: #fff;
}

.event-state.open {
  background-color: #62E6AC;
}

.event-state.warning {
  background-color: #E6BF62;
}

.event-state.closed {
  background-color: #DE4F4F;
}

.event-logo {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 120px;
  padding: 20px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: flex-end;
  -ms-align-items: center;
  align-items: center;
  background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
  background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 );
}

.event-logo img {
  width: 100%;
  max-width: 100px;
  position: absolute;
  right: 25px;
  bottom: 25px;
}

.quick-specs{
  background-color: #fff;
  padding: 40px;
}
         
.event-details{
  margin-bottom: 50px;
}

.downloads a{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
}

.downloads a svg{
  margin-right: 8px;
  color: #4dda9c;
}

.downloads a{
  color: #7f808f;
}

.quick-user-photo-bg{
  background-image: url(../img/hero_evenement_detail.png);
  min-height: 180px;
  margin: -40px -40px 85px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.quick-user-photo{
  background: #f00;
  width: 180px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  background-image: url(https://assets.bettyblocks.com/bc4f4a004b1540bb97f4b35c9729df28_2ff4438482a54f6b98f0df65b9e5d126/12/main_Brendan_Schoon.jpg);
  background-position: center;
  background-size: cover;
  border: 2px solid #fff
}

.checklist{
  list-style: none;
  padding: 0;
}

.checklist li{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
}

.checklist li:before{
  content: "";
  display: inline-flex;
  background-image: url(../img/check.svg);
  width: 18px;
  height: 13px;
  background-position: center;
  background-size: cover;
  margin-right: 10px;
}

.options{
  height: calc(100vh - 100px);
}

.options-wrap{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 880px;
}

.options-wrap > div{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.option p{
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .fc-toolbar.fc-header-toolbar {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  } 
}
@media (max-width: 768px) {
  .fc-toolbar.fc-header-toolbar {
      display: block; 
  }
  .fc-center {
      margin-top: 1em;
  }
}
@media (max-width: 479px) {
  span.cstm-tooltiptext {
    max-width: 190px;
    bottom: -30px;
  }
}
@media (min-width: 768px) {
  .login-modal {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
  }
  .welcome-message {
    padding: 50px;
  }
  .welcome-message .trigger {
    left: 50px;
  }
  .hero {
    padding: 50px;
  }
  .hero .trigger {
    left: 50px;
  }

  .droplet {
    margin-bottom: 50px;
    margin-left: 35px;
  }

  .page-content {
    padding: 0 35px;
  }

  .droplet .vertical-stripe {
    height: 96px;
  }

  .menu {
    left: 0;
  }

  #navigation:not(:checked) ~ nav .menu {
    left: 0;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.10);
  }

  .nav-toggle {
    display: none;
  }

  .logo {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 80px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
  }

  .logo img {
    width: 150px;
    max-height: 80px;
    margin: 0;
  }

  nav + div.content {
    margin-top: 80px;
    margin-left: 184px;
    width: calc(100% - 184px);
  }

  .welcome-message h1 {
    font-size: 70px;
  }

  .welcome-message .trigger {
    font-size: 18px;
  }
  .hero h1 {
    font-size: 70px;
  }

  .hero .trigger {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .main-intro svg {
	font-size: 80px;
  }

  .main-intro h2{
    font-size: 36px;
  }
}

@media(min-width: 1200px) {
  .menu li svg {
    font-size: 24px;
  }

  .welcome-message h1 {
    font-size: 80px;
  }

  .welcome-message .trigger {
    font-size: 20px;
  }
  .hero h1 {
    font-size: 80px;
  }

  .hero .trigger {
    font-size: 20px;
  }
}

@media(min-width: 1200px) {
  .welcome-message h1 {
    font-size: 100px;
  }

  .welcome-message .trigger {
    font-size: 22px;
  }

  .hero h1 {
    font-size: 100px;
  }

  .hero .trigger {
    font-size: 22px;
  }
	
  .tile-icon {
    font-size: 50px;
  }
}

@media(min-width: 1600px) {
  .login {
    background-color: #fff;
    box-shadow: inset 0 -555px 555px -455px rgba(0, 0, 0, 0.1);
    position: absolute;
  }
  
  .tile-icon {
    font-size: 70px;
    margin-bottom: 15px;
    color: #1D1E37;
  }
	
  .tile-icon.door{
      padding-bottom: 10px;
  }

  .tile-name {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .tile-pitch {
    margin-bottom: 0;
    color: #1D1E37;
    opacity: 0.6;
  }
}

/* CSS Rob */
.frame-calendar{
  background-color: #fff;
  box-shadow: 0 0 30px 0 rgba(0,0,0,0.2);
  border-radius: 10px;
  margin-bottom: 40px;
}
.frame-calendar .container {
  padding: 25px; 
}
.tabs-calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75px;
  background-color: #FF5800;
  border-radius: 10px 10px 0 0;
}
.tab-room.active, .tab-car.active {
  background-color: #DC4F06;
}
.tab-room.active, .tab-room:hover {
  border-top-left-radius: 10px;
}
.tab-car.active, .tab-car:hover {
  border-top-right-radius: 10px;
}
.tab-car, .tab-room {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #FF5800;
}
.tab-car {
  border-top-right-radius: 10px;
}
.tab-room {
  border-top-left-radius: 10px;
}
.tab-car a, .tab-room a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.tab-car:not(.active):hover, .tab-room:not(.active):hover {
  cursor: pointer;
  background-color: #DC4F06;
}
.custom-select {
  background: #fff url(https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png) no-repeat !important;
  background-size: 20px !important;
  background-position: right 10px center !important;
}
.bg-splash {
  margin-top: -704px; 
  z-index: -1;
}

.btn-save {
  background-color: #FF5800;
}

.modal-header {
  align-items: center; 
}

.modal-header .close {
  font-size: 30px;
}

.modal-header .edit {
  font-size: medium;
  display: flex;
  align-items: center;
}

.modal-title {
  font-size: 20px; 
}

.modal-footer:before, .modal-footer:after {
  content: normal; 
}

.modal-footer {
  justify-content: space-between;
  padding: 10px 50px;
}
.cstm-tooltip {
  position: relative;
  font-size: 14px;
  bottom: 6px;
  left: -2px;
}
.cstm-tooltiptext {
  visibility: hidden;
  width: 230px;
  background-color: #ddd;
  color: #000;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #ccc;
  position: absolute;
  z-index: 99;
  bottom: -6px;
  left: 23px;
  font-weight: 400;
  font-size: 14px;
  padding: 0 10px;
}
.cstm-tooltiptext:after {
  content: '';
  position: absolute;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #ccc transparent transparent;
  left: -11px;
  bottom: 8px;
}
.cstm-tooltip:hover .cstm-tooltiptext {
  visibility: visible;
}
#overlay { display:none; justify-content:center; align-items:center; position:fixed; top:0; left:0; height:100vh; width:100vw; background-color:rgba(0,0,0,0.3); z-index:100; user-select:none;-moz-user-select: none;-khtml-user-select: none;-webkit-user-select: none;-o-user-select: none; }
#loader { position:absolute; left:0;top:0;right:0;bottom:0; text-align:center; color:#E9004c; z-index:101; }

.spinner {
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 4px solid #AFB5C8;
  border-left: 4px solid #262A3A;
  animation: fa-spin 1.1s infinite linear;
}
.loader-logo {
  position: absolute;
  width: 40px;
  height: auto;
  left: calc(50% - 20px);
  top: calc(50% - 18px);
}
button:focus {
  outline: 0;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #ced4da;
  border-radius: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  min-height: 42px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #ced4da;
  min-height: 42px;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

.fc-view-container .fc-body .fc-widget-content:only-of-type {
  position: relative; 
}

.fc-view-container .fc-body .fc-widget-content:only-of-type .overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255,255,255,0.9);
  z-index: 2;
}

.overlay .fa-spin {
  color: #FF5800;
  font-size: x-large;
  z-index: 2;
}

.fc-state-highlight {
  opacity: 0;
  border: none;
}

.fc-time-grid-event.fc-v-event.fc-event {
  border-radius: 4px;
  padding: 5px;
}

.fc-event {
  font-size: inherit !important;
  font-weight: bold !important;
}

.fc td, .fc th {
  border-width: 1px !important;
  padding: 0 !important;
  vertical-align: top !important;
}

.fc-event .fc-bg {
  z-index: 1 !important;
  background: inherit !important;
  opacity: .25 !important;
}

.fc-time-grid-event .fc-time {
  font-weight: normal !important;
}

.fc-time-grid-event .fc-time, .fc-time-grid-event .fc-title, .fc-time-grid-event.fc-short .fc-title {
  font-weight: 100;
  font-size: small;
}

.fc-ltr .fc-h-event.fc-not-end, .fc-rtl .fc-h-event.fc-not-start {
  opacity: .65 !important;
  margin-left: 12px !important;
  padding: 5px !important;
}

.fc-ltr .fc-time-grid .fc-event-container {
  margin: 0 7.5% 0 2px;
}

.fc-ltr .fc-axis {
  text-align: center;
  width: 45px !important;
}


.fc-day-grid-event.fc-h-event.fc-event.fc-not-start.fc-end {
  opacity: .65 !important;
  margin-left: 12px !important;
  padding: 5px !important;
}

.fc-button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  min-height: 36px;
  min-width: 88px;
  line-height: 36px;
  vertical-align: middle;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  border-radius: 2px;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  outline: none;
  border: 0;
  padding: 0 6px;
  margin: 6px 8px;
  letter-spacing: .01em;
  background: transparent;
  color: currentColor;
  white-space: nowrap;
  font-weight: 500;
  font-size: 14px;
  font-style: inherit;
  font-variant: inherit;
  font-family: inherit;
  text-decoration: none;
  overflow: hidden;
  -webkit-transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),background-color .4s cubic-bezier(.25,.8,.25,1);
  transition: box-shadow .4s cubic-bezier(.25,.8,.25,1),background-color .4s cubic-bezier(.25,.8,.25,1);
}

.fc-button:hover {
  background-color: rgba(158,158,158,0.2);
}

.fc-button:focus, .fc-button:hover, .fc-button:active {
  text-decoration: none;
  outline: 0;
}

.fc-day.fc-widget-content.fc-past {
  background-color: #f2f2f2;
}

.fc-state-active {
  background-color: rgba(158,158,158,0.2);
}

.fc-state-default {
  box-shadow: None;
}

.calendar-menu * {
  margin: 0; 
}

span.required {
  color: red;
  font-weight: 200;
}

h2 {
  font-family: 'Merriweather', serif; 
}
  
a:not([href]):not([tabindex]), .fc-helper-container {
  color: #fff;
  background: lightgray;
  border: none;
}

.legend {
  margin-top: 20px; 
  width: 100%;
}

.legend p {
  margin: 0;
}

.colorBlock {
  flex-shrink:0;
  margin-right: 10px;
  height:15px;
  width:15px;
  border-radius: 3px;
}

.legend-item {
  margin: 5px 0px;
  display: flex;
  align-items: center;
}