/* VARS
--------------------------------------- */
/* BASE-STYLES
--------------------------------------- */
* * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html, body {
  height: 100%; }

body {
  font-family: "Avenir Next W01", sans-serif;
  font-weight: 300;
  background: rgba(217, 217, 217, 0.17);
  color: black;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  min-width: 300px; }

::selection {
  background: #FFFF80; }

::-moz-selection {
  background: #FFFF80; }

a {
  color: black;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #43a7e1; }
  a:hover {
    background-color: #d9d9d9;
    border-bottom: none; }

h1, h2, h3 {
  font-family: "Avenir Next W01", sans-serif;
  font-weight: 100;
  font-style: italic;
  margin: 1em 0; }

p {
  font-family: "aktiv-grotesk-std", sans-serif;
  font-weight: 300; }

.inline {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto; }

.middle {
  vertical-align: middle; }

.border-top {
  border-top: 1px solid #d9d9d9; }

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

input:focus {
  outline: 0; }

/* LAYOUT
--------------------------------------- */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;}
  @media screen and (max-width: 1100px) {
    .container {
      margin-right: 1em;
      margin-left: 1em; } }
  @media screen and (max-width: 750px) {
    .container {
      padding-top: 4em; } }

/* NAV-STYLES
--------------------------------------- */
.skiplinks {
  margin-left: -1000px;
  position: relative;
  float: left; }

.sackler-nav {
  padding: 1em .5em;
  height: 5em;
  position: relative;
  background-color: white; }
  @media screen and (max-width: 700px) {
    .sackler-nav {
      padding: .5em; } }

.nav-container {
  max-width: 1000px;
  margin: 0 auto; }
  @media screen and (max-width: 1100px) {
    .nav-container {
      padding-left: .5em; } }

.right-nav {
  float: right;
  position: relative;
  margin: 0;
  padding-top: 1em; }
  @media screen and (max-width: 750px) {
    .right-nav {
      float: none;
      padding-top: 2.2em; } }

.nav-links {
  margin-top: 0;
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  margin-right: 3em; }
  @media screen and (max-width: 750px) {
    .nav-links {
      display: block; } }

.sackler-nav ul li {
  display: inline;
  padding-right: 1em; }
  @media screen and (max-width: 750px) {
    .sackler-nav ul li {
      display: block;
      padding-bottom: .3em; } }

.sackler-nav ul li a {
  font-family: "Avenir Next W01", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: none; }

.brand {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  float: left;
  padding-top: .5em; }
  @media screen and (max-width: 750px) {
    .brand {
      float: none;
      padding-top: 1.2em; } }

.logo {
  max-width: 300px;
  border: 0; }
  @media screen and (max-width: 400px) {
    .logo {
      max-width: 220px; } }

.logo-nav {
  border-bottom: none; }
  .logo-nav:hover {
    background-color: #fff; }

.search {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  position: absolute;
  right: 0px;
  top: .5em;
  z-index: 100;
  -webkit-appearance: none;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3); }
  @media screen and (max-width: 750px) {
    .search {
      position: fixed;
      right: 1.5em;
      top: 1.2em; } }

input[type="text"] {
  position: relative;
  z-index: 2;
  font-size: 14px;
  border: 1px solid #d9d9d9;
  outline: none;
  background: white url(/static/img/search.png) no-repeat 10px center;
  padding: 8px 10px 8px 28px;
  vertical-align: middle; }

.search-field {
  font-size: 14px;
  padding: 8px 8px 8px 28px;
  border: none;
  border-radius: 30px;
  outline: none;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  background: white url(../img/search.png) no-repeat 12px center;
  border: none;
  cursor: pointer;
  margin: 3px 0;
  position: relative;
  -webkit-transition: width 400ms ease, background 400ms ease;
  transition: width 400ms ease, background 400ms ease;
  width: 0; }

.search-field:focus {
  width: 400px;
  -webkit-appearance: none;
  vertical-align: middle; }
  @media screen and (max-width: 750px) {
    .search-field:focus {
      width: 290px; } }

.search-submit {
  display: none; }

input[type="search"] {
  -webkit-appearance: textfield; }

/* LABEL-STYLES
--------------------------------------- */
.feature-label {
  text-transform: uppercase;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-bottom: 1em;
  margin-top: 1em; }
  @media screen and (max-width: 870px) {
    .feature-label {
      padding-top: .5em; } }

.section-label {
  text-transform: uppercase;
  font-style: normal;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.875rem;
  margin-bottom: 1em;
  margin-top: 1em; }

.filter-label {
  display: block;
  font-size: 32px;
  font-size: 2rem;
}

.video-label {
  text-transform: uppercase;
  font-style: normal;
  font-size: 16px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 1em;
  padding-top: 1em; }

.span-label {
  text-transform: uppercase;
  font-style: normal;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  display: inline;
  line-height: 2em;
  padding-right: 2px; }

.date {
  text-transform: uppercase;
  font-style: normal;
  font-size: 16px;
  padding-bottom: .5em; }
  @media screen and (max-width: 870px) {
    .date {
      padding-top: .5em; } }

@media screen and (max-width: 870px) {
  .section-label {
    padding-top: .5em;
    margin-top: 0em; } }

.tags {
  color: #43a7e1;
  letter-spacing: 1.5px;
  font-family: "Avenir Next W01", sans-serif;
  font-style: italic;
  border-bottom: none; }

.feature-title {
  font-family: "Avenir Next W01", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 48px;
  font-size: 3rem;
  line-height: 4.5rem;
  line-height: 64px;
  margin-bottom: .5em; }
  @media screen and (max-width: 870px) {
    .feature-title {
      font-size: 36px;
      font-size: 2.25rem;
      line-height: 3.375rem; } }
  @media screen and (max-width: 400px) {
    .feature-title {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 2.25rem; } }

.feature-title a {
  border-bottom: none; }

.title {
  font-family: "Avenir Next W01", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.25rem; }
  @media screen and (max-width: 400px) {
    .title {
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 1.6875rem; } }

.title a {
  border-bottom: none; }

/* FEATURED-STYLES
--------------------------------------- */
.featured-section {
  width: 100%;
  margin-bottom: 2em; }

.feature-video {
  width: 100%;
  max-width: 45%;
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  margin-right: 5%; }
  @media screen and (max-width: 870px) {
    .feature-video {
      max-width: 100%;
      display: block; } }

.feature-info {
  max-width: 45%;
  overflow: hidden;
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  vertical-align: top; }
  @media screen and (max-width: 870px) {
    .feature-info {
      max-width: 100%;
      display: block; } }

.feature-desc {
  padding-top: 1em;
  font-family: "aktiv-grotesk-std", sans-serif; }

/* GRID-FOUR-STYLES
--------------------------------------- */
.grid-four-section {
  width: 100%;
  margin-bottom: 2em; }

.secondary-video {
  width: 20%;
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  margin-right: 4%;
  vertical-align: top; }
  @media screen and (max-width: 670px) {
    .secondary-video {
      width: 45%; } }

.secondary-title {
  font-weight: 100;
  font-style: italic;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: .5em; }
  @media screen and (max-width: 870px) {
    .secondary-title {
      margin-bottom: .5em; } }

.secondary-title a {
  border-bottom: none; }

/* FILTER-STYLES
--------------------------------------- */
.dropdown {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  height: 40px;
  width: 15%;
  padding: 10px 10px 0;
  position: relative;
  background: rgba(224, 223, 224, 0.55);
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  vertical-align: middle;
  margin-left: 1em;
}
.dropdown.first{
  margin-left: 0;
}
  @media screen and (max-width: 870px) {
    .dropdown {
      display: block;
      width: 100%;
      margin-left: 0;
      margin-bottom: .5em; } }

#filter-section {
  padding-top: 1em;
  padding-bottom: 40px;
}

section {
  padding-top: 1em;
  padding-bottom: 1em; }

.dropdown select {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  /* Ach, IE8 ~ .dh */
  filter: alpha(opacity=0);
  opacity: 0;
  cursor: pointer; }

.dropdown img {
  float: right; }

.ss-icon:after {
  font-family: "SSStandard";
  line-height: 18px;
  /*content: 'navigatedown';*/
  /* IE 8 says no */
  box-sizing: content-box;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  background: #fff;
  font-size: 8px;
  color: #727a7c;
  display: inline-block;
  padding: 5px 2px;
  width: 20px;
  height: 13px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  right: 15px; }

#filter-reset {
  cursor: pointer; }

.loading {
  display: none;
  padding-bottom: 3em; }

.filter-label {
  padding: 1em 0;
  margin-top:0;
  margin-bottom: 0;
}
  @media screen and (max-width: 600px) {
    .filter-label {
      position: static;
      padding-bottom: 20px;
    }
  }

.no-script-submit {
  display: block;
  border-bottom: none;
  width: 100%;
  border: 1px solid #d9d9d9; }
  .no-script-submit:hover {
    background-color: #43a7e1;
    color: white;
    border: 1px solid #43a7e1; }

.no-script-submit input {
  background-color: transparent;
  border: none;
  width: 100%;
  padding: 12px;
  font-family: "Avenir Next W01", sans-serif;
  font-size: .8em;
  outline: 0; }
  .no-script-submit input:hover {
    color: white; }

#squaresWaveG {
  position: relative;
  width: 240px;
  height: 29px; }

.squaresWaveG {
  position: absolute;
  top: 0;
  background-color: #43A7E1;
  width: 29px;
  height: 29px;
  -moz-animation-name: bounce_squaresWaveG;
  -moz-animation-duration: 1.3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-direction: linear;
  -webkit-animation-name: bounce_squaresWaveG;
  -webkit-animation-duration: 1.3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: linear;
  -ms-animation-name: bounce_squaresWaveG;
  -ms-animation-duration: 1.3s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-direction: linear;
  -o-animation-name: bounce_squaresWaveG;
  -o-animation-duration: 1.3s;
  -o-animation-iteration-count: infinite;
  -o-animation-direction: linear;
  animation-name: bounce_squaresWaveG;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-direction: linear; }

#squaresWaveG_1 {
  left: 0;
  -moz-animation-delay: 0.52s;
  -webkit-animation-delay: 0.52s;
  -ms-animation-delay: 0.52s;
  -o-animation-delay: 0.52s;
  animation-delay: 0.52s; }

#squaresWaveG_2 {
  left: 30px;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -ms-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
  animation-delay: 0.65s; }

