@import url("../../../main.css");
@import url("../navigation/navigation.css");
@import url("../footer/footer.css");

#page-content {
  width: 96%;
  background-color: var(--clean-and-serene-white);
  /* padding: 50px; */
}

#events {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  display: flex;
  height: 800px;
  width: calc(100% - 100px);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  background-color: var(--surrender-white);
  padding: 20px;
  gap: 20px;
}

#view-event {
  width: calc(96% - 100px);
  height: 100%;
  z-index: 4;
  background-color: var(--two-or-more-years-8o);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

#current-event {
  background-color: var(--surrender-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 635px;
  padding: 10px;
  gap: 10px;
}

#current-event-title-edit-and-report {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#current-event-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--m);
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
  flex: 10;
  width: 100%;
}

#current-event-edit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
}

#current-event-report {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
}

#calendar-container {
  background-color: var(--duct-tape-grey-3o);
  border-radius: 10px;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex: 7;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
}

#yearly-calendar {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.next-year:hover path {
  stroke-opacity: 1;
}

.previous-year:hover path {
  stroke-opacity: 1;
}

.previous-year,
.next-year {
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
}

#monthly-calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 5px;
}

.next-month:hover path {
  stroke-opacity: 1;
}

.previous-month:hover path {
  stroke-opacity: 1;
}

#weekly-calendar {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.next-week:hover path {
  stroke-opacity: 1;
}

.previous-week:hover path {
  stroke-opacity: 1;
}

.previous-week,
.next-week {
  cursor: pointer;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
}

#weekly-calendar .calendar-legend {
  height: 15%;
}

#weekly-calendar .calendar-body {
  height: 85%;
}

#weekly-calendar .days-of-the-week {
  width: 100%;
  height: 900px;
  z-index: 1;
  position: relative;
  align-items: normal;
}

#weekly-calendar .weekday-labels {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 5px;
}

#weekly-calendar .weekday-labels .sunday {
  margin-left: 45px;
}

#weekly-calendar .weekday-labels>div {
  flex: 1;
}

#weekly-calendar .weekday-labels .label {
  border-radius: 10px;
}

#weekly-calendar .days-of-the-week:not(:first-child) {
  overflow-y: auto;
}

#weekly-calendar .days-of-the-week>.sunday,
#weekly-calendar .days-of-the-week>.monday,
#weekly-calendar .days-of-the-week>.tuesday,
#weekly-calendar .days-of-the-week>.wednesday,
#weekly-calendar .days-of-the-week>.thursday,
#weekly-calendar .days-of-the-week>.friday,
#weekly-calendar .days-of-the-week>.saturday {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: transparent;
  height: max-content;
  width: 100%;
}

#weekly-calendar .days-of-the-week>.sunday {
  margin-left: 45px;
}

#weekly-calendar .days-of-the-week>div {
  border-radius: 10px;
}

#weekly-calendar .label {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 70px;
  gap: 10%;
  background-color: var(--stepwork-pencil-lead);
}

#weekly-calendar .day {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--surrender-white);
  height: 1180px;
  overflow-y: auto;
  width: 100%;
  position: relative;
}

#weekly-calendar .days-of-the-week-text {
  font-weight: 800;
  color: var(--surrender-white);
}

#weekly-calendar .days-of-the-week-day {
  background-color: var(--surrender-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  font-weight: 800;
  font-size: var(--s);
  color: var(--stepwork-pencil-lead);
}

#weekly-calendar .active-day {
  background-color: var(--ninety-day-red);
}

/* .days-of-the-week {
  position: relative;
  display: flex;
}

.days-of-the-week > div {
  flex-grow: 1;
}

.days-of-the-week > div.day {
  border: 1px solid #000;
}

.days-of-the-week > div[id*="am"],
.days-of-the-week > div[id*="pm"] {
  position: absolute;
  width: 100%;
}

.days-of-the-week > div[id*="am"] {
  top: 0;
}

.days-of-the-week > div[id*="pm"] {
  bottom: 0;
} */

#yearly-calendar-header {
  flex: 1;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--surrender-white);
  color: var(--stepwork-pencil-lead);
  font-size: var(--m);
  font-weight: 600;
}

#yearly-calendar-body {
  flex: 7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  height: 100%;
  width: 100%;
}

#yearly-calendar-body .calendar-legend {
  color: var(--stepwork-pencil-lead);
  font-size: var(--xs);
  border-radius: 5px;
}

#yearly-calendar-body .calendar-body {
  color: var(--stepwork-pencil-lead);
  font-size: var(--xxs);
}

#yearly-calendar-body>div>div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 5px;
}

