body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body > header,
body > main {
  width: 100%;
  max-width: 464px;
}
body > header {
  margin-bottom: 33px;
  border-bottom: 1px solid #E6E6E6;
}
#header-logo {
  height: 53px;
  margin: 32px 0 27px 0;
}
#thanks-page-title {
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 140%;
  text-align: justify;
  color: #000000;
  max-width: 464px;
}
#thanks-message-block {
  max-width: 464px;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 140%;
  text-align: justify;
  color: #000000;
  margin: 10px 0 50px 0;
}
#thanks-message-block a {
  font-weight: 700;
}

#stay-in-the-loop-section {
  max-width: 464px;
  height: auto;
  position: relative;
  background: #FFFFFF;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 20px 32px 35px 32px;
}
#stay-in-the-loop-section > h2 {
  font-weight: bold;
  font-size: 21px;
  line-height: 140%;
  max-width: 280px;
}
#privacy-policy {
  margin: 20px 8px 40px 0;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 140%;
  color: #666666;
  max-width: 280px;
}
#mail-box {
  position: absolute;
  right: 18px;
  top: -24px;
}
#join-mailing-list.disabled {
  background-color: #C6C6C6;
}
#join-mailing-list,
#email_submit_button {
  text-transform: lowercase;
  padding: 6px 24px 7px;
  width: 100%;
  height: 32px;
  background: #E40D0D;
  border-radius: 6px;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  border: none;
  color: white;
  cursor: pointer;
}
#join-mailing-list:not(.disabled):hover,
#email_submit_button:hover {
  -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
}
#join-mailing-list:first-letter,
#email_submit_button::first-letter {
  text-transform: capitalize;
}
#can-spam-text {
  font-size: 12px;
  line-height: 140%;
  color: #666666;
}
#our-blog,
#our-privacy-policy,
#mailchimp-signup {
  color: #0047FF;
  cursor: pointer;
}

#can-spam-section {
  display: flex;
}

#can-spam-required-error {
  opacity: 0;
  color: #CE0707;
  font-size: 12px;
  line-height: 140%;
  margin: 6px 0;
}
#can-spam-required-error.visualize {
  opacity: 1;
}

/* checkbox */

.checkbox-icon {
  height: 14px;
  width: 14px;
  margin-right: 6px;
  position: relative;
}

.checkbox-icon input {
  opacity: 0; /* hide but function */
  height: 14px;
  width: 14px;
  cursor: pointer;
}

.checkbox-icon input:focus-visible ~ i {
  outline: rgb(0, 95, 204) auto 1px;
}

.checkbox-icon i[class^=material-icons] {
  height: 14px;
  width: 14px;
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.checkbox-icon i.checked {
  color: #333333;
}

.checkbox-icon i.unchecked {
  color: #333333;
}

.checkbox-icon i.unchecked.error {
  color: #E40D0D;
}

.checkbox-icon input:checked ~ i.checked,
.checkbox-icon input:not(:checked) ~ i.checked {
  opacity: 1; /* show */
}

.checkbox-icon input:checked ~ i.unchecked,
.checkbox-icon input:not(:checked) ~ i.checked {
  opacity: 0; /* hide */
}

#join-mailing-list.confirming {
  cursor: not-allowed;
  pointer-events: none;
}

#join-mailing-list.confirming::before {
  position: absolute;
  animation: 1.5s linear infinite spinner;
  animation-play-state: inherit;
  border: 4px solid #333333;
  border-bottom-color: transparent;
  border-radius: 50%;
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

#subscription-confirmation {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: center;
}

#email-invalid {
  color: #E40D0D;
  margin-top: 5px;
}
#email_input {
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  width: 100%;
  padding: 6px 16px;
  margin-bottom: 20px;
}
#email_submit_failure {
  margin-top: 20px;
}

@media screen and (max-width: 480px) {
  body > header,
  body > main,
  #stay-in-the-loop-section,
  #thanks-page-title,
  #thanks-message-block {
    max-width: 272px;
  }
  #stay-in-the-loop-section {
    padding: 20px 16px 24px 16px;
  }
  #mail-box {
    position: absolute;
    right: 15px;
    top: -12px;
    max-width: 60px;
  }
}

#card-3 h1 {
  font-size: 23px;
  line-height: unset;
  font-weight: 700;
  margin: 0px;
  padding: 0px;
}
#card-3 ol li {
  list-style: decimal;
  margin: 8px 0px;
}
#card-3 ol {
  margin-left: 16px;
}
#card-3 {
  max-width: 480px;
  margin-bottom: 48px;
}
#card-3 .box-step-content {
  padding: 0px;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 328px;
  max-width: 420px;
  margin: auto;
}
#card-3 .box-step {
  padding: 32px;
}
#payment-box i.material-icons {
  font-size: 24px;
}
#payment-box {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
@media (min-width: 600px) {
#payment-box .box-step {
  padding: 34px;
}
}
#payment-box .payment-type-btn {
  display: flex;
  min-height: 48px;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 40px auto;
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  transition: all 150ms ease-in-out;
  filter: drop-shadow(0px 5px 20px rgba(0, 0, 0, 0.15));
}
#card-3 a {
  color: #0047ff;
}
a.vpn-cta {
  height: 48px;
  width: 100%;
  min-width: 200px;
  background: #0055b7;
  background: linear-gradient(to right bottom, #0075ff 50%, #0055b7 50%);
  border-radius: 6px;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  position: relative;
}
a.vpn-cta span { color: #fff; }
a.vpn-cta i { color: #fff; }

.vpn-cta:hover, .prem-cta:hover{
  cursor: pointer;
  -moz-box-shadow: 0px 5px 15px rgba(10, 14, 71, 0.2);
  -webkit-box-shadow: 0px 5px 15px rgba(10, 14, 71, 0.2);
  box-shadow: 0px 5px 15px rgba(10, 14, 71, 0.2);
}

button.prem-cta {
  border: 1px solid #FFCA00;
  background: #FFCA00;
  box-sizing: border-box;
  border-radius: 4px;
  font-weight: bold;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  color: #333333;
  height: 48px;
  width: 100%;
  min-width: 200px;
  border-radius: 6px;
  font-family: Lato;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 140%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  color: #333;
  cursor: pointer;
  transition: all 150ms ease-in-out;
  position: relative;
  margin-bottom: 0px;
}

.margintop-auto {
margin-top: auto;
}