@charset "UTF-8";
html,
body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: var(--primary-background);
  cursor: default;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  display: block;
  transition-duration: 0.3s;
}

ul {
  list-style-type: none;
  padding: 0;
}

h3 {
  color: var(--primary-color);
  margin: 10px 0;
  font-size: 1.2em;
  display: flex;
  align-content: center;
}

h3 svg {
  width: 2rem;
  margin: 0 0.5rem;
}

.resume {
  background: var(--secondary-background);
  color: var(--primary-color);
  margin: 20px auto;
  box-shadow: 10px 10px black;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 750px) {
  .resume {
    flex-direction: row;
    width: 90%;
  }
  .left-side {
    width: 30%;
  }
}
.resume .left-side .profile {
  background: var(--primary-color);
  padding: 30px 15px 40px 15px;
  position: relative;
  z-index: 2;
}

.resume .left-side {
  margin: 0 1rem;
}

.resume .left-side .profile::after {
  content: "";
  position: absolute;
  background: var(--tertiary-background);
  width: 100%;
  height: 35px;
  bottom: -17px;
  left: 0;
  transform: skewY(-5deg);
  z-index: -1;
}

.resume .left-side .profile .photo img {
  width: 4rem;
  height: 6rem;
  object-fit: cover;
  border-radius: 50%;
}

@media (min-width: 750px) {
  .resume .left-side .profile .photo img {
    width: 5rem;
    height: 7rem;
  }
}
.resume .left-side .profile .photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.resume .left-side .profile .fa-rocket {
  font-size: 100px;
  text-align: center;
  margin: auto;
  color: var(--secondary-background);
}

.resume .left-side .profile .info {
  text-align: center;
  color: var(--primary-background);
}

.resume .left-side .profile .info .name {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.75em;
  color: var(--primary-background);
}

.resume .left-side .profile .info .job {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.5em;
  color: var(--secondary-background);
}

.contact,
.contact-list {
  border: 1px solid var(--secondary-color);
  border-radius: 3px;
  padding: 0.5rem;
}

.resume .left-side .contact div {
  line-height: 24px;
}

.resume .left-side .contact div a:hover {
  color: var(--primary-color);
}

.resume .left-side .contact div a:hover span::after {
  width: 100%;
}

.resume .left-side .contact div:hover i {
  color: var(--primary-color);
}

.resume .left-side .contact div i {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  font-size: 20px;
  text-align: center;
  margin-right: 15px;
  transition-duration: 0.3s;
}

.resume .left-side .contact div span {
  position: relative;
}

.resume .left-side .contact div span::after {
  content: "";
  position: absolute;
  background: var(--primary-color);
  height: 1px;
  width: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.3s;
}

.about {
  margin: 2rem 0;
  padding: 0.5rem;
  border: 1px solid var(--secondary-color);
  border-top: none;
  border-right: none;
}

.about, .contact {
  width: 100%;
  background-color: var(--primary-background);
}