#Jan-Feb-Mar-Apr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 10px;
  width: 100%;
  height: 100%;
}

#May-Jun-Jul-Aug {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  flex: 1;
}

#Sep-Oct-Nov-Dec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  flex: 1;
}

.calendar-legend {
  display: flex;
  background-color: var(--surrender-white);
  justify-content: center;
  align-items: center;
  color: var(--stepwork-pencil-lead);
  font-size: var(--m);
  font-weight: 600;
  /* border-radius: 5px; */
  height: 100%;
  width: 100%;
  flex: 1;
}

.previous-month {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.legend-text {
  flex: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.next-month {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.calendar-body {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 2%;
  flex: 7;
}

.days-of-the-week {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 5px;
  flex: 1;
}

#yearly-calendar .days-of-the-week>div,
#monthly-calendar .days-of-the-week>div {
  background-color: var(--stepwork-pencil-lead);
  color: var(--surrender-white);
}

#yearly-calendar .days-of-the-week div,
#monthly-calendar .days-of-the-week div {
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.days {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  gap: 5px;
}

.cell {
  border-radius: 5px;
  background-color: var(--surrender-white-5o);
  color: var(--two-or-more-years-5o);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1;
}

.active {
  background-color: var(--surrender-white);
  color: var(--two-or-more-years);
}

#filter-container {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--duct-tape-grey-3o);
  border-radius: 10px;
  height: 100%;
  width: 100%;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
  /* padding: 1%; */
}

#filters-text-and-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--surrender-white);
  color: var(--stepwork-pencil-lead);
  font-size: var(--m);
  font-weight: 600;
  gap: 40px;
  /* border-radius: 5px; */
  height: 100%;
  width: 100%;
  flex: 1;
}

.calendar-type {
  position: relative;
  background-color: var(--silver-medallion-3o);
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  font-size: var(--xs);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex: 1; */
  height: 40px;
  width: 90px;
}

.calendar-type-dropdown {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background-color: var(--surrender-white);
  border-radius: 5px;
  width: 100%;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 0.15rem var(--new-jersey-chrome);
}

.calendar-type-dropdown div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  z-index: 10000 !important;
}

.calendar-type-dropdown div:hover {
  background-color: var(--silver-medallion-3o);
  display: flex;
  justify-content: center;
  align-items: center;
}

#filters-text {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex: 2.5; */
}

#filters-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  height: 40px; */
  /* flex: 1; */
}

#filters {
  height: 100%;
  width: 100%;
  display: flex;
  overflow-y: auto;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  flex: 7;
}

#filters>div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  width: 100%;
}

#filters>div>div:first-child {
  background-color: var(--surrender-white);
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 2%;
}

#filters .dropdown {
  border-top: solid 1px var(--two-or-more-years);
  background-color: var(--surrender-white);
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 18px;
  gap: 18px;
}

#filters .dropdown>div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 18px;
}

#filters .dropdown>div>div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: var(--stepwork-pencil-lead);
  font-size: var(--xs);
  width: 100%;
}

#categories-container .dropdown>div>div {
  border: solid 3px var(--duct-tape-grey);
  height: 40px;
}

.category-selected {
  background-color: var(--duct-tape-grey);
}

#areas-dropdown {
  height: 300px;
  overflow-y: scroll;
}

#areas-dropdown>div {
  width: 100%;
  border-radius: 5px;
  color: var(--stepwork-pencil-lead);
  font-size: var(--xs);
  font-weight: 600;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#time-dropdown {
  height: 90px;
}

#cost-dropdown {
  height: 90px;
}

.filter-text {
  flex: 2;
  width: 100%;
  font-size: var(--s);
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
  display: flex;
  justify-content: center;
  align-items: center;
}

.filter-icon {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#upcoming-events {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  /* gap: 10px; */
}

#upcoming-events-title-and-add-event-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#upcoming-events-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  font-size: var(--l);
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

#add-event-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
}

#add-event-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--surrender-white);
  border-radius: 10px;
  min-width: 50%;
  padding: 15px;
  gap: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#add-event-button-text {
  font-size: var(--s);
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
}

#event-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-weight: 600;
}

#upcoming-events-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 40px;
  gap: 40px;
}

.upcoming-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.upcoming-row path {
  fill: var(--stepwork-pencil-lead-7o);
}

.upcoming-row:first-child>.upcoming-event path {
  fill: var(--surrender-white);
}

.upcoming-event {
  background-color: var(--surrender-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  width: 100%;
  padding: 10px;
  gap: 10px;
  flex: 1;
  max-width: 650px;
}

.upcoming-event-title-edit-and-report {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.upcoming-event-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--m);
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
  flex: 10;
  width: 100%;
}

