/* Modal */
.b-typo-report-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.b-typo-report-modal__inner {
    position: relative;
    max-width: 480px;
    width: 100%;
    padding: 15px 20px 30px;
    color: #000;
    background: #fff;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.25);
}

.b-typo-report-modal__title {
    margin: 0 0 25px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
}

.b-typo-report-modal__close-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    color: #333;
    background: none;
    border: none;
}

.b-typo-report-modal__close-button:hover {
    color: #000;
}

.b-typo-report-modal__close-button svg {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* Form */
.b-typo-report-form__messages:not(:last-child) {
    margin-bottom: 15px;
}

.b-typo-report-form__message {
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.25;
    font-family: Arial, sans-serif;
}

.b-typo-report-form__message--success {
    color: #fff;
    background: #4fbb4f;
}

.b-typo-report-form__message--error {
    color: #fff;
    background: #d93025;
}

.b-typo-report-form__message:not(:last-child) {
    margin-bottom: 10px;
}

.b-typo-report-form__field {
    display: block;
    width: 100%;
}

.b-typo-report-form__field:not(:last-child) {
    margin-bottom: 20px;
}

.b-typo-report-form__label {
    display: block;
    font-size: 12px;
    line-height: 1;
}

.b-typo-report-form__label:not(:last-child) {
    margin-bottom: 10px;
}

.b-typo-report-form__textarea {
    display: block;
    width: 100%;
    min-height: 30px;
    height: 100px;
    padding: 0 5px;
    border: 1px solid #ccc;
    resize: vertical;
}

.b-typo-report-form__submit-button {
    display: block;
    padding: 8px 26px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: #ca0f09;
    border: none;
    border-radius: 0;
}

.b-typo-report-form__submit-button:hover {
    color: #fff;
    background: #b20d08;
}