@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,500i,600,700&subset=latin-ext&display=swap');
:root {
    --font-family:'Exo', sans-serif;
    --primary-color:#C62828;
    --secondary-color:var(--text4);
    --footer-color1:#C62828;
    --footer-color2:var(--text4);
    --bg-color:#f9f9f9;
    --bg2-color:#f5f5f5;
    --bg3-color:#e9e9e9;
    --dark-color:#393939;
    --item-border-color:#d9d9d9;

    --grey:#a9a9a9;
    --dark-grey:#797979;
    --white:#fff;

    --dark:#111;

    --text:#666;
    --text2:#444;
    --text3:#595959;
    --text4:#333;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del,
dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary, time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}
* {outline: 0;}
a {text-decoration: none;color: var(--text2);}
a:hover {text-decoration:none;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
ol, ul, nav {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: '';}
table {border-collapse: collapse;border-spacing: 0;}
h1 {font-family: var(--font-family); font-size:16px;font-weight: bold}
h2 {font-family: var(--font-family);font-size:15px;font-weight: bold}
small {font-family: var(--font-family);font-size:11px;}p {color:var(--text3);}strong, b {font-weight:bold;}
body{
    font-family: var(--font-family);
    background-color: var(--bg-color);
    font-size:14px;
    line-height:20px;
    color:var(--text);
    overflow-x:hidden;
}
.container{
    position:relative;
    width:1100px;
    margin:0 auto;
    display:flex;
    max-width:100vw;
}
.title{
    display: flex;
    gap: 2px;
    line-height: 40px;
    border-bottom: 1px var(--bg3-color) solid;
    margin-bottom:10px;
    justify-content: space-between;
}
.title a{
    transition: color .3s;
}
.title a:hover{
    color:var(--primary-color);
}
.title h1,
.title strong,
.yazar .title a{
    border-bottom: 5px var(--primary-color) solid;
    padding:0 10px;
    margin-bottom: -3px;
}
.gallery .title{
    justify-content: start;
    gap:8px;
    line-height:34px;
}
.gallery .title strong{
    font-size:32px;
    color:var(--primary-color);
    padding: 0 18px;
}
.gallery .title strong small{
    font-size: 18px;
    color: #555;
    margin-top: 0;
}
.title.benzertitle strong{
    border-bottom: 5px #00695C solid;
}
.title.ilgiligalerititle strong{
    border-bottom: 5px #4527A0 solid;
}
.flex-space{
    flex:1;
}
.seperator{
    width:100%;
    height:2px;
    background: linear-gradient(90deg, transparent 0%, rgba(150, 150, 150, 1) 50%, transparent 100%);
    margin:5px 0;
}
#topmenu{
    height:48px;
    background-color: var(--bg2-color);
    background-image:linear-gradient(-110deg, var(--secondary-color), var(--primary-color));
    line-height: 48px;
}
#topmenu.style2{
    background-image:none;
    border-bottom:1px #ececec solid;
}
#topmenu .container{
    justify-content: space-between;
    color:#fff;
}
#topmenu.style2 .container{
    color:var(--text2);
}
#topmenu ul{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
#topmenu ul li a{
    display:block;
    padding:0 10px;
    color:#fff;
    font-size:14px;
    font-weight: 500;
    height:48px;
    border-bottom:2px transparent solid;
    transition: height .3s, border-bottom-color .3s;
}
#topmenu.style2 ul li a{
    color:var(--text2);
}
#topmenu ul li a i{
    margin-right:4px;
}
#topmenu ul li a:hover{
    border-bottom-color:#fff;
    height:44px;
}
#topmenu.style2 ul li a:hover{
    border-bottom-color:var(--text2);
}
#topmenu ul li.search a{
    padding-right:0;
    border-bottom:none;
}
#topmenu ul li.search a i{
    background-color: rgba(255,255,255,0.3);
    color:#fff;
    border-radius: 4px;
    line-height: 30px;
    padding:4px 10px;
    margin-right:0;
    transition: color .3s, background-color .3s;
}
#topmenu.style2 ul li.search a i{
    background-color: #fff;
    color:var(--text2);
}
#topmenu ul li.search a:hover i{
    color:#eee;
}
#topmenu.style2 ul li.search a:hover i{
    color:var(--text2);
    background-color: rgba(0,0,0,0.1);
}
#topmenu.fixed{
    margin-bottom:80px;
}
#menu{
    height:80px;
    line-height: 80px;
    font-weight: bold;
    transition: top .3s;
}
#menu.fixed{
    position: fixed;
    top:-60px;
    left:0;
    right:0;
    background:#fff;
    z-index:99;
    height:60px;
    line-height: 60px;
    border-bottom:1px var(--bg3-color) solid;
}
#menu .container{
    justify-content: space-between;
    overflow: unset;
}
#menu .logo{
    max-width:50vw;
}
#menu .logo a{
    display:block;
    line-height: 0;
    margin:0;
}
#menu .logo a img{
    width:240px;
    height:auto;
    max-width: 100%;
    transition: width .3s, height .3s;
}
#menu.fixed .logo a img{
    width:180px;
    height:60px;
}
#menu .search{
    position:absolute;
    display:none;
    justify-content: end;
    gap:10px;
    right:0;
    top:0;
    height:80px;
    width:860px;
    max-width:100vw;
    background-color: var(--bg-color);
}
#menu .search input[type="search"]{
    width:400px;
    height:50px;
    margin:15px 0;
    box-sizing: border-box;
    border:1px var(--bg3-color) solid;
    padding:0 12px;
    color:#797979;
    font-size:16px;
    font-weight: bold;
    font-family: var(--font-family);
}
#menu .search input[type="submit"]{
    width:100px;
    height:50px;
    margin:15px 0;
    box-sizing: border-box;
    border:1px #d9d9d9 solid;
    background-color: var(--bg3-color);
    padding:0 12px;
    color:#797979;
    font-size:16px;
    font-weight: bold;
    font-family: var(--font-family);
    cursor:pointer;
}
#menu .search i{
    width:50px;
    height:50px;
    margin:15px 0;
    box-sizing: border-box;
    border:1px var(--dark) solid;
    background-color: var(--text4);
    padding:0 12px;
    color:#fff;
    font-size:24px;
    line-height: 50px;
    text-align: center;
    cursor:pointer;
}
#menu ul{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
#menu ul#main{
    display:flex;
}
#menu div#mobile{
    display:none;
    position: relative;
}
#menu div#mobile > i{
    font-size:24px;
    line-height:50px;
    margin:15px 10px;
    text-align: center;
    width:50px;
    height:50px;
    border:var(--bg3-color) solid 1px;
    border-radius: 4px;
}
#menu.fixed div#mobile > i{
    margin:5px;
}
#menu div#mobile > ul{
    background:#fff;
    border:1px var(--bg3-color) solid;
    border-radius: 4px;
    position: fixed;
    right:0;
    top:80px;
    width:300px;
    z-index:99;
    display:none;
    flex-direction: column;
    line-height: 50px;
    max-height: calc(100vh - 100px);
    overflow-y: scroll;
}
#menu.fixed div#mobile > ul{
    top:60px;
}
#menu ul li{
    position: relative;
}
#menu ul li a{
    display:block;
    font-size: 15px;
    padding:0 10px;
    font-weight: bold;
    transition: color .3s;
}
#menu ul li a:hover{
    color: var(--primary-color);
}
#menu ul li ul{
    position: absolute;
    display: none;
    flex-direction: column;
    top:80px;
    right:0;
    background-color: #fff;
    z-index:98;
    width:auto;
    min-width:180px;
    box-shadow: 6px 6px 6px 4px rgba(0,0,0,0.4);
    opacity: 1;
    animation: menueffect .3s linear;
}
#menu ul li ul.diger2{
    min-width: 300px;
    flex-wrap: wrap;
    flex-direction: row;
}
#menu ul li ul.diger2 li{
    width: 49%;
}
#menu ul li ul.diger3{
    min-width: 450px;
    flex-wrap: wrap;
    flex-direction: row;
}
#menu ul li ul.diger3 li{
    width: 32.5%;
}
#menu ul li ul.diger4{
    min-width: 600px;
    flex-wrap: wrap;
    flex-direction: row;
}
#menu ul li ul.diger4 li{
    width: 24.25%;
}
#menu ul li ul.diger5{
    min-width: 750px;
    flex-wrap: wrap;
    flex-direction: row;
}
#menu ul li ul.diger5 li{
    width: 19.45%;
}
#menu.fixed ul li ul{
    top:60px;
    animation: menueffectfixed .3s linear;
}
#menu ul li:hover ul{
    display:flex;
}
#menu div#mobile > ul li i{
    width:15px;
    margin-right:10px;
}
@keyframes menueffect {
    0%   {
        top:50px;
        opacity: 0;
    }
    100% {
        top:80px;
        opacity: 1;
    }
}
@keyframes menueffectfixed {
    0%   {
        top:50px;
        opacity: 0;
    }
    100% {
        top:60px;
        opacity: 1;
    }
}
#menu ul li ul li a{
    line-height:40px;
}
#currency{
    height:50px;
    line-height: 50px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--bg2-color);
    justify-content: start;
}
#currency .container{
    overflow:unset;
}
#currency .container .currencies{
    display:flex;
}
#currency .container .currencies > div{
    margin-right:16px;
    display:flex;
}
#currency .cur > i{
    color:#999;
    margin-right:4px;
    height:50px;
    line-height: 48px;
    font-size: 12px;
}
#currency .cur strong{
    color:#4a4a4a;
    display: flex;
    margin-left:4px;
    white-space: nowrap;
}
#currency .cur strong.up{
    color:#215A25;
}
#currency .cur strong.down{
    color:#9F1E1E;
}
#currency .cur strong:after{
    content:"";
    display:block;
    font-family: "Font Awesome 6 Free";
    line-height: 26px;
    font-size: 12px;
    margin-top:10px;
    margin-left:4px;
}
#currency .cur strong.up:after{
    content:"\f0de";
    margin-top:14px;
}
#currency .cur strong.down:after{
    content:"\f0dd";
    margin-top:8px;
}
#currency .container .hava{
    display: flex;
    gap:4px;
    width:auto;
    justify-content: end;
    cursor: pointer;
    user-select: none;
    background-image: linear-gradient(-110deg, #050505, #373737);
    margin: 3px 0;
    color: #fff;
    padding: 0 6px;
    border-radius: 5px;
}
#currency .container .hava.style2{
    background-image: linear-gradient(-110deg, #fafafa, #f9f9f9);
    color:var(--text2);
}
#currency .hava .sehir{
    padding:8px 0;
    display: flex;
    flex-direction: column;
}
#currency .hava .sehir strong,
#currency .hava .sehir small{
    line-height: 14px;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height:14px;
    max-width: 110px;
}
#currency .hava .sehir strong{
    font-size: 14px;
}
#currency .hava .sehir small{
    font-weight: normal;
    font-size: 12px;
}
#currency .hava .cel{
    font-size: 30px;
    line-height: 32px;
    color:#fff;
    margin:6px 2px;
}
#currency .hava.style2 .cel{
    color:var(--text2);
}
#currency .hava > i{
    line-height: 30px;
    font-size: 18px;
    color:#fff;
    border-radius: 4px;
    margin:7px 0;
    padding:0 4px;
    min-width: 22px;
    text-align: center;
}
#currency .hava.style2 > i{
    color:var(--text2);
}
#currency .hava > i.fa-spin{
    border-radius: 50%;
}
#currency .container > div.selectcity{
    display: none;
    position: absolute;
    top:44px;
    right:0;
    width:140px;
    margin-right: 0;
    max-height: 400px;
    background-color: #fff;
    z-index:97;
    overflow-y: scroll;
    overflow-x: hidden;
}
.selectcity span{
    color:var(--dark);
    width: 100%;
    display: inline-block;
    text-align: left;
    font-weight: bold;
    line-height:24px;
    font-size:14px;
    cursor: pointer;
    transition: color .3s linear;
    box-sizing: border-box;
    padding: 0 5px;
}
.selectcity span:hover{
    color:var(--primary-color);
}
#sondakika{
    height:40px;
    line-height:40px;
    background-color: var(--dark-color);
    overflow:hidden;
}
#sondakika.style2{
    background-color: var(--bg-color);
}
#sondakika .container{
    position: relative;
    overflow: hidden;
}
#sondakika .container:after{
    position: absolute;
    top:0;
    right:0;
    display: block;
    content:'';
    background: linear-gradient(to right, rgba(0,0,0,0), var(--dark-color));
    width:50px;
    height:40px;
}
#sondakika.style2 .container:after{
    background: linear-gradient(to right, rgba(255,255,255,0), var(--bg-color));
}
#sondakika .container strong{
    color:#fff;
    font-weight: bold;
    background-color: var(--dark-color);
    display:flex;
    position: relative;
    z-index: 1 !important;
    padding-right:10px;
    animation: nefes 1s infinite;
}
#sondakika.style2 .container strong{
    background-color: var(--bg-color);
}
#sondakika .container strong:after{
    position: absolute;
    top:0;
    right:-50px;
    display: block;
    content:'';
    background: linear-gradient(to right, var(--dark-color), rgba(0,0,0,0));
    width:50px;
    height:40px;
}
#sondakika.style2 .container strong:after{
    background: linear-gradient(to right, var(--bg-color), rgba(255,255,255,0));
}
@keyframes nefes {
    0%   {
        color:#ccc;
    }
    50%  {
        color:#555;
    }
    100% {
        color:#ccc
    }
}
#sondakika .container ul{
    position: absolute;
    top:0;
    left:0;
    display:flex;
    overflow: hidden;
    z-index:0;
    justify-content: start;
    animation: slide 60s linear infinite;
}
#sondakika .container ul:hover{
    animation-play-state: paused;
}
@keyframes slide {
    0% {
        transform: translateX(1100px);
        z-index:0;
    }
    100% {
        transform: translateX(-100%);
        z-index:0;
    }

}
#sondakika .container ul li a{
    color:#fff;
    white-space: nowrap;
    display:flex;
    flex-wrap: nowrap;
}
#sondakika.style2 .container ul li a{
    color:var(--text2);
}
#sondakika .container ul li a small{
    font-size:14px;
    font-weight:bold;
    margin:0 6px 0 20px;
}
#sondakika .container ul li a i{
    display:block;
    width:8px;
    height:8px;
    margin:16px 12px;
    background:var(--bg3-color);
    border-radius: 50%;
}
#sondakika.style2 .container ul li a i{
    background:var(--text);
}
#sondakika .container ul li:first-child a i{
    display:none;
}
.main{
    margin:10px auto 20px;
    flex-direction: column;
    gap:10px;
    min-height:600px;
}
.main #adsleft{
    display:block;
    position: absolute;
    width:160px;
    top:0;
    left:-170px;
}
.main #adsleft.sticky{
    position: fixed;
    width: 160px;
    top: 224px;
    left: calc((100% - 1100px) / 2 - 170px);
}
.main #adsright{
    display:block;
    position: absolute;
    width:160px;
    top:0;
    right:-170px;
}
.main #adsright.sticky{
    position: fixed;
    width: 160px;
    top: 224px;
    right: calc((100% - 1100px) / 2 - 170px);
}
.main .surmanset{
    position: relative;
    width:100%;
    display:flex;
    justify-content: space-between;
    gap:10px;
}
.main .surmanset .item{
    display: block;
    position: relative;
    border:2px #fff solid;
    outline: 1px var(--item-border-color) solid;
    width:25%;
    overflow: hidden;
}
.main .surmanset.style2 .item{
    border:none;
    outline: none;
    border-radius: 6px;
}
.main .surmanset3 .item{
    width:33.3%;
}
.main .surmanset2 .item{
    width:50%;
}
.main .surmanset5 .item{
    width:20%;
}
.main .surmanset .item a{
    display: block;
    position: relative;
}
.main .surmanset .item a img{
    display: block;
    width:100%;
    height:auto;
    /*height:135px;*/
    transition: transform .3s;
}
.main .surmanset .item a h3{
    display: block;
    position: absolute;
    text-align: center;
    bottom:0;
    left:0;
    right:0;
    color:#fff;
    line-height:20px;
    font-size:16px;
    font-weight: bold;
    padding:12px 0;
    background: linear-gradient(rgba(0,0,0,0),var(--dark));
    text-shadow: 1px 1px 4px #000;
}
.main .surmanset .item a small{
    display: block;
    position: absolute;
    top:4px;
    left:4px;
    color:#fff;
    line-height: 25px;
    font-size: 15px;
    font-weight: 500;
    padding:0 6px;
    background-color: var(--primary-color);
}
.main .surmanset.style2 .item a small{
    border-radius: 4px;
}
.main .surmanset .item a:hover img{
    transform: scale(1.1);
}
.main .manset{
    display: block;
    position: relative;
    width:100%;
    height:320px;
    overflow: hidden;
    user-select: none;
}
.main .manset .mansets{
    width:100%;
    margin-top:0;
    transition: margin-top .5s ease, top .5s ease;
}
.main .manset .manset-controller{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    position: absolute;
    left:0;
    top:0;
    width:40px;
    height:320px;
    z-index:9;
}
.main .manset .manset-controller i{
    display: block;
    line-height: 30px;
    width:30px;
    margin:0 5px;
    color:#fff;
    font-weight: 700;
    text-align: center;
    cursor:pointer;
    border:1px rgba(255,255,255,0.2) solid;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.2);
}
.main .manset .manset-controller i:hover{
    background-color: #222;
}
.main .manset .manset-controller i.active{
    background-color: #fff;
    color:var(--text2);
}
.mansetresim{
    width:100%;
    max-width: 100%;
    height:320px;
    display:block;
    position: relative;
    background-color: white;
    background-size: auto 200%;
    background-repeat: no-repeat;
    background-position: 100% 50%;
}
.mansetresim .bggradient{
    display:flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left:0;
    top:0;
    bottom:0;
    width:70%;
    padding:32px 50px;
    z-index:2;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%,  rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    box-sizing: border-box;
}
.mansetresim #me1{
    color:#fff;
    font-family: 'Montserrat', sans-serif;
    font-size:20px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom:10px;
    align-self:start;
    background: var(--primary-color);
    padding: 3px 14px;
}
.mansetresim #mb1{
    display:block;
    color:#f1c232;
    font-family: 'Montserrat', sans-serif;
    font-size:20px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom:10px;
    text-align:left;
}
.mansetresim #mb2{
    display:block;
    color:#fff;
    font-family: 'Montserrat', sans-serif;
    font-size:36px;
    line-height: 44px;
    font-weight: bold;
    margin-bottom:10px;
    text-align:left;
}
.mansetresim #ma1{
    display:block;
    color:#c9c9c9;
    font-family: 'Montserrat', sans-serif;
    font-size:16px;
    line-height: 19px;
    color:#a9a9a9;
    text-align:left;
}
.mansetresim #mban,
.mansetresim #mson,
.mansetresim #mozel1,
.mansetresim #mozel2,
.mansetresim #mozel3{
    position: absolute;
    top:20px;
    right:50px;
    z-index:9;
    color:var(--dark);
    background: #fff;
    padding: 5px 10px;
    font-family: 'Montserrat', sans-serif;
    font-size:16px;
    line-height: 24px;
    font-weight: bold;
    text-align:left;
    transform: scale(1);
    /*animation: nefesmanset 1s infinite;*/
}
.mansetresim #mozel1,
.mansetresim #mozel2,
.mansetresim #mozel3{
    background: none;
}
.mansetani2{
    animation: nefesmanset 1s infinite;
}
.mansetani3{
    animation: ritim 1s infinite;
}
.mansetani4{
    animation: shake 1s infinite;
}
.mansetani5{
    animation: flip 2s infinite;
}
.mansetani6{
    animation: tonyhawk 1s infinite;
}
.mansetani7{
    animation: blur 1s infinite;
}
@keyframes nefesmanset {
    0%   {transform: scale(1);}
    50%  {transform: scale(1.1);}
    100% {transform: scale(1);}
}
@keyframes ritim {
    0%   {opacity:1;}
    25%  {opacity:0;}
    50%  {opacity:1;}
    75% {opacity:0;}
    100% {opacity:1;}
}
@keyframes shake {
    30% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(20px, 0, 0);
    }
    70% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes flip {
    30% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    70% {
        transform: rotateY(360deg);
    }
}
@keyframes tonyhawk {
    30% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    70% {
        transform: rotate(360deg);
    }
}

