/* Variables
-------------------------*/
/* Colors */
/* CSS Properties */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");
h1, h2, h3, h4, p, ul li, ol li, span, a {
  color: #000000;
  font-family: "Heebo", sans-serif;
  hyphens: manual;
  font-weight: 400;
}
h1 strong, h2 strong, h3 strong, h4 strong, p strong, ul li strong, ol li strong, span strong, a strong {
  font-weight: 500;
}

h4 {
  font-size: 18px;
}

/* Elements
-------------------------*/
#toast {
  position: fixed;
  top: 75px;
  width: 100%;
  z-index: 9;
  transform: translateY(-50px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease all;
}
#toast.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
#toast.green .text-container {
  background-color: #4CAF50;
}
#toast.red .text-container {
  background-color: #F44336;
}
#toast .text-container {
  border-radius: 5px;
  background-color: #000000;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.21);
  width: clamp(300px, 80vw, 600px);
  margin: 0 auto;
  padding: 15px 20px;
  color: #FFFFFF;
  font-family: "Heebo", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
}

.container {
  position: relative;
  width: clamp(300px, 80vw, 600px);
  margin: 0 auto;
  padding: clamp(15px, 4vw, 50px) calc(clamp(15px, 4vw, 50px) / 2);
}

hr {
  border-bottom: 2px solid #D9D9D9;
}

.cta-button {
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #B3B3B3;
  color: #FFFFFF;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: flex;
  align-items: center;
  transition: 0.15s ease all;
  min-height: 50px;
  cursor: pointer;
}
.cta-button.big {
  min-height: 70px;
}
.cta-button.big span.text {
  width: 100%;
  text-align: center;
  color: #000000;
}
.cta-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.15s ease all;
}
.cta-button.spaced {
  justify-content: space-between;
}
.cta-button span.icon {
  width: 25px;
  margin-left: -10px;
  margin-right: 5px;
  transition: 0.15s ease all;
}
.cta-button span.text {
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  transition: 0.15s ease all;
}
.cta-button.blue {
  background-color: #0094AA;
}
.cta-button.blue:hover {
  background-color: #007081;
}
.cta-button.gold {
  background-color: #CE9F23;
}
.cta-button.gold:hover {
  background-color: #A67C00;
}
.cta-button.light {
  background-color: #F5F5F5;
}
.cta-button.light span.text {
  color: #000000;
}
.cta-button.light:hover {
  background-color: #D9D9D9;
}
.cta-button:hover {
  background-color: #a6a6a6;
  transform: translateY(3px);
}
.cta-button:hover::after {
  transform: scaleY(0);
}
.cta-big {
  position: relative;
  overflow: hidden;
  display: block;
  background-color: #0094AA;
  color: #FFFFFF;
  padding: 20px 40px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: background-color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  margin-bottom: 15px;
  transition: 0.15s ease all;
  display: flex;
  align-items: center;
}
.cta-big::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 100%;
  height: 3px;
  background-color: rgba(0, 112, 129, 0.5);
  transition: 0.15s ease all;
}
.cta-big:hover {
  background-color: #007081;
  transform: translateY(3px);
}
.cta-big:hover::after {
  transform: scaleY(0);
}
.cta-big span.text {
  color: #FFFFFF;
  padding: 50px 0;
  font-family: "Heebo", sans-serif;
  font-weight: 600;
}
.cta-big span.icon {
  width: 60px;
  margin-right: 10px;
  margin-left: auto;
}

html {
  background-color: #000000;
}

body {
  background-color: #000000;
  overscroll-behavior: contain;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  background: #F5F5F5;
}
body::-webkit-scrollbar-thumb {
  background: var(--theme-color);
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color);
}

/* Header
-----------------*/
header {
  background-color: #000000;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo-container {
  width: clamp(200px, 80vw, 300px);
}

.sound-effect {
  position: absolute;
  top: calc(50vh - 125px);
  left: 50%;
  height: 150px;
  width: 150px;
  border-radius: 5px;
  background-color: #000000;
  transition: 0.25s ease all;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  transform-origin: 0% 50%;
  cursor: pointer;
}
.sound-effect span {
  color: #FFFFFF;
  text-align: center;
  padding: 0 20px;
  font-family: "Heebo", sans-serif;
  font-weight: 500;
}
.sound-effect.active {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8) translateX(-50%);
}

