.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
    background: rgba(0,0,0,0.8);
}

.lightbox:target {
	/** Remove default browser outline */
	outline: none;

	/** Unhide lightbox **/
	display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.lightbox__body {
    position: fixed;
    top: 1rem;
    bottom: 1rem;
    background: white;
    width: 85%;
    max-width: 1200px;
    /* overflow: auto; */
    overflow-x: hidden;
    background-attachment: local;

    -webkit-overflow-scrolling: touch;
}

.lightbox h2 {
    text-align: left;
}

.lightbox p {
    text-align: justify;
}

.lightbox__role {
    text-align: left !important;
    color: grey;
    font-size: 1.85rem;
    margin-top: 0;
    padding-top: 0;
}

.lightbox__image {
    margin: auto;
    padding-right: var(--main-page-side-padding);
    padding-left: var(--main-page-side-padding);
    margin-top: 3rem;
    max-width: 375px;
}

.lightbox__image__protagonista  {
    border-radius: 50%;
    border: var(--ted-red) 3px solid;
    background: #fbfbfb;
    /* Removing the border thickness from the width */
    width: calc(100% - 6px); 
}

.lightbox__close__hidden {
	width: 100%;
	height: 100%;
    position: fixed;
	vertical-align: top;
}


.lightbox__close {
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    padding-top: 1.5rem;
    padding-right: 1.5rem;
    font-size: 5rem;
    color: var(--ted-red);
}

div.chiudi-label {
    font-size: 0.7rem;
    color: black;
}