#mainBodyy {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eee;
    min-height: 110vh; /* Ensures the background color covers the entire screen */
    min-width: auto;
    display: flex;
    flex-direction: column; /* Allows stacking of sections vertically */
}

.pricing-pre-card-description {
    text-align: left;
    margin: 5px 0;
    font-size: larger;
}

.pricing_pre_yearly {
    margin-top: 8px;
}

.pricing_pre_header-section {
    background-color: #eee;
    padding: 20px 0;
}

.pricing_pre_pricing-amount {
    font-size: large;
    font-weight: bold;
    color: #007bff;
    text-align: left;
    margin-top: 15%;
    margin-bottom: 0px;
}

.pricing_sec {
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    line-height: 2;
    margin-top: 15%;
}

.pricing_pre_toggle-wrapper {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid #ddd;
}

.pricing_pre_toggle-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pricing_pre_switch-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing_pre_library-toggle {
    display: flex;
    align-items: center;
    margin-right: 15px;
    gap: 5px;
}

label {
    font-size: 1rem;
    font-weight: 500;
    color: #514b4b;
}

  
.pricing_pre_custom-switch {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    width: 40px;
    height: 20px;
}

.pricing_pre_custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing_pre_custom-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(182, 179, 179);
    transition: 0.4s;
    border-radius: 20px;
    height: 10px;
    width: 35px;
}


.pricing_pre_pricing-image {
    width: 40%;
}

.pricing_pre_custom-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 16px;
    background-color: #3580E5;
    border-radius: 50%;
    bottom: -4px;
    left: -s2px;
    transition: 0.4s;
}

input:checked + .pricing_pre_custom-slider:before {
    transform: translateX(20px);
}

.pricing_pre_pricing_pri_pricing-section {
    display: flex;
    flex-wrap: wrap; /* Prevent wrapping */
    justify-content: center; /* Center cards horizontally */
    gap: 5px; /* Space between cards */
    margin: 20px auto; /* Center the section */
    padding: 0px;
    background-color: white;
    border-radius: 40px;
/*    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);*/
    box-shadow: none;
    max-width: 85%; /* Limit the maximum width */
    position: relative; /* Required for featured card to overflow */
    overflow: visible; /* Allow cards to overflow */
}

.pricing_pre_pricing_pri_pricing-card {
    flex: 1 1 calc(30% - 20px); /* Allow cards to shrink and wrap dynamically */
    max-width: calc(30% - 20px);
    background-color: white;
    border: 0px solid #ccc;
    border-radius: 30px;
    text-align: center;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 10px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

/* Featured Card */
.pricing_pre_pricing_pri_pricing-card.featured-card {
    flex: 1 1 calc(35% - 20px); /* Slightly larger width for the featured card */
    max-width: calc(35% - 20px);
    background-color: #007bff;
    color: white;
    border: 0px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    /*position: relative;*/
}

.plan_name_blue { color: rgb(53, 128, 229);}
.plan_name_white { color: white;}
.plan_name_grey { color: rgb(128, 121, 121);}

@media (max-width: 768px) {
   

    .pricing_pre_pricing_pri_pricing-card {
        flex: 1 1 calc(45% - 20px); /* Two cards per row */
        max-width: calc(45% - 20px);
    }

    .pricing_pre_pricing_pri_pricing-card.featured-card {
        flex: 1 1 calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
}
@media screen and (min-width: 1280px) and (max-width: 1440px) and (min-height: 800px) and (max-height: 900px) {
    .pricing_pre_pricing_pri_pricing-section {
        padding: 0px 0.2%;
        flex-wrap: nowrap;
        min-width: 95%;
    }
    .pricing_pre_pricing_pri_pricing-card {
        flex: 1 1 calc(20% - 10px); /* Adjust width for 5 cards per row */
        max-width: calc(25% - 20px);
    }
    .pricing_pre_pricing_pri_pricing-card.featured-card {
        flex: 1 1 calc(30% - 10px); /* Slightly larger width for featured card */
        max-width: calc(30% - 10px);
        overflow: visible;
    }
}
/* iPad Pro Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
  
    .pricing_pre_pricing_pri_pricing-section {
        padding: 0px 0.2%;
        flex-wrap: nowrap;
        min-width: 95%;
    }
    .pricing_pre_pricing_pri_pricing-card {
        flex: 1 1 calc(20% - 10px); /* Adjust width for 5 cards per row */
        max-width: calc(25% - 20px);
    }
    .pricing_pre_pricing_pri_pricing-card.featured-card {
        flex: 1 1 calc(30% - 10px); /* Slightly larger width for featured card */
        max-width: calc(30% - 100px);
        overflow: visible;
    }
}


