/*************************************************************************
**
** Copyright (c) by jeff (jeff@lipsia.de)
**
** Author:  jeff
**
** File:    $Date: 2022-01-14 16:17:10 +0100 (Fr, 14. Jan 2022) $
**
** Purpose: the message box css
**
** Created: 2019/12/09
**
** Update:  $Date: 2022-01-14 16:17:10 +0100 (Fr, 14. Jan 2022) $
**
** Notes:
**
************************************************************************/

.message_box
{
	font-size:        11px;
	font-weight:      normal;
	text-align:       left;
	vertical-align:   top;
	width:            auto;
	height:           auto;
	top:              -2000px;
	left:             -2000px;
	position:         absolute;
	padding:          0px;
	color:            black;
	z-index:          200;
}

.message_box_title
{
	font-size:        12px;
	font-weight:      bolder;
	text-align:       center;
	height:           15px; 
	width:            auto;
	float:            left;
}

.message_box_content
{
	font-size:        11px;
	font-weight:      normal;
	text-align:       left;
	overflow:         auto; 
	width:            auto;
	height:           auto; 
	padding-right:    10px;
	float:            left;
	clear:            both;
}

.message_box_buttons
{
	position:			relative;
	float:				left;
	clear:				both;
	text-align:			center;
	width:				100%;
	font-size:			14px;
	font-weight:		bold;
	align-items:		center;
	justify-content:	center;
	display:			flex;
    margin-top:         10px;
    margin-bottom:      10px;
}
