:root {
  /*colour variables */
  --clr-forest-green: #289672;
  --clr-dark-green: #1E6F5C;
  --clr-bright-green: #65DAB4;
  --clr-status-green: #21AD55;
  --clr-pale-blue: #BDD9F1;
  --clr-bright-blue: #0697F2;
  --clr-status-orange: #F7981B;
  --clr-status-red: #F71B1B;
  --clr-text-grey: #707070;
  --clr-light-grey: #F5F5F5;
  /*border radius */
  --radius: 0.2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: -webkit-fill-available;
}

body {
  font-family: "Nunito", sans-serif;
  overflow: hidden;
  background-color: white;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0.7;
}

#text-logo {
  width: 150px;
  height: 40px;
}

#logoutButton {
  cursor: pointer;
  background-color: #A6C7E2;
  border: none;
  padding: 8px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.app-name h1 {
  font-size: medium;
}

.app-header {
  margin-left: 115px;
  margin-top: 15px;
  margin-bottom: 15px;
}

#app-logo {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 835px) {
  #app-logo {
    width: 300px;
  }
}
.new-booking-button {
  height: 60px;
  width: 60px;
  border-radius: 60px;
  background-color: white;
  margin-right: 20px;
  color: var(--clr-forest-green);
}

#append-dates {
  position: relative;
  scrollbar-color: var(--clr-forest-green) #E3EEF8;
}

#append-written-day {
  margin-bottom: 15px;
  margin-top: 15px;
}

.calendar-container {
  background-color: white;
}
.calendar-container .form-select {
  width: -moz-fit-content;
  width: fit-content;
  border: 0px;
  color: var(--clr-text-grey);
  scrollbar-width: thin;
}
.calendar-container .course-container {
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-container .month-year-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.calendar-container .month-year-container .month,
.calendar-container .month-year-container .year {
  width: 50%;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar-container .date-container .list-group {
  border-radius: 0px;
}
.calendar-container .date-container .list-group-item {
  background-color: white;
  color: var(--clr-text-grey);
  font-weight: 400;
  margin-bottom: 0px;
  padding: 15px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 0px;
  border-top: none;
  border-bottom: none;
  cursor: pointer;
}
.calendar-container .date-container .list-group-item:hover {
  background-color: var(--clr-pale-blue);
  border: none;
  font-weight: 600;
  color: var(--clr-dark-green);
}
.calendar-container .date-container .list-group-item-active {
  background-color: var(--clr-pale-blue);
  border: none;
  font-weight: 600;
  color: var(--clr-dark-green);
}

@media screen and (max-width: 835px) {
  .calendar-container {
    margin-top: 0px;
  }
}
#dayOfWeek {
  font-size: larger;
  color: var(--clr-text-grey);
  font-weight: 600;
}

.teeTimeCalendar {
  margin-right: 20px;
  margin-left: 20px;
  margin-top: 10px;
}
.teeTimeCalendar .fa-exclamation {
  padding-left: 5px;
  color: var(--clr-status-orange);
}
.teeTimeCalendar .card-header {
  background-color: var(--clr-pale-blue);
  padding: 10px;
  padding-right: 25px;
  border-radius: 2px;
  margin-bottom: 5px;
  margin-top: 5px;
  border: none;
}
.teeTimeCalendar .timeCaddiesContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px;
  color: var(--clr-text-grey);
}
.teeTimeCalendar .timeCaddiesContainer .numberOfCaddies {
  display: flex;
  flex-direction: row;
}
.teeTimeCalendar .timeCaddiesContainer .numberOfCaddies_text {
  font-weight: 600;
  padding-right: 5px;
}
.teeTimeCalendar .timeCaddiesContainer .numberOfCaddies_box-red {
  background-color: var(--clr-status-red);
  width: 25px;
  height: 25px;
  justify-content: center;
  text-align: center;
  border-radius: 2px;
  color: white;
}
.teeTimeCalendar .timeCaddiesContainer .numberOfCaddies_box-green {
  background-color: var(--clr-status-green);
  width: 25px;
  height: 25px;
  justify-content: center;
  text-align: center;
  border-radius: 2px;
  color: white;
}
.teeTimeCalendar .timeCaddiesContainer .numberOfCaddies_box-orange {
  background-color: var(--clr-status-orange);
  width: 25px;
  height: 25px;
  justify-content: center;
  text-align: center;
  border-radius: 2px;
  color: white;
}

