@font-face {
  font-family: 'SuisseIntl-Light';
  src: url('./fonts/SuisseIntl-Light-WebM.woff') format('woff'),
       url('./fonts/SuisseIntl-Light-WebM.woff2') format('woff2');
}

@font-face {
  font-family: 'SuisseIntl-Regular';
  src: url('./fonts/SuisseIntl-Regular-WebM.woff') format('woff'),
       url('./fonts/SuisseIntl-Regular-WebM.woff2') format('woff2');
}

@font-face {
  font-family: 'SuisseIntl-Medium';
  src: url('./fonts/SuisseIntl-Medium-WebM.woff') format('woff'),
       url('./fonts/SuisseIntl-Medium-WebM.woff2') format('woff2');
}

@font-face {
  font-family: 'SuisseIntl-SemiBold';
  src: url('./fonts/SuisseIntl-SemiBold-WebM.woff') format('woff'),
       url('./fonts/SuisseIntl-SemiBold-WebM.woff2') format('woff2');
}

@font-face {
  font-family: 'SuisseIntl-Bold';
  src: url('./fonts/SuisseIntl-Bold-WebM.woff') format('woff'),
       url('./fonts/SuisseIntl-Bold-WebM.woff2') format('woff2');
}


@font-face {
  font-family: 'SuisseIntl';
  src: url('./fonts/SuisseIntl-Regular-WebM.woff') format('woff'),
       url('./fonts/SuisseIntl-Regular-WebM.woff2') format('woff2');
}


:root {
  --bp-xs: 576px;
  --bp-sm: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
}

:focus {
  outline: #000 auto 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  font-family: 'SuisseIntl', sans-serif;
}

h1 {

}

h2 {
  font-size: 26px;
  font-weight: 600;
}

ul {

}

ul li {
  list-style-type: none;
}

a {
  color: #000;
  text-decoration: none;
}

body,div::after {
  content: "";
  clear: both;
  display: table;
}


section {
  margin: 0 5px;
}

@media screen and (min-width:992px) {
  section {
    margin: 0 15px;
  }
}


.border {
  border-top: 3px solid black;
  border-bottom: 3px solid black;
}

.container {
  width: 100%;
  float: left;
  height: 100vh;
  display: inline-block;
  position: relative;
}

.sidebar {
  width: 100%;
  float: left;
  position: fixed;
  overflow: hidden;
  height: 0;
  max-height: 0;
  z-index: 99;
  transition: max-height 1s ease-in;
}

.sidebar-button {
  margin-top: -31px;
  float: right;
  display: block;
  margin-right: 1px;
}

.hamburger {
  padding: 0;
}

.hamburger-box {
  margin-right: -10px;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-box {
  height: 26px;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.sidebar-button .hamburger-inner, 
.sidebar-button .hamburger-inner::before, 
.sidebar-button .hamburger-inner::after {
  border-radius: 0;
  color: black;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger--collapse-r .hamburger-inner::after {
    top: -16px
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
}

.icon-bar {
  display: block;
  height: 4px;
  margin-bottom: 4px;
  width: 30px;
  background-color: black;
}

.sidebar.open {
  width: 100%;
  padding: 0;
  top: -3px;
  position: fixed;
  display: block;
  height: inherit;
  margin-top: 50px;
  background-color: white;
  padding-right: 10px;
  max-height: 500px;
}

#contact .sidebar.open {
  background: #FFEF60;
} 

#about .sidebar.open {
  background: #FFEF60;
}

.sidebar.open ul li:first-child {
  display: none;
}

.sidebar ul li {
  border-top: 3px solid black;
}

.sidebar ul li:last-child {
  border-bottom: 3px solid black;
}

.sidebar ul li a {
  color: #000;
  padding-left: 0;
  font-size: 26px;
  letter-spacing: -0.5px;
  line-height: 34px;
  font-family: 'SuisseIntl-Medium';
  transition: padding .2s linear;
}

.sidebar ul li a.active {
  transition: unset;
  padding-left: 15px;
}

.sidebar ul li a:hover {
  padding-left: 15px;
}

.navbar {
  width: 100%;
  position: fixed;
  padding: 5px 0;
  background-color: white;
  padding-right: 10px;
  padding-top: 10px;
  z-index: 99;
}

.navbar .brand {
  overflow: hidden;
}

.navbar .brand h1 {
  font-size: 26px;
  line-height: 34px;
  font-weight: normal;
  letter-spacing: -0.5px;
  font-family: 'SuisseIntl-SemiBold';
}

.navbar .locale {
  width: 35px;
  float: right;
  display: none;
  margin-left: 5px;
  text-align: right;
  font-family: 'SuisseIntl-Medium';
}

.navbar .locale a {
  font-size: 26px;
  line-height: 34px;
}

@media screen and (min-width: 992px) {

  .sidebar.open {
    padding-right: 10px;
  }

  .sidebar-button {
    display: none;
  }

  .container {
    width: 85%;
  }

  .navbar {
    width: 85%;
    padding-right: 27px;
  }

  .sidebar {
    width: 15%;
    height: 100vh;
    overflow: visible;
    padding: 5px;
    padding-top: 10px;
    display: inline-block;
  }

  .navbar .locale {
    display: block;
  }
}


@media screen and (min-width: 1200px) {
  .container {
    width: 88%;
  }

  .navbar {
    width: 88%;
  }

  .sidebar {
    width: 12%;
  }
}

.content {
  padding-top: 57px;
}

body#about {
  background-color: #FFEF60;
}

