﻿/*
* Notice: This source file was originally developed by Automatik IT, to make development of new projects more efficient, internally and externally for various clients.
* The functionality in this file is provided in source form instead of as a binary (NuGet Package etc.) to allow clients of Automatik IT to make changes on their own.
* Clients of Automatik IT have the right to modify this file and have ownership of the changes they make.
* Exclusive ownership of the original source file is not granted, as it's used in various projects for the sake of efficiency.
*/


/* MODAL */
/*
.modal-header button {
    font-size: 38px;
    line-height: 38px;
    background-color: transparent;
}
*/

.ModalControlBackground {
    /*display: none;*/
    content: '';
    height: 100%;
    width: 100%;
    border: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 200;
    background-color: rgba(0,0,0,.6);
    transition: background-color 3s;
}




.ModalControl {
    overflow: hidden;
    position: fixed;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    border-radius: 2px;
    background-color: rgba(4,171,237,1);
    color: #FFF !important;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .ModalControl > header {
        color: #FFF;
        height: 36px;
    }


    .ModalControl > header > h4 {
        display: none;
    }

    .Control.ModalControl > header .Close {
        color: #FFF;
    }

    .ModalControl > .Body {

        font-size: 18px;
    }


        .ModalControl > .Body > .Icon {
            display: block;
            font-size: 50px;
            margin-bottom: 36px;
            text-align: center;
            border: 1px solid #FFF;
            border-radius: 50%;
            width: 74px;
            height: 74px;
            margin-left: auto;
            margin-right: auto;
            padding: 12px;
            /* font-family: 'Open Sans', Arial, sans-serif; */
            /* vertical-align: -webkit-baseline-middle; */
            line-height: 52px;
        }




    .Control.ModalControl footer {
        /*justify-content: flex-end;*/
        justify-content: space-evenly;
        padding-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }


        .ModalControl footer button + button {
            margin-left: 0;
        }


    .ModalControl button {
        background: none;
        color: #FFF;
        font-weight: bold !important;
        border: 1px solid rgba(4,171,237,0) !important;
        
        /* height: 20px; */
        /*margin-top: auto;*/
        /*margin-left: 24px;*/
        text-transform: uppercase;
        flex-grow: 1;
        padding: 18px;
    }

    .ModalControl button:hover {
        background-color: rgba(255,255,255,.2);
    }
	
	.ModalControl h4 {
		display: none !important;
	}