.upcoming-event-edit {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  flex: 1;
  width: 100%;
}

.upcoming-event-report {
  display: flex;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
  align-items: center;
  flex: 1;
  width: 100%;
}

.flyer-and-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.flyer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  height: 100%;
  background-color: var(--silver-medallion-3o);
  border-radius: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

.flyer img {
  height: 400px;
  border-radius: 10px;
}

.details {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  height: 400px;
  gap: 5px;
  color: var(--stepwork-pencil-lead-7o);
  font-weight: 600;
}

.details div {
  height: 100%;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
}

.text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 10;
  width: 100%;
}

.price-and-time {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  gap: 5px;
}

.price {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.time {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.date {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.contact-name-and-number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  gap: 5px;
}

.contact-name {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.contact-number {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.website {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.address {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.email {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  width: 100%;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  padding: 5px;
  gap: 5px;
}

.description {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: var(--silver-medallion-3o);
  border-radius: 5px;
  color: var(--stepwork-pencil-lead-7o);
  font-weight: 600;
}

.is-event {
  background-color: var(--ninety-day-red);
  color: var(--surrender-white);
  cursor: pointer;
  -webkit-user-select: none;
  /* Safari 3.1+ */
  -moz-user-select: none;
  /* Firefox 2+ */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard syntax */
}

#monthly-calendar .event-filtered-out,
#yearly-calendar .event-filtered-out {
  background-color: var(--surrender-white);
  color: var(--stepwork-pencil-lead);
}

#weekly-calendar .event-filtered-out {
  display: none;
}

.weekly-times {
  position: absolute;
  z-index: 2;
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background-color: transparent;
  gap: 5px;
}

.time-text {
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#one-AM {
  top: 30px;
  left: 0;
}

#two-AM {
  top: 80px;
  left: 0;
}

#three-AM {
  top: 130px;
  left: 0;
}

#four-AM {
  top: 180px;
  left: 0;
}

#five-AM {
  top: 230px;
  left: 0;
}

#six-AM {
  top: 280px;
  left: 0;
}

#seven-AM {
  top: 330px;
  left: 0;
}

#eight-AM {
  top: 380px;
  left: 0;
}

#nine-AM {
  top: 430px;
  left: 0;
}

#ten-AM {
  top: 480px;
  left: 0;
}

#eleven-AM {
  top: 530px;
  left: 0;
}

#twelve-PM {
  top: 580px;
  left: 0;
}

#one-PM {
  top: 630px;
  left: 0;
}

#two-PM {
  top: 680px;
  left: 0;
}

#three-PM {
  top: 730px;
  left: 0;
}

#four-PM {
  top: 780px;
  left: 0;
}

#five-PM {
  top: 830px;
  left: 0;
}

#six-PM {
  top: 880px;
  left: 0;
}

#seven-PM {
  top: 930px;
  left: 0;
}

#eight-PM {
  top: 980px;
  left: 0;
}

#nine-PM {
  top: 1030px;
  left: 0;
}

#ten-PM {
  top: 1080px;
  left: 0;
}

#eleven-PM {
  top: 1130px;
  left: 0;
}

.time-line {
  border-bottom: solid 2px var(--stepwork-pencil-lead-7o);
  width: 98%;
}

.weekly-event {
  position: absolute;
  z-index: 3;
  font-weight: 600;
  color: var(--stepwork-pencil-lead);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  left: 0;
  height: 50px;
  border-radius: 10px;
  padding: 5px;
  opacity: 0.9;
}

@media (max-width: 800px) {
  #events {
    flex-direction: column-reverse;
  }

  #filters {
    flex-direction: row;
  }

  #calendar-container {
    flex: none;
    height: 600px;
  }

  #filters>div {
    flex-direction: row;

  }

  #filters .dropdown {
    flex-direction: row;
    border-top: none;
    border-left: solid 1px var(--two-or-more-years);
    min-width: 300px;
    min-width: 500px;
    overflow-x: auto;
    height: 60px;
  }

  #filters>div>div:first-child {
    height: 60px;
    width: 200px;
    min-width: 200px;
  }

  #categories-container .dropdown>div>div {
    text-align: center;
    width: 100px;
  }

  #areas-dropdown {
    overflow-y: hidden;
  }

  #areas-dropdown>div {
    width: min-content;
    text-wrap: nowrap;
    min-height: 40px;
  }

  #filters .dropdown#time-dropdown,
  #filters .dropdown#cost-dropdown {
    overflow-y: hidden;
    overflow-x: hidden;
    width: 300px;
  }

  .upcoming-row {
    flex-direction: column;
  }
}