.reviews-tab-content{
    padding: 20px 0;
}
.pd-form{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
}
.pd-form__title{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.pd-form__title span{
    font-size: 110%;
    font-weight: 600;
}
.pd-form__title button{
    color: #2db437;
    cursor: pointer;
    border: none;
    background: none;
}
.pd-reviews-block{
    display: none;
}
.pd-reviews-block.--active{
    display: block;
}
.pd-reviews-trigger{
    max-width: 318px;
    margin: 0 auto;
}
.body .pd-form__row textarea{
    width: 100%;
    height: 125px;
    resize: vertical;
    background: transparent;
    border-width: 2px;
}
.body .pd-form__row input[type=text]{
    width: 100%;
    background: transparent;
}
.input-file-row {
    display: block;
    padding: 20px 0;
    margin-bottom: 10px;
}
.input-file {
    position: relative;
    display: block;
}
.input-file span.input-file-button {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    justify-content: center;
    width: 100%;
}
.input-file span.input-file-button span{
    color: #31ae30;
}
.input-file span.input-file-button:hover{
    opacity: 0.8;
}
.input-file span.input-file-button svg{
    width: 20px;
    height: 30px;
    fill: grey;
}
.input-file input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

/* Disabled */
.input-file input[type=file]:disabled + span {
    background-color: #eee;
}

/* Список файлов */
.input-file-list:not(:empty) {
    padding: 10px 0;
}
.input-file-list-item {
    margin-bottom: 10px;
}
.input-file-list-remove {
    color: red;
    text-decoration: none;
    display: inline-block;
    margin-left: 5px;
}
.input-file-row__note{
    text-align: center;
    text-wrap: pretty;
}
.white-btn{
    width: 100%;
    height: 40px;
    border: 1px solid grey;
    border-radius: 5px;
    background: #fff;
}
[data-button="reviews"].active{
    display: none;
}
[data-button="inaccuracy"].active::after{
    content: '✖';
    margin-left: 10px;
    color: red;
}
.white-btn:hover{
    opacity: 0.8;
}
.pd-inc-wrap{
    padding: 20px 0;
}
.pd-inc__note{
    margin-bottom: 15px;
}
.pd-inc__title{
    color: grey;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 2px dashed grey;
    margin-bottom: 10px;
    width: fit-content;
    line-height: 1.3;
    cursor: pointer;
}
.inc-right{
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
}
.pd-inc-wrap .pd-form__policy{
    padding-top: 15px;
}
.pd-form__policy.--mobile {
    display: none;}
.form-success{
    color: #31ae30;
    font-size: 16px;
}
[id^=wait_comp_]{
    display: none;
}
@media screen and (max-width: 480px) {
    .pd-reviews-trigger {
        max-width: none;
    }
    .pd-form, .pd-form__policy.--mobile {
        display: block;
    }
    .pd-form__policy.--mobile {
        font-size: 12px;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    .pd-form__policy.--desktop {
        display: none;}
    .pd-inc-wrap .pd-form__row{
        margin-bottom: 10px;
    }
}