.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 #bab7b7;
        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;
    }

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

    &-header {
        border-bottom: 1px solid #c8c6c5;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    &-close {
        cursor: pointer;
        float: right;
        margin: 0 11px;
        margin-top: 4px;
    }

    &-body {
        overflow-y: auto;
        padding: 20px;
    }

    &-footer {
        padding: 10px;
    }
}

.ReactModal-body-open {
    overflow: hidden;
}
