.uik-dialog-background {
    background-color: #333;
    position: fixed;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    vertical-align: middle;
    line-height: 100vh;
    text-align: center;
    top: 0;
    left: 0;
    .uik-dialog {
        text-align: left;
        display: inline-block;
        width: 300px;
        margin: auto;
        line-height: normal;
        h3 {
            margin-top: 0px;
        }
        .icon-button {
            margin-right: 0px;
            margin-left: 10px;
            width: 2.5rem;
        }
    }
}

.uik-dialog {
    background: $dialog-background-color;
    border-radius: $general-border-radius;
    padding: $dialog-padding;
    margin-bottom: $dialog-margin-bottom;
    color: #FFF;
    position: relative;
    .closed-button {
        color: #777;
        font: 14px/100% arial, sans-serif;
        position: absolute;
        right: 5px;
        top: 5px;
        text-decoration: none;
        text-shadow: 0 1px 0 #fff;
        &:after {
            content: '✖';
            /* UTF-8 symbol */
        }
    }
    &.error {
        background: $error-color;
    }
    &.success {
        background: $success-color;
    }
    &.warning {
        background: $warning-color;
    }
    &.info {
        background: $info-color;
    }
}