#about .navbar {
  background-color: #FFEF60;
}

#about .content {
  padding-top: 0;
  margin-top: 50px;
}

.content .next {
}

.content .next.border {
  border-top: none;
  border-bottom: 3px solid black; 
}

.pt .content .next h1 {
  font-size: 17.5vw;
  line-height: 14.2vw;
}

.content .next h1 {
  font-family: 'SuisseIntl-Regular', sans-serif;
  font-size: 19vw;
  line-height: 15.2vw;
  font-weight: 200;
  letter-spacing: -2px;
}

.home {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2px;
}

.home .info {
  float: left;
  width: 100%;
  display: block;
}

.home .info .name {

}

.home .info h2 {
  float: left;
  font-family: 'SuisseIntl-Regular';
  padding: 5px;
  font-size: 15vw;
  line-height: 14vw;
  text-align: left;
  letter-spacing: -2px;
  font-weight: 300;
  text-transform: uppercase;

}

.home .more {
  width: 100%;
  display: flex;
  font-size: 22px;
  padding: 10px 0;
  padding-bottom: 5px;
  border-bottom: none;
}

.home .more .btn {
  padding: 4px 10px;
  width: unset;
  min-width: 140px;
  border: 3px solid black;
}

.home .more .btn:hover {
  color: white;
  background-color: black;
}

.home .date {
  display: flex;
  border-top: none;
}

.home .date span {
  font-size: 26px;
  line-height: 34px;
  letter-spacing: -1.5px;
}

.home .date .day {
  float: left;
  width: 50%;
  display: inline-block;
}

.home .date .time {
  width: 50%;
  float: right;
  text-align: right;
  display: inline-block;
}

.home .picture {
  width: 100%;
  margin-top: 5px;
  min-height: 340px;
  display: inline-block;
  border-radius: 1px;
  border: 1px solid black;
  /*background-image: url();*/
  background-size: cover;
  background-position: center;
  transition: border-radius .3s linear;
}

.home .picture:hover {
  border-radius: 27px;
  cursor: pointer;
}



@media screen and (min-width: 768px) {
  .pt .content .next h1 {
    font-size: 17.4vw;
    line-height: 13.5vw;
  }

  .content .next h1 {
    font-size: 19vw;
    line-height: 14.5vw;
  }
}

@media screen and (min-width: 567px) {
  .home .date span {
    font-size: 36px;
    line-height: 42px;
  }
}

@media screen and (min-width: 992px) {

  .home {
    margin: 5px 0;
  }

  .home .date span {
    font-size: 41px;
    letter-spacing: -2px;
  }
  .content {
    padding-top: 84px;
  }

  .content .next.border {
    border-top: 3px solid black;
    border-bottom: 3px solid black; 
  }

  .pt .content .next h1 {
    font-size: 15.2vw;
    line-height: 12.8vw;
  }

  .content .next h1 {
  font-family: 'SuisseIntl-Light', sans-serif;
    padding-top: 4px;
    font-size: 16.5vw;
    line-height: 13.8vw;
  }

  .home {
    margin: 20px 0;
  }

  .home .info {
    width: 50%;
    display: inline-block;
    padding-right: 10px;
  }

  .home .info h2 {
    font-size: 6.8vw;
    line-height: 5.8vw;
    text-align: left;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
  }

  .home .info .name {
    min-height: 350px;
    position: relative;
  }

  .home .picture {
    width: 50%;
    margin: 0;
    display: inline-block;
  }

  #about .content {
    position: fixed;
    height: 90vh;
    padding-top: 0;
    margin-top: 84px;
  }

}

