@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.VentanaPop{
    background-color: rgb(92, 65, 105);
    width: 65%;
    height: 75%;
    font-family: 'Montserrat';
    text-align: center;
    padding: 9px;
    border-radius: 10px;
    overflow: auto;
    display: none;
    position: absolute;
    left: 18%;
    top: 13%;
    z-index: 1;
}

.IconoCerrar{
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    z-index: 2;
}

.InfoPonente{
    position: relative;
    display: flex;
    width: 70%;
	height: 100%;

	float: left;
    text-align: justify;
	padding: 5px;
	overflow: auto;
    color: white;
    font-family: 'Montserrat';
    font-size: 17px;
}

.FotoPonente{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	float: left;
	width: 30%;
	height: 100%;
	overflow: hidden;
}

.FotoParticipante{
    max-width: 90%;
}

.InfoPonente::-webkit-scrollbar{
	width: 6px;
}

.InfoPonente::-webkit-scrollbar-thumb{
	background-color: rgb(250, 93, 224);
	border-radius: 5px;
}