::-webkit-scrollbar {
  width: 0.5em;
}

::-webkit-scrollbar-track {
  border: none;
}

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 50px;
}

html,
body {
  margin: 0px;
}

body {
  background-image: url("../imgs/DES-background1.jpg");
  background-repeat: repeat-y;
  background-position: center;
  background-size: cover;
  height: 100vh;
}

p {
  margin: 0px;
  padding: 0;
}

h1 {
  color: white;
  text-align: center;
  margin: 0px;
  font-weight: 900;
}

h2 {
  color: white;
  text-align: center;
  margin: 0px;
  font-weight: 900;
  line-height: 1.2;
}

h3 {
  color: white;
  text-align: center;
  margin: 0px;
  font-size: 1.6em;
  font-weight: 900;
}

h4 {
  margin: 0.4rem 0;
}

button {
  font-family: inherit;
  border: 0;
  padding: 0;
  border-radius: 0 !important;
  margin: 0;
  display: flex !important;
  flex-direction: column;
}

ol {
  padding-right: 30px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

input:focus-visible {
  outline: 2px solid var(--qm-darkOrange);
  outline: 2px auto -webkit-focus-ring-color;
  outline-offset: 2px;
}

input:focus {
  outline-color: transparent;
}

.slide {
  position: relative;
  top: 3rem;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.2);
}

.main-heading {
  display: inline;
}

.filter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1.2em;
}

.filter-heading {
  margin: 1rem;
  font-size: 1.3em;
  color: white;
}

.flex-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  max-height: 512px;
  overflow: auto;
  padding-top: 12px;
}
.flex-container::-webkit-scrollbar {
  width: 13px;
  height: 13px;
  box-shadow: 2 2px 2px black;
}
.flex-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100vw;
}
.flex-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.75);
}
.flex-container::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 255, 255);
}

@supports (scrollbar-color: white) {
  * {
    scrollbar-color: white;
    scrollbar-width: thin;
  }
}
.item-title {
  color: var(--non-black);
}

.libraryItems {
  width: 250px;
  height: 210px;
  margin-bottom: 1.5rem;
  padding: 5px 5px 0 5px;
  background-repeat: no-repeat;
  background-size: 145px auto;
  background-position: center 6px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 9px solid rgba(255, 255, 255, 0.3);
  border-radius: 15%;
  border-style: outset;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all 0.6s ease-in-out;
  /*flex: 0 1 250px;*/
}

.libraryItems:hover {
  scale: 1.1;
  box-shadow: 8px 6px 13px rgba(0, 0, 0, 0.5);
}

.libraryItems::after {
  content: "";
  display: block;
  position: relative;
  right: 5%;
  top: -99%;
  opacity: 6;
  border-radius: 0 0 30% 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(42deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.1) 35%, rgba(255, 255, 255, 0.4) 55%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 81%, rgba(255, 255, 255, 0) 100%);
  width: 3%;
  height: 45%;
  transition: opacity 0s ease-out 0.29s, width 0.15s ease-out 0.3s, height 0.15s ease-out 0.3s, top 0.15s ease-out 0.3s;
}

.libraryItems:hover:after {
  top: -45%;
  opacity: 0.9;
}

@keyframes hover-rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(45deg);
  }
}
.btn-cover, .mt-offset {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.itemLink, .btn-cover, .mt-offset {
  text-decoration: none;
  color: #141415;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  transition: all 0.5s ease-in-out;
}

.mt-offset {
  height: 100%;
  text-align: center;
}

.btn-cover {
  width: 100%;
  height: 100%;
  align-items: center;
}

.btn-cover {
  background: transparent;
}

.btn-cover:hover {
  cursor: pointer;
}

.itemLink:hover, .btn-close:hover {
  color: var(--qm-darkOrange);
  font-size: 1.25rem;
}

p.itemLink:hover, .inactive:hover {
  cursor: not-allowed;
}

.regular {
  font-weight: 300;
}

.tb {
  display: table;
}

.td {
  display: table-cell;
}

.clear-fix {
  clear: both;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
}

.videos {
  text-align: center;
}

.video--responsive {
  display: block;
  margin: auto;
}

.flex--space-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.text-padding {
  padding: 0.2rem 0.5rem;
}

.white-transp {
  background-color: rgba(255, 255, 255, 0.8);
}

.bgGrey {
  background-color: var(--web-bg);
  color: var(--non-black) !important;
}

.bgPic {
  background-size: cover;
}

.bgBlack a {
  color: #fff !important;
  text-decoration: underline;
}

.relative {
  position: relative !important;
}

.main-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.main-contents {
  width: 100%;
  max-width: 1250px;
  height: 75%;
  margin: auto;
  /* overflow: hidden; */
}

.main-header {
  display: flex;
  width: 100%;
  height: 8rem;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.qmulLogo {
  margin: 1.2rem 3rem;
}

.spacer {
  width: 390px;
  height: 1px;
}

#app {
  display: none;
  width: 100%;
  height: 100%;
  position: relative;
}

.textInput {
  padding: 7px;
  border-radius: 14px;
  border: none;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 2px 2px grey;
}
.textInput:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.input-btn {
  padding: 7px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.6);
}

.input-btn:hover {
  cursor: pointer;
}

.input-btn:active {
  box-shadow: none;
}

