<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @name		Page Builder CK
 * @package		com_pagebuilderck
 * @copyright	Copyright (C) 2018. All rights reserved.
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 * @author		Cedric Keiflin - https://www.template-creator.com - https://www.joomlack.fr
 */


.pbck_gallery_wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	/*align-items: flex-start;*/
	/*transition: all 0.2s 0.2s ease;*/
}

.pbck_gallery_wrap &gt; * {
	flex: 1 1 auto;
	width: auto;
	/*cursor: pointer;*/
	max-width: 100%;
	min-width: 150px;
	margin: 0 10px 10px 0;
	box-sizing: border-box;
}

.pbck_gallery_hascolumns .pbck_gallery_wrap &gt; * {
	flex: 0 1 auto;
	margin: 0;
}

.pbck_gallery_wrap img,
.pagebuilderck .pbck_gallery_wrap img {
	height: 180px;
	min-width: 150px;
	max-width: 100%;
	vertical-align: middle;
	/*transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;*/
	/*width: auto;*/
	object-fit: cover;
	/*visibility: hidden;*/
	/*overflow: hidden;*/
}

.pbck_gallery_wrap figure {
	transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
	overflow: hidden;
	position: relative;
	display: block;
	flex: 1 1;
}

.pbck_gallery_wrap figcaption {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;

	/*background: rgba(255,255,255,0.5);*/
	/*height: 50%;
	top: 50%;*/
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
}

.pbck_gallery .fitie {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.pbck_gallery .fitie &gt; div {
	background-size: cover;
	background-position: center;
	background: none !important; /* BC before 1.1.0 */
}

.pbck_gallery_item_link {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
}


/** for navigation **/
.pbck_gallery {
	position: relative;
}

.pbck-gallery-navigation-prev,
.pbck-gallery-navigation-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.pbck-gallery-navigation-prev {
	left: 0;
}

.pbck-gallery-navigation-next {
	right: 0;
}

.pbck-gallery-navigation-prev:after,
.pbck-gallery-navigation-next:after {
	display: block;
	content: "â¯";
	padding: 15px 20px;
	border-radius: 3px;
	background: rgba(0,0,0, 0.1);
	color: #000;
	cursor: pointer;
	opacity: 0;
	transition: all 0.2s ease;
}

.pbck-gallery-navigation-prev:after {
	content: "â®";
}

.pbck-gallery-navigation-prev:hover:after,
.pbck-gallery-navigation-next:hover:after {
	background: rgba(0,0,0, 0.2);
}

.cktype[data-type="gallery"]:hover .pbck-gallery-navigation-prev:after,
.cktype[data-type="gallery"]:hover .pbck-gallery-navigation-next:after,
.cktype[data-type="gallery"] .pbck-gallery-navigation-prev:focus:after,
.cktype[data-type="gallery"] .pbck-gallery-navigation-next:focus:after{
	opacity: 1;
}


/** for pagination **/

.pbck-gallery-pagination {
	margin: 10px;
}

.pbck-gallery-pagination ul {
	display: inline-block;
	margin-left: 0;
	margin-bottom: 0;
	padding: 0;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pbck-gallery-pagination ul &gt; li {
	display: inline;
}

.pbck-gallery-pagination ul &gt; li &gt; a:hover, 
.pbck-gallery-pagination ul &gt; li &gt; a:focus, 
.pbck-gallery-pagination ul &gt; .active &gt; a, 
.pbck-gallery-pagination ul &gt; .active &gt; span {
	background-color: #f5f5f5;
}

.pbck-gallery-pagination ul &gt; li &gt; a, .pbck-gallery-pagination ul &gt; li &gt; span {
	float: left;
	padding: 4px 12px;
	line-height: 18px;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
	border-left-width: 0;
}

.pbck-gallery-pagination ul &gt; li:first-child &gt; a, .pbck-gallery-pagination ul &gt; li:first-child &gt; span {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.pbck-gallery-pagination ul &gt; li:first-child &gt; a, .pbck-gallery-pagination ul &gt; li:first-child &gt; span {
	border-left-width: 1px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.pbck-gallery-pagination ul &gt; li:last-child &gt; a, .pbck-gallery-pagination ul &gt; li:last-child &gt; span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.pbck-gallery-pagination ul &gt; .active &gt; a, .pbck-gallery-pagination ul &gt; .active &gt; span {
	color: #999;
	cursor: default;
}

.pbck-hide {
	display: none !important;
}

.pbck-show {
	display: initial !important;
}

</pre></body></html>