@charset "utf-8";

::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, .1);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .2);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, .5); 
}
body{
	font-family: 'Titillium Web', sans-serif;
}

.ani{-webkit-transition: 0.3s;-moz-transition: 0.3s;-o-transition: 0.3s;-ms-transition: 0.5s;transition: 0.3s;}

#header{
	width: 100%;
	height: 60px;
	background-color: #fff;
	border-top: #fff;
	border-bottom: .05rem solid rgba(87, 85, 217, .2);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1050;
	align-items: center;
}
#header .brand{
	-ms-flex: 0 0 250px;
	flex: 0 0 250px;
	max-width: 250px;
	border-right: .05rem solid rgba(87, 85, 217, .2);
	display: inline-flex;
    flex-direction: row;
    justify-content: center;
}
#header .brand a{
	display: inline-block;
    height: 32px;
    text-indent: -99999px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}
#header .brand a.logo{
	width: 32px;
	background-image: url('../img/logo.svg');
}
#header .brand a.logo-text{
	width: 128px;
	margin-left: .4rem;
	opacity: 1;
	background-image: url('../img/logo-text.svg');
}
#header .brand,
#header .brand a.logo-text{
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
#header .side .left,
#header .side .right{
	display: flex;
	align-items: center;
}
#header .side .left{
	justify-content: flex-start;
}
#header .side .right{
	justify-content: flex-end;
}


#sidebar{
	width: 250px;
	height: 100%;
	padding-top: 60px;
	background-color: #fff;
	border-right: .05rem solid rgba(87, 85, 217, .2);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1000;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
#sidebar #sidebar_nav{
	width: 100%;
	height: calc(100% - 30px);
	position: relative;
}

#sidebar #sidebar_footer{
	width: 100%;
	height: 30px;
	line-height: 30px;
	text-align: center;
	font-size: .65rem;
	border-top: .05rem solid rgba(87, 85, 217, .2);
}
#sidebar #sidebar_footer span,
#sidebar #sidebar_footer strong{
	display: inline-block;
	max-width: 50px;
	max-height: 30px;
	opacity: 1;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	overflow: hidden;
}


#content{
	margin-left: 250px;
	min-height: 100vh;
	padding-top: 60px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	background-color: #fff;
}



/* SCROLL */
.scroll_y { /*overflow-y: scroll;*/ overflow-x: hidden;}
.scroll_y::-webkit-scrollbar { width: 5px;}
.scroll_y::-webkit-scrollbar-thumb {
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;}
/* SCROLL */




/* MENU */
ul#mainnav,
ul#mainnav li,
ul#mainnav ul{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
}
ul#mainnav li,
ul#mainnav li ul{
	margin-top: .4rem;
}
ul#mainnav li:first-child{
	margin-top: 0;
}
ul#mainnav a,
ul#mainnav strong{
	display: block;
	width: 100%;
	height: 2rem;
	white-space: nowrap;
	border-radius: .25rem;
	cursor: pointer;
	text-decoration: none;
	color: #212B38;
	font-weight: bold;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
ul#mainnav a > i,
ul#mainnav a > span,
ul#mainnav strong > i,
ul#mainnav strong > span{
	display: inline-block;
	height: 2rem;
	line-height: 2rem;
	overflow: hidden;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}
ul#mainnav a > i,
ul#mainnav strong > i{
	width: 2rem;
	text-align: center;
	font-size: 1rem;
}

ul#mainnav strong > span{
	width: calc(100% - 4rem);
}

ul#mainnav a > span{
	width: calc(100% - 2.5rem);
}


ul#mainnav li ul {
	padding-left: 0rem;
	overflow: hidden;
	display: none;
}
ul#mainnav li.active ul{
	display: block;
}
ul#mainnav li ul li a{
	padding-left: 2rem;
	height: 1.8rem;
	line-height: 1.8rem;
	font-weight: normal;
}
ul#mainnav a:hover,
ul#mainnav strong:hover{
	background-color: #f1f1fc;
}

ul#mainnav li.active > a,
ul#mainnav li.active strong {
	background-color: #f1f1fc;
	color: #5755d9;
}

ul#mainnav li.active ul li.active a,
ul#mainnav li.activeted strong{
	background-color: #f1f1fc;
}








body.wide ul#mainnav a > i.right,
body.wide ul#mainnav a > span,
body.wide ul#mainnav strong > i.right,
body.wide ul#mainnav strong > span{
	width: 0;
	opacity: 0;
}
body.wide ul#mainnav ul,
body.wide ul#mainnav ul li{
	margin-top: 0;
}
body.wide ul#mainnav ul li a{
	height: 0;
}


body.wide #header .brand{
	-ms-flex: 0 0 calc(2rem + 30px);
	flex: 0 0 calc(2rem + 30px);
	max-width: calc(2rem + 30px);
}
body.wide #header .brand a.logo-text{
	width: 0px;
	margin-left: 0;
	opacity: 0;
}


