@import 'https://fonts.googleapis.com/css?family=Roboto:300';
.dialogger-background {
    position: fixed;
    z-index: 9999;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: -moz-linear-gradient(45deg, rgba(117,46,113,0.6) 0%, rgba(0,128,128,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(117,46,113,0.6)), color-stop(100%, rgba(0,128,128,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, rgba(117,46,113,0.6) 0%, rgba(0,128,128,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, rgba(117,46,113,0.6) 0%, rgba(0,128,128,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, rgba(117,46,113,0.6) 0%, rgba(0,128,128,1) 100%); /* ie10+ */
    background: linear-gradient(45deg, rgba(117,46,113,0.6) 0%, rgba(0,128,128,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#008080', endColorstr='#752E71',GradientType=1 ); 
}
    .dialogger__container-cell {
        position: relative;
        width: 100%;
        min-height: 100%;
    }
    .dialogger__container{
        position: absolute;
        width: 100%;
        height: 100%;
        min-width: 320px;
        min-height: 320px;
        overflow: hidden;      

        border-radius: 5px;
        box-shadow: 0 0 17px 0 rgba(0,0,0,0.12);        
        background: #DCD5DC;   
    }

        .dialogger__container >* {
            font-family: "Roboto";        
        }

    .dialogger__header {
        position: relative;
        left: 0;
        right: 0;
        top: 0;  
        min-height: 20px;
        padding: 15px 50px;
        background: #752e72 none repeat scroll 0 0;
        
        color: white;
        font-size: 12px;
    }

    .dialogger__footer {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;  
        min-height: 50px;
        background: rgba(0, 128, 128, 0.5);    
        text-align: center;
    }

        .dialogger__content-holder{
            bottom: 50px;
            display: block;
            height: auto;
            position: absolute;
            top: 50px;
            overflow: auto;
            width: 100%;
        }
            .dialogger__content{
                display: table;
                width: 100%;
                height: 100%;
                padding: 0;
            }
            .dialogger__content-inner{
                display: table-cell;
                vertical-align: middle;
                text-align: center;
                
                padding: 15px;
            }
        .dialogger__content-inner{
            font-size: 20px;            
        }
.dialogger__btn{
    display: inline-block;
    min-width: 50px;
    height: 50px;    
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    line-height: 45px;
    font-size: 35px;
    border-radius: 5px;
}

    .dialogger__btn-close {
        position: absolute;        
        right: 0px;
        top: 0;
        background: rgba( 158, 62, 89, 0.5);   
    }

    .dialogger__btn-text{
        padding: 0 5px;
        margin: 0 5px;
        font-size: 25px;
    }
    .dialogger__btn-ok{
        background: rgba(0, 87, 87, 0.5);   
    }
@media (min-width: 480px){
    .dialogger-background {
        display: table;
    }
    .dialogger__header {
        font-size: 18px;
    }
    .dialogger__container-cell {
        display: table-cell;
        vertical-align: middle;
    }

        .dialogger__container {
            position: relative;
            width: 80%;
            margin: 0 auto;
        }      
}

@media (min-width: 768px){
    .dialogger__container {
        width: 60%;
        height: auto;
    }
}