.btn-close {
  background: none;
  float: right;
  position: relative;
  right: 37px;
  top: 20px;
  padding: 5px;
  color: var(--non-black);
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.btn-close:hover {
  opacity: 0.7;
}

.btn-close i {
  font-size: 22px;
}
.bgBlack .btn-close i, .bgDESprimary .btn-close i {
  color: #fff;
}

.inner-content {
  margin: 10px 20px;
  position: relative;
}
.inner-content .sub-heading {
  margin: 0;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.modal {
  height: 500px;
  width: 600px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 9px solid rgba(255, 255, 255, 0.3);
  border-radius: 15%;
  border-style: outset;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  opacity: 1;
  transform: scale(1);
  transition: all 0.6s ease-in-out;
}
@starting-style {
  .modal {
    opacity: 0;
    transform: scale(0.8);
  }
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  background-repeat: no-repeat;
  background-size: 45% auto;
  background-position: center 22%;
  height: 100%;
  max-height: 450px;
  width: 80%;
  padding: 1em 0;
  border-radius: 5px;
}

.inline-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 1rem 0;
}

.item-thumb {
  width: 100%;
  min-width: 120px;
  max-height: 230px;
}

.interactiveThumb {
  width: 40%;
}

.iFrame-container {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

.item-description {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
}

.item-build-time {
  margin: 0.4rem 0;
}

#rangeHeading {
  width: 70%;
  margin: 0 15%;
}

.calculate-legend {
  display: none;
}

.calculate-legend, .slider-prompt {
  position: absolute;
  width: 100%;
  top: 5.3rem;
}

.interactives, .videos {
  opacity: 0;
  display: none;
}

#app:has(#intCheck:checked) .interactives,
#app:has(#vidCheck:checked) .videos {
  opacity: 1;
  display: block;
}

.searchHide {
  display: none !important;
}

.range-container {
  position: relative;
  top: 4rem;
  height: 9rem;
  width: 100%;
}

input[type=checkbox].toggle {
  opacity: 0;
  position: absolute;
}

input[type=checkbox].toggle + label {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
}

input[type=checkbox].toggle + label::before {
  content: "";
  width: 2.8em;
  height: 1.2em;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 1.2em;
  margin-right: 1em;
  transition: background-color 200ms ease-in-out;
}

input[type=checkbox].toggle + label::after {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  font-size: 0.8em;
  height: 0.9em;
  left: 0;
  width: 1.8em;
  height: 1.8em;
  background: white;
  color: white;
  border-radius: 1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  transition: background-color 200ms ease-in-out, transform 200ms ease-in-out;
}

input[type=checkbox].toggle:checked + label::before {
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 2px 2px grey;
}

input[type=checkbox].toggle:checked + label::after {
  content: "";
  transform: translateX(100%);
}

input[type=checkbox].toggle:disabled + label {
  color: #777;
}

input[type=checkbox].toggle:disabled + label::before {
  background-color: #CCC;
}

input[type=checkbox].toggle:disabled + label::after {
  background-color: #777;
}

input[type=range] {
  box-sizing: border-box;
  display: block;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  margin: 0 auto;
  padding: 0 2px;
  /* Add some L/R padding to ensure box shadow of handle is shown */
  width: 100%;
  height: 25px;
  overflow: hidden;
  border: 0;
  border-radius: 1px;
  outline: none;
  background: linear-gradient(var(--qm-darkOrange), var(--qm-darkOrange)) no-repeat center;
  /* Use a linear gradient to generate only the 2px height background */
  background-size: 100% 2px;
  pointer-events: none;
  position: absolute;
}

input[type=range]:last-of-type {
  background: linear-gradient(transparent, transparent) no-repeat center;
}

input[type=range]:active,
input[type=range]:focus {
  outline: none;
}

.multi-range {
  position: absolute;
  height: 30px;
  width: 80%;
  margin: 30px auto 0px;
  display: block;
  top: 2rem;
  left: 10%;
}

input[type=range]::-webkit-slider-thumb {
  height: 25px;
  width: 25px;
  border-radius: 25px;
  background: var(--qm-darkOrange);
  position: relative;
  margin: 5px 0;
  /* Add some margin to ensure box shadow is shown */
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--qm-darkOrange);
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  pointer-events: all;
}

.rs-label {
  position: absolute;
  left: -16px;
  top: -54px;
  transform-origin: center center;
  display: inline-block;
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  line-height: 40px !important;
  text-align: center;
  font-weight: bold;
  box-sizing: border-box;
  border: 2px solid var(--qm-darkOrange);
  margin: -20px 0 0;
  padding: 6px;
  color: white;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  font-size: 30px;
}

.rs-label::after {
  content: "";
  display: none;
  font-size: 20px;
  letter-spacing: 0.07em;
  margin-top: -2px;
}

#rs-bullet2 {
  left: 95%;
}

.opacity {
  opacity: 0.6;
}

@media (max-width: 640px) {
  body {
    background-image: url(../imgs/DES-background_mob.jpg);
  }
  h1 {
    font-size: 2.2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.2em;
  }
  .main-container {
    width: 100%;
    max-width: 100%;
  }
  .main-header {
    height: 12rem;
    flex-direction: column;
  }
  .qmulLogo {
    margin: 1.2rem 1rem;
  }
  .search-box {
    float: none;
    width: 44%;
    margin: 0 auto;
  }
  #rangeHeading {
    width: 58%;
    margin: 0 25%;
  }
  .calculate-legend {
    width: 95%;
    top: 5.5rem;
  }
  .modal {
    height: -moz-fit-content;
    height: fit-content;
  }
  .item-title {
    margin-top: 1.5rem;
  }
  .item-thumb {
    display: none;
  }
  .btn-close {
    top: 16px;
  }
  .btn-close i {
    font-size: 32px;
  }
}/*# sourceMappingURL=app.css.map */