.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    /*height: 80px;*/
}
.lds-ellipsis div {
    position: absolute;
    top: 10px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background:#7c83eb;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}


/* internal css */
.progress-bar {
    padding: 20px;
}

.step-container {
    width: 30%;
    /* Ensure each step container takes 30% of the total width */
}

.step-number {
    margin-bottom: 10px;
    /* Space between the text and the progress bar */
    font-size: 16px;
    font-weight: bold;
}

.step {
    width: 100%;
    height: 10px;
    /* Adjust height to make it more like a progress bar */
    background-color: #e6e6e6;
    border-radius: 5px;
}

.step.completed {
    background-color: #4CAF50;
    /* Green color for completed step */
}

.step.active {
    background-color:var(--primary) !important;
    /* Blue color for active step */
}

.note {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    text-align: left;
}

.note strong {
    font-weight: bold;
}

.note p {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

/* footer {
    margin-top: 20px;
} */

.back-link {
    color: #2196F3;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

.page-heading img {
    width: 50px;
}



.img-text {
    font-weight: bold !important;
    font-size: 16px;
}

.img-text span {
    text-decoration: underline;
}

/* General styling for the radio button image */
.radio-button-label>input {
    display: none;
}

.radio-button-label>img {
    cursor: pointer;
    border: 3px solid #ddd;
    border-radius: 10px;
    /* Rounded corners */
    padding: 10px;
    /* Add padding for some space around the image */
    width: 100%;
    /* Make the image fill its container */
}

.radio-button-label>input:checked+img {
    border: 3px solid #2885bb;
    /* Highlight when selected */
}

/* Container styling to space the buttons evenly */
.marketPlaceImg {
    width: 100%;
    /* Adjust size as needed */
}

/* Flexbox styling for alignment */
.image_radio_button_control {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* You can adjust this */
}
/*
label {
    margin-right: 20px;
    flex-grow: 1;
} */



/* Hide the default checkbox */
input[type="checkbox"].row-check {
    appearance: none;
    /* For modern browsers */
    -webkit-appearance: none;
    /* For Safari */
    -moz-appearance: none;
    /* For Firefox */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    position: relative;
    cursor: pointer;
}

/* Style the checked state */
input[type="checkbox"].row-check:checked {
    background-color: var(--primary);
}

input[type="checkbox"].row-check:checked::before {
    content: '\2713';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.step2_icons
{
    width: 8em;
    height: 8em;

}
.step2_icons_disabled
{
    filter: brightness(0) saturate(100%) invert(37%) sepia(48%) hue-rotate(190deg) saturate(135%)
}

.mp_import_icons {
    max-width: 50px;
    transition: transform 0.3s ease;
}

.mp_import_icons:hover {
    transform: scale(1.1);
}

.mp_card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
