#fondo-popup{
    width: 100%;
    height: 100vh;
    background-color: lightblue;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.popup{
    background-color: white;
    width: 400px;
    height: 150px;
    border: 1px solid #868686;;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 10px;
    box-sizing: border-box;
}

#imagenPopup{
    width: 40px;
    height: 40px;
    background-size: 100% 100%;
    margin-top:40px;
    float: left;
}
.mensajePopup{
    float: left;
    margin-left: 30px;
    border: 0px solid black;
    width: 300px;
    height: 70px;
    clear:right;
    resize: none;
    margin-top: 30px;

}



.boton-popup {
    float:right;
	background-color:#7892c2;
	border-radius:28px;
	border:1px solid #4e6096;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:16px;
	padding:5px 20px;
    margin-right: 5px;
}
.boton-popup:hover {
	background-color:#476e9e;
}
.boton-popup:active {
	position:relative;
	top:1px;
}
.boton-popup.cancelar {
    float:right;
    background-color:#ffffff;
	border-radius:28px;
	border:1px solid #000000;
	color:#000000;
	font-family:Arial;
	font-size:16px;
	padding:5px 20px;
    margin-left: 5px;
    margin-right: 5px;

}
.boton-popup.cancelar:hover {
	background-color:#de3e3e;
    color:white;
}
.boton-popup.cancelar:active {
	position:relative;
	top:1px;
}
