/* ========================= Pasco eSchool Maintains This Code ==========================

CSS Document

Last Updated by Gonzalo Paez (July 31, 2025)

/*

/* ==========  GOOGLE FONTS  ========== */

@import url("https://fonts.googleapis.com/css2?family=Finger+Paint&family=Joti+One&family=Kalam:wght@400;700&family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Press+Start+2P&display=swap");


/* FONT FAMILIES
font-family: 'Finger Paint', cursive;
font-family: 'Joti One', cursive;
font-family: 'Kalam', cursive;
font-family: 'Noto Serif', serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Press Start 2P', cursive;
*/

/* ==========  BRANDING COLORS (CSS variables)  ========== */

:root {
  --eschool-orange: #e37d3e;
  --eschool-red: #9c262a;
  --eschool-yellow: #e0b955;
  --pasco-blue: #254889;
  --pasco-green: #657f24;
  --pasco-orange: #d73f19;
}

/* ==========  COURSE TEMPLATES START HERE (MAIN THEME)  ========== */

.main {
  padding: 1.5%;
  color: #000;
  font-family: "Open Sans", sans-serif;
  background: #404040;
}

.inner {
  background: #fff;
  border-radius: 15px;
  padding: 3%;
  border: 1px solid #2e2e2e;
}

.main h2 {
  background: var(--eschool-red);
  padding: 3.2%;
  margin: -3.2% 0 0 -3.2%;
  font: 2.8rem "Noto Serif", serif;
  border-top-right-radius: 14px;
  border-top-left-radius: 14px;
  border-bottom: 1px solid #2e2e2e;
  text-align: center;
  width: 100%;
  color: #fff;
}

.main h3 {
  font: 1.8rem "Noto Serif", serif;
  color: var(--eschool-red);
  margin: 20px 0;
}

.main h4 {
  margin: 10px 0px;
  font: 1.5rem "Noto Serif", serif;
}

/* .main a.pasco-button {
  border: 1px solid #2e2e2e;
  background-color: var(--eschool-red);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 10px;
  font-weight: bold;
  display: inline-block;
  transition: all 0.5s;
}

.main a.pasco-button:hover {
  background-color: #333333;
  transform: scale(1.03);
} */

.main a.pasco-button {
  background-color: #9c262a;
  border: 0.1px solid black;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font: 18px "Open Sans Condensed";
  font-weight: bold;
  margin: 15px 0;
  padding: 5px 10px;
  text-decoration: none;
  transition: background-color 200ms ease-in-out, transform 200ms ease-in-out;
}

.main a.pasco-button:hover,
.main a.pasco-button:focus {
  background-color: #333333;
  color: #fff;
  transform: scale(1.03);
}

@media (max-width: 400px) {
  .main a.pasco-button,
  .main a.pasco-button:hover,
  .main a.pasco-button:focus {
    font-size: 16px;
    padding: 3px 6px;
  }
}

/* ==========  eSCHOOLHOME THEME  ========== */

.eschool {
  background-color: #f5f5f5;
  background-image: linear-gradient(
      30deg,
      #d5d5d5 12%,
      transparent 12.5%,
      transparent 87%,
      #d5d5d5 87.5%,
      #d5d5d5
    ),
    linear-gradient(
      150deg,
      #d5d5d5 12%,
      transparent 12.5%,
      transparent 87%,
      #d5d5d5 87.5%,
      #d5d5d5
    ),
    linear-gradient(
      30deg,
      #d5d5d5 12%,
      transparent 12.5%,
      transparent 87%,
      #d5d5d5 87.5%,
      #d5d5d5
    ),
    linear-gradient(
      150deg,
      #d5d5d5 12%,
      transparent 12.5%,
      transparent 87%,
      #d5d5d5 87.5%,
      #d5d5d5
    ),
    linear-gradient(
      60deg,
      #e5e5e5 25%,
      transparent 25.5%,
      transparent 75%,
      #e5e5e5 75%,
      #e5e5e5
    ),
    linear-gradient(
      60deg,
      #e5e5e5 25%,
      transparent 25.5%,
      transparent 75%,
      #e5e5e5 75%,
      #e5e5e5
    );
  background-size: 30px 52.5px;
  background-position: 0 0, 0 0, 15px 26.25px, 15px 26.25px, 0 0, 15px 26.25px;
}

.eschool .inner {
  border-color: #9e9d9d;
}

