/* Css editör */
body {
  width: 100%;
  background: url(../images/headerBG.jpg) center top no-repeat, url(../images/footerBG.jpg) center bottom no-repeat;
  background-color: #0d0900;
  /* font-family: 'Candara', Arial, sans-serif; */
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #edc388;
  line-height: 1;
  border: 0;
}
a {
  transition: all 0.3s ease;
  color: #edc388;
}

/* Animation
-----------------------------------------------------------------------------*/
.glare {
  position: absolute;
  width: 120px;
  height: 67px;
}
.glare-red {
  background: url(../images/glare-red.png) no-repeat;
  right: -166px;
  top: 121px;
  animation-name: glare-r;
  animation-duration: 6s;
  animation-delay: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  transform: scale(0);
}
.glare-red2 {
  background: url(../images/glare-red.png) no-repeat;
  right: -127px;
  top: 121px;
  animation-name: glare-r;
  animation-duration: 6s;
  animation-delay: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  transform: scale(0);
}
@keyframes glare-r {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1);
  }
  31% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes glare-b {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1);
  }
  31% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

@keyframes glare-y {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1);
  }
  31% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
.light {
  background: url(../images/light.png) no-repeat;
  position: absolute;
  width: 151px;
  height: 154px;
  left: -183px;
  top: 20px;
  opacity: 1;
  animation-name: light;
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes light {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.lang-block {
  position: absolute;
  width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  margin-left: -130px;
}

.dropdown-block .lang {
  color: #c08733;
}
.dropdown-block img {
  display: inline-block;
  margin-bottom: -8px;
  margin-right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.dropdown-block:after {
  content: "";
  background: url(../images/dropdown-icon.html) no-repeat;
  width: 8px;
  height: 5px;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -1px;
}
.dropdown {
  position: absolute;
  background: #1c1a1f;
  width: 210px;
  top: 35px;
  left: -10px;
  right: 0;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
  z-index: 8;
}
.dropdown:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  right: 13px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: #1c1a1f transparent;
}
.dropdown:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: 100%;
  right: 13px;
  border-width: 0 8px 8px 8px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1) transparent;
}
.dropdown li a {
  display: block;
  padding: 8px 10px 12px 10px;
  text-decoration: none;
  color: #868181;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.dropdown li:hover a {
  background: #232126;
}
.dropdown-block.active .dropdown {
  opacity: 1;
  pointer-events: auto;
}
.login-panel {
  position: absolute;
  width: 200px;
  height: 56px;
  padding: 0px 10px;
  border-left: 1px solid #201f22;
  margin-right: -220px;
  right: 0px;
  display: flex;
  align-items: center;
}
.login-panel a {
  margin-right: 10px;
}

