.page-template-page-subscription-new-flow .entry-title {
  display: none;
}

.jc-flow-notices {
  color: red;
}

.flow-block .image {
  display: none;
}
@media (min-width: 768px) {
  .flow-block {
    display: grid;
    grid-template-columns: 1fr 50%;
    grid-column-gap: 60px;
    align-items: top;
  }
  .flow-block .text-block {
    padding-top: 54px;
  }
  .flow-block .text-block:not(.first-step) {
    animation-duration: 400ms;
    animation-name: slidein;
    animation-direction: normal;
  }
  .flow-block .text-block.--slide-up {
    animation-duration: 400ms;
    animation-name: slideout;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  .flow-block .text-block .text {
    width: 100%;
  }
  .flow-block .image {
    display: block;
  }
}
@media (min-width: 1024px) {
  .flow-block {
    grid-column-gap: 160px;
  }
}
.flow-block .headline {
  font-family: Practice, Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 1.1;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .flow-block .headline {
    margin-bottom: 60px;
    line-height: 1.2;
  }
}
.flow-block h3 {
  font-family: PlainRegular, Helvetica, Roboto, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 30px;
}
.flow-block h4 {
  font-family: PlainRegular, Helvetica, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}
.flow-block .button {
  font-family: PlainRegular, Helvetica, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 40px;
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.flow-block .step {
  font-family: PlainRegular, Helvetica, Roboto, Arial, sans-serif;
  font-size: 12px;
}
.flow-block .advisory {
  font-family: PlainRegular, Helvetica, Roboto, Arial, sans-serif;
  font-size: 10px;
  line-height: 1.4;
  color: #959595;
  margin-top: -5px;
  margin-bottom: 20px;
  padding-left: 16px;
  background-image: url(../images/Lock-32.png);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 11px;
}
@media (min-width: 768px) {
  .flow-block .advisory {
    font-size: 12px;
    background-size: 13px;
  }
}
.flow-block [type=text], .flow-block [type=email] {
  font-family: PlainRegular, Helvetica, Roboto, Arial, sans-serif;
  font-size: 12px;
  border: 1px solid #000;
  border-radius: 5px;
}
.flow-block [type=text]::placeholder, .flow-block [type=email]::placeholder {
  color: #959595;
}

#subscription-setup .base-wrapper, #subscription-setup .start-issue-wrapper {
  width: 100%;
  margin-top: 20px;
}
@media (min-width: 768px) {
  #subscription-setup .base-wrapper, #subscription-setup .start-issue-wrapper {
    margin-top: 0;
  }
}

.tsj-subscription-renew, .tsj-subscription-flow-login {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .tsj-subscription-renew, .tsj-subscription-flow-login {
    margin-top: 0;
  }
}

@keyframes slidein {
  from {
    transform: translateY(78px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideout {
  from {
    transform: translateY(0px);
    opacity: 1;
  }
  to {
    transform: translateY(-78px);
    opacity: 0;
  }
}