.mobile-header {
  flex-shrink: 0;
  margin-top: 0px;
}

.mobile-content {
  height: 86%;
  overflow-y: scroll;
  scrollbar-color: var(--clr-forest-green) white;
}

#content-home {
  height: 70vh;
}

.mobile-footer {
  flex-shrink: 0;
  height: 79px;
}

.table {
  overflow: scroll;
  background-color: var(--clr-pale-blue);
  padding: 0px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--clr-text-grey);
  border-radius: 5px;
  margin-bottom: 0px;
  display: flex;
}
.table th:first-child, .table td:first-child {
  position: sticky;
  left: 0px;
  font-weight: 700;
  color: var(--clr-text-grey);
  background-color: var(--clr-pale-blue);
}
.table td, .table th {
  vertical-align: middle;
}
.table-bordered {
  border-color: white;
}

.card {
  border: none;
  overflow-x: auto;
  border-radius: 3px;
}

.collapse {
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 0px;
  border: var(--clr-pale-blue);
}

.navbar {
  padding: 4px;
}

#no-bookings-to-display {
  text-align: left;
  font-size: 16px;
  color: var(--clr-text-grey);
  margin-top: 25px;
}

/*
    For Mobile & Tablet Screens - Hide desktop divs 
*/
@media screen and (max-width: 835px) {
  .cm-sidenav {
    display: none;
  }
  .new-booking-desktop {
    display: none;
  }
  .body-app {
    display: block;
  }
}
/*   
    For Desktop - Hide mobile and tablet divs 
*/
@media screen and (min-width: 836px) {
  .mobile-content {
    margin-bottom: 0px;
  }
  .cm-mob-bottom-nav {
    display: none;
  }
  .mobile-footer {
    display: none;
  }
  .mobile-footer .fixed-bottom {
    display: none;
  }
  .new-booking-button {
    display: none;
  }
  .left-side-calendar-view {
    width: 60%;
    margin-left: 115px;
    margin-right: 20px;
  }
  .body-app {
    display: flex;
    flex-direction: row;
    height: 100vh;
    overflow: -moz-hidden-unscrollable;
  }
}
.left-side-calendar-view {
  display: flex;
  flex-direction: column;
}

.fa-triangle-exclamation {
  color: var(--clr-status-red);
}

.fa-circle-exclamation {
  color: var(--clr-status-orange);
}

.fa-square-check {
  color: var(--clr-status-green);
}

.new-booking-desktop {
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  scrollbar-color: var(--clr-pale-blue) white;
}
.new-booking-desktop-header {
  background-color: var(--clr-forest-green);
  color: white;
  font-weight: 600;
  font-size: 17px;
  padding: 20px;
  justify-content: center;
  text-align: center;
}
.new-booking-desktop-body {
  overflow-y: auto;
  flex: 1;
  padding: 25px;
}
.new-booking-desktop-footer {
  background-color: var(--clr-forest-green);
  padding: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
}

p {
  font-size: 0.9em;
}

.rb {
  padding: 10px 0;
}

.rb-tab {
  display: inline-block;
  position: relative;
  width: 20%;
}

.rb-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1em;
  color: var(--clr-text-grey);
}

.bold {
  font-weight: bold !important;
}
.bold span {
  color: var(--clr-dark-green) !important;
}

.rb-spot {
  position: absolute;
  width: 35px;
  height: 35px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid rgb(185, 185, 185);
  border-radius: 100%;
  cursor: pointer;
  transition: ease 0.5s;
}

