/*
* Error page
* */
.sec-error {
  position:relative;
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

.sec-error:before {
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color: #045AB2 !important
  opacity:.95;
}

.sec-error .container {
  position:relative;
  z-index:3;
}

.sec-error__content * {
  text-align:center;
  color:var(--color-white-hex);
}

.sec-error__title {
  font-size:62px;
  font-weight:600;
}

.sec-error__txt {
  font-weight:600;
  font-size:18px;
  margin-bottom:42px;
}

.sec-error__btn {
  text-align:center;
}

@media (min-width:992px) {
  .sec-error__title {
    font-size:100px;
  }
  .sec-error__txt {
    font-size:23px;
  }
}

/*
* Subscription preferences page
* */
.sec-preferences {
  padding:45px 0;
}

.sec-preferences .page-header {
  margin-bottom:32px;
  font-size:13px;
}

.sec-preferences .page-header h2 {
  font-size:19px;
  margin:0;
}

.sec-preferences .email-prefs > .header {
  font-size:33px;
  font-weight:500;
  margin-bottom:40px;
}

.sec-preferences .email-prefs .item:not(:last-child) {
  margin-bottom:32px;
}

.sec-preferences .email-prefs .item .checkbox-row {
  font-size:19px;
  font-weight:500;
}

.sec-preferences .email-prefs .item p {
  margin:0 0 0 30px;
}

.sec-preferences .hs-button {
  margin-top:40px;
}

.sec-preferences .subscribe-options {
  margin-top:54px;
}

.sec-preferences .success {
  font-size:47px;
  font-weight:500;
}

.password-protect__icon {
  margin-bottom:12px;  
}

.password-protect__title {
  text-align:center;
  margin-bottom:64px;
}


.password-protect__form form input[type="password"] {
  box-sizing:border-box;
  margin-top:0!important;
  height:unset!important;
  border-left:0;
  border-right:0;
  border-top:0;
  border-bottom:2px solid var(--color-primary-hex);
  margin-right:8px;
  margin-bottom:12px;
}

.password-protect__form form input[type="submit"] {
  box-sizing:border-box;
  margin:0;
  word-break:keep-all;
  width:100%;
}

.email-unsubscribe input[type="email"] {
  margin-top:0!important;
  height:unset!important;
  border-left:0;
  border-right:0;
  border-top:0;
  border-bottom:2px solid var(--color-primary-hex);
}

@media (min-width:992px) {
  .sec-preferences {
    padding:90px 0;
  }
  .sec-preferences .page-header {
    margin-bottom:72px;
    max-width:60%;
  }
  .password-protect__form {
    max-width:50%;
    margin:0 auto; 
  }

  .password-protect__form form {
    display:flex;
  }
  .password-protect__form form input[type="password"] {
    margin-bottom:0px;
  }
  .password-protect__form form input[type="submit"] {
    width:auto;
  }
}