.review-form {
    padding: 15px 20px;
    border: 1px solid #dbd4d4;
    border-radius: 10px;
}

.review-form input[type="text"], .review-form textarea {
    border: 1px solid #dbd4d4;
    border-radius: 10px;
    font-size: 14px;
}

.review-form input[type="text"] {
    height: 40px;
}

.review-form .review-form-actions button {
    padding: 8px 15px;
    width: 100%;
    background: #263238;
    border-radius: 10px;
    border: none;
    color: white;
    transition: all 200ms;
}

.review-form .review-form-actions {
    border-top: 1px solid #dbd4d4;
    padding-top: 12px;
    text-align: center;
}

.review-form .review-form-actions button:hover {
    background: #161d20;
}

.review-form .review-field-rating .review-control-vote {
    margin-bottom: 20px;
    margin-top: 0px;
}


@media (min-width: 640px) {
    .review-form {
        max-width: none;
    }
}

@media (min-width: 769px), print {
    .fieldset > .field:not(.choice) > .control {
        width: inherit;
        float: none;
    }
}

@media (min-width: 769px), print {
    .fieldset > .field:not(.choice) > .label {
        text-align: left;
    }
}

.no-reviews-box {
    background: linear-gradient(#f3f7c6, #daddb2);
    width: fit-content;
    border-radius: 10px;
}