.rb-tab-active .rb-spot {
  background: var(--clr-pale-blue);
  border: 2px solid var(--clr-dark-green);
}

.ct-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ct-btn-style {
  background: transparent;
  border: 2px solid rgb(185, 185, 185);
  cursor: pointer;
  transition: ease 0.5s;
  padding: 5px;
  border-radius: 5px;
  margin-right: 7px;
}

.ct-text {
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--clr-text-grey);
}

.ct-tab-active {
  background: var(--clr-pale-blue);
  border: 2px solid var(--clr-dark-green);
}

.ct-bold {
  font-weight: bold;
}
.ct-bold span {
  color: var(--clr-dark-green);
}

.edit-btn {
  background-color: var(--clr-dark-green) !important;
  border: none;
  height: 34px;
  width: 80px;
  border-radius: 8px;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.textVersion {
  font-size: x-small;
  position: absolute;
  bottom: 0px;
  height: 40px;
  width: 100%;
  color: white;
  padding-left: 3%;
  text-align: center;
}

ol,
ul {
  padding-left: 0rem !important;
}

/* NEW BOOKING MENU - MOBILE ONLY*/
.offcanvas {
  display: flex;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-y: scroll;
  z-index: 500 !important;
}
.offcanvas-header {
  background-color: var(--clr-forest-green);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.offcanvas-header span {
  color: white;
  font-weight: 700;
  font-size: 18px;
}
.offcanvas-body {
  background-color: white;
  overflow-y: scroll;
  padding: 20px;
}
.offcanvas-footer {
  display: flex;
  background-color: var(--clr-forest-green);
  height: 135px;
  justify-content: center;
  align-items: center;
}
.offcanvas-footer .btn-cancel {
  background-color: transparent;
  border: none;
  box-shadow: none;
  font-size: 17px;
  color: white;
  font-weight: 300;
  padding-right: 30px;
}

#save-booking,
#save-edit,
#save-booking-mobile {
  margin: 8px;
  width: 90px;
  height: 40px;
  background-color: white;
  border-radius: 5px;
  font-size: 17px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  color: var(--clr-bright-blue);
  font-weight: 700;
}

.cancel-button {
  width: 90px;
  height: 40px;
  margin: 8px;
  background-color: transparent;
  border-radius: 5px;
  font-size: 17px;
  border-color: #e7e7e7;
  border: 2px solid white;
  color: white;
}

.delete-container {
  margin-left: 45px;
}

#delete-text {
  color: var(--clr-text-grey);
  font-size: 14px;
  font-style: italic;
}

#delete-btn {
  background-color: var(--clr-text-grey);
  border: none;
  height: 36px;
  width: 100px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  color: white;
  margin-top: 13px;
}

#edit-message-container {
  background-color: #0697F2;
  color: white;
  display: flex;
  flex-direction: row;
}

#edit-msg-text {
  font-size: 15px;
}

#info-cont {
  display: flex;
  justify-content: center;
  align-items: center;
}

#msg-cont {
  margin-left: 10px;
}

#slot-full-msg-div {
  margin-left: 45px;
  margin-right: 40px;
  margin-top: 20px;
}

#slot-full-msg {
  color: var(--clr-status-red);
  font-size: 14px;
}

.select-booking-container {
  background-color: #F2F2F2;
  width: 100%;
  padding: 20px;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 2.5px;
  box-shadow: rgba(87, 87, 87, 0.24) 0px 3px 8px;
  margin-bottom: 20px;
}
.select-booking-container .numQContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 15px;
}
.select-booking-container .selectQDiv {
  color: var(--clr-text-grey);
  font-weight: 700;
}
.select-booking-container .numberCircleDiv {
  width: 30px;
  height: 30px;
  background: var(--clr-pale-blue);
  color: var(--clr-dark-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin-right: 15px;
}
.select-booking-container #new-booking-course-dropdown {
  margin-left: 45px;
  width: 72%;
  color: var(--clr-text-grey);
  border: none;
}

