.circle {
    width: 24px;
    /* Set the width of the circle */
    height: 24px;
    /* Set the height of the circle */
    background-color: #006837;
    /* Set the background color of the circle */
    border-radius: 50%;
    /* Make the corners round */
    opacity: 25%;
}

.circle-active {
    width: 24px;
    /* Set the width of the circle */
    height: 24px;
    /* Set the height of the circle */
    background-color: #006837;
    /* Set the background color of the circle */
    border-radius: 50%;
    /* Make the corners round */
}

.custom-hr {
    border: none;
    height: 2px;
    background-color: #D0D0D0;
    /* Blue color */
    width: 90%;
    /* 50% width */
    margin: 10px auto;
    /* Center horizontally with margin */
}

.dz-message {
    font-size: 18px;
    color: #666;
}

#uploaded-files {
    margin-top: 20px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

/* .custom-tooltip {
    --bs-tooltip-bg: var(--bs-primary);
}

.tooltip-inner {
    background-color: #f8b400;
    color: #fff;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 5px;
}

.tooltip-arrow::before {
    border-top-color: #f8b400;
} */

.dropdown-menu {
    max-height: 10rem;
    /* Adjust the height to show 5 items */
    overflow-y: auto;
}

.required-asterisk::after {
    content: " *";
    color: red;
}

.sr-button-size {
    height: 60px;
    width: 200px;
}

.sr-button-size-lebar {
    height: 60px;
    width: 350px;
}

.dropzone {
    border: 2px dashed #D0D0D0;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    color: #999;
    cursor: pointer;
}

.dropzone.dragover {
    border-color: #0056b3;
    background-color: #f0f8ff;
}

/* .tooltip.bs-tooltip-auto .tooltip-inner {
    min-width: 350px;
    height: 78px;
    font-size: 0.75rem;
    background-color: #FCEED8;
    color: black;
    transform: translate(12%, 70%);
    text-align: left;
    border: 1px solid #E97820;
    filter: drop-shadow(5px 5px 4px #D0D0D0);
}

.tooltip.bs-tooltip-auto .tooltip-arrow::before {
    border-color: transparent;
}

.bs-tooltip-auto .tooltip-arrow {
    left: 0;
    color: transparent;
}

.bs-tooltip-auto {
    transform: translateX(-100%);
} */

.custom-list {
    list-style-type: none;
    padding: 0;
}

.custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.custom-list li::before {
    content: "\f00c";
    /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    background-color: #006837;
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-list-active li::before {
    content: "\f00c";
    /* Font Awesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    background-color: white;
    width: 1.5rem;
    height: 1.5rem;
    color: #006837;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .btn-bottom {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
} */

.form-check-input {
    &[type="checkbox"] {
        @if $enable-gradients {
            --#{$prefix}form-check-bg-image: none !important);
        }

        @else {
            --#{$prefix}form-check-bg-image: none !important
        }

        ;
    }

    &:focus {
        /* border-color: #006837; */
        outline: 0;
        box-shadow: 0px 0px;
        /* box-shadow: $form-check-input-focus-box-shadow; */
    }
}

.form-check-input:checked {
    background-color: #006837;
    border-color: #006837;
}



.card-package-active {
    /* border: 2px solid #006837 !important; */
    background-color: #006837 !important;
}

.text-package-active {
    /* border: 2px solid #006837 !important; */
    color: white !important;
}

.card-package {
    border: 1px solid #D0D0D0;
}

.grey-container {
    border-radius: 10px;
    border: 5px solid #F8F8F8;
    border-width: 10px;
    /* padding: 10px; */
}

.grey-container-active {
    border-color: #006837 !important;
}

.ar-grey-container-active {
    border-color: var(--ar-primary-color) !important;
}

.sr-btn-homesize {
    height: 80px;
    width: 265px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}