.wrapper,
.top-panel-container {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

.top-panel {
  width: 100%;
  border-top: 1px solid #fff;
  position: absolute;
  top: -2px;
  z-index: 2;
  background: linear-gradient(rgb(45, 39, 28), rgb(13, 8, 0));
}

.top-panel:before {
  content: "";
  border-top: 1px solid #675948;
  position: absolute;
  top: 1px;
  width: 100%;
}

.top-panel:after {
  content: "";
  border-bottom: 1px solid #675948;
  position: absolute;
  bottom: 1px;
  width: 100%;
}

.lang-block {
  position: relative;
}
.lang-block:after {
  border: 5px solid transparent;
  border-top-color: #c9aa71;
  position: absolute;
  right: 118px;
  top: 26px;
  content: '';
}
.lang-block a {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.lang-block a:hover {
  color: #fff;
}
.lang-block a:hover img {
  border: 1px solid rgba(119, 90, 44, 0.5);
}
.lang-block img {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  margin-right: 7px;
  border: 1px solid #775a2c;
  padding: 1px;
  transition: all 0.3s ease;
}
.hidden-block {
  list-style: none;
  visibility: visible;
  opacity: 1;
  position: absolute;
  border: 1px solid #686868;
  background: #0d0c0c;
  min-width: 150px;
  z-index: 2;
  right: -50px;
  top: 41px;
  padding: 0px;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
}
.hidden-block a {
  display: flex;
  align-items: center;
  padding: 8px 20px;
}
.hidden-block a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.main-item:focus ~ .hidden-block,
.main-item:active ~ .hidden-block {
  visibility: visible;
  opacity: 1;
}

.top-panel-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 47px;
  z-index: 2;
}

.top-panel-container:before {
  content: "";
  background: url(../images/top-panel-icons.png) -3px -57px no-repeat;
  position: absolute;
  width: 239px;
  height: 72px;
  left: 50%;
  margin-left: -119px;
  top: 2px;
}

.top-panel-container:after {
  content: "";
  background: url(../images/top-panel-icons.png) 0px 0px no-repeat;
  position: absolute;
  width: 239px;
  height: 56px;
  left: 50%;
  margin-left: -119px;
  bottom: -34px;
}


.top-panel .top-panel-logo {
  padding-left: 30px;
  position: relative;
  width: 120px;
  float: left;
}
.top-panel .top-panel-logo a {
  display: block;
  height: 56px;
}
.top-panel .top-panel-logo:after {
  content: "";
  border-right: 1px solid #201f22;
  position: absolute;
  right: 4px;
  height: 15px;
  top: 50%;
  margin-top: -7px;
}
.top-menu {
  width: 800px;
}
.top-menu .active a {
  color: #fff;
}
.top-menu .active a:before {
  content: "";
  background: #de694a;
  position: absolute;
  height: 1px;
  width: 100%;
  top: 0px;
  left: 0px;
  opacity: 1;
}
.top-menu li {
  display: inline-block;
  position: relative;
  padding: 0px 20px;
}
.top-menu li a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  line-height: 75px;
  position: relative;
  /* color: #f4e9d3; */
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: bold;
  left: -141px;
}
.top-menu li a:before {
  content: "";
  opacity: 0;
  transition: all 0.5s ease;
}
.top-menu li ul {
  position: absolute;
  padding: 14px 0px;
  min-width: 180px;
  background: #1c1a1f;
  text-align: left;
  opacity: 0;
  left: -9999px;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.top-menu li ul li {
  display: block;
  padding: 0px 0px;
}
.top-menu li ul li a {
  line-height: 1.3;
  padding: 10px 25px;
  text-transform: none;
  font-size: 14px;
}
.top-menu li ul:before {
  border: 8px solid transparent;
  border-bottom-color: #1c1a1f;
  position: absolute;
  left: 250%;
  bottom: 100%;
  content: "";
}
.top-menu li:hover a {
  color: #fff;
  text-shadow: 0px 0px 12px rgba(142, 170, 91, 0.3);
}
.top-menu li:hover a:before {
  content: "";
  background: #de694a;
  position: absolute;
  height: 1px;
  width: 100%;
  top: 0px;
  left: 0px;
  opacity: 1;
}

.top-menu li:hover ul {
  opacity: 1;
  left: 0px;
  transition: opacity 0.5s ease;
}
.top-menu li:hover ul li a {
  color: #c9aa71;
}
.top-menu li:hover ul li a:hover {
  color: #f1e6d0;
  background: #232126;
}
.top-menu li:hover ul li a:before {
  display: none;
}
.top-panel-status {
  float: right;
  border-left: 1px solid #978484;
  display: flex;
  align-items: center;
  height: 21px;
  padding: 0px 30px;
  color: #fff;
}
.top-panel-status .progress-bar-bg {
  background: #242421;
  width: 130px;
  height: 3px;
  margin: 0px 15px;
}
.top-panel-status .progress-bar {
  height: 3px;
  position: relative;
  background: linear-gradient(to right, #dd8412, #b9de12);
  display: block;
  box-shadow: 0px 0px 20px 0px #c8b912;
}
.top-panel-status .progress-bar:after {
  content: "";
  height: 1px;
  width: 98%;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  top: 1px;
  left: 1px;
}
.top-panel-status .online-users {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: #afcf1c;
}
.user-icon {
  background: url(../images/user-icon.html) no-repeat;
  height: 8px;
  width: 9px;
  display: inline-block;
}
/* .logo { */
  /* position: absolute; */
  /* top: 100px; */
  /* left: 606px; */
/* } */

.logo {
  position: absolute;
  top: 40px;
  left: 60%;
  transform: translateX(-50%);
  width: 50%;
}

.logo img {
  width: 400px;
  height: 200px;
}

.logo a:hover {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}
.header {
  height: 449px;
  position: relative;
}
div#snrtr_aramaSonuc {
  width: 78%;
  height: 40px;
  border: none;
  top: 0px;
  font-size: 14px;
  padding-left: 20px;
  margin: 0px;
  left: 10%;
  position: relative;
  padding: 0px;
  z-index: 9999123;
  margin-left: 3%;
  text-align:left;
}

div#snrtr_aramaSonuc ul {
  padding: 0px;
  list-style: none;
  border-bottom: 1px solid #675948;
}

div#snrtr_aramaSonuc ul li:first-child {
  border: none;
}

div#snrtr_aramaSonuc ul li {
  background: white;
  padding: 4px;
  padding: 10px;
  border: 1px solid #675948;
  cursor: pointer;
  border-bottom: none;
  background: url(../images/light-bg.jpg);
}

div#snrtr_aramaSonuc ul li:hover {
  background: url(../images/light-bg.jpg);
}

div#snrtr_aramaSonuc ul li a {
  transition: all 0.3s ease;
  color: #edc388!important;
}

