@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
a {
  text-decoration: none;
  color: inherit;
}

a:focus,
a:hover,
a:active {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  margin: 0;
  padding: 0;
  color: inherit;
}

p {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button, .see-calendar-btn {
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  display: inline-block;
}

input {
  font-family: inherit;
  font-size: inherit;
  background: transparent;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

fieldset {
  border: none;
  padding: 0;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

.highlighted {
  color: #00857a;
  font-weight: 700;
}

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

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

.bold {
  font-weight: 600;
}

.semi-bold {
  font-weight: 600;
}

.medium {
  font-weight: 500;
}

.alert {
  color: #e90c2d;
}

.state-ok {
  color: #1c8221;
}

.input-error {
  border: 2.5px solid #e90c2d;
  outline: none;
}

.hover-blue:hover {
  color: #00857a;
}

.mt-1 {
  margin-top: 1em;
}

.mb-1 {
  margin-bottom: 1em;
}

.my-1 {
  margin-top: 1em;
  margin-bottom: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mb-2 {
  margin-bottom: 2em;
}

.my-2 {
  margin-top: 2em;
  margin-bottom: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mb-3 {
  margin-bottom: 3em;
}

.my-3 {
  margin-top: 3em;
  margin-bottom: 3em;
}

.mt-4 {
  margin-top: 4em;
}

.mb-4 {
  margin-bottom: 4em;
}

.my-4 {
  margin-top: 4em;
  margin-bottom: 4em;
}

.mt-5 {
  margin-top: 5em;
}

.mb-5 {
  margin-bottom: 5em;
}

.my-5 {
  margin-top: 5em;
  margin-bottom: 5em;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
  background-color: #f9f5f2;
  color: #080222;
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 2rem;
  text-align: center;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 1.75rem;
  text-align: center;
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2rem;
  }
}

input {
  border-radius: 4px;
  border: 1px solid #080222;
  padding: 0.5em;
  width: 100%;
  box-sizing: border-box;
}

select {
  border-radius: 4px;
  border: 1px solid #080222;
  padding: 0.75em;
  font-size: inherit;
  background-color: white;
  cursor: pointer;
}

textarea {
  font-family: "Inter", sans-serif;
}

.ph {
  vertical-align: middle;
}

.radio-inline {
  display: flex;
  flex-direction: row;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 1em;
}
@media (min-width: 768px) {
  .container {
    padding: 0;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 500px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 650px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
    margin: auto;
  }
}
button, .see-calendar-btn {
  text-align: center;
  border-radius: 4px;
  padding: 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
button i, .see-calendar-btn i {
  font-size: 1.375rem;
  margin-right: 0.3em;
}

.button-primary, .see-calendar-btn {
  background-color: #080222;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.1s ease;
  will-change: transform;
}
.button-primary:hover, .see-calendar-btn:hover {
  background-color: #1a1545;
  transform: scale(1.005);
}

.button-secondary {
  background-color: #ffffff;
  color: #080222;
  border: 2px solid #080222;
  font-weight: 700;
  transition: all 0.1s ease;
  will-change: transform;
}
.button-secondary:hover {
  color: #00857a;
  border-color: #00857a;
  transform: scale(1.005);
}

.button-constructive {
  background-color: #00857a;
  color: #ffffff;
  padding: 0.4em;
  font-size: 0.85em;
  font-weight: 600;
}
.button-constructive:hover {
  background-color: rgb(0, 107.5, 98.6090225564);
}

.button-destructive {
  background-color: #eb5a47;
  color: #ffffff;
  padding: 0.4em;
  font-size: 0.85em;
  font-weight: 600;
}
.button-destructive:hover {
  background-color: rgb(232.5, 69.375, 48);
}

.button-rounded {
  border-radius: 25px;
}

.buttons-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6em;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: auto;
}
.buttons-container > :nth-child(5) {
  grid-column: 1/3;
  justify-self: center;
  width: -moz-max-content;
  width: max-content;
}

.category-button {
  flex-direction: column;
  gap: 0.6em;
  border: 2px solid #080222;
  border-radius: 7px;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #f9f5f2;
  transition: background-color 0.3s ease-in-out;
  box-shadow: 5px 5px 0 #080222;
  padding: 0.2em;
  font-size: 0.875rem;
}
.category-button:hover {
  background-color: rgb(240.9473684211, 231.5789473684, 224.5526315789);
}
.category-button.active {
  background-color: #ffcb52;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.4);
  transform: translateY(4px);
}
.category-button img {
  width: 8em;
  height: auto;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}

.btn-cross-delete {
  padding: 0;
  width: auto;
}
.btn-cross-delete:hover {
  color: #eb5a47;
}
.btn-cross-delete i {
  margin-right: 0;
  font-size: 1.75rem;
}

.button-grey-shadow {
  border: 2px solid #cccccc;
  border-radius: 8px;
  box-shadow: 6px 6px 0 #cccccc;
  width: 100%;
}
.button-grey-shadow:hover {
  border: 2px solid #080222;
  box-shadow: 6px 6px 0 #080222;
}
.button-grey-shadow.active {
  border: 2px solid #00857a;
  box-shadow: 4px 4px 0 #00857a;
}

.btn-danger {
  background-color: #eb5a47;
  color: #ffffff;
  font-weight: 700;
}
.btn-danger:hover {
  background-color: rgb(230, 48.75, 25);
}

.btn-cancel {
  color: #6e6d7a;
  border: 1px solid #6e6d7a;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.toggle-switch input {
  display: none;
}

.slider {
  width: 3em;
  height: 1.5em;
  background-color: #cccccc;
  border-radius: 1.5em;
  position: relative;
  transition: background-color 0.3s;
}
@media (min-width: 768px) {
  .slider {
    width: 4.5em;
  }
}

.slider::before {
  content: "";
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  background-color: #ffffff;
  border-radius: 50%;
  left: 0.125em;
  top: 0.125em;
  transition: transform 0.3s;
}

input:checked + .slider {
  background-color: #00857a;
}

input:checked + .slider::before {
  transform: translateX(26px);
}

.label-text {
  font-size: 14px;
}

.flash-success {
  background-color: #d4edda;
  color: #145222;
  padding: 0.75em 1.25em;
  border-radius: 4px;
  margin: 1em 0;
  font-weight: normal;
  font-size: 0.875rem;
  border: 1px solid #c3e6cb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}
.flash-success.show {
  opacity: 1;
  transform: translateY(0);
}
.flash-success.hide {
  display: none;
  transform: translateY(-5px);
}

.flash-error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 0.75em 1.25em;
  border-radius: 4px;
  margin: 1em 0;
  font-weight: normal;
  font-size: 0.875rem;
  border: 1px solid #f5c6cb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  width: 100%;
}
.flash-error.show {
  display: block;
}
.flash-error.hide {
  display: none;
}

dialog {
  border: none;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.confirm-modal-content {
  background: #ffffff;
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  width: 400px;
  max-width: 90vw;
  margin: auto;
}
.confirm-modal-content img {
  margin-bottom: 1em;
}
.confirm-modal-content .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  margin-top: 1.5em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  justify-content: flex;
  align-items: center;
  width: 100%;
}
.header .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: #f9f5f2;
  padding: 1em;
}
@media (min-width: 768px) {
  .header .container {
    padding: 1em 0;
  }
}
@media (min-width: 1024px) {
  .header .navbar {
    margin-left: auto;
  }
}

.logo-container img {
  height: 5em;
  width: auto;
}

.user-link {
  color: #080222;
  font-size: 3em;
}

.footer {
  border-top: 2px solid #080222;
  padding: 2em;
  margin-top: 3em;
}
.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  padding: 0;
}
@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-around;
  }
}
@media (min-width: 1024px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-around;
  }
}
.footer .socials h3 {
  text-align: center;
  margin-bottom: 1em;
}
.footer .socials .icons-container {
  display: flex;
  justify-content: center;
  gap: 0.5em;
}
.footer .socials .icons-container i.ph-duotone {
  color: #080222;
}
.footer .socials .icons-container i {
  font-size: 2rem;
}
.footer .site-infos {
  color: #6e6d7a;
  text-align: center;
}

