/* width/height */
.my-gallery::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/* Track */
.my-gallery::-webkit-scrollbar-track {
  background: transparent;
  background-image: url('/files/theme/line.jpg');
  background-repeat: repeat-x;
  background-position: center;
}
/* Handle */
.my-gallery::-webkit-scrollbar-thumb {
  background: white; 
  border-radius: 2px;
}
ul.my-gallery {
	list-style-type: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
	display: flex;
	gap: 8px;
}
ul.my-gallery li {
	display: inline;
}
.content-gallery {
	margin-bottom: 32px;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
#header {
	background-color: #7F7F7F;
	position: relative;
}
#header nav ul {
	margin-bottom: 0;
}
#header .inside {
	position: relative;
	z-index: 2;
}
#container {
	flex: 1;
	background: #777;
	background: linear-gradient(0deg, #262626 0%, #7F7F7F 100%);
	position: relative;
	z-index: 1;
}
#container .bg-image {
	position: absolute;
	z-index: 0;
	bottom: 0;
	width: 100%;
	-webkit-mask-image: linear-gradient(transparent, black);
	mask-image: linear-gradient(transparent, black);
}
#main {
	position: relative;
	z-index: 1;
}
#footer {
	background-color: #262626;
}
.media.media--right figure {
	float: right;
	margin-left: 20px;
	margin-bottom: 20px;
}
.media.media--left figure {
	float: left;
	margin-bottom: 20px;
	margin-right: 20px;
}
.tns-inner ul {
	margin-bottom: 0;
}
.tns-controls {
	text-align: center;
}
.tns-controls button {
	border: solid 1px white;
	border-radius: 5px;
	margin: 0 5px;
	padding: 0 20px 3px 20px;
	background-color: transparent;
}
.tns-controls button:hover {
	background-color: rgba(127,127,127,0.5);
}