#datepicker {
  z-index: 600 !important;
  margin-left: 45px;
  width: 73%;
  margin-bottom: 10px;
}
#datepicker span {
  cursor: pointer;
}
#datepickerinput {
  color: var(--clr-text-grey);
  border: none;
}

#timepicker {
  z-index: 600 !important;
  margin-left: 45px;
  width: 73%;
}
#timepicker span {
  cursor: pointer;
}
#timepickerinput {
  color: var(--clr-text-grey);
  border: none;
}

.input-group-text {
  background-color: var(--clr-forest-green);
  color: white;
}

.form-control {
  border: none;
}

.booking-details,
#caddie-select-div {
  margin-left: 45px;
  width: 72%;
  color: var(--clr-text-grey);
}

#caddie-select-cont-div {
  margin-top: 8px;
  max-height: 150px;
  border-radius: 5px;
  overflow-x: scroll;
}
#caddie-select-cont-div .dropdown-item {
  padding: 0px;
}

#number-of-caddies-dropdown,
#caddie-type-dropdown,
#caddie-select-dropdown {
  border: none;
  color: var(--clr-text-grey);
  text-align: left;
}

.instructions {
  font-size: 14px;
  font-style: italic;
}

#dateTimeInstructionsDiv {
  margin-left: 45px;
  margin-bottom: 10px;
}
#dateTimeInstructionsDiv a {
  color: var(--clr-text-grey) !important;
}

.booker-margin {
  margin-top: 15px;
}

.checkbox-caddie {
  padding-left: 10px;
}
.checkbox-caddie input[type=checkbox] {
  margin: 10px; /* IE */ /* FF */ /* Safari and Chrome */ /* Opera */
  transform: scale(1.5);
}

.caddie-select-div-error {
  margin-left: 45px;
  border: 1px solid red;
  margin-top: 12px;
  padding: 10px;
  background-color: rgb(246, 223, 223);
}

#caddie-select-error {
  font-size: 12px;
  color: black;
  font-weight: 600;
}

.dropdown-menu {
  color: var(--clr-text-grey);
  height: 160px;
  overflow: auto;
  padding-right: 15px;
}

#drop .dropdown-item {
  padding: 0.2rem 1rem;
}

.hide {
  display: none !important;
}

.content-homescreen {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 65px;
}
.content-homescreen .nav-item {
  list-style-type: none;
}
.content-homescreen #qsLoginBtn {
  width: 140px;
  height: 50px;
  background-color: var(--clr-forest-green);
  border-radius: 5px;
  font-size: 20px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.content-homescreen h1 {
  color: var(--clr-dark-green);
  font-weight: 900;
  font-size: 50px;
}

@media screen and (max-width: 835px) {
  .content-homescreen {
    margin-top: 100px;
  }
  h1 {
    color: var(--clr-dark-green);
    font-weight: 900;
    font-size: 30px;
  }
}
#liveToast {
  background-color: var(--clr-pale-blue);
  color: var(--clr-dark-green);
  font-size: 16px;
}

#datetimepicker1 {
  z-index: 600 !important;
}

#burntToast {
  background-color: #F05555;
  color: white;
  font-size: 16px;
}

.mobile-hide {
  display: none;
}

#add-new-booking-btn {
  font-weight: 700;
  color: var(--clr-dark-green);
  background-color: var(--clr-pale-blue);
  cursor: pointer;
  padding: 15px;
  width: 100%;
  border: none;
  text-align: center;
  outline: none;
}

.validation-styles {
  font-size: 12px;
  color: var(--clr-status-red);
  margin-left: 45px;
}

#name-invalid,
#ref-invalid {
  margin-left: 0px !important;
}

.invalid-border {
  border: 1.5px solid var(--clr-status-red) !important;
}

.invalid-msg {
  background-color: rgb(247, 236, 216);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.invalid-msg span {
  font-size: 14px;
  color: var(--clr-status-orange);
  padding: 10px;
}/*# sourceMappingURL=cmCalendarStyles.css.map */