/*!*********************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/components/header.css ***!
  \*********************************************************************************/
a:link {
  font-weight: 600;
  color: black;
  text-decoration: none;
}

a:visited {
  color: black;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 2rem 3rem;
}

.link {
  padding-right: 2rem;
}

.searchbar {
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
}

input {
  width: 80%;
  height: 96%;
  background-color: #f0f0f0;
  border-radius: 0.5rem 0 0 0.5rem;
  border: none;
  padding-left: 2rem;
  font-size: 0.9rem;
  font-weight: 200;
}

input::placeholder {
  font-family: 'Azeret Mono';
  font-size: 0.9rem;
  font-weight: 200;
}

input:focus {
  outline-color: #b3e0e2;
}

.go {
  width: 10%;
  height: 100%;
  background-color: #b3e0e2;
  border-radius: 0 0.5rem 0.5rem 0;
  border: none;
  font-size: 1rem;
  padding: 0;
}

.logo {
  height: 40px;
}

.menu {
  cursor: pointer;
}

@media only screen and (max-width: 800px) {
  .header {
    padding: 2rem 1.5rem 0.5rem;
  }
  .searchbar {
    padding: 0 2rem;
  }

  input {
    width: 70%;
  }

  .go {
    width: 30%;
  }
}

/*!*******************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/components/Menu.css ***!
  \*******************************************************************************/
.menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 4.5rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.menu-container a:link {
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.menu-container a img {
  filter: invert(1);
  margin-right: 1rem;
  margin-bottom: 0px;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.menu-container a:visited {
  color: #e0e0e0;
}

.close-container {
  width: 75%;
}

.close {
  float: right;
  cursor: pointer;
}

/*!***********************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/components/dropdown.css ***!
  \***********************************************************************************/
.dropdown {
  cursor: pointer;
  font-size: 12px;
  color: #494e53;
  padding-right: 1rem;
}

.drop-btn {
  width: 160px;
  background-color: #d9eff1;
  padding: 8px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: space-evenly;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.drop-btn.disabled {
  cursor: not-allowed;
  background-color: #d0d0d0;
  color: #b0b0b0;
}

.drop-btn.is-dropped {
  border-radius: 8px 8px 0px 0px;
}

.drop-btn.is-dropped img {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  width: 160px;
  z-index: 1;
  border-radius: 0px 0px 8px 8px;
  overflow: hidden;
}

.dropdown-item {
  padding: 8px 16px;
  display: block;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

/*!**********************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/components/tooltip.css ***!
  \**********************************************************************************/
.tooltip-outer {
  position: relative;
}

.tooltip-popup {
  padding: 0.9rem;
  background: black;
  z-index: 100000;
  position: absolute;
  border-radius: 0.5rem;
  display: flex;
}

.tooltip-inner {
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.25rem;
  color: #a0d8db;
}

/*!***********************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/components/infoCard.css ***!
  \***********************************************************************************/
.info-card {
  border-radius: 8px;
  border: 1px solid black;
  padding: 10px;
}

.card-heading {
  padding: 2rem 0 0.8rem 0;
}

.break {
  word-break: break-all;
}

/*!************************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/components/eventCard.css ***!
  \************************************************************************************/
.event-card {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: auto;
  border: 1px solid black;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  position: relative;
}

.event-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.change-detail {
  position: absolute;
  right: 0px;
  top: -32px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px;
  font-size: 8px;
  word-wrap: break-word;
  max-width: 300px;
}

/*!*********************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/components/button.css ***!
  \*********************************************************************************/
.button-outer {
  align-items: center;
  user-select: none;
}

.button-inner {
  border-radius: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  text-align: center;
  font-size: 1rem;
  color: white;
  background-color: black;
  padding: 1rem 0;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/*!********************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/pages/updateInfo.css ***!
  \********************************************************************************/
.page-title {
  margin: 0 3rem;
}

.info-page-container {
  margin: 2rem 12rem 5rem;
  display: grid;
  grid-template-columns: 45% 1fr 52%;
}

.info-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #494e53;
}

.info-p {
  font-size: 1rem;
  font-weight: 200;
  color: #494e53;
  margin: 0.3rem 0;
  line-height: 1.4rem;
}

.form-container {
  background-color: #ecf7f8;
  border-radius: 0.5rem;
  padding: 0rem 2rem 0rem;
}

.signature-container {
  background-color: #a0d8db;
  height: fit-content;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.form-section {
  margin: 3rem 0;
}

.form-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #494e53;
}

.info-input {
  background-color: white;
  width: 96%;
  height: 2.3rem;
  margin-top: 0.6rem;
  border-radius: 0.5rem;
  padding-left: 1rem;
  font-weight: 400;
  font-family: 'Azeret Mono';
}

.info-input::placeholder {
  color: #9ea3a7;
}

input[type='file'] {
  padding: 0;
  /* color: #9ea3a7; */
}

input[type='file']::file-selector-button {
  background-color: #d0d1d2;
  height: 2.3rem;
  border-radius: 0.5rem 0 0 0.5rem;
  border: thin solid gray;
  margin-right: 0.5rem;
  padding: 0 0.5rem 0;
  font-family: 'Azeret Mono';
  font-size: 0.9rem;
  font-weight: 200;
}

.input-lead {
  background-color: #d0d1d2;
  display: flex;
  align-items: center;
  height: 2.4rem;
  margin-top: 0.6rem;
  border-radius: 0.5rem 0 0 0.5rem;
  padding: 0 1rem 0;
  font-size: 0.9rem;
  font-weight: 200;
}

.split {
  border-radius: 0 0.5rem 0.5rem 0;
}

textarea {
  width: 92%;
  height: 10rem;
  margin-top: 0.6rem;
  border-radius: 0.5rem;
  border: none;
  padding: 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  font-family: 'Azeret Mono';
}

textarea::placeholder {
  color: #9ea3a7;
  font-weight: 200;
}

textarea:focus {
  outline-color: #b3e0e2;
}

.message-box {
  background-color: white;
  border-radius: 0.5rem;
  margin: 0.5rem 0 1rem;
  padding: 1.5rem;
  color: #282a2d;
  font-weight: 200;
  line-height: 1.4rem;
  word-break: break-all;
}

.response {
  color: black;
  font-weight: 600;
  text-align: center;
  padding-top: 2rem;
}

@media only screen and (max-width: 800px) {
  .info-page-container {
    display: flex;
    margin: 1.5rem;
    flex-flow: row wrap;
  }

  .form-container {
    margin: 1rem 0 2rem;
  }
}

/*!*******************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/app.css ***!
  \*******************************************************************/
body {
  font-family: 'Azeret Mono';
  font-weight: 200;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.1rem 0;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.2rem 0;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.5rem 0;
  color: #494e53;
}

h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.4rem 0;
  color: #669294;
}

h5 {
  font-size: 0.9rem;
  font-weight: 200;
  margin: 0.4rem 0;
}

h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.4rem 0;
}

button {
  background-color: white;
  border-radius: 1.5rem;
  padding: 0.3rem 1.8rem;
  cursor: pointer;
}

li {
  word-break: break-all;
}

.img {
  width: 100%;
  justify-content: left;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.container {
  display: flex;
  margin: 3.5rem;
}

.footer {
  padding: 4.5rem 3.5rem;
  display: flex;
  justify-content: space-evenly;
}

.left-container {
  width: 30%;
  margin-right: 4rem;
}

.right-container {
  width: 70%;
}

.info-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.events-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.selected {
  text-decoration: underline;
  cursor: pointer;
}

.unselected {
  color: #9ea3a7;
  cursor: pointer;
}

.desc-icon {
  margin: 2rem 0 1rem;
  display: flex;
}

.description {
  font-size: 1.15rem;
  font-weight: 200;
  margin: 2rem 0 1rem;
}

.desc-link {
  font-size: 1.15rem;
}

.update {
  background-color: #d9eff1;
  font-family: 'Azeret Mono';
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid black;
  width: 100%;
  margin-top: 1rem;
}

/*!**************************************************************************!*\
  !*** css ../../node_modules/css-loader/dist/cjs.js!./src/app-mobile.css ***!
  \**************************************************************************/
@media only screen and (max-width: 800px) {
  .container {
    display: flex;
    margin: 1.5rem;
    flex-flow: row wrap;
  }

  .footer {
    padding: 1rem;
  }

  .footer a {
    padding: 0px;
  }

  .left-container {
    width: 100%;
    margin-right: 0rem;
  }

  .right-container {
    width: 100%;
    margin-right: 0rem;
  }

  .info-grid {
    grid-template-columns: 100%;
  }

  .update {
    margin-bottom: 2rem;
  }
}

