.batch-form {
    margin-bottom: 85px;
}
.batch-form-result span {
    margin-bottom: 25px;
    display: block;
}
.batch-form-inputs,
.batch-form-type-list {
    margin-bottom: 25px;
}

.batch-form-type-title {
    margin-bottom: 10px;
}

.batch-form-inputs label {
    margin-bottom: 10px;
    display: block;
}

.batch-form-inputs input {
    background: #f7f7f7;
}

.error input {
    border-color: #e0c8cc;
    background: #ffe2e7;
    color: #e51937;
}
.batch-form-type-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.batch-form-type-list input {
    display: none;
}
.batch-form-type-list label {
    cursor: pointer;
    border-radius: 25px;
    border: 1px solid #d6d6d6;
    display: inline-block;
    padding: 0 30px;
    height: 50px;
    line-height: 50px;
    transition: all 0.3s ease;
    background: #F7F7F7;
}
.batch-form-type-list label:last-child {
    margin-right: 0;
}
.batch-form-type-list input:checked + label {
    color: #559257;
    border-color: #559257;
}


.batch-example {
    display: flex;
    border: 1px solid #d6d6d6;
    background-color: #F7F7F7;
}
.batch-example-img {
    width: 350px;
    background-color: #fff;
    flex: 0 0 auto;
}
.batch-example-img img {
    width: 100%;
}

.batch-example-text {
    padding: 15px 80px;
    background-color: #F7F7F7;
    max-width: 600px;
    font-size: 20px;
}

@media screen and (max-width: 1023px) {
    .batch-example-text {
        padding: 25px;
    }
}

@media screen and (max-width: 650px) {
    .batch-example {
        flex-direction: column;
        align-items: center;
    }

    .batch-example-img {
        width: 100%;
        height: 322px;
    }

    .batch-example-img img {
        height: 100%;
        object-fit: contain;
    }
}