.uploader-area {
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 5px; /* Rounded corners */
    padding: 20px; /* Add padding */
    margin-bottom: 20px; /* Add margin at the bottom */
}

.uploader-area__inner {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

#uploader-app-node {
    width: 100%; /* Set uploader app node width to 100% */
    max-width: 650px; /* Limit maximum width */
}

.DropZone_drop-zone__sXi79 {
    border: 2px dashed #007bff; /* Dashed border with blue color */
    border-radius: 5px; /* Rounded corners */
    padding: 20px; /* Add padding */
    text-align: center; /* Center text */
}

.DropZone_drop-zone__icon__LhBBH {
    display: block; /* Make icon block-level element */
    width: 50px; /* Set icon width */
    height: 50px; /* Set icon height */
    margin: 0 auto 10px; /* Center icon vertically and horizontally */
}

.DropZone_drop-zone__text__xVH9f {
    margin: 0; /* Remove default margin */
}
#filehide {
cursor: pointer;
}    
.DropZone_drop-zone__g-btn__Zlc8t {
    background-color: #007bff; /* Blue background color for button */
    color: #fff; /* White text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    font-size: 1em; /* Font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Show pointer on hover */
    transition: background-color 0.3s; /* Smooth transition for background color */
}

.DropZone_drop-zone__g-btn__Zlc8t:hover {
    background-color: #0056b3; /* Darker blue on hover */
}
.ProgressLoader_progressLoader__qwJp6 {
    position: fixed; /* Fixed position */
    top: 0; /* Align to the top */
    left: 0; /* Align to the left */
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
    z-index: 9999; /* Ensure it's above other content */
}

.ProgressLoader_progressLoader__inner__f6VGz {
    text-align: center; /* Center text */
}

.ProgressLoader_progressLoader__icon__KXHrX {
    width: 50px; /* Set icon width */
    height: 50px; /* Set icon height */
}

.ProgressLoader_progressLoader__title__ehtlR {
    font-size: 18px; /* Set font size */
    font-weight: bold; /* Set font weight */
    margin-top: 20px; /* Add margin at the top */
}

.ProgressLoader_progressLoader__bar__BMCxn {
    width: 200px; /* Set width for progress bar */
    height: 10px; /* Set height for progress bar */
    background-color: #f0f0f0; /* Light gray background for progress bar */
    border-radius: 5px; /* Rounded corners */
    overflow: hidden; /* Hide overflow */
    margin-top: 20px; /* Add margin at the top */
}

.ProgressLoader_progressLoader__barIndicator__NwGPK {
    height: 100%; /* Make indicator fill the entire height */
    width: 0; /* Initially set width to 0 */
    background-color: #007bff; /* Blue color for progress indicator */
    animation: progress 2s ease-in-out infinite; /* Animate progress */
}

@keyframes progress {
    0% {
        width: 0; /* Start from 0 width */
    }
    50% {
        width: 50%; /* Half width */
    }
    100% {
        width: 100%; /* Full width */
    }
}
    /* Box Design */
    .checkbox-box {
        border: 0px solid #ccc; /* Border color */
        padding: 5px; /* Adjust padding as needed */
        margin-right: 10px; /* Adjust spacing */
    }

    /* Hover Effect */
    .checkbox-box:hover {
        cursor: pointer;
        border-color: #007bff; /* Change border color on hover */
    }

    /* Checkbox Input */
    .checkbox-box input[type="checkbox"] {
        display: none; /* Hide the actual checkbox */
    }

    /* Style for the checked checkbox */
    .checkbox-box input[type="checkbox"]:checked + span::before {
        content: "\2713"; /* Unicode checkmark character */
        display: inline-block;
        width: 16px;
        height: 16px;
        text-align: center;
        line-height: 16px;
        background-color: #007bff; /* Background color for checked checkbox */
        color: white; /* Text color for checked checkbox */
        border-radius: 3px; /* Make it slightly round */
        margin-right: 5px; /* Adjust spacing */
    }



/* Example styles for the password input */
input[type="text"][name="password"] {
    width: 50%;; /* Set the width of the input */
    padding: 10px; /* Add padding */
    margin-top: 10px; /* Add margin at the top */
    border: 1px solid #03a9f4; /* Add a border */
    border-radius: 5px; /* Add rounded corners */
    box-sizing: border-box; /* Ensure padding and border are included in width */
    font-size: 16px; /* Set the font size */
}

/* Optional styles for placeholder text */
input[type="text"][name="password"]::placeholder {
    color: #999; /* Define the color of the placeholder text */
}
 
 
/* Ensure the outer container is a flexbox */
#cropbtn {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100%; /* Full height of the parent container */
}

.submit-input:hover {
    background-color: #0088c5; /* Darker background color on hover */
}

