/* Digital Wealth Academy Custom Checkout Styles */

/* Ensure full height coverage on all devices */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.digital-wealth-academy {
    background-color: #2f2f2f;
    min-height: 100vh;
    height: auto;
    padding: 40px 20px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    display: inline-table;
}

.digital-wealth-academy .custom-container {
    max-width: 1170px;
    width: 77.2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #efe8de;
    border-radius: 25px;
    padding: 60px 80px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

/* Header Section - Outside Container */
.digital-wealth-academy .checkout-header {
    text-align: center;
    margin: 0 auto 30px auto;
    max-width: 1200px;
    width: 90%;
    flex-direction: column;
}

.digital-wealth-academy .dwa-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 77%;
    width: 32.33%;
    padding: 10px 5px;
}

.digital-wealth-academy .dwa-logo-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.digital-wealth-academy .main-title {
    color: #f2f0ee;
    text-align: center;
    font-family: "Abril Fatface";
    font-size: 62px;
    font-style: normal;
    font-weight: 400;
    line-height: 80.6px;
    /* 130% */
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

/* Main Content Layout */
.digital-wealth-academy .checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column - Form */
.digital-wealth-academy .checkout-form {
    background: none;
    padding: 0;
}

/* White card for form fields */
.digital-wealth-academy .form-white-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
    max-width: 100%;
    padding: 0 15px;
}

.digital-wealth-academy .checkout-title {
    color: #5b5b5a;
    font-family: "Montserrat";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    padding-bottom: 10px;
}

/* White card specific styling */
.digital-wealth-academy .form-white-card .checkout-title {
    margin-bottom: 20px;
}

.digital-wealth-academy .form-white-card .checkout-title span {
    color: #1571a8;
    text-align: center;
    font-family: "Montserrat";
    font-size: 14px !important;
    font-style: normal;
    font-weight: 700;
}

.digital-wealth-academy .form-white-card .checkout-title p {
    font-size: 12px !important;
    text-align: center;
}

/* Shipping Section Styling */
.digital-wealth-academy .shipping-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.digital-wealth-academy .shipping-title {
    color: #626262;
    font-family: "Montserrat";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    width: 10%;
}

.digital-wealth-academy .shipping-divider {
    border: none;
    height: 1px;
    background-color: #d0d0d0;
    margin: 6.5px 0 10px 0;
    width: 85%;
}

.digital-wealth-academy .form-group {
    margin-bottom: 20px;
}

.digital-wealth-academy .checkout-input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background-color: #fafafa;
    font-size: 14px;
    color: #2f2f2f;
    transition: all 0.3s ease;
}

/* Input styling within white card */
.digital-wealth-academy .form-white-card .checkout-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px 16px;
    border-radius: 6px;
}

.digital-wealth-academy .checkout-input:focus {
    outline: none;
    border-color: #4a9b8e;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(74, 155, 142, 0.1);
}

.digital-wealth-academy .checkout-input::-moz-placeholder {
    color: #999;
    font-size: 14px;
}

.digital-wealth-academy .checkout-input::placeholder {
    color: #999;
    font-size: 14px;
}

/* Two column form layout */
.digital-wealth-academy .row {
    display: grid;
    gap: 20px;
    margin-bottom: 0;
}

.digital-wealth-academy .row .col-lg-12,
.digital-wealth-academy .row .col-lg-6 {
    margin-bottom: 0;
}

/* Right Column - Product Details */
.digital-wealth-academy .checkout-price {
    background: none;
    padding: 0;
}

.digital-wealth-academy .product-showcase {
    text-align: center;
}

.digital-wealth-academy .product-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.digital-wealth-academy .star-rating {
    display: flex;
    justify-content: start;
    margin-left: 10px;
}

.digital-wealth-academy .star-rating-img {
    height: auto;
    max-width: 200px;
}

.order-summary-divider {
    border-color: #cfd7df;
}

/* Product Details */
.digital-wealth-academy .product-title {
    font-size: 24px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 10px;
}

.digital-wealth-academy .product-description {
    color: #5b5b5a;
    font-family: "Montserrat";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.4px;
    /* 130% */

    display: flex;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.digital-wealth-academy .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    margin-left: 30px;
}

