.my-1 {
	margin-top: 0.25rem !important;
	margin-bottom: 0.25rem !important;
}
/* lightbox*/
.lightbox img:not(.lightbox-disabled) {
	cursor: zoom-in;
}

.lightbox-gallery {
	visibility: hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1100;
	background-color: rgba(0, 0, 0, 0.9);
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s ease-out;
}

.lightbox-gallery .lightbox-gallery-toolbar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	z-index: 1110;
	transition: opacity 0.4s;
	background: #50505030;
}

.lightbox-gallery .lightbox-gallery-toolbar .lightbox-gallery-left-tools {
	float: left;
	height: 100%;
}

.lightbox-gallery .lightbox-gallery-toolbar .lightbox-gallery-right-tools {
	float: right;
}

.lightbox-gallery .lightbox-gallery-toolbar button {
	border: none;
	background: none;
	width: 50px;
	height: 50px;
	color: rgba(179, 179, 179, 1);
	transition: color 0.2s;
}

.lightbox-gallery .lightbox-gallery-toolbar button:hover {
	color: rgba(255, 255, 255, 1);
}

.lightbox-gallery .lightbox-gallery-toolbar button:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
}

.lightbox-gallery .lightbox-gallery-toolbar button.fontawesome-pro:before {
	font-family: 'Font Awesome 6 Free';
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-fullscreen-btn:before {
	content: "\f065";
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-fullscreen-btn.active:before {
	content: "\f066";
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-zoom-btn:before {
	content: "\f00e";
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-zoom-btn.active:before {
	content: "\f010";
}

.lightbox-gallery .lightbox-gallery-toolbar button.lightbox-gallery-close-btn:before {
  content: "\f00d";
}

.lightbox-gallery .lightbox-gallery-counter {
	height: 100%;
	color: rgba(179, 179, 179, 1);
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	margin-bottom: 0;
	direction: ltr;
	font-family: 'Barlow';
}

.lightbox-gallery .lightbox-gallery-content {
	position: fixed;
	top: 50px;
	left: 50px;
	width: calc(100% - 100px);
	height: calc(100% - 100px);
}

.lightbox-gallery .lightbox-gallery-content .lightbox-gallery-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transform: scale(0.25);
	transition: all 0.4s ease-out;
	pointer-events: none;
}

.lightbox-gallery .lightbox-gallery-content .lightbox-gallery-image img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	max-width: 100%;
	height: auto;
	cursor: pointer;
	pointer-events: auto;
}

.lightbox-gallery .lightbox-gallery-content .lightbox-gallery-image img.vertical {
	height: 100%;
	max-height: 100%;
	width: auto;
	max-width: none;
}

.lightbox-gallery .lightbox-gallery-arrow-right {
	position: fixed;
	right: 0;
	top: 0;
	width: 50px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.4s;
}

.lightbox-gallery .lightbox-gallery-arrow-right button {
	border: none;
	background: none;
	width: 50px;
	height: 50px;
	color: rgba(179, 179, 179, 1);
	transition: color 0.2s;
	background: #50505030;
}

.lightbox-gallery .lightbox-gallery-arrow-right button:hover {
	color: rgba(255, 255, 255, 1);
}

.lightbox-gallery .lightbox-gallery-arrow-right button:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
  content: "\f30b";
}

.lightbox-gallery .lightbox-gallery-arrow-right button.fontawesome-pro:before {
	font-family: 'Font Awesome 6 Free';
}

.lightbox-gallery .lightbox-gallery-arrow-left {
	position: fixed;
	left: 0;
	top: 0;
	width: 50px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.4s;
}

.lightbox-gallery .lightbox-gallery-arrow-left button {
	border: none;
	background: none;
	width: 50px;
	height: 50px;
	color: rgba(179, 179, 179, 1);
	transition: color 0.2s;
	background: #50505030;
}

.lightbox-gallery .lightbox-gallery-arrow-left button:hover {
	color: rgba(255, 255, 255, 1);
}

.lightbox-gallery .lightbox-gallery-arrow-left button:before {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
  content: "\f30a";
}

.lightbox-gallery .lightbox-gallery-arrow-left button.fontawesome-pro:before {
	font-family: 'Font Awesome 6 Free';
}

.lightbox-gallery .lightbox-gallery-caption-wrapper {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lightbox-gallery .lightbox-gallery-caption-wrapper .lightbox-gallery-caption {
    color: rgb(217 217 217);
    margin: 4px 10px;
    text-align: center;
    line-height: 22px;
}

.lightbox-gallery .lightbox-gallery-loader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	transition: opacity 1s;
}

.lightbox-gallery button:focus {
	outline: none;
	color: rgba(255, 255, 255, 1);
}

.disabled-scroll {
	overflow-y: hidden;
	position: relative;
}

@media only screen and (min-device-width: 768px) { 
	.disabled-scroll.replace-scrollbar {
		padding-right: 17px;
	}
}
/*lightbox end*/