/* Content
-----------------*/
.page-wrapper {
  height: 100svh;
}
.page-wrapper header {
  flex: 100px;
}
.page-wrapper section {
  flex: 1;
  height: calc(100svh - 200px);
}
.page-wrapper section.header-comp {
  height: calc(100svh - 100px);
}
.page-wrapper footer {
  flex: 100px;
}

.user-import-modal {
  position: fixed;
  display: none;
}

.scan-modal {
  position: fixed;
  bottom: 0px;
  height: auto;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.scan-modal.active {
  pointer-events: auto;
}
.scan-modal.active .scan-modal-content {
  transform: translateY(0);
}
.scan-modal .scan-modal-content {
  position: relative;
  background-color: #FFFFFF;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  height: 100%;
  transform: translateY(100%);
  transition: 0.25s ease all;
}
.scan-modal .scan-modal-content .close-scan-modal {
  display: flex;
  position: absolute;
  top: 12px;
  right: calc(clamp(15px, 4vw, 50px) * 0.5);
  color: #CB1F1F;
  cursor: pointer;
}
.scan-modal .scan-modal-content h4 {
  margin: 0;
}
.scan-modal .scan-modal-content .cta-button:first-of-type {
  margin-bottom: 15px;
}

section {
  overflow: auto;
  background-color: #FFFFFF;
}
section::-webkit-scrollbar {
  width: 5px;
}
section::-webkit-scrollbar-track {
  background: #F5F5F5;
}
section::-webkit-scrollbar-thumb {
  background: #CE9F23;
}
section::-webkit-scrollbar-thumb:hover {
  background: #A67C00;
}
section h2 {
  color: #000000;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.35rem;
}
section h2 strong {
  font-weight: 600;
}
section.agenda ul {
  margin: 0;
  list-style: none;
}
section.agenda ul li {
  color: #000000;
  margin-bottom: 20px;
}
section.agenda ul li a {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  background-color: #F5F5F5;
  padding: 10px 20px;
  transition: 0.15s ease all;
  padding-right: 80px;
}
section.agenda ul li a:hover {
  background-color: #e8e8e8;
}
section.agenda ul li a:hover span.icon img {
  transform: translateX(3px);
}
section.agenda ul li a h4 {
  color: #000000;
  font-weight: 500;
  margin: 0;
  font-size: 1.1rem;
}
section.agenda ul li a span.date {
  color: #CE9F23;
  font-size: 0.9rem;
}
section.agenda ul li a span.icon {
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #0094AA;
  height: 100%;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.agenda ul li a span.icon img {
  width: 30px;
  transition: 0.15s ease all;
}
section.log-in h2 {
  margin-bottom: 20px;
}
section.log-in .current-congres {
  background-color: #000000;
  border-radius: 5px;
  padding: 20px 25px;
  margin: 15px 0;
}
section.log-in .current-congres h3 {
  color: #FFFFFF;
  margin: 0;
}
section.log-in .current-congres p {
  color: #CE9F23;
  margin: 0;
}
section.log-in .cta-button {
  margin-bottom: 15px;
  margin: 25px 0;
}
section.log-in form {
  background-color: #F5F5F5;
  padding: 25px;
  padding-bottom: 0;
  border-radius: 5px;
  overflow: hidden;
}
section.log-in form label {
  font-family: "Heebo", sans-serif;
  font-size: calc(clamp(16px, 1.6vw, 22px) * 1.1);
  font-weight: 500;
  color: #000000;
}
section.log-in form input[type=text], section.log-in form input[type=password] {
  border: none;
  border-radius: 4px;
  border-bottom: 2px solid #B3B3B3;
  box-shadow: none;
  height: 50px;
}
section.log-in form input[type=text]:focus, section.log-in form input[type=password]:focus {
  box-shadow: none;
}
section.log-in form p.login-username {
  padding-top: 5px;
}
section.log-in form p.login-password {
  padding-bottom: 5px;
}
section.log-in form p.login-remember {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
  pointer-events: none;
}
section.log-in form p.login-submit {
  margin: 0;
  margin-left: -25px;
  width: calc(100% + 50px);
}
section.log-in form p.login-submit input[type=submit] {
  width: 100%;
  margin: 0;
  background-color: #0094AA;
  height: 60px;
  border-bottom: 3px solid #007081;
  transition: 0.15s ease all;
  font-size: clamp(16px, 1.6vw, 22px);
  color: #FFFFFF;
  font-weight: 500;
  font-family: "Heebo", sans-serif;
}
section.log-in form p.login-submit input[type=submit]:hover {
  background-color: #007081;
}
section.dashboard ul {
  margin: 0;
  list-style: none;
}
section.dashboard ul li {
  color: #000000;
  margin-bottom: 20px;
}
section.dashboard ul li a {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  background-color: #F5F5F5;
  padding: 10px 20px;
  transition: 0.15s ease all;
  padding-right: 80px;
}
section.dashboard ul li a:hover {
  background-color: #e8e8e8;
}
section.dashboard ul li a:hover span.icon img {
  transform: translateX(3px);
}
section.dashboard ul li a h4 {
  color: #000000;
  font-weight: 500;
  margin: 0;
  font-size: 1.1rem;
}
section.dashboard ul li a p {
  margin: 0;
}
section.dashboard ul li a span.date {
  color: #CE9F23;
  font-size: 0.9rem;
}
section.dashboard ul li a span.icon {
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #CE9F23;
  height: 100%;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.dashboard ul li a span.icon img {
  width: 30px;
  transition: 0.15s ease all;
}
section.dashboard ul p {
  margin-top: 10px;
}
section.scan-page {
  background-color: #F5F5F5;
  background-color: #000000;
}
section.scan-page #reader {
  position: relative;
  height: calc(100vh - 100px);
}
section.scan-page #reader video {
  height: 100%;
  object-fit: cover;
}
section.scan-page #reader div:last-child {
  display: none !important;
}
section.quickscan-page {
  background-color: #F5F5F5;
  background-color: #000000;
}
section.quickscan-page #reader {
  position: relative;
  height: calc(100vh - 100px);
}
section.quickscan-page #reader video {
  height: 100%;
  object-fit: cover;
}
section.quickscan-page #reader div:last-child {
  display: none !important;
}
section.comment-scan .container, section.comment-manual .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.comment-scan .container .wrapper-top textarea, section.comment-manual .container .wrapper-top textarea {
  border: none;
  border-radius: 5px;
  background-color: #F5F5F5;
  box-shadow: none;
  resize: none;
  border-bottom: 3px solid #D9D9D9;
  height: 200px;
  font-family: "Heebo", sans-serif;
}
section.comment-scan .container .wrapper-top .cta-button, section.comment-manual .container .wrapper-top .cta-button {
  margin-bottom: 25px;
}
section.comment-scan .container .wrapper-bottom, section.comment-manual .container .wrapper-bottom {
  width: 100%;
}
section.comment-scan .container .wrapper-bottom .button-container, section.comment-manual .container .wrapper-bottom .button-container {
  width: 100%;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
section.visitors .cta-button.back {
  margin-bottom: 25px;
}
section.visitors ul {
  margin: 0;
  margin-top: 25px;
  list-style: none;
}
section.visitors ul li {
  position: relative;
  color: #000000;
  margin-bottom: 20px;
}
section.visitors ul li a.edit-visitor {
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background-color: #D9D9D9;
  top: calc(50% - 10px);
  right: 100px;
  z-index: 2;
  border-radius: 2px;
  transition: 0.15s ease all;
}
section.visitors ul li a.edit-visitor span.icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.visitors ul li a.edit-visitor span.icon img {
  width: 20px;
  height: 20px;
}
section.visitors ul li a.edit-visitor:hover {
  transform: scale(1.1);
}
section.visitors ul li a.list {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 5px;
  background-color: #F5F5F5;
  padding: 10px 20px;
  transition: 0.15s ease all;
  padding-right: 80px;
}
section.visitors ul li a.list:hover {
  background-color: #e8e8e8;
}
section.visitors ul li a.list:hover span.icon img {
  transform: translateX(3px);
}
section.visitors ul li a.list h4 {
  color: #000000;
  font-weight: 500;
  margin: 0;
  font-size: 1.1rem;
}
section.visitors ul li a.list p {
  margin: 0;
}
section.visitors ul li a.list span.date {
  color: #CE9F23;
  font-size: 0.9rem;
}
section.visitors ul li a.list span.icon {
  position: absolute;
  right: 0px;
  top: 0px;
  background-color: #CE9F23;
  height: 100%;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.visitors ul li a.list span.icon img {
  width: 30px;
  transition: 0.15s ease all;
}
section.visitors form {
  margin: 50px 0;
  background-color: #F5F5F5;
  border-radius: 5px;
  padding: 25px;
  transform: scale(0.8);
  opacity: 0;
  transition: 0.25s ease all;
  display: none;
}
section.visitors form input[type=file] {
  border: 2px dashed #D9D9D9;
  padding: 15px;
  border-radius: 4px;
  transition: 0.15s ease all;
  cursor: pointer;
}
section.visitors form input[type=file]:hover, section.visitors form input[type=file]:focus, section.visitors form input[type=file]:active {
  border: 2px dashed #B3B3B3;
  background-color: #e8e8e8;
  transform: scale(1.01);
}
section.visitors form input[type=submit] {
  background-color: #D9D9D9;
  border: none;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.15s ease all;
  border-bottom: 3px solid #B3B3B3;
  transition: 0.15s ease all;
  color: #000000;
}
section.visitors form input[type=submit]:hover {
  transform: translateY(3px);
  background-color: #B3B3B3;
}
section.visitors form.active {
  transform: scale(1);
  opacity: 1;
  display: block;
}
section.edit-visitor .cta-button.back {
  margin-bottom: 25px;
}
section.edit-visitor form label {
  font-family: "Heebo", sans-serif;
  font-size: calc(clamp(16px, 1.6vw, 22px) * 0.9);
  font-weight: 500;
  color: #000000;
}
section.edit-visitor form input[type=text], section.edit-visitor form input[type=password] {
  border: none;
  border-radius: 4px;
  border-bottom: 2px solid #B3B3B3;
  box-shadow: none;
  height: 50px;
  background-color: #F5F5F5;
}
section.edit-visitor form input[type=text]:focus, section.edit-visitor form input[type=password]:focus {
  box-shadow: none;
}
section.edit-visitor form .checks-container {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 25px;
}
section.edit-visitor form .checks-container .check-container {
  flex: 1;
  display: flex;
  align-items: center;
}
section.edit-visitor form .checks-container .check-container input[type=checkbox] {
  margin: 0;
  margin-right: 5px;
  accent-color: #000000;
}
section.edit-visitor form .button-wrapper {
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}
section.edit-visitor form .button-wrapper input[type=submit] {
  flex: 1;
  background-color: #0094AA;
  border: none;
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.15s ease all;
  border-bottom: 3px solid #007081;
  transition: 0.15s ease all;
}
section.edit-visitor form .button-wrapper input[type=submit]:hover {
  transform: translateY(3px);
  background-color: #007081;
}
section.edit-visitor form .button-wrapper a.cta-button {
  flex: 1;
}
section.edit-scans .cta-button.back {
  margin-bottom: 25px;
}
section.edit-scans .text-area-wrapper {
  margin-bottom: 50px;
}
section.edit-scans .text-area-wrapper textarea {
  margin-bottom: 0px;
  border: none;
  border-radius: 5px;
  border-bottom-right-radius: 0px;
  background-color: #F5F5F5;
  box-shadow: none;
  resize: none;
  border-bottom: 3px solid #CE9F23;
  height: 150px;
  font-family: "Heebo", sans-serif;
}
section.edit-scans .text-area-wrapper .scanner-save-container {
  margin-top: 0;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
section.edit-scans .text-area-wrapper .scanner-save-container span.text {
  font-family: "Heebo", sans-serif;
}
section.edit-scans .text-area-wrapper .scanner-save-container .cta-button {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
section.edit-scans .text-area-wrapper .scanner-save-container .cta-button:hover {
  transform: translateY(0px);
}

/* Footer
-----------------*/
footer {
  background-color: #000000;
  height: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
footer.start {
  justify-content: center;
}
footer .slogan-container {
  width: clamp(180px, 72vw, 270px);
}
footer p {
  color: #B3B3B3;
  font-size: 14px;
  margin: 0;
}
footer .button-container {
  display: flex;
}
footer .button-container .link {
  text-align: center;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
}
footer .button-container .link span.icon {
  background-color: #1a1a1a;
  aspect-ratio: 1/1;
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
footer .button-container .link span.icon img {
  width: 30px;
  margin: 0 auto;
}
footer .button-container .link span.text {
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
}

/* Media Queries
-------------------------*/
@media screen and (min-width: 1026px) {
  .phablet {
    display: none !important;
  }
}
@media screen and (min-width: 642px) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 1025px) {
  .desktop-only {
    display: none !important;
  }
}
@media screen and (max-width: 641px) {
  .tablet-up {
    display: none !important;
  }
}