/* @import url(https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap); */

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: Jost, Helvetica, Arial, sans-serif;
  font-feature-settings: normal;
  font-variation-settings: normal;
}

header {
  background: rgba(255, 255, 255, 0.7);
}


/* MODAL STYLES
-------------------------------*/
.jw-modal {
  /* modals are hidden by default */
  display: none;

  /* modal container fixed across whole screen */
  position: fixed;
  inset: 0;

  /* z-index must be higher than everything else on the page */
  z-index: 10000;
  
  /* semi-transparent black background exposed by padding */
  background-color: rgba(0, 0, 0, .75);
  padding: 40px;

  /* enables scrolling for tall modals */
  overflow: auto;
}

.jw-modal.open {
  display: block;
}

.jw-modal-body {
  padding: 20px;
}

body.jw-modal-open {
  /* body overflow is hidden to hide main scrollbar when modal window is open */
  overflow: hidden;
}

#subscribe {
  margin: 0 auto;
}

.block {
  display: block;
}

.w-100 {
  width: 100%;
}

.t-center {
  text-align: center;
}

#subscribe .jw-modal-body {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 30%;
  /* background-color: white;
  padding: 20px;
  border: 1px solid rgb(23, 27, 46);
  background: #446497;
  color: #fff; */
}

@media (max-width: 1023px) {
  #subscribe .jw-modal-body {
    width: 90%;
  }
}

@media (min-width: 1024px) {
  #subscribe .jw-modal-body {
    width: 40%;
  }
}

@media (min-width: 3084px) {
  #subscribe .jw-modal-body {
    width: 20%;
  }
}

#subscribe .jw-modal-body .send button {
  display: block;
  width: 100%;
  padding: 15px 0;
  margin-top: 50px;
}

.form.error.hide {
  display: none;
}

.form-error {
  color: red;
  padding: 5px;
}

.container.terms h1 {
  font-weight: bold;
  font-size: xx-large;
}

.container.terms h2 {
  font-weight: bold;
  font-size: x-large;
}

.container.terms ul {
  list-style: inherit;
  margin: inherit;
  padding: inherit;
  padding-bottom: 0.5rem;
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent; }
  .btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent; }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none; }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none; }
