:root {
  --main: #2ea3f2;
  --text: #5d5d5d;
  --heading: #414141;
  --decor-color: #8300e9;
  --second-text: #5d5d5d91;
}

html,
body {
  overflow: auto;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-track-piece {
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
  background: #a0a0a0;
}

::-webkit-scrollbar-thumb:hover {
  background: #888;
}

body {
  color: var(--text);
  font-family: "Lato", Helvetica, Arial, Lucida, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
strong {
  color: var(--heading);
}

a {
  color: var(--main);
}

.checkout-wrapper {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.checkout-content {
  padding: 30px 50px;
  border-right: 2px solid #cccccc52;
  box-shadow: inset -15px 0 0px -2px #f5f5f5b0;
  width: 40%;
  color: var(--second-text);
}

.paypal-button-container,
.card_container {
  max-width: 450px;
  margin: auto;
  padding: 20px 0;
  font-size: 15px;
}

.checkbox_input {
  display: none;
}

.label-text_body {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin-bottom: 10px;
}

.checkmark_container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
  margin-top: 2px;
  box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07), 0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, 0.5s;
}

.unconfirmed.checkmark_container {
  border: 1px solid rgb(255 0 0);
  box-shadow: 0 0 0 1px #ff00006e, 0 2px 4px 0 rgb(255 0 0 / 7%), 0 1px 1.5px 0 rgb(255 0 0 / 5%);
}

.checkbox_input:checked + .label-text_body .checkmark_container {
  border-color: var(--main);
  background-color: var(--main);
}

.checkbox_input:checked + .label-text_body .checkmark_container svg {
  display: block;
  fill: white;
}

.checkbox_input + .label-text_body .checkmark_container svg {
  display: none;
}

.checkbox_item {
  display: inline-block;
}

.checkbox_item strong {
  display: block;
}

input,
select,
textarea,
.card-email,
.card_field {
  box-shadow: 0 0 0 1px #e0e0e0, 0 2px 4px 0 rgba(0, 0, 0, 0.07), 0 1px 1.5px 0 rgba(0, 0, 0, 0.05);
  font-size: 15px;
  outline: none;
}

#paypal-button-container.active div {
  opacity: 1;
  pointer-events: auto;
}

#paypal-button-container div {
  opacity: 0.5;
  pointer-events: none;
}

.checkout-content .header img {
  width: 150px;
  height: auto;
}

.checkout-content .header p,
.trial-period p {
  font-weight: 700;
  margin-top: 7px;
  margin-bottom: 7px;
}

.trial-period h1 {
  margin: 0;
}

table.plan-details {
  width: 100%;
  text-align: left;
}

.underline {
  border-bottom: 2px solid #f3f3f3;
  width: 100%;
  margin: 15px 0;
}

.paypal-creditcart-info,
.eligible-link {
  font-size: 12px;
}

.eligible-link {
  color: var(--second-text);
  text-align: center;
  display: flex;
  justify-content: center;
}

.eligible-link svg {
  fill: var(--decor-color);
}

.more-details {
  width: 150px;
  background: lightgrey;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: black;
  cursor: pointer;
  margin: auto;
  position: relative;
  bottom: -15px;
}

.more-details svg {
  position: relative;
  right: -12px;
}

.more-details.active .show-view,
.hide-view {
  display: none;
}

.more-details.active .hide-view {
  display: block;
}

.more-details.active svg {
  display: block;
  transform: rotate(180deg);
}

@keyframes pulse {
  0%,
  60% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
  }
  50% {
    box-shadow: 0 0 10px 20px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 1px #ff00006e, 0 2px 4px 0 rgb(255 0 0 / 7%), 0 1px 1.5px 0 rgb(255 0 0 / 5%);
  }
}

.unconfirmed.pulsate {
  animation: pulse 1.5s infinite;
}

@media screen and (min-width: 980px) {
  .more-details {
    display: none;
    transition: 0.5s;
  }
}

