body {
    /* background: #000; */
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    overflow-x: hidden;
}
.container {
    max-width: 1140px;
}
.pricing-card {
    background: #242424;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.pricing-card-col {
    margin-bottom: 20px;
}
.pricing-card.featured {
    background: linear-gradient(135deg, #ea33eb 0%, #ff6bf2 100%);
    color: white;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.pricing-card.featured::before {
    content: "BEST OFFER";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ea33eb, #ff6bf2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #f9f9f9;
}
h5{
    font-size: 10px;
    font-weight: 600;
    color: #f9f9f9;
}
.featured .plan-name {
    color: white;
    opacity: 0.95;
}
.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f9f9f9;
}
.featured .price {
    color: white;
}
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}
.features li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    color: #f9f9f9;
    font-weight: 500;
}
.features li:last-child {
    border-bottom: none;
}
.featured .features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: white;
    opacity: 0.9;
}
.btn-learn-more {
    background: #ea33eb;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}
.btn-learn-more:hover {
    background: #ea33eb;
    transform: translateY(-2px);
    color: white;
}
.featured .btn-learn-more {
    background: white;
    color: #ea33eb;
}
.featured .btn-learn-more:hover {
    background: #f8f9fa;
    color: #ea33eb;
    transform: translateY(-2px);
}
/* Responsive adjustments */
@media (max-width: 767px) {
    .pricing-card.featured {
        transform: none;
    }
}
@media (min-width: 992px) {
    .pricing-card.featured {
        transform: scale(1.08);
    }
    .rounded-start-lg-4 {
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
    }
    .rounded-end-lg-4 {
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
}
@media (max-width: 992px) {
    .rounded-md-4 {
        border-top-left-radius: 1rem;
        border-bottom-left-radius: 1rem;
        border-top-right-radius: 1rem;
        border-bottom-right-radius: 1rem;
    }
}
/****************/
.navbar.bg-dark {
    background: #000000 !important;
}
.navbar {
    padding: 0.9375rem;
    width: 100%;
    z-index: 1050;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}
.navbar .navbar-brand {
    position: relative;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
}
/****************/
.fullscreen-video-container {
  position: relative;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
.fullscreen-video-container video {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}
/****************/
.page-header .title {
    color: #ffffff;
    font-weight: 600;
    line-height: 1.05;
    font-size: 2.0625rem;
}
/****************************/
.discount-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    -webkit-animation: pulse 2s infinite;
            animation: pulse 2s infinite;
}
/****************/
.pink-btn, .std-btn:hover, .pink-btn:hover, .btn-danger:hover, .std-btn:active, .pink-btn:active, .btn-danger:active{
    background: #fe03c3 !important;
    color: #fff !important;
    border-color: #fe03c3 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger:active:focus,
.btn-danger:active:hover,
.btn-danger.active:focus,
.btn-danger.active:hover {
    background: #fe03c3 !important;
    color: #fff !important;
    border-color: #fe03c3 !important;
}
/*****************/
.wpwl-button:hover,
.wpwl-button:focus,
.wpwl-button:active,
.wpwl-button.active,
.wpwl-button:active:focus,
.wpwl-button:active:hover,
.wpwl-button.active:focus,
.wpwl-button.active:hover {
  background: #ea33eb;
  color: #FFFFFF;
  box-shadow: 0 0 25px #0e3a3a;
  border: 3px solid #FFF;
  border-radius: 0.4285rem;
  border-width: 2px;
}
.wpwl-button-pay:hover,
.wpwl-button-pay:focus,
.wpwl-button-pay:active,
.wpwl-button-pay.active,
.wpwl-button-pay:active:focus,
.wpwl-button-pay:active:hover,
.wpwl-button-pay.active:focus,
.wpwl-button-pay.active:hover {
  background: #ea33eb;
  color: #FFFFFF;
  box-shadow: 0 0 25px #0e3a3a;
  border: 3px solid #FFF;
  border-radius: 0.4285rem;
  border-width: 2px;
}
.wpwl-button-error:hover,
.wpwl-button-error:focus,
.wpwl-button-error:active,
.wpwl-button-error.active,
.wpwl-button-error:active:focus,
.wpwl-button-error:active:hover,
.wpwl-button-error.active:focus,
.wpwl-button-error.active:hover {
  background: #ea33eb;
  color: #FFFFFF;
  box-shadow: 0 0 25px #0e3a3a;
  border: 3px solid #FFF;
  border-radius: 0.4285rem;
  border-width: 2px;
}
.wpwl-has-error~.wpwl-hint {
  display: none;
}
.cnpBillingCheckoutWrapper {position:relative;}
.cnpBillingCheckoutHeader {width:100%;border-bottom: 1px solid #c0c0c0;margin-bottom:10px;}
.cnpBillingCheckoutLeft {width:240px;margin-left: 5px;margin-bottom: 10px;border: 1px solid #c0c0c0;display:inline-block;vertical-align: top;padding:10px;}
.cnpBillingCheckoutRight {width:50%;margin-left: 5px;border: 1px solid #c0c0c0;display:inline-block;vertical-align: top;padding:10px;}
.cnpBillingCheckoutOrange {font-size:110%;color: rgb(255, 60, 22);font-weight:bold;}
div.wpwl-wrapper, div.wpwl-label, div.wpwl-sup-wrapper { width: 100% }
div.wpwl-group-expiry, div.wpwl-group-brand { width: 50%;padding-right: 5px; }
div.wpwl-group-cvv { width: 50%; }
div.wpwl-group-cardHolder, div.wpwl-sup-wrapper-street1, div.wpwl-group-expiry { clear:both }
div.wpwl-sup-wrapper-street1 { padding-top: 1px;width:50%;float:left; }
div.wpwl-sup-wrapper-street2 { padding-top: 1px;width:50%;float:left; }
div.wpwl-wrapper-brand { width: auto }
.wpwl-wrapper-cardHolderEmail{ padding-top: 1px;width:50%;float:left; }
.wpwl-wrapper-cardHolderPhone{ padding-top: 1px;width:50%;float:left; }
div.wpwl-sup-wrapper-state { width:35%;float:left; }
div.wpwl-sup-wrapper-city { width:40%;float:left; }
div.wpwl-sup-wrapper-postcode { width:25%;float:left }
div.wpwl-sup-wrapper-country { width: 100% }
div.wpwl-wrapper-brand, div.wpwl-label-brand, div.wpwl-brand { display: none;}
div.wpwl-group-cardNumber { width:60%; float:left; font-size: 20px;  }
div.wpwl-group-brand { width:35%; float:left; margin-top:28px }
div.wpwl-brand-card  { width: 65px }
div.wpwl-brand-custom  { margin: 0px 5px }
div.wpwl-group-cardHolder{ width: 100%; padding-right:0 !important;}
div.wpwl-sup-wrapper-country {
    float:left;
    padding-right: 5px;
}
.wpwl-form {
    max-width: 90%;
}
.wpwl-control {
    border-radius: 8px; /* Adjust the pixel value as needed */
}
.wpwl-wrapper-cardNumber{
    color:#000;
}
.wpwl-wrapper-cvv{
    color:#000;
}
/* @media screen and (min-width: 991px) and (max-width: 1200px) {
    .wpwl-form {
        max-width: 70%;
    }
}
@media screen and (min-width: 1200px) and (max-width: 1500px) {
    .wpwl-form {
        max-width: 60%;
    }
}
@media screen and (min-width: 768px)  and (max-width: 991px){
    .wpwl-form {
        max-width: 80%;
    }
}
@media screen and (max-width: 768px) {
    .wpwl-form {
        max-width: 100%;
    }
} */
/*****************/
.loader {
    color: #fe03c3;
    font-size: 20px;
    margin: 100px auto;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    -webkit-animation: load4 1.3s infinite linear;
    animation: load4 1.3s infinite linear;
    transform: translateZ(0);
}
@-webkit-keyframes load4 {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}
@keyframes load4 {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}
/*****************/
.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 0 #fffdef);
            filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}
.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 0 #fffdef);
            filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}
.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 0 #fffdef);
            filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}
.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 0 #fffdef);
            filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .8s cubic-bezier(0, 0.4, 0, 1.01);
}
.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 0 #fffdef);
            filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .6s cubic-bezier(0, 0.4, 0, 1.01);
}
.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 0 #fffdef);
            filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all .8s ease;
}
button {
    position: relative;
    margin: 4px 1px;
    padding: 11px 30px;
    font-size: 0.875rem;
    line-height: 1.35em;
    font-weight: 500;
    transition: all .3s ease-in-out;
    background: #ea33eb;
    color: #FFFFFF;
    box-shadow: 0 0 25px #0e3a3a;
    border: 3px solid #FFF;
    border-radius: 0.4285rem;
    border-width: 2px;
}
button:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 10px #fffdef);
            filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}
