/* Window Engine - MIT License - Copyright (c) 2019 Gauthier Staehler */

.window {
	position: absolute;
	top: 80px;
	z-index: 9;
	font-size: 13px;    
color: #fff;
    background-color: rgba(76,88,68,255);
    padding:0;
    border-top: 1px solid #889180;
    border-left: 1px solid #889180;
    border-bottom: 1px solid #282e22;
    border-right: 1px solid #282e22;
	width: 800px;
	height: 400px;
	opacity: 1;
	display: none;
}
a{
text-decoration: none; 
	color: white;
	cursor: pointer;
padding: 11px;
	font-size: 13px;  
	line-height: 30px;
    border-top: 1px solid #889180;
    border-left: 1px solid #889180;
    border-bottom: 1px solid #282e22;
    border-right: 1px solid #282e22;

}

.skinnybutton
{
padding: 6px; 
	line-height: 15px;
}

.nopadding
{
padding: 0px; 
    border-top: none;
    border-left: none;
    border-bottom: none;
    border-right: none;
	line-height: 0px;
		justify-content: space-between;
}

.disabled
{
	color:#282E22;
	 text-shadow:
    0.5px 0.5px 0 #75806F;
}
.disabled:active 
{
	border-top: 1px solid #889180;
    border-left: 1px solid #889180;
    border-bottom: 1px solid #282e22;
    border-right: 1px solid #282e22;
}
a:active {
    border-bottom: 1px solid #889180;
    border-right: 1px solid #889180;
    border-top: 1px solid #282e22;
    border-left: 1px solid #282e22;
}

[id$="header"] {
	padding: 10px;
	padding-top: 8px;
	z-index: 10;
	//bottom: 5px;
	font-size: 13px;    
	background-color: transparent;
	color: #fff;
	border-radius: 4px 4px 0 0;
	height: 40px;
	justify-content: space-between;
	display: flex;
	touch-action: none;
}

.windowActive {
	z-index: 100;
}

.windowTitle {
	position: relative;
	bottom: 2px;
}

.mainWindow {
	padding: 20px;
line-height: 7px;
	padding-top: 0px;
}

[id^="closeButton"] {
    font-family: Webdings;
	color: white;
	cursor: pointer;
	position: relative;
	left: 4px;
	top: 0px;
	font-size: 15px;    
    width: 18px;
    height: 18px;
    text-align: right;
line-height: 15px;
    background-color: rgba(76,88,68,255);
    padding:0;
    border-top: 1px solid #889180;
    border-left: 1px solid #889180;
    border-bottom: 1px solid #282e22;
    border-right: 1px solid #282e22;
}

.windowGroup {
	justify-content: center;
	display: flex;
	font-family: Tahoma;
	line-height: 1.5;
}

.purple {
	background-color: rebeccapurple;
}

.orange {
	background-color: burlywood;
}

.brown {
	background-color: brown;
}

.cyan {
	background-color: darkcyan;
}

.crimson {
	background-color: crimson;
}

.green {
	background-color: darkgreen;
}

.small {
	width: 512px;
	height: 406px;
}
.taller {
	width: 512px;
	height: 600px;
}
.tallest {
	width: 512px;
	height: 748px;
}
.large {
	width: 1000px;
	height: 500px;
}

.legal {
	width: 700px;
	height: 500px;
}

.joji {
	width: 850px;
	height: 650px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.windowGroup p {
	cursor: default;
	margin-top: 0;
	margin-bottom: 1rem;
}