@keyframes blur {
    30% {
        filter: blur(0);
        transform: skew(0);
    }
    50% {
        filter: blur(20px);
        transform: skew(45deg);
    }
    70% {
        filter: blur(0);
        transform: skew(0);
    }
}
.desktopads{
    display: block;
    position: relative;
    line-height: 0;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}
.desktopads.mt{
    margin-top:6px;
}
.desktopads.mb{
    margin-bottom:6px;
}
.mobileads{
    display: none;
    position: relative;
    line-height: 0;
    box-sizing: border-box;
    text-align: center;
    overflow: hidden;
    /*overflow-x:hidden;*/
    max-width:100%;
    margin:0;
    padding:0;
}
.mobileads.mt{
    margin-top:6px;
}
.mobileads.mb{
    margin-bottom:6px;
}
.main .yazarlar{
    display: flex;
    flex-direction: row;
    gap:10px;
    position: relative;
    line-height: 0;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
}
.main .yazarlar .yazar{
    display:flex;
    flex-direction: column;
    position: relative;
    width:210px;
    height:240px;
    border:1px var(--item-border-color) solid;
    line-height: 40px;
}
.main .yazarlar .yazar strong{
    display:block;
    background-color: var(--bg3-color);
    height:110px;
    padding-top:10px;
    font-weight:700;
    font-size: 16px;
    text-align: center;
    border-bottom:1px var(--item-border-color) solid;
    transition: color .3s ease;
}
.main .yazarlar .yazar:hover strong{
    color:var(--primary-color);
}
.main .yazarlar .yazar img{
    position:absolute;
    top:46px;
    left:42px;
    width:120px;
    height:120px;
    border-radius: 50%;
    border:3px var(--bg-color) solid;
    outline:1px var(--item-border-color) solid;
    transition: transform .3s ease;
}
.main .yazarlar .yazar:hover img{
    transform: scale(1.05);
}
.main .yazarlar .yazar span{
    display:block;
    padding:54px 4px 0 4px;
    height:60px;
    font-weight:400;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    overflow: hidden;
}
.main .maincontent{
    display: flex;
    justify-content: space-between;
    gap:10px;
}
.main.gazete .maincontent,
.main.eczane .maincontent,
.main.yazar .maincontent{
    flex-direction: column;
}
.main.gazete .maincontent .gazete img{
    max-width:100%;
    height:auto;
}
.main.gazete .maincontent .gazeteler{
    display: flex;
    flex-wrap: wrap;
    gap:2px;
}
.main.gazete .maincontent .gazeteler a{
    display:inline-block;
    padding:0 8px;
    line-height:36px;
    background:var(--bg3-color);
    margin-bottom:2px;
}
.main.gazete .maincontent .gazeteler a.active{
    background: var(--primary-color);
    color:#fff;
}
.main.yazar .maincontent .yazarlar{
    flex-wrap: wrap;
}
.main .content{
    width:754px;
    display: flex;
    flex-direction: column;
    gap:10px;
}
.main .content.resmi{
    width:100%;
}
.main .content.resmi .empty{
    padding:10px;
}
.main .homecontent{
    display:flex;
    flex-direction: column;
    gap:10px;
}
.main .homecontent .ikili.stil2 .column:nth-child(1),
.main .homecontent .ikili.stil3 .column:nth-child(2){
    width:336px;
}
.main .homecontent .uclu.stil2 .column,
.main .homecontent .uclu.stil3 .column,
.main .homecontent .uclu.stil4 .column{
    width:270px;
}
.main .homecontent .uclu.stil2 .column:nth-child(3),
.main .homecontent .uclu.stil3 .column:nth-child(1),
.main .homecontent .uclu.stil4 .column:nth-child(2){
    width:540px;
}
.main .homecontent > div{
    display: flex;
    flex-direction: row;
    gap:10px;
}
.main .homecontent .column{
    display: flex;
    flex-direction: column;
    gap:10px;
    width:100%;
}
.main .homecontent .ikili.stil2 .column:nth-child(2),
.main .homecontent .ikili.stil3 .column:nth-child(1){
    width:754px;
}
.main .homecontent .ikili.stil1 .column{
    width:545px;
}
.main .homecontent .uclu.stil1 .column{
    width:360px;
}
.main .homecontent .slider{
    position: relative;
    overflow: hidden;
    width:754px;
    height:auto;
    user-select: none;
}
.main .homecontent .tekli .slider{
    width:1100px;
}
.main .homecontent .ikili.stil1 .slider{
    width:545px;
}
.main .homecontent .uclu.stil1 .slider{
    width:360px;
}
.main .homecontent .uclu.stil2 .column:nth-child(3) .slider,
.main .homecontent .uclu.stil3 .column:nth-child(1) .slider,
.main .homecontent .uclu.stil4 .column:nth-child(2) .slider{
    width:540px;
}
.main .homecontent .uclu.stil2 .column:nth-child(1) .slider,
.main .homecontent .uclu.stil2 .column:nth-child(2) .slider,
.main .homecontent .uclu.stil3 .column:nth-child(3) .slider,
.main .homecontent .uclu.stil3 .column:nth-child(2) .slider,
.main .homecontent .uclu.stil4 .column:nth-child(3) .slider,
.main .homecontent .uclu.stil4 .column:nth-child(1) .slider{
    width:270px;
}
.main .homecontent .ikili.stil2 .column:nth-child(1) .slider,
.main .homecontent .ikili.stil3 .column:nth-child(2) .slider{
    width:336px;
}
.main .homecontent .slider .slides{
    position: relative;
    display: flex;
    flex-direction: row;
    line-height: 0;
    transition: margin-left .3s ease, left .3s ease;
}
.main .homecontent .slider .slides li img,
.main .homecontent .slider .slides li div{
    width:754px;
    height:auto;
}
.main .homecontent .slider .slides li div{
    display:flex;
    height:100%;
    justify-content: center;
    align-items: center;
    overflow:hidden;
    background:#fdfdfd;
}
.main .homecontent .slider .slides li div img{
    width:inherit;
    height:inherit;
    max-width:754px;
}
.main .homecontent .tekli .slider li img{
    width:1100px;
}
.main .homecontent .ikili.stil1 .slider li img{
    width:545px;
}
.main .homecontent .uclu.stil1 .slider li img{
    width:360px;
}
.main .homecontent .uclu.stil2 .column:nth-child(3) .slider li img,
.main .homecontent .uclu.stil3 .column:nth-child(1) .slider li img,
.main .homecontent .uclu.stil4 .column:nth-child(2) .slider li img{
    width:540px;
}
.main .homecontent .uclu.stil2 .column:nth-child(1) .slider li img,
.main .homecontent .uclu.stil2 .column:nth-child(2) .slider li img,
.main .homecontent .uclu.stil3 .column:nth-child(3) .slider li img,
.main .homecontent .uclu.stil3 .column:nth-child(2) .slider li img,
.main .homecontent .uclu.stil4 .column:nth-child(3) .slider li img,
.main .homecontent .uclu.stil4 .column:nth-child(1) .slider li img{
    width:270px;
}
.main .homecontent .ikili.stil2 .column:nth-child(1) .slider li img,
.main .homecontent .ikili.stil3 .column:nth-child(2) .slider li img{
    width:336px;
}
.main .homecontent .slider .slides li a{
    position: relative;
    display: block;
}
.main .homecontent .slider .slides li a h4{
    display: block;
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    line-height:40px;
    font-size:34px;
    font-weight: bold;
    text-shadow: 1px 1px 4px #000;
    text-align: center;
    color:var(--bg-color);
    background: linear-gradient(rgba(0,0,0,0),var(--dark-color));
    padding:20px;
    box-sizing: border-box;
}
.main .homecontent .slider.style2 .slides li a h4{
    padding-bottom:60px;
}
.main .homecontent .slider .slidernavigator{
    display: flex;
    position: relative;
    background-image: linear-gradient(-110deg, var(--secondary-color), var(--primary-color));
    justify-content: center;
}
.main .homecontent .slider.style2 .slidernavigator{
    margin-top:-56px;
    background:none;
}
.main .homecontent .slider .slidernavigator li{
    width:6.66%;
}
.main .homecontent .slider.mobile .slidernavigator li{
    width:100%;
    flex:1;
}
.main .homecontent .slider .slidernavigator li i{
    display:block;
    position: relative;
    line-height:50px;
    font-weight: 700;
    color:var(--bg3-color);
    text-align: center;
    cursor:pointer;
}
.main .homecontent .slider.style2 .slidernavigator li i{
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    margin:3px;
    line-height: 46px;
}
.main .homecontent .slider .slidernavigator li i.active{
    background-color:rgba(255,255,255,0.2);
}
.main .homecontent .slider.style2 .slidernavigator li i.active{
    background-color:var(--primary-color);
    opacity:1;
}
.main .homecontent .lastest .last-list,
.main .maincontent .lastest .last-list{
    display:flex;
    flex-wrap: wrap;
    gap:0.5%;
    background-color: var(--white);
    border:1px var(--bg3-color) solid;
    padding:10px 8px;
}
.main .homecontent .lastest .last-list.style2{
    border:none;
    background:none;
    padding:0;
}
.main .homecontent .lastest .list3 .haber,
.main .maincontent .lastest .haber{
    position: relative;
    width:32%;
    margin:0 0.5% 16px;
}
.main .homecontent .lastest .list1 .haber{
    position: relative;
    width:99%;
    margin:0 0.5% 16px;
}
.main .homecontent .lastest .list2 .haber{
    position: relative;
    width:48.7%;
    margin:0 0.5% 16px;
}
.main .homecontent .lastest .list4 .haber{
    position: relative;
    width: 24%;
    margin: 0 0.3% 16px;
}
.main .homecontent .lastest .list5 .haber{
    position: relative;
    width:19%;
    margin:0 0.3% 16px;
}
.main .homecontent .lastest .list5 .haber img{
    width:100%;
    height:115px;
}
.main .homecontent .lastest .list5 .haber h5{
    height:48px;
    line-height: 24px;
    overflow: hidden;
}
.main .homecontent .lastest .list5 .haber small{
    display: block;
    position: absolute;
    top:4px;
    left:4px;
    color:#fff;
    line-height: 24px;
    font-size: 14px;
    font-weight: 500;
    padding:0 6px;
    background-color: var(--primary-color);
}
.main .homecontent .uclu.stil2 .column:nth-child(1) .lastest .haber,
.main .homecontent .uclu.stil2 .column:nth-child(2) .lastest .haber,
.main .homecontent .uclu.stil3 .column:nth-child(2) .lastest .haber,
.main .homecontent .uclu.stil3 .column:nth-child(3) .lastest .haber,
.main .homecontent .uclu.stil4 .column:nth-child(1) .lastest .haber,
.main .homecontent .uclu.stil4 .column:nth-child(3) .lastest .haber,
.main .homecontent .ikili.stil2 .column:nth-child(1) .lastest .haber,
.main .homecontent .ikili.stil3 .column:nth-child(2) .lastest .haber,
.main .homecontent .uclu.stil1 .lastest .haber{
    width: 48.7%;
}
.main .homecontent .lastest .haber{
    overflow:hidden;
}
.main .homecontent .lastest .style2 .haber{
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 2px 2px 6px #e9e9e9;
}
.main .homecontent .lastest .haber img,
.main .maincontent .lastest .haber img{
    width:100%;
    height:auto;
    transition: transform .3s;
}
/*.main .homecontent .lastest .haber:hover img{
    transform: scale(1.05);
}*/
.main .homecontent .lastest .haber h5,
.main .maincontent .lastest .haber h2{
    height:48px;
    font-size:15px;
    line-height: 24px;
    font-weight: bold;
    overflow: hidden;
    transition: color .3s;
}
.main .homecontent .lastest .style2 .haber h5{
    height:60px;
    font-size:18px;
    line-height: 30px;
}
.main .homecontent .lastest .haber:hover h5,
.main .maincontent .lastest .haber:hover h2{
    color:var(--primary-color);
}
.main .homecontent .lastest .style2 .haber h5{
    padding: 3px 8px;
}
.main .homecontent .lastest .haber small,
.main .maincontent .lastest .haber small{
    display: block;
    position: absolute;
    top:4px;
    left:4px;
    color:#fff;
    line-height: 25px;
    font-size: 15px;
    font-weight: 500;
    padding:0 6px;
    background-color: var(--primary-color);
}
.main .homecontent .lastest .style2 .haber small{
    border-radius: 4px;
}
.main aside{
    width:336px;
    display: flex;
    flex-direction: column;
    gap:10px;
    position: sticky;
    top:62px;
    /*flex: 0 0 300px;*/
    height: 100%;
}
.main.news aside{
    width:300px;
}
.main.news .company aside{
    width:336px;
}
.main.news .company aside .companyLogo{
    width:100%;
    height:auto;
}
.main aside .sidebarnews{
    display: flex;
    flex-direction: column;
    gap:4px;
}
.main aside .sidebarnews a{
    display:flex;
    margin:4px;
    gap:4px;
    align-items: start;
    margin-bottom:14px;
}
.main aside .sidebarnews a img{
    width:100px;
    height:auto;
}
.main aside .sidebarnews a span{
    height: 60px;
    overflow: hidden;
    font-weight: bold;
}
.populer .title{
    display:flex;
    gap:4px;
}
.populer .title span{
    display:block;
    background-color: var(--bg3-color);
    line-height:32px;
    padding:0 4px;
    font-weight: 500;
    margin:5px 0;
    min-width: 40px;
    text-align: center;
    font-size:12px;
    cursor: pointer;
}
.populer .title span.active{
    background-color: var(--primary-color);
    color:#fff;
    border-radius: 3px;
}

