/*****************************Intro settings***************************************/
.name_form
{
	/*Centered*/
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*Other*/
	display: flex;
	flex-direction: column;
	background-color: white;
	border: 7px solid;
	border-radius: 8px;
	border-image-source: url("../images/dialog_border.png");
	border-image-slice: 8;
	border-image-repeat: round;
	position: absolute;
	padding: 7px;
	
	align-items: center;
}

.name_form > div
{
	display: flex;
	flex-direction: row;
}

.name_form > div > #sexImages
{
	flex: 1;
	display: flex;
	flex-direction: column;
	cursor: pointer;
}


.name_form > div > #playerImage
{
	width: 100%;
}


#playerImages > img
{
}

.button_intro
{
	background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    text-align: center;
	cursor: pointer;
}

.button_intro:disabled
{
	background-color: gray;
    border: none;
    color: white;
    text-align: center;
	cursor: not-allowed;
}