/*********************************************************************************
/*
/* lightbox overlay
/*
/********************************************************************************/

.lightbox-overlay
{
  height: 100vh; 
  width: 100vw;
  position: fixed; 
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  background-image: url( ../images/assets/lightbox_loading.gif );
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-content: center;
}

/*********************************************************************************
/*
/* lightbox image
/*
/********************************************************************************/

.lightbox-wrapper
{
  width: 100%;
  height: 100%; 
  position: relative; 
  opacity: 0;
//  transition: opacity 0.5s;
}

.lightbox-wrapper.reveal
{
  opacity: 1 !important;
}

.lightbox-wrapper img
{
  height: 100%;
  width: auto;

  border: 5px solid White;
  border-radius: 6px;
  background-color: White;
}

/*********************************************************************************
/*
/* lightbox close button
/*
/********************************************************************************/

.close-lightbox
{
  position: absolute;
  top: -12px;
  right: -12px;
  color: White;
  cursor: pointer;
}

.close-lightbox svg
{
  width: 25px;
  height: 25px;
  background-color: Black;
  border-radius: 12.5px;

  -moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
}

