*
{
	box-sizing: border-box;
}
html,body
{
	
	width: 100%;
	height: 100%;
	margin: 0;
    padding:0;
	font-size: 12px;    
	color: white;
	background-color:rgba(40,40,40,1);
	font-family: 'Poiret One', cursive;
}
#lightbox{
	position: relative;
    background-color: black;
	/*width: 800px;*/
	border: 1px solid white;
    border-radius:10px;
	box-shadow: -1px 5px 40px rgba(255, 255, 255, 0.2);       
}


#lightbox-img{
	width:   800px;
    height: 533px;
	z-index:100;
    border-radius: 10px 10px 0 0;
    background-size: cover;
}



#lightbox p{
    padding:5px 0 10px 0; 
	font-size: 1.5em;
}

#lightbox-close{
	position: absolute;
	cursor: pointer;
	font-size: 2.5em;
	width: 40px;
	top: 5px;
	right: 0;
	text-align: center;
	color: white;
}


.lightBox-selectors{
    font-size: 2em;
	font-weight: bold;
}

.lightBox-enabled{
	cursor: pointer;
    color:white;
}
.lightBox-disabled{
	cursor:default;
	pointer-events:none;
    color:gray;
}

#lightbox-btns i{
	padding:15px 8px;
	font-size:1.5em;
}

#lightbox-btns{
	text-align: center;
	cursor:default;
}

#lightbox-btns i:hover{
    color:#fb1;
}

#lightbox-text{
	text-align: center;
    color:white;
}

#lightboxFlickr{
    display: inline-block;
	width: 65%;    
    margin-top: 10px;
    font-size: 3.5em;   
}

/***** Tooltip *******/
/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}
/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 110px;
    text-align: left;
    font-size: 0.6em;
    font-family: 'Muli', sans-serif;
    border-radius: 6px;
    position: absolute;
    transform: translate(0px,-27px);
    z-index: 1;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;   
}
.tooltip:hover{
    color:#fb1;
}
