#supermodal {
  width: 100%;
  display: none;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 100;
}

@media (max-width: 600px) {
  #supermodal {
    max-width: 100%;
    height: auto;
  }
}

#supermodal main {
  background: #fff;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  max-width: 1600px;
  position: relative;
}

@media (max-width: 600px) {
  #supermodal main {
    display: block;
    max-width: 100%;
    height: auto;
  }
}

#supermodal .slider {
  width: 60%;
  align-self: center;
  position: relative;
}

@media (max-width: 600px) {
  #supermodal .slider {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 50px;
  }
}

#supermodal .interaction {
  width: 40%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

@media (max-width: 600px) {
  #supermodal .interaction {
    display: block;
    width: 100%;
    height: auto;
    padding: 10px 40px 40px 40px;
  }
}

#supermodal .slider .center {
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 40%;
}

@media (max-width: 600px) {
  #supermodal .slider .center {
    width: 110%;
  }
}

#supermodal .slider .cycle-slide {
  width: 100%;
  text-align: center;
}
#supermodal .slider img {
  max-width: 80%;
  max-height: 70vh;
  margin-left: 10%;
}

@media (max-width: 600px) {
  #supermodal .slider img {
    max-width: 70%;
    max-height: 80vh;
    margin-left: 10%;
  }
}

#supermodal .slider .arrow {
  font-size: 50px;
  position: absolute;
}

#supermodal .slider .prev a,
#supermodal .slider .next a {
  display: inline-block;
  font-size: 80px !important;
  font-weight: 200;
}

#supermodal .slider .prev {
  left: 5px;
}

#supermodal .slider .next {
  right: 5px;
}

#supermodal .close {
  font-size: 50px;
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  z-index: 2;
}

#supermodal.visible {
  display: flex;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

#supermodal h1 {
  width: 100%;
  text-align: center;
  position: absolute;
  top: -70px;
  left: 20px;
}

#supermodal .slider h1 img {
  width: 130px;
}

#supermodal .interaction {
  background: #f0f0f0;
  height: 100vh;
}

#supermodal .interaction section {
  width: 100%;
}

#supermodal .interaction .author {
  font-size: 3rem;
}

@media (max-width: 600px) {
  #supermodal .interaction .author {
    font-size: 1.2rem;
    padding: 0;
  }
}

#supermodal .interaction .year {
  display: block;
  font-size: 1rem;
}

#supermodal .interaction .title {
  font-size: 1.4rem;
}

@media (max-width: 600px) {
  #supermodal .interaction .title {
    font-size: 1rem;
    padding: 0;
  }
}

#supermodal .interaction .info {
  margin: 0;
}

#supermodal .interaction span {
  display: block;
}

#supermodal .interaction .openForm,
#supermodal .interaction button {
  display: inline-block;
  padding: 10px;
  text-transform: uppercase;
  color: #999;
  border: solid 1px #999;
  font-size: 0.75rem;
}

#supermodal #forminfo {
  display: none;
}

#supermodal form label {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

#supermodal form input,
#supermodal form textarea {
  display: block;
  padding: 10px;
  margin: 10px;
  border: solid 1px #999;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  #supermodal form input,
  #supermodal form textarea {
    padding: 8px;
    margin: 5px;
  }
}

#supermodal form textarea {
  height: 100px;
}

@media (max-width: 600px) {
  #supermodal form textarea {
    height: 80px;
  }
}

#supermodal .interaction button {
  padding: 15px 40px;
  margin-left: 10px;
}

@media (max-width: 600px) {
  #supermodal .interaction button {
    padding: 8px 40px;
    margin-left: 5px;
    width: 100%;
  }
}

#supermodal .closeForm {
  font-size: 10px;
  text-decoration: underline;
  display: inline-block;
  padding: 0 30px;
}