/* Flex pwdhidden to center the content */
.pwdhidden {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

/* Input field */
#pwdhidden {
    visibility: hidden; /* Ensure the input is visible for testing */
    padding: 10px; /* Add some padding */
    font-size: 16px; /* Adjust font size */
    border: 1px solid #ccc; /* Add border */
    border-radius: 5px; /* Rounded corners */
    outline: none; /* Remove outline on focus */
}

/* Styles for the DropZone */
.DropZone_drop-zone__content__1Z9Yw {
    border: 2px dashed #cccccc;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.DropZone_drop-zone__icon__LhBBH {
    margin-bottom: 10px;
}

.Button_g-btn__hfOag {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.Button_g-btn__hfOag:hover {
    background-color: #0056b3;
}

.DropZone_drop-zone__text__xVH9f {
    margin: 10px 0;
}

.DropZone_drop-zone__content__1Z9Yw.highlight {
    border-color: #2192EF;
    background-color: #e6f7ff;
}

.progress-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    color: #212529;
    z-index: 9999;
    box-sizing: border-box;
}

.progress-loader-inner {
    text-align: center;
    box-sizing: border-box;
}

.progress-loader-title {
    font-size: 1.5em;
    font-weight: bold;
    margin: 20px 0;
    box-sizing: border-box;
}

.progress-loader-bar {
    width: 80%;
    max-width: 300px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
    box-sizing: border-box;
}

.progress-loader-bar-indicator {
    width: 100%;
    height: 100%;
    background: #007bff;
    animation: loading 1s infinite;
    box-sizing: border-box;
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

.fe__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.fe_cr_cr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.fe_row_box {
    width: 300px;
    margin: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.fe_box_icon,.how_mg_cr {
    margin-bottom: 10px;
}

.fe_box_icon,.how_mg_cr svg {
    width: 40px;
    height: 40px;
    fill: #2196F3;
}

.fe_box_title h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.fe_box_desc p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}
ol li{
    text-align: left;
    padding-left: 10px;
    padding-top: 10px;
}
/* Default desktop styles */
.how__cr {
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--z__primary_br);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0 auto;
    max-width: 100%;
    padding: 60px 12px;
    width: 100%;
}

.how__mg, .how__ct {
    flex: 1 0 50%;
}

.how_mg_cr {
    display: flex;
    justify-content: center;
    padding: 48px 0;
}

.how__ct h2 {
    color: var(--z__primary_cr);
    font-family: inherit;
    font-size: 2.2rem;
    margin: 0;
    padding-left: 20px;
}

.how__ct ol {
    padding-left: 40px;
}

/* Media query for mobile devices */
@media screen and (max-width: 768px) {
    .how__cr {
        flex-direction: column;
    }
    .how__mg, .how__ct {
        flex: 1 0 auto;
        width: 100%;
    }
    .how_mg_cr {
        padding: 24px 0;
    }
    .how__ct h2 {
        font-size: 1.8rem;
        padding-left: 0;
        text-align: center;
    }
    .how__ct ol {
        padding-left: 20px;
    }
}
.cardarea {
    padding: 20px;
}

.title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* To ensure the cards wrap if the screen size is small */
}

.plan-list {
    list-style: none;
    padding: 0;
    display: flex; /* Display list items horizontally */
    flex-wrap: wrap; /* Wrap items to the next line if there's not enough space */
    justify-content: center; /* Center the items horizontally */
}

.plan-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 19px;
    margin: 10px;
    text-align: center;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.plan-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.plan-description {
    font-size: 14px;
    margin-bottom: 20px;
}

.plan-button, .plan-link {
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.plan-link {
    background-color: transparent;
    color: #0073e6;
    text-decoration: underline;
    font-weight:600;
}



.additional-info {
    text-align: center;
    margin-top: 20px;
}

.additional-info a {
    color: #0073e6;
    text-decoration: none;
}

.additional-info a:hover {
    text-decoration: underline;
}
        /* CSS styles */
        .faqItem h2 {
            cursor: pointer;
        }

        .faqItem p {
            display: none;
        }
/* Style the FAQ container */
#faq {
    max-width: 800px;
    margin: 0 auto;
}

/* Style the FAQ item */
.faqItem {
    margin-bottom: 20px;
}

/* Style the FAQ item header */
.faqItem h2 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Style the FAQ item paragraph */
.faqItem p {
    font-size: 16px;
    line-height: 1.5;
}

/* Style the FAQ header */
#faq header {
    text-align: center;
    margin-bottom: 30px;
}

/* Style the FAQ header title */
#faq header h1,h2 {
    font-size: 24px;
}

.faqItem {
    display: grid;
    text-align: left;
    justify-items: left;
    border-bottom: 2px solid rgb(63, 60, 63);
    transition: max-height 0.3s ease;
}
.faqItem h2::before {
    display: grid;
    content: "+";
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: -30px;
    justify-self: right;
    transition: transform 0.2s ease;
}
.faqItem h2 {
    min-width: 95%;
    font-size: 20px;
    cursor: pointer;
    display: grid;
    padding: 5px 10px;
    line-height: normal;
    justify-content: stretch;
}