@charset "UTF-8";
@keyframes onAutoFillStart {
  from { /**/ }
  to { /**/ }
}
@keyframes onAutoFillCancel {
  from { /**/ }
  to { /**/ }
}
input:-webkit-autofill, select:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s;
}

input:not(:-webkit-autofill), select:not(:-webkit-autofill) {
  animation-name: onAutoFillCancel;
}

body > main input[type=checkbox], body > main input[type=radio] {
  appearance: none;
  vertical-align: sub;
  width: 20px;
  height: 20px;
  border: 0;
  cursor: pointer;
}
body > main input[type=checkbox]::before, body > main input[type=radio]::before {
  background-color: #f3f3f3;
  content: "✔";
  align-items: center;
  justify-content: center;
  display: flex;
  height: 20px;
  color: #f3f3f3;
  width: 20px;
  transition: 0.18s ease;
  box-shadow: inset 0 0 10px #e7e7e7;
  padding-top: 1px;
}
body > main input[type=radio]::before {
  content: "";
}
body > main input[type=checkbox]:checked::before, body > main input[type=radio]:checked::before {
  background: #0088ce;
  color: #fff;
  box-shadow: inset 0 0 10px transparent;
  content: "✔";
  display: flex;
  align-items: center;
  justify-content: center;
}
body > main input[type=radio]:checked::before {
  content: "";
}
body > main select:not([data-role=limiter]) {
  background: #ededed;
  border-color: #ededed;
  border-radius: 0;
  border-style: solid;
  border-width: 1.5px;
  font-weight: 500;
  height: 40px;
  line-height: 20px;
  padding: 10px;
  color: #b3b3b3;
  font-size: 14px;
}
body > main button, body > main select {
  text-transform: none;
}
body > main button, body > main input, body > main optgroup, body > main select, body > main textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

.jpp-loader {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: wait;
  /*
  &::after {
      content:'Loading, please wait...';
      position: relative;
      display:inline-block;
      @include small-typography;
  }
  */
}
.jpp-loader::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  background-image: url("https://www.jpplus.com/assets/images/loader-blue.gif");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.jpp-loader span {
  font-weight: 500;
  line-height: 12px;
  padding: 4px 10px;
  background-color: #cce7f5;
  border-color: #004f94;
  color: #004f94;
  border-radius: 25px;
  font-size: 11px;
}