.about-contact-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 750px) {
  .about-contact-container {
    flex-direction: column;
    flex-flow: wrap;
  }
}
@media (max-width: 750px) {
  .about, .contact {
    width: 100%;
  }
  .contact span {
    display: none;
  }
  .contact a {
    margin: 1rem;
  }
  .contact-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.box {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.box a {
  height: 2rem;
  width: 2rem;
}

.resume .left-side .follow .box {
  text-align: center;
  vertical-align: middle;
}

.resume .left-side .follow .box a {
  display: inline-block;
  vertical-align: text-bottom;
}

.resume .left-side .follow .box a:hover i {
  background: var(--primary-color);
  border-radius: 5px;
  transform: rotate(45deg) scale(0.8);
}

.resume .left-side .follow .box a:hover i::before {
  transform: rotate(-45deg) scale(1.5);
}

.resume .left-side .follow .box i {
  display: inline-block;
  font-size: 30px;
  background: var(--primary-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  line-height: 60px;
  color: var(--secondary-background);
  margin: 0 10px 10px 10px;
  transition-duration: 0.3s;
}

.resume .left-side .follow .box i::before {
  transition-duration: 0.3s;
}

.resume .left-side .follow .box i.fa::before {
  display: block;
}

.resume .right-side {
  width: 100%;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
}

.resume .right-side:hover > div {
  transition-duration: 0.5s;
}

.resume .right-side:hover > div:hover h3 i {
  transform: scale(1.2);
}

.resume .right-side:hover > div:not(:hover) {
  opacity: 0.5;
}

.resume .right-side h3 {
  transition-duration: 0.3s;
  margin-top: 0;
}

.resume .right-side h3 i {
  color: var(--secondary-background);
  background: var(--primary-color);
  width: 42px;
  height: 42px;
  font-size: 20px;
  line-height: 42px;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  margin-right: 8px;
  transition-duration: 0.3s;
}

.work,
.edu {
  background-color: var(--primary-background);
  padding: 0.5rem;
  border: 1px solid var(--secondary-color);
  margin: 0 auto;
}

@media (min-width: 750px) {
  .work,
  .edu {
    float: left;
  }
}
.work small,
.edu small {
  display: block;
  opacity: 0.7;
}

.work ul li,
.edu ul li {
  position: relative;
  margin-left: 15px;
  padding-left: 20px;
  padding-bottom: 15px;
}

.work ul li:hover::before,
.edu ul li:hover::before {
  animation: circle 1.2s infinite;
}

.work ul li:hover span,
.edu ul li:hover span {
  color: var(--primary-color);
}

@keyframes circle {
  from {
    box-shadow: 0 0 0 0px var(--primary-color);
  }
  to {
    box-shadow: 0 0 0 6px rgba(205, 205, 205, 0);
  }
}
.work ul li:first-of-type::before,
.edu ul li:first-of-type::before {
  width: 10px;
  height: 10px;
  left: 1px;
}

.work ul li:last-of-type,
.edu ul li:last-of-type {
  padding-bottom: 3px;
}

.work ul li:last-of-type::after,
.edu ul li:last-of-type::after {
  border-radius: 1.5px;
}

.work ul li::before,
.work ul li::after,
.edu ul li::before,
.edu ul li::after {
  content: "";
  display: block;
  position: absolute;
}

.work ul li::before,
.edu ul li::before {
  width: 7px;
  height: 7px;
  border: 3px solid var(--primary-background);
  background: var(--primary-color);
  border-radius: 50%;
  left: 3px;
  z-index: 1;
}

.work ul li::after,
.edu ul li::after {
  width: 3px;
  height: 100%;
  background: var(--primary-background);
  left: 5px;
  top: 0;
}

.work ul li span,
.edu ul li span {
  transition-duration: 0.3s;
}

@media (min-width: 750px) and (max-width: 1080px) {
  .work h3, .edu h3 {
    height: 3rem;
    display: flex;
    align-content: center;
  }
  .work li, .edu li {
    height: 6.5rem;
  }
}
@media (min-width: 750px) {
  .work {
    width: 48%;
    background: var(--secondary-background);
    padding: 15px;
  }
  .edu {
    width: 48%;
    background: var(--secondary-background);
    padding: 15px;
  }
}
.scores-prog {
  clear: both;
  background: var(--secondary-background);
  padding: 15px;
}

.scores-prog ul {
  margin-left: 15px;
}

.scores-prog ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  transition-duration: 0.3s;
}

.scores-prog ul li:hover {
  color: var(--primary-color);
}

.scores-prog ul li:hover .scores-bar .bar {
  background: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color);
}

.scores-prog ul li span {
  display: block;
  width: 120px;
}

.scores-prog ul li .scores-bar {
  background: var(--primary-background);
  height: 2px;
  width: calc(100% - 120px);
  position: relative;
  border-radius: 2px;
}

.scores-prog ul li .scores-bar .bar {
  position: absolute;
  top: -1px;
  height: 4px;
  background: var(--primary-color);
  box-shadow: 0 0 0 var(--primary-color);
  border-radius: 5px;
}

.scores-soft {
  clear: both;
  background: var(--secondary-background);
  padding: 15px;
  margin: 15px 0 0;
}

.scores-soft ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.scores-soft ul li {
  position: relative;
}

.scores-soft ul li:hover svg .cbar {
  stroke: var(--primary-color);
  stroke-width: 4px;
}

.scores-soft ul li:hover span,
.scores-soft ul li:hover small {
  transform: scale(1.2);
}

.scores-soft ul li svg {
  width: 95%;
  fill: transparent;
  transform: rotate(-90deg);
}

.scores-soft ul li svg circle {
  stroke-width: 1px;
  stroke: var(--primary-background);
}

.scores-soft ul li svg .cbar {
  stroke-width: 3px;
  stroke: var(--primary-color);
  stroke-linecap: round;
}

.scores-soft ul li span,
.scores-soft ul li small {
  position: absolute;
  display: block;
  width: 100%;
  top: 52%;
  transition-duration: 0.3s;
}

.scores-soft ul li span {
  top: 40%;
}

.experience {
  background: var(--secondary-background);
  margin: 15px 0 0;
  padding: 15px;
}

@media (min-width: 900px) {
  .experience {
    display: flex;
    flex-direction: row;
  }
}
.interests {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  background: var(--primary-background);
  margin: 1rem;
  padding: 0.543m;
  border: 1px solid var(--secondary-color);
}

.interests h4 {
  padding-left: 1rem;
}

.interests-items {
  box-sizing: border-box;
  background: var(--secondary-background);
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.interests-items div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.interests-items div:hover i {
  transform: scale(1.2);
}

.interests-items div:hover span {
  transition-duration: 0.3s;
}

.interests-items div i {
  font-size: 45px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  color: var(--primary-color);
  transition-duration: 0.3s;
}

.interests-items div span {
  display: block;
  color: var(--primary-color);
}

.interest-icon svg {
  width: 3rem;
}

.rotate20 {
  /* Safari */
  -webkit-transform: rotate(20deg);
  /* Firefox */
  -moz-transform: rotate(20deg);
  /* IE */
  -ms-transform: rotate(20deg);
  /* Opera */
  -o-transform: rotate(20deg);
  /* Standard */
  transform: rotate(20deg);
}

.textarea {
  display: block;
  width: 100%;
  text-wrap: wrap;
  resize: both;
  min-height: 2rem;
  border: 1px var(--primary-color) dashed;
  padding: 0.2rem 0.4rem;
}

.textarea-not-editable {
  display: block;
  width: 100%;
  text-wrap: wrap;
  resize: both;
  min-height: 2rem;
  word-wrap: break-word;
  border: none;
  padding: 0.2rem 0.4rem;
}

input[type=file] {
  width: 100%;
  margin: 0 auto;
}

.contact-secondary svg {
  width: 1.5rem;
  height: 1.5rem;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--secondary-color);
  text-align: center;
  width: -moz-available;
  margin: auto;
}

.primary-theme {
  background: var(--primary-background) !important;
  color: var(--primary-color) !important;
}

.primary-reversed {
  background: var(--primary-color) !important;
  color: var(--primary-background) !important;
}

leptonic-theme-toggle {
  background-color: var(--primary-background);
  color: var(--primary-color);
}

.connected-buttons {
  margin: 0 auto;
  border-radius: 0.25rem;
  overflow: hidden;
  width: fit-content;
  border: 1px solid white;
}

.connected-buttons {
  color: var(--primary-color) !important;
  background: var(--primary-background) !important;
  font-weight: 400;
  margin: 0;
  border-radius: 0;
  border: 0;
  border-right: 1px solid white;
  width: 7rem;
  height: 2rem;
}

.connected-list li {
  position: relative;
  margin: 15px;
  padding: 20px;
  padding-bottom: 15px;
  border: 1px inset rgba(111, 111, 111, 0.5);
}
.connected-list li::before {
  animation: circle 1.2s infinite;
}
.connected-list li:hover span {
  color: red;
}
.connected-list li:last-of-type {
  padding-bottom: 1rem;
}
.connected-list li::before,
.connected-list li::after {
  content: "";
  display: block;
  position: absolute;
}
.connected-list li::before {
  width: 0.7rem;
  height: 0.7rem;
  background: red;
  border-radius: 50%;
  top: 8px;
  left: 8px;
  z-index: 1;
}
.connected-list li::after {
  width: 0.7rem;
  height: 100%;
  left: 5px;
  top: 0;
}
.connected-list li span {
  transition-duration: 0.3s;
}

.notifications-box {
  background-color: #333;
}

.show-on-desktop {
  display: none;
}

.show-on-mobile {
  display: block;
}

@media (min-width: 900px) {
  .show-on-mobile {
    display: none;
  }
  .show-on-desktop {
    display: block;
  }
  .mobile-column {
    display: flex;
  }
}
svg {
  fill: var(--footer-svg) !important;
  color: var(--footer-svg) !important;
}

path {
  fill: var(--footer-svg) !important;
  color: var(--footer-svg) !important;
}

line {
  stroke: var(--footer-svg) !important;
}

polyline {
  stroke: var(--footer-svg) !important;
}

.path-white {
  fill: white !important;
  color: white !important;
}

.path-white svg {
  fill: white !important;
  color: white !important;
}

.path-white path {
  fill: white !important;
  color: white !important;
}

.path-white line {
  stroke: white !important;
}

.path-white polyline {
  stroke: white !important;
}

.path-faded {
  fill: var(--primary-text) !important;
  color: var(--primary-text) !important;
}

.path-faded svg {
  fill: var(--primary-text) !important;
  color: var(--primary-text) !important;
}

.path-faded path {
  fill: var(--primary-text) !important;
  color: var(--primary-text) !important;
}

.path-faded line {
  stroke: var(--primary-text) !important;
}

.path-faded polyline {
  stroke: var(--primary-text) !important;
}

.success-icon {
  fill: var(--tertiary-color) !important;
  color: var(--tertiary-color) !important;
}

.success-icon svg {
  fill: var(--tertiary-color) !important;
  color: var(--tertiary-color) !important;
}

.success-icon path {
  fill: var(--tertiary-color) !important;
  color: var(--tertiary-color) !important;
}

.success-icon line {
  stroke: var(--tertiary-color) !important;
}

.success-icon polyline {
  stroke: var(--tertiary-color) !important;
}

.red-icon {
  fill: red !important;
  color: red !important;
}

.red-icon svg {
  fill: red !important;
  color: red !important;
}

.red-icon path {
  fill: red !important;
  color: red !important;
}

.red-icon line {
  stroke: red !important;
}

.red-icon polyline {
  stroke: red !important;
}

.color-toggle span.slider.round {
  background: transparent;
}

.path-stroke-fill path {
  fill: var(--primary-background) !important;
}

.path-stroke-background path {
  stroke: var(--primary-background) !important;
}

.path-stroke-object stroke {
  stroke: var(--primary-background) !important;
}

button {
  z-index: 10;
  width: max-content;
}

button:hover {
  background-color: var(--quaternary-background);
  color: #efebe8;
}

.delete-btn {
  color: red;
  border: 1px solid var(--secondary-background);
  background-color: var(--primary-background);
  width: max-content;
  align-self: flex-end;
  padding: 0.2rem 0.5rem;
}

.add-btn {
  width: max-content;
  align-self: center;
  background-color: green;
  padding: 0.2rem 0.5rem;
}

.brand-btn {
  color: var(--primary-text);
  border: 1px solid var(--primary-color);
  background-color: var(--primary-background);
  width: max-content;
  align-self: center;
}

.system-btn {
  background: var(--primary-background);
  color: var(--primary-color);
  border: 1px solid var(--brand-color);
}

.edit-view-btn {
  position: fixed;
  width: fit-content;
  bottom: 3rem;
  right: 1rem;
  background: green;
  padding: 0.2rem 0.5rem;
}

.checkbox-container {
  margin: 0.25rem 1rem 1rem 1rem;
}

.contact-link {
  display: flex;
  align-content: center;
}

.card-link {
  font-size: 150%;
  padding: 0 1rem;
}

.flex {
  display: flex;
}

.home-box {
  display: flex;
  background-color: var(--brand-color);
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 2rem;
}

.home-box * {
  background-color: var(--brand-color);
}

.home-box a {
  background-color: var(--primary-background) !important;
  color: var(--primary-color) !important;
  margin: 0 0.25rem;
}

.home-box a:hover {
  background-color: var(--brand-color) !important;
  color: var(--tertiary-color) !important;
}

.banner {
  height: 100%;
  width: 100%;
  aspect-ratio: 10/8;
  background-image: url("/public/images/sm/badge-pickup-staff_mobile.webp");
  background-position: center;
  background-size: cover;
}

@media (min-width: 450px) {
  .banner {
    background-image: url("/public/images/lg/badge-pickup-staff.webp");
    aspect-ratio: 10/3;
  }
}
.info-desk {
  height: 100%;
  width: 100%;
  aspect-ratio: 10/5.5;
  background-image: url("/public/images/sm/info-desk.webp");
  background-position: center;
  background-size: cover;
}

@media (min-width: 450px) {
  .info-desk {
    background-image: url("/public/images/lg/info-desk.webp");
  }
}
.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 3;
}