@media screen and (min-width: 1200px) {
  .pt .content .next h1 {
    font-size: 16.6vw;
    line-height: 14vw;
  }

  .content .next h1 {
    padding-top: 12px;
    font-size: 17.8vw;
    line-height: 14vw;
    letter-spacing: -8px;
  }
}

@media screen and (min-width: 1680px) {
  .pt .content .next h1 {
    font-size: 16.3vw;
    line-height: 14vw;
  }

  .content .next h1 {
    padding-top: 12px;
    font-size: 17.5vw;
    line-height: 14vw;
    letter-spacing: -8px;
  }
}

.form {
  float: left;
  width: 100%;
  display: block;
}

.form input {
  font-size: 22px !important;
  padding: 5px 15px !important;
  margin-bottom: 5px !important;
  border: 3px solid black !important;
  background-color: transparent;
  border-radius: 0;
  --webkit-appearance: none;
}

.form input.text {
  min-width: 70%;
}

.form input.btn {
  color: black;
  min-width: 120px !important;
}

.form input.btn:hover {
  color: white;
  background-color: rgba(0,0,0,7);
}

#contact .form input.btn:hover,
#about .form input.btn:hover {
  color: #FFEF60;
}

.form textarea {
  display: block;
  font-size: 22px;
  padding: 5px 15px;
  margin-bottom: 5px;
  border: 3px solid black;
}

.footer {
  width: 100%;
  display: block;
}

.footer .subscribe {
  border-top: 3px solid black;
  width: 100%;
}

.footer .subscribe .social {
  width: 100%;
  margin: 10px 0;
  float: left;
  display: inline-block;
}

.footer .subscribe .local-time {
  width: 100%;
  margin-bottom: -3px;
  float: right;
  display: inline-block;
}

.footer .subscribe .social ul {
  width: 100%;
  float: left;
}

.footer .subscribe .social ul li {
  padding: 3px 0;
  border-bottom: 3px solid black;
}

.footer .subscribe .social ul li:first-child {
  border-top: 3px solid black;
}

.footer .subscribe .social ul li i {
  font-size: 25px;
}

.footer .subscribe .social ul li a {
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -1px;
  font-family: 'SuisseIntl-Medium';
  transition: padding .2s linear;
}

.footer .subscribe .social ul li a:hover {
  padding-left: 15px;
}

.footer .subscribe .local-time ul {
  width: 100%;
}

.footer .subscribe .local-time ul li {
  padding: 3px 0;
  border-bottom: 3px solid black;
}

.footer .subscribe .local-time ul li:first-child {
  border-top: 3px solid black;
}

.footer .subscribe .local-time ul li i {
  font-size: 25px;
}

.footer .subscribe .local-time ul li a {
  font-size: 26px;
  line-height: 28px;
  letter-spacing: -1px;
  font-family: 'SuisseIntl-Medium';
  transition: padding .2s linear;
}

.footer p {
  padding-top: 5px;
  font-size: 16px;
  font-weight: 500;
}

.footer .rights {
  padding-top: 3px;
  margin-bottom: 10px;
  border-top: 3px solid black;
}

.footer .left {
  float: left;
  width: 100%;
}

.footer .right {
  width: 100%;
  float: left;
}

.footer .subscribe {
  display: block;
  width: 100%;
}

.footer .subscribe .form input.text {
  width: calc(100% - 124px);
  min-width: unset;
}

.footer .subscribe.border {
  border-bottom: none;
}

.footer .subscribe h5 {
  font-size: 26px;
  font-weight: 600;
  padding: 5px 0;
  padding-bottom: 10px;
  letter-spacing: -1px;
}

@media screen and (min-width: 576px) {
  .footer .left {
    float: left;
    width: 50%;
  }

  .footer .right {
    width: 50%;
    float: left;
  }
}