#squaresWaveG_3 {
  left: 60px;
  -moz-animation-delay: 0.78s;
  -webkit-animation-delay: 0.78s;
  -ms-animation-delay: 0.78s;
  -o-animation-delay: 0.78s;
  animation-delay: 0.78s; }

#squaresWaveG_4 {
  left: 90px;
  -moz-animation-delay: 0.91s;
  -webkit-animation-delay: 0.91s;
  -ms-animation-delay: 0.91s;
  -o-animation-delay: 0.91s;
  animation-delay: 0.91s; }

#squaresWaveG_5 {
  left: 120px;
  -moz-animation-delay: 1.04s;
  -webkit-animation-delay: 1.04s;
  -ms-animation-delay: 1.04s;
  -o-animation-delay: 1.04s;
  animation-delay: 1.04s; }

#squaresWaveG_6 {
  left: 150px;
  -moz-animation-delay: 1.17s;
  -webkit-animation-delay: 1.17s;
  -ms-animation-delay: 1.17s;
  -o-animation-delay: 1.17s;
  animation-delay: 1.17s; }

#squaresWaveG_7 {
  left: 180px;
  -moz-animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
  -ms-animation-delay: 1.3s;
  -o-animation-delay: 1.3s;
  animation-delay: 1.3s; }

