#gallery {
  display: none;
  width: 100vw;
  height: calc(100vh - 80px);
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 1;
  position: fixed;
  top: 80px;
  left: 0;
  color: white;
  flex-direction: column;
  justify-content: center; }
  #gallery #gallery-box {
    padding: 20px 0;
    width: auto;
    height: 100%;
    align-self: center;
    display: flex; }
    #gallery #gallery-box .gallery-photos {
      transition: all 0.7s;
      height: auto;
      width: 80%;
      max-width: 100vw;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: 0 auto; }
      #gallery #gallery-box .gallery-photos .btn-click {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 5vw;
        min-width: 50px;
        height: 20vh;
        margin-top: -10vh;
        top: 50%;
        font-size: 40px;
        z-index: 1;
        position: absolute;
        cursor: pointer; }
        #gallery #gallery-box .gallery-photos .btn-click span {
          padding: 15px;
          background-color: purple;
          opacity: 0.65; }
        #gallery #gallery-box .gallery-photos .btn-clickhover {
          cursor: pointer; }
      #gallery #gallery-box .gallery-photos .gallery-prev {
        left: 0; }
      #gallery #gallery-box .gallery-photos .gallery-next {
        right: 0; }
      #gallery #gallery-box .gallery-photos .gallery-close {
        width: 25px;
        height: 25px;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: purple;
        position: absolute;
        right: 5px;
        top: 8px;
        z-index: 999;
        cursor: pointer; }
      #gallery #gallery-box .gallery-photos #photo {
        max-height: 100%;
        max-width: 100%;
        border: 1px solid #ccc;
        padding: 5px;
        background-color: white;
        transition: all 0.5s; }