@media screen and (min-width: 992px) {

  .footer .subscribe .form input.text {
    max-width: 60%;
  }

  #about .footer {
    bottom: 0;
    position: absolute;
    margin-top: calc(100vh - 180px);
  }

  #contact .footer {
    position: absolute;
    bottom: 0;
  }

  #home .footer {
    padding-right: 0;
  }
  
  .footer {
    padding-right: 42px;
  }

  .footer .subscribe .form {
    width: 50%;
    display: inline-block;
    margin-bottom: 0;
  }

  .footer .subscribe .social {
    width: 20%;
  }

  .footer .subscribe .social ul li a {
    font-size: 26px;
    line-height: 28px;
  }

  .footer .subscribe .local-time {
    width: 15%;
    margin: 10px 0;
    display: inline-block;
  }

}

/***********/
/* CONTACT */
/***********/

body.contact {
  background-color: #FFEF60;
}

#contact .navbar {
  background-color: #FFEF60;
}

#contact .content {
  padding-top: 50px;
}

.contact .info {
  width: 100%;
  float: left;
  display: inline-block;
}

.contact .info h2 {
  line-height: 36px;
  border-bottom: 3px solid black;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.contact > .form {
  width: 100%;
  margin-bottom: 50px;
}

.contact > .form input.text {
  width: 100%;
}

.form input.text::placeholder {
  font-family: 'SuisseIntl-Regular';
  color: #000;
}

.contact .form textarea {
  width: 100%;
  background-color: transparent;
  min-height: 168px;
}

.contact .form textarea::placeholder {
  font-family: 'SuisseIntl-Regular';
  color: #000;
}



@media screen and (min-width: 992px) {


  #contact .content {
    padding-top: 84px;
  }

  .contact .info {
    width: 22%;
  }

  .contact .info h2 {
    margin-right: 20px;
    border-top: 3px solid black; 
    border-bottom: none;
  }

  .contact .form {
    width: calc(78% - 40px);
  }


}

/***********/
/*  ABOUT  */
/***********/

.menu {
  width: 100%;
  float: left;
  z-index: 9;
  left: 5px;
  position: fixed;
  padding-bottom: 5px;
  display: inline-block;
  background-color: #FFEF60;
}

.menu ul {
}

.menu ul li {
  display: none;
  border-bottom: 3px solid black;
}

.menu ul li:last-child {
  border-bottom: 3px solid black;
}

.menu ul li {
}

.menu ul li.active {
  display: block;
}

.menu ul li a {
  color: #000;
  font-family: 'SuisseIntl-Medium';
  font-size: 26px;
  line-height: 34px;
  padding-left: 0;
  transition: padding .2s linear;
}

.menu ul li a.active {
  animation: example .1s linear .1s infinite alternate;
}

.menu ul li a:hover {
  padding-left: 15px;
}

.about {
  float: left;
  display: block;
  margin-top: 33px;
  width: 100%;
}

.about .description {
  padding-top: 4px;
  position: relative;
}

.about .description .text {
  width: 100%;
  float: left;
  display: inline-block;
}

.about .description p.description-phrase {
  font-family: 'SuisseIntl-Medium';
  margin-bottom: 30px;
}

.about .description p {
  font-size: 29px;
  font-weight: 500;
  line-height: 34px;
  font-family: 'SuisseIntl-Regular';
  margin-bottom: 30px;
}


.about .description .image {
  width: 100%;
  float: left;
  margin-top: 5px;
  display: inline-block;
}

.about .description .image img {
  max-width: 100%;
  margin-top: 1px;
  display: inline-block;
}

.about .sponsors .logo {
  display: none;
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
}

.about .sponsors .logo-mobile {
  display: block;
  text-align: left;
  margin-bottom: 25px;
}

.about .sponsors .logo-tablet {
  display: none;
  text-align: left;
  margin-bottom: 25px;
}

.about .sponsors .logo-mobile img {
  margin: 0 auto;
  max-width: 95vw;
}

.about .sponsors .logo-tablet img {
  margin: 0 auto;
  max-width: 100vw;
}

.about .sponsors .logo img {
  margin: 0 auto;
  max-width: 100%;
}

.about .team {
  margin-top: 72px;
  min-height: 95vh;
}

.about .team .col {
  width: 100%;
  float: left;
  display: inline-block;
}

.about .team dl {
  width: 100%;
  float: left;
  margin-right: 10%;
  padding-bottom: 15px;
  display: inline-block;
}

.about .team dl dt {
  font-size: 28px;
  font-weight: 700;
}

.about .team dl dd {
  font-size: 28px;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: -0.5px;
}

@media screen and (min-width: 768px) {
  .about .sponsors .logo-mobile {
    display: none;
  }

  .about .sponsors .logo-tablet {
    display: block;
  }

  .about .description .image img {
    width: calc(50%-2px);
  }

}

