/**
 * jQuery Really Simple Dialog plugin 1.0
 *
 * Copyright (c) 2017 NTD3004 (https://github.com/NTD3004/JQuery-Really-Simple-Dialog)
 *
 * Samples and instructions at: 
 * https://github.com/NTD3004/JQuery-Really-Simple-Dialog
 *
 * This script is free software: you can redistribute it and/or modify it 
 * under the terms of the GNU General Public License as published by the Free 
 * Software Foundation, either version 3 of the License, or (at your option)
 * any later version.
 */

 .simple-dialog {
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 11;
    width: 100%;
    min-height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;
    -webkit-transition: opacity 1ms .25s, -webkit-transform .25s;
    transition: opacity 1ms .25s, -webkit-transform .25s;
    -o-transition: transform .25s, opacity 1ms .25s;
    transition: transform .25s, opacity 1ms .25s;
    transition: transform .25s, opacity 1ms .25s, -webkit-transform .25s;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.simple-dialog.active {
	height: 100%;
    opacity: 1;
    -webkit-transition: -webkit-transform .25s;
    transition: -webkit-transform .25s;
    -o-transition: transform .25s;
    transition: transform .25s;
    transition: transform .25s, -webkit-transform .25s;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.simple-dialog a:hover {
	cursor: pointer;
}

.simple-dialog-content {
    background-color: #f2d8a7;
    width: 280px;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: left;
    box-sizing: border-box;
    border-radius: 5px;
}

.simple-dialog-header, .simple-dialog-footer {
	padding: 15px;
    position: relative;
    text-align: center;
}

.simple-dialog-header h3{
    font-size: 17px;
    font-weight: bold;
}

.simple-dialog-body {
	padding: 0 15px;
}

.simple-dialog-body p {
    padding: 15px;
    background: #fdfcf7;
    border-radius: 5px;
    font-size: 15px;
    box-shadow: 2px 2px 3px black;
}




.simple-dialog-close {
	color: #999999;
    position: absolute;
    top: 15px;
    right: 10px;
    font-size: 30px;
    margin-top: -5px;
    display: inline-block;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
}

.simple-dialog-close:hover{
    text-decoration: none;
}

.simple-dialog-close:before {
	content: "\00d7"; /* here is your X(cross) sign*/
	color: #fff;
	font-weight: bold;
	font-family: Arial, sans-serif;
}



.simple-dialog-button {
	display: block;
    width: 200px;
    margin: 15px auto;
    color: #fff;
    background-color: rgb(0, 123, 255);
    position: relative;
    display: inline-block;
    padding: 9px 20px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    /*vertical-align: top;*/
    cursor: pointer;
}

.simple-dialog-button.accept, .simple-dialog-button.cancel {
	width: 30%;
}

.simple-dialog-button.accept {
	background-color: rgb(40, 167, 69);
}

.simple-dialog-button.cancel {
	background-color: rgb(134, 142, 150);
}

#input_message {
	width: 220px;
}

#aOk {
    background-color: #F1AF00;
}