.ks-feedback {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 0.5rem 3rem;
    margin: 0;

    font-family: 'RelatoSans Bold';
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;

    color: #627710;
    background-color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: left;
}

.ks-feedback__toggle {
    font-family: 'RelatoSans Bold';
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;

    border: none;
    background-color: transparent;
    color: #627710;
    transition: color 0.3s ease;

    padding: 0;
}

.ks-feedback__toggle:focus,
.ks-feedback__toggle:hover {
    outline: none;
    cursor: pointer;
    color: #52640d;
}

.ks-feedback__toggle:active {
    padding: 0;
}

.ks-feedback__toggle::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: ' \f101';
}

.ks-feedback__toggle span {
    /* IE/Edge fallback */
    text-decoration: none;
    text-decoration: underline transparent;
    transition: text-decoration 0.3s ease;
}

.ks-feedback__toggle:focus span,
.ks-feedback__toggle:hover span {
    /* IE/Edge fallback */
    text-decoration: underline;
    text-decoration: underline #52640d;
}

.ks-feedback__link {
    text-decoration: none;
    color: #0e7489;
    transition: color 0.3s ease;
}

.ks-feedback__link:focus,
.ks-feedback__link:hover {
    outline: none;
    color: #0b5f70;
}

.ks-feedback__link::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: ' \f101';
}

.ks-feedback__link span {
    /* IE/Edge fallback */
    text-decoration: none;
    text-decoration: underline transparent;
    transition: text-decoration 0.3s ease;
}

.ks-feedback__link:focus span,
.ks-feedback__link:hover span {
    /* IE/Edge fallback */
    text-decoration: underline;
    text-decoration: underline #0b5f70;
}

.ks-feedback__form {
    width: 100%;
    max-width: 30rem;

    font-family: 'RelatoSans Regular';
    font-size: 0.875rem;
    line-height: 1.4;

    color: #383838;
}

.ks-feedback__form input[type="email"],
.ks-feedback__form textarea {
    box-sizing: border-box;
    padding: 0.75em;
    margin: 0;
    width: 100%;
    height: auto;
    resize: vertical;

    font-family: 'RelatoSans Regular';
    font-size: 0.875rem;
    line-height: 1.4;

    border: 1px solid #383838;
    border-radius: 3px;
}

.ks-feedback__form input[type="checkbox"] {
    margin: 0 0.25em 0 0;
}

.ks-feedback__form input[type='submit'] {
    font-family: 'RelatoSans Bold';
    font-size: 1.25rem;
    line-height: 1.6;
    display: block;
    margin: 0 auto;
    padding: 0.5em 2em;
    border: none;
    border-radius: 9999px;
    color: #fff;
    background-color: #0e7489;
    transition: background-color 0.3s ease;
    -webkit-appearance: none;
}

.ks-feedback__form input[type='submit']:focus,
.ks-feedback__form input[type='submit']:hover {
    cursor: pointer;
    outline: none;
    color: #fff;
    background-color: #0b5f70;
}

.ks-feedback__form input[type='submit']:disabled {
    pointer-events: none;
    opacity: 0.5;
}

.ks-feedback__form__error {
    font-family: 'RelatoSans Bold';
    font-size: 1.25rem;
    line-height: 1.6;
    color: #790402;
}

