#game-menu-scene {
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
}

.game-menu {
	position: absolute;
	right: 20px;
	top: 20px;
	bottom: 150px;
	width: 260px;
	border: 2px solid black;
	border-radius: 5px;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}

.game-menu-button {
	position: relative;
	width: 100%;
	height: 10%;
	background: var(--white);
	outline: 1px solid black;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
	align-content: center;
	text-align: center;
}

.game-menu-button:hover {
	background-color: #bfbfbf;
	color: var(--red);
}

.game-menu-button-selected {
	position: relative;
	width: 100%;
	height: 10%;
	background: var(--red);
	color: var(--white);
	outline: 1px solid black;
	cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
	transition: .2s;
	align-content: center;
	text-align: center;
}

.game-menu-info {
	position: absolute;
	right: 20px;
	left: 20px;
	bottom: 20px;
	height: 90px;
	background: var(--white);
	border: 2px solid black;
	border-radius: 5px;
	padding: 10px 20px;
	line-height: 24px;
}

.game-menu-container {
	display: none;
	position: absolute;
	left: 20px;
	width: 475px;
	top: 20px;
	bottom: 150px;
	background: var(--white);
	border: 2px solid black;
	border-radius: 5px;
	overflow: hidden;
}

.game-menu-pop-container {
	display: none;
	position: absolute;
	background: #bfbfbf;
	border: 2px solid black;
	border-radius: 5px;
	overflow: hidden;
}

.game-menu-pop-header {
	position: absolute;
	width: 100%;
	height: 26px;
    background: var(--red); 
    border-bottom: 2px solid black;
}

.game-menu-pop-close {
	position: absolute;
    top: 1px;
    right: 4px;
    width: 23px;
    height: 24px;
    line-height: 26px;
    color: var(--white);
    cursor: url('../assets/images/misc/cursor-pointer.png') 0 0, pointer;
}

/*SETTINGS*/

.menu-settings-section {
    position: relative;
    width: 96%;
}

.menu-settings-section-header{
    position: relative;
    width: 100%;
    height: 24px;
    border-bottom: 2px dashed var(--red);
    color: var(--red);
    margin-bottom: 15px;
}

.menu-settings-section-selector {
    width: 95%;
    line-height: 26px;
    padding-left: 20px;
}

.menu-settings-data-buttons {
    display: flex;
    gap: 10px;
    padding: 5px 20px 0 20px;
}

.menu-settings-data-buttons .window-section-button {
    flex: 1;
}
