﻿.dialog.custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 999999;
    display: table;
}

    .dialog.custom .cell {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }

        .dialog.custom .cell .box {
            display: inline-block;
            background-color: #000;
            max-width: 75%;
            padding: 20px 50px 20px 50px;
            box-sizing: border-box;
            -webkit-box-shadow: 0px 0px 3px 3px rgba(236,23,71,1);
            -moz-box-shadow: 0px 0px 3px 3px rgba(236,23,71,1);
            box-shadow: 0px 0px 3px 3px rgba(236,23,71,1);
        }

        .dialog.custom .cell .image {
            margin-bottom: 20px;
        }

        .dialog.custom .cell .image img {
            max-width: 64px;
            max-height: 64px;
        }

        .dialog.custom .cell .text {
            text-align: center;
            font-size: 16px;
        }

        .dialog.custom .cell .prompt {
            text-align: left;
            margin-top: 20px;
            width: 50%;
            font-size: 16px;
        }

            .dialog.custom .cell .prompt.number {
                text-align: center;
            }

            .dialog.custom .cell .buttons {
                text-align: center;
                padding-top: 20px;
            }

                .dialog.custom .cell .buttons .button {
                    display: inline-block;
                    padding: 10px 20px 10px 20px;
                    font-size: 14px;
                    font-family: slTitle;
                    background-color: #1C1D20;
                    border: 1px solid #141518;
                    cursor: pointer;
                    position: relative;
                }

                .dialog.custom .cell .buttons .button:not(:last-child) {
                    margin-right: 20px;
                }

.dialog.template {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 999999;
    display: table;
}

    .dialog.template > .cell {
        display: table-cell;
        text-align: center;
        vertical-align: middle;
    }

        .dialog.template > .cell > .box {
            position: relative;
            display: inline-table;
            background-color: #000;
            max-width: 90%;
            max-height: 90%;
            min-width: 100px;
            min-height: 100px;
            -webkit-box-shadow: 0px 0px 3px 3px rgba(236,23,71,1);
            -moz-box-shadow: 0px 0px 3px 3px rgba(236,23,71,1);
            box-shadow: 0px 0px 3px 3px rgba(236,23,71,1);
        }

            .dialog.template > .cell > .box > .headerrow {
                position: relative;
                display: table-row;
                height: 50px;
                background-color: #191B1F;
            }

                .dialog.template > .cell > .box > .headerrow > .header {
                    position: relative;
                    display: table-cell;
                    font-size: 16px;
                    font-family: 'slTitle';
                    text-align: center;
                    vertical-align: middle;
                }

                    .dialog.template > .cell > .box > .headerrow > .header > .close {
                        position: absolute;
                        top: 19px;
                        right: 19px;
                        cursor: pointer;
                    }

                        .dialog.template > .cell > .box > .headerrow > .header > .close > img {
                            width: 12px;
                        }

            .dialog.template > .cell > .box > .contentrow {
                position: relative;
                display: table-row;
            }

                .dialog.template > .cell > .box > .contentrow > .content {
                    position: relative;
                    display: table-cell;
                    text-align: left;
                    vertical-align: top;
                }