@media screen and (min-width: 992px) {
  .about .sponsors {
    min-height: 90vh;
  }

  .about .sponsors .logo {
    display: block;
  }

  .about .sponsors .logo-mobile {
    display: none;
  }

  .about .sponsors .logo-tablet {
    display: none;
  }

  .menu {
    width: 17.6%;
    left: 15px;
  }

  .menu ul li {
    border-top: 3px solid black;
    border-bottom: none;
    display: block;
  }

  .about {
    margin-top: 0;
    display: inline-block;
    margin-left: calc(19%);
    width: calc(68.5% - 46.5px);
    overflow: hidden;
    max-height: calc(80vh - 160px);
    border-top: 3px solid black;
  }

  .about .description {
    height: 65vh;
    margin-bottom: 200px;
    overflow: scroll;
    padding-top: 0;
  }

  .about .team dl {
    margin-right: 5%;
  }

  .about .team .col {
    width: 50%;
  }

}


@media screen and (min-height: 900px) {
  .about {
    max-height: calc(90vh - 160px);
  }
}


@media screen and (min-width: 1200px) {



  .about .description .text {
    width: 50%;
    float: left;
    display: inline-block;
    position: sticky;
    top: 0;
    left: 0;
  }

  .about .description .image {
    width: 50%;
    float: left;
    display: inline-block;
  }

  .about .description .image img {
    max-width: 100%;
  }

  .about .description .image {
    padding-left: 20px;
    padding-bottom: 40px;
  }


} 

@keyframes example {
  from {padding-left: 0px;}
  to {padding-left: 3px;}
}

.artist {
  min-height: 50vh;
  margin-bottom: 30px;
}

.artist table {
  width: 100%;
  margin-top: -1.55px;
  table-layout: fixed;
}

.artist table td {
  vertical-align: top;
}

.artist table tr:last-child td:first-child {
}

.artist table th span {
  font-size: 18px;
  text-align: left;
}

.artist table td span {
  font-size: 26px;
  text-align: left;
}

.artist table th span,
.artist table td span {
  width: 90%;
  display: block;
  border-top: 3px solid black;
}

.artist table th span.artist-content {
  width: 100%;
  transition: padding .2s linear;
}

.artist table td span.artist-content {
  width: 100%;
  cursor: pointer;
  max-height: 33px;
  overflow: hidden;
  transition: max-height 1.6s ease-in;
}

.artist table tr:last-child td span.artist-content {
  max-height: 50px;
  border-bottom: 3px solid black;
}

.artist table tr:last-child td span.month-day {
  border-bottom: 3px solid black;
}

.artist table tr:last-child td span.artist-content.open {
  max-height: 1000px;
}

.artist .artists-years {
  width: 100%;
  float: left;
  margin-top: -5px;
  display: inline-block;
}

.artist .artists-years ul {
  padding-top: 2px;
}

.artist .artists-years ul li {
  padding: 2px 0;
  padding-right: 5px;
  display: inline-block;
  float: left;
}

.artist .artists-years ul li a {
  height: 42px;
  margin-top: 0;
  font-size: 26px;
  line-height: 26px;
  font-weight: bold;
}

.artist table td.artist-year {
  display: none;
}

.artist table th.month-day {
  width: 20%;
}

.artist table td span.month-day {
  font-weight: bold;
/*  border-bottom: 3px solid black;*/
}

.artist table td span.artist-content.open {
  max-height: 1000px;
  overflow: visible;
}

.artist table td span.artist-content .name {
  font-size: 26px;
}


.artist table td span.artist-content .video {
  width: 100%;
  display: none;
  height: 28px;
  max-height: 30px;
  overflow: hidden;
  transition: max-height .5s ease-in;
}

.artist table td span.artist-content .video-closed {
  width: 100%;
  display: none;
}

.artist table td span.artist-content.open .video-closed {
  display: block;
}

.artist table td span.artist-content .video-closed:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

.artist table td span.artist-content.open .video {
  display: block;
}

.artist table td span.artist-content .video h5 {
  border-bottom: 3px solid black;
  margin-bottom: 5px;
  padding-left: 20%;
}

.artist table td span.artist-content.open .video.open {
  max-height: 360px;
  height: 330px;
}

.artist table td span.artist-content .video {
  margin-bottom: 3px;
  width: 125.5%;
  margin-left: -25.5%;
}

