.olb24_br2-multistep-form {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.olb24_br2-progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.olb24_br2-step-item {
    text-align: center;
    flex: 1;
}
.olb24_br2-step-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 auto 5px;
    font-weight: bold;
}
.olb24_br2-step-circle.current {
    background-color: #00B2EE;
    color: white;
}
.olb24_br2-step-label {
    font-size: 14px;
}
.olb24_br2-step-container {
    display: none;
    min-height: 500px;
}
.olb24_br2-step-container.active {
    display: block;
}
.olb24_br2-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.olb24_br2-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.olb24_br2-btn {
    background-color: #00B2EE;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.olb24_br2-btn:hover {
    background-color: #0088B8;
    transform: scale(1.05);
}
.olb24_br2-btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.2s ease;
}
.olb24_br2-btn:hover .olb24_br2-btn-icon {
    transform: scale(1.1);
}
.olb24_br2_warning_block {
    display: none;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.olb24_br2_warning_icon {
    width: 16px;
    height: 16px;
    filter: invert(46%) sepia(100%) saturate(1000%) hue-rotate(25deg) brightness(100%) contrast(100%); /* Orange */
}
@media (max-width: 768px) {
    .olb24_br2-progress-container {
        flex-direction: column;
        align-items: center;
    }
    .olb24_br2-step-item {
        margin-bottom: 10px;
    }
    .olb24_br2-button-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .olb24_br2-btn {
        width: 100%;
        justify-content: center;
    }
    .olb24_br2_warning_block {
        font-size: 12px;
        padding: 8px 15px;
        max-width: 90%;
    }
}