/*
 Styles for the lightbox
 (C) Fischer Software Design
 */
 
#lightbox
{
	display:none;
}

/* The Modal (background) */
.modal
{
	display: block !important;
	background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    display: none;
    overflow: hidden;
    outline: 0;
    padding: 30px;
}

@media (max-width: 767.98px) 
{
	.modal
	{
		padding: 10px;
	}
}


.modal-content {
  
  background-color: #000 !important;
  margin: auto;
  padding: 0;
  width: 90%;
  height: 90%;
}

.modal-content .column,
.modal-content .carousel,
.modal-content .carousel-inner,
.modal-content .carousel-item
{
	width: 100%;
	height: 100%
}

/* The Close Button */
.close 
{
  color: white;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus 
{
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

#lightbox-carousel .carousel-control-next span,
#lightbox-carousel .carousel-control-prev span
{
	background-color: rgba(255,255,255,0.5);
	padding: 10px;
	border-radius: 5px;	
}

.lightbox-item
{
	cursor: pointer;
}

#lightbox .carousel-item
{
	background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
	position:relative;
}

.lightbox-description
{
	position:absolute;
	width: 100%;
	margin: auto;
	bottom: 0;
	padding:1em;
	background-color: rgba(0,0,0,0.5);
	color: white;
}

@media (min-width: 768px) 
{
	.lightbox-description-text
	{
		max-width: 60%;
	}
}