@charset "UTF-8";
/*
This file will include all other compilable SCSS files, and will itself be compiled as the single, global stylesheet.
 */
/*
Reset
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

/*
Stylesheet for base typographical styles/formatting
 */
/*
For global site stylesheet configuration — e.g., global colours, font sizing, etc.
 */
body, html {
  font-family: "Lexend", sans-serif;
}

/*
Stylesheet for base typographical styles/formatting
 */
/*
Stylesheet for buttons (as reusable components)
 */
.button {
  background-color: #D0DCFF;
  border: none;
  border-radius: 8px;
  appearance: none;
  outline: none;
  padding: 8px 16px 8px 16px;
  transition: all 0.2s ease;
  font-size: 18px;
  min-height: 40px;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  text-align: center;
  text-decoration: none;
  color: #000000;
}
.button--rounded {
  border-radius: 34px;
}
.button--green {
  background-color: #b7dcbf;
}
.button--green:hover {
  background-color: rgb(114.3644859813, 186.6355140187, 129.9906542056) !important;
  color: #fff;
}
.button--green:active {
  background-color: rgb(81.7757009346, 168.2242990654, 100.4672897196) !important;
  color: #fff;
}
.button--text-align-left {
  text-align: left;
}
.button:hover {
  background-color: #809FFF;
  color: #fff;
}
.button:active {
  background-color: #3C6DFF;
  color: #fff;
}

.button.round {
  border-radius: 20px;
}

/*
Stylesheet for base typographical styles/formatting
 */
/*
Stylesheet for text inputs (as reusable components)
 */
.textbox {
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 9px;
}
.textbox--size-fill {
  width: 100%;
}
.textbox__input {
  border: 1px solid #79747E;
  padding: 8px 50px 8px 16px;
  font-size: 18px;
  color: #4A4459;
  border-radius: 4px;
  outline: none;
  min-height: 40px;
  width: 100%;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
}
.textbox__input:focus {
  border-color: #3C6DFF;
  border-width: 2px;
  padding: 7px 49px 7px 15px;
}
.textbox__input:focus + .textbox__label {
  color: #3C6DFF !important;
}
.textbox__input:placeholder-shown + .textbox__label {
  color: #49454F !important;
}
.textbox__label {
  position: absolute;
  padding: 2px 4px 2px 4px;
  left: 14px;
  font-size: 14px;
  pointer-events: none;
  transition: 0.1s margin-top ease;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
}
.textbox__input:not(:placeholder-shown) + .textbox__label {
  margin-top: -40px;
  color: #79747E;
  background: #ffffff;
}
.textbox__input:focus + .textbox__label + .textbox__clear-button {
  opacity: 1;
  pointer-events: unset;
}
.textbox__input:placeholder-shown + .textbox__label + .textbox__clear-button {
  opacity: 0;
}
.textbox__clear-button {
  position: absolute;
  right: 16px;
  appearance: none;
  outline: none;
  border: none;
  background: none;
  opacity: 0;
}
.textbox__clear-button__cross-icon {
  height: 18px;
  padding-top: 2px;
  fill: #79747E;
}
.textbox__clear-button__error-icon {
  height: 14px;
  fill: #B3261E;
  display: none;
}
.textbox--error .textbox__input {
  border-color: #B3261E;
  border-width: 2px;
  padding: 7px 49px 7px 15px;
}
.textbox--error .textbox__input:focus + .textbox__label {
  color: #B3261E !important;
}
.textbox--error .textbox__input:placeholder-shown + .textbox__label {
  color: #49454F !important;
}
.textbox--error .textbox__clear-button {
  opacity: 1 !important;
}
.textbox--error .textbox__clear-button__cross-icon {
  display: none;
}
.textbox--error .textbox__clear-button__error-icon {
  display: block;
}

textarea.textarea {
  padding: 8px 16px;
  height: 80px;
  border: 1px solid #79747E;
  border-radius: 4px;
  resize: none;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
}

/*
Stylesheet for base typographical styles/formatting
 */
