
.coming-soon{
  font-weight: bold;
  font-size: 4.5rem;
}

/* Masonry Grid and others */
* { box-sizing: border-box; }

/*body { font-family: sans-serif; }*/
/* force scrollbar */
html { overflow-y: scroll; }

/* ---- grid ---- */
#grid-block {
  margin: 0 10.5%;
}

/* ---- grid-item ---- */
/* clear fix */
.masonry-grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 100%;
}

@media screen and (min-width: 768px) {
.grid-sizer,
.grid-item {
  width: 50%;
}
  
}

@media screen and (min-width: 1280px) {
.grid-sizer,
.grid-item {
  width: 33.33%;
}

.grid-item-2 {
  width: 16.5%;
}

.grid-item-full {
  width: 99%;
}
  
}

.grid-item {
  float: left;
  padding-right: 15px;
  padding-top: 0px;
}

.grid-item p img {
  display: block;
  max-width: 100%;
  margin-bottom: 5px;
}


img[data-loaded="true"], [data-loaded="true"] img {
  animation-name: fadeIn; animation-duration: 0.7s; animation-fill-mode: both; 
  
} @keyframes showLazyImg { from { opacity: 0; } to { opacity: 1; } }

.img_title{ 
  font-size: .95rem;
  font-weight: 600;
  text-decoration: underline;
  margin-top: 5px;
}

.buttons {
  border-radius: 5px !important;
  margin: 4px 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


/* Loder CSS */ 
.spinner {
  margin: 50px auto;
  width: 100px;
  height: 80px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  
  height: 100%;
  width: 12px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}