@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&display=swap");
body {
  background-color: #ddd;
  color: #ddd;
  color: #444;
  min-height: 100vh;
  font-family: Dosis, sans-serif;
  font-size: 20px; }

.hidden {
  display: none !important; }

.navbar {
  position: sticky;
  z-index: 100;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #888;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  color: #EF7F2D; }
  .navbar .logo {
    max-height: 48px; }
  .navbar .nav-link, .navbar .dropdown-item {
    color: #80B64E; }
    .navbar .nav-link:hover, .navbar .dropdown-item:hover {
      color: #EF7F2D; }

#calendar-container {
  background-color: rgba(255, 255, 255, 0.95);
  position: fixed;
  top: 85px;
  bottom: 10px;
  right: 10px;
  left: 10px;
  padding: 10px;
  margin: 0; }

.fc-direction-ltr .fc-resourceTimelineWeek-view td.fc-timeline-slot:nth-child(11n+1) {
  border-left: 1px solid #999; }

#calendar .fc-scrollgrid tbody .fc-scrollgrid-sync-table tbody tr:nth-child(even) {
  background-color: #f4f4f4; }
#calendar .fc-lessonMode-button:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f51c"; }
#calendar .fc-rentMode-button:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f2b5"; }
#calendar .fc-moveMode-button:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f0b2"; }
#calendar .fc-cloneMode-button:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f0c5"; }
#calendar thead {
  background-color: #be2341; }
#calendar .fc-toolbar-chunk:first-child {
  width: 20%; }
#calendar .fc-scrollgrid-section > td:first-child {
  width: 180px; }
#calendar .fc-resource-timeline-divider {
  width: 4px;
  cursor: ew-resize; }
#calendar .fc-highlight {
  background-color: rgba(239, 127, 45, 0.25); }
#calendar .fc-button-primary {
  background-color: #80B64E;
  border-color: white; }
#calendar .fc-button-active {
  background-color: #EF7F2D; }
#calendar .fc-timeline-slot-cushion {
  color: #fff; }
  #calendar .fc-timeline-slot-cushion:hover {
    color: #EF7F2D; }
#calendar .lesson {
  background-color: #80B64E;
  border-color: rgba(0, 0, 0, 0.15);
  border-radius: 4px; }
#calendar .rent {
  background-color: #999;
  border-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px; }

#color {
  width: 48px; }

.popup-wrapper {
  position: fixed;
  display: flex;
  width: 100vw;
  height: 0;
  overflow: hidden;
  top: 75px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 10px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, height 0 linear;
  transition-delay: 0, 1s; }
  .popup-wrapper.show {
    opacity: 1;
    height: calc(100vh - 75px);
    transition: opacity 1s ease-in-out, height 1ms linear;
    transition-delay: 1s, 0; }
  .popup-wrapper .popup {
    width: 500px;
    height: auto;
    background-color: #fff;
    border: 1px solid #888;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    position: relative;
    padding: 40px 40px 20px; }
  .popup-wrapper .closer {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #EF7F2D;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    transition: background-color 1s ease-in-out !important; }
    .popup-wrapper .closer:hover {
      background-color: #be2341; }

form .row > * {
  margin-bottom: 10px; }
form .field label, form .field .value {
  margin-bottom: 10px; }
form .field .value input, form .field .value select {
  width: 100%; }

.auth-card .w-full, .auth-card .row {
  margin: 40px auto;
  justify-content: center; }
  .auth-card .w-full > div, .auth-card .row > div {
    text-align: center !important;
    justify-content: center; }
    .auth-card .w-full > div img, .auth-card .row > div img {
      margin: 0 auto; }

.logo {
  justify-self: center; }

.card {
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  margin-top: 2vw;
  margin-bottom: 2vw;
  padding: 1vw; }

a {
  transition: color 1s ease-in-out !important; }

.btn {
  transition: all 1s ease-in-out !important;
  background-color: #80B64E;
  color: #fff; }
  .btn:hover {
    background-color: #EF7F2D;
    color: #fff; }

.btn-delete {
  background-color: #be2341; }

.floating {
  position: fixed;
  bottom: 30px;
  right: 30px; }

thead {
  background: #80B64E;
  color: #fff; }
  thead a:hover {
    color: #EF7F2D; }
  thead a.active-order {
    color: #444; }

tbody a {
  color: #80B64E; }
  tbody a:hover {
    color: #EF7F2D; }
tbody .actions a {
  margin-left: 8px; }
  tbody .actions a:first-child {
    margin-left: 0; }

#glass {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10vw;
  color: #fff;
  z-index: 10;
  height: 0;
  overflow: hidden; }

#glass.show {
  height: 100vh; }

@media screen and (min-width: 576px) {
  .navbar .navbar-nav {
    font-size: 20px; }
  .navbar .nav-item {
    margin-left: 30px; } }
@media screen and (max-width: 575px) {
  body {
    font-size: 3vh; }

  .navbar .logo {
    max-height: 32px; } }
/*
BOOTSTRAP OVERRIDES
*/
[type='checkbox'], [type='radio'] {
  color: #EF7F2D; }

[type='checkbox']:checked, [type='radio']:checked {
  background-size: contain; }

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #EF7F2D; }

.dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
  transition: transform 1s ease-in-out; }

.dropdown-toggle.show::after {
  transform: rotate(-180deg); }

.card-header {
  text-align: center;
  background: none;
  border: 1px solid #be2341;
  border-radius: 8px 8px 0 0 !important;
  border-bottom: none;
  padding: 0 !important; }
  .card-header .card-title {
    color: #be2341;
    text-transform: uppercase;
    font-size: 120%;
    font-weight: bold; }

/*# sourceMappingURL=style.css.map */
