body *{
  outline: none;
}

.banner { 
  position: fixed;
  width: 100%;
  height: 60px;
  z-index: 2;
}
.header-container {
  position: relative;
}

.menu-button {
  position: absolute;
  right: 35px;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  z-index: 4;
  
}
@media only screen and (max-width: 820px) {
  .menu-button {
    right: 15px;
  }
}
.menu-icon {
  display: inline-block;
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.menu-icon,
.menu-icon:before,
.menu-icon:after {
  width: 35px;
  height: 5px;
  border-radius: 5px;
  background-color: white;
  display: inline-block;
}

.menu-icon:before,
.menu-icon:after {
  content: "";
  position: absolute;
  left: 0;
  transform: translate(0,0);
  transition: all 0.8s;
}

.menu-icon:before {
  top: -12px;
}
.menu-icon:after {
  top: 12px;
}
@media only screen and (max-width: 820px) {
  .menu-icon {
    right: 15px;
  }
}
.menu-icon:first-child {
  transform-origin: 0% 0%;
}

.menu-icon:nth-last-child(2) {
  transform-origin: 0% 100%;
}
.menu-button:checked ~ .menu-icon:before {
  top: 0;
  transform: rotate(135deg);
}

.menu-button:checked ~ .menu-icon:after {
  top: 0;
  transform: rotate(-135deg);
}

.menu-button:checked ~ .menu-icon {
  background-color: transparent;
}
.menu-button:checked ~ .navigation-bar {
  right: 0;
}
.navigation-bar {
  display: flex;
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 400px;
  list-style: none;
  transition: all 0.8s;
}
ul {
  margin: 0;
}

@media only screen and (max-width: 820px) {
  .navigation-bar {
    width: 200px;
    position: fixed;
    flex-direction: column;
    top: 0;
    right: -200px;
    bottom: 0;
    left: auto;
    transform: none;
    text-align: right;
    padding-top: 100px;
  }
}
.navigation-bar li {
  margin-right: 30px;
  font-weight: 500;
  font-size: 12px;
}

  
@media only screen and (max-width: 820px) {
  .navigation-bar li {
    margin: 0 35px 35px 0;
  } 
}

a {
  text-decoration: underline;
  color: blue;
  cursor: pointer;
}
a:visited {
  color: blue;
}

.active-link {
  text-decoration: underline;
  color: blue;
  border-bottom: 2px solid white;
}

#videos {
  margin: 0;
  padding-top: 60px;
}

#grads {
  justify-content: center;
}

.columns {
  justify-content: center;
}

.card {
  /* padding: 0.5em; */
  border: none;
  width: 257px;
  border-radius: 15px;
  overflow: hidden;
  margin: 10px;
  padding: 0;
  transition: all 0.3s linear;
}
.card:hover {
  transform: scale(1.08);
  /* width: 400px; */
}

.card:hover .card-title {
  opacity: 0;
}

.card:hover .grad-name {
  opacity: 1;
}
.card:hover .grad-subject {
  opacity: 1;
}

.card-header {
  padding: 0!important;
}

#grads_area {
  margin-top: 2em;
  overflow-y: auto;
}

.gradlink .card-title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 1;
  font-size: 15px;
}

.grad-name {
  position: absolute;
  top: 23px;
  left: 25px;
  color: white;
  font-size: 17px;
  opacity: 0;
  transition: all 0.3s linear;
  z-index: 2;
}
.grad-subject {
  position: absolute;
  top: 50px;
  left: 25px;
  color: white;
  font-size: 13px;
  font-weight: 300;
  opacity: 0;
  transition: all 0.3s linear;
  z-index: 2;
}

#SchoolColors {
  height: 60px;

}
#SchoolColor1 {
  display: block;
  height: 30px;
}

#SchoolColor2 {
  display: block;
  height: 30px;
}

#LogoBg {
  height: 60px;
  left: 0px;
  top: 0px;
  position: absolute;
}

#LeftWhite {
  background: white;
  height: 60px;
  float: left;
  text-align: center;
  width: 250px;
  padding-top: 12px;
}
@media only screen and (max-width: 400px) {
  #LeftWhite {
    width: auto;
  }
  #LeftWhite {
    padding-right: 15px;
    padding-left: 15px;
  }
}
#LeftWhite img {
  height: 95%;
}

.container {
  /* margin-top: 3em; */
}

#schoolwelcome {
  text-align: center;
  padding: 0 50px;
}

#schoolwelcome h3 {
  font-size: 19px!important;
}

#schoollogo img {
  width: 200px;
  margin: 0 auto;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media only screen and (max-width: 500px) {
  #schoollogo img {
    width: 300px;
  }
}

.card-image {
  /* padding: 2em; */
  position: relative;
  padding: 0;
}

.overlay-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
}