.jpp-component-input, .jpp-component-select, .jpp-component-textarea {
  position: relative;
  margin-top: 5px;
}
.jpp-component-input.empty label, .jpp-component-select.empty label, .jpp-component-textarea.empty label {
  color: #b3b3b3;
  top: 30px;
}
.jpp-component-input label, .jpp-component-select label, .jpp-component-textarea label {
  opacity: 1;
  font-size: 14px;
  z-index: 1;
  pointer-events: none;
  position: relative;
  font-weight: 600;
  transition: 0.24s ease;
  padding-left: 12px;
  user-select: none;
}
.jpp-component-input label span.required, .jpp-component-select label span.required, .jpp-component-textarea label span.required {
  color: #0088ce;
  font-size: inherit !important;
  margin-left: 2px;
}
.jpp-component-input input, .jpp-component-input select, .jpp-component-input textarea, .jpp-component-select input, .jpp-component-select select, .jpp-component-select textarea, .jpp-component-textarea input, .jpp-component-textarea select, .jpp-component-textarea textarea {
  border: 1.5px solid transparent;
  transition: 0.24s ease;
  margin-top: 0;
  width: 100%;
  outline: none;
}
.jpp-component-input.focus label, .jpp-component-input.valid label, .jpp-component-input.error:not(.empty) label, .jpp-component-select.focus label, .jpp-component-select.valid label, .jpp-component-select.error:not(.empty) label, .jpp-component-textarea.focus label, .jpp-component-textarea.valid label, .jpp-component-textarea.error:not(.empty) label {
  top: 2px;
  font-size: 12px;
  color: #222;
}
.jpp-component-input.focus input, .jpp-component-input.focus select, .jpp-component-input.focus textarea, .jpp-component-select.focus input, .jpp-component-select.focus select, .jpp-component-select.focus textarea, .jpp-component-textarea.focus input, .jpp-component-textarea.focus select, .jpp-component-textarea.focus textarea {
  border: 1.5px solid #0088ce;
}
.jpp-component-input.valid input, .jpp-component-input.valid select, .jpp-component-input.valid textarea, .jpp-component-select.valid input, .jpp-component-select.valid select, .jpp-component-select.valid textarea, .jpp-component-textarea.valid input, .jpp-component-textarea.valid select, .jpp-component-textarea.valid textarea {
  border: 1.5px solid #68bb5b;
}
.jpp-component-input.error input, .jpp-component-input.error select, .jpp-component-input.error textarea, .jpp-component-select.error input, .jpp-component-select.error select, .jpp-component-select.error textarea, .jpp-component-textarea.error input, .jpp-component-textarea.error select, .jpp-component-textarea.error textarea {
  border: 1.5px solid #b81f27;
}
.jpp-component-input.first-name, .jpp-component-select.first-name, .jpp-component-textarea.first-name {
  margin-right: 12px;
}
.jpp-component-input.first-name, .jpp-component-input.last-name, .jpp-component-select.first-name, .jpp-component-select.last-name, .jpp-component-textarea.first-name, .jpp-component-textarea.last-name {
  width: calc(50% - 6px);
  float: left;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.jpp-component-input .mage-error, .jpp-component-select .mage-error, .jpp-component-textarea .mage-error {
  position: absolute;
  font-size: 11px;
  transform: translateY(2px);
  color: #b81f27;
  right: 0;
}
.jpp-component-input .field-tooltip, .jpp-component-select .field-tooltip, .jpp-component-textarea .field-tooltip {
  display: inline-block !important;
  margin-top: 30px;
  margin-right: 1px;
}

.jpp-component-select {
  position: relative;
}
.jpp-component-select label {
  z-index: 5;
}
.jpp-component-select select {
  color: #222;
  padding-left: 7px;
}
.jpp-component-select.empty:not(.focus) select {
  color: transparent;
}
.jpp-component-select:before {
  position: absolute;
  content: "";
  bottom: 1.5px;
  left: 1.5px;
  right: 20px;
  background: #ededed;
  pointer-events: none;
  transition: 0.18s ease;
  height: 37px;
}
.jpp-component-select:hover:before {
  background: #f5f5f5;
}
.jpp-component-select.focus:before, .jpp-component-select.valid:before, .jpp-component-select.error:before {
  opacity: 0;
}
.jpp-component-select.error.empty label {
  top: 2px;
  font-size: 12px;
  color: #222;
}
.jpp-component-select option {
  color: #222 !important;
}

.jpp-component-textarea textarea {
  background: #ededed;
  width: 100%;
  min-height: 150px;
  font-size: 14px;
  font-weight: 500;
  font-family: "proxima-nova", sans-serif;
  padding: 10px;
}
.jpp-component-textarea textarea::placeholder {
  font-size: 14px;
  font-weight: 600;
  font-family: "proxima-nova", sans-serif;
  color: #b3b3b3;
}

.jpp-readmore-component .wrapper {
  position: relative;
  overflow-y: hidden;
  transition: height 0.4s ease;
}
.jpp-readmore-component.controls:not(.expanded) .wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 26px;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.56) 40%, rgba(255, 255, 255, 0) 90%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: 0.9s ease;
  z-index: 100;
}
.jpp-readmore-component .toggle {
  font-weight: 800;
  background: #fff;
  border: 0px solid transparent;
  border-radius: 0px;
  width: 400px;
  max-width: calc(100% - 32px);
  line-height: 40px;
  text-align: center;
  display: block;
  font-size: 14px;
  user-select: none;
  transition: 0.18s ease;
  box-shadow: 0px 0px 2px rgba(2, 2, 2, 0.28);
  padding: 0;
  opacity: 1;
  pointer-events: auto;
  margin: 20px auto 4px;
  height: 40px;
}
@media (max-width: 1440px) {
  .jpp-readmore-component .toggle {
    transform: scale(0.88);
  }
}
.jpp-readmore-component .toggle:hover {
  background: #0088ce;
  color: #fff;
  box-shadow: 0px 0px 2px rgba(2, 2, 2, 0.28);
  filter: brightness(1.1);
}
.jpp-readmore-component .toggle:hover span {
  color: #fff;
}
.jpp-readmore-component .toggle span {
  font-size: 14px;
  font-weight: 800;
  user-select: none;
  transition: 0.18s ease;
  color: #0088ce;
}

