main {
  min-height: 100dvh;
}

h3 {
  font-size: 3.2rem;
  text-transform: none;
}

p {
  font-size: 1.6rem;
  padding: 0rem;
  margin: 0rem;
}

span {
  font-size: 1.6rem !important;
}

a {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--text-font);
  font-weight: 500;
  font-size: 1.6rem;
}

/* Banner */
#banner-container {
  position: relative;
  width: 100%;
  padding-bottom: 20%;
  overflow: hidden;
}

#org-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navbar */
.navbar {
  box-shadow: var(--box-shadow-navbar);
}

.error-message {
  color: var(--red-danger) !important;
  font-weight: 400;
  font-family: var(--text-font);

  padding: 0rem;
}

.skeleton {
  animation: skeleton-loading 1s linear infinite alternate;
}

canvas {
  width: 12rem;
  height: 12rem;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 80%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.skeleton-title {
  width: 15%;
  height: 3rem;
  margin-bottom: 2.5rem;
  border-radius: 0.8rem;
}

.skeleton-subtitle {
  width: 25%;
  height: 3rem;
  margin-bottom: 2.5rem;
  border-radius: 0.8rem;
}

.skeleton-text {
  width: 100%;
  height: 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 0.8rem;
}

.ql-container {
  height: fit-content !important;
}

.ql-container.ql-snow {
  border: none !important;
}

.ql-editor {
  overflow: hidden !important;
  color: var(--gray-dark) !important;

  li,
  span {
    font-size: 1.6rem !important;
  }
}

.ql-editor.ql-blank {
  padding: 0;
  font-family: var(--header-font) !important;

  a,
  p {
    font-family: var(--header-font) !important;
  }
}

/* Accordion */
.accordion-button::before {
  margin-left: 0;
  margin-right: 0.8rem;
}

.accordion-button:not(.collapsed)::after {
  display: none !important;
}

.accordion-button::after {
  display: none !important;
}

.accordion-button:not(.collapsed)::before {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::before {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: 0;
  /* margin-left: auto */
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

button:not(.back) {
  padding: 1.2rem 1.6rem;
  border-radius: 0.8rem;
  cursor: pointer;
  font-family: var(--text-font);
  font-weight: 500;
  font-size: 1.6rem;
}

.button-primary {
  padding: 1.2rem 1.6rem;
  border-radius: 0.8rem;
  cursor: pointer;
  border-bottom: 0.4rem solid var(--blue-secondary);

  background-color: var(--blue-primary);
  color: var(--white);

  font-family: var(--text-font);
  font-weight: 500;
  font-size: 1.6rem;

  transition-property: border transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 100ms;
}

.button-primary:hover,
.button-primary:focus {
  border-bottom: 0.4rem solid #4472ca00;
  transform: translateY(0.2rem);
}

.button-primary:disabled {
  border-bottom: 0.4rem solid #4472ca00;
  transform: translateY(0.2rem);
  background-color: var(--blue-primary-na);
}

button.loading {
  cursor: progress;
  font-size: 0;

  .bi-send {
    display: none !important;
  }
}

button.loading::after {
  content: "";
  display: inline-block;

  width: 2rem;
  height: 2rem;
  border: 0.5rem solid #f3f3f3;
  border-top: 0.5rem solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

label {
  font-size: 2rem;
  font-weight: 500;
  color: var(--black);
  font-family: var(--heading-font);
}

.file-drop-area {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

/* Drop area dashed border */
/* .file-drop-area:not(.disabled) {
  border: 0.2rem dashed var(--gray-dark);
} */

.file-drop-area.disabled {
  cursor: default;
}

.file-drop-area.dragging {
  background-color: var(--blue-primary-dragging) !important;
}

.upload-icon {
  font-size: 5rem;
  margin-bottom: 1rem;
}

.file-info {
  width: fit-content;
  border-radius: 10px;
  padding: 8px;
  border: 1px solid var(--gray-light);
}

#submission-file-area {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.file-icon-bg {
  background-color: var(--blue-primary);
}

#file-type {
  color: var(--gray-dark);
  font-weight: 300;
  text-transform: uppercase;
}

.file-drop-area p {
  font-family: var(--text-font);
  font-size: 1.4rem;
}

.file-drop-area i {
  position: static;
  font-size: 4rem;
  color: var(--blue-primary);
}

.spinner {
  border: 0.5rem solid #f3f3f3;
  border-top: 0.5rem solid transparent;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*#social {
  padding: 0.6rem 1.6rem;
  background-color: var(--gray-dark-80);
  border-radius: 9999px;
  right: 0.8rem;
  bottom: 0.8rem;
}*/

button {
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}


#return-btn {
  border: 0.1rem solid var(--gray-dark);
}

#return-btn,
#copy-btn {
  font-size: 1.8rem;
  cursor: pointer;
}

#copy-btn:hover {
  color: var(--blue-secondary);
}