.eschool h2 {
  border-bottom-color: #9e9d9d;
}

.eschool h3 {
  background: #fcf9ed;
  border: 1px solid #dfb954;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.eschool h4 {
  border-bottom: 3px solid #dfb954;
  padding: 3px;
}

/* ==========  SPACE THEME  ========== */

.space {
  background: #03020f;
  background: repeating-radial-gradient(#000, #1e012e, #03020f, #3b3b42 40px);
}

.space h2 {
  background: #4b0773;
  border-bottom: 1px solid rgb(20, 19, 19);
  font-weight: 400;
  color: #fff;
}

.space h3 {
  background: #fcf9ed;
  color: #4b0773;
  border: 1px solid #735112;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.space h4 {
  border-bottom: 3px solid #735112;
  padding: 3px;
}

/* ==========  RAINBOW THEME  ========== */

.rainbow {
  background: #96d3e8;
  background: repeating-radial-gradient(
    #e0f1f8,
    #bee2ee,
    #96d3e8,
    #67c4e0 30px
  );
  font-size: 1.15rem;
}

.rainbow .inner {
  background: #fff repeat-x bottom left
    url("https://www.pasco.k12.fl.us/canvas/themes/pasco-fun-rainbow/inner-bg.png");
  padding-bottom: 150px;
  border-color: #40b1d3;
}

.rainbow h2 {
  background: repeat-x top center
    url("https://www.pasco.k12.fl.us/canvas/themes/pasco-fun-rainbow/h2-bg.png");
  padding-top: 80px;
  font: 3.5rem "Finger Paint", cursive;
  color: #2f6312;
  border-bottom: none;
}

.rainbow h3 {
  background: #0356b0;
  font-family: "Finger Paint", cursive;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #056dea;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  padding: 8px 10px;
}

.rainbow h4 {
  background: #ffffff;
  font-family: "Finger Paint", cursive;
  color: #2f6312;
  font-style: italic;
  border: 3px solid #2f6312;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  padding: 6px;
}

/* ==========  BLACKBOARD THEME  ========== */

.blackboard {
  background: linear-gradient(
      180deg,
      rgba(255, 225, 132, 0.7) 50%,
      rgba(255, 255, 255, 0) 50%
    ),
    linear-gradient(
      180deg,
      rgba(32, 113, 120, 0.3) 50%,
      rgba(255, 255, 255, 0) 50%
    ),
    linear-gradient(
      180deg,
      rgba(255, 150, 102, 0.3) 50%,
      rgba(255, 255, 255, 0) 50%
    ),
    linear-gradient(
      180deg,
      rgba(23, 76, 79, 0.1) 50%,
      rgba(255, 255, 255, 0) 50%
    );
  background-size: 7em 7em, 5em 5em, 3em 3em, 1em 1em;
  background-color: #f5e9be;
}

.blackboard h2 {
  background: #5d5c59;
  background: radial-gradient(#333230, #5d5c59);
  border-bottom: 1px solid rgb(20, 19, 19);
  font: 3.5rem "Kalam", cursive;
}

.blackboard h3 {
  font-family: "Kalam", cursive;
  color: #2983c4;
  margin: 0.8rem 0;
  text-transform: uppercase;
}

.blackboard h4 {
  font-family: "Kalam", cursive;
  border-bottom: 4px double #2f88c8;
  color: #db1111;
  text-transform: uppercase;
}

/* ==========  NINJA THEME  ========== */

.ninja {
  background: rgb(43, 40, 40);
  background: linear-gradient(315deg, transparent 75%, rgb(43, 40, 40) 0) -10px 0,
    linear-gradient(45deg, transparent 75%, rgb(43, 40, 40) 0) -10px 0,
    linear-gradient(135deg, rgb(27, 26, 26) 50%, transparent 0) 0 0,
    linear-gradient(45deg, rgb(17, 17, 17) 50%, #000 0) 0 0 #000;
  background-size: 20px 20px;
}

.ninja h2 {
  background: radial-gradient(
    rgb(102, 10, 10),
    rgb(139, 11, 11),
    rgb(148, 8, 8),
    rgb(170, 12, 12)
  );
  border-bottom: 1px solid rgb(43, 40, 40);
  font-family: "Joti One", cursive;
  padding-bottom: 5%;
}

.ninja h3 {
  background: rgb(12, 12, 12);
  font-family: "Joti One", cursive;
  color: #fff;
  border: 4px solid silver;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
}

.ninja h4 {
  font-family: "Joti One", cursive;
  color: var(--eschool-red);
  font-style: italic;
  border-bottom: 4px double black;
}

/* ==========  GRAPH THEME  ========== */

.graph {
  background: #137760;
  background: repeating-radial-gradient(#137760, #034737 40px);
}

.graph h2 {
  background: #f7f5e7;
  background-image: linear-gradient(#d4ebf6 2px, transparent 4px),
    linear-gradient(90deg, #d4ebf6 2px, transparent 4px),
    linear-gradient(#d4ebf6 1px, transparent 2px),
    linear-gradient(90deg, #d4ebf6 1px, #f7f5e7 2px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -4px -4px, -4px -4px, -2px -2px, -2px -2px;
  font: 3.5rem "Kalam", cursive;
  font-weight: 800;
  color: #255b47;
  border-bottom: 1px solid #d4ebf6;
}

.graph h3 {
  background: #034737;
  font-family: "Kalam", cursive;
  color: #fff;
  text-transform: uppercase;
  border: 3px solid #255b47;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  padding: 8px 10px 3px;
}

.graph h4 {
  font-family: "Kalam", cursive;
  text-transform: uppercase;
  color: #034737;
}

/* ==========  BLUE-STRIPES THEME  ========== */

.blue-stripes {
  background: #0bb9db75;
  background: repeating-linear-gradient(
    -45deg,
    #0bb9db75,
    #0bb9db 20px,
    #014c7c90 20px,
    #014c7c 40px
  );
}

.blue-stripes h2 {
  background: #165384;
  padding-bottom: 5%;
}

.blue-stripes h3 {
  background: #3998bf;
  color: #fff;
  border: 3px solid #0bb9db90;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  padding: 10px;
}

.blue-stripes h4 {
  color: #165384;
}

.blue-stripes a.pasco-button {
  background-color: #165384;
}

/* ==========  COMPOSITION THEME  ========== */

.composition {
  background-color: #000;
  background-image: repeating-radial-gradient(
      circle at 0em 0em,
      transparent,
      transparent 0.32em,
      #fff 0.53em,
      #fff 0.6em,
      transparent 0.61em,
      transparent 2em
    ),
    repeating-radial-gradient(
      circle at 0.5em 0.5em,
      transparent,
      transparent 0.32em,
      #fff 0.53em,
      #fff 0.6em,
      transparent 0.61em,
      transparent 2em
    );
  background-size: 10em 10em;
}

.composition .inner {
  background-color: #ffffff;
  background-size: 40px 40px;
  background-image: repeating-linear-gradient(
    0deg,
    #444cf710,
    #444cf710 2px,
    #e5e5f710 2px,
    #e5e5f710
  );
  border: 10px double #000;
}

.composition h2 {
  background: #fff;
  color: #000;
  border-bottom: 10px double #000;
}

.composition h3 {
  color: #000;
  border-bottom: 4px double #153d9a;
}

/* ==========  pe-field THEME  ========== */

.pe-field {
  background-color: #83a944;
  background-image: repeating-radial-gradient(
      circle at -0.83em 0.5em,
      transparent,
      transparent 0.28em,
      #6a912d 0.29em,
      #6a912d 0.33em,
      transparent 0.34em
    ),
    repeating-radial-gradient(
      circle at 0.5em 1.83em,
      transparent,
      transparent 0.28em,
      #a2c963 0.29em,
      #a2c963 0.33em,
      transparent 0.34em
    );
  background-size: 2em 2em;
}

.pe-field .inner {
  border-color: #66838f;
}

.pe-field h2 {
  background: #5d5c59;
  background: radial-gradient(#333230, #5d5c59);
  border-bottom: 1px solid #66838f;
  font: 3.5rem "Kalam", cursive;
}

.pe-field h3 {
  background: #ededed;
  font-family: "Kalam", cursive;
  color: #42591c;
  border: 1px solid #66838f;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  padding: 8px 10px 3px;
}

.pe-field h4 {
  font-family: "Kalam", cursive;
  color: #42591c;
}

/* ==========  SPAIN (SPANISH) THEME  ========== */

.spain {
  background-color: #c63e2a;
  background-image: repeating-radial-gradient(
      circle at 1.4em 1.4em,
      transparent,
      transparent 1.84em,
      #da9a66 1.88em,
      #da9a66 2em,
      transparent 2.04em,
      transparent 12em
    ),
    repeating-radial-gradient(
      circle at 2.6em 1.4em,
      transparent,
      transparent 1.84em,
      #da9a66 1.88em,
      #da9a66 2em,
      transparent 2.04em,
      transparent 12em
    ),
    repeating-radial-gradient(
      circle at 1.4em 2.6em,
      transparent,
      transparent 1.84em,
      #5f7e6c 1.88em,
      #5f7e6c 2em,
      transparent 2.04em,
      transparent 12em
    ),
    repeating-radial-gradient(
      circle at 2.6em 2.6em,
      transparent,
      transparent 1.84em,
      #5f7e6c 1.88em,
      #5f7e6c 2em,
      transparent 2.04em,
      transparent 12em
    ),
    repeating-radial-gradient(
      circle at 1.4em 1.4em,
      transparent,
      transparent 1.68em,
      #34424a 1.72em,
      #34424a 2em,
      transparent 2.04em,
      transparent 12em
    ),
    repeating-radial-gradient(
      circle at 2.6em 1.4em,
      transparent,
      transparent 1.68em,
      #34424a 1.72em,
      #34424a 2em,
      transparent 2.04em,
      transparent 12em
    ),
    repeating-radial-gradient(
      circle at 1.4em 2.6em,
      transparent,
      transparent 1.68em,
      #da9a66 1.72em,
      #da9a66 2em,
      transparent 2.04em,
      transparent 12em
    ),
    repeating-radial-gradient(
      circle at 2.6em 2.6em,
      transparent,
      transparent 1.68em,
      #35596f 1.72em,
      #35596f 2em,
      transparent 2.04em,
      transparent 12em
    );
  background-size: 4em 4em;
}

.spain .inner {
  border-color: #d99f6c;
}

.spain h2 {
  background: #bf5e49;
  border-bottom: 1px solid #d99f6c;
  padding-bottom: 4%;
}

.spain h3 {
  padding: 10px;
  background: #d99f6c;
  color: #000;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.spain h4 {
  padding: 8px 10px;
  background: #89a491;
  color: #000;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* ==========  GERMAN THEME  ========== */

.german {
  background: #000;
  background: linear-gradient(
    -10deg,
    #ffcc00,
    #ffcc00,
    #dd0000,
    #dd0000,
    #000,
    #000,
    #000
  );
}

.german .inner {
  border: 1px solid #1b7a71;
}

.german h2 {
  background: #1b7a7115;
  color: #1b7a71;
  border-bottom: 1px solid #1b7a71;
  padding-bottom: 4%;
}

.german h3 {
  color: #1b7a71;
}

.german h4 {
  color: #1b7a71;
}

/* ==========  ELEMENTARY THEME  ========== */

.elementary h2 {
  background: var(--eschool-red);
  padding: 8px;
  margin: 5px 0 25px;
  font: 2.2rem "Noto Serif", serif;
  border-radius: 10px;
  border-bottom: 1px solid #000;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  width: 95%;
  color: #fff;
}

.elementary h3 {
  font: 1.8rem "Noto Serif", serif;
  color: var(--eschool-red);
  margin: 20px 0;
}

.elementary h4 {
  margin: 10px 0px;
  font: 1.5rem "Noto Serif", serif;
}

/* ==========  RETRO THEME  ========== */

.retro {
  background: #447D9B;
  background-image: radial-gradient(#333 1px, transparent 1px), radial-gradient(#333 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: 0 0, 10px 10px;
}

.retro h2 {
  background: #292f33;
  /* border-bottom: 4px solid #273F4F; */
  font-family: 'Press Start 2P', cursive;
  color: #FFFFFF;
  text-shadow: 2px 2px 0px #FE7743;
  font-size: 2rem;
  text-transform: uppercase;
  padding-bottom: 20px;
  word-spacing: -0.4ch;
}

.retro h3 {
  background: #273F4F;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.2rem;
  color: #fff;
  border: 4px solid #fff;
  border-radius: 0;
  box-shadow: 5px 5px 0px #FE7743;
  padding: 15px;
  text-transform: uppercase;
  word-spacing: -0.4ch;
}

.retro h4 {
  font-family: 'Press Start 2P', cursive;
  font-size: 1rem;
  color: #273F4F;
  text-transform: uppercase;
  border-bottom: 4px dotted #FE7743;
  padding-bottom: 5px;
  margin: 20px 0 10px;
  word-spacing: -0.4ch;
}

/* ==========  DISTRICT THEMES  (in progress) ========== */

.district,
.dlp,
.eln,
.sln {
  background: var(--pasco-blue);
}

/* ====== GRID SYSTEM ====== */

.flex-wrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 10px;
}

@media (min-width: 1200px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-2x3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-2x4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-3x2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-3x4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-4x2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-4x3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-4x4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-5x2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-5x3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-5x4 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .grid-5x5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }

  .col-1 {
    grid-column: 1 / 2;
  }

  .col-12 {
    grid-column: 1 / 3;
  }

  .col-13 {
    grid-column: 1 / 4;
  }

  .col-14 {
    grid-column: 1 / 5;
  }

  .col-15 {
    grid-column: 1 / 6;
  }

  .col-2 {
    grid-column: 2 / 3;
  }

  .col-23 {
    grid-column: 2 / 4;
  }

  .col-24 {
    grid-column: 2 / 5;
  }

  .col-25 {
    grid-column: 2 / 6;
  }

  .col-3 {
    grid-column: 3 / 4;
  }

  .col-34 {
    grid-column: 3 / 5;
  }

  .col-35 {
    grid-column: 3 / 6;
  }

  .col-4 {
    grid-column: 4 / 5;
  }

  .col-45 {
    grid-column: 4 / 6;
  }

  .col-5 {
    grid-column: 5 / 6;
  }

  .row-1 {
    grid-row: 1 / 2;
  }

  .row-12 {
    grid-row: 1 / 3;
  }

  .row-13 {
    grid-row: 1 / 4;
  }

  .row-14 {
    grid-row: 1 / 5;
  }

  .row-15 {
    grid-row: 1 / 6;
  }

  .row-2 {
    grid-row: 2 / 3;
  }

  .row-23 {
    grid-row: 2 / 4;
  }

  .row-24 {
    grid-row: 2 / 5;
  }

  .row-25 {
    grid-row: 2 / 6;
  }

  .row-3 {
    grid-row: 3 / 4;
  }

  .row-34 {
    grid-row: 3 / 5;
  }

  .row-35 {
    grid-row: 3 / 6;
  }

  .row-4 {
    grid-row: 4 / 5;
  }

  .row-45 {
    grid-row: 4 / 6;
  }

  .row-5 {
    grid-row: 5 / 6;
  }

  .center {
    align-self: center;
  }

  .bottom {
    align-self: end;
  }
}

/* ====== SPECIAL COMPONENTS ====== */

/* Callout Box */

.callout-box {
  margin: 20px 10%;
  padding: 20px 20px 20px 30px;
  max-width: 1000px;
  box-shadow: 10px 10px 5px darkgray;
  height: fit-content;
  background: #f5f5f5;
  border: 1px solid #d3d3d3;
}

/* Rounded Edges */
.border-radius {
  border-radius: 10px;
}

/* Info for Screenreaders Only */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  top: auto;
  overflow: hidden;
}

/* Video Container */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1400px) {
  .video-container iframe,
  .video-container object,
  .video-container embed {
    width: 95%;
    height: 95%;
    padding-left: 20px;
    padding-top: 15px;
  }
}

@media (min-width: 1600px) {
  .video-container iframe,
  .video-container object,
  .video-container embed {
    width: 90%;
    height: 90%;
    padding-left: 60px;
    padding-top: 30px;
  }
}

@media (min-width: 1800px) {
  .video-container iframe,
  .video-container object,
  .video-container embed {
    width: 85%;
    height: 85%;
    padding-left: 80px;
    padding-top: 40px;
  }
}

/* Pasco Code Display Box */
.pasco-code {
  display: block;
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  margin: 10px 20px;
}

.pasco-code span.inner-text {
  color: #add8e6;
  font-weight: normal;
}

.pasco-code span.highlight {
  color: #ccff00;
}

/* Expands PDF iframe height - Michelle Lattke 2015 code:  https://community.canvaslms.com/t5/Developers-Group/Does-anyone-know-if-there-is-a-global-CSS-change-that-will-make/td-p/107872*/
.show-content span iframe {
  height: 1390px !important;
}

/* Course Homepages */

@media (min-width: 1300px) {
  .homepage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 30px;
    max-height: fit-content;
  }
}

#course-nav {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
  margin: 10px 0;
}

#course-nav a {
  text-decoration: none;
}

#course-nav a:hover {
  text-decoration: underline;
}

#teacher-photo {
  border-radius: 10px;
  border: 1px solid rgb(240, 240, 240);
  margin: 15px auto;
  display: block;
}

@media (min-width: 1299px) {
  #teacher-photo {
    float: right;
    margin-right: 30px;
  }
}

.teacher-info {
  font-size: 1.1rem;
}

.teacher-info ul {
  list-style: none;
  padding-inline-start: 0;
  line-height: 2em;
  margin: 0;
}

@media (max-width: 1299px) {
  .teacher-info {
    padding-left: 100px;
  }
}

@media (max-width: 1000px) {
  .teacher-info {
    padding-left: 60px;
  }
}

@media (max-width: 500px) {
  .teacher-info {
    padding-left: 20px;
    font-size: 1rem;
  }
}

 /* ENHANCEABLE TABS */
 
 #pasco-enhanceable-tabs {
  margin: 20px 0;
}

