body {
  background-image: linear-gradient(45deg, #fafafa 35%, #ffffff 35%, #ffffff 50%, #fafafa 50%, #fafafa 85%, #ffffff 85%, #ffffff 100%);
  background-size: 14.14px 14.14px;
  margin: 0;
}

.wrapper {
  position: absolute;
  top: 50%;
  width: calc(100% - 20px);
  padding: 0 10px;
  transform: translatey(-50%);
}

@media only all and (max-width: 45em) {
  .Pane-content {
    text-align: center !important;
  }
  .Pane-content .Content-wrapper {
    flex-direction: column !important;
  }
  .Pane-content .Content-wrapper .Pane-img {
    height: 0px !important;
    width: 0px !important;
  }
  .Pane-content .Content-wrapper .Pane-img .Art {
    animation: none !important;
    background-image: none !important;
  }
  .Pane-content .Content-wrapper .Pane-txt {
    padding: 20px 50px !important;
  }
  .Pane-content .Content-wrapper .Pane-txt#txt1 {
    animation: 0.5s txtSlideTop 0.1s forwards !important;
  }
  .Pane-content .Content-wrapper .Pane-txt#txt2 {
    animation: 0.5s txtSlideTop 0.5s forwards !important;
  }
  .Pane-content .Content-wrapper .Pane-txt:nth-of-type(2):after {
    width: 240px !important;
    height: 1px !important;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 90%) !important;
    position: absolute;
    left: -10px !important;
    top: 100% !important;
  }
  .Pane-content .Content-wrapper .Pane-txt div {
    line-height: 1.5em !important;
  }
  .Pane-content .Content-wrapper .Pane-txt div:nth-child(1) {
    font-size: 1.4rem !important;
  }
  .Pane-content .Content-wrapper .Pane-txt div:nth-child(3) {
    font-size: 0.9rem !important;
  }
}
.Pane-content {
  position: relative;
  margin: 0 auto;
  max-width: 1600px;
  text-align: left;
  background-color: #09273e;
}
.Pane-content .Content-wrapper {
  display: flex;
  align-items: center;
}
.Pane-content .Content-wrapper .Pane-img {
  height: 200px;
  width: 220px;
}
.Pane-content .Content-wrapper .Pane-img .Art {
  animation: imgPopIn 0.5s forwards;
  position: absolute;
  width: 220px;
  height: 220px;
  top: -10px;
  z-index: 1;
  background-image: url("../img/Button-White-Large.png");
  filter: drop-shadow(2px 2px 3px #333);
  background-position: center;
  background-size: cover;
}
.Pane-content .Content-wrapper .Pane-txt {
  padding: 0 50px 0 20px;
  position: relative;
  opacity: 0;
}
.Pane-content .Content-wrapper .Pane-txt#txt1 {
  animation: 0.5s txtSlideLeft 0.6s ease-out forwards;
}
.Pane-content .Content-wrapper .Pane-txt#txt2 {
  animation: 0.5s txtSlideLeft 1.1s ease-out forwards;
}
.Pane-content .Content-wrapper .Pane-txt:nth-of-type(2):after {
  content: "";
  width: 1px;
  height: 240px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(10%, rgba(255, 255, 255, 0)), color-stop(40%, rgba(255, 255, 255, 0.3)), color-stop(60%, rgba(255, 255, 255, 0.3)), color-stop(90%, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0) 90%);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.Pane-content .Content-wrapper .Pane-txt div {
  font-family: "Semplicita Pro", "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.296rem;
  line-height: 1.5em;
  color: #fff;
  text-shadow: 0 0 1px transparent, 0 1px 2px rgba(0, 0, 0, 0.8);
}
.Pane-content .Content-wrapper .Pane-txt div.white {
  color: #F2F2F3;
}
.Pane-content .Content-wrapper .Pane-txt div.gold {
  color: #f8b700;
}
.Pane-content .Content-wrapper .Pane-txt div.grey {
  color: #9c9c9cbf;
}
.Pane-content .Content-wrapper .Pane-txt div:nth-child(1) {
  font-size: 1.1rem;
}
.Pane-content .Content-wrapper .Pane-txt div:nth-child(3) {
  font-size: 0.9rem;
}

@keyframes imgPopIn {
  from {
    opacity: 0.2;
    transform: scale(1.4);
  }
}
@keyframes txtSlideLeft {
  from {
    left: -20px;
    opacity: 0;
  }
  to {
    left: 0px;
    opacity: 1;
  }
}
@keyframes txtSlideTop {
  from {
    top: -20px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 1;
  }
}