.Modal {
    &-background {
        background: rgba(0, 0, 0, .5);
        bottom: 0;
        height: 100%;
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 100%;
    }

    &-container {
        background: #fff;
        border: 1px solid #ccc;
        height: 80%;
        left: 10%;
        position: absolute;
        top: 10%;
        width: 80%;
    }

    &-header {
        background: #ececec;
        border-bottom: 1px solid #ccc;
        height: 50px;
        padding: 5px;
    }

    &-header-title {
        float: left;
        font-size: 110%;
        font-weight: bold;
        line-height: 40px;
        margin: 0;
    }

    &-header-close {
        background: inherit;
        border: none;
        float: right;
        font-size: 150%;
        font-weight: bold;
        line-height: 40px;
        margin-right: 5px;
        padding: 0;
    }

    &-body {
        height: calc(100% - 100px);
        overflow: auto;
    }

    &-footer {
        border-top: 1px solid #ccc;
        height: 50px;
        padding: 5px;
    }

    &-footer-actions {
        float: right;
        padding-top: 5px;
    }

    &-footer-button {
        background: linear-gradient(rgb(235, 235, 235), rgb(255, 255, 255));
        border: 2px solid #ccc;
        font-weight: bold;
        margin: 0 5px;
        padding: 5px 10px;
    }
}