button:hover .star-2 {
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 10px #fffdef);
            filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}
button:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 10px #fffdef);
            filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}
button:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 10px #fffdef);
            filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}
button:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 10px #fffdef);
            filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}
button:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    -webkit-filter: drop-shadow(0 0 10px #fffdef);
            filter: drop-shadow(0 0 10px #fffdef);
    z-index: 2;
}
.fil0 {
    fill: #FFFDEF
}
button[type="submit"],button[type="submit"]:hover {
	background-color: #fe03c3 !important;
    border-color: #fe03c3 !important;
	color: white;
	max-width: 50%;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}
/*****************/
h6, .h6 {
    font-size: 0.75rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}
/*****************/
.flex-wrap{
    min-height: 100vh !important;
}
/*****************/
/*****************/
.payment-section {
    max-width: 80%;
    margin: 0 auto;
    padding: 5px 0;
}
.payment-title {
    text-align: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #e935c1 0%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.payment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(233, 53, 193, 0.3);
    border-radius: 20px;
    padding: 20px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    text-align: center;
}
.payment-card:hover {
    transform: translateY(-5px);
    border-color: #e935c1;
    box-shadow: 0 10px 30px rgba(233, 53, 193, 0.3);
}
.payment-icon {
    margin: 0 auto 0px;
    display: block;
}
.payment-card-title {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0px;
}
.payment-card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .payment-title {
        font-size: 0.8rem;
    }
    .payment-card {
        padding: 15px 20px;
    }
}
/*****************/
/*****************/
.container-failed {
    background: #3a4354;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    padding: 40px;
    text-align: center;
    border: 1px solid #4a5568;
}
.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 20, 147, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: shake 0.5s ease-in-out;
            animation: shake 0.5s ease-in-out;
    border: 2px solid rgba(255, 20, 147, 0.3);
}
.icon-container svg {
    width: 40px;
    height: 40px;
    color: #ff1493;
}
.h1-message {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}
.payment-button {
    background: #ff1493;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 20, 147, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.payment-button:hover {
    background: #e01183;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 20, 147, 0.6);
}
.payment-button:active {
    transform: translateY(0);
}
.secondary-link {
    margin-top: 24px;
    font-size: 14px;
    color: #8895a7;
}
.secondary-link a {
    color: #ff1493;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.secondary-link a:hover {
    color: #ff50b8;
    text-decoration: underline;
}
.error-details {
    background: rgba(255, 20, 147, 0.1);
    border-left: 4px solid #ff1493;
    padding: 14px 18px;
    margin: 24px 0;
    text-align: left;
    border-radius: 4px;
}
.error-details p {
    color: #d1d9e3;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}
.error-details strong {
    display: block;
    margin-bottom: 6px;
    color: #ff1493;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Style the container */
#pay_with_cb {
    background-color: var(--cb-primary-color);
    border: 1px solid var(--cb-primary-color);
    color: var(--cb-secondary-color);
    padding: 10px 20px;
    outline: none;
    width: 300px;  /* Custom width */
    height: 60px;  /* Custom height */
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

/* Or target the iframe directly */
#pay_with_cb iframe {
    width: 100% !important;
    height: 100% !important;
}
