html,body{
  margin: 0px;
  padding: 0px;
  height: 100vh;
  width: 100vw;
}


/*parent gallery div*/
.photos-main-holder .albumsList{
  display: inline-block;
  height: 95%;
  width: 100%;
  background: #678;
  overflow: hidden;
  overflow-y: auto;
}

.user-gallery-wrapper{
    width: 160px;
    padding: 4px;
    display: inline-block;
    border: 0.5px solid #ccc;
    font-family: Helvetica;
    margin:5px 8px; 
}

/* Gallery */
.gallery_info{
    width: 100%;
    display: block;
    text-align: left;
    padding: 0;
    margin-top: 12px;
}

.gallery_info .album-name{
    text-align: center;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.gallery_info span{
    display: inline-block;
    color: #222;
    margin: 5px;
    font-size: 12px;
}

.gallery_info .gallery-fab-btn {
  border-radius: 50%;
  width: 24px;
  float: right;
  height: 24px;
  text-align: center;
  transition: box-shadow 0.4s ease;
  background: #222;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  font-weight: bold;
  cursor: pointer;
}


.gallery_info .gallery-fab-btn span {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.7rem;
  border-radius: 50%;
  margin-top: -3px;
  margin-left: 0px;
  transition: transform 0.5s ease;
}



.gallery__item{
    width: 150px;
    height: 150px;
    margin: 0;
    padding: 0;
}

/* Gallery Images */

.gallery__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 7px 15px rgba(0,0,0,.15);
    padding: 4px;
}



/*preview images on the fly*/
.mobile-preview-box{
position:fixed;
display:none;
width:100%;
z-index: 9001;
height: 100%;
bottom: 10px;
background: #0c0;
}


.new-album-card{
position:fixed;
display:none;
top: 30%;
left: 10%;
width:80%;
z-index: 9001;
height: 45%;
bottom: 10px;
background: #3cf;
} 


.new-album-card  input{
border: 0.8px solid #ccc;
margin:10px 10px;
width: 80%; 
padding: 0.8rem;
outline: none;
display: block;
text-align: center;
background: #fff;
}


.new-album-card .album-head-comment p{
  padding: 6px;
  font-size: 16px;
  text-align: center;
  font-family: Helvetica;
  font-weight: bold;
  line-height: 1.38;
}


 .show-upload-box{
    display: none;
    position: fixed;
    top: 10%;
    margin: 0px auto;
    width: 100%;
    height: 80%;
    background:#fff;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    box-shadow: 0 7px 15px rgba(0,0,0,.15);
    padding: 4px;
  }