/* css document */

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

.galleryContainer   {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 10;
}

.gallery    {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 50%;
    height: 100%;
    max-width: 1200px;
    max-height: 100%;
    min-width: 500px;
    border: 0px;
    border-left: 1px solid rgba(255, 160, 6, 1);
    border-right: 1px solid rgba(255, 160, 6, 1);
    background-color: rgba(0, 0, 0, .8);
    overflow: auto;
    }

.gallery    span  {
    color: rgba(255, 160, 6, 1);
    font-weight: 900;
    padding: 10px;
}

.polaroid   {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    cursor: pointer;
}

.polaroid   img {
    border: 10px solid rgb(255, 255, 255);
}

.polaroid   figcaption  {
    color: rgb(255, 160, 6);
    font-style: italic;
}

.frame  {
    position: fixed;
    display: none;
    opacity: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 15, .95);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 100;
    cursor: pointer;
}
