:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4/3;
    --wp--preset--aspect-ratio--3-4: 3/4;
    --wp--preset--aspect-ratio--3-2: 3/2;
    --wp--preset--aspect-ratio--2-3: 2/3;
    --wp--preset--aspect-ratio--16-9: 16/9;
    --wp--preset--aspect-ratio--9-16: 9/16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
    --wp--preset--spacing--20: 0.44rem;
    --wp--preset--spacing--30: 0.67rem;
    --wp--preset--spacing--40: 1rem;
    --wp--preset--spacing--50: 1.5rem;
    --wp--preset--spacing--60: 2.25rem;
    --wp--preset--spacing--70: 3.38rem;
    --wp--preset--spacing--80: 5.06rem;
    --wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);
    --wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);
    --wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);
    --wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);
}

:where(.is-layout-flex) {
    gap: 0.5em;
}

:where(.is-layout-grid) {
    gap: 0.5em;
}

body .is-layout-flex {
    display: flex;
}

.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}

.is-layout-flex> :is(*, div) {
    margin: 0;
}

body .is-layout-grid {
    display: grid;
}

.is-layout-grid> :is(*, div) {
    margin: 0;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

.has-black-color {
    color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-color {
    color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-color {
    color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-color {
    color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-color {
    color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-color {
    color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-color {
    color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-color {
    color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-color {
    color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-color {
    color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-color {
    color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-color {
    color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-background-color {
    background-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-background-color {
    background-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-background-color {
    background-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-background-color {
    background-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-background-color {
    background-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-background-color {
    background-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-background-color {
    background-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-background-color {
    background-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-background-color {
    background-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-background-color {
    background-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-background-color {
    background-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-black-border-color {
    border-color: var(--wp--preset--color--black) !important;
}

.has-cyan-bluish-gray-border-color {
    border-color: var(--wp--preset--color--cyan-bluish-gray) !important;
}

.has-white-border-color {
    border-color: var(--wp--preset--color--white) !important;
}

.has-pale-pink-border-color {
    border-color: var(--wp--preset--color--pale-pink) !important;
}

.has-vivid-red-border-color {
    border-color: var(--wp--preset--color--vivid-red) !important;
}

.has-luminous-vivid-orange-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-orange) !important;
}

.has-luminous-vivid-amber-border-color {
    border-color: var(--wp--preset--color--luminous-vivid-amber) !important;
}

.has-light-green-cyan-border-color {
    border-color: var(--wp--preset--color--light-green-cyan) !important;
}

.has-vivid-green-cyan-border-color {
    border-color: var(--wp--preset--color--vivid-green-cyan) !important;
}

.has-pale-cyan-blue-border-color {
    border-color: var(--wp--preset--color--pale-cyan-blue) !important;
}

.has-vivid-cyan-blue-border-color {
    border-color: var(--wp--preset--color--vivid-cyan-blue) !important;
}

.has-vivid-purple-border-color {
    border-color: var(--wp--preset--color--vivid-purple) !important;
}

.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
    background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
    background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
    background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;
}

.has-cool-to-warm-spectrum-gradient-background {
    background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;
}

.has-blush-light-purple-gradient-background {
    background: var(--wp--preset--gradient--blush-light-purple) !important;
}

.has-blush-bordeaux-gradient-background {
    background: var(--wp--preset--gradient--blush-bordeaux) !important;
}

.has-luminous-dusk-gradient-background {
    background: var(--wp--preset--gradient--luminous-dusk) !important;
}

.has-pale-ocean-gradient-background {
    background: var(--wp--preset--gradient--pale-ocean) !important;
}

.has-electric-grass-gradient-background {
    background: var(--wp--preset--gradient--electric-grass) !important;
}

.has-midnight-gradient-background {
    background: var(--wp--preset--gradient--midnight) !important;
}

.has-small-font-size {
    font-size: var(--wp--preset--font-size--small) !important;
}

.has-medium-font-size {
    font-size: var(--wp--preset--font-size--medium) !important;
}

.has-large-font-size {
    font-size: var(--wp--preset--font-size--large) !important;
}

.has-x-large-font-size {
    font-size: var(--wp--preset--font-size--x-large) !important;
}

:where(.wp-block-post-template.is-layout-flex) {
    gap: 1.25em;
}

:where(.wp-block-post-template.is-layout-grid) {
    gap: 1.25em;
}

:where(.wp-block-columns.is-layout-flex) {
    gap: 2em;
}

:where(.wp-block-columns.is-layout-grid) {
    gap: 2em;
}

:root :where(.wp-block-pullquote) {
    font-size: 1.5em;
    line-height: 1.6;
}

.esen-container {
    max-width: 1170px
}

@media screen and (max-width:1550px) {
    .esen-container {
        max-width: 1100px
    }
}

@media screen and (max-width:1439px) {
    .esen-container {
        max-width: 1100px
    }
}

@media screen and (max-width:1300px) {
    .esen-container {
        max-width: 980px
    }
}

.nav-container {
    background: linear-gradient(211deg, #ffffff 0%, #ffffff 100%);
    border-bottom: 1px solid #d3d3d3
}

.sideright-content .mobile-right-side-logo {
    background: linear-gradient(211deg, #ffffff 0%, #ffffff 100%);
    border-bottom: 1px solid #d3d3d3
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul {
    height: 95px
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li {
    height: 95px
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li>a {
    height: 95px
}

.header-2-container .header-logo-doviz {
    height: 90px
}

/* .post-image:not(:has(.LazyYuklendi))::before{background-image:url('https://www.avrupaninsesi.com/wp-content/uploads/2025/02/logo_eski.webp')}*/
.sideContent .hava_durumu:after {
    border-top: 85px solid transparent
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li.current-menu-item>a:before {
    border-color: #cccccc transparent transparent transparent
}

.namaz-icerik {
    background-image: url('<?= $site["site_url"] ?>/wp-content/themes/esenhaber/img/camii.png');
    background-position-y: bottom;
    background-repeat: no-repeat
}

.logo {
    height: 95px
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li>.esen-megamenu {
    top: 96px
}

.search-box,
.search-detail {
    height: 95px
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li {
    padding: 0px 10px
}

.mobile-header {
    border-bottom: 0px solid #dddddd
}

.news-progress-container>.news-progress-bar {
    background-color: #a02121;
    background-image: linear-gradient(147deg, #a02121 0%, #ff0000 74%)
}

.top-bar-container {
    border-bottom: 1px solid #dddddd
}


/*
Diğer 
*/

/* Layout 43914 */
#pgc-43914-0-0,
#pgc-43914-1-0,
#pgc-43914-2-0,
#pgc-43914-4-0,
#pgc-43914-5-0,
#pgc-43914-8-0,
#pgc-43914-9-0,
#pgc-43914-11-0,
#pgc-43914-12-0,
#pgc-43914-13-0,
#pgc-43914-14-0 {
    width: 100%;
    width: calc(100% - (0 * 30px))
}

.panel_alan,
#pg-43914-0,
#pg-43914-1,
#pg-43914-2,
#pg-43914-3,
#pg-43914-4,
#pg-43914-6,
#pg-43914-7,
#pg-43914-8,
#pg-43914-9,
#pg-43914-10,
#pg-43914-11,
#pg-43914-12,
#pg-43914-13,
#pl-43914 .so-panel {
    margin-bottom: 30px
}

#pgc-43914-3-0,
#pgc-43914-7-0 {
    width: 66.8083%;
    width: calc(66.8083% - (0.33191680434799 * 30px))
}

#pl-43914 #panel-43914-3-0-1,
#pl-43914 #panel-43914-3-1-0,
#pl-43914 #panel-43914-3-1-2,
#pl-43914 #panel-43914-4-0-0,
#pl-43914 #panel-43914-5-0-0,
#pl-43914 #panel-43914-7-0-0,
#pl-43914 #panel-43914-10-0-0,
#pl-43914 #panel-43914-10-1-0,
#pl-43914 #panel-43914-13-0-0 {
    margin: 0px 0px 0px 0px
}

#pgc-43914-3-1,
#pgc-43914-7-1 {
    width: 33.1917%;
    width: calc(33.1917% - (0.66808319565201 * 30px))
}

#pg-43914-5,
#pl-43914 .so-panel:last-of-type {
    margin-bottom: 0px
}

#pgc-43914-6-0 {
    width: 33.2474%;
    width: calc(33.2474% - (0.66752577319588 * 30px))
}

#pgc-43914-6-1 {
    width: 66.7526%;
    width: calc(66.7526% - (0.33247422680412 * 30px))
}

#pgc-43914-10-0 {
    width: 33.2%;
    width: calc(33.2% - (0.668 * 30px))
}

#pgc-43914-10-1 {
    width: 66.8%;
    width: calc(66.8% - (0.332 * 30px))
}

.panel_alan.panel-has-style>.panel-row-style,
.panel_alan.panel-no-style,
#pg-43914-0.panel-has-style>.panel-row-style,
#pg-43914-0.panel-no-style,
#pg-43914-1.panel-has-style>.panel-row-style,
#pg-43914-1.panel-no-style,
#pg-43914-2.panel-has-style>.panel-row-style,
#pg-43914-2.panel-no-style,
#pg-43914-3.panel-has-style>.panel-row-style,
#pg-43914-3.panel-no-style,
#pg-43914-4.panel-has-style>.panel-row-style,
#pg-43914-4.panel-no-style,
#pg-43914-5.panel-has-style>.panel-row-style,
#pg-43914-5.panel-no-style,
#pg-43914-6.panel-has-style>.panel-row-style,
#pg-43914-6.panel-no-style,
#pg-43914-7.panel-has-style>.panel-row-style,
#pg-43914-7.panel-no-style,
#pg-43914-8.panel-has-style>.panel-row-style,
#pg-43914-8.panel-no-style,
#pg-43914-9.panel-has-style>.panel-row-style,
#pg-43914-9.panel-no-style,
#pg-43914-10.panel-has-style>.panel-row-style,
#pg-43914-10.panel-no-style,
#pg-43914-11.panel-has-style>.panel-row-style,
#pg-43914-11.panel-no-style,
#pg-43914-12.panel-has-style>.panel-row-style,
#pg-43914-12.panel-no-style,
#pg-43914-13.panel-has-style>.panel-row-style,
#pg-43914-13.panel-no-style,
#pg-43914-14.panel-has-style>.panel-row-style,
#pg-43914-14.panel-no-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

#panel-43914-2-0-0>.panel-widget-style {
    background-color: #dd6c6c
}

#pgc-43914-3-1,
#pgc-43914-6-1,
#pgc-43914-7-1,
#pgc-43914-10-0,
#pgc-43914-11-0,
#pgc-43914-14-0 {
    align-self: auto
}

#pg-43914-7>.panel-row-style {
    padding: 50px 0px 0px 0px
}

#pg-43914-8>.panel-row-style {
    padding: 30px 0px 30px 0px
}

#pg-43914-9>.panel-row-style {
    padding: 20px 0px 20px 0px
}

#pg-43914-11>.panel-row-style {
    padding: 20px 0px 50px 0px
}

#pg-43914-12>.panel-row-style {
    padding: 40px 0px 40px 0px
}

#pg-43914-14>.panel-row-style {
    padding: 50px 0px 50px 0px
}

#pg-43914-8 {
    background-color: #191919
}

#pg-43914-9 {
    background: linear-gradient(180deg, #ffffff 0%, #00b9e24a 100%)
}

#pg-43914-11 {
    background: linear-gradient(127deg, rgb(135 0 52) 0%, rgb(65 10 39) 50%, rgb(54 60 74) 50%, rgb(21 29 47) 100%)
}

#pg-43914-12 {
    background-color: rgba(188, 106, 24, 0.19)
}

#pg-43914-14 {
    background-color: #ffffff
}

@media (max-width:780px) {

    .panel_alan,
    .panel_alan.panel-no-style,
    #pg-43914-0.panel-no-style,
    #pg-43914-0.panel-has-style>.panel-row-style,
    #pg-43914-0,
    #pg-43914-1.panel-no-style,
    #pg-43914-1.panel-has-style>.panel-row-style,
    #pg-43914-1,
    #pg-43914-2.panel-no-style,
    #pg-43914-2.panel-has-style>.panel-row-style,
    #pg-43914-2,
    #pg-43914-3.panel-no-style,
    #pg-43914-3.panel-has-style>.panel-row-style,
    #pg-43914-3,
    #pg-43914-4.panel-no-style,
    #pg-43914-4.panel-has-style>.panel-row-style,
    #pg-43914-4,
    #pg-43914-5.panel-no-style,
    #pg-43914-5.panel-has-style>.panel-row-style,
    #pg-43914-5,
    #pg-43914-6.panel-no-style,
    #pg-43914-6.panel-has-style>.panel-row-style,
    #pg-43914-6,
    #pg-43914-7.panel-no-style,
    #pg-43914-7.panel-has-style>.panel-row-style,
    #pg-43914-7,
    #pg-43914-8.panel-no-style,
    #pg-43914-8.panel-has-style>.panel-row-style,
    #pg-43914-8,
    #pg-43914-9.panel-no-style,
    #pg-43914-9.panel-has-style>.panel-row-style,
    #pg-43914-9,
    #pg-43914-10.panel-no-style,
    #pg-43914-10.panel-has-style>.panel-row-style,
    #pg-43914-10,
    #pg-43914-11.panel-no-style,
    #pg-43914-11.panel-has-style>.panel-row-style,
    #pg-43914-11,
    #pg-43914-12.panel-no-style,
    #pg-43914-12.panel-has-style>.panel-row-style,
    #pg-43914-12,
    #pg-43914-13.panel-no-style,
    #pg-43914-13.panel-has-style>.panel-row-style,
    #pg-43914-13,
    #pg-43914-14.panel-no-style,
    #pg-43914-14.panel-has-style>.panel-row-style,
    #pg-43914-14 {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .panel_alan>.panel-grid-cell,
    .panel_alan>.panel-row-style>.panel-grid-cell,
    #pg-43914-0>.panel-grid-cell,
    #pg-43914-0>.panel-row-style>.panel-grid-cell,
    #pg-43914-1>.panel-grid-cell,
    #pg-43914-1>.panel-row-style>.panel-grid-cell,
    #pg-43914-2>.panel-grid-cell,
    #pg-43914-2>.panel-row-style>.panel-grid-cell,
    #pg-43914-3>.panel-grid-cell,
    #pg-43914-3>.panel-row-style>.panel-grid-cell,
    #pg-43914-4>.panel-grid-cell,
    #pg-43914-4>.panel-row-style>.panel-grid-cell,
    #pg-43914-5>.panel-grid-cell,
    #pg-43914-5>.panel-row-style>.panel-grid-cell,
    #pg-43914-6>.panel-grid-cell,
    #pg-43914-6>.panel-row-style>.panel-grid-cell,
    #pg-43914-7>.panel-grid-cell,
    #pg-43914-7>.panel-row-style>.panel-grid-cell,
    #pg-43914-8>.panel-grid-cell,
    #pg-43914-8>.panel-row-style>.panel-grid-cell,
    #pg-43914-9>.panel-grid-cell,
    #pg-43914-9>.panel-row-style>.panel-grid-cell,
    #pg-43914-10>.panel-grid-cell,
    #pg-43914-10>.panel-row-style>.panel-grid-cell,
    #pg-43914-11>.panel-grid-cell,
    #pg-43914-11>.panel-row-style>.panel-grid-cell,
    #pg-43914-12>.panel-grid-cell,
    #pg-43914-12>.panel-row-style>.panel-grid-cell,
    #pg-43914-13>.panel-grid-cell,
    #pg-43914-13>.panel-row-style>.panel-grid-cell,
    #pg-43914-14>.panel-grid-cell,
    #pg-43914-14>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }

    #pgc-43914-3-0,
    #pgc-43914-6-0,
    #pgc-43914-7-0,
    #pgc-43914-10-0 {
        margin-bottom: 30px
    }

    #pl-43914 .panel-grid-cell {
        padding: 0
    }

    #pl-43914 .panel-grid .panel-grid-cell-empty {
        display: none
    }

    #pl-43914 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0px
    }

    .panel_alan>.panel-row-style,
    #pg-43914-0>.panel-row-style,
    #panel-43914-3-0-0>.panel-widget-style,
    #panel-43914-3-1-1>.panel-widget-style,
    #panel-43914-10-1-1>.panel-widget-style {
        margin: 0 -10px
    }

    #pg-43914-7>.panel-row-style {
        padding: 0px 0px 0px 0px
    }

    #pg-43914-11>.panel-row-style {
        padding: 10px 0px 40px 0px
    }
}

/*Reklamlar*/
.ad-rotating a>img {
    width: 1200px;
    max-height: 170px;
}

.ad-rotating {
    position: relative;
}

.ad-rotating a {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.ad-rotating a.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

@media (max-width: 480px) {
    .ad-rotating a>img {
        width: 100% !important;
    }
}

@media (max-width: 768px) {
    .ad-rotating {
        margin-bottom: 20px !important;
    }
}

.updated {
    display: none;
}

/*Youtube Video Alanı numbers*/
.elementor-6 .elementor-element.elementor-element-94dd457>.elementor-widget-container {
    box-shadow: none !important;
}

.is_desktop_device {
    display: none !important;
}

.ep-next {
    background-color: none;
    border: 0px solid black !important;
}

.ep-next>span {
    display: none !important;
}

.is_mobile_device {
    display: none !important;
}

.ose-embedpress-responsive {
    width: 1200px !important;
}

iframe[src*="youtube.com"] {
    width: 100% !important;
}

.category-template-2>ul>li {
    border-radius: 0px 0px 15px 15px;
}

.news-title {
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}

.posts-doviz-widget {
    background: #bfeaff !important;
}

figcaption {
    display: none;
}

body {
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-style: normal;
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li {
    font-family: Quicksand, Arial, Helvetica, sans-serif;
    line-height: 70px;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
}

.main-navigation>.esen-container>.menu-ana-menu-container li>a,
.esen-drawer-menu,
.search-button-nav,
.nav-user>a {
    color: #000000;
}

.main-navigation>.esen-container>.menu-ana-menu-container li:hover>a,
.esen-drawer-menu:hover,
.search-button-nav:hover {
    color: rgba(74, 73, 73, 0.89);
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li>ul,
.main-navigation>.esen-container>.menu-ana-menu-container>ul>li>ul>li>ul,
.main-navigation>.esen-container>.menu-ana-menu-container>ul>li>ul>li>ul>li>ul {
    background: #ffffff;
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li>ul>li a,
.main-navigation>.esen-container>.menu-ana-menu-container>ul>li ul li:before {
    color: #000000;
}

.main-navigation>.esen-container>.menu-ana-menu-container li>ul>li:hover>a {
    color: rgba(126, 126, 126, 0.73);
}

.top-bar-container,
.sideContent .top-elements ul {
    background: #ffffff;
}

.top-elements li a {
    color: #000000;
}

.top-elements li.photo-gallery a>i {
    color: #ffa221;
}

.top-elements li.video-gallery a>i {
    color: #0cb500;
}

.top-elements li.yazarlar-button a>i {
    color: #f70000;
}

.b_ikon {
    color: #0072e5;
}

.bugun_temp {
    color: #0072e5;
}

.weather-city {
    color: #000000;
}

.desk-sosyal-medya>li:first-child {
    color: #757575;
}

.desk-sosyal-medya>li a.facebookd {
    color: #0072e5;
}

.desk-sosyal-medya>li a.twitterd {
    color: #00bdf7;
}

.desk-sosyal-medya>li a.instagramd {
    color: #9e00ce;
}

.desk-sosyal-medya>li a.youtubed {
    color: #ff0000;
}

.desk-sosyal-medya>li a.tiktok {
    color: #000000;
}

.desk-sosyal-medya>li a.pinterestd {
    color: #d1d1d1;
}

.desk-sosyal-medya>li a.dribbbled {
    color: #aaaaaa;
}

.desk-sosyal-medya>li a.linkedind {
    color: #7f7f7f;
}

.desk-sosyal-medya>li a.whatsappd {
    color: #59d600;
}

.desk-sosyal-medya>li a.telegramd {
    color: #0088cc;
}

.sd-red-bg,
.son-dakika-arama,
.son-dakika-arama>.esen-container>.son-dakika {
    background: #c3060f;
}

.son-dakika-arama>.esen-container>.son-dakika>.sd-list a {
    color: #ffffff;
}

.son-dakika-arama {
    background: #ffffff;
}

.top-header-menu>.piyasa>li>span {
    color: #005ae8;
}

.top-header-menu>.piyasa>li>span.guncel {
    color: #000000;
}

.mobile-header {
    background: #ffffff;
}

.mobil-menu-bar>div,
.menu-button_sol {
    color: #dd3333;
}

.mobile-right-drawer-menu {
    color: #000000;
}

.sideContent .hava_durumu {
    background: transparent;
}

.sideContent .b_ikon {
    color: #1cbddd;
}

.sideContent .bugun_temp {
    color: #1e93db;
}

.sideContent .weather-city {
    color: #000000;
}

.esenhaber-author-box .avatar {
    border-color: #fc3200;
}

.pageskin-sol.fixed {
    position: fixed
}

.logo_kapsayici {
    width: 15%
}

.mlogo_kapsayici {
    width: 20%
}

.logo {
    line-height: 0.7;
    width: 100%;
    max-width: 100%;
    margin-right: 0px
}

.mlogo {
    line-height: 0.7;
    width: calc(100%);
    max-width: 100%;
    margin-right: 0px;
    height: 50px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    display: none
}

.logo a img {
    display: inline-block;
    max-height: 85px;
    max-width: 100%;
    width: auto
}

.menu-ana-menu-container {
    display: table;
    width: 83%;
    float: right
}

.footer-widget-inner .menu-ana-menu-container {
    width: 100%
}

.msite-logo {
    max-width: 150px
}

.desk-sosyal-medya {
    display: flex;
    justify-content: center;
    align-items: center
}

.desk-sosyal-medya>li {
    padding: 7px 8px
}

.desk-sosyal-medya>li:last-child {
    padding-right: 0px
}

.desk-sosyal-medya>li i {
    font-weight: 400
}

.son-dakika-arama>.esen-container>.son-dakika:after {
    border-top: 11px solid rgba(170, 5, 60, 1)
}

.son-dakika-arama>.esen-container>.son-dakika>.sd-list>.sd-left-right-button>.sd-left {
    background: rgba(170, 5, 60, 0.90);
    color: rgba(255, 255, 255, .90);
    box-shadow: -2px 3px 16px -8px rgb(0 0 0 / 42%)
}

.son-dakika-arama>.esen-container>.son-dakika>.sd-list>.sd-left-right-button>.sd-left:after {
    border-bottom: 11px solid rgba(170, 5, 60, 0.90)
}

.son-dakika-arama>.esen-container>.son-dakika>.sd-list>.sd-left-right-button>.sd-right {
    background: rgba(170, 5, 60, 1);
    box-shadow: -2px 3px 16px -8px rgb(0 0 0 / 42%);
    color: rgba(255, 255, 255, .90)
}

.son-dakika-arama {}

.custom-fv-galeri {
    margin-left: 15px;
    margin-top: 1px;
    padding: 2px 15px;
    background: #ff6b0f;
    color: #fff;
    border-radius: 5px;
    font-weight: bold
}

.custom-fv-title {
    display: flex;
    align-items: center
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li.nav-user {
    margin-left: auto
}

.main-navigation>.esen-container>.menu-ana-menu-container>ul>li.esen-drawer-menu {
    margin-left: auto
}

.top-header-menu {
    display: none
}

.son-dakika-arama>.esen-container>.son-dakika {
    width: 100%;
    margin-right: 0px
}

.son-dakika-arama>.esen-container>.son-dakika:after {
    content: unset
}

.son-dakika-arama {
    background: #c3060f
}

.desk-sosyal-medya>li i {
    font-size: 14px
}

@media only screen and (max-width:1024px) {
    .mlogo {
        display: flex
    }

    .mlogo_kapsayici {
        width: 100%
    }

    .desk-sosyal-medya {
        display: none
    }

    .whatsapp-ihbar.wp-left {
        position: absolute;
        bottom: 100px;
        background: #25d366;
        padding: 5px 15px;
        width: calc(100% - 40px);
        border-radius: 5px
    }

    .whatsapp-ihbar.wp-left a i {
        padding: 10px 10px;
        margin-right: 0px;
        text-align: center;
        border-radius: 5px;
        font-size: 20px
    }

    .whatsapp-ihbar.wp-left a {
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center
    }

    .whatsapp-ihbar.wp-left a:before {
        content: " ";
        position: absolute;
        left: calc(50% - 8px);
        z-index: 111;
        border-style: solid;
        border-width: 8px 8px 0 8px;
        border-color: #ffffff transparent transparent transparent;
        opacity: 1 !important;
        transform: translateY(0px) !important;
        top: -2px
    }
}