.digital-wealth-academy .features-list li {
    display: flex;
    align-items: center;
    color: #000000;
    font-size: 20px !important;
    font-weight: 700;
    list-style-type: "\2713" !important;
    padding-inline-start: 0.5rem;
    padding: 0px !important;
    position: relative;
}

.digital-wealth-academy .features-list li.lifetime-membership {
    font-weight: 800;
}

.digital-wealth-academy .features-list li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #000000;
    position: absolute;
    left: -14px;
    top: 10px;
}

/* Order Summary */

.digital-wealth-academy .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.digital-wealth-academy .summary-row.total {
    font-size: 18px;
    font-weight: 600;
    color: #2f2f2f;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.digital-wealth-academy .price-text {
    color: #1e5a96;
    font-weight: 600;
}

/* Payment Section */
.digital-wealth-academy .payment-title {
    font-size: 18px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.digital-wealth-academy .card-information {
    margin-bottom: 20px;
}

/* PayPal Button */
.digital-wealth-academy .paypal-section {
    text-align: center;
    margin: 30px 0;
}

.digital-wealth-academy .paypal-button {
    background-color: #ffc439;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #2f2f2f;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.digital-wealth-academy .paypal-button:hover {
    background-color: #e6b034;
    transform: translateY(-2px);
}

.digital-wealth-academy .or-divider {
    text-align: center;
    margin: 20px 0;
    color: #999;
    font-size: 14px;
}

/* Terms Checkbox */
.digital-wealth-academy .terms-section {
    margin: 30px 0;
}

.digital-wealth-academy .terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    font-weight: 400 !important;
}

.digital-wealth-academy .terms-checkbox input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #00E;
}

.digital-wealth-academy .terms-checkbox a {
    color: #00E;
    text-decoration: underline;
}

/* Complete Order Button */
.digital-wealth-academy .complete-order-btn,
.digital-wealth-academy .btn-checkout-zip,
.digital-wealth-academy .checkout-btn {
    width: 100%;
    background-color: #4a4a4a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.digital-wealth-academy .checkout-btn {
    padding: 12px 30px;
}

.digital-wealth-academy .complete-order-btn:hover,
.digital-wealth-academy .btn-checkout-zip:hover,
.digital-wealth-academy .checkout-btn:hover {
    background-color: #3a3a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.digital-wealth-academy .security-note {
    color: #9c9c9c;
    text-align: center;
    font-family: "Montserrat";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 15px;
}

/* Error Styling */
.digital-wealth-academy .p-FieldError {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    text-align: right;
}

/* Hide default elements that conflict */
.digital-wealth-academy .new-checkout .checkout-content {
    display: block;
}

.digital-wealth-academy .new-checkout .checkout-content .checkout-form:after {
    display: none;
}

/* Override default checkout styles */
.digital-wealth-academy .new-checkout {
    background: none;
    padding: 0;
    margin: 0;
}

.digital-wealth-academy .store-front-checkout {
    background-color: #2f2f2f;
    min-height: 100vh;
    height: auto;
}

.digital-wealth-academy .new-checkout .checkout-content {
    display: flex;
    margin-top: 0px;
    gap: 10px;
}

.digital-wealth-academy .new-checkout .checkout-content .checkout-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Payment Table Section */
.digital-wealth-academy .payment-table {
    width: 100%;
}

.digital-wealth-academy .payment-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 10px 0;
    color: #000;
    font-family: "Montserrat";
    font-size: 13px !important;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.digital-wealth-academy .header-item {
    text-align: left;
}

.digital-wealth-academy .header-quantity {
    text-align: center;
}

.digital-wealth-academy .header-price {
    text-align: right;
}

.digital-wealth-academy .payment-divider {
    border: none;
    height: 1px;
    background-color: #d0d0d0;
    margin: 0 0 15px 0;
    width: 100%;
}

.digital-wealth-academy .payment-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 15px 0;
    padding-top: 0px;
}

.digital-wealth-academy .item-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.digital-wealth-academy .payment-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #1571a8;
    cursor: default;
}

.digital-wealth-academy .item-info {
    flex: 1;
}

.digital-wealth-academy .item-title {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 4px;
}

.digital-wealth-academy .item-subtitle {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #808080;
    line-height: 1.2;
}