#pasco-enhanceable-tabs .tab-links {
  border-right: 1px solid #d9d9d9;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
}

#pasco-enhanceable-tabs .tab-links li {
  list-style: none;
  position: relative;
  top: 1px;
  max-width: 100%;
  white-space: nowrap;
  border: 1px solid #d9d9d9;
  border-width: 1px 0 1px 1px;
  background-color: #f1f1f1;
  line-height: 1.3;
  display: flex;
  justify-content: center;
}

#pasco-enhanceable-tabs .tab-links li:first-of-type {
  background-color: #fff;
  border-bottom: none;
  text-decoration: underline;
}

#pasco-enhanceable-tabs .tab-links li a {
  color: #000;
  padding: 10px 20px;
  text-shadow: none;
  text-decoration: none;
  font-weight: bold;
}

#pasco-enhanceable-tabs .tab-links li a:hover {
  text-decoration: underline;
}

#pasco-enhanceable-tabs .enhanceable-content {
  border: 1px solid #d9d9d9;
  padding: 8px 16px;
  display: none;
  background-color: #fff;
}

#pasco-enhanceable-tabs .enhanceable-content:first-of-type {
  display: block;
}

/*
------------------------------------------
----------SINGLE-PAGE APP STYLES----------
------------------------------------------
*/

