#commentform {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.comment-notes {
    display: none;
}

.comment-form-rating {
    flex: 0 0 100%;
    order: 0;
}

.comment-form-author {
    flex: 0 0 48%;
    order: 1;
}

.comment-form-email {
    flex: 0 0 48%;
    order: 2;
}

#commentform input {
    width: calc(100% - 10px);
    border-radius: 5px;
    border: 1px solid var(--Primary);
    font-size: 15px;
    padding: 5px;
}

.comment-form-comment {
    flex: 0 0 100%;
    order: 3;
}

.comment-form-comment textarea {
    border: 1px solid var(--Primary);
    border-radius: 5px;
}

p.comment-form-cookies-consent {
    flex: 0 0 80%;
    order: 4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 !important;
}

p.comment-form-cookies-consent input {
    width: auto !important;
}

p.form-submit {
    flex: 0 0 10%;
    order: 5;
    margin: 0 !important;
}

p.form-submit input {
    background: var(--Primary) !important;
    padding: 15px 10px !important;
    color: var(--White) !important;
    width: 100% !important;
}