.digital-wealth-academy .item-quantity {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #000;
}

.digital-wealth-academy .item-price {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1571a8;
}

/* Coupon Section */
.digital-wealth-academy .coupon-section-container {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid #e0e0e0;
}

.digital-wealth-academy .coupon-section {
    padding-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.digital-wealth-academy .coupon-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 15px;
    align-items: center;
    max-width: 400px;
}

.digital-wealth-academy .coupon-input {
    border: 1px solid #d0d0d0;
    padding: 12px 16px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #666;
    background: #fff;
    outline: none;
    min-width: 200px;
}

.digital-wealth-academy .coupon-input::-moz-placeholder {
    color: #999;
}

.digital-wealth-academy .coupon-input::placeholder {
    color: #999;
}

.digital-wealth-academy .coupon-input:focus {
    border-color: #1571a8;
    box-shadow: 0 0 0 2px rgba(21, 113, 168, 0.1);
}

.digital-wealth-academy .coupon-apply-btn:disabled {
    background: white;
    color: #000;
    border: 1px solid #d3d3d3;
    padding: 12px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: not-allowed;
}

.digital-wealth-academy .coupon-apply-btn {
    background: #155eef;
    color: white;
    border: 1px solid #d3d3d3;
    padding: 12px 24px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Coupon Error Message */
.digital-wealth-academy .coupon-section .p-FieldError {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 12px;
    color: #dc3545;
    text-align: right;
}

/* Order Summary Section */
.digital-wealth-academy .order-summary-section {
    margin-top: 20px;
    background: transparent;
}

.digital-wealth-academy .order-summary-header {
    position: relative;
}

.digital-wealth-academy .order-summary-title {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    padding: 0 10px;
    text-align: center;
}

.digital-wealth-academy .order-summary-divider {
    border: none;
    height: 1px;
    background-color: #cfd7df;
    width: 100%;
}

.digital-wealth-academy .order-summary-table {
    width: 100%;
}

.digital-wealth-academy .order-summary-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.digital-wealth-academy .order-summary-row.header-row {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    padding-bottom: 5px;
}

.digital-wealth-academy .total-amount-of-item {
    color: #1571a8 !important;
    font-size: 13px;
    font-weight: 700;
}

.digital-wealth-academy .order-summary-row.item-row {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #000;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    padding-bottom: 10px;
    padding-top: 10px;
}

.digital-wealth-academy .order-summary-row.total-row {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    padding-top: 10px;
}

.digital-wealth-academy .summary-item {
    text-align: left;
}

.digital-wealth-academy .summary-quantity {
    text-align: center;
}

.digital-wealth-academy .summary-amount {
    text-align: right;
    color: #000000;
    font-weight: 700;
}

.digital-wealth-academy .total-amount {
    color: #1571a8;
    font-size: 13px;
    font-weight: 700;
}

.digital-wealth-academy .order-total-divider {
    border: none;
    height: 1px;
    background-color: #d0d0d0;
    margin: 0;
    width: 100%;
    grid-column: 1 / -1;
}

/* Remove extra padding since left side is now a card */

.digital-wealth-academy .new-checkout .checkout-content .checkout-form .checkout-title {
    margin-bottom: 0px;
    font-weight: 700;
    font-size: 32px;
}

.digital-wealth-academy .new-checkout .checkout-content>div {
    padding: 18px 4px;
}

.digital-wealth-academy .button-container button.sub-btn.checkout-btn {
    color: #fff;
    text-align: center;
    font-family: "Montserrat";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.digital-wealth-academy .button-container button.sub-btn.checkout-btn {
    height: auto;
}

/* ===============================================
   RESPONSIVE CSS - Mobile Styles
   =============================================== */

/* Tablet and smaller desktop styles */
@media (max-width: 768px) {
    .digital-wealth-academy {
        min-height: 100vh;
        height: auto;
    }

    .digital-wealth-academy .custom-container {
        width: 95%;
        padding: 40px 30px;
        border-radius: 15px;
    }

    .digital-wealth-academy .checkout-header {
        width: 95%;
    }

    .digital-wealth-academy .form-white-card {
        padding: 20px;
        border-radius: 12px;
    }

    .digital-wealth-academy .payment-header,
    .digital-wealth-academy .payment-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 20px;
    }

    .digital-wealth-academy .payment-header {
        font-size: 14px;
    }

    .digital-wealth-academy .item-title {
        font-size: 13px;
    }

    .digital-wealth-academy .coupon-section {
        justify-content: center;
    }

    .digital-wealth-academy .coupon-row {
        grid-template-columns: 1fr auto;
        gap: 10px;
        max-width: 350px;
    }

    .digital-wealth-academy .coupon-input {
        font-size: 13px;
        padding: 10px 14px;
        min-width: 180px;
    }

    .digital-wealth-academy .coupon-apply-btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .digital-wealth-academy .coupon-section .p-FieldError {
        text-align: center;
        font-size: 11px;
    }

    .digital-wealth-academy .order-summary-title {
        font-size: 16px;
    }

    .digital-wealth-academy .order-summary-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 15px;
    }

    .digital-wealth-academy .order-summary-row.header-row {
        font-size: 14px;
    }

    .digital-wealth-academy .order-summary-row.item-row {
        font-size: 13px;
    }

    .digital-wealth-academy .checkout-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .digital-wealth-academy .main-title {
        font-size: 32px;
    }

    .digital-wealth-academy .row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Mobile phone styles */
@media (max-width: 480px) {
    .digital-wealth-academy {
        padding: 0px;
        margin: 0px;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: auto;
    }

    .digital-wealth-academy .custom-container {
        width: 100%;
        padding: 30px 20px;
        margin: 0px;
    }

    .digital-wealth-academy .checkout-header {
        width: 100%;
        margin: 0px;
    }

    .digital-wealth-academy .new-checkout .checkout-content .checkout-form .checkout-title {
        color: #5b5b5a;
        font-family: "Montserrat";
        font-size: 25px;
        font-style: normal;
        font-weight: 700;
        line-height: 32.5px;
        /* 130% */
        margin-top: 10px;
    }

    .digital-wealth-academy .new-checkout .checkout-content .checkout-form .form-white-card .checkout-title {
        line-height: 2.5px;
        padding-top: 10px;
    }

    .digital-wealth-academy .new-checkout .checkout-content .checkout-form .form-white-card .checkout-title {
        margin: 0px;
    }

    .digital-wealth-academy .dwa-logo {
        width: 50%;
        margin-bottom: unset;
    }

    .digital-wealth-academy .form-white-card {
        padding: 15px;
        padding-top: 0px;
        border-radius: 10px;
    }

    .digital-wealth-academy .shipping-divider {
        width: 75%;
    }

    .digital-wealth-academy .header-item {
        grid-template-columns: 1fr;
    }

    /* .digital-wealth-academy .payment-header,
    .digital-wealth-academy .payment-row {
        grid-template-columns: 60% 15% 15%;
        gap: 8px;
        text-align: left;
    } */

    .digital-wealth-academy .payment-header {
        font-size: 12px;
    }

    .digital-wealth-academy .header-quantity {
        text-align: left;
    }

    .digital-wealth-academy .header-price,
    .digital-wealth-academy .item-price {
        text-align: right;
    }

    .digital-wealth-academy .item-title {
        font-size: 13px;
    }

    .digital-wealth-academy .coupon-section-container {
        width: 100%;
    }

    .digital-wealth-academy .coupon-section {
        justify-content: stretch;
        width: 100%;
    }

    .digital-wealth-academy .coupon-row {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
        width: 100%;
    }

    .digital-wealth-academy .coupon-input {
        font-size: 12px;
        padding: 8px 12px;
        min-width: auto;
        width: 100%;
    }

    .digital-wealth-academy .coupon-apply-btn {
        font-size: 12px;
        padding: 8px 16px;
        width: 100%;
    }

    .digital-wealth-academy .coupon-section .p-FieldError {
        text-align: center;
        font-size: 10px;
        margin-top: 8px;
    }

    .digital-wealth-academy .order-summary-title {
        font-size: 14px;
    }

    .digital-wealth-academy .order-summary-row {
        /* grid-template-columns: 60% 15% 15%; */
        gap: 8px;
        text-align: left;
    }
    
    .digital-wealth-academy .summary-amount {
        text-align: right;
    }

    .digital-wealth-academy .order-summary-section .order-summary-row.item-row .summary-amount {
        color: #1571a8 !important;
        text-align: right;
    }

    .digital-wealth-academy .order-summary-row.header-row .summary-quantity {
        text-align: left;
    }

    .digital-wealth-academy .order-summary-row.header-row .summary-amount {
        text-align: right;
    }

    .digital-wealth-academy .order-summary-section {
        margin-bottom: 20px;
    }

    .digital-wealth-academy .product-showcase {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .digital-wealth-academy .product-image {
        margin: 0 auto;
        display: block;
    }

    .digital-wealth-academy .star-rating {
        justify-content: center;
        display: flex;
        align-items: center;
        margin: 20px auto;
    }

    .digital-wealth-academy .star-rating-img {
        margin: 0 auto;
        display: block;
    }

    .digital-wealth-academy .order-summary-row.header-row {
        font-size: 12px;
    }

    .digital-wealth-academy .order-summary-row.item-row {
        font-size: 11px;
    }

    .digital-wealth-academy .main-title {
        font-size: 28px;
    }

    .digital-wealth-academy .product-image {
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .digital-wealth-academy .new-checkout .checkout-content .checkout-form {
        border-top: 0px;
        padding: 0px 0 24px;
        margin-top: 7px;
    }
}


.digital-wealth-academy .new-checkout .checkout-content .checkout-form .button-container .checkout-btn {
    background-color: #00000080 !important;
    border: 1px solid #00000080 !important;
}

.digital-wealth-academy .new-checkout .checkout-content .checkout-form .button-container .checkout-btn.btn-checkout-zip {
    background-color: #1a0826 !important;
}





/* Digitalwealthacademy Languages */
.digital-wealth-academy .new-checkout .checkout-content .checkout-price-languages .img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.digital-wealth-academy .new-checkout .checkout-content .checkout-price-languages .img-wrapper img {
    border-radius: 16px;
}

.digital-wealth-academy .new-checkout .checkout-content .checkout-price-languages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    flex: unset;
}

.digital-wealth-academy .new-checkout .checkout-content-languages .checkout-form#stripe-elements-container {
    margin-bottom: 0 !important;
    padding: 0 0 0 0;
    position: sticky;
    top: 0;
    height: -moz-fit-content;
    height: fit-content;
}

.digital-wealth-academy .checkout-content-languages .form-white-card {
    border-radius: 0 0 16px 16px;
}

.digital-wealth-academy .new-checkout .checkout-content-languages .checkout-form .button-container .checkout-btn {
    background-color: #103B29 !important;
    border-radius: 200px;
    color: #F4EFE4;
}

.digital-wealth-academy .checkout-content-languages .total-amount,
.digital-wealth-academy .checkout-content-languages .summary-amount,
.digital-wealth-academy .checkout-content-languages .item-price {
    color: #103B29 !important;
}

.digital-wealth-academy .new-checkout .checkout-content-languages .checkout-form > div {
    background-color: transparent;
    box-shadow: none;
}

.digital-wealth-academy .new-checkout .checkout-content-languages .checkout-form .user-details .form-group input {
    background-color: #ffffff !important;
}

.digital-wealth-academy .checkout-content-languages,
.digital-wealth-academy .custom-container-languages {
    padding: 15px !important;
}

.digital-wealth-academy .checkout-content-languages {
    position: relative;
}

.digital-wealth-academy .fanbasis-statement-charge {
    margin-bottom: 5px !important;
    text-align: center !important;
}

.digital-wealth-academy .new-checkout .checkout-content .checkout-form .disclaimer {
    justify-content: center;
    margin-bottom: 10px !important;
}


@media screen and (max-width: 991px) {
    .digital-wealth-academy .new-checkout .checkout-content-languages {
        flex-direction: column-reverse;
        gap: 60px;
    }

    .digital-wealth-academy .new-checkout .checkout-content-languages .checkout-form > div {
        padding-right: 0;
        padding-left: 0;
    }

    .digital-wealth-academy .new-checkout .checkout-content .checkout-price-languages .img-wrapper {
        border-radius: 16px 16px 0 0;
    }
}