#pasco-singlepage-app {
  margin: 20px 0;
}

#pasco-singlepage-app .singlepage-buttons {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
}

#pasco-singlepage-app .singlepage-buttons li {
  list-style: none;
  position: relative;
  margin: 5px;
  max-width: 100%;
  white-space: nowrap;
  border: 1px solid #d9d9d9;
  background-color: #f1f1f1;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  transition: all 500ms;
}

#pasco-singlepage-app .singlepage-buttons li a:hover {
  text-decoration: underline;
}

#pasco-singlepage-app .singlepage-buttons li a {
  color: #000;
  padding: 10px 20px;
  text-shadow: none;
  text-decoration: none;
  font-weight: bold;
}

#pasco-singlepage-app .singlepage-content {
  padding: 8px 16px;
  margin-left: auto;
  margin-right: auto;
  min-height: 400px;
  max-height: fit-content;
  display: none;
}

#pasco-singlepage-app .singlepage-content article {
  flex: 1;
}

#pasco-singlepage-app .singlepage-content:first-of-type {
  display: block;
}

#pasco-singlepage-app .singlepage-content iframe {
  max-width: 100%;
}

#pasco-singlepage-app .previous-section {
  cursor: pointer;
  width: 0;
  height: 0;
  margin: 0 15px 0 -30px;
  border-top: 25px solid transparent;
  border-right: 50px solid #f1f1f1;
  border-bottom: 25px solid transparent;
  transition: all 500ms;
  align-self: center;
}

#pasco-singlepage-app .next-section {
  cursor: pointer;
  width: 0;
  height: 0;
  margin: 0 -30px 0 15px;
  border-top: 25px solid transparent;
  border-left: 50px solid #f1f1f1;
  border-bottom: 25px solid transparent;
  transition: all 500ms;
  align-self: center;
}

#pasco-singlepage-app .previous-section:hover {
  border-right-color: #b3b3b3;
}

#pasco-singlepage-app .next-section:hover {
  border-left-color: #b3b3b3;
}

#pasco-singlepage-app .singlepage-container {
  display: flex;
}

#pasco-singlepage-app .singlepage-buttons li.selected {
  background-color: #c1c1c1;
  border: 1px solid #818181;
  text-decoration: underline;
}