.legal-notice {
  gap: 1em;
}
.legal-notice h2 {
  text-align: start;
}
.legal-notice a,
.legal-notice a:visited {
  color: #00857a;
}

.card, .card-shadow {
  border: 2px solid #080222;
  padding: 2em;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  border-radius: 10px;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .card.contained, .contained.card-shadow {
    padding: 1.5em 5em;
  }
}

.card-shadow {
  position: relative;
  margin-right: 0.875em;
}
@media (min-width: 768px) {
  .card-shadow {
    margin-right: 0;
  }
}
.card-shadow::before {
  content: "";
  position: absolute;
  top: 0.875em;
  left: 0.875em;
  right: -0.875em;
  bottom: -0.875em;
  background-color: #ffcb52;
  border: 2px solid #080222;
  border-radius: 6px;
  z-index: -1;
}

.category-selector p {
  text-align: center;
}

main.container {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
@media (min-width: 1024px) {
  main.container {
    min-height: 100vh;
  }
}

.sections-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3em;
  grid-auto-rows: minmax(200px, auto);
}

@media (min-width: 1024px) {
  .sections-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .sections-container.three-sections > section:nth-child(1) {
    grid-column: 1/2;
    align-self: start;
  }
  .sections-container.three-sections > section:nth-child(2) {
    grid-column: 1/2;
    align-self: start;
    position: relative;
  }
  .sections-container.three-sections > section:nth-child(3) {
    grid-column: 2/3;
    grid-row: 1/span 2;
    align-self: start;
    min-height: 100px;
    transition: height 0.3s ease;
    overflow-y: auto;
    max-height: 100vh;
  }
  .sections-container.four-sections {
    grid-template-areas: "area-1 area-2" "area-3 area-4";
  }
  .sections-container.four-sections > section:nth-child(1) {
    grid-area: area-1;
  }
  .sections-container.four-sections > section:nth-child(2) {
    grid-area: area-3;
  }
  .sections-container.four-sections > section:nth-child(3) {
    grid-area: area-2;
  }
  .sections-container.four-sections > section:nth-child(4) {
    grid-area: area-4;
  }
}
.navbar {
  position: absolute;
  width: calc(100% - 2em);
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 0.5em;
  background-color: #ffffff;
  transform: translateY(0);
  transition: transform 0.7s ease;
  border: 2px solid black;
  border-radius: 6px;
  box-shadow: 6px 6px 0 0 #080222;
  z-index: -1;
  max-height: 70vh;
  overflow-y: auto;
}
@media (min-width: 1024px) {
  .navbar {
    max-height: none;
    overflow-y: visible;
  }
}
.navbar.visible {
  transform: translateY(0);
}
.navbar:not(.visible) {
  transform: translateY(-200%);
}
.navbar ul {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.navbar li {
  padding: 0.75em;
}

.navbar-toggle {
  width: auto;
  padding: 0;
}
.navbar-toggle i {
  font-size: 2rem;
}

main.container {
  position: relative;
}
main.container.zindex-hidden {
  z-index: -10;
}
main.container.zindex-visible {
  z-index: 1;
}

.dropdown i {
  font-size: 1.25rem;
}

.submenu {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.submenu.visible {
  display: block;
  max-height: 25em;
}
.submenu.visible li a {
  display: flex;
  align-items: center;
}
.submenu.visible li a i {
  margin-right: 0.5em;
}

.caret-icon {
  transition: transform 0.3s ease;
}

.caret-icon.rotate {
  transform: rotate(180deg);
}

.dashboard-link {
  display: flex;
  align-items: center;
  width: auto;
}
.dashboard-link i {
  margin-left: 0.5em;
}

.login-text {
  display: none;
}
@media (min-width: 768px) {
  .login-text {
    display: inline;
  }
}

.user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2em);
  right: 1em;
  background-color: #ffffff;
  border-radius: 4px;
  border: 2px solid #080222;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  padding: 0.5em;
  z-index: 100;
}
.user-menu li a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.5em;
}
.user-menu li a:hover {
  color: #00857a;
}
@media (min-width: 768px) {
  .user-menu {
    right: 0;
  }
}