body.wide #sidebar{
	width: calc(2rem + 30px);
}
body.wide #content{
	margin-left: calc(2rem + 30px);
}
body.wide #sidebar #sidebar_footer span{
	max-width: 0;
	opacity: 0;
}
body.wide #sidebar:hover {
	width: 250px;
	left: 0px;
}
body.wide #sidebar:hover #sidebar_footer span{
	max-width: 50px;
	opacity: 1;
}

body.wide #sidebar:hover ul#mainnav a > i.right,
body.wide #sidebar:hover ul#mainnav strong > i.right{
	width: 2rem;
	opacity: 1;
}
body.wide #sidebar:hover ul#mainnav strong > span{
	width: calc(100% - 4rem);
	opacity: 1;
}
body.wide #sidebar:hover ul#mainnav a > span{
	width: calc(100% - 2.5rem);
	opacity: 1;
}
body.wide #sidebar:hover ul#mainnav ul,
body.wide #sidebar:hover ul#mainnav ul li{
	margin-top: .4rem;
}
body.wide #sidebar:hover ul#mainnav ul li a{
	height: 1.8rem;
}

#sidebar_cover{
	background-color: rgba(0, 0, 0, .2);
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 950;
	display: none;
}

.hidesidebar {
	left: 0px;
}


.box{
	border-bottom: .05rem solid rgba(87, 85, 217, .2);
	padding: 15px 0;
}
.box:first-child{
	padding-top: 0;
}
.box:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.box > .head{
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
	border-left: .1rem solid #5755d9;
	padding: 5px 15px;
	font-size: 1.2rem;
	-webkit-border-top-left-radius: .25rem;
	-webkit-border-top-right-radius: .25rem;
	-moz-border-radius-topleft: .25rem;
	-moz-border-radius-topright: .25rem;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box > .head .label{
	font-size: 0.8rem;
}
.box > .body{
	padding-top: 15px;
}


ul.galeri{
	margin: 0;
	padding: 0;
	list-style: none;
	margin: 0px -7.5px;
}
ul.galeri:after{
	display: block;
	width: 100%;
	content: ' ';
	clear: both;
}
ul.galeri li {
	width: 25%;
	padding: 0px 7.5px;
	margin-bottom: 7.5px;
	margin-top: 7.5px;
	display: inline-block;
	float: left;
}
ul.galeri.min li{
	width: 50%;
}
ul.galeri li a,
ul.galeri li > span {
	width: 100%;
	background-color: #fff;
	display: block;
	position: relative;
	padding-top: 56.25%;
	overflow: hidden;
	height: 0;
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
ul.galeri li a .shadow,
ul.galeri li > span .shadow{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .1);
}
ul.galeri li a:hover .shadow,
ul.galeri li > span:hover .shadow{
	background-color: rgba(0, 0, 0, .4);
}
ul.galeri li a span{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0,.4), rgba(0, 0, 0, 0));
	padding: 5px 10px;
    color: #fff;
    text-align: left;
    font-weight: bold;
}
ul.galeri li a span em{
	font-weight: normal;
    text-align: right;
    float: right;
    font-style: normal;
    font-size: 0.6rem;
    padding-top: 5px;
}
ul.galeri li a i {
	position: absolute;
	top: 0;
	right: 0;
	width: 25%;
	padding: 5px;
	padding-bottom: 10px;
	text-align: right;
	color: #e4e932;
	background: linear-gradient(15deg ,rgba(0, 0, 0,0),rgba(0, 0, 0,0) 45%,rgba(0, 0, 0,.2) 70%,rgba(0, 0, 0,.4));
}

ul.galeri li > span .input_zone{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0,.49), rgba(0, 0, 0, 0));
	padding: 5px 10px;
	opacity: .4;
}
ul.galeri li > span:hover .input_zone{
	opacity: 1;
}
ul.galeri li > span .input_zone label{
	display: block;
    width: 100%;
    color: rgba(255, 255, 255, .5);
    font-size: 0.6rem;
}
ul.galeri li > span .input_zone input{
	width: 100%;
    padding: 0px 5px;
    border: none;
    font-size: 0.7rem;
}

ul.galeri li > span i {
	position: absolute;
	top: 0;
	right: 0;
	width: 25%;
	padding: 5px;
	padding-bottom: 10px;
	text-align: right;
	cursor: pointer;
	color: rgba(255, 255, 255, .5);
	background: linear-gradient(15deg ,rgba(0, 0, 0,0),rgba(0, 0, 0,0) 45%,rgba(0, 0, 0,.2) 70%,rgba(0, 0, 0,.4));
}