.artist table td span.artist-content .video iframe {
  width: 100%;
  height: 0;
}

.artist table td span.artist-content .video.open iframe {
  width: 100%;
  height: 400px;
}

/*
.artist table td span.artist-content .video:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}
*/

.artist table td span.artist-content .photos-closed {
  width: 100%;
  display: none;
}

.artist table td span.artist-content.open .photos-closed {
  display: block;
}


.artist table td span.artist-content .photos-closed:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}

.artist table td span.artist-content .photos {
  display: none;
  position: relative;
  width: 125.5%;
  margin-left: -25.5%;
  overflow: hidden;
  margin-top: -2px;
  background-color: white;
  max-height: 35px;
  transition: max-height .5s ease-in;
}

.artist table td span.artist-content.open .photos {
  display: block;
}

.artist table td span.artist-content .photos-container {
  max-width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  transition: max-height .4s ease-in;
}

.artist table td span.artist-content .photos h5 {
  border-bottom: 3px solid black;
  margin-bottom: 5px;
  padding-left: 20%;
}

.artist table td span.artist-content .photos-closed h5 {
  margin-bottom: -2px;
}

.artist table td span.artist-content .photos .photos-container {
  height: 0;
}

.artist table td span.artist-content .photos.open {
  max-height: 435px;
  height: 400px;
}

.artist table td span.artist-content .photos.open .photos-container {
  max-height: 435px;
  height: 420px;
}

.artist table td span.artist-content .photos.open ~ .social {
  border-top: 3px solid black;
  margin-top: 3px;
}


.artist table td span.artist-content .photos-container img {
}

.artist table td span.artist-content .photos img {
  height: 400px;
  display: inline-block;
  overflow: scroll;
}

/*
.artist table td span.artist-content .photos:hover {
  animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
}
*/

.artist table td span.artist-content .social-closed {
  width: 100%;
  display: none;
}

.artist table td span.artist-content.open .photos-closed {
  display: block;
}

.artist table td span.artist-content .social {
  display: none;
  overflow: visible;
  width: 125.5%;
  margin-left: -25.5%;
  padding-left: 25.2%;
}

.artist table td span.artist-content .social a {
  display: none;
}

.artist table td span.artist-content.open .social {
  display: block;
  border: none;
}

.artist table td span.artist-content.open .social a {
  display: inline-block;
}

.artist table td .polaroid {
  top: 63px;
  right: calc(16% - 10px);
  width: 300px;
  border: none;
  display: none;
  position: fixed;
}

.artist table td .polaroid img {
  margin-top: 10px;
  float: right;
  max-width: 300px;
  border: 3px solid white;
}

@media screen and (min-width: 992px) {

  .artist .artists-years {
    width: 20%;
    margin-top: 0;
  }

  .artist .artists-years ul {
    width: 95%;
  }

  .artist .artists-years ul li:first-child {
    border-top: 3px solid black;
  }

  .artist .artists-years ul li {
    width: 100%;
    display: block;
    border-bottom: 3px solid black;
    padding-top: 3px;
    padding-right: 0;
  }

  .artist .artists-years ul li a {

  }

  .artist table {
    width: 80%;
  }

  .artist table td span.artist-content.open {
    max-height: 1000px;
    overflow: hidden;
  }

  .artist table td span.artist-content.open .video {
    width: 100%;
    margin: 0;
  }

  .artist table td span.artist-content .social {
    overflow: visible;
    width: 100%;
    margin: 0;
    padding-left: 0;
  }

  .artist table td span.artist-content .photos {
    width: 100%;
    margin: 0;
    margin-top: 3px;
  }

  .artist table td .artist-content:hover .polaroid {
    display: block;
  }

  .artist table td .artist-content.open:hover .polaroid {
    display: none;
  }

  .artist table td .artist-content.closed:hover .polaroid {
    display: none;
  }

  .artist table th.month-day {
    width: 10%;
  }

  .artist table th span {
  }

  .artist table th span.artist-content {
    width: calc(100% - 39px);
  }

  .artist table td span.artist-content {
    width: calc(100% - 39px);
  }

  .artist table td span.artist-content.open .video.open {
    max-height: 460px;
    height: 430px;
  }

  .artist table td span.artist-content .photos.open {
    max-height: 460px;
    height: 440px;
  }

  .artist table td span.artist-content .video h5 {
    padding-left: 0;
  }

  .artist table td span.artist-content .photos h5 {
    padding-left: 0;
  }

}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}