/*cuadro dialogo*/
.Cuadro1{
	position: fixed;
	top: 85%;
	left:40%;
	width:50%;
	height:50%;
	transform: translateX(-10%);
	transform: translateY(-10%);
	display: none;
}

.Dialogo{
	background-color: white;
	position:absolute;
	margin-top:10px;
	left:0;
	right:0;
	width:auto;
	height:30%;
        border: 2px solid #45045e;
        border-radius: 10%;
        opacity: 0.85;
	backdrop-filter: opacity(20%);
	box-shadow: 0px 0px 25px #222;
	overflow: auto;
}
.Dialogo p{
	color: blue;
	font-size:16px;
	padding-left:4px;
	
}
.Dialogo span{
	font-weight: bold;
}

/*Subcutis Dialogo */
.Subcutis{
        position: fixed;
        top:15%;
        left:500px;
/*	 width:460px;
        height:100%;*/
	display:none;
}
.SubcutisDiag{
        background-color: white;
        position: relative;
        top:0;
        left:0;
        right:0;
	height:40%;
        border: 2px solid #45045e;
        border-radius: 10%;
        opacity: 0.9;
        backdrop-filter: opacity(20%);
        box-shadow: 0px 0px 25px #222;
        overflow: none;
}
.SubcutisDiag img{
	top:0;
	padding-left:90px;
	max-width: 580px;
	width:70%;
	height: auto;
	overflow: none;
}
/*Figuras */
.icon{
	padding-left:85%;
}
#iconButton{
        background-color:#45045e;
        width:50px;
	height:50px;
	font-size:30px;
	font-weight:bold;
	color: white;
        border-radius:50%;
	border-color:#45045e;
}

/*Efectos de boton */
.boton{
        margin-top: 0px;
	margin-left:300px;
        padding: 9px;
        border-radius: 100px;
        background-color: #351268;
        color: white;
        cursor: pointer;
        font-size:9px;
        transition: all 0.5s;
}

.boton span{
        cursor: pointer;
        display: inline-block;
        position: relative;
        transition: 0.5s;
}
.boton span:after{
        content: '\00bb';
        color: white;
        position: absolute;
        top:0;
        opacity: 0;
        left: 10px;
        transition: 0.5s;
}

.boton:hover span{
        padding-left: 20px;
}
.boton:hover span:after{
        opacity:1;
        left:0;
}
/*RadioButton betroffene*/
.Betroffene{
	position:fixed;
	top:50%;
	left:70%;
}
.Betroffene li{
	list-style:none;
	font-size:20px;
	font-weight:bold;
}

#betroffeneA{color:#351268;}

.Betroffene:hover #betroffeneA{
	color: black;
	box-shadow: 0px 0px 25px yellow;
}

#betroffeneB{color:#351268;}
.Betroffene:hover #betroffeneB{
        color: black;
        box-shadow: 0px 0px 25px black; 
}