.populer .haberler{
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border:1px var(--bg3-color) solid;
    padding:5px;
}
.populer .haberler .loading{
    text-align: center;
    line-height: 80px;
    font-size: 24px;
}
.populer .haber{
    display: flex;
    gap: 6px;
    border-top:1px var(--bg2-color) solid;
    padding-top:3px;
    align-items: center;
}
.populer .haber:first-child{
    padding-top: 0;
    border-top: none;
}
.populer .haber i{
    min-width:50px;
    width:50px;
    height:50px;
    margin:5px;
    line-height: 50px;
    text-align: center;
    font-size:24px;
    border:2px var(--white) solid;
    outline:1px var(--bg3-color) solid;
    background-color: var(--bg3-color);
    transition: font-size .3s ease;
}
.populer .haber:hover > i{
    font-size:28px;
}
.populer .haber span{
    display: flex;
    font-weight: 500;
    margin:4px 0 0;
    height: 54px;
    line-height: 18px;
    overflow: hidden;
    transition: color .3s;
}
.populer .haber:hover span{
    color:var(--primary-color);
}
.anket{
    width:100%;
}
.anket > span{
    display: block;
    line-height: 30px;
    padding: 4px 8px;
}
.anket .terms{
    display: flex;
    flex-direction: column;
}
.anket .terms label{
    position: relative;
    display: flex;
    justify-content: space-between;
    line-height:40px;
    font-weight:bold;
    margin:2px;
    padding:0 4px;
    cursor:pointer;
}
.anket .terms label .oran{
    position: absolute;
    bottom:0;
    left:0;
    height: 2px;
    background-color: var(--primary-color);
}
.anket .terms label input{
    display:none;
}
.anket .terms label span i{
    display:inline-block;
    width:16px;
    height:16px;
    float:left;
    margin:12px 6px 12px 0;
    box-sizing: border-box;
    outline:3px var(--grey) solid;
    border-radius: 50%;
    transition: outline-color .3s, background-color .3s;
}
.anket .terms label span input:checked + i{
    outline:3px var(--primary-color) solid;
    border:3px var(--bg-color) solid;
    background-color: var(--primary-color);
}
.burclar{
    display:flex;
    flex-wrap: wrap;
}
.burclar a{
    position: relative;
    line-height: 0;
    width:24%;
    margin:0.5%;
    overflow:hidden;
}
.burchome .burclar a{
    width:15.6%;
}
.burclar a img{
    width:100%;
    height:auto;
    background-color: #fff;
    border:1px var(--bg3-color) solid;
    border-radius:5px;
    box-sizing: border-box;
    padding:10px;
    background-color:var(--burc-bg);
    transition: transform .3s;
}
.burclar a span{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    top:0;
    background:#fff;
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-weight:bold;
    line-height: 20px;
    opacity:0;
    transform: scale(1.5);
    transition: opacity .3s, transform .3s;
}
.burclar a span small{
    line-height: 12px;
    font-size: 12px;
    font-weight: normal;
}
.burclar a:hover img{
    transform: scale(0.1);
}
.burclar a:hover span{
    opacity:1;
    transform: scale(1);
}
.main .homecontent .puandurumu{
    user-select: none;
}
.main .homecontent .puandurumu .title strong{
    border-bottom:5px green solid;
}
.main .homecontent .puandurumu ul{
    padding:5px;
    background-color: var(--white);
    border: 1px var(--bg3-color) solid;
}
.main .homecontent .puandurumu ul li{
    display:flex;
}
.main .homecontent .puandurumu ul li:first-child > *{
    line-height: 32px;
}
.main .homecontent .puandurumu ul li:nth-child(2n){
    background-color: var(--bg2-color);
}
.main .homecontent .puandurumu ul li > *{
    width:32px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 27.5px;
    border-bottom:1px var(--bg3-color) solid;
}
.main .homecontent .puandurumu ul li span:nth-child(2){
    width:120px;
    text-align: left;
    flex:1;
}
.main .homecontent .puandurumu ul li span:nth-child(4),
.main .homecontent .puandurumu ul li span:nth-child(5),
.main .homecontent .puandurumu ul li span:nth-child(6),
.main .homecontent .puandurumu ul li span:nth-child(7),
.main .homecontent .puandurumu ul li span:nth-child(8){
    display:none;
}
.main .homecontent .gazetemansetleri,
.main .homecontent .nobetcieczaneler,
.main .homecontent .egazete{
    display:flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap:10px;
    padding:5px;
    background-color: var(--dark);
    background-image: linear-gradient(-110deg, #7172bb, #2a80b3);
    border-radius: 4px;
}
.main .homecontent .nobetcieczaneler{
    background-image: linear-gradient(-110deg, #bb7171, #b32a2a);
}
.main .homecontent .egazete{
    background-image: linear-gradient(-110deg, var(--primary-color), #111);
}
.main .homecontent .egazete a{
    color:#fff;
    display:flex;
    flex-direction: column;
    gap:2px;
    align-items: center;
}
.main .homecontent .egazete img{
    width:80%;
    height:auto;
    box-sizing:border-box;
    border:4px #fff solid;
    margin:10px;
}
.main .homecontent .egazete strong{
    font-size:18px;
    margin-bottom:10px;
}
.main .homecontent .egazete span{
    font-size:15px;
}
.main .homecontent .gazetemansetleri i,
.main .homecontent .nobetcieczaneler i{
    position: absolute;
    width:120px;
    height:100px;
    top:0;
    left:0;
    background: url("../img/gazete.webp");
    background-size:cover;
    transform: rotate(-15deg) scale(1.1);
    opacity:0.2;
    z-index:1;
    transition: transform .3s, opacity .3s;
}
.main .homecontent .nobetcieczaneler i{
    background: url("../img/eczane.webp");
    transform: rotate(-15deg) scale(0.5);
    width: 250px;
    height: 250px;
    top: -70px;
    left: -60px;
}
.main .homecontent .gazetemansetleri a:hover i{
    transform: rotate(-15deg) scale(1.8);
    opacity:0.05;
}
.main .homecontent .nobetcieczaneler a:hover i{
    transform: rotate(-15deg) scale(0.8);
    opacity:0.05;
}
.main .homecontent .gazetemansetleri strong,
.main .homecontent .nobetcieczaneler strong{
    display:block;
    position: relative;
    width:100%;
    text-align:right;
    line-height: 32px;
    font-size:24px;
    margin-top:26px;
    z-index:2;
    color:#fff;
    padding:0 10px;
    box-sizing: border-box;
}
.main .homecontent .gazetemansetleri span,
.main .homecontent .nobetcieczaneler span{
    display:block;
    position: relative;
    width:100%;
    text-align:right;
    line-height: 24px;
    font-size:14px;
    margin-bottom:6px;
    z-index:2;
    color:#f9f9f9;
    padding:0 10px;
    box-sizing: border-box;
}
.namazvakitleri{
    display:flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap:10px;
    padding:5px;
    background-color: #4CAF50;
    background-image: linear-gradient(-110deg, #71bb85, #2ab39b);
    border-radius: 4px;
    user-select: none;
}
.namazvakitleri .selectarea{
    display: flex;
    justify-content: space-between;
}
.namazvakitleri .namazkalansure{
    display:block;
    text-align: center;
    line-height:20px;
    color:#fff;
}
.namazvakitleri .namazkalantimer{
    display:block;
    text-align: center;
    line-height:30px;
    font-size:30px;
    font-weight:bold;
    color:#fff;
}
.namazvakitleri label{
    color: #fff;
    line-height: 32px;
    padding: 0 8px;
    font-weight: bold;
}
.namazvakitleri select{
    border: none;
    background: rgba(0,0,0,0.2);
    height: 30px;
    width: 140px;
    border-radius: 4px;
    color:#fff;
    font-weight: bold;
}
.namazvakitleri select option{
    background: #ccc;
    color:var(--dark);
}
.namazvakitleri .vakitler{
    display:flex;
    justify-content: space-around;
}
.imsakiyepage .namazvakitleri .vakitler{
    justify-content: center;
    gap:5px;
}
.namazvakitleri .vakitler span{
    color:#fff;
    text-align: center;
    padding:4px;
}
.namazvakitleri .vakitler span.active{
    background: rgba(0,0,0,0.1);
    border-radius: 4px;
}
.namazvakitleri .vakitler span small{
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: bold;
}
.namazvakitleri a{
    display: block;
    text-align: center;
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    font-weight: bold;
    padding: 6px;
    border-radius: 4px;
    transition: background-color .3s;
}
.namazvakitleri a:hover{
    background-color: rgba(255,255,255,0.3);
}
.main .homecontent .side-categories{
    display:flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}
.main .homecontent .side-categories strong{
    height: 48px;
    background-color: var(--bg2-color);
    background-image: linear-gradient(-110deg, var(--secondary-color), var(--primary-color));
    line-height: 48px;
    color:#fff;
    padding:0 10px;
}
.main .homecontent .side-categories ul{
    display:flex;
    flex-direction: column;
    gap:2px;
    border:1px var(--bg3-color) solid;
    background:#fff;
    padding:2px 0;
    margin-top:2px;
}
.main .homecontent .side-categories ul a{
    display:block;
    line-height: 36px;
    font-weight:600;
    padding: 0 10px;
    border-radius: 5px;
    transition: color .3s;
    border-bottom:1px var(--bg3-color) solid;
}
.main .homecontent .side-categories ul a:before{
    content: "\f192";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-size:12px;
    line-height: 36px;
    margin-right:10px;
}

.main .homecontent .side-categories ul li:last-child a{
    border-bottom:none;
}
.main .homecontent .side-categories ul a:hover{
    color:var(--primary-color);
}
.main aside .altcat .kategoriler{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding:5px;
    gap:1%;
    background-color: var(--white);
    border:1px var(--bg3-color) solid;
}
.main aside .altcat .kategori{
    width:49%;
    display: flex;
    gap: 4px;
    align-items: center;
    margin-bottom:4px;
    box-sizing: border-box;
    padding: 0 4px;
}
.main aside .altcat .kategori i{
    width:30px;
    height:30px;
    line-height: 30px;
    text-align: center;
    font-size:16px;

}
.main aside .altcat .kategori span{
    display: flex;
    width:254px;
    font-weight: 500;
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    transition: color .3s;
}
.main aside .altcat .kategori:hover span{
    color:var(--primary-color);
}
.main .yazarmobile{
    display:none;
}
.main aside .yazar{
    display:flex;
    flex-direction: column;
    gap:4px;
}
.main aside .yazar img.yazarimg{
    width:100%;
    height:auto;
    border:4px var(--white) solid;
    outline: 1px var(--bg3-color) solid;
    box-sizing: border-box;
}
.main aside .yazar .bio{
    border: 1px var(--bg3-color) solid;
    padding:6px;
}
.main aside .yazar ul{
    display:flex;
    flex-direction: column;
}
.main aside .yazar ul li a{
    display:block;
    line-height: 24px;
    font-size:14px;
    padding-bottom:20px;
    transition: color .3s;
}
.main aside .yazar ul li a i{
    margin-right:6px;
}
.main aside .yazar ul li a:hover{
    color:var(--primary-color);
}
.main aside > *:last-child{
    margin-bottom: 0;
}
.main aside .altCats{
    background:#fff;
    border:1px var(--bg3-color) solid;
}
.main aside .altCats li a{
    display:block;
    line-height: 30px;
    font-size:16px;
    font-weight: bold;
    background: #f9f9f9;
    margin:2px;
    padding:0 5px;
}
.main.category .cities{
    max-height: 400px;
    overflow-x: hidden;
}
.main .cities .list{
    display:flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: #fff;
    padding:10px;
    border: 1px #f9f9f9 solid;
}
.main .cities .list a{
    display:flex;
    flex-direction: row;
    text-align: center;
    width:115px;
    box-sizing: border-box;
    border-bottom: 1px #f9f9f9 solid;
    padding: 8px 0;
    margin:2px;
    overflow: hidden;
    gap:2px;
    transition: border-bottom-color .3s;
}
.main .cities.style8 .list a{
    width:130px;
}
.main .cities.style7 .list a{
    width:150px;
}
.main .cities.style6 .list a{
    width:175px;
}
.main .cities.style5 .list a{
    width:210px;
}
.main .cities.style4 .list a{
    width:165px;
}
.main .cities.style3 .list a{
    width:355px;
}
.main .cities.style2 .list a{
    width:535px;
}
.main .cities.style1 .list a{
    width:100%;
}
.main.category .cities .list a{
    width:100px;
    padding:6px 4px;
}
.main .cities .list a strong{
    font-size: 13px;
    line-height: 16px;
    color:#555;
    transition: color .3s;
}
.main .cities .list a span{
    font-size: 13px;
    line-height: 16px;
    color:#222;
    transition: color .3s;
}
.main .cities .list a i:before{
    content:'';
    display:block;
    margin:3px 3px 3px 0;
    width:8px;
    height:8px;
    border:1px var(--text4) solid;
    border-radius: 2px;
    transition: border-color .3s, background-color .3s;
}
.main .cities .list a:hover{
    border-bottom-color: var(--primary-color);
}
.main .cities .list a:hover strong,
.main .cities .list a:hover span{
    color:var(--primary-color);
}
.main .cities .list a:hover i:before{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.main .videos{
    display: flex;
    flex-direction: column;
    background-color: var(--dark-color);
    background-image: linear-gradient(-110deg, #050505, #0393a9);
}
.main .videos .title{
    font-size:16px;
    margin-bottom: 0;
    border:none;
}
.main .videos .title strong,
.main .videos .title > a{
    border:none;
    color:#fff;
    padding: 0 10px;
}
.main .videos .title > a{
    font-weight: bold;
    font-size:14px;
}
.main .videos .title strong{
    border:none;
}
.main .videos .video-list{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 5px;
    gap:6px;
    flex-wrap: wrap;
}
.main .videos .video{
    display:block;
    width:24.5%;
    text-align: center;
}
.main .ikili.stil2 .column:nth-child(1) .videos .video,
.main .ikili.stil3 .column:nth-child(2) .videos .video,
.main .uclu.stil1 .videos .video{
    width: 49%;
}
.main .videos .video .img{
    display:inline-block;
    position: relative;
    overflow: hidden;
    border:8px rgba(0,0,0,0.2) solid;
    width:100%;
    height:auto;
    box-sizing: border-box;
    line-height: 0;
}
.main .videos .video .img small,
.main .videos .video .img i{
    opacity:0;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: rgba(0,0,0,0.7);
    z-index: 2;
    transition: opacity .3s ease;
}
.main .videos .video:hover .img small,
.main .videos .video:hover .img i{
    opacity:1;
}
.main .videos .video .img i{
    background-color: unset;
    color:#fff;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main .videos .video .img img{
    width:100%;
    height:auto;
}
.main .videos .video h6{
    text-align: center;
    color:var(--white);
    height: 40px;
    overflow: hidden;
    font-weight: bold;
}

.main .adsmaincontent{
    display: block;
    position: relative;
    line-height: 0;
    box-sizing: border-box;
    text-align: center;
}
.main .galleries{
    display: flex;
    flex-direction: column;
    background-color: #9D3010;
    background-image: linear-gradient(-110deg, #950e0e, #4688ce);
}
.main .galleries .title{
    border:none;
    margin-bottom:0;
}
.main .galleries .title strong{
    border-bottom:none;
    color:#fff;
    font-size:16px;
}
.main .galleries .title > a{
    color:#fff;
    font-size:14px;
    font-weight: bold;
    padding:0 10px;
}
.main .galleries .gallery-list{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    padding: 5px;
    gap:5px;
    flex-wrap: wrap;
}
.main .galleries .gallery{
    display:block;
    width:24.4%;
    text-align: center;
}
.main .ikili.stil2 .column:nth-child(1) .galleries .gallery,
.main .ikili.stil3 .column:nth-child(2) .galleries .gallery,
.main .uclu.stil1 .galleries .gallery{
    width: 49%;
}
.main .galleries .gallery .img{
    display:inline-block;
    position: relative;
    overflow: hidden;
    border:4px rgba(0,0,0,0.2) solid;
    width:100%;
    height: auto;
    line-height: 0;
    box-sizing: border-box;
}
.main .galleries .gallery .img small,
.main .galleries .gallery .img i{
    opacity:0;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: rgba(0,0,0,0.7);
    z-index: 2;
    transition: opacity .3s ease;
}
.main .galleries .gallery:hover .img small,
.main .galleries .gallery:hover .img i{
    opacity:1;
}
.main .galleries .gallery .img i{
    background-color: unset;
    color:#fff;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main .galleries .gallery .img img{
    width:100%;
    height: auto;
}
.main .galleries .gallery h6{
    text-align: center;
    color:var(--white);
    height: 40px;
    overflow: hidden;
    font-weight: bold;
}
.main.news{
    background-color: var(--white);
    padding:10px;
    box-sizing: border-box;
    border: 1px var(--bg3-color) solid;
}
.main.news h1{
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color:var(--dark-color);
    text-align: center;
    padding:20px 0 0;
}
.main.news .info{
    text-align: center;
    color:var(--text4);
}
.main.news.page404 .info{
    margin:20px 0 60px;
}
.main.news .info > div{
    margin-top: 10px;
}
.main.news .info > div span{
    margin-right:12px;
}
.main.news .info span.cat,
.main.news .info span.city,
.main.news .info span.okunma{
    background-color: var(--primary-color);
    display:inline-block;
    padding:2px 8px;
    font-weight: 600;
    color:var(--white);
    border-radius: 4px;
    margin-right:10px;
}
.main.news .info span.city{
    background-color: var(--dark);
}
.main.news .info span.okunma{
    background-color: var(--bg3-color);
    color:var(--dark);
}
.main.news .news-detail{
    display:flex;
    gap:10px;
}
.main.news .news-detail.company{
    flex-direction: row-reverse;
}
.main.news .news-detail .single .ilgili{
    padding:5px;
    background-color: #264959;
    background-image: linear-gradient(-110deg, #070226, #2284db);
    overflow: hidden;
    margin-bottom:6px;
}
.main.news .news-detail .single .benzer{
    padding:5px;
    background-color: #00695C;
    background-image: linear-gradient(-110deg, #072602, #00695C);
    overflow: hidden;
    margin-bottom:6px;
}
.main.news .news-detail .single .ilgiligallery{
    padding:5px;
    background-color: #4527A0;
    background-image: linear-gradient(-110deg, #070226, #4527A0);
    overflow: hidden;
    margin-bottom:6px;
}
.main.news .news-detail .single .ilgili a,
.main.news .news-detail .single .benzer a,
.main.news .news-detail .single .ilgiligallery a{
    text-decoration: none;
}
.main.news .news-detail .single .ilgili strong,
.main.news .news-detail .single .benzer strong,
.main.news .news-detail .single .ilgiligallery strong{
    display:block;
    border-bottom: 1px #0277BD solid;
    line-height: 32px;
    font-size:14px;
    font-weight: bold;
    color:#fff;
    text-decoration: none;
    margin-bottom:6px;
}
.main.news .news-detail .single .benzer strong{
    border-bottom: 1px #00695C solid;
}
.main.news .news-detail .single .ilgiligallery strong{
    border-bottom: 1px #4527A0 solid;
}
.main.news .news-detail .single .ilgili .img,
.main.news .news-detail .single .benzer .img,
.main.news .news-detail .single .ilgiligallery .img{
    float:left;
    border:2px #fff solid;
    outline: 1px #0277BD solid;
    margin-right:6px;
    line-height: 0;
}
.main.news .news-detail .single .benzer .img{
    outline: 1px #00695C solid;
}
.main.news .news-detail .single .ilgiligallery .img{
    outline: 1px #4527A0 solid;
}
.main.news .news-detail .single .ilgili .detail,
.main.news .news-detail .single .benzer .detail,
.main.news .news-detail .single .ilgiligallery .detail{
    float:left;
    max-width:calc(100% - 250px);
}
.main.news .news-detail .single .ilgili .detail h3,
.main.news .news-detail .single .benzer .detail h3,
.main.news .news-detail .single .ilgiligallery .detail h3{
    color:#fff;
    margin:0;
    line-height:30px;
    font-size:20px;
}
.main.news .news-detail .single .ilgili .detail span,
.main.news .news-detail .single .benzer .detail span,
.main.news .news-detail .single .ilgiligallery .detail span{
    display:block;
    color:#eee;
    margin:0;
    line-height:18px;
    font-size:14px;
}
.main.news .addcomment .title-comment{
    font-weight: bold;
    padding: 0 6px;
    line-height: 30px;
}
.main.news .addcomment .commenter{
    display:none;
    /*display:flex;*/
    gap:10px;
    justify-content: space-between;
    padding:10px 0;
}
.main.news .addcomment .commenter > div{
    width:50%;
}
.main.news .addcomment input,
.main.news .addcomment input:focus,
.main.news .addcomment textarea{
    border:1px #d9d9d9 solid;
    background:#fff;
    box-sizing: border-box;
    line-height:30px;
    padding: 10px 6px;
    color:#555;
    resize: none;
    width:100%;
    box-shadow: none;
    outline: 0;
}
.main.news .addcomment textarea{
    height:60px;
    border:none;
    border-bottom:1px #d9d9d9 solid;
}
.main.news .addcomment .buttonarea{
    display:flex;
    justify-content: end;
}
.main.news .addcomment .buttonarea button{
    background-color: var(--primary-color);
    color:#fff;
    border:none;
    border-radius: 4px;
    line-height: 30px;
    padding:5px 30px;
    cursor: pointer;
}
.main.news .addcomment input{
    width:100%;
}
.main.news .comments .title{
    display: flex;
    gap: 2px;
    background-color: var(--bg2-color);
    line-height: 60px;
    padding: 0 8px;
    border-left: 5px var(--primary-color) solid;
    font-weight: 700;
}
.main.news .comments ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.main.news .comments ul li{
    display: flex;
    flex-direction: column;
    margin:4px 0 8px;

}
.main.news .comments ul li strong{
    display:flex;
    justify-content: space-between;
    line-height:40px;
    padding:0 10px;
    border-bottom:1px var(--bg3-color) solid;
    background-color: #f9f9f9;
}
.main.news .comments ul li strong small{
    line-height:40px;
    padding:0 10px;
    text-align: right;
    font-weight: normal;
    font-size: 12px;
}
.main.news .comments ul li span{
    line-height:30px;
    padding:10px;
    border-bottom:1px var(--bg3-color) solid;
}

.onaybekliyor,
.captchaerror,
.errorcomment{
    border:1px #558B2F solid;
    background-color: #C8E6C9;
    margin:10px 0;
    border-radius: 4px;
    padding: 10px;
    width:100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
}
.captchaerror,
.errorcomment {
    border: 1px #8d1b1b solid;
    background-color: #e6c8c8;
}
.onaybekliyor strong{
    color:#558B2F;
}
.captchaerror strong,
.errorcomment strong{
    color:#8d1b1b;
}

.main.category .tarihsecim{
    display:flex;
    justify-content: end;
    gap:10px;
}
.main.category .tarihsecim input{
    font-size:16px;
    line-height:40px;
    border:1px var(--bg3-color) solid;
    background-color: #fcfcfc;
    padding:0 10px;
    width:100px;
}
.main.category .tarihsecim button{
    font-size:16px;
    line-height:40px;
    border:1px #f9f9f9 solid;
    background-color: var(--primary-color);
    color:#fff;
    padding:0 10px;
}
.navigation{
    display: flex;
    justify-content: end;
}
.navigation ul{
    display: flex;
    justify-content: space-between;
    gap:2px;
}
.navigation ul li a{
    display:block;
    line-height:36px;
    height:36px;
    min-width:36px;
    text-align: center;
    font-size:14px;
    font-weight: 600;
    color:var(--dark-color);
    background-color: var(--bg2-color);
    border:1px var(--bg3-color) solid;
    user-select: none;
    transition: background-color .3s;
}
.navigation ul li a:hover{
    background-color: var(--bg3-color);
}
.navigation ul li.active a{
    background-color: var(--primary-color);
    color:var(--white);
}
.navigation ul li a i{
    font-size:12px;
}
.videohead{
    background-color: #000;
    padding:10px;
}
.videohead .container{
    flex-direction: column;
}
.videohead h1{
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
    color:var(--bg2-color);
    text-align: center;
    padding:20px 0;
}
.videohead .video > *{
    width:100%;
    height:500px;
}
#map {
    height: 400px;
    width: 100%;
    margin-bottom:10px;
}
.main .yazarDetail aside img{
    width:100%;
    max-width:100%;
    height:auto;
}
.main .yazarDetail aside .bio{
    background: var(--white);
    padding: 10px;
    border: 1px var(--bg3-color) solid;
}
.main .yazarDetail .content ul{
    display:flex;
    flex-direction: column;
    padding:10px;
    background-color: var(--white);
    border:1px var(--bg3-color) solid;
}
.main .yazarDetail .content ul.pagination{
    flex-direction: row;
}
.main .yazarDetail .content ul li a{
    line-height:40px;
    font-size:16px;
    transition: color .3s;
}
.main .yazarDetail .content ul li a:hover{
    color:var(--primary-color);
}
.main .yazarDetail .content ul li a i{
    margin-right:6px;
    font-size:16px;
}
.gallerytitle{
    line-height:40px !important;
    margin:10px 0 4px !important;
    border-bottom:2px var(--bg3-color) solid;
    display:flex;
}
.gallerytitle span{
    display:flex;
    font-size:24px;
    padding:0 10px;
    background-color: var(--bg3-color);
    color:var(--primary-color);
    margin-right:10px;
    line-height: 40px;
}
.gallerytitle small{
    color:#999;
    line-height: 40px;
    font-size: 16px !important;
    margin-left:4px;
}
.single .social{
    display:flex;
    justify-content: end;
    gap:6px;
    margin:6px 0;
}
.single .social a{
    width:40px;
    height:40px;
    line-height: 40px;
    text-align: center;
    background-color: #000;
    border-radius: 2px;
    opacity: 0.8;
    transition: transform .1s linear, opacity .3s;
}
.single .social a.googlenews{
    width:auto;
    color:var(--text4);
    padding:0 10px;
    text-decoration: none;
    background-color:#f9f9f9;
    border:1px var(--bg3-color) solid;
    border-radius: 3px;
}
.single .social a.googlenews i{
    color:var(--text4);
}
.single .social a.facebook{
    background-color: #1877f2;
}
.single .social a.linkedin{
    background-color: #0a66c2;
}
.single .social a.whatsapp{
    background-color: #25d366;
}
.single .social a.email{
    background-color: #555;
}
.single .social a.print{
    background-color: #69359d;
}
.single .social a.telegram{
    background-color: #0088cc;
}
.single .social a.pinterest{
    background-color: #bd081c;
}
.single .social a.reddit{
    background-color: #ff5700;
}
.single .social a i{
    font-style: normal;
    font-size:20px;
    line-height: 40px;
    color:#fff;

}
.single .social a:hover{
    opacity:1;
    /*transform: scale(1.1);*/
}

footer{
    background-color: var(--dark-color);
    background-image: linear-gradient(-110deg, var(--footer-color2), var(--footer-color1))
}
footer .copyright{
    background-color: rgba(0,0,0,0.2);
    line-height:60px;
    color:#ddd;
}
footer .copyright .container{
    font-weight: 500;
    justify-content: space-between;
}
footer .copyright .container a{
    color:#fff;
}
footer > .container{
    padding:40px 0 30px;
    gap:10px;
}
footer .footer-area{
    flex:1;
    border-left:1px rgba(0,0,0,0.3) solid;
    padding: 0 14px;
    box-sizing: border-box;
}
footer .footer-area:first-child{
    border-left:none;
}
footer .footer-area .flogo{
    text-align: center;
}
footer .footer-area .categories,
footer .footer-area .services{
    display:flex;
    flex-direction: column;
}
footer .footer-area strong{
    display: block;
    position: relative;
    font-size:14px;
    line-height: 40px;
    color:#fff;
    text-align: center;
}
footer .footer-area p{
    display: block;
    position: relative;
    font-size:13px;
    line-height: 20px;
    color:var(--bg3-color);
    margin-bottom:10px;
}
footer .footer-area ul{
    display:flex;
    flex-wrap: wrap;
}
footer .footer-area ul li{
    width:33.3%;
}
footer .footer-area ul.sayfalar li{
    width:50%;
}
footer .footer-area ul li a{
    position: relative;
    display: block;
    color:var(--bg3-color);
    line-height: 36px;
    font-size:12px;
    padding-left:12px;
    white-space: nowrap;
    transition: color .3s;
}
footer .footer-area ul li a:before{
    content: '';
    position: absolute;
    left:0;
    top:14px;
    width:8px;
    height:8px;
    background-color: var(--bg3-color);
    transition: background-color .3s, transform .3s;
}
footer .footer-area ul li a:hover{
    color:#fff;
}
footer .footer-area ul li a:hover::before{
    background-color:#fff;
    transform: rotate(90deg);
}
footer .footer-area ul.social li{
    width:16.66%;
}
footer .footer-area ul.social li span{
    padding-left:0;
    text-align: center;
    cursor:pointer;
    color:#fff;
}
footer .footer-area ul.social li span i{
    display:block;
    font-size:18px;
    line-height: 40px;
}
footer .footer-area ul.social li span:before{
    display:none;
}
footer .pages{
    height:100px;
}
footer .pages .container{
    border-top:1px rgba(0,0,0,0.3) solid;
}
footer .pages ul{
    position: relative;
    display: flex;
    width:100%;
    flex-direction: row;
    justify-content: center;
    margin:20px 0;
    gap:30px;
}
footer .pages ul li a{
    display: flex;
    flex-direction: column;
    position: relative;
    color:#c9c9c9;
    text-align: center;
    transition: color .3s, transform .3s;
}
footer .pages ul li a i{
    display:block;
    width:100%;
    height:40px;
    line-height: 40px;
    font-size:18px;
    color:#fff;
}
footer .pages ul li a:hover{
    color:var(--bg3-color);
    transform: scale(1.1);
}
#cookie{
    width:660px;
    max-width:90vw;
    border: 1px solid #000;
    background: #222;
    color: #eee;
    line-height: 30px;
    font-size:15px;
    position: fixed;
    display: block;
    padding:10px;
    border-radius: 5px;
    bottom:2px;
    right:5vw;
    padding-right:35px;
    box-sizing: border-box;
    z-index: 99;
}
#cookie.hidden{
    display:none;
}
#cookie a{
    color:var(--dark);
    background: var(--bg2-color);
    display: inline-block;
    padding: 0 10px;
    margin-right: 10px;
    border-radius:4px;
    line-height: 30px;
}
#cookie button{
    font-family: var(--font-family);
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    background: var(--primary-color);
    display: inline-block;
    padding: 0 10px;
    border-radius: 4px;
    border: none;
    line-height: 30px;
    cursor:pointer;
}

.yonlendirme{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap:10px;
    max-width:90%;
    margin:0 auto;
}
.yonlendirme .info{
    font-size:14px;
    color:var(--text4);
    margin:20px 0;
}
.yonlendirme a{
    font-size:18px;
    color:#fff;
    font-weight:bold;
    line-height: 60px;
    background:var(--text);
    padding:0 20px;
    display:block;
    border-radius: 5px;
}
.yonlendirme a.accept{
    background:#3cab3b;
}
.eczane h1 a i{
    background-color: var(--text);
    color: #fff;
    line-height: 36px;
    padding: 0 12px;
    border-radius: 5px;
    margin-right: 10px;
}
.eczane h5{
    width:100%;
    padding:0 16px;
    line-height: 48px;
    font-size:14px;
    font-weight: bold;
    background-color: var(--bg2-color);
    border-radius: 5px;
}
.eczane .cities{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:6px;
}
.eczane .cities li a{
    display:flex;
    gap:8px;
    padding:8px;
    line-height: 50px;
    background-color: var(--bg2-color);
    border-radius: 3px;
    transition: background-color .3s;
    width:162px;
}
.eczane .cities li a i{
    background:#fff;
    color:var(--text4);
    font-weight:bold;
    width:32px;
    height:32px;
    line-height: 32px;
    text-align: center;
}
.eczane .cities li a span{
    line-height:32px;
    background-color: transparent;
    transition: color .3s;
}
.eczane .cities li a:hover{
    background-color: var(--primary-color);
}
.eczane .cities li a:hover span{
    color:#fff;
}
.eczane-list{
    display:flex;
    flex-wrap: wrap;
    gap:6px;
    justify-content: center;
}
.eczane h2{
    background-color:var(--primary-color);
    line-height:48px;
    font-weight:bold;
    font-size:20px;
    color:#fff;
    text-align: center;
    width:100%;
    border-radius: 5px;
}
.eczane-list > div{
    border:1px var(--bg2-color) solid;
    border-radius: 4px;
    display:flex;
    flex-direction: column;
    gap:4px;
    padding: 4px;
    width: 32%;
}
.eczane h3{
    background-color:var(--bg3-color);
    line-height:48px;
    color:var(--text4);
    text-align: center;
    font-weight:bold;
    border-radius: 4px;
}
.eczane span{
    display:block;
    background-color:var(--bg2-color);
    line-height:36px;
    color:#555;
    text-align: center;
    border-radius: 4px;
}
.currency-page .form{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    border:1px var(--item-border-color) solid;
    background:var(--white);
    border-radius: 10px;
    padding:10px;
    line-height: 40px;
    font-size:16px;
    gap:4px;
}
.currency-page .form h2,
.currency-page .form span#result{
    display:block;
    width:100%;
    line-height: 48px;
    font-size:18px;
    text-align: center;
}
.currency-page .form input,
.currency-page .form select{
    font-size:16px;
    line-height: 40px;
    height:40px;
    box-sizing: border-box;
    border: 1px rgba(0,0,0,0.05) solid;
    background-color: transparent;
    padding:0 10px;
}
.currency-page .list{
    display:flex;
    flex-wrap: wrap;
    gap:1%;
    justify-content: center;
}
.currency-page .list .item{
    position: relative;
    width:24%;
    padding:10px;
    border: 1px rgba(0,0,0,0.05) solid;
    background-color: var(--white);
    box-sizing: border-box;
    display: flex;
    gap:4px;
    margin-bottom:1vh;
}
.currency-page .list .item .img{
    width:24px;
    height:18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    border:1px #e9e9e9 solid;
}
.currency-page .list .item .img.gold{
    background-image: linear-gradient(-110deg, #F0CF1F, #FFD700);
}
.currency-page .list .item .info{
    flex:1;
    display:flex;
    flex-direction: column;
    gap:6px;
}
.currency-page .list .item .info strong{
    font-size:14px;
}

.currency-page .list .item .info span{
    font-size:24px;
    font-weight:bold;
}
.currency-page .list .item .info span small{
    display:block;
    font-weight:400;
}
.currency-page .list .item .status{
    display:flex;
    flex-direction: column;
    text-align: right;
    justify-content: space-between;
}
.currency-page .list .item .status small {
    display: inline-block;
    padding:0 6px;
    margin-left:8px;
    height:20px;
    line-height: 20px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--text);
    color:var(--white)
}
.currency-page .list .item .status small.down{
    background-color:#9F1E1E;
}
.currency-page .list .item .status small.up{
    background-color:#215A25;
}
.currency-page .list .item .status i{
    font-size:26px;
    opacity:0.3;
}
.currency-page .list .item .status i.fa-angles-down{
    color:#9F1E1E;
}
.currency-page .list .item .status i.fa-angles-up{
    color:#215A25;
}
@keyframes downEmtia {
    0% {
        padding-top:0;
    }
    90% {
        padding-top:10px;
    }
    100% {
        padding-top:0;
    }
}
@keyframes upEmtia {
    0% {
        padding-top:10px;
    }
    90% {
        padding-top:0;
    }
    100% {
        padding-top:10px;
    }
}
.imsakiyeDetail{
    display:flex;
    flex-direction: column;
    gap:2px;
}
.imsakiyeDetail div{
    display:flex;
    justify-content: center;
    background-color:#f5f5f5;
    border-radius:4px;
    line-height:28px;
    cursor:pointer;
    user-select: none;
}
.imsakiyeDetail div:hover{
    background-color: #e9e9e9 !important;
}
.imsakiyeDetail div.info{
    background-color: unset !important;
    text-align: center;
    gap:5px;
}
.imsakiyeDetail div.info *{
    flex:unset !important;
    text-align: left;
}
.imsakiyeDetail div.title{
    margin-bottom:0;
    font-weight: bold;
    font-size:18px;
    line-height:32px;
    background: none;
}
.imsakiyeDetail div *{
    flex:2;
    text-align:center;
}
.imsakiyeDetail div *:nth-child(1){
    flex:1;
}
.imsakiyeDetail div *:nth-child(2){
    flex:3;
}
.imsakiyeDetail div:nth-child(even){
    background-color: #f1f1f1;
}
.imsakiyeDetail div.kadirgecesi{
    background-color: #ded5c9;
    background-image: linear-gradient(-110deg, #ded5c9, #f2eee3);
}
.imsakiyeDetail div.active{
    background-color: #4CAF50;
    background-image: linear-gradient(-110deg, #71bb85, #2ab39b);
    font-weight:bold;
    color:#fff;
}
@media only screen and (max-width: 1440px)  {
    .main #adsleft,
    .main #adsright{
        display: none;
    }
}

@media only screen and (max-width: 1100px)  {
    .desktopads{
        display: none !important;
    }
    .mobileads{
        display: block !important;
    }
    .container{
        width:754px;
    }
    .harita.map,
    #topmenu{
        display: none;
    }
    #currency{
        height:auto;
    }
    #currency .container{
        justify-content: end;
    }
    #currency .container .currencies > div{
        width:33.33%;
        margin: 0;
        justify-content: center;
    }
    #currency .container > div.hava{
        padding-right:10px;
    }

    #currency .container .currencies > div.cur{
        position:absolute;
        justify-content: start;
        opacity:0;
        font-size:14px;
        font-weight: bold;
        padding-left:10px;
        left:0;
        top:0;
        animation: fadeIn var(--totaltime) infinite;
        animation-delay: var(--delay);
    }
    #currency .container .currencies > div.cur i{
        font-size:16px;
    }
    @keyframes fadeIn {
        0% {
            opacity: 0;
            left:0;
        }
        2% {
            opacity: 1;
            left:0;
        }
        14% {
            opacity: 1;
            left:0;
        }
        16.2857% {
            opacity: 0;
            left:80px;
        }
    }
    #currency .container > div.flex-space{
        display: none;
    }
    #menu ul#main{
        display: none;
    }
    #menu div#mobile{
        display:block;
    }
    .main .surmanset .item a h3{
        line-height: 14px;
        font-size: 13px;
        text-shadow: 1px 1px 2px #000;
    }
    .main .surmanset .item a small{
        line-height: 18px;
        font-size: 12px;
    }
    .main .manset{
        display: none;
    }
    #sondakika{
        display: none;
    }
    .main .maincontent{
        flex-direction: column;
    }
    .main .maincontent.yazarDetail{
        flex-direction: column-reverse;
    }
    .main .content{
        width:100%;
    }
    .main .homecontent > div{
        flex-direction: column;
    }
    .main .homecontent > div .column{
        width:100% !important;
    }
    .main .homecontent .slider{
        width: 100% !important;
        height: auto;
    }
    .main .homecontent .populer .haber span{
        width:auto;
        max-width: calc(100% - 70px);
    }
    .main .homecontent .puandurumu ul li span:nth-child(2){
        width:calc(100% - 120px);
    }
    .main .videos{
        flex-wrap: wrap;
    }
    .main .videos .video{
        width:50% !important;
    }
    .main .homecontent .tekli .lastest .haber img{
        width:100%;
        height:auto;
    }
    .main.news .news-detail{
        flex-direction: column;
        overflow-x: hidden;
    }
    .main.news .news-detail .single{
        width:100%;
        overflow-x: hidden;
    }
    .main aside{
        position: relative !important;
        width:100% !important;
        top:0 !important;
    }
    .videohead .video > *{
        max-height:50vh;
    }
    .main aside .yazar img{
        max-width: 400px;
        align-self: center;
    }
    .burclar a{
        width:16.4%;
        margin: 0.1%;
    }
    .burclar a span{
        position: relative;
        opacity: 1;
        transform: scale(1);
        padding-bottom:4px;
        margin-bottom:4px;
    }
    .burclar a:hover img{
        transform: scale(1);
    }
    .main.news .news-detail.company{
        flex-direction: column;
    }
    .main aside .yazar h2,
    .main aside .yazar img.yazarimg{
        display:none;
    }
    .main .yazarDetail aside .yazar img.yazarimg{
        display:block;
    }
    .main .yazarDetail aside .yazar{
        flex-direction: row-reverse;
    }
    .main .yazarDetail aside .yazar img.yazarimg{
        width:30vw;
        height:auto;
        align-self:start
    }
    .main .yazarmobile{
        display:flex;
    }
    .main .yazarmobile h2{
        flex:1;
        border-bottom:10px var(--primary-color) solid;
        display: flex;
        justify-content: center;
        align-self: end;
        font-size: 20px;
    }
    .main .yazarmobile img{
        border:5px var(--primary-color) solid;
        box-sizing: border-box;
        width:90px;
        height:auto;
    }
    .currency-page .list .item{
        width:49%;
    }
    footer > .container{
        flex-direction: column;
    }
    footer .footer-area{
        width:100%;
        border-left:none;
    }
    footer .footer-area:first-child{
        border-bottom:1px rgba(0,0,0,0.3) solid;
    }
    footer .footer-area ul {
        margin-bottom: 30px;
    }

}