.jpp-component-input {
  /* Hide the "mm/dd/yyyy" text */
  /* Show the text again when focused or valid */
}
.jpp-component-input input[type=date] {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.jpp-component-input input[type=date]::-webkit-datetime-edit-text,
.jpp-component-input input[type=date]::-webkit-datetime-edit-month-field,
.jpp-component-input input[type=date]::-webkit-datetime-edit-day-field,
.jpp-component-input input[type=date]::-webkit-datetime-edit-year-field {
  color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.jpp-component-input.focus input[type=date]::-webkit-datetime-edit-text, .jpp-component-input.focus input[type=date]::-webkit-datetime-edit-month-field, .jpp-component-input.focus input[type=date]::-webkit-datetime-edit-day-field, .jpp-component-input.focus input[type=date]::-webkit-datetime-edit-year-field, .jpp-component-input.valid input[type=date]::-webkit-datetime-edit-text, .jpp-component-input.valid input[type=date]::-webkit-datetime-edit-month-field, .jpp-component-input.valid input[type=date]::-webkit-datetime-edit-day-field, .jpp-component-input.valid input[type=date]::-webkit-datetime-edit-year-field {
  color: #222;
}

.field-tooltip .field-tooltip-content._active {
  display: block;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
  animation-duration: 1s;
  animation-fill-mode: both;
}

#sns_main {
  padding-bottom: 80px;
}

body > main {
  background: linear-gradient(to right, #fff 0%, #f7f7f7 50%, #fff 100%);
}
body > main a {
  transition: all 0.24s ease, height 0s;
  transition-delay: 0s;
  color: #0088ce;
  text-decoration: underline !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
body > main > .modals-wrapper {
  display: none;
  pointer-events: none;
}
body > main .g-recaptcha {
  transform: translateY(-40px);
}
body > main div.breadcrumbs {
  margin-bottom: 0;
}
body > main main.page-main {
  width: 100%;
  max-width: 100% !important;
}
body > main .page-title-wrapper {
  left: 50%;
  margin-left: -50vw;
  max-width: 100vw;
  min-width: 100vw;
  position: relative;
  background: linear-gradient(to bottom, #0084C8 0%, #005480 100%);
  box-sizing: border-box;
  padding: 24px 15px 32px;
}
@media (max-width: 768px) {
  body > main .page-title-wrapper {
    padding: 32px 15px 44px;
  }
}
@media (max-width: 500px) {
  body > main .page-title-wrapper {
    padding: 36px 15px 60px;
  }
}
@media (min-width: 768px) {
  body > main .page-title-wrapper {
    padding-bottom: 70px;
    padding-top: 38px;
    text-align: center;
  }
}
body > main .page-title-wrapper .page-title {
  text-transform: unset;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  body > main .page-title-wrapper .page-title {
    text-align: center;
  }
}
@media (max-width: 500px) {
  body > main .page-title-wrapper .page-title {
    width: 316px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}
body > main .page-title-wrapper .page-title span {
  font-weight: 800;
  color: #353535;
  font-size: 24px;
  line-height: 120%;
  margin: 16px 0;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-transform: unset;
}
@media (min-width: 992px) {
  body > main .page-title-wrapper .page-title span {
    font-size: 32px;
    margin: 24px 0;
  }
}
body > main .page-title-wrapper .page-subtitle {
  font-weight: 500;
  color: #353535;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 10px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  body > main .page-title-wrapper .page-subtitle {
    text-align: center;
  }
}
@media (max-width: 500px) {
  body > main .page-title-wrapper .page-subtitle {
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.4;
  }
}
body > main .header-area {
  min-height: 240px;
  background: linear-gradient(to bottom, #0084C8 0%, #005480 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body > main .header-area .content {
  transform: translateY(-14px);
}
body > main .header-area h1 {
  color: #fff;
  text-transform: none !important;
  text-align: center;
  font-size: 40px;
}
@media (max-width: 768px) {
  body > main .header-area h1 {
    font-size: 32px;
  }
}
@media (max-width: 500px) {
  body > main .header-area h1 {
    font-size: 24px;
  }
}
body > main .header-area h2 {
  color: #fff;
  text-transform: none !important;
  text-align: center;
  font-size: 19px;
  font-weight: 600;
}
@media (max-width: 768px) {
  body > main .header-area h2 {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  body > main .header-area h2 {
    font-size: 14px;
  }
}
@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    top: 32px;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
body > main #login-register-vue {
  display: flex;
  flex-direction: column;
  width: 524px;
  max-width: calc(100% - 32px);
  margin: 0 auto 64px;
  background: #fff;
  box-shadow: 0 0 16px rgba(50, 50, 50, 0.05);
  transform: translateY(-28px);
  min-height: 520px;
  opacity: 0;
  animation: fadeUp 0.5s ease;
  animation-delay: 0.28s;
  animation-fill-mode: forwards;
  position: relative;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body > main #login-register-vue {
    opacity: 1 !important;
    animation: none !important;
  }
}
body > main #login-register-vue > div {
  transition: all 0.24s ease, height 0s, width 0s, padding 0s;
}
body > main #login-register-vue > div.busy {
  filter: saturate(0.5);
  cursor: wait !important;
}
body > main #login-register-vue > div.busy button {
  cursor: wait !important;
}
body > main #login-register-vue > div.busy button:before {
  animation: loading 1.2s ease infinite;
}
body > main #login-register-vue .inner-wrapper {
  padding: 46px 96px 96px;
}
@media (max-width: 1200px) {
  body > main #login-register-vue .inner-wrapper {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  body > main #login-register-vue .inner-wrapper {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  body > main #login-register-vue .inner-wrapper {
    padding: 24px;
  }
}
body > main #login-register-vue .inner-wrapper .email-confirmation {
  display: flex;
  align-items: center;
  justify-content: center;
}
body > main #login-register-vue .inner-wrapper .email-confirmation .email-confirmation-link {
  white-space: nowrap;
  color: #0088ce;
  font-size: 13px;
  font-weight: 700;
  margin-top: 16px;
  opacity: 0.66;
  text-decoration: none !important;
}
body > main #login-register-vue .inner-wrapper .email-confirmation .email-confirmation-link:hover {
  opacity: 1;
}
body > main #login-register-vue ul.tabs {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1) -20%, rgba(0, 0, 0, 0.05) 10%, rgba(0, 0, 0, 0) 100%);
}
body > main #login-register-vue ul.tabs li {
  flex: 1;
  background: transparent;
  height: 58px;
  line-height: 58px;
  position: relative;
  margin: 0;
  transition: all 0.18s, background 0.32s ease;
}
body > main #login-register-vue ul.tabs li.active {
  background: #fff;
}
body > main #login-register-vue ul.tabs li.active a {
  color: #0088ce;
  cursor: default;
}
body > main #login-register-vue ul.tabs li.active a span {
  cursor: default;
}
body > main #login-register-vue ul.tabs li:after, body > main #login-register-vue ul.tabs li:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.04));
  transition: all 0.18s, opacity 0.32s ease;
  pointer-events: none;
}
body > main #login-register-vue ul.tabs li:before {
  z-index: -1;
}
body > main #login-register-vue ul.tabs li:not(.active):after {
  opacity: 1;
}
body > main #login-register-vue ul.tabs li a {
  color: #888;
  text-decoration: none;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