.user-icon-home {
  font-size: 3rem;
}

.user-action {
  position: relative;
  display: flex;
  align-items: center;
}
.user-action a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
}
.user-action i:not(a > i) {
  font-size: 3rem;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .user-action i:not(a > i) {
    margin-left: 2rem;
  }
}
@media (min-width: 768px) {
  .user-action {
    padding-right: 0;
  }
}

.sidebar {
  display: flex;
  justify-content: space-between;
}
.sidebar .menu-text {
  display: none;
}
@media (min-width: 1024px) {
  .sidebar .menu-text {
    display: block;
  }
}
.sidebar li {
  padding: 0.5em 1em;
  border: 2px solid #cccccc;
  border-radius: 8px;
  box-shadow: 6px 6px 0 #cccccc;
  font-weight: 500;
}
.sidebar li.active {
  border: 2px solid #00857a;
  box-shadow: 4px 4px 0 #00857a;
  transform: translateY(4px);
}
.sidebar li:hover {
  border: 2px solid #080222;
  box-shadow: 6px 6px 0 #080222;
}
.sidebar li a {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .sidebar li a i {
    margin-right: 0.5em;
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .navbar {
    position: static;
    transform: none;
    transition: none;
    background-color: #f9f5f2;
    border: none;
    width: auto;
    margin: 0;
    box-shadow: none;
  }
  .navbar:not(.visible) {
    transform: none;
  }
  .navbar.zindex-hidden {
    z-index: initial;
  }
  .navbar ul {
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2em;
    white-space: nowrap;
  }
  .navbar ul .dropdown {
    flex-direction: column;
  }
  .navbar li {
    display: flex;
    align-items: center;
    padding: 0;
  }
  .navbar li a {
    color: black;
    padding: 0.5em 1em;
    border-radius: 6.25em;
    border: 2px solid black;
    font-weight: 500;
  }
  .navbar li a:hover {
    background-color: #ffcb52;
    box-shadow: 3px 3px 0 0 #080222;
  }
  .navbar-toggle {
    display: none;
  }
  .dropdown {
    position: relative;
    color: black;
    padding: 0.5em 1em;
    border-radius: 6.25em;
    border: 2px solid black;
    font-weight: 500;
  }
  .dropdown:hover {
    background-color: #ffcb52;
    box-shadow: 3px 3px 0 0 #080222;
  }
  .submenu {
    padding: 0.5em;
    display: none;
    background-color: #ffffff;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    right: 0;
    min-width: -moz-max-content;
    min-width: max-content;
    z-index: 3;
    overflow: visible;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #080222;
  }
  .submenu li a {
    border: none;
    border-radius: 0;
    width: 100%;
  }
  .submenu li a:hover {
    box-shadow: none;
  }
  .submenu.visible {
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
  }
  .submenu:not(.visible) {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    display: none;
  }
  .sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 2em;
    flex-shrink: 0;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

form label {
  font-size: 1rem;
  font-weight: bold;
}

form input,
form select,
form textarea {
  padding: 0.75em;
  border: 1px solid #6e6d7a;
  border-radius: 6px;
  font-size: 1rem;
}

form input:focus,
form select:focus,
form textarea:focus {
  border: 2.5px solid #00857a;
  outline: none;
}

.input-container {
  position: relative;
  width: 100%;
}
.input-container input {
  margin-top: 0.5em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.password-container {
  position: relative;
}
.password-container i {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .password-container i {
    font-size: 2rem;
  }
}

.placeholder-right::-moz-placeholder {
  text-align: right;
}

.placeholder-right::placeholder {
  text-align: right;
}

.donation-form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.donation-form label {
  font-weight: 700;
}

.last-entry-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 768px) {
  .last-entry-container {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .last-entry-container {
    font-size: 1.25rem;
  }
}

.feedback-message {
  font-size: 1.75rem;
  font-weight: 600;
}

.input-quantity-wrapper.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eb5a47;
  border-radius: 2em;
  width: 100%;
}
.input-quantity-wrapper.flex input,
.input-quantity-wrapper.flex button,
.input-quantity-wrapper.flex .see-calendar-btn {
  color: #ffffff;
  width: auto;
}
.input-quantity-wrapper.flex input i,
.input-quantity-wrapper.flex button i,
.input-quantity-wrapper.flex .see-calendar-btn i {
  margin-right: 0;
  font-size: 1.5rem;
}

.sales-card {
  display: none;
}
.sales-card.show {
  display: block;
}
.sales-card form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
}
.sales-card form label {
  font-weight: 600;
}
.sales-card input[type=number] {
  text-align: center;
  font-weight: 500;
  border: none;
}
.sales-cardinput {
  width: 100%;
}
.sales-card.form-group.hidden {
  color: red;
  display: none;
}

.details-wrapper {
  display: flex;
  gap: 2em;
}

.cart-container {
  display: grid;
  gap: 1em;
}
.cart-container > li {
  list-style: none;
}
.cart-container > li > article {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-template-rows: auto auto;
  align-items: center;
}
.cart-container > li > article h3 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.cart-container > li > article .details-wrapper {
  grid-column: 1/2;
  grid-row: 2/3;
}
.cart-container > li > article .btn-cross-delete {
  grid-column: 2/3;
  grid-row: 1/3;
  justify-self: end;
  align-self: center;
  font-size: 0.875rem;
  width: auto;
}

.clear-cart-button {
  align-items: center;
  justify-content: center;
}
.clear-cart-button.show {
  display: flex;
}

.cart-status {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .open-cash-register {
    width: 60%;
    margin: 0 auto;
  }
}

.buttons-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2em;
}
@media (min-width: 768px) {
  .buttons-wrapper {
    flex-direction: row;
  }
}
.buttons-wrapper button, .buttons-wrapper .see-calendar-btn {
  padding: 0.7em;
  width: 100%;
}

