﻿.dialogoverlay {
    display: none;
    opacity: .8;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #fdfdfd;
    width: 100%;
    z-index: 2147483647;
}

.dialogbox {
    display: none;
    position: fixed;
    background: #2196f3;
    border-radius: 13px;
    width: 550px;
    z-index: 2147483647;
}

    .dialogbox > div {
        background: #FFF;
        margin: 8px;
    }

        .dialogbox > div > .dialogboxhead {
            background: #2196f3;
            font-size: 19px;
            padding: 10px;
            color: #f7e025;
        }

        .dialogbox > div > .dialogboxbody {
            background: #fff;
            padding: 12px;
            color: #606062;
        }

        .dialogbox > div > .dialogboxfoot {
            background: #2196f3;
            padding: 10px;
            text-align: right;
        }


@media screen and (min-width: 200px) {
    .dialogbox {
        width: 330px;
    }
}

@media screen and (min-width: 400px) {
    .dialogbox {
        width: 380px;
        left:0px;
    }
}
@media screen and (min-width: 800px) {
    .dialogbox {
        width: 500px;
        left: 600px;
        
    }
}

