._request-app__step-content {
    display: none;
}

._request-app__step-content--active {
    display: block;
}

._request-app__step0-options {
    display: flex;
    align-items: center;
    gap: 20px;
}

._request-app__step0-option {
    cursor: pointer;
}

._request-app__step0-option img {
    width: 300px;
    display: block;
    height: 200px;
    object-fit: contain;
    background-color: #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 8px;
}

._request-app input[type="checkbox"], ._request-app input[type="radio"] {
    display: none;
}

._request-app label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    user-select: none;
}

._request-app label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: #eee;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 0;
}

._request-app label:after {
    content: '';
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 4px;
    left: 4px;
    border-radius: 4px;
    opacity: 0;
    background-color: #ffd700;
    transition: background-color 0.3s;
}

._request-app input[type="checkbox"]:checked + label:after,
._request-app input[type="radio"]:checked + label:after {
    opacity: 1;
}

._request-app h2 {
    font-weight: bold;
}

._request-app select {
    width: 240px;
    padding: 4px 16px;
}

._request-app label span {
    position: relative;
    top: -2px;
    font-weight: normal;
}

._request-app__stepper {
    margin-top: 20px;
    margin-bottom: 20px;
}

._request-app__stepper p {
    font-size: 13px;
    margin-bottom: 8px;
}

._request-app__steps {
    display: flex;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

._request-app__step {
    height: 8px;
    flex: 1;
    background-color: #ccc;
}

._request-app__step--active {
    background-color: #ffd700;
}

._request-app__step-text {
    margin-bottom: 16px;
}

._request-app button {
    all: unset;
    cursor: pointer;
    padding: 8px 20px;
    background-color: #ffd700;
    border-radius: 8px;
    transition: all 0.3s;
}

._request-app ._request-app__button--outlined {
    background: transparent;
    border: 1px solid #ffd700;
}

._request-app button:hover {
    background-color: #e4c101;
}

._request-app ._request-app__button--outlined:hover {
    background: transparent;
    border: 1px solid #e4c101;
}

._request-app__info {
    padding: 8px 16px;
    border-radius: 16px;
    background: #eeeeee60;
    display: inline-block;
}

._request-app__row {
    display: flex;
    gap: 30px;
}

._request-app__column img {
    max-width: 300px;
}

._request-app input[type="number"],
._request-app input[type="tel"],
._request-app input[type="text"] {
    background: transparent;
    border: 1px solid #ccc;
    padding: 4px 8px;
    outline: none;
}

._request-app input[type="tel"],
._request-app input[type="text"] {
    width: 240px;
}

._request-app__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

._request-app textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #ccc;
    padding: 4px 8px;
}

._request-app__red {
    color: red;
    font-size: 13px;
}