body > main #login-register-vue ul.tabs li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  pointer-events: none;
  width: 100%;
  transition: 0.18s ease;
}
@media (max-width: 480px) {
  body > main #login-register-vue ul.tabs li a span {
    width: calc(100% - 24px);
  }
}
body > main #login-register-vue ul.tabs li a:hover span {
  color: #0088ce;
  transition: 0.18s ease;
}
body > main #login-register-vue ul.tabs li.login a span, body > main #login-register-vue ul.tabs li.register a span {
  font-size: 14px;
  line-height: 14px;
}
body > main #login-register-vue ul.tabs li.login.active:before {
  right: auto;
  left: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
  width: 36px;
  opacity: 0.28;
}
body > main #login-register-vue ul.tabs li.register.active:before {
  right: 100%;
  left: auto;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
  width: 16px;
  opacity: 0.28;
}
body > main #login-register-vue ul.tabs li.register.active + li:before {
  right: auto;
  left: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
  width: 16px;
  opacity: 0.28;
}
body > main #login-register-vue .field.choice p, body > main #login-register-vue .field.choice label span {
  font-size: 13px;
  margin: 2px 0;
}
body > main #login-register-vue .field.choice input[type=radio] + label {
  margin-right: 12px;
}
body > main #login-register-vue .field.choice.newsletter {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
body > main #login-register-vue .field.choice.newsletter input {
  margin-top: 0;
  margin-right: 10px;
}
body > main #login-register-vue .form-label {
  font-size: 14px;
  color: #000;
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 800;
}
body > main #login-register-vue .separator {
  margin: 24px 0;
}
body > main #login-register-vue .separator span {
  font-size: 14px;
  color: #000;
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 800;
}
body > main #login-register-vue .separator span:before, body > main #login-register-vue .separator span:after {
  position: absolute;
  content: "";
  height: 1px;
  background: #e7e7e7;
  top: 50%;
  transform: translateY(-50%);
  width: calc(50% - 20px);
}
body > main #login-register-vue .separator span:before {
  left: 0;
}
body > main #login-register-vue .separator span:after {
  right: 0;
}
body > main #login-register-vue .panel-title {
  text-transform: none !important;
  font-size: 20px;
  text-align: center;
}
body > main #login-register-vue .to-find {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
body > main #login-register-vue .to-find span, body > main #login-register-vue .to-find a {
  font-size: 14px;
  font-weight: 800;
}
body > main #login-register-vue .to-find a {
  text-decoration: none !important;
  margin-left: 12px;
  cursor: pointer;
}
body > main #login-register-vue .forgot-password, body > main #login-register-vue .find-your-account, body > main #login-register-vue .back-to-login {
  opacity: 0.66;
  transition: 0.24s ease;
  font-weight: 700;
  text-decoration: none !important;
  display: block;
  width: 156px;
  text-align: center;
  margin: 16px auto 12px;
  color: #646464;
  font-size: 13px;
}
body > main #login-register-vue .forgot-password:hover, body > main #login-register-vue .find-your-account:hover, body > main #login-register-vue .back-to-login:hover {
  opacity: 1;
}
body > main #login-register-vue button.submit, body > main #login-register-vue a.submit {
  width: 100%;
  font-size: 14px !important;
  margin-top: 24px;
  display: block;
  text-align: center;
  transition: 0.24s ease;
  overflow: hidden;
  position: relative;
  height: 52px !important;
  line-height: 52px !important;
  padding: 0 16px !important;
  user-select: none;
  cursor: pointer;
}
body > main #login-register-vue button.submit:before, body > main #login-register-vue a.submit:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  width: 100%;
  left: -100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 55%, rgba(255, 255, 255, 0) 100%);
  transition: 0s;
  opacity: 0.24;
  pointer-events: none;
}
@media (max-width: 480px) {
  body > main #login-register-vue button.submit.finish-account span, body > main #login-register-vue a.submit.finish-account span {
    display: none;
  }
}
body > main #login-register-vue .submit-code p {
  line-height: 1.2;
}
body > main #login-register-vue .submit-code input[type=number] {
  -moz-appearance: textfield;
}
body > main #login-register-vue .submit-code input[type=number]::-webkit-outer-spin-button, body > main #login-register-vue .submit-code input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body > main #login-register-vue p.response {
  font-size: 14px;
  text-align: center;
  margin: 24px 0;
  line-height: 1.2;
}
body > main #login-register-vue p.response span {
  font-size: inherit;
  line-height: 1.2;
}
body > main #login-register-vue p.response .success {
  color: #68bb5b;
}
body > main #login-register-vue p.response .fail {
  color: #C81313;
}
body > main #login-register-vue input[readonly=readonly] {
  border: none !important;
  opacity: 0.7;
}
body > main #login-register-vue .second-button {
  animation: revealGlow 1.4s ease-in-out;
  animation-delay: 0.32s;
  animation-fill-mode: forwards;
}
@keyframes revealGlow {
  0% {
    box-shadow: 0 0 4px rgba(0, 136, 206, 0);
    filter: brightness(1);
  }
  66% {
    filter: brightness(1.28);
    box-shadow: 0 0 24px rgba(0, 136, 206, 0.4);
  }
  100% {
    box-shadow: 0 0 4px rgba(0, 136, 206, 0);
    filter: brightness(1);
  }
}
body > main .login-container {
  padding: 52px;
}
@media (max-width: 992px) {
  body > main .login-container {
    padding: 32px;
  }
}
@media (max-width: 500px) {
  body > main .login-container {
    padding: 16px;
  }
}
body > main .login-container .password-strength-meter-label {
  font-size: 14px;
}
body > main .login-container .fieldset {
  margin-bottom: 0;
}
body > main .login-container .fieldset:after {
  margin-left: 0;
  text-align: center;
}
body > main .login-container div.primary {
  margin: 0 auto;
  display: block;
  float: none;
}
body > main .modals-wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 100vw;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
  body > main .modals-wrapper form {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
  }
}
body > main .modals-wrapper form .modal-title {
  margin: 0;
}
@media (max-width: 480px) {
  body > main .modals-wrapper form .modal-title {
    padding: 0;
  }
}
body > main .modals-wrapper form header, body > main .modals-wrapper form .modal-content, body > main .modals-wrapper form footer {
  padding: 16px;
}
body > main .modals-wrapper .modals-overlay {
  height: 144vh;
  position: fixed;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 480px) {
  body > main .modals-wrapper .modals-overlay {
    height: 200vh;
  }
}
body > main .confirm-password-hint a {
  height: 20px;
  position: absolute;
  bottom: 9px;
  right: -30px;
  width: 20px;
}
@media (max-width: 768px) {
  body > main .confirm-password-hint a {
    right: -22px;
  }
}
body > main .confirm-password-hint a svg {
  top: 3px;
  left: -3px;
  height: 13px;
  position: relative;
  float: right;
}
body > main .confirm-password-hint a:hover svg path {
  fill: #f58220;
}
body > main .confirm-password-hint a:hover svg circle {
  stroke: #f58220;
}
body > main .password-requirements-info {
  background-color: #cce7f5;
  border-color: #004f9d;
  color: #004f9d;
  line-height: 18px;
  padding: 8px 8px 17px;
  margin-top: 25px;
}
body > main .password-requirements-info a {
  z-index: 1;
  font-size: 26px;
  font-weight: 800;
  float: right;
  margin-left: 17px;
  position: relative;
  text-decoration: none !important;
}
body > main .password-requirements-info ul {
  padding-right: 30px;
  margin-bottom: -10px;
  margin-top: -1px;
  padding-inline-start: 20px;
}
body > main .password-requirements-info ul li {
  font-size: 13px;
  color: rgb(0, 79, 157);
  line-height: 24px;
}

