* {
	padding: 0;
	margin: 0;
}

body {
/*	position: absolute;*/
	background-color: #0B0C0D;
/*	height: 100%;*/
	width: 1080px;
	font-family: 'Roboto';
}

input {
	font-size: 18px;
}

.form_map {
	color: #A569BD;
	padding: 10px;
	margin-top: 50px;
}

.structure_here {
	background-color: #2ECC71 !important;
    border-color: #2ECC71 !important;
}

.nothing_here {
	background-color: #E74C3C !important;
    border-color: #E74C3C !important;
}

.node_selected {
	background-color: #BE7636 !important;
    border-color: #BE7636 !important;
}

/*_________________________CSS_MAP______________________*/

.map {
	padding: 15px;
}

.line_map {
	display: flex;
	margin-top: 4px;
}

#line_6, #line_1, #line_3 {
	margin-left: 56px;
}

#line_7, #line_4 {
	margin-left: 112px;
}

/*.node {
	width: 100px;
	height: 100px;
	border: 1px solid red;
}*/


.node {
    margin-top: 30px;
    opacity: 0;
    transform: translate(0px,-30px);
    width: 104px;
    height: 60px;
    background-color: #A569BD;
    border-color: #A569BD;
    border-bottom: solid 1px #a569bd;
    border-top: solid 1px #a569bd;
    border-radius: 3px;
    position: relative;
    display: inline-block;
    margin-left: 8px;
    box-shadow: 0px 0px 25px 10px #0B0C0D;
    transition: all 0.3s ease;
}
.node:before {
    content: " ";
    width: 0; height: 0;
    border-bottom: 30px solid;
    border-color: inherit;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
    position: absolute;
    top: -30px;
}
.node:after {
    content: "";
    width: 0;
    position: absolute;
    bottom: -30px;
    border-top: 30px solid;
    border-color: inherit;
    border-left: 52px solid transparent;
    border-right: 52px solid transparent;
}

.node:hover {
	transform: scale(1.1) !important;
	z-index: 10;
}

.node > h1 {
	display: flex;
    flex-wrap: wrap;
    height: 100%;
    width: 100%;
    align-content: center;
    justify-content: center;
}