/* iPad Mini Portrait (480px - 600px) */
@media (max-width: 600px) {
    .pricing_pre_pricing-section {
        padding: 10px;
        gap: 10px;
    }

    .pricing_pre_pricing_pri_pricing-card {
        flex: 1 1 100%; /* One card per row */
        max-width: 100%;
    }

    .pricing_pre_pricing_pri_pricing-card.featured-card {
        flex: 1 1 100%; /* Full width for featured card */
        max-width: 100%;
    }
}
/* Optional styling for the button in the featured card */
.pricing_pre_pricing_pri_pricing-card.featured-card button {
    background-color: white;
    color: #007bff;
}

/* Media query for tablets (768px and smaller) */
@media (max-width: 768px) {
    .pricing_pre_pricing_pri_pricing-section {
        flex-wrap: wrap; /* Allow cards to wrap */
        gap: 10px;
    }
    .pricing_pre_pricing_pri_pricing-card {
        flex: 1 1 calc(50% - 20px); /* Two cards per row */
        max-width: calc(50% - 20px);
    }
    .pricing_pre_pricing_pri_pricing-card.featured-card {
        flex: 1 1 calc(100% - 20px); /* Full width for the featured card */
        max-width: calc(100% - 200px);
        height: 550px; /* Slightly taller height on tablets */
    }
}

/* Media query for mobile devices (480px and smaller) */
@media (max-width: 480px) {
    .pricing_pre_pricing_pri_pricing-section {
        flex-wrap: wrap; /* Allow cards to wrap */
    }
    .pricing_pre_pricing_pri_pricing-card {
        flex: 1 1 100%; /* One card per row */
        max-width: 100%;
    }
    .pricing_pre_pricing_pri_pricing-card.featured-card {
        flex: 1 1 100%; /* Full width for the featured card */
        max-width: 100%;
        height: auto; /* Dynamic height for mobile screens */
    }
}

.pricing_pre_pricing_pri_pricing-card h2 {
    font-size: 1.35rem;
    white-space: wrap;
}

.pricing_pre_pricing_pri_pricing-card .pricing-amount {
    font-size: 1.5rem;
    color: #514b4b;
    margin: 10px 0;
}

.pricing_pre_pricing_pri_pricing-card button, a.pricing-card-link {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15%;
}

.pricing_pre_pricing_pri_pricing-card button:hover, a.pricing-card-link:hover {
    background-color: #0056b3;
    color: #ddd;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.featured-card {
    border: 2px solid #007bff;
}

.pricing_pre_contact-section {
    text-align: center;
    padding: 20px 0; /* Adds padding for better spacing */

    width: 100%; /* Stretch the section to the full screen width */
}


.pricing_pre_contact-section .mkp {
    background-color: #80A200; /* Matches the section background */
    color: white;
    width: 20%; /* Make the button occupy most of the available width */
 
    height: auto; /* Dynamic height for responsive text fitting */
    padding: 10px 20px; /* Adjust padding for comfortable spacing */
    border: none;
    border-radius: 40px; /* Smooth rounded corners */
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.4; /* Ensures proper spacing inside the button */
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 20px auto; /* Center the button */
    text-align: center; /* Center the text inside the button */
}
.pricing_pre_contact-section .mkp:hover {
    background-color: #566c02;
    transform: scale(1.05); /* Slight enlargement on hover */
}

/* Make the button text dynamically fit within the button area */
.pricing_pre_contact-section .mkp span {
    display: inline-block;
    word-wrap: break-word; /* Break long words if needed */
    text-align: center;
}

/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .pricing_pre_contact-section .mkp {
        font-size: 1.1rem; /* Slightly smaller font for tablets */
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .pricing_pre_contact-section .mkp {
        font-size: 1rem; /* Smaller font for mobile */
        padding: 8px 10px;
    }
}
.pricing-pre-card-description {
    color: #514b4b;
    font-size: medium;
}
@media (min-width: 820px) and (max-width: 920px) {
    #Abhimanyu {
      order: 1; /* First card */
    }
    .featured-card {
      order: 2; /* Second card */
    }
    #Arjun {
      order: 3; /* Third card */
    }
    #Bheesma {
      order: 4; /* Fourth card */
    }
    #Madhav {
      order: 5; /* Fifth card */
    }
  }

@media (min-width: 1380px){
    #Abhimanyu {
      order: 1; /* First card */
    }
    .featured-card {
      order: 2; /* Second card */
    }
    #Arjun {
      order: 3; /* Third card */
    }
    #Bheesma {
      order: 4; /* Fourth card */
    }
    #Madhav {
      order: 5; /* Fifth card */
    }
  }

#page-mod-book-view .coursenav-prev{
    display: none;
}
#page-blocks-iomad_commerce-shop .page-breadcrumb{
    display: none;
}
#page-login-index .typeinfo{
    background-color: #fff;
    border: solid #fff;
}
#page-mod-scorm-player .activity-name{
    display: none;
}

.pricing_card {
    width:30%
}

@media (min-width: 992px) {
    #page-local-subscription_plan-price .col-lg-9 {
        flex: auto;
        max-width: 100%;
    }
}
#page-local-subscription_plan-price .sidebar-col {display:none;}

#sortableData tr{
    cursor: move;
}