.signup-form-box {
  margin: 2rem auto;
  width: max-content;
  padding: 2rem 1rem;
  background-color: var(--secondary-background);
}

.signup-form-box leptonic-input {
  width: 20rem;
}

a[aria-current] {
  font-weight: bold;
}

.outlet {
  border: 1px dotted grey;
}

.fadeIn {
  animation: 0.5s fadeIn forwards;
}

.fadeOut {
  animation: 0.5s fadeOut forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
footer {
  background-color: var(--primary-background);
  color: var(--primary-text);
}

.footer-container {
  background-color: var(--primary-background);
  color: var(--primary-text);
  z-index: 100;
  padding: 0.5rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.footer-container-inner {
  width: clamp(300px, 100%, 1080px);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.icon-container span {
  font-size: 0.5rem;
}

footer svg {
  width: max-content;
  height: max-content;
  fill: var(--footer-svg) !important;
  color: var(--footer-svg) !important;
}

.position-details {
  padding: 0 0.5rem;
}
.position-details h2 {
  color: var(--brand-color);
}
.position-details blockquote {
  width: 95%;
  margin: 0 auto;
  padding: 0.1rem 1.5rem;
  background-color: var(--secondary-background);
}
.position-details li {
  list-style: disclosure-closed;
}

.referral-form-box {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin: 0 auto;
}

form {
  background-color: var(--secondary-background);
  color: var(--primary-text);
  padding: 1rem;
}

form input[type=submit] {
  margin: 0.5rem;
  float: right;
}

form h2 {
  font-size: 2rem;
}

.form-for-inner-container,
.form-inner-container {
  display: flex;
  flex-direction: column;
}

.form-invalid {
  font-size: 0.8rem;
  color: red;
  font-weight: 700;
}

.accordion {
  min-width: clamp(350px, 98%, 62ch);
}

.flex-column {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
}

.img-wrapper {
  width: 30%;
  height: 30%;
  margin-top: 0.5rem;
  object-fit: contain;
}

.centered {
  justify-self: center;
  align-self: center;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}

form {
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 20px;
}

.pseudo-form {
  background-color: #333;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.secondary-pseudo-form {
  background-color: #111;
  color: white;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 5px;
  padding-bottom: 20px;
}

.secondary-pseudo-form p {
  font-size: 1.2rem;
}

.primary-button {
  background-color: var(--tertiary-color);
  color: white;
  text-shadow: 1px 1px black;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  width: 20ch;
  align-self: end;
}

.secondary-button {
  background-color: #eee;
  color: black;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  width: 20ch;
  align-self: center;
}

.tertiary-button {
  background-color: #ddd;
  color: black;
  font-weight: 300;
  border: none;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.8rem;
  margin: 2px 1px;
  cursor: pointer;
  width: 20ch;
  border-radius: 5px;
  align-self: center;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.section {
  padding: 20px;
}

.split-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #333;
}

.split-screen {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
}

.split-title {
  font-size: 2rem;
  padding-bottom: 40px;
}

.left-column,
.right-column {
  width: 50ch;
  text-align: center;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 10px;
}

button:hover {
  background-color: #3e8e41;
}

ul {
  list-style-type: none;
}

li {
  padding: 0.2rem;
}

.button-link {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  text-decoration: none;
}

.about-us {
  max-width: 1200px;
  height: 100%;
  width: 92%;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  background: #333;
}

:root {
  --primary-background: #001b38;
  --secondary-background: #f2f3f5;
  --tertiary-background: #dddddd;
  --quaternary-background: #033b85;
  --primary-text: #f2f3f5;
  --secondary-text: #000000;
  --tertiary-text: #aaa;
  --quaternary-text: #333333;
  --primary-color: #00bfff;
  --secondary-color: goldenrod;
  --tertiary-color: #033b85;
  --quaternary-color: #ffffff;
  --footer-svg: hsl(from var(--primary-color) h calc(s + 200) calc(l + 35));
}

[data-theme=light] {
  --primary-background: #f2f3f5;
  --secondary-background: #001b38;
  --primary-text: #000000;
  --secondary-text: #f2f3f5;
  --footer-svg: hsl(from var(--primary-color) h calc(s + 100) calc(l - 40));
}

.secondary-color {
  color: var(--secondary-color);
}

summary {
  display: flex;
  list-style: none;
  margin-bottom: 2.2rem;
}

details[open] > summary {
  margin-bottom: 0;
}

summary::before {
  content: "▶";
  float: right;
}

summary h2 {
  width: auto;
}

details[open] > summary::before {
  content: "▼";
}

main,
html,
body {
  background-color: #000;
  color: #fff;
}

html,
body {
  width: clamp(300px, 100%, 2560px);
  max-width: 95ch;
  margin: 0 auto;
  padding: 0;
  flex-direction: column;
  align-items: center;
  align-content: start;
  justify-items: center;
  justify-content: center;
}

main {
  width: clamp(300px, 100%, 2560px);
  margin: 0 auto;
}

footer {
  color: var(--primary-color);
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* Scanner */
.scanner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}

video {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  object-fit: cover;
}

/* Toggle Scanner */
.scan-toggle {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-content: center;
  font-size: 4rem;
}

.scan-toggle input {
  /* Double-sized Checkboxes */
  -ms-transform: scale(4);
  /* IE */
  -moz-transform: scale(4);
  /* FF */
  -webkit-transform: scale(4);
  /* Safari and Chrome */
  -o-transform: scale(4);
  /* Opera */
  transform: scale(4);
  margin-left: 1.5rem;
}

/* CHECK IN CARD */
.clear-button {
  position: fixed;
  top: 20%;
  right: 0.5rem;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 0 1rem 1rem rgba(255, 100, 100, 0.6);
  border: none;
  padding: 0.5rem 1rem;
  z-index: 100;
  color: rgb(200, 200, 255);
  background-color: rgba(0, 0, 0, 0.6);
}

.check-in-button {
  position: fixed;
  top: 15%;
  right: 0.5rem;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.card-outer-container {
  position: relative;
  display: flex;
  text-align: center;
  margin: 1rem 0;
  width: 95%;
}

.card-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-checked-in {
  width: 100%;
  background: var(--tertiary-color);
}

.card-not-checked-in {
  width: 100%;
  background: red;
}

.card-button-large {
  margin: 0.5rem;
  font-size: 1.7rem;
  padding: 0 1rem;
}

.card-line-indicator {
  position: absolute;
  top: 25%;
  right: 1rem;
  font-size: 1.2rem;
}

.card-line-indicator span {
  font-size: 2.5rem;
}

.confirm-button {
  margin: 0.5rem;
  font-size: 1rem;
  padding: 0.2rem 0.6rem;
  width: min-content;
}

.confirm-x {
  font-size: 1.5rem;
  padding: 0.2rem 1rem;
}

.card-confirm-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-confirm-show {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  height: fit-content;
  margin: auto;
}

/* INPUT */
.input-container {
  display: flex;
  padding: 0 1rem;
  font-size: 1.5rem;
}

@media (max-width: 700px) {
  .input-container {
    flex-direction: column;
  }
}
.input-group {
  display: block;
  margin: 0.5rem;
}

.input-item {
  font-size: 1.5rem;
}

/* HEADER */
.header-container {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: auto;
  max-width: 65ch;
  width: clamp(300px, 100%, 2560px);
}

.header-main-button-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: auto;
}

.header-button-container {
  width: fit-content;
  margin: auto;
}

.header-signin-button {
  background: var(--primary-background);
  color: var(--primary-text);
  padding: 0 0.7rem;
  margin: 0.2rem;
  width: max-content;
  font-size: 0.8rem;
}

.header-signin-button-selected {
  background: var(--primary-color);
  color: var(--primary-text);
  padding: 0 0.7rem;
  margin: 0.2rem;
  font-size: 0.8rem;
}

.header-button {
  background: var(--primary-background);
  color: var(--primary-text);
  padding: 0.5rem;
  margin: 0.2rem;
  width: max-content;
  font-size: 1.5rem;
}

.header-button-selected {
  background: var(--secondary-background);
  color: var(--secondary-text);
  padding: 0.5rem;
  margin: 0.2rem;
  font-size: 1.5rem;
}

/* Landing */
.landing-container {
  width: 95%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.landing-left {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.landing-right {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-row-item {
  display: flex;
  flex-direction: column;
  margin: 0 0.5rem;
}

@media (min-width: 500px) {
  .form-row-item {
    flex-direction: row;
  }
}
textarea {
  box-sizing: border-box;
  overflow: hidden;
  resize: none;
}

.save-btn {
  align-self: end;
  margin-right: 0.25rem;
}

.desktop-only {
  display: none;
}

@media (min-width: 1080px) {
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: unset;
  }
}
.contact-container-edit fieldset {
  margin: 0.2rem;
}

.listing_section {
  margin: 0 auto;
  width: 95%;
}
