.magenest_steps-wrap > .step-item {
    border-bottom: 1px solid #979797;
    position: relative;
}

.step-input {
    display: none;
}

.step-label {
    display: block;
    cursor: pointer;
    user-select: none;
    font-size: 24px;
    line-height: 32px;
    color: #262121;
    font-weight: 600;
    background-color: #FFFFFF00;
    padding: 24px 0;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.step-label span {
    color: #FF5500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    display: block;
}

.step-label:hover,
.step-label:focus {
    outline: none;
}

.step-content {
    max-height: 0;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    color: #262121;
}

.step-content > img {
    margin: 0;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #FF5500;
    position: absolute;
    display: none;
}

.step-content > img:nth-child(2) {
    right: 256px;
    top: -48px;
}

.step-content > img:nth-child(3) {
    right: 124px;
    top: 24px;
}

.step_inner-content * {
    margin: 0 0 16px;
}

.step_inner-content ul {
    list-style-type: none;
    padding: 0 0 0 16px;
}

.step_inner-content li {
    margin: 0 0 12px;
}

.step_inner-content li::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    background-image: url('../../img/asterisk.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

    /* Show content when checked */
.step-input:checked ~ .step-label {
    padding: 16px 12px 6px;
    background-color: #FFEEE5;
}

.step-input:checked ~ .step-content {
    max-height: 700px;
    margin: 0 0 16px;
}

.step-input:checked ~ .step-content > img {
    display: block;
}

.step_inner-content {
    padding: 6px 12px 16px;
    background-color: #FFEEE5;
}

/* Responsive enhancements */
@media (max-width: 1024px) {
    .step-label {
        font-size: 16px;
        padding: 16px 0;
        line-height: 24px;
    }

    .step-content > img,
    .step-input:checked ~ .step-content > img {
        display: none;
    }
}
