@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Book.otf);
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Bold.otf);
  font-weight: bold;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Thin.otf);
  font-weight: 100;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-XLight.otf);
  font-weight: 200;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Light.otf);
  font-weight: 300;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Book.otf);
  font-weight: 400;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Medium.otf);
  font-weight: 500;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Bold.otf);
  font-weight: 600;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Bold.otf);
  font-weight: 700;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Black.otf);
  font-weight: 800;
}
@font-face {
  font-family: GothamNarrow;
  src: url(/Content/LTS/fonts/GothamNarrow-Ultra.otf);
  font-weight: 900;
}

:root {
  --subtleShadow: 0px 3px 10px 0 rgb(0 20 137 / 25%);
  --textShadow: 0px 2px 2px white;
  --killian: #243D84; /* Dark Blue */
  --ice: #8BD7F8; /* Light Blue */
  --biellmann: #201747; /* Dark */
  --cherry-flipz: #DA291C; /* Red */
}

body {
  font-family: GothamNarrow;
  background-image: url('/Content/LTS/Images/LTSRebrand_Patterns_Skates-LightBlue.png');
  background-size: cover;
  background-attachment: fixed;
  max-width: 100vw;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto; /* Header, Content, Footer */
}

body#lts-login-body {
  grid-template-rows: 1fr auto;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  font-style: italic;
  color: var(--killian);
  margin-top: 0;
  margin-bottom: .25em;
  text-shadow: var(--textShadow);
}

hr {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 0;
  margin-right: 0;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.flex-space-between {
  justify-content: space-between;
}

.btn, .k-button {
  box-shadow: var(--subtleShadow);
  font-weight: bold;
}
.btn-primary {
  background-color: var(--killian);
  color: white;
  border-color: var(--killian);
  transition: background-color 50ms ease-in-out;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:disabled {
  background-color: var(--ice);
  border-color: var(--killian);
  color: var(--killian);
  transition: background-color 50ms ease-in;
}
.btn-primary i {
  color: white;
}
.k-button {
  font-weight: bold;
}
.btn-group {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

/* Inputs / Form Fields */

.k-dropdown {
  height: 33px;
}

.input-note {
  color: #ccc;
}

.field-validation-error {
  color: var(--cherry-flipz);
}

.row {
  margin-bottom: 1em;
}

.actionButtonRow {
  display: flex;
  gap: 1em;
}
.actionButtonRow > :first-child {
  flex: 4;
}
.actionButtonRow > :not(:first-child) {
  flex: 1;
}

.panel {
  max-width: 100vw;
}

/* Icons */
.iconWithLabelButton i {
  margin-right: .25em;
}
.material-icons {
  color: var(--killian);
}

/* Sidebar */
.sidebar {
  width: 100%;
  min-height: 300px;
  position: initial;
  margin-left: 10px;
  margin-top: 10px;
  padding: 10px;
  background-image: url('/Content/LTS/Images/LTSRebrand_Patterns_Geometric-Blue.png');
  box-shadow:1px 1px 8px #666;
  border-radius: 5px;
  z-index: 9000;
}
#sidebar {
  background: url('/Content/LTS/Images/LTSRebrand_Patterns_Geometric-Blue.png');
  background-size: 1000px;
  box-shadow: 0px 10px 1em .25em var(--biellmann);
  transition: all 100ms ease-in-out;
}
#sidebar a.article {
  background-color: var(--ice);
  color: var(--killian);
  border-color: var(--killian);
  box-shadow: var(--subtleShadow);
  font-weight: bold;
}
#sidebar a.article:hover {
  background-color: white;
  border-color: var(--ice);
  color: var(--killian);
}
#sidebar ul li > a {
  color: white;
}
#sidebar ul li.active > a {
  background: white;
  color: var(--killian);
  font-weight: bold;
}
#sidebar ul li.active > a::before {
  content: "▶ ";
}
#sidebar ul li a:hover {
  background: white;
  color: var(--killian);
  font-weight: bold;
}
#sidebar ul li ul {
  border-bottom: 1px solid white;
}
#sidebar .sub-active {
  color: var(--killian);
  background: var(--ice);
}
#sidebar .sub-active a.dropdown-toggle {
  color: var(--killian);
  font-weight: bold;
}
#sidebar .sidebar-header {
  background: var(--killian);
  margin-top: 1.1em;
}
#sidebar .sidebar-header #dismiss {
  background: var(--ice);
  color: var(--killian);
}
#sidebar .sidebar-header #dismiss:hover {
  background: white;
}
#sidebar a[aria-expanded="true"] {
  color: var(--biellmann);
  background: var(--ice);
}
#sidebar ul ul a {
  background: var(--biellmann);
  color: white;
}
#sidebar #programDropdown {
  padding: .5em;
  color: var(--killian);
  background: white;
}

