/* Global Styles */
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.page-header {
	border-bottom: 0;
	margin-top: 0;
}

/* Notification Styles */
#flash-container {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  margin: 0;
}

.alert-box-fixed {
  margin: 0 15px 15px 0;
}


/*
 CSS for the main interaction
*/
.accordion > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

/*
 Styling
*/

.accordion {
  margin-bottom: 1em;
  padding-left: 10px;
  width: 100%;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  padding: 15px;
  border: 1px solid #e8e8e8;
  border-top: 0;
}

.accordion .handle {
  margin: 0;
  font-size: 1.125em;
  line-height: 1.2em;
}

.accordion label {
  color: #333;
  cursor: pointer;
  font-weight: normal;
  padding: 15px;
  background: #e8e8e8;
}

.accordion label:hover,
.accordion label:focus {
  background: #d8d8d8;
}

.accordion .handle label:before {
  font-family: 'fontawesome';
  content: "\f054";
  display: inline-block;
  margin-right: 10px;
  font-size: .58em;
  line-height: 1.556em;
  vertical-align: middle;
}

.accordion > input[type="checkbox"]:checked ~ .handle label:before {
  content: "\f078";
}



.accordion {
  /* max-width: 65em; */
}

.accordion p:last-child {
  margin-bottom: 0;
}


#videoCanvas {
	width: 100%;
  position:relative;
  height: 100%;  /* Makes the parent container take the full viewport height */
	background-color: black;
	display: block; /* removes any default margin/padding */
  }


  .pad {
    padding-left: 30px;
    padding-right: 30px;
  }

    .dropdown {
      position: relative;
      display: inline-block;
      width: 200px;
    }

    .dropdown select {
      appearance: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      width: 100%;
      padding: 12px 16px;
      font-size: 16px;
      border: 2px solid #ccc;
      border-radius: 12px;
      background-color: #fff;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
    }

    .dropdown::after {
      content: "▾";
      position: absolute;
      top: 50%;
      right: 16px;
      transform: translateY(-50%);
      pointer-events: none;
      font-size: 18px;
      color: #666;
    }

    .dropdown select:focus {
      border-color: #4f46e5;
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
      outline: none;
    }

    /* Fancy dropdown animation */
    .dropdown select option {
      padding: 10px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .dropdown select option:hover {
      background-color: #f0f0f0;
      color: #333;
    }