.ReactModal {
    align-items: center;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1050;

    &-content {
        background: white;
        border: 1px solid $gray-200;
        border-radius: 3px;
        box-shadow: 0 15px 12px 0 rgba(0, 0, 0, .22), 0 19px 38px 0 rgba(0, 0, 0, .3);
        display: flex;
        flex-direction: column;
        max-height: calc(100vh - 80px);
        min-height: 130px;
        overflow: hidden;
        position: relative;
        min-width: 400px;
    }

    &-header {
        align-items: center;
        border-bottom: 1px solid $gray-300;
        display: flex;
        padding: 10px;
    }

    &-header-text {
        font-size: 18px;
        margin: 0;
    }

    &-close {
        margin-left: auto;
        margin-top: -4px;
        order: 2;
    }

    &-body {
        overflow-y: auto;
        padding: 10px;

        p {
            margin: 0;
        }
    }

    &-body-open {
        overflow: hidden;
    }

    &-footer {
        padding: 10px;
        border-top: 1px solid $gray-300;

        .btn:not(:first-child) {
            margin-left: 10px;
        }
    }

    &-footer-right-align {
        display: flex;
        justify-content: flex-end;
    }
}
