.font-12 {
    font-size: 12px;
}

.hover-icon i {
    color: #3f4d67
}

.hover-icon:hover i {
    color: #1dc4e9;
}


#button-addon1 {
    color: #ffc371;
}

/*i {*/
/*    color: #ffc371;*/
/*}*/

#email_input::placeholder {
    font-size: 0.95rem;
    color: #aaa;
    font-style: italic;
}

#email_input.shadow-0:focus {
    box-shadow: none;
}

.app-btn-primary {
    background-color: #A22C29; /* Your desired background color */
    color: #FFFFFF; /* Your desired font color */
}

.app-btn-secondary {
    background-color: #902923; /* Your desired background color */
    color: #FFFFFF; /* Your desired font color */
}

.app-btn-primary-dark {
    background-color: #F0F7F4;
    color: #902923;
}


.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    flex: 1;
    text-align: center;
    background-color: #e0e0e0;
    margin-right: 10px;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: black;
    text-decoration: none;
}

.step:last-child {
    margin-right: 0;
}

.step.active {
    background-color: #A22C29;
    color: #fff;
}

/* Media Query for Mobile Screens */
@media screen and (max-width: 768px) {
    .steps {
        flex-direction: column; /* Stack the steps vertically */

    }

    .step {
        margin-right: 0; /* Remove margin-right for mobile view */
        margin-bottom: 10px; /* Add some space between stacked steps */
    }

    .step:not(.active):not(.disabled):hover {
        background-color: #d4d4d4;  /* a simple hover effect to indicate clickability */
        cursor: pointer;
    }

    .step.disabled {
        cursor: not-allowed;  /* indicates non-clickability */
        pointer-events: none;  /* prevents click events */
    }

    .step:last-child {
        margin-bottom: 0; /* Remove margin-bottom for the last step */
    }
}

#mobile-progress {
    display: none; /* Hide mobile progress on wide screens */
}

/* Styles for mobile screens */
@media screen and (max-width: 768px) {
    #web-progress {
        display: none !important; /* Hide web progress on mobile screens */
    }
    #mobile-progress {
        display: block; /* Show mobile progress on mobile screens */
    }
}


.centered-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px 0 rgba(0,0,0,0.3);
}


.disabled-pointer {
    cursor: not-allowed;  /* indicates non-clickability */
    pointer-events: none;  /* prevents click events */
}


.breadcrumbs {
    border: 1px solid #cbd2d9;
    border-radius: 0.3rem;
    display: inline-flex;
    overflow: hidden;
}

.breadcrumbs__item {
    background: #fff;
    color: #333;
    outline: none;
    padding: 0.75em 0.75em 0.75em 1.25em;
    position: relative;
    text-decoration: none;
    transition: background 0.2s linear;
}

.breadcrumbs__item:hover:after,
.breadcrumbs__item:hover {
    background: #edf1f5;
}

/*.breadcrumbs__item:focus:after,*/
/*.breadcrumbs__item:focus,*/
/*.breadcrumbs__item.is-active:focus {*/
/*    background: #333;*/
/*    color: white;*/
/*}*/

.breadcrumbs__item:after,
.breadcrumbs__item:before {
    background: white;
    bottom: 0;
    clip-path: polygon(50% 50%, -50% -50%, 0 100%);
    content: "";
    left: 100%;
    position: absolute;
    top: 0;
    transition: background 0.2s linear;
    width: 1em;
    z-index: 1;
}

.breadcrumbs__item:before {
    background: #cbd2d9;
    margin-left: 1px;
}

.breadcrumbs__item:last-child {
    border-right: none;
}

.breadcrumbs__item.is-active {
    /*background: #edf1f5;*/
    background: #a22c29;
    color: white;
}

.breadcrumbs__item.is-active::before,
.breadcrumbs__item.is-active::after {
    background-color: #a22c29;
    /*background: #edf1f5; !* Make sure the pseudo-elements have the same background *!*/
    color: white;
}






