.report-issue__wrapper {
    position: fixed;
    bottom: 20px;
    right: 0px;
    z-index: 299;
}

.report-issue__modal {
    display: none;
    position: fixed;
    background: #f7f7f7;
    width: calc(100% - 40px);
    max-height: calc(100% - 60px);
    max-width: 630px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
}

.report-issue__modal.open {
    display: block;
}

.report-issue__backdrop {
    display: none;
    height: 100vh;
    width: 100vw;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: black;
    position: fixed;
    opacity: 0;
    transition: .35s;
}

.report-issue__backdrop.open {
    opacity: .6;
    display: block;
}

.report-issue__button {
    height: 45px;
    width: 60px;
    border: none;
    background: url("report-issue-button.svg");
    transition: .25s ease-in-out;
    cursor: pointer;
}

.report-issue__button:hover {
    width: 65px;
}

.modal__header {
    color: #464af0;
    font-size: 2rem;
    font-weight: 600;
    font-family: Poppins;
    margin-bottom: 1rem;
}

.modal__body {
    display: grid;
    grid-gap: 1rem;
}

.modal__form {
    display: grid;
    grid-gap: 1rem;
    width: 100%;
    margin-bottom: 1rem;
    max-width: 630px;
}

.report-issue__input {
    padding: .5rem;
}

.modal__submit {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: auto auto;
    justify-content: flex-end;
}

.modal__button {
    border-radius: 100px;
    padding: .5rem 1rem;
    border: 1px solid #464af0;
    color: #464af0;
    background: transparent;
    cursor: pointer;
}

.modal__button--primary {
    background: #464af0;
    color: white;
}