.modal-container {
  border-radius: 10px;
  overflow-y: hidden;
  /* max-width: 650px!important; */
}

.modal-body {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  overflow-y: hidden;
  width: 60%;
}
@media only screen and (max-width: 500px) {
  .modal-body {
    width: 100%;
    padding: auto 10px;
  }
}
@media only screen and (max-width: 500px) {
  .modal-footer {
    padding: .8rem 0!important;
  }
}

audio {
  border-radius: 10px;
  max-height: 32px;
  /* max-width: 85%; */
  width: 220px;
}
@media only screen and (max-width: 500px) {
  audio {
    width: 200px;
  }
}

#detail-control-farleft {
  text-align: left;
}

#detail-control-midright {
  height: 50px;
  display: inline-flex;
}

a.social {
  margin-right: 0.5em;
}

#video {
  padding-top: 1em;
  display: inline-flex;
  pointer-events: none;
  width: 80%;
  min-width: 300px;
  max-width: 600px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

#video iframe {
  margin: 0 auto;
  pointer-events: auto;
  width: 100%;
}

.video_thumb > table {
  background: white;
}

.speaker_title {
  font-size: 10px;
  font-style: normal;
}

.accordion-header h3 {
  margin: 0;
}

.accordion-header h3 {
  display: block;
  text-align: left;
  /* margin-bottom: 30px; */
}

@media only screen and (max-width: 500px) {
  .accordion-header h3 {
    font-size: 21px;
    margin-right: 15px;
  }
}

div#message {
  margin: 0 auto;
  padding: 2em auto;
  text-align: left;
  font-weight: 500;
  outline: none;
}
@media only screen and (max-width: 500px) {
  div#message {
    width: 100%;
    padding: 2em 5%;
    margin: 0;
  }
}

.icon-container {
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}

#grad_detail {
  background-color: rgba(0, 0, 0, 0.7);
}

#feed {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

div.social {
  margin-right: 0.5em;
  display: inline-flex;
}

div.social a img {
  height: 30px;
  width: 30px;
}
div.social > .badge {
  transform: translate(1.5rem, 1.5rem);
  position: absolute;
}

div#class_title {
  margin: 0 auto;
  text-align: center;
  margin-top: 2em;
}

div#search_area {
  /* background-color: #f0f0f0;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: .5em;
  width: 25em;
  padding: 1em;
  height: 4em; */
}

div#filters_area {
  text-align: center;
}

.filter {
  /* width: 25em;
  background-color: #f0f0f0;
  border-radius: 10px;
  margin: 0 auto;
  padding: 1em; */
}

.filter > select {
  /* width: 19em; */
}

div#empty_search {
  text-align: center;
  color: red;
}


#twitter_feed {
  text-align: right;
  /* padding-right: 5em; */
}

#instagram_feed > iframe {
  max-height: 450px;
  width: 450px !important;
  max-width: 450px !important;
  overflow-y: hidden;
  padding-left: 5em;
}

#video_thumbs {
  display: inline-flex;
  text-align: center;
  vertical-align: top;
  pointer-events: none;
}

.video_thumb {
  display: flex;
  margin: 0 auto;
  margin-right: 0.5em;
  margin-left: 0.5em;
  width: 450px;
  pointer-events: auto;
  height: 90px;
  overflow: hidden;
  background:white;
  margin-bottom: 13px;
  transition: 0.3s all linear;
}

.speaker_title {
  font-size: 11px;
}

.speaker_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding: 10px;
}

.speaker_info * {
  margin: 0;
}


div#video_thumb_collection {
  width: 50%;
  padding-top: 1em;
  padding-bottom: 1em;
  pointer-events: none;
}

.thumb_video_cell {
  text-align: center;
}
.accordion {
  width: 70%;
  margin: 0 auto;
}
@media only screen and (max-width: 500px) {
  .accordion {
    width: 100%;
    padding: 2em 5%;
    margin: 0;
  }
}
.accordion input:checked~.accordion-header .icon{
  transform: rotate(180deg);
}


.accordion-header i {
  /* display: inline-flex; */
  /* margin-bottom: 24px; */
  margin: 0;
  color: #f1f1f1;
}

.accordion-header .live_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 18px;
  font-size: 14px;
  border-radius: 7px;
  color: #f1f1f1;
  margin-left: 10px;
  
}
@media only screen and (max-width: 500px) {
  .accordion-header .live_icon {
    display: none;
  }
}

.accordion-header .live_icon img {
  animation: live 1s linear infinite alternate-reverse;
}

.accordion-header .live_icon p {
  margin: 0 0 0 10px;
}
.accordion-header .line {
  height: 1px;
  /* background: black; */
  -webkit-box-flex: 1;
  flex-grow: 1;
  margin: 0 10px;
}
@media only screen and (max-width: 500px) {
  .accordion-header .line {
    display: none;
  }
}