@media screen and (max-width: 980px) {
  .checkout-content {
    border-right: none;
    box-shadow: none;
    width: 100%;
    text-align: center;
  }
  .more-details {
    display: flex;
    transition: 0.5s;
  }
  .mobile-wrapper {
    height: 0;
    opacity: 0;
    padding-top: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding-top 0.5s ease-in-out;
  }
  .mobile-wrapper.show {
    height: 100%;
    opacity: 1;
    padding-top: 50px;
  }
  .card_container {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 450px) {
  .checkout-content {
    padding: 15px 10px;
  }
}


/* Modern unified checkout design */

:root{--brand:#6d28d9;--brand-dark:#21103f;--brand-deep:#130826;--accent:#d946ef;--ink:#172033;--muted:#657084;--line:#e8eaf0;--soft:#f5f6fa;--success:#0f9f6e}
*{box-sizing:border-box}
html,body{min-height:100%;overflow-x:hidden}
body{margin:0;padding:48px 24px 32px;background:linear-gradient(135deg,#f8f7fc 0%,#f3f5fa 52%,#eef1f7 100%);color:var(--ink);font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;-webkit-font-smoothing:antialiased}
body:before{content:"";position:fixed;inset:0 0 auto;height:230px;background:linear-gradient(118deg,#130826 0%,#281052 52%,#44147b 100%);z-index:-1}
.checkout-wrapper{display:grid;grid-template-columns:minmax(0,46%) minmax(0,54%);width:100%;max-width:1040px;min-height:650px;margin:0 auto;background:#fff;border:1px solid rgba(23,32,51,.08);border-radius:22px;box-shadow:0 30px 80px rgba(20,9,45,.2),0 4px 14px rgba(20,9,45,.08);overflow:hidden}
.checkout-content{width:auto;padding:52px 48px;background:linear-gradient(160deg,var(--brand-dark) 0%,var(--brand-deep) 100%);border:0;box-shadow:none;color:#c7c3d4}
.back-link{display:inline-flex;align-items:center;gap:7px;margin:0 0 36px;color:#d8d1e7;font-size:13px;font-weight:650;text-decoration:none;transition:color .2s ease}
.back-link:hover{color:#fff}
.checkout-content .header img{display:block;width:166px;height:auto;margin:0 0 28px;filter:drop-shadow(0 5px 12px rgba(0,0,0,.14))}
.checkout-content .header p{margin:0 0 14px;color:#c7bcec;font-size:12px;font-weight:750;letter-spacing:.1em;text-transform:uppercase}
.trial-period h1{margin:0;color:#fff;font-size:48px;line-height:1.08;letter-spacing:-.035em}
.trial-period p{margin:12px 0 34px;color:#e7e1f1;font-size:17px;font-weight:550}
.mobile-wrapper{display:block}
table.plan-details{width:100%;border-collapse:collapse;color:#d8d3e1;font-size:14px;line-height:1.5}
table.plan-details td{padding:4px 0;vertical-align:top}
table.plan-details td:last-child{padding-left:18px}
table.plan-details strong{color:#fff}
.underline{width:100%;margin:20px 0;border:0;border-bottom:1px solid rgba(255,255,255,.15)}
.more-details{display:none}
.card_container{width:auto;max-width:none;margin:0;padding:52px 56px;font-size:14px;background:#fff}
.secure-checkout{display:inline-flex;align-items:center;margin:0 0 18px;padding:7px 11px;border:1px solid #dfe8e4;border-radius:999px;background:#f2fbf7;color:#18765a;font-size:12px;font-weight:750;letter-spacing:.02em}
.secure-checkout:before{content:"✓";display:grid;place-items:center;width:17px;height:17px;margin-right:7px;border-radius:50%;background:#d8f4e8;color:#0f8a60;font-size:11px}
.card_container h3{margin:0;color:var(--ink);font-size:28px;line-height:1.2;letter-spacing:-.025em}
.payment-intro{margin:10px 0 26px;color:var(--muted);font-size:14px;line-height:1.55}
#card-form{margin:0 0 25px;padding:18px 18px 7px;border:1px solid var(--line);border-radius:12px;background:#fafbfc}
.label-text_body{display:flex;align-items:flex-start;margin:0 0 12px;color:#445066;line-height:1.45;cursor:pointer}
.checkmark_container{display:inline-flex;align-items:center;justify-content:center;flex:0 0 19px;width:19px;height:19px;min-width:19px;min-height:19px;margin:1px 11px 0 0;border:1px solid #bcc3cf;border-radius:5px;background:#fff;box-shadow:0 1px 2px rgba(23,32,51,.06);transition:border-color .2s ease,background-color .2s ease,box-shadow .2s ease}
.checkbox_input:checked+.label-text_body .checkmark_container{border-color:var(--brand);background:var(--brand)}
.label-text_body a,.paypal-creditcart-info a,.bottom-info a{color:#5551d6;text-decoration:underline;text-underline-offset:2px}
#paypal-button-container{min-height:96px;margin:0;padding:0;opacity:.48;pointer-events:none;filter:saturate(.5);transition:opacity .2s ease,filter .2s ease}
#paypal-button-container.active{opacity:1;pointer-events:auto;filter:none}
#paypal-button-container div{opacity:1;pointer-events:auto}
.paypal-creditcart-info{margin:17px 0 0;color:#7a8496;font-size:11px;line-height:1.45}
.bottom-info{margin:18px 0 0;padding:15px 16px;border:1px solid #e5e7ef;border-radius:11px;background:var(--soft);color:#4e586b;font-size:13px;line-height:1.5}
.bottom-info #nextPaymentDate{color:var(--ink);font-weight:700}
.eligible-link{display:inline-flex;justify-content:center;align-items:center;width:100%;margin:14px 0 0;color:#667085;font-size:12px;text-decoration:none}
.eligible-link:hover{color:#3538a0}
.eligible-link svg{margin-right:5px;fill:var(--brand)}
.trust-row{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin:24px 0 0;padding-top:22px;border-top:1px solid var(--line)}
.trust-item{display:flex;align-items:center;justify-content:center;min-height:44px;padding:8px;border-radius:9px;background:#f7f7fb;color:#5d6678;font-size:11px;font-weight:650;text-align:center;line-height:1.3}
.checkout-note{margin:18px 0 0;color:#929aaa;font-size:11px;text-align:center}
#result-message{margin:12px 0 0;color:#b42318;font-size:13px}
#threeds{display:none}
.unconfirmed.checkmark_container{border-color:#e5484d;box-shadow:0 0 0 3px rgba(229,72,77,.14)}
@keyframes pulse{0%,100%{box-shadow:0 0 0 3px rgba(229,72,77,.14)}50%{box-shadow:0 0 0 7px rgba(229,72,77,.04)}}
@media(max-width:860px){body{padding:20px 14px 28px}body:before{height:190px}.checkout-wrapper{display:block;max-width:620px;min-height:0;border-radius:18px}.checkout-content{width:100%;padding:30px 26px 28px;text-align:left}.back-link{margin-bottom:24px}.checkout-content .header img{width:145px;margin-bottom:22px}.trial-period h1{font-size:38px}.trial-period p{margin-bottom:0}.more-details{display:flex;position:static;width:100%;height:auto;margin:24px 0 0;padding:12px 16px;justify-content:space-between;border:1px solid rgba(255,255,255,.18);border-radius:9px;background:rgba(255,255,255,.08);color:#fff;font-size:13px;font-weight:650}.more-details svg{position:static;right:auto;fill:#fff}.more-details svg path{fill:#fff!important}.mobile-wrapper{height:0;opacity:0;overflow:hidden;padding-top:0;transition:height .35s ease,opacity .35s ease,padding-top .35s ease}.mobile-wrapper.show{height:auto;opacity:1;padding-top:24px}.card_container{padding:34px 26px 38px}.card_container h3{font-size:25px}.trust-row{grid-template-columns:1fr}}
@media(max-width:420px){body{padding:0;background:#fff}body:before{display:none}.checkout-wrapper{border:0;border-radius:0;box-shadow:none}.checkout-content{padding:26px 20px}.card_container{padding:30px 20px 34px}.trial-period h1{font-size:36px}#card-form{padding:16px 14px 5px}}