#squaresWaveG_8 {
  left: 210px;
  -moz-animation-delay: 1.43s;
  -webkit-animation-delay: 1.43s;
  -ms-animation-delay: 1.43s;
  -o-animation-delay: 1.43s;
  animation-delay: 1.43s; }

@-moz-keyframes bounce_squaresWaveG {
  0% {
    background-color: #43A7E1; }

  100% {
    background-color: #FFFFFF; } }

@-webkit-keyframes bounce_squaresWaveG {
  0% {
    background-color: #43A7E1; }

  100% {
    background-color: #FFFFFF; } }

@-ms-keyframes bounce_squaresWaveG {
  0% {
    background-color: #43A7E1; }

  100% {
    background-color: #FFFFFF; } }

@-o-keyframes bounce_squaresWaveG {
  0% {
    background-color: #43A7E1; }

  100% {
    background-color: #FFFFFF; } }

@keyframes bounce_squaresWaveG {
  0% {
    background-color: #43A7E1; }

  100% {
    background-color: #FFFFFF; } }

/* INDEX-STYLES
--------------------------------------- */
.program-container {
  width: 100%;
  margin-bottom: 30px; }

.video {
  width: 25%;
  margin-right: 5%;
  margin-bottom: 30px;
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto; }
  @media screen and (max-width: 500px) {
    .video {
      width: 100%;
      display: block; } }
  @media screen and (max-width: 500px) {
    .video {
      margin: 0; } }

.info {
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  *display: inline;
  *vertical-align: auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  vertical-align: top;
  margin-top: 1.6em;
  width: 60%; }
  @media screen and (max-width: 500px) {
    .info {
      width: 100%;
      display: block;
      margin-top: .5em; } }

.cover {
  background-size: cover;
  background-position: center center;
  padding-top: 55%;
  height: 0;
  display: block;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  border-bottom: none; }
  .cover .placeholder {
    height: 100%;
    width: 0%;
    vertical-align: middle;
    display: inline-block; }
  .cover img {
    display: inline-block;
    vertical-align: middle;
    margin: 0px auto; }

.cover:hover:after {
  content: '';
  background: url("/static/img/play-button.svg") center center no-repeat;
  background-size: cover;
  width: 75px;
  height: 75px;
  opacity: 0.8;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -37.5px 0 0 -37.5px; }

@media screen and (max-width: 870px) {
  .cover:after {
    content: '';
    background: url("/static/img/play-button.svg") center center no-repeat;
    background-size: cover;
    width: 75px;
    height: 75px;
    opacity: 0.8;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -37.5px 0 0 -37.5px; } }

.name {
  font-family: "aktiv-grotesk-std", sans-serif;
  font-weight: 700; }

.feature-name {
  font-family: "aktiv-grotesk-std", sans-serif;
  font-weight: 700; }

.participant-wrapper {
  padding-bottom: 1em;
  border-bottom: 1px solid #d9d9d9; }

/* VIDEO-ENTRY-STYLES
--------------------------------------- */
.entry-subject {
  padding-bottom: 1em;
  border-bottom: 1px solid #d9d9d9; }

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
  cursor: pointer; }

.large-cover {
  position: absolute;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5; }
  .large-cover .placeholder {
    height: 100%;
    width: 0%;
    vertical-align: middle;
    display: inline-block; }
  .large-cover img {
    display: inline-block;
    vertical-align: middle;
    margin: 0px auto; }

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.video-share-bar {
  margin-top: .5em; }

@media screen and (max-width: 600px) {
  .share-button-wrapper {
    display: block; } }

.share {
  border: 1px solid #d9d9d9;
  padding: 4px 12px;
  margin-left: 5px;
  float: right;
  text-align: center; }
  @media screen and (max-width: 600px) {
    .share {
      margin-top: .5em;
      margin-bottom: .5em;
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.125rem;
      width: 100%;
      display: block;
      margin-left: 0;
      float: none; } }

.share-button:hover {
  background-color: #43a7e1;
  color: white;
  border: 1px solid #43a7e1; }

.related-videos {
  margin-bottom: 1.5em; }

/* FIRST-AWARDS-STYLES
--------------------------------------- */
.feature-subtitle {
  font-size: 48px;
  font-size: 3rem;
  font-style: normal;
  line-height: 4.5rem;
  font-weight: 700;
  line-height: 4rem;
  margin: 0;
  margin-top: .5em; }
  @media screen and (max-width: 870px) {
    .feature-subtitle {
      font-size: 36px;
      font-size: 2.25rem;
      line-height: 3.375rem; } }
  @media screen and (max-width: 400px) {
    .feature-subtitle {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 2.25rem; } }

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:landscape) {
  .ecrisper-fix .feature-subtitle, .ecrisper-fix .award-year {
    font-weight: normal;
  }
}

.page-desc {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 2em; }
  @media screen and (max-width: 870px) {
    .page-desc {
      font-size: 18px;
      font-size: 1.125rem;
      line-height: 1.6875rem; } }
  @media screen and (max-width: 400px) {
    .page-desc {
      font-size: 16px;
      font-size: 1rem;
      line-height: 1.5rem; } }

.award-year {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 3.375rem;
  font-weight: 700;
  padding-bottom: .5em; }

.honoree {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-top: 0em; }

.awards-video {
  width: 100%;
  max-width: 45%;
  display: inline-block;
  vertical-align: baseline;
  zoom: 1;
  margin-right: 5%;
  margin-bottom: 5%; }
  @media screen and (max-width: 870px) {
    .awards-video {
      max-width: 100%;
      margin-bottom: 2%; } }

.awards-title {
  font-family: "Avenir Next W01", sans-serif;
  font-weight: 100;
  font-style: italic;
  font-size: 64px;
  font-size: 4rem;
  line-height: 6rem;
  line-height: 72px;
  margin: 0;
  margin-bottom: .5em; }
  @media screen and (max-width: 870px) {
    .awards-title {
      font-size: 36px;
      font-size: 2.25rem;
      line-height: 3.375rem; } }
  @media screen and (max-width: 400px) {
    .awards-title {
      font-size: 24px;
      font-size: 1.5rem;
      line-height: 2.25rem; } }

.awards-content img {
  max-width: 100%; }

.video-desc {
  font-family: "aktiv-grotesk-std", sans-serif; }
  @media screen and (max-width: 870px) {
    .video-desc {
      padding-top: 0;
      padding-bottom: 1em; } }

/* SEARCH-STYLES
--------------------------------------- */
.search-result {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3125rem; }

.search-grid {
  margin-bottom: 1em;
  margin-top: 1em; }

.search-label {
  text-transform: uppercase;
  font-style: normal;
  font-size: 16px;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 2.25rem; }

.noresults-label {
  text-transform: none;
  margin-bottom: 1.5em; }
