/* Root Variables */
:root {
    --mws-primary: #6366f1;
    --mws-primary-dark: #4f46e5;
    --mws-bg-dark: #000000;
    --mws-text-white: #ffffff;
    --mws-text-muted: #94a3b8;
    --mws-border: #e2e8f0;
    --mws-card-bg: #ffffff;
    --mws-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.mws-plans-wrapper {
    font-family: Figtree, sans-serif;
    color: #1e293b;
    line-height: 1.5;
}

.mws-container {
    max-width: 1280px;
    margin: 0 auto;
    gap: 16px;
}

/* Hero Section */

.mws-hero {
    background: #020202;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 650px;
}


.mws-hero-title {
    color: #FFF;
    text-align: center;
    font-family: Figtree;
    font-size: 56px;
    font-style: normal;
    font-weight: 500;
    line-height: 68px;
    letter-spacing: -1px;
}

.mws-hero-desc {
    font-size: 18px;
    color: #F9FAFB;
    max-width: 600px;
    margin: 0 auto 80px;
    font-family: Reddit Sans, sans-serif;

}

/* Billing Toggle */
.mws-billing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mws-billing-toggle {
    background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #7c3aed, #2563eb) border-box;
    border: 2px solid transparent;
    padding: 6px;
    border-radius: 999px;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.mws-billing-btn {
    font-family: Reddit Sans, sans-serif;
    background: transparent !important;
    border: none;
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 40px !important;
    cursor: pointer;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    text-transform: capitalize !important;
}

.mws-billing-btn.is-active {
    background: #ffffff !important;
    color: var(--mws-primary);
}

.mws-billing-btn.is-active span {
    background: var(--gradient, linear-gradient(103deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


@media (max-width: 768px) {
    .mws-billing-btn {
        font-size: 18px;
        padding: 12px 22px;
    }
}

.mws-save-text {
    font-family: Reddit Sans, sans-serif;
    font-size: 14px;
    font-weight: 600;
    background: var(--gradient, linear-gradient(103deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Plans Grid */
.mws-plans-grid-section {
    margin-top: -80px;
    padding-bottom: 80px;
    background-color: #020202;
}

.mws-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 16px;
    align-items: stretch;
}

/* Plan Card */
.mws-plan-card {

    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: linear-gradient(180deg, rgba(223, 224, 255, 0.06) 0%, rgba(223, 224, 255, 0.13) 50%, rgba(223, 224, 255, 0.06) 100%), linear-gradient(180deg, rgba(17, 18, 20, 0.50) 0%, rgba(11, 12, 17, 0.50) 100%), #000;
}

.mws-plan-card.is-featured {
    border: 4px solid var(--gradient, #7D35F1);
}

.mws-plan-card:hover {
    transform: translateY(-5px);
}

.mws-plan-header {
    text-align: center;
}

.mws-plan-badges {
    display: inline-flex;
    gap: 5px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    border-radius: 10px;
    border: 1px solid #525252;
    background: #262626;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    padding: 5px;
}

.mws-plan-badges-one {
    border-radius: 6px;
    border: 1px solid #525252;
    background: #262626;

    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    padding: 3px 5px;
    gap: 6px;
    display: flex;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.mws-plan-badges-one span {
    line-height: 0;
}

.mws-badge {
    color: #475569;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    color: #FFF;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.mws-badge-secondary {
    color: #FFF;
    font-family: "Reddit Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.mws-plan-price-container {
    margin-bottom: 30px;
    font-family: "Reddit Sans", sans-serif;
}

.mws-container .mws-plan-grid .mws-plan-price-display {
    color: #FFF;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.72px;
}

.mws-plan-price-display.call-for-pricing {
    font-size: 32px;
    font-family: "Reddit Sans", sans-serif;
}

.mws-annual-price-info {
    font-family: "Reddit Sans", sans-serif;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
}

.mws-price-discounted {
    color: #FFF;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.72px;
}

.mws-price-amount-original {
    text-decoration: line-through;
}

.mws-price-original {
    font-family: "Reddit Sans", sans-serif;
    font-size: 18px;
    color: var(--mws-text-muted);
}

.mws-price-original-inline {
    font-family: "Reddit Sans", sans-serif;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    margin-left: 10px;
}

.mws-price-original .mws-price-interval,
.mws-price-original .mws-price-amount-original,
.mws-price-original .mws-price-symbol {
    color: #D1D5DB;
    font-family: "Reddit Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.mws-plan-price-display .mws-price-interval {
    color: #fff;
}

.mws-price-interval-annual {
    color: #D1D5DB;
}

.mws-price-amount {
    color: #fff;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.72px;
}

.mws-price-interval {
    color: #D1D5DB;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.72px;
}

/* .mws-price-interval {
    font-family: "Reddit Sans", sans-serif;
    font-size: 16px;
    color: var(--mws-text-muted);
    margin-left: 4px;
} */

.mws-plan-highlight {
    background: var(--gradient, linear-gradient(103deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

/* Features List */
.mws-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1;
    position: relative;
}

.mws-plan-features::before,
.mws-plan-features::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #4B5563;
}

.mws-plan-features::before {
    margin-bottom: 25px;
}

.mws-plan-features::after {
    margin-top: 25px;
}

.mws-plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #D1D5DB;
    font-family: "Reddit Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.mws-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--mws-primary);
}

/* Buttons */
.mws-btn-primary {
    text-align: center;
    font-family: "Reddit Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.5px;
    background: linear-gradient(103deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid #7D35F1;
    padding: 10px 20px;
    border-radius: 40px;
    display: block;
    text-transform: capitalize;
    z-index: 2;
}

.mws-plan-card.is-featured .mws-btn-primary {
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    color: #fff;
    border: none;
    position: relative;
    -webkit-text-fill-color: #fff;
}

.mws-plan-card.is-featured .mws-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(177, 129, 255, 0.00) 0%, rgba(177, 129, 255, 0.15) 20%, rgba(177, 129, 255, 0.56) 40%, rgba(177, 129, 255, 0.56) 60%, rgba(177, 129, 255, 0.15) 80%, rgba(177, 129, 255, 0.00) 100%);
    filter: blur(6px);
    color: #fff;
    border: none;
    z-index: -1;
}



/* CTA Section Footer */


.mws-cta-inner h2 {
    font-family: "Reddit Sans", sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(180deg, #FFF 0%, #C1C1C1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
}

.mws-cta-inner .mws-cta-desc {
    color: #9CA3AF;
    text-align: center;
    font-family: "Reddit Sans", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.mws-cta {
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.mws-cta-inner {
    text-align: center;
    padding: 0px 15px;
}

.mws-cta-title h2 {
    color: #FFF;
    font-family: Figtree;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -1px;
}

.mws-cta-desc {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.mws-cta-btn {
    padding: 12px 25px;
    font-size: 18px;
    text-transform: inherit !important;
    z-index: 1;
    color: #FFF;
    text-align: center;
    font-weight: 500;
    background: linear-gradient(103deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.mws-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(https://magicwms.com/wp-content/uploads/2025/10/Container.svg) no-repeat center / cover;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}

a.mws-cta-btn:hover {
    background: linear-gradient(283deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%);
    transition: background-position 0.8s ease-in-out;
    z-index: 0;
    color: #fff;
}

.mws-btn-continue {
    padding: 12px 25px;
    font-size: 18px;
    text-transform: inherit !important;
    z-index: 1;
    color: #FFF !important;
    text-align: center;
    font-weight: 500;
    background: linear-gradient(103deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%) !important;
    border-radius: 25px !important;
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.mws-btn-continue::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(https://magicwms.com/wp-content/uploads/2025/10/Container.svg) no-repeat center / cover;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
}

.mws-btn-continue:hover {
    background: linear-gradient(283deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%) !important;
    transition: background-position 0.8s ease-in-out;
    z-index: 0;
    color: #fff;
}

.mws-checkout-page-wrapper {
    background: #f8fafc;
    min-height: 100vh;
    padding-bottom: 0;
}

.mws-checkout-hero {
    background: #000;
    color: #fff;
    padding: 250px 0 120px;
    text-align: center;
}

.mws-checkout-main-content {
    margin-top: -80px;
    margin-bottom: 80px;
}

/* Stepper */
.mws-checkout-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.mws-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
}

.mws-step.active {
    opacity: 1;
}

.mws-step.completed {
    opacity: 1;
}

.mws-step-number {
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.mws-step.completed .mws-step-number {
    background: #10b981;
    color: #fff;
}

.mws-step-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.mws-step-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

/* Layout */
.mws-checkout-flex-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.mws-checkout-sidebar {
    flex: 0 0 350px;
}


.mws-plan-divider {
    height: 1px;
    background: var(--mws-border);
    margin: 20px 0;
}

/* Step Contents */
.mws-checkout-step-content {
    display: none;
}

.mws-checkout-step-content.active {
    display: block;
}

/* Form Styles */
.mws-form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mws-form-section-title svg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -15px;
}

.mws-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mws-form-group.full-width {
    grid-column: span 2;
}

.mws-input-dark {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 24px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s;
}

.mws-input-dark:focus {
    outline: none;
    border-color: var(--mws-primary);
    background: rgba(255, 255, 255, 0.08);
}

.mws-form-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.mws-btn-continue {
    background: linear-gradient(90deg, #6366f1, #3b82f6);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
}


/* Loader */
.mws-form-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.8);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.mws-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--mws-primary);
    border-radius: 50%;
    animation: mws-spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes mws-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---- MWS Comparison Table ---- */
.mws-comparison {
    padding: 80px 0;
    background: #020202;
}

.mws-ct-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Header Row */
.mws-ct-header {
    display: grid;
    grid-template-columns: 220px repeat(4, 1fr);
    align-items: start;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 700px;
}

.mws-ct-title {
    display: flex;
    align-items: flex-start;
    padding-right: 16px;
    width: 256px;
}

.mws-ct-title h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.mws-ct-title h2 span {
    background: linear-gradient(103deg, #7D35F1 14.71%, #4452DB 37.98%, #2E3CED 61.25%, #005CBE 85.22%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mws-ct-col {
    padding: 0 8px;
    text-align: center;
}

.mws-ct-col--popular {

    border-radius: 12px 12px 0 0;
    /* 	padding: 12px 8px; */

}

.mws-ct-plan-name {
    color: #FFF;
    font-family: Figtree;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.mws-ct-plan-name em {
    border-radius: 16px;
    border: 1px solid #E9D7FE;
    background: #F9F5FF;

    padding: 2px 10px;
    padding-bottom: 4px;
    color: #6941C6;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.mws-ct-price {
    color: #FFF;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.72px;
}

.mws-ct-price span {
    color: #FFF;
    text-align: center;
    font-family: "Reddit Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    /* 166.667% */
    letter-spacing: -0.72px;
}

/* .mws-ct-price--call {
	font-size: 22px;
} */

.mws-ct-price--call span {
    font-size: 13px;
    color: #9CA3AF;
}

/* Body Rows */
.mws-ct-body {
    min-width: 700px;
}

.mws-ct-row {
    display: grid;
    grid-template-columns: 220px repeat(4, 1fr);
    align-items: center;
    background: #262626;
}

.mws-ct-row--alt {
    background: #020202;
}

.mws-ct-feature {
    color: #FFF;
    font-family: "Reddit Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    height: 64px;
    padding: 0 24px;
    align-items: center;
    gap: 12px;
    width: 256px;
}

.mws-ct-cell {
    padding: 14px 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    padding-left: 80px;
}

.mws-ct-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.mws-ct-dash {
    color: #FFF;
    font-size: 16px;
    padding-left: 30px;
}

.mws-ct-cell img {
    width: 24px;
    height: 24px;
    background-color: #7F56D9;
    border-radius: 100px;

}


/* Responsive */
@media (max-width: 991px) {
    .mws-comparison {
        padding: 60px 0;
    }

    /* 	.mws-ct-title h2 {
		color:  #FFF;
font-family: Figtree;
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: -1px; */
}

/* 	.mws-ct-price {
		font-size: 22px;
	} */
/* 	.mws-ct-price--call {
		font-size: 16px;
	} */



@media (max-width: 768px) {
    .mws-comparison {
        padding: 40px 0;
    }

/*     .mws-ct-wrap {
        margin: 0 -16px;
        padding: 0 16px;
    } */

    .mws-ct-header,
    .mws-ct-row {
        grid-template-columns: 140px repeat(4, 1fr);
    }

    .mws-ct-title h2 {
        font-size: 20px;
    }

    .mws-ct-feature {
        font-size: 11px;
        padding-right: 8px;
    }

    .mws-ct-plan-name {
        font-size: 9px;
    }

    .mws-ct-price {
        font-size: 16px;
    }

    .mws-ct-price--call {
        font-size: 13px;
    }

    .mws-ct-cell {
        font-size: 11px;
        gap: 3px;
        padding: 12px 4px;
        flex-direction: row;
    }

    .mws-ct-check {
        width: 14px;
        height: 14px;
    }

    .mws-container,
    .mws-plans-grid-section .mws-container {
        padding: 50px 20px !important;
    }
	.mws-checkout-hero{
		padding-bottom:0px !important;
	}
	    .mws-hero {
        height: 350px !important;
    }
	.mws-checkout-form-container{
		width:100% !important;
	}
	.mws-checkout-main-content{
		padding-top:0px !important;
	}
	.mws-checkout-header{
		margin-bottom:40px !important;
	}
	.mws-checkout-main-content{
		margin-bottom:0px !important;
        padding-bottom:0px !important;
	}
	.mws-checkout-title  , .mws-checkout-title  span{
		font-size:36px !important;
	}
}









/* Responsive */
@media (max-width: 1024px) {
    .mws-checkout-flex-container {
        flex-direction: column;
    }

    .mws-checkout-sidebar {
        flex: 1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .mws-hero-title {
        font-size: 36px;
    }

    .mws-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {

    body.page-template-mws-plans-template-php main#main-content,
    body.page-template-mws-checkout-template main#main-content,
    body.page-template-mws-approval-template main#main-content {
        max-width: 100%;
    }
}

body.page-template-mws-plans-template-php header,
body.page-template-mws-checkout-template header,
body.page-template-mws-approval-template-php header {
    position: absolute;
    width: 100%;
    background-color: transparent !important;
}

@media (max-width: 768px) {

    /* 	.mws-ct-wrap {
		margin: 0 -16px;
		padding: 0 16px;
	} */
    .mws-ct-header,
    .mws-ct-row {
        grid-template-columns: 140px repeat(4, 1fr);
    }

    .mws-ct-title h2 {
        font-size: 20px;
    }

    .mws-ct-feature {
        font-size: 11px;
        padding-right: 8px;
    }

    .mws-ct-plan-name {
        font-size: 12px;
        line-height: normal;
    }

    .mws-ct-price,
    .mws-ct-price span {
        font-size: 16px;
    }

    .mws-ct-price--call {
        font-size: 16px;
    }

    .mws-ct-cell {
        font-size: 12px;
        gap: 6px;
        padding: 12px 6px;
    }

    .mws-ct-check {
        width: 14px;
        height: 14px;
    }

    .mws-plans-grid-section .mws-container {
        padding: 30px 20px !important;
    }

    .mws-ct-title h2 {
        font-size: 18px;
    }

    .mws-ct-title {
        width: auto;
    }

    .mws-plans-grid-section {
        padding-bottom: 0px;
        padding-top: 0px;
    }

    .mws-comparison {
        padding: 0px;
    }

    .mws-hero-title {
        line-height: normal;
    }

    .mws-hero-desc {
        margin-bottom: 60px;
    }

    .mws-hero {
        height: 520px;
    }

    .mws-plan-grid {
        margin-top: -20px;
    }

    .mws-save-text {
        margin: 0px;
    }

    .mws-ct-header {
        padding: 0px;
    }

    .mws-ct-feature {
        width: auto;
    }

    .mws-ct-price,
    .mws-ct-col {
        text-align: start;
    }

/*     .mws-ct-wrap {
        padding-left: 20px;
        padding-top: 30px;
        padding-bottom: 50px;
    } */

    .mws-ct-plan-name {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mws-ct-plan-name em {
        order: -1;
        width: 68px;
    }

    .mws-hero {
        padding: 20px;
    }

    .mws-plans-grid-section {
        margin-top: -90px;
    }

    .mws-cta {
        padding: 50px 0px;
    }

    .mws-ct-price--call span {
        font-size: 14px;
    }


    .mws-ct-plan-name em {
        line-height: normal;
    }
	.mws-comparison{
		Padding:0px;
	}
	.mws-comparison .mws-container{
		padding:0px !important;
		padding-left:15px !important;
		padding-right:15px !important;
		padding-top:30px !important;
	}
	.mws-ct-price--call span{
   color: #FFF;
    text-align: center;
    font-family: "Reddit Sans";
     font-size: 16px; 
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -0.72px;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {

    .mws-hero {
        height: 520px;
    }

    .mws-plans-grid-section {
        padding: 0px 20px;
    }

    .mws-ct-feature {
        width: auto;
    }

    .mws-ct-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .mws-cta {
        padding-bottom: 50px;
        padding-top: 50px;
    }
}

.mss-cta {
    padding-bottom: 50px;
    padding-top: 50px;
}