ul.liste{
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.liste > li {
	width: 100%;
	border-bottom: .05rem solid rgba(87, 85, 217, .2);
	padding: 7.5px 0;
	display: flex;
    flex-direction: row;
    align-items: start;
}
ul.liste > li:hover{
	background-color: rgba(87, 85, 217, .04);
	padding: 7.5px;
}
ul.liste > li .left{
	width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(87, 85, 217, .05);
    padding: 5px;
    border-radius: 5px;
}
ul.liste > li .left span{
	line-height: 1;
}
ul.liste > li .left span.gun{
	font-size: 2rem;
}
ul.liste > li .left span.ay{
	text-transform: uppercase;
	font-size: 0.7rem;
	padding: 3px 0;
}
ul.liste > li .left span.yil{
	font-size: 1.rem;
}
ul.liste > li .right{
	margin-left: 15px;
	padding-left: 15px;
	flex: 1;
	border-left: .05rem solid rgba(87, 85, 217, .2);
}
ul.liste > li .right > .title{
	border-bottom: .05rem solid rgba(87, 85, 217, .2);
	display: flex;
    padding: 10px 0;
    justify-content: space-between;
    align-items: center;
}
ul.liste > li .right > .title a{
	font-size: 1.2rem;
}
ul.liste > li .right > .title span{

}

ul.tags{
	margin: 0;
	padding: 0;
	list-style: none;
	margin: 0px -7.5px;
}
ul.tags li {
	float: left;
	padding: 0px 7.5px;
	margin: 7.5px 0;
}
ul.tags li a{
	background-color: #eee;
	padding: 2px 8px;
	border-radius: 4px;
}


.content-split {
	display: flex;
	align-items: start;
}
.content-split > .content-left{
	flex: 2;
	padding-right: 15px;
}
.content-split > .content-right{
	flex: 1;
	padding-left: 15px;
	border-left: .05rem solid rgba(87, 85, 217, .2);
	position: sticky;
    top: 75px;
}


.popup_cover{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .4);
	z-index: 9999;
	display: none;
	opacity: 0;
	-webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    cursor: pointer;
}
.popup_cover.aktif{
	display: block;
	opacity: 1;
}
.popup{
	position: fixed;
	top: 30px;
	z-index: 10000;
	width: 33.33%;
	left: 33.33%;
	background-color: #fff;
	box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
	border-radius: 5px;
	display: flex;
    flex-direction: column;
    display: none;
    opacity: 0;
}
.popup.aktif{
	display: flex;
	opacity: 1;
}
.popup .head{
	border-bottom: .05rem solid rgba(87, 85, 217, .2);
	padding: 15px;
	display: flex;
    align-items: center;
    justify-content: space-between;
}
.popup .head .popup_kapat{
	cursor: pointer;
}
.popup .head .popup_kapat:hover{
	color: #a00;
}
.popup .body{
	padding: 15px;
}
.popup#popup_yeni_dosya{
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	left: 30px;
}
.popup#popup_yeni_dosya .body{
	display: flex;
	flex: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.popup#popup_yeni_dosya .body em{
	padding: 10px 0px;
}

input[type="file"]#file-upload {
    display: none;
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}


@media screen and (max-width: 992px) {
	body #sidebar,
	body.wide #sidebar{
		left: 0px;
		width: 250px;
	}
	#sidebar.hidesidebar{
		left: -250px !important;
	}
	body #sidebar #sidebar_footer span,
	body.wide #sidebar #sidebar_footer span{
		max-width: 50px;
		opacity: 1;
	}
	body #sidebar ul#mainnav a > i.right,
	body.wide #sidebar ul#mainnav a > i.right,
	body #sidebar ul#mainnav strong > i.right,
	body.wide #sidebar ul#mainnav strong > i.right{
		width: 2rem;
		opacity: 1;
	}
	body #sidebar ul#mainnav strong > span,
	body.wide #sidebar ul#mainnav strong > span{
		width: calc(100% - 4rem);
		opacity: 1;
	}
	body #sidebar ul#mainnav a > span,
	body.wide #sidebar ul#mainnav a > span{
		width: calc(100% - 2.5rem);
		opacity: 1;
	}
	body #sidebar ul#mainnav ul,
	body.wide #sidebar ul#mainnav ul,
	body #sidebar ul#mainnav ul li,
	body.wide #sidebar ul#mainnav ul li{
		margin-top: .4rem;
	}
	body #sidebar ul#mainnav ul li a,
	body.wide #sidebar ul#mainnav ul li a{
		height: 1.8rem;
	}
	body #content,
	body.wide #content{
		margin-left: 0;
		width: 100%;
	}

	#header .brand{
		-ms-flex: 0 0 62px;
		flex: 0 0 62px;
		max-width: 62px;
	}
	#header .brand a.logo-text{
		width: 0px;
		margin-left: 0;
		opacity: 0;
	}

	#notice{
		max-width: calc(100% - 30px);
	}




}



@media screen and (max-width: 576px) {

}