#return-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Back to top */
#btn-scroll-to-bottom {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

.button-icon {
  transition: color 0.1s ease-in-out, background-color 0.2s ease-in-out,
    border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.button-youtube:hover,
.button-youtube:active,
.button-youtube:focus-visible {
  color: #fff !important;
  background-color: #ff0000 !important;
  border-color: #ff0000 !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgb(255, 0, 0, 0.8) !important;
}

.button-linkedin:hover,
.button-linkedin:active,
.button-linkedin:focus-visible {
  color: #fff !important;
  background-color: #0077b5 !important;
  border-color: #0077b5 !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(0, 119, 181, 0.8) !important;
}

.button-x:hover,
.button-x:active,
.button-x:focus-visible {
  color: #fff !important;
  background-color: #000 !important;
  border-color: #000 !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(0, 0, 0, 0.8) !important;
}

.button-facebook:hover,
.button-facebook:active,
.button-facebook:focus-visible {
  color: #fff !important;
  background-color: #1877f2 !important;
  border-color: #1877f2 !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(24, 119, 242, 0.8) !important;
}

.button-instagram:hover,
.button-instagram:active,
.button-instagram:focus-visible {
  color: #fff !important;
  /* background-color: #ea4c89 !important; */
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  border-color: #ea4c89 !important;
  box-shadow: 0 0.375rem 1.125rem -0.375rem rgba(234, 76, 137, 0.8) !important;
}

/*#org-logo {
  border-radius: 50%;
  aspect-ratio: 1;
  display: block;
  margin: auto;

  width: 8rem;
  height: 8rem;
}

@media screen and (min-width: 576px) {
  #org-logo {
    width: 10rem;
    height: 10rem;
  }
}

@media screen and (min-width: 768px) {
  #org-logo {
    width: 12.5rem;
    height: 12.5rem;
  }
}*/

.cursor-pointer {
  cursor: pointer;
}

/* Template */
.card {
  border-radius: 0.8rem !important;
}

/* Spacing */

.py-6 {
  padding-bottom: 2.5rem !important;
  padding-top: 2.5rem !important;
}

.mb-6 {
  margin-bottom: 2.5rem !important;
}

.mt-6 {
  margin-top: 2.5rem !important;
}

.mt-n5 {
  margin-top: -2rem !important;
}

.h-10rem {
  height: 10rem !important;
}

.min-h-10rem {
  min-height: 10rem !important;
}

/* Shapes */
.icon-shape {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}

.rounded {
  border-radius: 0.375rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-3 {
  border-radius: 0.8rem !important;
}

/* Extra large */
@media (min-width: 1200px) {
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }
}

/* Large */
@media (min-width: 992px) {
  .h-lg-32rem {
    height: 32rem !important;
  }

  .h-lg-30rem {
    height: 30rem !important;
  }

  .h-lg-28rem {
    height: 28rem !important;
  }

  .h-lg-26rem {
    height: 26rem !important;
  }

  .h-lg-24rem {
    height: 24rem !important;
  }

  .h-lg-22rem {
    height: 22rem !important;
  }

  .h-lg-20rem {
    height: 20rem !important;
  }

  .h-lg-18rem {
    height: 18rem !important;
  }

  .h-lg-16rem {
    height: 16rem !important;
  }

  .w-lg-40 {
    width: 40% !important;
  }
}
/* Medium */
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }

  #file-drop-area {
    width: 57rem !important;
  }
}

/* Small */
#file-drop-area {
  width: 100%;
}

/* Footer */
footer {
  color: var(--black);

  padding: 3.3rem 11.6rem;
}

footer {
  color: var(--black);
  padding: 3.3rem 11.6rem;
}

footer a {
  color: var(--blue-primary);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

footer a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--blue-primary);
  transition: width 0.5s ease, left 0.5s ease;
}

footer a:hover::after {
  width: 100%;
  left: 0;
}

