/* ############ icomoon icon fonts CSS ############ */

@font-face {
    font-family: 'icomoon';
    src:url('icomoon.eot?-qkv88o');
    src:url('icomoon.eot?#iefix-qkv88o') format('embedded-opentype'),
        url('icomoon.ttf?-qkv88o') format('truetype'),
        url('icomoon.woff?-qkv88o') format('woff'),
        url('icomoon.svg?-qkv88o#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-spinner:before {
	content: "\e600";
}
.icon-cancel-circle:before {
	content: "\e604";
}
.icon-cross:before {
	content: "\e601";
}
.icon-arrow-left:before {
	content: "\e602";
}
.icon-arrow-right:before {
	content: "\e603";
}

/* ############ Start of responsive gallery CSS ############ */

div.rthumbnail { 
    display: inline-block;
    margin: 10px; 
    padding: 10px;
    vertical-align: top;
    /* Kutuları sabitleyen ve hizalayan ayarlar */
    width: 140px; 
    height: 180px; 
    text-align: center;
    background: #ffffff;
    overflow: hidden; 
}

div.rthumbnail img {
    /* Resim boyutlarını CSS ile net olarak sabitle */
    width: 100px !important; 
    height: 75px !important; 
    object-fit: cover; 
    display: block;
    margin: 0 auto 8px auto;
    border: 0;
}

/* Resim altındaki açıklamaların düzeni */
div.rthumbnail div.rcaption {
    display: block; 
    font-size: 11px;
    color: #333;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow: hidden;
    /* Metin 4 satırı geçerse keser ve düzeni bozmaz */
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
}

div.responsivegallery{ 
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: fixed;
	display: none;
	z-index: 1000;
}

div.responsivegallery:before{ 
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: zoom-out;
	top: 0;
	left: 0;
	background: black;
	opacity: 0.8;
	z-index: -1;
}

div.responsivegallery div.galleryinner{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	margin: auto;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

div.responsivegallery div.galleryinner:before{ 
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

div.responsivegallery div.figurearea{
	position: relative;
	max-width: 100%;
	vertical-align: middle;
	display: inline-block;
	z-index: 1000;
}

div.responsivegallery figure{
	margin: 0;
	padding: 0;
	display: block;
	box-shadow: 0 0 15px rgba(0,0,0,.6);
	opacity: 0;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

div.responsivegallery figure img{
	max-width: 100%;
	width: 100%;
	height: auto;
	border: 0;
	display: block;
}

/* Galeri açıldığında görünen açıklama alanı */
div.responsivegallery div.figurearea .thecaption{
	text-align: left;
	position: absolute;
	bottom: 0;
	font-size: 1.1em;
	padding: 5px;
	width: 100%;
	white-space: normal;
	box-sizing: border-box;
	z-index: 1001;
}

div.responsivegallery div.figurearea .thecaption:before{ 
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	background: white;
	top: 0;
	left: 0;
	opacity: 0.8;
}

div.responsivegallery div.figurearea .thecaption div.captioninner{
	position: relative;
	padding: 3px;
	color: black;
	overflow: hidden;
}

/* Navigasyon ve Kapatma Butonları */
div.responsivegallery div.close, 
div.responsivegallery div.leftnav, 
div.responsivegallery div.rightnav {
	cursor: pointer;
	z-index: 1005;
}

div.responsivegallery div.close{
	position: absolute;
	right: 10px;
	top: 10px;
	width: 55px;
	height: 55px;
	border-radius: 55px;
	background: black;
	color: white;
	font-size: 35px;
	text-align: center;
}

div.responsivegallery div.leftnav,
div.responsivegallery div.rightnav{
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	background: white;
	border-radius: 50%;
	margin-top: -25px;
	line-height: 50px;
	text-align: center;
}

div.responsivegallery div.leftnav { left: 5px; }
div.responsivegallery div.rightnav { right: 5px; }

/* Mobil Ayarlar */
@media screen and (max-width: 480px){
	div.responsivegallery div.leftnav,
	div.responsivegallery div.rightnav{
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 30px;
	}
}