﻿/* Dialog de corte
-------------------------------------------------- */

.common--dialogCorte {
    width: 100%; min-height: 100vh;
    margin-bottom: -20px; padding: 20px;
    display: flex;
    flex-wrap: wrap;

    background: linear-gradient(182deg, #2d6072, #f3d2b5);
    background-size: 400% 400%;
}
.common--dialogCorte.inactive {display: none;}

    .common--dialogCorte .dialogCorte--outPage {
        margin-bottom: 10px;
        flex-basis: 100%;
        display: flex;
    }
        .common--dialogCorte .dialogCorte--outPage p {
            margin: auto auto 0 auto; padding-top: 10px;
            width: 400px; height: 40px;

            border-radius: 5px;
            background-color: rgb(255, 255, 255, 0.2);
            cursor: pointer;

            font-family: 'Segoe UI';
            color: #fff;
            font-size: 16px;
            text-align: center;
        }
        .common--dialogCorte .dialogCorte--outPage p:hover{
            background-color: rgb(255, 255, 255, 0.8);

            color: #00bcd6;
            font-weight: bold;
        }

    .common--dialogCorte .dialogCorte--body {
        width: 400px;
        margin: 0 auto auto auto; padding: 10px;
        display: block;

        background-color: #2a363b;
        box-shadow: 0px 0px 5px 0 #424242;
    }
    .common--dialogCorte .dialogCorte--body.inactive{display:none;}

        .common--dialogCorte .dialogCorte--title {
            width: 100%;

            text-align: center;
            line-height: 20px;
            font-family: 'Segoe UI';
            font-size: 22px;
            color: white;
            font-weight: bold;
        }

        /* Escena: Waiting
        -------------------------------------------------- */
        .common--dialogCorte .dialogCorte--waitingScene {
            height: 100%; width: 100%;
            display: flex;

            font-family: 'Segoe UI';
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
        }
        .common--dialogCorte .dialogCorte--waitingScene.inactive {display: none;}

            .common--dialogCorte .dialogCorte--waitingScene p {
                margin: auto;

                font-family: 'Segoe UI';
                color: #fff;
                font-size: 18px;
                font-weight: bold;
                text-align: center;
            }
        
        /* Escena: Mostrando contenido
        -------------------------------------------------- */
        .common--dialogCorte .dialogCorte--content { height: 100%; width: 100%; }
        .common--dialogCorte .dialogCorte--content.inactive {display: none;}

            .common--dialogCorte .dialogCorte--subtitle{
                margin: 5px 0 2px;

                font-family: 'Segoe UI';
                font-size: 20px;
                color: white;
                text-align: left;
                font-weight: bold;
            }

            .common--dialogCorte .dialogCorte--text{
                margin: 0px 0 8px;

                font-family: 'Segoe UI';
                font-size: 15px;
                color: white;
                text-align: left;
                font-weight: normal;
                line-height: 15px;
            }




















/* VIEJOS, POR SUSTITUIR
-------------------------------------------------- */

/* general corte dialog
-------------------------------------------------- */
.dialogCorte--background {
    display: flex;
    flex-wrap: wrap;
    /*background-image: linear-gradient(#2d6072, #f3d2b5);*/
    background: linear-gradient(182deg, #2d6072, #f3d2b5);
    background-size: 400% 400%;
    width: 100%;
    min-height: 100vh;
    margin-bottom: -20px;
    padding: 20px;
}
.dialogCorte--background.inactive {display: none;}

    .dialogCorte--outPage {
        flex-basis: 100%;
        display: flex;
        margin-bottom: 10px;
    }
    .dialogCorte--outPage p {
        margin: auto auto 0 auto;
        cursor: pointer;
        width: 400px;
        height: 40px;
        border-radius: 5px;
        padding-top: 10px;
        background-color: rgb(255, 255, 255, 0.2);

        font-family: 'Segoe UI';
        color: #fff;
        font-size: 16px;
        text-align: center;
    }
    .dialogCorte--outPage p:hover{background-color: rgb(255, 255, 255, 0.8); color: #00bcd6; font-weight: bold;}

    .dialogCorte--body {
        display: block;
        background-color: #2a363b;
        width: 400px;
        box-shadow: 0px 0px 5px 0 #424242;
        padding: 10px;
        margin: 0 auto auto auto;
    }
    .dialogCorte--body.inactive{display:none;}

        .dialogCorte--title {
            width: 100%;
            text-align: center;
            line-height: 20px;

            font-family: 'Segoe UI';
            font-size: 22px;
            color: white;
            font-weight: bold;
        }

        /* Escena: Waiting
        -------------------------------------------------- */
        .dialogCorte--waitingScene {
            height: 100%;
            width: 100%;
            display: flex;

            font-family: 'Segoe UI';
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
        }
        .dialogCorte--waitingScene.inactive {display: none;}

            .dialogCorte--waitingScene p {
                margin: auto;

                font-family: 'Segoe UI';
                color: #fff;
                font-size: 18px;
                font-weight: bold;
                text-align: center;
            }
        
        /* Escena: Mostrando contenido
        -------------------------------------------------- */
        .dialogCorte--content {
            height: 100%;
            width: 100%;
        }
        .dialogCorte--content.inactive {display: none;}

            .dialogCorte--subtitle{
                margin: 5px 0 2px;

                font-family: 'Segoe UI';
                font-size: 20px;
                color: white;
                text-align: left;
                font-weight: bold;
            }

            .dialogCorte--text{
                margin: 0px 0 8px;

                font-family: 'Segoe UI';
                font-size: 15px;
                color: white;
                text-align: left;
                font-weight: normal;
                line-height: 15px;
            }


/* general normal dialog
-------------------------------------------------- */
.dialog--background {
    display: flex;
    flex-wrap: wrap;
    /*background-image: linear-gradient(#2d6072, #f3d2b5);*/
    background: linear-gradient(182deg, #2d6072, #f3d2b5);
    background-size: 400% 400%;
    min-height: 100vh;
    margin-bottom: -20px;
    padding: 20px;
}
.dialog--background.inactive {display: none;}

    .dialog--body {
        display: block;
        background-color: #2a363b;
        width: 400px;
        box-shadow: 0px 0px 5px 0 #424242;
        padding: 10px;
        margin: auto auto auto auto;
    }

        .dialog--title {
            width: 100%;
            text-align: center;
            line-height: 20px;

            font-family: 'Segoe UI';
            font-size: 22px;
            color: white;
            font-weight: bold;
        }

        /* Escena: Waiting
        -------------------------------------------------- */
        .dialog--waitingScene {
            height: 100%;
            width: 100%;
            display: flex;

            font-family: 'Segoe UI';
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
        }
        .dialog--waitingScene.inactive {display: none;}

            .dialog--waitingScene p {
                margin: auto;

                font-family: 'Segoe UI';
                color: #fff;
                font-size: 18px;
                font-weight: bold;
                text-align: center;
            }
        
        /* Escena: Mostrando contenido
        -------------------------------------------------- */
        .dialog--content {
            height: 100%;
            width: 100%;
        }
        .dialog--content.inactive {display: none;}

            .dialog--subtitle{
                margin: 5px 0 2px;

                font-family: 'Segoe UI';
                font-size: 20px;
                color: white;
                text-align: left;
                font-weight: bold;
            }

            .dialog--text{
                margin: 0px 0 8px;

                font-family: 'Segoe UI';
                font-size: 15px;
                color: white;
                text-align: left;
                font-weight: normal;
                line-height: 15px;
            }