.ck-multistep-step {
    display: none;
}

.ck-multistep-step.is-active {
    display: block;
}

.ck-multistep-container.is-loading .ck-multistep-form {
    display: none;
}

.ck-multistep-container:not(.is-loading) .ck-multistep-preload {
    display: none;
}

.ck-multistep-preload {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 160px;
}

.ck-multistep-preload-player {
    height: 200px;
    width: 200px;
}

.ck-multistep-progress-wrap {
    margin: 0 0 18px;
}

.ck-multistep-progress-text {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ck-multistep-progress-bar {
    background: #d2d6dc;
    border-radius: 999px;
    height: 21px;
    overflow: hidden;
    position: relative;
}

.ck-multistep-progress-fill {
    background: #1e7ac4;
    display: block;
    height: 21px;
    position: relative;
    transition: width 0.2s ease-in-out;
    width: 0;
    border-radius: 999px;
}

.ck-multistep-progress-percent {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

.ck-multistep-progress {
    display: none;
}

.ck-multistep-progress-step {
    background: #f1f1f1;
    border-radius: 3px;
    padding: 4px 10px;
}

.ck-multistep-progress-step.is-active {
    background: #111111;
    color: #ffffff;
}

.ck-multistep-nav {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 18px;
}

.ck-multistep-save {
    background: transparent;
    border: none;
    color: #1d4ed8;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.ck-multistep-save.is-saving {
    pointer-events: none;
}

.ck-multistep-save .ck-multistep-dots {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    width: 0;
    animation: ckf-dots 1s steps(4, end) infinite;
}

@keyframes ckf-dots {
    0% { width: 0; }
    100% { width: 1.2em; }
}

.ck-multistep-prev {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #374151;
    cursor: pointer;
    padding: 8px 16px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ck-multistep-prev:hover,
.ck-multistep-prev:focus {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
    transform: translateY(-1px);
}

.ck-multistep-next {
    background: #009bde;
    border: 1px solid #009bde;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 18px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.ck-multistep-next:hover,
.ck-multistep-next:focus {
    background: #0083bd;
    border-color: #0083bd;
    transform: translateY(-1px);
}
.ck-multistep-step br{
    display: none;
}
.ck-multistep-step label,
.ck-multistep-step .main-fields,
.ck-multistep-step .field-group > p{
    display: grid;
    gap: 20px;
    grid-template-columns: 160px 1fr;
    margin-bottom: 10px;
}
.ck-multistep-step label > span:not(.wpcf7-list-item-label),
.ck-multistep-step .main-label,
.ck-multistep-step .field-group > p > span{
    font-weight: bold !important;
}
.ck-multistep-step .main-label,
.ck-multistep-step .field-group > p > span{
    font-size: 13px;
}
.ck-multistep-step h2{
    margin-top: 0;
}
.stacked-fields{
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 20px;
}
.stacked-fields > label{
    display: block;
}
.ck-multistep-step .stacked-fields > label,
.ck-multistep-step .block-fields > label{
    /* margin-bottom: 0; */
    font-weight: normal !important;
}
.ck-multistep-step input,
.ck-multistep-step select{
    margin-bottom: 0 !important;
}
.block-fields label{
    display: block;
    margin-bottom: 20px;
}
.ck-multistep-steps .wpcf7-checkbox .wpcf7-list-item,
.ck-multistep-steps .wpcf7-radio .wpcf7-list-item{
    display: block;
    margin-left: 0;
}
.ck-multistep-steps .wpcf7-checkbox label,
.ck-multistep-steps .wpcf7-radio label{
    grid-template-columns: auto 1fr;
    gap: 10px;
}
.ck-multistep-steps sub,
.stacked-fields sub,
.block-fields sub{
    display: block;
    font-weight: normal;
}
.hide-fields:not(.show){
    display: none;
}
.hide-fields.show{
    margin-top: 10px;
}
.mb-10{
    margin-bottom: 10px;
}
.ck-multistep-save-message{
    background-color: #eee;
    padding:  20px;
}
.ck-multistep-save-message a{
    display: block;
    background-color: #fff;
    padding: 10px;
}
