.grid-container {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.grid-container .thumb {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	overflow: hidden;
}
.grid-container .thumb:hover .hover-wrap{
	opacity: 1;
	-webkit-transition: all 0.8s ease;
     -moz-transition: all 0.8s ease;
     -o-transition: all 0.8s ease;
     transition: all 0.8s ease;
}
.grid-container .thumb .imgWrapp {
	-webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
}
.grid-container .thumb:hover .imgWrapp{
	transform:rotate(2deg) scale(1.2);
	-webkit-transform:rotate(2deg) scale(1.2);
	-webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
}
.grid-container .thumb[data-colspan=onetwo]:hover .imgWrapp,
.grid-container .thumb[data-colspan=twotwo]:hover .imgWrapp{
	transform:rotate(1.5deg) scale(1.2);
	-webkit-transform:rotate(1.5deg) scale(1.2);
	-webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
     -o-transition: all 1s ease;
     transition: all 1s ease;
}
.hover-wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	     -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
     transition: all 0.5s ease;
}
.title-wrap {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 6% 8%!important;
	margin: 0;
}
div[data-colspan="twotwo"] .title-wrap,
div[data-colspan="twoone"] .title-wrap {
	padding: 3% 4%!important;
}
.grid-container .thumb img {
	max-width: 100%;
	height: auto;
	display: block;
}
.grid-container .thumb.cols-1 {
	width: 100%;
}
.grid-container .thumb.cols-2 {
	width: 50%;
}
.grid-container .thumb.cols-3 {
	width: 33.3331%;
}
.grid-container .thumb.cols-4 {
	width: 25%;
}
.grid-container .thumb.cols-5 {
	width: 20%;
}
.grid-container .thumb.cols-6 {
	width: 16.6661%;
}
.grid-container .thumb.cols-7 {
	width: 14.2856%;
}
.grid-container .thumb.cols-8 {
	width: 12.5%;
}
.grid-container .thumb .imgWrapp {
	width: 100%;
	height: 100%;
	display: block;
}


@keyframes start {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(1);
	}
}


@-webkit-keyframes start {
	from {
		-webkit-transform: scale(0);
	}
	to {
		-webkit-transform: scale(1);
	}
}

.grid-container .thumb[data-state="init"] {
	display: none;
}

.grid-container .thumb[data-state="start"]  {
	display: block;
	animation: start 0.5s;
	-webkit-animation: start 0.5s;
}

.grid-container .thumb[data-state="move"]  {
	transition: top 0.5s, left 0.5s, width 0.5s, height 0.5s;
	-webkit-transition: top 0.5s, left 0.5s, width 0.5s, height 0.5s;
}
			
.right-wrapp{
	position: absolute;
	top: 6%;
	right: 8%;
	font-size: 16px;
	text-align: left;
}
div[data-colspan="twotwo"] .right-wrapp {
	top: 3%;
	right: 4%;
}
div[data-colspan="twoone"] .right-wrapp {
	top: 6%;
	right: 4%;
}
div[data-colspan="onetwo"] .right-wrapp {
	top: 3%;
	right: 8%;
}
.views-wrap, .jm-post-like {
	display: block;
}
/* Post Like System */
@font-face {
  font-family: "like_font";
  src: url("./font/like_font.eot");
  src: url("./font/like_font.eot?#iefix") format("embedded-opentype"),
       url("./font/like_font.woff") format("woff"),
       url("./font/like_font.ttf") format("truetype"),
       url("./font/like_font.svg#like_font") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "like_font";
    src: url("./font/like_font.svg#like_font") format("svg");
  }
}

[data-icon]:before { content: attr(data-icon); }

[data-icon]:before,
.icon-gear:before,
.icon-like:before,
.icon-unlike:before,
.icon-eye:before {
  display: inline-block;
  font-family: "like_font";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 100%;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  padding-right: 3px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.icon-like:before { content: "\e801"; }
.icon-unlike:before { content: "\e801"; }
.icon-eye:before { content: "\e800"; padding-right: 6px; }
.icon-gear:before { 
	content: "\e805";
	-webkit-animation: spin 2s infinite linear;
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

@-moz-keyframes spin {
  0% { -moz-transform: rotate(0deg); }
  100% { -moz-transform: rotate(359deg); }
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(359deg); }
}

@-o-keyframes spin {
  0% { -o-transform: rotate(0deg); }
  100% { -o-transform: rotate(359deg); }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

a.jm-post-like {
	font-weight: normal;
	display: inline-block;
	width: auto;
	-moz-transition: all 0.3s ease-out 0.2s;
	-webkit-transition: all 0.3s ease-out 0.2s;
	-o-transition: all 0.3s ease-out 0.2s;
}