@media only screen and (max-width: 755px) {
    .container{
        width:100vw;
    }
    #currency .container > div.hava{
        margin-right:8px;
    }
    .main .surmanset{
        flex-wrap: wrap;
        gap:6px;
    }
    .main .surmanset .item{
        width:calc(50% - 3px);
        box-sizing: border-box;
    }
    .main .surmanset .item a h3{
        line-height: 18px;
        font-size: 14px;
        text-shadow: 1px 1px 4px #000;
    }
    .main .homecontent .slider .slides li img,
    .main .homecontent .slider .slides li div{
        width:100vw !important;
        height:auto;
    }
    .main .homecontent .slider .slides li div img{
        width:auto !important;
        max-height:calc(100vw / 1.8285714);
    }
    .main .homecontent .lastest .haber img{
        width:100%;
        height:auto;
    }
    .main .galleries .gallery{
        width:240px !important;
    }
    .main .galleries .gallery .img img,
    .main .videos .video .img img{
        width:100%;
        height:auto;
    }
    .main .videos .video-list{
        flex-wrap: wrap;
    }
    .main .videos .video{
        width:240px !important;
    }
    footer .footer-area strong{
        text-align: left;
    }
    footer .footer-area ul li{
        width: 50%;
    }
    footer .pages{
        height: auto;
    }
    footer .pages ul{
        flex-wrap: wrap;
    }
    footer .copyright .container{
        flex-direction: column;
        align-items: center;
    }
    .main .homecontent .slider .slides li a h4{
        line-height: 30px;
        font-size: 18px;
    }
    .main.news h1{
        line-height: 48px;
        font-size: 32px;
    }
    .main.news .news-detail .single .ilgili .img, .main.news .news-detail .single .benzer .img, .main.news .news-detail .single .ilgiligallery .img{
        width:33vw;
    }
    .main.news .news-detail .single .ilgili .detail, .main.news .news-detail .single .benzer .detail, .main.news .news-detail .single .ilgiligallery .detail{
        max-width: calc(100% - 33vw - 10px);
    }
    .namazvakitleri,
    .main .homecontent .gazetemansetleri,
    .main .homecontent .nobetcieczaneler{
        margin:0 8px;
    }
    .single .social{
        flex-wrap: wrap;
        gap:2px;
    }
    /*.single .social a{
        width:32px;
        height:32px;
        line-height: 32px;
    }
    .single .social a i{
        font-size:18px;
        line-height: 32px;
    }*/
    .eczane .cities{
        flex-direction: column;
        width:100%;
    }
    .eczane .cities li a{
        width:100%;
        box-sizing: border-box;
    }
    .eczane-list > div{
        width:100%;
    }
}
@media only screen and (max-width: 540px) {
    .container{
        width:100vw;
        box-sizing: border-box;
        /*overflow-y: hidden;*/
    }
    .main .homecontent .lastest .haber,
    .main .homecontent .tekli .lastest .haber,
    .main .videos .video,
    .main .galleries .gallery{
        width:100% !important;
        box-sizing: border-box;
    }
    .main .homecontent .lastest .haber h5,
    .main .maincontent .lastest .haber h2{
        font-size:16px;
    }
    .main .galleries .gallery .img,
    .main .videos .video .img{
        width:90vw;
        height:auto;
    }
    .main .videos .video .img small, .main .videos .video .img i{
        opacity: 0 !important;
    }
    .main .homecontent .burclar a{
        width:24%;
        margin: 0.5%;
    }
    .main .yazarlar{
        gap:0;
    }
    .main .yazarlar .yazar{
        width:50%;
        box-sizing: border-box;
    }
    .main .yazarlar .yazar:nth-child(5n){
        width:100%;
    }
    .main .yazarlar .yazar img{
        box-sizing: border-box;
        width:120px;
        left:calc(50% - 60px);
    }
    .mobileads img{
        max-width:100%;
        height:auto;
    }
    .currency-page .form{
        flex-direction: column;
    }
    .currency-page .list .item{
        width:100%;
    }
    .imsakiyeDetail div{
        font-size:13px;
    }
}
@media only screen and (max-width: 410px) {
    #menu .logo{
        justify-content: center;
        display: flex;
        flex-direction: column;
    }
    #menu.fixed .logo a img{
        max-width:100vw;
        max-height: 60px;
        box-sizing: border-box;
        width:auto;
        height:auto;
    }
    #currency .container{
        justify-content: end;
        flex-direction: column;
        padding-top: 50px;
        /*overflow-x:hidden;*/
    }
    #currency .container > div.cur{
        justify-content: center;
        width:100%;
        box-sizing: border-box;
    }
    #currency .container > div.hava{
        margin:0 8px;
    }
    #menu div#mobile > i{
        margin:5px;
    }
    .imsakiyeDetail div *:nth-child(1),
    .imsakiyeDetail div *:nth-child(4){
        display:none;
    }
    .imsakiyeDetail div.info strong{
        display:flex;
    }
}