.accordion .accordion-header {
  margin: 30px auto;
  padding: 0!important;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 500px) {
  .accordion .accordion-header {
    justify-content: flex-start;
  }
}

.accordion-body {
  max-height: max-content;
}
.accordion input:checked ~ .accordion-body {
  max-height: max-content;
}
.accordion-body p:nth-child(1) {
  margin-top: 30px;
}

.detail_audio_control {
  text-align: center;
}

#detail_control_middle {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stageclip-container {
  display: flex;
  margin-bottom: 20px;
}
.stageclip-container p {
  position: relative;
  font-size: 10px;
  margin-right: 5px;
  top: 50%;
  position: relative;
  transform: translate(0, -50%);
}

.stageclip {
  width: 110px;
  height: 40px;
}
#detail-control-social {
  width: max-content;
  margin-top: 10px;
}
@media only screen and (max-width: 500px) {
  .stageclip-container {
    margin-bottom: 10px;
  }
}

@media only screen and (orientation: landscape) 
and (max-device-width: 850px){ 
  
  .modal-container {
    height: 100vh;
  }
  .modal-body {
    width: 50%;
    margin-top: -80px;
    overflow-y: hidden!important;
  }
  #detail_control_middle {
    margin-top: -5px;
  }
  .stageclip-container {
    margin-bottom: 0;
  }
  .stageclip {
    width: 85px;
    height: 30px;
  }
  #detail-control-social {
    margin-top: 0;
  }
  div.social a img {
    width: 20px;
    height: 20px;
  }
}

/* @media only screen and (max-width: 500px) {
  #detail-control-social {
    width: max-content;
    margin-top: 10px;
  }
} */

#video_container {
  text-align: center;
  pointer-events: none;
  /* margin-top: 10px; */
  padding: 0 5%;
  background: url("../images/video_bg_1.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
@media only screen and (max-width: 1220px) {
	#video {
		top: 0;
		transform: none;
	}
}
@media only screen and (max-width: 1100px) {
  #video_container {
    background-size: auto;
  }
}

.speaker_name {
  vertical-align: bottom;
}

.speaker_title {
  vertical-align: top;
}

img.grad_thumbnail {
  margin: 0;
  width: 100%;
}

#search_functions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

#search_box {
  /* width: 19em; */
}

select::-ms-expand {	display: none; }
select {
  -webkit-appearance: none;
    appearance: none;
}

.form-group {
  position: relative;
}

.form-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 1;
}

.form-group {
  width: 270px;
  margin-right: 10px;
}

select:invalid {
  color: #c9cacb;
}
.form-input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid black;
  font-weight: 500;
  padding-left: 10px;
}


.view-more {
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  width: 200px;
  height: 50px;
  border-radius: 10px;
  font-weight: 500;
  color: black;
  margin: 30px 0;
  background: white;
  box-shadow: 0px 2px 17px -10px rgba(0,0,0,0.59);
  -webkit-box-shadow: 0px 2px 17px -10px rgba(0,0,0,0.59);
  -moz-box-shadow: 0px 2px 17px -10px rgba(0,0,0,0.59);
  outline:none;
  cursor: pointer;
}

.footer-container {
  position: relative;
}
.move-top-container {
  position: absolute;
  top: -130px;
  right: 50px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.move-top-container img {
  width: 70px;
  height: auto;
}
.move-top-container a {
  margin-bottom: -10px;
}

.move-top {
  padding: 5px 20px;
  color: white;
  background: #da526c;
  border-radius: 5px;
  font-size: 8px;
  cursor: pointer;
}
@media only screen and (max-width: 500px) {
  .move-top {
    display: none;
  }
  .move-top-container {
    top: -70px;
    right: 50%;
    transform: translate(50%);
  }
}
#LogoBgFooter {
  height: 60px;
  right: 0px;
  bottom: 0px;
  position: absolute;
}

#RightWhite {
  position: relative;
  background: white;
  height: 60px;
  float: right;
  text-align: center;
  width: 400px;
  /* padding-top: 12px; */
}

#RightWhite img {
  height: 95%;
}
@media only screen and (max-width: 500px) {
  #RightWhite {
    width: auto;
  }
  #RightWhite img {
    height: 77%;
  }
}

#RightWhite #RightAngle {
  position: absolute;
  left: -49px;
}

@keyframes live {
  0% {
    transform: scale(0.5);
  }
  25% {
    transform: scale(0.7)
  }
  50% {
    transform: scale(1.0)
  }
  75% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(0.5);
  }
}

#twitter_container {
  top: -5px;
}

#facebook_container {
  top: -5px;
}

.grad_modal_name {
  width: 90%;
  margin: 0 auto;
  float: left;
  text-align: center;
  font-weight: bold;
  padding-left: 48px;
  font-size: large;
}