
.gallery-tag-filter{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	margin:25px 0px;
}

.gallery-btn {
	padding: 10px 20px;
	font-size: 18px;
	background:#E3E3E3;
	border:none;
	border-radius: 6px;
	cursor: pointer;
	font-family:'Montserrat', sans-serif;
}

.gallery {
	mask-image: linear-gradient(
		to right,
		transparent,
		#000 10% 90%,
		transparent
	);
}

.gallery-container {
	display:flex;
	justify-content:center;
	align-items:center;
	gap:30px;
	animation: scrolling 50s linear infinite;
	width:100%;
}

@keyframes scrolling {
	0% {
		transform: translateX(260%);
	}
	100% {
		transform: translateX(-260%);
	}
}

.gallery-img-wrap {
	margin-bottom: 20px;
	cursor: pointer;
	display: flex;
	box-sizing: border-box;
	border: 1px solid var(--c2);
	flex-shrink: 0;
	width: 250px;
}

.gallery-img-wrap img {
	width:250px;
	height:250px;
}

.gallery {
	width:100%;
	overflow:hidden;
}

.gallery-loader {
	height: 100%;
	width: 100%;
	background: var(--c1);
	opacity: 0.9;
	position: fixed;
	z-index: 2;
	display: none;
	text-align:center;
	font-size:24px;
	font-weight:600;
	font-family:'Montserrat', sans-serif;
}

.gallery-img-info-open {

}

.gallery-img-info-inner {
	position: relative;
	padding: 10px 5px;
}

.gallery-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	user-select: none;
	user-drag: none;
}

.gallery-img-prompt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.gallery-img-info {
	position: absolute;
	visibility:hidden;
	font-family:'Montserrat', sans-serif;
	font-weight:600;
	font-size:14px;
	text-align:center;
	color:#fff;
	font-size:12px;
	height:250px;
	width:250px;
	background-color:rgba(0, 0, 0, 0.7);
	transition:0.5s;
	opacity:0;
	line-height:1.7;
}

.gallery-img-wrap:hover .gallery-img-info {
	visibility:visible;
	opacity:1;
}

.gallery-container:hover {
	animation-play-state:paused;
}

.gallery-btn-active {
	background: #242d55;
	color:#fff;
}

/*


ul {
  margin: 0;
  padding: 0;
  list-style: none;
  
  width: 1100px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  border: solid 4px #ccc;
  
  
  li {
    padding-top: 50px;
    padding-bottom: 50px;
    border: solid 1px #ddd;
    text-align: center;
    font-size: 5em;
    cursor: pointer;
  }
  
  li.red {
    background: red;
    color: #fff;
  }
  li.yellow {
    background: yellow;
  }
  li.blue {
    background: blue;
    color: #fff
  }
}

ul.filter {
  margin: 2em auto;
  
  li {
    padding: 12px;
    font-size: 1em;
    width: 25%;
    float: left;
  }
}

p{
  width: 1100px;
  max-width: 100%;
  display: block;
  margin: 2em auto;
}

*/