input.snrtr_SearchInput {
  width: 75%;
  height: 40px;
  border: none;
  margin: 0px auto;
  position: relative;
  top: -380px;
  font-size: 14px;
  padding-left: 20px;
  background: url(../images/light-bg.jpg);
  box-shadow: 0px 0px 20px #191814;
  color: #ffdaa2;
  border: 1px solid #675948;
  margin-left: 13%;
}

input::placeholder{
  color: #edc388;
}

.footer {
  min-height: 350px;
  position: relative;
}
.footer-logo {
  position: relative;
  min-height: 295px;
}
.footer-logo a {
  background: url(../images/footer-logo.png) no-repeat;
  width: 133px;
  height: 110px;
  display: block;
  position: absolute;
  left: 50%;
  top: -50px;
  margin-left: -65px;
}
.copyright {
  color: #efc2a3!important;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  width: 500px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}

div#altSayfalar {
  /* background: url(../images/item-bg.png) repeat; */
  background: #17140f;
  height: auto;
  padding: 15px;
  position: relative;
  top: -25px;
  margin-bottom: -25px;
}

div#altSayfalar ul li {
  width: 24%;
  float: left;
  /* background: rgba(172, 151, 118, 0.31); */
  background: #30410e;
  margin: 1%;
  padding: 4px;
  padding-left: 33px;
  /* border: 1px dashed rgb(185, 175, 133); */
  border: 2px double #b3afa3;
  position: relative;
  color: #b3afa3;
  overflow: hidden;
  height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 20px;
}

div#altSayfalar ul li a {
  text-decoration: none!important;
}

div#altSayfalar ul li a:hover {
  text-decoration : underline!important;
}

div#altSayfalar ul li img {
  position: absolute!important;
  top: 4px!important;
  left: 7px!important;
  height: 20px!important;
}

.text-left {
  text-align: left;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;
  line-break: auto
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000
}

.snrtr_Kutu_Iceriksss {
  padding: 25px;
  height: 125px;
  padding-top: 0px;
}
.desc-none{
  text-decoration: none;
}
.snrtr_Renksss{
  background: #2b2823;
}

.cerezpolitika {
  margin-bottom: 0px;
  left:0px;
  position: absolute;
  z-index: 9999;
  bottom: 0px;
  width: 100%;
  height: 75px;
  position: fixed;
  background: #311402;
  border:none;
}

.cerezKabulEt{
  position: absolute;
  right: 0px;
  top:5px;
  margin: 20px;
  color: #edc388;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

hxn {
	color: #464a53
}

hxn {
	line-height: 2.2rem;
	font-size: 1.8rem;
	font-weight: 600
}

.stat-widget-four hxn {
	font-size: 1.6rem
}

#notice-alt {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  height: 80px;
  color: #f5dbb3;
  border-top: 2px solid #e1c5a4;
  background: #008000;
  font-family: Calibri, Arial, sans-serif;
  background: -moz-linear-gradient(top, #8c2424 0%, #541313 44%, #350202 100%);
  background: -webkit-linear-gradient(top, #8c2424 0%, #541313 44%, #350202 100%);
  background: linear-gradient(to bottom, #3d2314 0%, #3d2314 44%, #1f140d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aa4202', endColorstr='#8B4513', GradientType=0);
  text-shadow: 1px 1px 0 #000;
}

#notice-alt h4 {
  font-size: 24px;
  margin: 0;
  line-height: 1.2;
  margin-top: 25px;
}


/* #notice-alt h4 { */
  /* margin-top: 10px; */
  /* margin-bottom: 10px; */
  /* font-size: 18px; */
  /* font-family: inherit; */
  /* font-weight: 500; */
  /* line-height: 1.1; */
  /* color: inherit; */
/* } */

/* #notice-alt p { */
  /* font-weight: 800; */
  /* font-size: 20px !important; */
/* } */

.cerezYazi{
  width: 100%;
  font-size:24px;
  margin-top:25px;
  margin-left: 100%;
}

#notices-alt {
 position:fixed;
 z-index:999999;
 bottom:0;
 left:0;
 right:0;
 margin:0 auto;
 text-align:center;
 width:100%;
 height:60px;
 color:#fef895;
 border-top:3px solid #a47944;
 background:#192d3c;
 background:-moz-linear-gradient(top,#331f11 0%,#8B4513 44%,#331f11 100%);
 background:-webkit-linear-gradient(top,#331f11 0%,#8B4513 44%,#192d3c 100%);
 background:linear-gradient(to bottom,#331f11 0%,#331f11 44%,#331f11 100%);
 filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#aa4202',endColorstr='#331f11',GradientType=0 );
 text-shadow:1px 1px 0 #000
}

#notices-alt h4 {
 margin:0;
 margin-top:17px;
 font-weight:900;
 font-size:26px
}
#notices-alt span {
 font-weight:200;
 color:#192d3c;
 text-transform:uppercase
}

input.snrtr_SearchInput {
    top: 0px!important;
    margin-top: 85px;
}

.header {
    display:none;
}