.dashboard-header {
  width: 100vw;
  height: 64px;
  display: flex;
  align-items: center;
  background-color: #EBF3FF;
  padding: 16px 32px;
  font-size: 18px;
}
.dashboard-header__branding {
  margin-right: auto;
}
.dashboard-header__branding__title {
  font-weight: 600;
}
.dashboard-header__account {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.dashboard-header__menu__button {
  background: transparent;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 0;
  margin-right: 1.5vw;
  cursor: pointer;
}

.dashboard-header__menu__button:hover {
  background-color: rgb(176, 176, 176);
  transition-duration: 0.2s;
  text-align: center;
}

/*
Stylesheet for base typographical styles/formatting
 */
body {
  margin: 0;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.sidebar-overlay[hidden] {
  display: none;
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  pointer-events: none;
}

.sidebar {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: 100vh;
  width: clamp(200px, 20vw, 400px);
  max-width: 85vw;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 1px 1px grey;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  will-change: transform;
}

body.sidebar-open .sidebar {
  transform: translateX(0);
}

body.sidebar-open .sidebar-wrapper {
  pointer-events: auto;
}

body.sidebar-open {
  overflow: hidden;
}

.sidebar-title {
  font-family: sans-serif;
  color: rgb(97, 97, 97);
  font-weight: normal;
  display: block;
  text-align: center;
  margin: 0;
  padding-top: 40px;
}

.sidebar-options {
  padding-top: 10vh;
  padding-left: 0;
  text-decoration: none;
  list-style: none;
  display: block;
  text-align: center;
}

.sidebar-options li a {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 1vw;
  margin-right: 1vw;
  margin-top: 2vh;
  margin-bottom: 0.5vh;
  padding-top: 1vh;
  padding-bottom: 0.5vh;
  padding-left: 2vw;
  padding-right: 1.2vw;
  background-color: rgb(255, 255, 255);
  color: rgb(92, 92, 92);
  text-decoration: none;
  text-align: left;
  font-weight: 500;
  border-radius: 30px;
  border: 1px solid transparent;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 15px;
}

.sidebar-options li a:hover {
  background-color: rgb(219, 219, 219);
  transition: background-color 0.2s, transform 0.2s;
}

.sidebar-logout {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 1vw 0vw 1vw 2vw;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 18px;
  text-align: left;
  color: rgb(92, 92, 92);
  cursor: pointer;
}

.sidebar-logout:hover {
  background-color: rgb(219, 219, 219);
  transition: background-color 0.2s, transform 0.2s;
  color: rgb(255, 48, 48);
}

/*
Stylesheet for base typographical styles/formatting
 */
/*
Stylesheet for index.php (homepage)
 */
/*
Stylesheet for base typographical styles/formatting
 */
.dashboard-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

.dashboard {
  width: 100%;
  max-width: 1366px;
  min-height: 200px;
  padding: 40px 32px;
}

.dashboard-nav {
  display: flex;
  gap: 16px;
  margin: 0 auto;
  margin-top: 5vh;
  flex-direction: column;
  width: 80%;
}

.dashboard-nav h1 {
  font-weight: 500;
}

.dashboard-nav h1 {
  margin: 0 auto;
  text-align: center;
}

.dashboard-options {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 6vw;
  gap: 20px;
}

.dashboard-options li {
  flex: 1;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.dashboard-options li a {
  display: block;
  width: 60%;
  text-align: center;
  text-decoration: none;
  color: #000;
  padding: clamp(15px, 2.5vh, 30px) 0;
  line-height: 1.2;
  background-color: #D0DCFF;
  border-radius: 20px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: sans-serif;
  font-size: clamp(13px, 1.6vw, 22px);
  margin: 0 auto;
}

.dashboard-options li a:hover {
  background-color: #809FFF;
  color: white;
}

.login-form {
  width: 400px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  margin: auto;
}

.login-form div.textbox {
  margin-bottom: 10px;
}

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

button.white {
  border: 1px solid black;
  background-color: white;
}

button.white:hover {
  background-color: #8f8f8f;
}

h1.login-form__title {
  text-align: center;
  font-size: x-large;
  margin-bottom: 20px;
  font-weight: normal;
}

div.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

div.circle.blue {
  background-color: #809fff;
}

div.login-form div.circle {
  margin-bottom: 25px;
}

.middle {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.error-text {
  color: red;
  text-align: center;
}

/*
Stylesheet for base typographical styles/formatting
 */
.bundle-dashboard-buttons {
  display: flex;
  gap: 32px;
}

.bundle-view {
  margin-top: 40px;
}
.bundle-view__img {
  width: 384px;
  height: 384px;
  background-color: #FF0000;
}
.bundle-view__main {
  display: flex;
  gap: 32px;
}
.bundle-view__seller {
  display: block;
  margin-top: 16px;
  font-weight: 600;
}
.bundle-view__date {
  display: block;
  margin-top: 64px;
  font-style: italic;
  font-weight: 200;
}
.bundle-view__price {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 18px;
  margin-top: 16px;
}
.bundle-view__edit-btn {
  display: inline-block;
  width: 100%;
}
.bundle-view__reserve-btn {
  display: inline-block;
  width: 100%;
}
.bundle-view__desc-wrapper {
  margin-top: 64px;
}
.bundle-view__allergens {
  display: block;
  font-weight: 600;
}
.bundle-view__desc {
  display: block;
  margin-top: 32px;
}
.single-bundle-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.single-bundle-wrapper {
  max-width: 1366px;
  padding: 40px 32px;
}

/*
Stylesheet for base typographical styles/formatting
 */
.bundle-creation-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.bundle-creation-wrapper {
  max-width: 1366px;
  min-width: 768px;
  padding: 40px 32px;
}
.bundle-creation-wrapper .bundle-dashboard-buttons {
  margin-bottom: 40px;
}

.bundle-creation-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
}
.bundle-creation-form__field {
  display: flex;
  align-items: center;
  gap: 32px;
}
.bundle-creation-form__field .textarea, .bundle-creation-form__field .textbox {
  margin-left: auto;
  width: 100%;
  max-width: 512px;
}
.bundle-creation-form #add-allergen-btn {
  width: fit-content;
  margin-top: 24px;
}
.bundle-creation-form .allergen-list {
  width: 100%;
  max-width: 100%;
}

section.edit-form {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 750px;
  border: 2px solid #f2f2f2;
  border-radius: 5px;
  padding: 20px;
}

ul.allergen-list {
  border: 1px solid gray;
  border-radius: 5px;
  list-style: none;
  max-height: 220px;
  overflow-y: scroll;
}

div.edit-form__field, ul.allergen-list {
  max-width: 550px;
}

li.allergen-list__item {
  padding: 5px;
  border-bottom: 1px solid #c7c7c7;
}

select.allergen-list__item__selector {
  background-color: white;
  width: calc(100% - 100px);
  padding: 10px;
  border: 2px solid #4c4c4c;
  color: #4c4c4c;
  font-weight: bold;
  border-radius: 5px;
}

select.allergen-list__item__selector.disabled {
  border: 2px solid #c7c7c7;
  color: #c7c7cd;
}

button.allergen-list__item__delete-btn {
  border-radius: 50%;
  border: none;
  background-color: #e1e9ff;
  padding: 10px;
  font-weight: bold;
  float: right;
}

button.allergen-list__item__delete-btn:hover {
  background-color: #d0dcff;
}

button.button.red {
  background-color: #b0200c;
  color: white;
}

button.button.green {
  background-color: #b7dcbf;
  color: #1a1a1a;
}

button.button.red:hover {
  background-color: #741307;
}

button.button.green:hover {
  background-color: #80a287;
  color: white;
}

.edit-form br {
  display: block;
  margin: 7px;
}

.edit-form__field {
  display: flex;
  justify-content: space-between;
  height: fit-content;
}

div.edit-form__field > label {
  flex-basis: 170px;
  height: fit-content;
}

div.edit-form__field .textbox {
  flex-basis: calc(100% - 170px);
}

div.edit-form__btns {
  display: flex;
}

div.edit-form__btns > button.button {
  margin-right: 30px;
}

textarea.textarea {
  flex-basis: calc(100% - 170px);
}

.edit-form > h1 {
  font-size: 35px;
  font-weight: normal;
}

table.calendar__table {
  width: 400px;
  border-spacing: 0;
}

#calendar td {
  text-align: center;
}

td.grey {
  color: #858383;
}

.calendar, .calendar__table {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

div.calendar {
  width: 450px;
}

table.calendar__table td, table.calendar__table tr {
  font-size: 25px;
  margin: 0px;
  border-collapse: collapse;
}

table.calendar__table td {
  padding: 0px;
}

div.calendar__menu {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}

.calendar__menu__header {
  display: flex;
  flex-grow: 1;
  margin-top: 6px;
  justify-content: center;
  font-weight: bold;
  font-size: 25px;
}

.button.nav {
  border-radius: 15px;
  width: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
}

div.streak {
  background-color: #ffcb20;
  width: inherit;
  height: calc(100% - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

div.streak.start {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

div.streak.end {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

div.today {
  border: 3px solid black;
  border-radius: 20px;
  width: inherit;
  height: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

p.centre {
  text-align: center;
}

p.bold {
  font-weight: bold;
}

.text-middle {
  text-align: center;
}

p.streak__header {
  font-size: 30px;
}

p.streak__display {
  font-size: 50px;
}

/*
Stylesheet for base typographical styles/formatting
 */
.analytics-wrapper {
  width: 70vw;
  margin: 0 auto;
  padding-top: 7vh;
}

.analytics-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3vh;
}

.analytics-nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.analytics-nav ul li a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.analytics-subtitle {
  text-align: center;
  margin-bottom: 7vh;
}

.analytics-salespiechart {
  margin: 0 auto;
}

canvas.graph-2d {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

div.forecast-variables {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
}

div.forecast-variables__var {
  display: flex;
  margin-bottom: 8px;
}

div.forecast-variables__var label {
  display: flex;
  flex-basis: 150px;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-right: 100px;
}

div.forecast-variables__var select {
  border: 1px solid grey;
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  width: 250px;
}

div.forecast-variables__var input[type=number] {
  border: 1px solid grey;
  border-radius: 5px;
  min-width: 50px;
  max-width: fit-content;
  height: 50px;
  font-size: 20px;
  text-align: center;
}

/*
Stylesheet for base typographical styles/formatting
 */
.active-reservations-wrapper {
  width: 65vw;
  margin: 0 auto;
  padding-top: 7vh;
}

.active-reservations-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3vh;
}

.active-reservations-nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.active-reservations-nav ul li a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.active-reservations-list-wrapper {
  width: 100%;
  border-color: black;
  border: 2px solid black;
  margin-top: 7vh;
}

.active-reservations-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.active-reservations-list {
  display: flex;
  flex-direction: column;
  gap: 8vh;
  width: 90%;
  margin: 5vh auto;
}

.active-reservations-bundle-nav ul {
  padding-top: 4vh;
  display: flex;
  gap: 32px;
  align-items: center;
}

.active-reservations-bundle-nav-view {
  border: none;
  background-color: #D0DCFF;
  padding: 8px 5vw;
  border-radius: 1000px;
  text-decoration: none;
  color: black;
}

.active-reservations-bundle-nav-view:hover {
  transition: all 0.2s ease;
  color: white;
  cursor: pointer;
  background-color: #809FFF;
}

.active-reservations-bundle-nav-cancel {
  border: none;
  background-color: #ff5b5b;
  padding: 8px 5vw;
  border-radius: 1000px;
  text-decoration: none;
  color: black;
}

.active-reservations-bundle-nav-cancel:hover {
  transition: all 0.2s ease;
  color: white;
  cursor: pointer;
  background-color: #ff3838;
}

.active-reservations-bundle-name {
  padding-bottom: 2vh;
}

/*
Stylesheet for base typographical styles/formatting
 */
.active-bundles-wrapper {
  width: 65vw;
  margin: 0 auto;
  padding-top: 7vh;
}

.active-bundles-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3vh;
}

.active-bundles-nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.active-bundles-nav ul li a {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.active-bundles-list-wrapper {
  width: 100%;
  border-color: black;
  border: 2px solid black;
  margin-top: 7vh;
}

.active-bundles-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.active-bundles-list {
  display: flex;
  flex-direction: column;
  gap: 8vh;
  width: 90%;
  margin: 5vh auto;
}

.active-bundles-bundle-nav ul {
  padding-top: 4vh;
  display: flex;
  gap: 32px;
  align-items: center;
}

.active-bundles-bundle-nav-view {
  border: none;
  background-color: #D0DCFF;
  padding: 8px 5vw;
  border-radius: 1000px;
  text-decoration: none;
  color: black;
}

.active-bundles-bundle-nav-view:hover {
  transition: all 0.2s ease;
  color: white;
  cursor: pointer;
  background-color: #809FFF;
}

.active-bundles-bundle-nav-cancel {
  border: none;
  background-color: #ff5b5b;
  padding: 8px 5vw;
  border-radius: 1000px;
  text-decoration: none;
  color: black;
}

.active-bundles-bundle-nav-cancel:hover {
  transition: all 0.2s ease;
  color: white;
  cursor: pointer;
  background-color: #ff3838;
}

.active-bundles-bundle-name {
  padding-bottom: 2vh;
}

/*
Stylesheet for base typographical styles/formatting
 */
.view-reservation-wrapper {
  width: 60%;
  margin: 0 auto;
  margin-top: 10vh;
}

.view-reservation-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.2vh;
}

.view-reservation-info-box {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-top: 7vh;
  display: flex;
  flex-direction: column;
  gap: 4vh;
  padding: 3vh 0;
  background-color: rgb(244, 244, 244);
  border-radius: 20px;
}

.view-reservation-form {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 3.2vh;
  align-items: center;
  text-align: center;
}

.view-reservation-form-text {
  width: 100%;
  height: 35px;
  padding-left: 1vw;
  border: 2px solid #e6e6e6;
}

.view-reservation-form-submit {
  width: 95%;
  border: none;
  border-radius: 1000px;
  background-color: #b7dcbf;
  padding: 1.8vh 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2vw;
  transition: all 0.2s ease;
  cursor: pointer;
}

.view-reservation-form-submit:hover {
  color: white;
  background-color: #8ec89b;
}

.view-reservation-form-submit svg {
  transition: fill 0.2s ease;
}

.view-reservation-form-submit:hover svg {
  fill: white;
}

.view-reservation-form-submit:disabled {
  cursor: not-allowed;
  opacity: 1;
  color: black;
}

.view-reservation-form-submit:disabled:hover {
  color: white;
}

.view-reservation-buttons {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: center;
  text-align: center;
  list-style: none;
  gap: 3.2vh;
  width: 25%;
}

.view-reservation-buttons li {
  width: 100%;
}

.view-reservation-buttons li a {
  text-decoration: none;
  font-size: smaller;
  font-weight: normal;
  border-radius: 1000px;
  background-color: rgb(154, 0, 0);
  color: white;
  width: 100%;
  display: block;
  padding: 1.5vh 0;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2vw;
  cursor: pointer;
}

.view-reservation-buttons li button {
  border: none;
  text-decoration: none;
  font-size: smaller;
  font-weight: normal;
  border-radius: 1000px;
  background-color: rgb(154, 0, 0);
  color: white;
  width: 100%;
  display: block;
  padding: 1.5vh 0;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2vw;
  cursor: pointer;
}

.view-reservation-buttons li button:hover {
  color: black;
  background-color: rgb(230, 0, 0);
}

.view-reservation-buttons li button svg {
  transition: fill 0.2s ease;
}

.view-reservation-buttons li button:hover svg {
  fill: black;
}

.view-reservation-buttons li a:hover {
  color: black;
  background-color: rgb(230, 0, 0);
}

.view-reservation-buttons li a svg {
  transition: fill 0.2s ease;
}

.view-reservation-buttons li a:hover svg {
  fill: black;
}

.view-reservation-info-box-info {
  font-weight: normal;
}

.view-reservation-description {
  margin-bottom: 10vh;
}

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