.payments-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.payment-group {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #00857a;
  border-radius: 4px;
  padding: 0.5em 1em;
  background-color: #00857a;
  background-color: rgb(234.6, 245.24, 244.36);
}
.payment-group .payment-details-container {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
}
.payment-group .payment-details-container label {
  display: inline-block;
  width: 8em;
}
.payment-group .payment-details-container input {
  border: none;
  padding: 0.2em 0.5em;
  width: 5em;
}

.transaction-options-fieldset {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.form-group.hidden {
  display: none;
}

.gift-card {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.gift-card .button-container {
  display: flex;
  justify-content: center;
}
.gift-card button, .gift-card .see-calendar-btn {
  width: auto;
}
.gift-card button i, .gift-card .see-calendar-btn i {
  margin-right: 0;
  font-size: 1.875rem;
}
.gift-card button .ph-check-circle:hover, .gift-card .see-calendar-btn .ph-check-circle:hover {
  color: #00857a;
}
.gift-card button .ph-x-circle:hover, .gift-card .see-calendar-btn .ph-x-circle:hover {
  color: #eb5a47;
}

@media (min-width: 1024px) {
  .card-shadow.auth {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
  }
}

.tabs {
  display: flex;
  gap: 1em;
}
@media (min-width: 1024px) {
  .tabs {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.tabs .tab {
  flex: 1;
}

.map-viewer {
  height: 31.25rem;
  z-index: 2;
}

.card.users-mgmt, .users-mgmt.card-shadow {
  max-height: 60vh;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .card.users-mgmt, .users-mgmt.card-shadow {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
  }
}
.card.users-mgmt .table-wrapper, .users-mgmt.card-shadow .table-wrapper {
  max-height: 100%;
  overflow: auto;
}

.users-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
  font-size: 0.95em;
  overflow-x: auto;
  overflow-y: auto;
}
.users-table thead {
  background-color: #f9f5f2;
  border-bottom: 2px solid #dee2e6;
}
.users-table th,
.users-table td {
  padding: 0.75em 1em;
  text-align: left;
  border: 1px solid #dee2e6;
}
.users-table tr:nth-child(even) {
  background-color: #f9f5f2;
}
.users-table td form {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  align-items: center;
}
.users-table select {
  padding: 0.3em;
  font-size: 0.9em;
  border-radius: 4px;
  border: 1px solid #ccc;
}

@media (min-width: 1024px) {
  .user-guide {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.user-guide p {
  font-style: italic;
  color: #6e6d7a;
  font-size: 0.875rem;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal .modal-content {
  background: #ffffff;
  padding: 2em;
  border-radius: 8px;
  text-align: center;
}
.modal .modal-content img {
  margin-bottom: 1em;
}
.modal .modal-content .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  margin-top: 1.5em;
}

.discrepancy-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.discrepancy-container input {
  flex: 1;
  width: 100%;
  border: none;
  pointer-events: none;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em 1em;
  border: 1px solid transparent;
  border-radius: 6px;
  transition: border 0.2s, background-color 0.2s;
}
.radio-option label {
  cursor: pointer;
}
.radio-option input[type=radio] {
  width: 1em;
  height: 1em;
  cursor: pointer;
}
.radio-option input[type=radio]:checked:focus-visible {
  outline: none;
}

.radio-option:has(input[type=radio]:checked) {
  background-color: rgb(229.5, 242.8, 241.7);
  border-color: #00857a;
}

.eventModal {
  border: none;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.eventModal .eventModal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5em;
}
.eventModal .eventModal-content h2 {
  font-size: 1.25rem;
  text-align: left;
}
.eventModal .eventModal-content i {
  margin-right: 0.5em;
}
.eventModal .eventModal-content .deleteEventButton:hover {
  color: #eb5a47;
  border-color: #eb5a47;
}
.eventModal .eventModal-content .datetime-picker {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: 0.875rem;
}
.eventModal .eventModal-content form {
  gap: 1em;
}
.eventModal .eventModal-content form select {
  padding: 0.4375em;
}
.eventModal .eventModal-content form .form-group.icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
}
.eventModal .eventModal-content form .form-group.icon i {
  font-size: 1.5rem;
}
.eventModal .eventModal-content form .form-group.icon textarea,
.eventModal .eventModal-content form .form-group.icon select {
  flex: 1;
  width: 100%;
}
.eventModal .eventModal-content form input {
  padding: 0.4375em;
}
.eventModal .eventModal-content form fieldset {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.eventModal .eventModal-content form .datetime-fieldset {
  gap: 0.5em;
}
.eventModal .eventModal-content form .datetime-fieldset .datetime-picker {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: 0.875rem;
}
.eventModal .eventModal-content form .datetime-fieldset .datetime-picker span {
  min-width: 1em;
}
.eventModal .eventModal-content .modalTime {
  font-size: 0.875rem;
  color: #6e6d7a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.eventModal .eventModal-content .editEventButton {
  margin-top: 1em;
  padding: 0.5em;
}
.eventModal .eventModal-content .closeButton {
  padding: 0;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
}
.eventModal .eventModal-content .closeButton i {
  margin-right: 0;
}

.modalVolunteerList {
  list-style: inside;
}

.volunteer-management {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
.volunteer-management .flash-error {
  grid-column: 1/-1;
  margin: 0;
}
.volunteer-management h3 {
  text-align: center;
  margin: 0.5em 0;
}
.volunteer-management .volunteer-list {
  list-style: inside;
}
.volunteer-management .volunteer-list li {
  display: flex;
  justify-content: space-between;
}
.volunteer-management .volunteer-add-section .button-constructive {
  margin-top: 1em;
}
.volunteer-management .volunteer-add-section select {
  width: 100%;
  padding: 0.4em;
}

.fc-today-button {
  background-color: #6e6d7a !important;
  opacity: 1 !important;
}

.fc-toolbar-title {
  text-transform: capitalize;
}

.fc-event-title {
  text-overflow: ellipsis;
  font-weight: 600;
  color: #080222;
}

.fc-event-time {
  font-weight: 600 !important;
  color: #080222;
}

@media (max-width: 480px) {
  .fc-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5em;
  }
  .fc-toolbar-chunk:nth-child(1) {
    order: 2;
  }
  .fc-toolbar-chunk:nth-child(2) {
    order: 1;
  }
  .fc-toolbar-chunk:nth-child(3) {
    order: 3;
  }
}
.statistics-container {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
@media (min-width: 1024px) {
  .statistics-container {
    flex-direction: row;
  }
}
.statistics-container .select-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.statistics-container .select-container select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Inter", sans-serif;
  padding-right: 2.5em;
  background-image: url("../../images/icons/caret-down-WGPO3kf.svg");
  background-repeat: no-repeat;
  background-position: right 0.8em center;
  background-size: 1em;
}
@media (min-width: 1024px) {
  .statistics-container .select-container select {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .statistics-container .select-container {
    flex-direction: row;
    justify-content: center;
  }
}
.statistics-container .graph-container {
  width: 100%;
}
.statistics-container .graph-container h2 {
  text-align: center;
}
.statistics-container .graph-container .graph {
  position: relative;
  width: 100%;
  height: 260px;
}
@media (min-width: 768px) {
  .statistics-container .graph-container .graph {
    height: 30vh;
  }
}
@media (min-width: 1024px) {
  .statistics-container .graph-container .graph {
    height: 45vh;
  }
}

.user-sections-container {
  padding-top: 3em;
}
.user-sections-container .graph-container {
  width: 100%;
}
.user-sections-container .graph-container .graph {
  max-width: 100%;
  margin: auto;
}
.user-sections-container .volunteer-sessions-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.user-sections-container .volunteer-sessions-list .unsubscribe-button {
  margin-top: 0.5em;
}
@media (min-width: 768px) {
  .user-sections-container .volunteer-sessions-list .unsubscribe-button {
    width: auto;
    align-self: flex-start;
  }
}

.section-404-container {
  padding-top: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
}
.section-404-container img {
  width: 60%;
  height: auto;
}
.section-404-container h1 {
  text-align: center;
}
.section-404-container p {
  text-align: center;
}/*# sourceMappingURL=app.css.map */