.navbar-lts {
    background-image: url('/Content/LTS/Images/LTSRebrand_Patterns_Geometric-Blue.png');
    background-size: cover;
    box-shadow: var(--subtleShadow);
    border-bottom: 2px solid white;
    padding-bottom: .5em;
    padding-top: .5em;
    z-index: 1001;
}

#sidebarToggle {
  border-color: white;
}

#sidebarToggle .material-icons {
  color: white;
}

footer {
  flex-wrap: wrap;
  padding: 1em;
  background-image: url('/Content/LTS/Images/LTSRebrand_Patterns_Geometric-Blue.png');
  background-size: cover;
  border-top: 2px solid white;
  display: flex;
  justify-content: space-between;
  height: unset;
  min-height: 80px;
}
footer.footer-sticky {
  display: unset;
}

#mainContentContainer {
  margin-left: 2em;
  margin-right: 2em;
  width: 100%;
}

#tabstrip-1 {
  margin: 0;
}

/* Panels */
.panel {
  box-shadow: var(--subtleShadow);
  border: #C1C6C8 1px solid;
  background: white;
}
.panel-body {
  padding: 1em;
}
.panel-body:has(.panel-body) {
  background: linear-gradient(white, rgba(255, 255, 255, 0.5)), url("/Content/LTS/Images/iceSkatingTexture.jpg") center center/cover;
}
.panel-primary > .panel-heading {
  background-color: var(--killian);
  background-image: url('/Content/LTS/Images/LTSRebrand_Patterns_Geometric-Blue.png');
  background-size: 100%;
  color: white;
  text-shadow: unset;
  padding-top: 1em;
  padding-bottom: 1em;
}
.panel-primary > .panel-heading .panel-title {
  text-shadow: unset;
}
.panel-primary > .panel-heading h5 {
  color: white;
  text-shadow: unset;
}
.panel-heading h4 {
  margin-top: .5em;
}
.subPanelHeading {
  padding-top: 1em;
  padding-bottom: 1em;
}

#overlay_form {
  box-shadow: var(--subtleShadow);
}

/* Grids */
.k-grid-header th.k-header {
  font-weight: bold;
  color: var(--biellmann);
}
.k-multicheck-wrap .k-item .k-label input {
  margin-right: .25em;
}

/* Login */
.lts-login-panel {
  max-width:530px;
  margin:0px auto;
  margin-top: 2em;
}
.ltsLogo {
  margin-bottom: 1em;
}
.loginIntro {
  text-align: center;
}
#login-btn {
  width: 100%;
}
.loginForgotRow {
  text-align: center;
}
.loginMessageRow:has(#login-msg:empty) {
  display: none;
}

/* Index Page */
.introHeader {
  margin-top: 0;
  margin-right: .5em;
}
.endorsedByLabel {
  margin-top: 0;
}
.endorsementsLogoHolder {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.endorsementsLogo {
  align-self: center;
}
.endorsementsLogo.usfsLogo {
  width: 132px;
}
.introHeaderRow {
  display: flex;
  flex-wrap: wrap;
}
.indexMemberButtons .iconWithLabelButton {
  margin-right: .5em;
  margin-Bottom: .5em;
}
.iconWithLabelButton:last-child {
  margin-right: 0;
}
.v1-video-frame, .v2-video-frame {
  border: 2px solid var(--killian);
  aspect-ratio: 4/2.25;
}
.magazine-frame {
  width: 100%;
  min-height: 335px;
  border: 2px solid var(--killian);
}
@media (min-width: 778px) {
  .magazine-frame {
      height: 500px;
  }
}
@media (min-width: 778px) {
  .magazine-frame {
      height: 500px;
  }
}
@media (min-width: 992px) {
  .magazine-frame {
      height: 750px;
  }
}
@media (min-width: 1200px) {
  .magazine-frame {
      height: 1000px;
  }
}
@media (min-width: 1750px) {
  .magazine-frame {
      height: 1250px;
  }
}

/* Instructor Resources Page */
.resourceSection .header,
.newsLetterResourceSection {
  background-image: url('/Content/LTS/Images/LTSRebrand_Patterns_Geometric-Blue.png');
  background-size: 100%;
  height: unset;
  padding: 1em;
}
.newsLetterResourceSection .header {
  padding: unset;
}

/* Badges */
.curriculumBadge,
.inventoryBadge,
.funAndGamesBadge {
  padding: 1em;
  box-shadow: var(--subtleShadow);
  transition: transform 100ms ease-in;
}
.curriculumBadge:hover,
.inventoryBadge:hover,
.funAndGamesBadge:hover {
  transform: scale(1.05);
}

.inventoryBadgeDescription {
  margin-top: 1em;
  line-height: 1;
}

.badgeImg {
  width: 100%;
  height: 100%;
}

/* Notification Management */
.generic_note_holder {
  background: linear-gradient(white, rgba(255, 255, 255, 0.5)), url("/Content/LTS/Images/iceSkatingTexture.jpg") center center/cover;
  margin: 1em;
}