/* Social Login */
.amsl-login-page,
.amsl-cart-page,
.am-sl-registration-page {
  margin: 10px 0 0;
}
.amsl-login-page div.divider,
.amsl-cart-page div.divider,
.am-sl-registration-page div.divider {
  display: none;
}
.amsl-login-page span.am-title,
.amsl-cart-page span.am-title,
.am-sl-registration-page span.am-title {
  font-size: 14px;
  color: #000;
  position: relative;
  margin: 0 auto;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 800;
}
.amsl-login-page .am-social-login,
.amsl-cart-page .am-social-login,
.am-sl-registration-page .am-social-login {
  background: none;
  padding: 0;
}
.amsl-login-page .am-social-login .am-title,
.amsl-cart-page .am-social-login .am-title,
.am-sl-registration-page .am-social-login .am-title {
  font-weight: 800;
  color: #353535;
  display: block;
  font-size: 14px;
  margin: 0 auto 18px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.amsl-login-page .am-social-login .am-title.-short,
.amsl-cart-page .am-social-login .am-title.-short,
.am-sl-registration-page .am-social-login .am-title.-short {
  display: none;
}
.amsl-login-page .am-social-login .am-buttons,
.amsl-cart-page .am-social-login .am-buttons,
.am-sl-registration-page .am-social-login .am-buttons {
  flex-wrap: nowrap;
  width: 100%;
}
.amsl-login-page .am-social-login .am-button-wrapper,
.amsl-cart-page .am-social-login .am-button-wrapper,
.am-sl-registration-page .am-social-login .am-button-wrapper {
  margin: 0 0 12px;
  width: 100%;
}
.amsl-login-page .am-social-login .am-button-wrapper:last-of-type,
.amsl-cart-page .am-social-login .am-button-wrapper:last-of-type,
.am-sl-registration-page .am-social-login .am-button-wrapper:last-of-type {
  margin-bottom: 0;
}
.amsl-login-page .am-social-login .am-button-wrapper:last-child,
.amsl-cart-page .am-social-login .am-button-wrapper:last-child,
.am-sl-registration-page .am-social-login .am-button-wrapper:last-child {
  margin-right: 0;
}
.amsl-login-page .am-social-login .am-button-wrapper.-rectangular .am-sl-button,
.amsl-cart-page .am-social-login .am-button-wrapper.-rectangular .am-sl-button,
.am-sl-registration-page .am-social-login .am-button-wrapper.-rectangular .am-sl-button {
  border-radius: 0;
}
.amsl-login-page .am-social-login .am-sl-button,
.amsl-cart-page .am-social-login .am-sl-button,
.am-sl-registration-page .am-social-login .am-sl-button {
  background: none;
  border: 1px solid #dfdfdf;
  box-shadow: none;
  color: #353535;
  display: flex;
  height: 40px;
  justify-content: center;
  text-align: center;
  text-decoration: none !important;
  width: unset;
}
.amsl-login-page .am-social-login .am-sl-button:visited,
.amsl-cart-page .am-social-login .am-sl-button:visited,
.am-sl-registration-page .am-social-login .am-sl-button:visited {
  color: #353535;
}
.amsl-login-page .am-social-login .am-sl-button:hover,
.amsl-cart-page .am-social-login .am-sl-button:hover,
.am-sl-registration-page .am-social-login .am-sl-button:hover {
  background: none;
  color: #0088CE;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}
.amsl-login-page .am-social-login .am-sl-button span,
.amsl-cart-page .am-social-login .am-sl-button span,
.am-sl-registration-page .am-social-login .am-sl-button span {
  font-size: 14px;
  line-height: 38px;
}
.amsl-login-page .am-social-login .am-sl-button .am-social-icon,
.amsl-cart-page .am-social-login .am-sl-button .am-social-icon,
.am-sl-registration-page .am-social-login .am-sl-button .am-social-icon {
  background-image: none;
  line-height: 40px;
}
.amsl-login-page .am-social-login .am-sl-button .am-social-icon::before,
.amsl-cart-page .am-social-login .am-sl-button .am-social-icon::before,
.am-sl-registration-page .am-social-login .am-sl-button .am-social-icon::before {
  vertical-align: unset !important;
}
.amsl-login-page .am-social-login .am-sl-button.-facebook .am-social-icon,
.amsl-cart-page .am-social-login .am-sl-button.-facebook .am-social-icon,
.am-sl-registration-page .am-social-login .am-sl-button.-facebook .am-social-icon {
  background: #3b5998;
  border-radius: 100%;
  height: 17px;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
}
.amsl-login-page .am-social-login .am-sl-button.-facebook .am-social-icon::before,
.amsl-cart-page .am-social-login .am-sl-button.-facebook .am-social-icon::before,
.am-sl-registration-page .am-social-login .am-sl-button.-facebook .am-social-icon::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  content: "\f09a";
  display: inline-block;
  font-family: icomoon;
  font-size: 15px;
  vertical-align: sub;
}
.amsl-login-page .am-social-login .am-sl-button.-facebook .am-social-icon::before,
.amsl-cart-page .am-social-login .am-sl-button.-facebook .am-social-icon::before,
.am-sl-registration-page .am-social-login .am-sl-button.-facebook .am-social-icon::before {
  position: relative;
  top: -10px;
  font-size: 14px;
}
.amsl-login-page .am-social-login .am-sl-button.-google .am-social-icon,
.amsl-cart-page .am-social-login .am-sl-button.-google .am-social-icon,
.am-sl-registration-page .am-social-login .am-sl-button.-google .am-social-icon {
  background-image: url("https://www.jpplus.com/assets/images/google.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 17px;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
}
.amsl-login-page .am-social-login .am-sl-button.-twitter .am-social-icon,
.amsl-cart-page .am-social-login .am-sl-button.-twitter .am-social-icon,
.am-sl-registration-page .am-social-login .am-sl-button.-twitter .am-social-icon {
  transform: translateX(-8px);
  top: 11px;
}
.amsl-login-page .am-social-login .am-sl-button.-twitter .am-social-icon::before,
.amsl-cart-page .am-social-login .am-sl-button.-twitter .am-social-icon::before,
.am-sl-registration-page .am-social-login .am-sl-button.-twitter .am-social-icon::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #0d95e8;
  content: "\f099";
  display: inline-block;
  font-family: icomoon;
  font-size: 18px;
  vertical-align: sub;
}
.amsl-login-page .am-social-login .am-sl-button.-apple .am-social-icon::before,
.amsl-cart-page .am-social-login .am-sl-button.-apple .am-social-icon::before,
.am-sl-registration-page .am-social-login .am-sl-button.-apple .am-social-icon::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: #353535;
  content: "\eabe";
  display: inline-block;
  font-family: icomoon;
  font-size: 16px;
  vertical-align: sub;
}
.amsl-login-page .am-social-login .am-sl-button.-paypal .am-social-icon,
.amsl-cart-page .am-social-login .am-sl-button.-paypal .am-social-icon,
.am-sl-registration-page .am-social-login .am-sl-button.-paypal .am-social-icon {
  background-size: contain;
  background-repeat: no-repeat;
  height: 17px;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
}

.grecaptcha-badge {
  margin: auto;
}

body > .grecaptcha-badge, body > div > .grecaptcha-badge {
  visibility: hidden;
}

.blue-button {
  font-weight: 800;
  text-decoration: none !important;
  transition: 0.24s;
  border-radius: 0 !important;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px !important;
  line-height: 100%;
  padding: 13px 25px !important;
  text-transform: uppercase;
  background-color: #0088CE !important;
  border: 1px solid #0088CE !important;
}

.blue-button span {
  font-weight: 800;
  transition: 0.24s;
  color: #fff;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
}

.blue-button:hover, .blue-button:focus {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
  transition: 0.24s;
  background-color: #1A94D3 !important;
}

.blue-button:hover span, .blue-button:focus span {
  transition: 0.24s;
}

.blue-button:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 12px rgba(2, 2, 2, 0.12);
}

/*# sourceMappingURL=login.css.map */
