.strong,
.h3 {
  font-weight: bold;
}

/* LAYOUT */

.section {
  display: flex;
  border-color: light-dark(var(--color3), var(--color3));
  border-width: 0.15rem;
  border-style: solid;
  margin: 0.15rem;
}

/* LINKS */

/* FORM ELEMENTS */

.disabledBtn,
input[type="number"]:disabled {
  background-color: rgb(193, 189, 194);
  border: 2px solid grey;
  cursor: not-allowed;
}

/* others */


.text {
  padding: 1rem;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#specials a:link {
  color: light-dark(var(--color1), var(--color5));
  font-weight: 600;
  text-decoration: underline light-dark(var(--color3), var(--color3)) solid 0.05rem;
}

#specials a:visited {
  color: light-dark(var(--color3), var(--color3));
  font-weight: 500;
  text-decoration: underline light-dark(var(--color2), var(--color4)) solid 0.05rem;
}

.biggerFont {
  font-size: 1.3rem;
}

#inputs {
  border: 1px dashed light-dark(var(--color3), var(--color3));
  border-radius: 1rem;
  padding: 1rem;
}

.grid-container {
  height: 100%;
  display: grid;
}

/* .samplePicturesDiv {
  text-align: center;
  width: fit-content;
  min-width: 40%;
} */

#DDhatCowl,
#DQcowl {
  float: left;
  width: 350px;
}

.panelText {
  min-height: max-content;
  display: inline-block;
  margin: 0.25rem auto;
  padding: 0.25rem;
}

iframe {
  max-width: 90vw;
  aspect-ratio: 9/16;
}

.videoPanel, .video-wrapper {
  display: flex;
  justify-content: center;
}

/* MEDIA QUERIES */

@media screen and (max-width: 500px) {
  /* Smartphone */

}

@media screen and (min-width: 776px) and (max-width: 976px) {
  /* BIG Tablet */
  .section {
    flex-wrap: wrap;
    flex-direction: column;
    margin-top: 0.25rem;
  }
}

@media screen and (min-width: 977px) and (max-width: 1028px) {
  /* Desktop */
  .section {
    flex-wrap: nowrap;
    margin-top: 0.25rem;
  }
}

@media screen and (min-width: 1029px) and (max-width: 1800px) {
  /* Big screen */
  h4 {
    font-size: 1.3rem;
  }
}

@media screen and (max-device-width: 650px) {
  .samplePicturesDiv {
    width: 100%;
    max-width: 100vw;
    text-align: center;
  }
  .samplePicturesDiv {
    max-width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
}

@media screen and (min-width: 1000px) {
  .samplePicturesDiv {
    min-height: 100%;
    height: 450px;
    min-width: 30%;
    max-height: 50vh;
  }
}
