.subscription-form__form {
  display: flex;
  justify-content: center;
  width: 100%; }

.subscription-form__input {
  width: 306px; }
  .subscription-form__input input {
    border-radius: 0;
    width: 100%;
    height: 40px;
    font-size: 12px; }
    .subscription-form__input input:focus {
      border: none;
      box-shadow: none; }

.subscription-form__error {
  display: none;
  padding: 10px 0;
  color: #ed1a3b;
  font-size: 10px;
  font-weight: bold; }

.subscription-form__submit button {
  border-radius: 0;
  height: 40px; }
  .subscription-form__submit button:focus, .subscription-form__submit button:active {
    border: none;
    box-shadow: none; }

.subscription-form__has-error .subscription-form__error {
  display: block; }

.bottom-banner {
  display: flex;
  justify-content: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 54px;
  background-color: #1C2E5A;
  color: #fff;
  z-index: 100; }
  .bottom-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center; }
  .bottom-banner a, .bottom-banner a:hover {
    display: block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center; }
  .bottom-banner a, .bottom-banner form {
    padding: 0 7px; }
  .bottom-banner .subscription-form__form {
    width: 100%; }
  .bottom-banner .subscription-form__has-error .subscription-form__error {
    display: none; }
  .bottom-banner .subscription-form__has-error .subscription-form__input ::placeholder {
    font-weight: 700;
    color: #ed1a3b; }
  .bottom-banner__close {
    width: 26px;
    height: 26px;
    margin-left: 7px;
    background-image: url(/static/icons/Icon-White-Close.svg);
    background-position: center center;
    background-size: 13px 13px;
    background-repeat: no-repeat;
    cursor: pointer; }
  @media (max-width: 1099px) {
    .bottom-banner {
      height: auto; }
      .bottom-banner__inner {
        flex-direction: column;
        padding: 15px;
        max-width: 700px; }
      .bottom-banner a, .bottom-banner form, .bottom-banner .bottom-banner__close {
        padding: 7px; }
      .bottom-banner form {
        width: 100%; }
      .bottom-banner .subscription-form__input {
        width: calc(100% - 97px); } }

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 30001; }
  .overlay__close {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background-image: url(/static/Button-Close-Gray.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px 30px;
    cursor: pointer; }
    @media (max-width: 600px) {
      .overlay__close {
        display: none; } }
    .overlay__close.inside {
      width: 30px;
      height: 30px;
      background: none; }
      @media (max-width: 600px) {
        .overlay__close.inside {
          display: block; } }
  .overlay--hidden {
    visibility: hidden; }

.modal-window {
  position: fixed;
  background-color: white;
  width: 80%;
  padding: 20px;
  color: #666;
  font-size: 14px;
  cursor: default;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .modal-window__footer {
    display: flex;
    justify-content: flex-end; }
    .modal-window__footer__close {
      text-transform: uppercase;
      color: #666666;
      font-size: 14px; }
      .modal-window__footer__close:hover {
        text-decoration: none; }
  .modal-window__title {
    color: black;
    margin-bottom: 20px;
    font-size: 20px; }
  .modal-window__content {
    padding: 20px 0 20px 0;
    margin-bottom: 20px;
    border-top: solid 1px #ECECEC;
    border-bottom: solid 1px #ECECEC; }
    .modal-window__content--scrollable {
      height: calc(100vh - 220px);
      overflow: auto; }
    .modal-window__content--noheader {
      padding-top: 0;
      border-top: none; }
    .modal-window__content--nofooter {
      padding-bottom: 0;
      border-bottom: none; }
  @media (max-width: 768px) {
    .modal-window {
      width: 100%; } }
  @media (max-width: 640px) {
    .modal-window {
      top: 60px;
      transform: translate(-50%, 0);
      overflow: auto;
      max-height: calc(100% - 60px); } }
  @media (min-width: 900px) {
    .modal-window {
      max-width: 800px; } }

.popup-subscription {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .popup-subscription h3, .popup-subscription .subscription-text, .popup-subscription .sub-info {
    text-align: center; }
  .popup-subscription h3 {
    margin: 0 auto 20px auto;
    line-height: 41px;
    font-size: 35px;
    font-weight: 700;
    color: #000000; }
  .popup-subscription .subscription-text {
    font-size: 17px;
    margin-bottom: 20px; }
  .popup-subscription .iframe-box {
    width: 400px; }
  .popup-subscription .close-bottom-button {
    position: absolute;
    bottom: -40px;
    display: flex;
    justify-content: center;
    padding: 10px; }
    .popup-subscription .close-bottom-button button {
      background-color: transparent;
      color: #fff;
      box-shadow: none;
      border: none;
      text-transform: uppercase;
      font-size: 11px; }
      .popup-subscription .close-bottom-button button:hover, .popup-subscription .close-bottom-button button:active, .popup-subscription .close-bottom-button button:focus {
        border: none;
        outline: none; }
  .popup-subscription form {
    height: 80px; }
    .popup-subscription form .subscription-form__input {
      margin-right: 7px; }
      .popup-subscription form .subscription-form__input input:focus {
        outline: -webkit-focus-ring-color auto 1px; }
  .popup-subscription .sub-info {
    font-size: 11px; }
    .popup-subscription .sub-info a {
      text-decoration: underline;
      color: inherit; }
  @media (max-width: 1023px) {
    .popup-subscription h3 {
      font-size: 23px; }
    .popup-subscription .subscription-text {
      font-size: 13px; }
    .popup-subscription .iframe-box {
      width: 100%; }
    .popup-subscription form {
      width: 100%; }
    .popup-subscription .subscription-form__input {
      width: calc(100% - 97px); } }

.video-subscription {
  padding: 40px;
  margin-bottom: 30px;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: left;
  flex-direction: column;
  border: solid 1px #CCCCCC; }
  .video-subscription h3, .video-subscription .subscription-text, .video-subscription .sub-info {
    text-align: left; }
  .video-subscription h3 {
    margin: 0 auto 20px auto;
    font-size: 24px;
    font-weight: 900;
    color: #000000; }
  .video-subscription .subscription-text {
    font-size: 14px;
    margin-bottom: 20px; }
  .video-subscription form {
    height: 80px;
    width: 100%; }
    .video-subscription form .subscription-form__input {
      margin-right: 7px;
      width: calc(100% - 97px); }
      .video-subscription form .subscription-form__input input:focus {
        outline: -webkit-focus-ring-color auto 1px; }
  .video-subscription .sub-info {
    font-size: 11px; }
    .video-subscription .sub-info a {
      text-decoration: underline;
      color: inherit; }
  @media (max-width: 1023px) {
    .video-subscription {
      padding: 20px; }
      .video-subscription h3 {
        font-size: 18px; } }

