@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
    font-family: 'Elza';
    font-weight: normal;
    font-display: swap;
    src: url("src/font/Elza-Regular.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: normal;
    font-style: italic;
    font-display: swap;
    src: url("src/font/Elza-Oblique.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: bold;
    font-display: swap;
    src: url("src/font/Elza-Bold.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: bold;
    font-style: italic;
    font-display: swap;
    src: url("src/font/Elza-Bold.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 300;
    font-display: swap;
    src: url("src/font/Elza-Light.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 300;
    font-style: italic;
    font-display: swap;
    src: url("src/font/Elza-LightOblique.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 500;
    font-display: swap;
    src: url("src/font/Elza-Medium.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 500;
    font-style: italic;
    font-display: swap;
    src: url("src/font/Elza-MediumOblique.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 600;
    font-display: swap;
    src: url("src/font/Elza-Semibold.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 600;
    font-style: italic;
    font-display: swap;
    src: url("src/font/Elza-SemiboldOblique.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 900;
    font-display: swap;
    src: url("src/font/Elza-Black.otf") format("opentype");
}

@font-face {
    font-family: 'Elza';
    font-weight: 900;
    font-style: italic;
    font-display: swap;
    src: url("src/font/Elza-BlackOblique.otf") format("opentype");
}

body {
    font-family: var(--primary-font-family);
    font-weight: var(--primary-font-weight);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    scroll-behavior: smooth;

}

.container {
    max-width: 1160px;
    margin: auto;
}

.header-swiper2 .swiper-wrapper,
.swiper-hamburger .swiper-wrapper {
    transition-timing-function: linear;
}


.underline-effect::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    bottom: 1px;
    left: 0;
    background-color: rgb(var(--primary) / 0.9);
    transform: scaleX(0);
    opacity: 0;
    transition: transform 0.23s ease, opacity 0.3s ease;
}

.underline-effect:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.header-swiper-bottom .underline-effect::before {
    bottom: 14px;
}

.fade-effect {
    background: linear-gradient(-90deg, rgba(247, 250, 252, 1) 0%, rgba(247, 250, 252, 0) 100%);
}

.dark .fade-effect {
    background: linear-gradient(-90deg, rgb(var(--page-bg-odd-dark)) 0%, rgb(var(--page-bg-odd-dark) / 0) 100%);
}

.fade-effect-vertical {
    background: linear-gradient(0deg, #fff 0%, #ffffff00 100%);
}

.dark .fade-effect-vertical {
    background: linear-gradient(0deg, rgb(var(--page-bg-even-dark)) 0%, rgb(var(--page-bg-even-dark) / 0) 100%);
}

.main-swiper1 .swiper-slide:after,
.swiper-manset-1 .swiper-slide:after,
.swiper-manset-2 .swiper-slide:after,
.main-swiper5 .swiper-slide:after,
.sport-new:after,
.card-effect:after {
    content: "";
    pointer-events: none;
    position: absolute;
    z-index: 10;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgb(var(--header-center-bg-dark)) 100%);

}

.main-swiper1 .swiper-slide:after {
    top: auto;
    height: 50%;
}

.swiper-manset-1 .swiper-slide:after,
.dark .swiper-manset-1 .swiper-slide:after,
.sport-new:after {
    top: 50%;
}

.swiper-manset-1 .swiper-slide:after,
.main-swiper5 .swiper-slide:after,
.sport-new:after {
    background: linear-gradient(180deg, rgb(var(--page-bg-odd-dark) / 0) 0%, rgb(var(--page-bg-odd-dark)) 100%);
}


.dark .swiper-manset-1 .swiper-slide:after,
.dark .main-swiper5 .swiper-slide:after {
    background: linear-gradient(180deg, transparent 0%, rgb(var(--header-center-bg-dark)) 100%);
}

.main-swiper5 .swiper-slide:after,
.dark .main-swiper5 .swiper-slide:after {
    top: 58%;
}

.animated-line {
    height: 2px;
    background-color: white;
    position: relative;
    z-index: 30;
    width: 0;
}


.main-swiper4 .swiper-pagination {
    --swiper-pagination-bottom: 24px;
}

@media (max-width: 1024px) {
    .main-swiper4 .swiper-pagination {
        --swiper-pagination-bottom: 20px;
    }
}

.main-swiper4 .swiper-pagination-bullet {
    width: 30px;
    height: 2px;
    opacity: 0.3;
    background: #fff;
    border-radius: 0;
    --swiper-pagination-bullet-horizontal-gap: 5px;
}

.main-swiper4 .swiper-pagination-bullet-active {
    opacity: 1;
}

.right-arrow svg {
    position: relative;
    transition: transform 0.2s ease-in-out;
}

.right-arrow:hover svg {
    -webkit-animation: right-arrow 1s infinite ease-in-out;
    animation: right-arrow 1s infinite ease-in-out;
}


@keyframes right-arrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }

    100% {
        transform: translateX(0);
    }
}

.main-swiper5 .swiper-pagination {
    right: 25px !important;
    top: 25px !important;
    bottom: auto !important;
    left: auto !important;
    text-align: right !important;
}


.main-swiper5 .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    opacity: 0.5;
    background: #fff;
    border-radius: 50%;
    --swiper-pagination-bullet-horizontal-gap: 5px;
}

@media (max-width: 767px) {
    .main-swiper5 {
        display: flex;
        flex-direction: column;
    }

    .main-swiper5 .swiper-wrapper {
        height: 0 !important;
        flex: 1 !important;
    }

    .main-swiper5 .swiper-pagination {
        inset: 0 !important;
        position: relative !important;
        display: flex !important;
        justify-content: center !important;
        padding: 5px !important;
        gap: 8px !important;
    }

    .main-swiper5 .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        opacity: 1;
        background: #c6c6c6;
        border-radius: 50%;
        margin: 0 !important;
    }

    .main-swiper5 .swiper-pagination-bullet-active {
        background: #EC0D0D !important;
    }
}

.main-swiper5 .swiper-pagination-bullet-active {
    opacity: 1;
}


.economy-card:after {
    content: "";
    position: absolute;
    z-index: 10;
    inset: 0;
    top: auto;
    height: 40%;
    background: linear-gradient(180deg, transparent 0%, rgb(var(--header-center-bg-dark) / .9) 70%, rgb(var(--header-center-bg-dark)) 100%);
}

.main-swiper6 .swiper-pagination,
.main-swiper7 .swiper-pagination {
    right: 15px !important;
    top: 15px !important;
    bottom: auto !important;
    left: auto !important;
    text-align: right !important;
}

.main-swiper6 .swiper-pagination-bullet,
.main-swiper7 .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    opacity: 1;
    background: #FFFFFF33;
    border-radius: 50%;
    --swiper-pagination-bullet-horizontal-gap: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 0;
    color: white;
}

@media (max-width: 767px) {
    .main-swiper6 .swiper-pagination,
    .main-swiper7 .swiper-pagination {
        right: 8px !important;
        top: 8px !important;
    }

    .main-swiper6 .swiper-pagination-bullet,
    .main-swiper7 .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        --swiper-pagination-bullet-horizontal-gap: 3px;
    }
}

.main-swiper6 .swiper-pagination-bullet-active,
.main-swiper7 .swiper-pagination-bullet-active {
    background: rgb(var(--highlighter));
}


.swiper-manset-2 .swiper-pagination {
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
    bottom: 35px !important;
    gap: 15px;
}

@media (max-width: 1024px) {
    .swiper-manset-2 .swiper-pagination {
        gap: 14px;
        padding-left: 20px;
        padding-right: 20px;
        bottom: 43px !important;
    }
}

.swiper-manset-2 .swiper-pagination .swiper-pagination-bullet {
    flex: 1;
    opacity: .5;
    border-radius: 0;
    height: 1px;
    background: #fff;
    color: #fff;
    font-size: 12px;
    line-height: 33px;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    transition: width .15s linear, opacity .15s linear;
    width: 100%;
}

@media (max-width: 990px) {
    .swiper-manset-2 .swiper-pagination {
        bottom: 34px !important;
        font-size: 11px;
    }

    .swiper-manset-2 .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
        overflow: hidden;
        line-height: 0px;
    }

    .swiper-manset-2 .swiper-pagination .swiper-pagination-bullet-active {
        flex-shrink: 0;
        min-width: 56px;
        line-height: 30px;
    }

}

.swiper-manset-2 .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}


.swiper-manset-right .swiper-pagination {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 0px;
    padding-left: 0;
    bottom: auto !important;
    top: 20px !important;
    left: auto !important;
    right: 20px !important;
    gap: 10px;
    width: 10px !important;

}


.swiper-manset-right .swiper-pagination .swiper-pagination-bullet {
    opacity: .5;
    border-radius: 0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #fff;
    margin: 0 !important;
    position: relative;
}

.swiper-manset-right .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;

}

.swiper-manset-right .swiper-pagination .swiper-pagination-bullet-active:after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid white;

}

.swiper-manset-2 .swiper-slide:after {
    height: 50%;
    top: auto;
    background: linear-gradient(180deg, rgb(var(--header-center-bg-dark) / 0) 0%, rgb(var(--header-center-bg-dark) / 0.7) 50%, rgb(var(--header-center-bg-dark)) 100%);
}
.swiper-manset-3 .swiper-pagination {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    inset: 0 0 0 auto !important;
    width: 50px !important;
    padding: 8px 6px;
    gap: 6px;
}

.dark .swiper-manset-3 .swiper-pagination {
    /*background: #2b2d3e;*/
}

.swiper-manset-3 .swiper-pagination .swiper-pagination-bullet {
    border-radius: 5px;
    flex: 1;
    width: 100%;
    color: #0D223B;
    opacity: 1;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    position: relative;
    font-weight: 600;
    background: transparent;
    max-height: 35px;
}

.dark .swiper-manset-3 .swiper-pagination .swiper-pagination-bullet{
    color:#fff;
}


@media (max-width: 767px) {
    .swiper-manset-3 .swiper-pagination {
        width: auto !important;
        right: 0 !important;
        top: auto !important;
        height: 34px !important;
        flex-direction: row !important;
        border: none !important;
        padding: 7px 10px !important;
        gap: 8px !important;
        justify-content: center;
    }

    .swiper-manset-3 .swiper-pagination .swiper-pagination-bullet {
        font-size: 12px;
        height: auto !important;
        width: 29px !important;
        flex: unset !important;
        padding-bottom: 1px;
    }

}

.swiper-manset-3 .swiper-pagination .swiper-pagination-bullet-active {
    background: rgba(var(--highlighter));
    color: #fff;
}


.swiper-manset-3 .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";
}


.hamburger-opened #eSIjvqbGBp52_to {
    animation: eSIjvqbGBp52_to__to linear 1 normal forwards
}

@keyframes eSIjvqbGBp52_to__to {
    0% {
        transform: translate(11.129034px, 6.07111px)
    }
    100% {
        transform: translate(9px, 5.999999px)
    }
}

.hamburger-opened #eSIjvqbGBp52_ts {
    animation: eSIjvqbGBp52_ts__ts linear 1 normal forwards
}

@keyframes eSIjvqbGBp52_ts__ts {
    0% {
        transform: scale(1, 1)
    }
    100% {
        transform: scale(1.2, 1.4)
    }
}

.hamburger-opened #eSIjvqbGBp54_tr {
    animation: eSIjvqbGBp54_tr__tr linear 1 normal forwards
}

@keyframes eSIjvqbGBp54_tr__tr {
    0% {
        transform: translate(17.135456px, 1.121364px) rotate(0deg)
    }
    54.545455% {
        transform: translate(17.135456px, 1.121364px) rotate(0deg)
    }
    100% {
        transform: translate(17.135456px, 1.121364px) rotate(-40deg)
    }
}

.hamburger-opened #eSIjvqbGBp55_tr {
    animation: eSIjvqbGBp55_tr__tr linear 1 normal forwards
}

@keyframes eSIjvqbGBp55_tr__tr {
    0% {
        transform: translate(5.135456px, 1.121364px) rotate(0deg)
    }
    54.545455% {
        transform: translate(5.135456px, 1.121364px) rotate(0deg)
    }
    100% {
        transform: translate(5.135456px, 1.121364px) rotate(40deg)
    }
}

.hamburger-opened #eSIjvqbGBp56_tr {
    animation: eSIjvqbGBp56_tr__tr linear 1 normal forwards
}

@keyframes eSIjvqbGBp56_tr__tr {
    0% {
        transform: translate(11.145863px, 11.2px) rotate(0deg)
    }
    54.545455% {
        transform: translate(11.145863px, 11.2px) rotate(0deg)
    }
    100% {
        transform: translate(11.145863px, 11.2px) rotate(0deg)
    }
}

.hamburger-opened #eSIjvqbGBp57_tr {
    animation: eSIjvqbGBp57_tr__tr linear 1 normal forwards
}

@keyframes eSIjvqbGBp57_tr__tr {
    0% {
        transform: translate(17.125049px, 0.921364px) rotate(0deg)
    }
    54.545455% {
        transform: translate(17.125049px, 0.921364px) rotate(0deg)
    }
    100% {
        transform: translate(17.125049px, 0.921364px) rotate(40deg)
    }
}

.hamburger-opened #eSIjvqbGBp58_to {
    animation: eSIjvqbGBp58_to__to linear 1 normal forwards
}

@keyframes eSIjvqbGBp58_to__to {
    0% {
        transform: translate(8.375457px, 0.921364px)
    }
    54.545455% {
        transform: translate(5.125049px, 0.921364px)
    }
    100% {
        transform: translate(5.104234px, 0.942222px)
    }
}

.hamburger-opened #eSIjvqbGBp58_tr {
    animation: eSIjvqbGBp58_tr__tr linear 1 normal forwards
}

@keyframes eSIjvqbGBp58_tr__tr {
    0% {
        transform: rotate(0deg)
    }
    54.545455% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(-40deg)
    }
}

.hamburger-opened #eSIjvqbGBp59_ts {
    animation: eSIjvqbGBp59_ts__ts linear 1 normal forwards
}

@keyframes eSIjvqbGBp59_ts__ts {
    0% {
        transform: translate(9px, 6px) scale(1, 1)
    }
    54.545455% {
        transform: translate(9px, 6px) scale(0, 1)
    }
    100% {
        transform: translate(9px, 6px) scale(0, 1)
    }
}


.firstClick:not(.hamburger-opened) #eSIjvqbGBp52_to {
    animation: eSIjvqbGBp52_to__to_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp52_to__to_reverse {
    0% {
        transform: translate(9px, 5.999999px);
    }
    100% {
        transform: translate(11.129034px, 6.07111px);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp52_ts {
    animation: eSIjvqbGBp52_ts__ts_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp52_ts__ts_reverse {
    0% {
        transform: scale(1.2, 1.4);
    }
    100% {
        transform: scale(1, 1);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp54_tr {
    animation: eSIjvqbGBp54_tr__tr_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp54_tr__tr_reverse {
    0% {
        transform: translate(17.135456px, 1.121364px) rotate(-40deg);
    }
    54.545455% {
        transform: translate(17.135456px, 1.121364px) rotate(0deg);
    }
    100% {
        transform: translate(17.135456px, 1.121364px) rotate(0deg);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp55_tr {
    animation: eSIjvqbGBp55_tr__tr_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp55_tr__tr_reverse {
    0% {
        transform: translate(5.135456px, 1.121364px) rotate(40deg);
    }
    54.545455% {
        transform: translate(5.135456px, 1.121364px) rotate(0deg);
    }
    100% {
        transform: translate(5.135456px, 1.121364px) rotate(0deg);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp56_tr {
    animation: eSIjvqbGBp56_tr__tr_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp56_tr__tr_reverse {
    0% {
        transform: translate(11.145863px, 11.2px) rotate(0deg);
    }
    54.545455% {
        transform: translate(11.145863px, 11.2px) rotate(0deg);
    }
    100% {
        transform: translate(11.145863px, 11.2px) rotate(0deg);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp57_tr {
    animation: eSIjvqbGBp57_tr__tr_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp57_tr__tr_reverse {
    0% {
        transform: translate(17.125049px, 0.921364px) rotate(40deg);
    }
    54.545455% {
        transform: translate(17.125049px, 0.921364px) rotate(0deg);
    }
    100% {
        transform: translate(17.125049px, 0.921364px) rotate(0deg);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp58_to {
    animation: eSIjvqbGBp58_to__to_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp58_to__to_reverse {
    0% {
        transform: translate(5.104234px, 0.942222px);
    }
    54.545455% {
        transform: translate(5.125049px, 0.921364px);
    }
    100% {
        transform: translate(8.375457px, 0.921364px);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp58_tr {
    animation: eSIjvqbGBp58_tr__tr_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp58_tr__tr_reverse {
    0% {
        transform: rotate(-40deg);
    }
    54.545455% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.firstClick:not(.hamburger-opened) #eSIjvqbGBp59_ts {
    animation: eSIjvqbGBp59_ts__ts_reverse linear 1 normal forwards;
}

@keyframes eSIjvqbGBp59_ts__ts_reverse {
    0% {
        transform: translate(9px, 6px) scale(0, 1);
    }
    54.545455% {
        transform: translate(9px, 6px) scale(0, 1);
    }
    100% {
        transform: translate(9px, 6px) scale(1, 1);
    }
}

#eSIjvqbGBp59_ts,
#eSIjvqbGBp58_tr,
#eSIjvqbGBp58_to,
#eSIjvqbGBp57_tr,
#eSIjvqbGBp56_tr,
#eSIjvqbGBp55_tr,
#eSIjvqbGBp54_tr,
#eSIjvqbGBp52_ts,
#eSIjvqbGBp52_to {
    animation-duration: 200ms !important;
}


.notification-tabs .active {
    border-color: rgb(var(--highlighter) / .5);
    color: rgb(var(--highlighter));
}

.notification-wrapper .os-scrollbar,
.dropdown-menu .os-scrollbar {
    width: 4px !important;
    right: -4px !important;
    padding: 0 !important;
}

.notification-wrapper .os-scrollbar-handle,
.dropdown-menu .os-scrollbar-handle {
    border-radius: 2px !important;
}

.notification-wrapper .os-scrollbar-track,
.dropdown-menu .os-scrollbar-track {
    right: 4px;
}

.notification-wrapper .os-scrollbar-vertical,
.dropdown-menu .os-scrollbar-vertical {
    top: 15px !important;
}


#single-content a:not(.haber-tavsiye a) {
    color: rgb(var(--highlighter));

}

#single-content a:not(.haber-tavsiye a):hover {
    filter: brightness(1.1);
    transition-duration: 100ms;
}

.likeUnlikeButtons button.active {
    filter: brightness(1.3);
}

.likeUnlikeButtons button.active svg {
    animation: likeUnlikeButtons__active 0.35s ease alternate;
}

@keyframes likeUnlikeButtons__active {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.circ {
    opacity: 0;
    stroke-dasharray: 130;
    stroke-dashoffset: 130;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.tick {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    -webkit-transition: stroke-dashoffset .8s 0.3s ease-out;
    -moz-transition: stroke-dashoffset .8s 0.3s ease-out;
    -ms-transition: stroke-dashoffset .8s 0.3s ease-out;
    -o-transition: stroke-dashoffset .8s 0.3s ease-out;
    transition: stroke-dashoffset .8s 0.3s ease-out;
}

svg.drawn .path {
    opacity: 1;
    stroke-dashoffset: 0;
}


@media (max-width: 1200px) {
    .category-page-items > *:nth-last-child(1):nth-child(3n+1),
    .category-page-items > *:nth-last-child(2):nth-child(3n+1),
    .category-page-items > *:nth-last-child(1):nth-child(3n+2) {
        display: none;
    }
}

@media (max-width: 767px) {
    .category-page-items > *:nth-last-child(1):nth-child(3n+1),
    .category-page-items > *:nth-last-child(2):nth-child(3n+1),
    .category-page-items > *:nth-last-child(1):nth-child(3n+2) {
        display: block;
    }
}


.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


.photoSingleGallery .swiper-pagination-bullet {
    border-radius: 0;
    width: 20px;
    height: 5px;
    background: #fff;
}

.photoSingleGallery .swiper-pagination-bullet-active {
    background: #fff;
}

.gallery-thumbs .swiper-slide:not(.swiper-slide-next) {

    filter: brightness(0.5) grayscale(.5);
    opacity: .9;
}

@media (max-width: 767px) {
    .photoSingleGallery .swiper-pagination-bullet {
        width: 16px;
        height: 3px;
    }
}


.swiper-teyit-category .swiper-pagination {
    left: 21px !important;
    top: 16px !important;
    bottom: auto !important;
    right: auto !important;
    text-align: left !important;
}

.swiper-teyit-category .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 0.5;
    background: #fff;
    border-radius: 50%;
    --swiper-pagination-bullet-horizontal-gap: 4px;
}

@media (max-width: 767px) {
    .swiper-teyit-category .swiper-pagination {
        left: 12px !important;
        top: 7px !important;
    }

    .swiper-teyit-category .swiper-pagination-bullet {
        --swiper-pagination-bullet-horizontal-gap: 3px;
    }
}

.swiper-teyit-category .swiper-pagination-bullet-active {
    opacity: 1;
}

.teyit-status-wrapper.step-1 .teyit-sonuc:after {
    content: "Yanlış";
    color: #F06239;
}

.teyit-status-wrapper.step-2 .teyit-sonuc:after {
    content: "Bir Nebze Yanlış";
    color: #F06239;
}

.teyit-status-wrapper.step-3 .teyit-sonuc:after {
    content: "Kısmen Doğru";
    color: #1ECBB1;
}

.teyit-status-wrapper.step-4 .teyit-sonuc:after {
    content: "Çoğunlukla Doğru";
    color: #1ECBB1;
}

.teyit-status-wrapper.step-5 .teyit-sonuc:after {
    content: "%100 Doğru";
    color: #1ECBB1;
}

.teyit-status-bar > div:nth-child(1) {
    flex-grow: 93;
}

.teyit-status-bar > div:nth-child(2) {
    flex-grow: 201;
}

.teyit-status-bar > div:nth-child(3) {
    flex-grow: 146;
}

.teyit-status-bar > div:nth-child(4) {
    flex-grow: 220;
}

.teyit-status-bar > div:nth-child(5) {
    flex-grow: 128;
}


.teyit-status-wrapper.step-1 .teyit-status-bar > div:nth-child(1):before,
.teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1) > div,
.teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1):before,
.teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1):after,
.teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2) > div,
.teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2):before {
    background-color: #EBD8D6;
    color: rgb(var(--secondary) / 0.8);
}


.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(1) > div,
.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(1):before,
.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(1):after,
.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(2) > div,
.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(2):before,
.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(2):after,
.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(3) > div,
.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(3):before,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(1) > div,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(1):before,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(1):after,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(2) > div,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(2):before,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(2):after,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(3) > div,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(3):before,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(3):after,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(4) > div,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(4):before,
.teyit-status-wrapper.step-5 .teyit-status-bar > div > div,
.teyit-status-wrapper.step-5 .teyit-status-bar > div:before,
.teyit-status-wrapper.step-5 .teyit-status-bar > div:after {
    background-color: #CBEEEB;
    color: rgb(var(--secondary) / 0.8);
}

.teyit-status-wrapper.step-3,
.teyit-status-wrapper.step-4,
.teyit-status-wrapper.step-5 {
    background-color: #1ECBB11A !important;
    border-color: #1ECBB180 !important;
}

.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(1) > div,
.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(1):before,
.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(1):after,
.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(2) > div,
.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(2):before,
.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(2):after,
.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(3) > div,
.dark .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(3):before,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(1) > div,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(1):before,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(1):after,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(2) > div,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(2):before,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(2):after,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(3) > div,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(3):before,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(3):after,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(4) > div,
.dark .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(4):before,
.dark .teyit-status-wrapper.step-5 .teyit-status-bar > div > div,
.dark .teyit-status-wrapper.step-5 .teyit-status-bar > div:before,
.dark .teyit-status-wrapper.step-5 .teyit-status-bar > div:after,
.dark .teyit-status-wrapper.step-1 .teyit-status-bar > div:nth-child(1):before,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1) > div,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1):before,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1):after,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2) > div,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2):before {
    color: rgb(var(--secondary-dark) / .8);
    background-color: #9ec6c3;
}

.dark .teyit-status-wrapper.step-1 .teyit-status-bar > div:nth-child(1):before,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1) > div,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1):before,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(1):after,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2) > div,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2):before {
    background-color: #e3c8c0;
}

.teyit-status-wrapper.step-1 .teyit-status-bar > div:nth-child(1) > div,
.teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2) > div,
.dark .teyit-status-wrapper.step-1 .teyit-status-bar > div:nth-child(1) > div,
.dark .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2) > div {
    color: #F06239;
    background: #F06239;
}

.teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(3) > div,
.teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(4) > div,
.teyit-status-wrapper.step-5 .teyit-status-bar > div:nth-child(5) > div {
    color: #1ECBB1 !important;
    background: #1ECBB1 !important;
}


@media (max-width: 767px) {
    .teyit-status-bar > div:nth-child(5) {
        flex-grow: 140;
    }

    .teyit-status-wrapper.step-1 .teyit-status-bar > div:nth-child(1) > div span,
    .teyit-status-wrapper.step-2 .teyit-status-bar > div:nth-child(2) > div span,
    .teyit-status-wrapper.step-3 .teyit-status-bar > div:nth-child(3) > div span,
    .teyit-status-wrapper.step-4 .teyit-status-bar > div:nth-child(4) > div span,
    .teyit-status-wrapper.step-5 .teyit-status-bar > div:nth-child(5) > div span {
        font-size: 13px !important;
    }
}


#single-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}


#single-content h5, h6 {
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 20px;
    margin-top: 20px;
}

#single-content h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 25px;
    margin-top: 25px;
}

#single-content h3 {
    font-size: 25px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 30px;
    margin-top: 30px;
}

#single-content h2 {
    font-size: 29px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 30px;
    margin-top: 30px;
}

#single-content.single-content-teyit h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 20px;
    margin-top: 30px;

}

#single-content.single-content-teyit h2 {
    font-size: 23px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 20px;
    margin-top: 30px;

}

.teyit-status-wrapper + #single-content.single-content-teyit h3:first-of-type {
    margin-top: 0;
}

#single-content ul,
#single-content ol {
    font-size: 17px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 15px;
    margin-top: 15px;
    list-style: disc;
    list-style-position: inside;
    padding-left: 1em;
}

#single-content ul li:not(ul ul li),
#single-content ol li:not(ul ol li) {
    text-indent: -1.4em;
    padding-left: 1.4em;
}

#single-content > img,
#single-content p > img {
    margin-top: 30px;
    margin-bottom: 30px;
}


#single-content.single-content-teyit h4,
#single-content.single-content-teyit h5,
#single-content.single-content-teyit h6 {
    font-size: 19px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    margin-top: 30px;

}


@media (max-width: 767px) {

    #single-content p {
        font-size: 18px;
        line-height: 26px;
    }

    #single-content h5, h6 {
        font-size: 19px;
        font-weight: 600;
        line-height: 21px;
        margin-bottom: 12px;
        margin-top: 12px;
    }

    #single-content h4 {
        font-size: 20px;
        font-weight: 600;
        line-height: 24px;
        margin-bottom: 12px;
        margin-top: 12px;
    }

    #single-content h3 {
        font-size: 22px;
        font-weight: 600;
        line-height: 29px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    #single-content h2 {
        font-size: 25px;
        font-weight: 600;
        line-height: 33px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    #single-content.single-content-teyit h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    #single-content.single-content-teyit h2 {
        font-size: 21px;
        line-height: 28px;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    #single-content.single-content-teyit h4,
    #single-content.single-content-teyit h5,
    #single-content.single-content-teyit h6 {
        font-size: 17px;
        line-height: 23px;
        margin-bottom: 15px;
        margin-top: 15px;

    }

    #single-content ul,
    #single-content ol {
        font-size: 15px;
        line-height: 25px;
        padding-left: .5em;
    }

    #single-content ul li:not(ul ul li),
    #single-content ol li:not(ul ol li) {
        text-indent: -1.3em;
        padding-left: 1.3em;
        margin-bottom: 5px;
    }

    #single-content > img,
    #single-content p > img {
        margin-top: 20px;
        margin-bottom: 20px;
    }


}

.swiper-lasts .swiper-slide:not(.swiper-slide-active) {
    opacity: .5;
}


.swiper-lasts .swiper-slide:after {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    background: #E34E55;
    position: absolute;
    right: -18px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .swiper-lasts .swiper-slide:not(.swiper-slide-active) {
        opacity: 1;
    }

    .swiper-lasts .swiper-slide:after {
        width: 5px;
        right: -15px;
    }

    .swiper-lasts .swiper-wrapper {
        transition-timing-function: linear;
    }
}

.city-table > div:nth-child(1) {
    border-left-width: 1px;
}

.city-table > div:nth-child(2),
.city-table > div:nth-child(3) {
    border-top-width: 0 !important;
}

.city-table > div {
    border-color: rgb(var(--border));
}

.dark .city-table > div {
    border-color: rgb(var(--border-dark));
}

.fade-effect-mobile > div:nth-last-child(2) > div:last-child {
    z-index: 60;
}

.test:has(a:last-child:nth-child(odd)) ~ div {
    --tw-bg-opacity: .75;
}

.currencyButtons:has(button.active[data-currency='doviz']) ~ .currencyInputs > [data-currency='doviz'],
.currencyButtons:has(button.active[data-currency='altin']) ~ .currencyInputs > [data-currency='altin'],
.currencyButtons:has(button.active[data-currency='kripto']) ~ .currencyInputs > [data-currency='kripto'] {
    display: flex;
}

.currencyButtons:has(button.active[data-currency='aktif']) ~ .currencyInputs > [data-currency='aktif'],
.currencyButtons:has(button.active[data-currency='taslak']) ~ .currencyInputs > [data-currency='taslak'] {
    display: flex;
}


#chart text {
    fill: rgb(var(--primary)) !important;
    font-size: 13px !important;
}

.dark #chart text {
    fill: rgb(var(--secondary-dark)) !important;
    font-size: 13px !important;
}

#chart .highcharts-button-box {
    fill: transparent !important;
}

#chart .highcharts-button text {
    font-size: 15px !important;
}

.highcharts-grid path {
    stroke: rgb(var(--border) / .5) !important;
}

.dark .highcharts-grid path {
    stroke: rgb(var(--border-dark) / .5) !important;
}

.highcharts-axis-line {
    stroke: #2ECC7133 !important
}

.highcharts-axis-line {
    stroke: #2ECC7133 !important;
}

.highcharts-tick {
    stroke: rgb(var(--secondary)) !important;
}

.dark .highcharts-tick {
    stroke: rgb(var(--secondary-dark)) !important;
}

#chart .highcharts-axis-labels text {
    font-size: 12px !important;
}

.dark .highcharts-label-box:not(.highcharts-range-input .highcharts-label-box) {
    fill: rgb(var(--footer-bottom-bg)) !important;
}

#chart .highcharts-button-pressed text {
    fill: rgb(var(--highlighter)) !important;
    font-weight: 500 !important;
}

.dark #chart .highcharts-button-pressed text {
    fill: #fff !important;
}

@media (max-width: 767px) {
    #chart .highcharts-button text {
        font-size: 14px !important;
    }
}


.imsak-aksam-yatsi rect {
    fill: url(#ezanBG2) !important;
}

.imsak-aksam-yatsi ~ svg {
    fill: #2F4358 !important;
}

.gunes-ogle-ikindi rect {
    fill: url(#ezanBG1) !important;
}

.gunes-ogle-ikindi ~ svg {
    fill: #EE8D3F !important;
}

.dark .custom-scrollbar-sidebar .os-scrollbar-track {
    background: rgb(var(--page-bg-odd-dark)) !important;
}


.sehirAramaContainer ~ .dropdown-menu > div {
    height: 300px;
    padding-top: 54px;
}

.sehirAramaContainer ~ .dropdown-menu .sehirArama {
    height: 54px;
    padding: 8px;
}


.dropdown-menu .os-scrollbar-vertical {
    top: 5px !important;
    bottom: 5px !important;
}

.dropdown-menu .os-scrollbar-track {
    right: 9px !important;
}

.swiper-manset-4 .swiper-pagination {
    display: flex;
    justify-content: space-between;
    inset: 0 !important;
    top: auto !important;
    height: 40px !important;
    background: rgb(var(--page-bg-even));
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-bottom: 1px solid rgb(var(--border));
}

.dark .swiper-manset-4 .swiper-pagination {
    background: #2b2d3e;
    border-bottom: 1px solid rgb(var(--border-dark));
}


.swiper-manset-4 .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    flex: 1;
    width: 100%;
    height: 100%;
    background: rgb(var(--page-bg-even));
    color: rgb(var(--secondary));
    opacity: 1;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    position: relative;
    border-left: 1px solid rgb(var(--border));
    border-right: 1px solid rgb(var(--border));
}

.dark .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet {
    background: #2b2d3e;
    color: rgb(var(--secondary-dark));
    border-left: 1px solid rgb(var(--border-dark));
    border-right: 1px solid rgb(var(--border-dark));

}

.swiper-manset-4 .swiper-pagination .swiper-pagination-bullet:first-child {
    border-bottom-left-radius: var(--border-radius) !important;
    border-left: none;
}

.swiper-manset-4 .swiper-pagination .swiper-pagination-bullet:last-child {
    border-bottom-right-radius: var(--border-radius) !important;
    border-right: none;
}

@media (max-width: 767px) {
    .swiper-manset-4 .swiper-pagination {
        height: 20px !important;
    }

    .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet {
        font-size: 12px;
        border-radius: 0 !important;
        font-weight: 300;
    }

}


.swiper-manset-4 .swiper-pagination .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
    top: -5px;
    transform: rotate(270deg);
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.38461 3.03763C8.20513 3.46535 8.20513 4.53465 7.38461 4.96237L1.84615 7.84946C1.02564 8.27718 0 7.74254 0 6.8871V1.1129C0 0.257467 1.02564 -0.277182 1.84615 0.150536L7.38461 3.03763Z' fill='white'/%3E%3C/svg%3E%0A");
}

.dark .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet::after {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.38461 3.03763C8.20513 3.46535 8.20513 4.53465 7.38461 4.96237L1.84615 7.84946C1.02564 8.27718 0 7.74254 0 6.8871V1.1129C0 0.257467 1.02564 -0.277182 1.84615 0.150536L7.38461 3.03763Z' fill='%232b2d3e'/%3E%3C/svg%3E%0A");
}

.swiper-manset-4 .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.dark .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet-active {
    color: #fff;
    filter: brightness(1.4);
}

.swiper-manset-4 .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";

}

.manset-title .top,
.manset-title .bottom {
    color: #fff;
    padding: 0 10px 3px;
    position: relative;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background: var(--manset-title-bg);
}

.manset-title .top {
    color: var(--manset-title-text) !important;
    margin-bottom: -3px;
}

.manset-title .top-wrapper {
    box-shadow: -3px -3px var(--manset-title-shadow);
}

.manset-title .bottom {
    color: #fff;
    box-shadow: 3px 3px var(--manset-title-shadow);
    top: -3px;
}

.manset-title {
    text-shadow: 0 2px 2px #061631;
}

@media (max-width: 767px) {
    .manset-title .bottom {
        box-shadow: 2px 2px var(--manset-title-shadow);
    }

    .manset-title .bottom,
    .manset-title .top {
        padding: 0 8px 2px;
    }

    .manset-title .top-wrapper {
        box-shadow: -2px -2px var(--manset-title-shadow);
    }
}


.right-manset-text-effect > span {
    box-shadow: 0px -3px var(--manset-title-shadow);

}

.right-manset-text-effect span > span {
    border-left: 3px solid var(--manset-title-shadow);
    position: relative;
    padding: 0px 8px 4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    background: var(--manset-title-bg);
    text-shadow: 2px 2px 0px #000000, 5px 4px 0px rgba(0, 0, 0, 0.15);
}


.swiper-manset-5 .swiper-pagination {
    z-index: 30;
    display: flex;
    justify-content: space-between;
    inset: 0 !important;
    top: auto !important;
    height: 48px !important;
    background-color: #fff;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-bottom: 1px solid rgb(var(--border));
}

.dark .swiper-manset-5 .swiper-pagination {
    background: #2b2d3e;
    border-bottom: 1px solid rgb(var(--border-dark));
}


.swiper-manset-5 .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    flex: 1;
    width: 100%;
    height: 100%;
    background: #fff;
    color: rgb(var(--secondary));
    opacity: 1;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    position: relative;
    border-left: 1px solid rgb(var(--border));
    border-right: 1px solid rgb(var(--border));
}

.dark .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet {
    background: #2b2d3e;
    color: rgb(var(--secondary-dark));
    border-left: 1px solid rgb(var(--border-dark));
    border-right: 1px solid rgb(var(--border-dark));

}

.swiper-manset-5 .swiper-pagination .swiper-pagination-bullet:first-child {
    border-bottom-left-radius: var(--border-radius) !important;
    border-left: none;
}

.swiper-manset-5 .swiper-pagination .swiper-pagination-bullet:last-child {
    border-bottom-right-radius: var(--border-radius) !important;
    border-right: none;
}

@media (max-width: 767px) {
    .swiper-manset-5 .swiper-pagination {
        height: 20px !important;
    }

    .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet {
        font-size: 12px;
        border-radius: 0 !important;
        font-weight: 300;
    }

}


.swiper-manset-5 .swiper-pagination .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
    top: -5px;
    transform: rotate(270deg);
    position: absolute;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.38461 3.03763C8.20513 3.46535 8.20513 4.53465 7.38461 4.96237L1.84615 7.84946C1.02564 8.27718 0 7.74254 0 6.8871V1.1129C0 0.257467 1.02564 -0.277182 1.84615 0.150536L7.38461 3.03763Z' fill='white'/%3E%3C/svg%3E%0A");
}

.dark .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet::after {
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.38461 3.03763C8.20513 3.46535 8.20513 4.53465 7.38461 4.96237L1.84615 7.84946C1.02564 8.27718 0 7.74254 0 6.8871V1.1129C0 0.257467 1.02564 -0.277182 1.84615 0.150536L7.38461 3.03763Z' fill='%232b2d3e'/%3E%3C/svg%3E%0A");
}

.swiper-manset-5 .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.dark .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet-active {
    color: #fff;
    filter: brightness(1.4);
}

.swiper-manset-5 .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";

}


.swiper-manset-5 .manset-title .top-wrapper,
.swiper-manset-5 .manset-title .top,
.swiper-manset-5 .manset-title .bottom {
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.swiper-manset-5 .manset-title {
    display: block;
    width: fit-content;
}

.swiper-manset-5 .manset-title .top-wrapper:after,
.swiper-manset-5 .manset-title .top-wrapper:before {
    position: absolute;
    content: "";
    background: var(--manset-title-bg);
    border-radius: 5px;
    inset: 0;
    width: calc(110% + 50px);
    transform: skew(-23deg) translateX(-12%);
    opacity: .5;
    z-index: -1;
}


.swiper-manset-5 .manset-title .top-wrapper:before {
    opacity: .8;
    background: transparent;
    box-shadow: 0px 0px 0px 3px var(--manset-title-bg);

}

.swiper-manset-5 .manset-title {
    backdrop-filter: blur(2px);
}


.swiper-manset-5.swiper-manset-5-right .top-wrapper:before,
.swiper-manset-5.swiper-manset-5-right .top-wrapper:after {
    width: calc(110% + 20px);
    transform: skew(-23deg) translateX(-13%);
}

.swiper-manset-5.swiper-manset-5-right .top-wrapper:before {
    box-shadow: 0px 0px 0px 2px var(--manset-title-bg);
}


.swiper-manset-6 .swiper-pagination {
    display: flex;
    justify-content: space-between;
    inset: 0 !important;
    top: auto !important;
    height: 40px !important;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background: rgb(var(--page-bg-odd));
    gap: 1px;

}

.dark .swiper-manset-6 .swiper-pagination {
    background: rgb(var(--page-bg-odd-dark));
}

.swiper-manset-6 .swiper-pagination .swiper-pagination-bullet {
    flex: 1;
    width: 100%;
    height: calc(100% - 2px);
    box-shadow: 0 1px 2px 0px #11151945;
    border-radius: 0 0 5px 5px;
    background: #fff;
    color: #000;
    opacity: 1;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    position: relative;

}

.dark .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet {
    box-shadow: none;
}

.swiper-manset-6 .swiper-pagination .swiper-pagination-bullet:first-child {
    border-left: 1px solid rgba(17, 21, 25, 0.2);
}

.swiper-manset-6 .swiper-pagination .swiper-pagination-bullet:last-child {
    border-right: 1px solid rgba(17, 21, 25, 0.2);
}


.dark .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet {
    background: #2b2d3e;
    color: rgb(var(--secondary-dark));

}


.swiper-manset-6 .swiper-pagination .swiper-pagination-bullet-active {
    background: rgb(var(--primary));
    color: #fff;
    height: 100% !important;
    box-shadow: none !important;
    border: none !important;
}

.dark .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet-active {
    color: #fff;
    background: #2A9CF6;

}

.swiper-manset-6 .swiper-pagination .swiper-pagination-bullet-active::after {
    content: "";

}


.swiper-manset-6 .manset-title .bg-upper {
    background: var(--manset-title-bg);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding-bottom: 3px;
    position: relative;
}

.swiper-manset-6 .manset-title .bg-up {
    background: linear-gradient(90deg, var(--manset-title-bg) 0%, transparent 600px);
    filter: brightness(2.2);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    padding: inherit;
    padding-left: 10px;
    padding-right: 10px;
}

.swiper-manset-6 .manset-title .bg-up span {
    filter: brightness(.455);
    color: var(--manset-title-text);

}

.swiper-manset-6 .manset-title .first-title {
    box-shadow: -3px -3px var(--manset-title-shadow);

}

.swiper-manset-6 .manset-title .second-title {
    position: relative;
    top: -4px;
}

.swiper-manset-6 .manset-title .second-title .bg-upper {
    box-shadow: 3px 3px var(--manset-title-shadow);
    padding-bottom: 4px;
}

@media (max-width: 767px) {

    .swiper-manset-6 .manset-title .bg-upper {
        padding-bottom: 1px;
    }

    .swiper-manset-6 .manset-title .second-title .bg-upper {
        padding-bottom: 4px;
    }

    .swiper-manset-6 .manset-title .second-title {
        position: relative;
        top: -3px;
    }
}


.swiper-manset-6 .second-title .bg-up span {
    color: #fff;
    font-size: 1.1em;
    text-shadow: 0 0 6px #FFFFFF80;
    line-height: 1.3em;
    position: relative;
    top: 2px;
}

.doviz-animation svg {
    position: relative;
    animation: doviz-animation 1.2s ease-in-out infinite;
    animation-delay: var(--doviz-animation-delay);

}

@keyframes doviz-animation {
    0% {
        bottom: 0;
    }
    50% {
        bottom: 16px;
    }
    100% {
        bottom: 16px;
    }
}


.currencyTableWrapper .os-host-overflow .os-content {
    border-right-width: 16px !important;
}

.puan-durumu-wrapper .os-content {
    border-right-width: 15px !important;
}

@media (max-width: 767px) {
    .custom-scrollbar-parite-select .os-scrollbar-horizontal {
        display: none !important;
    }
}


@media (max-width: 767px) {
    .swiper-manset-6 .swiper-pagination,
    .swiper-manset-5 .swiper-pagination,
    .swiper-manset-4 .swiper-pagination {
        height: 24px !important;
        background: #ececec !important;
        align-items: center !important;
        justify-content: space-evenly;
        color: #032662 !important;
        border-radius: 0 !important;
    }

    .dark .swiper-manset-6 .swiper-pagination,
    .dark .swiper-manset-5 .swiper-pagination,
    .dark .swiper-manset-4 .swiper-pagination {
        background: #282b3b !important;
        color: #282b3b !important;

    }

    .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet,
    .dark .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet,
    .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet,
    .dark .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet,
    .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet,
    .dark .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet {
        background: #c6c6c6 !important;
        color: #c6c6c6 !important;
        width: 8px !important;
        height: 8px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        line-height: 0 !important;
        flex: unset !important;
        border: none !important;
        filter: none !important;
    }

    .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet:after,
    .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet:after,
    .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet:after {
        display: none !important;
    }

    .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet-active,
    .dark .swiper-manset-6 .swiper-pagination .swiper-pagination-bullet-active,
    .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet-active,
    .dark .swiper-manset-5 .swiper-pagination .swiper-pagination-bullet-active,
    .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet-active,
    .dark .swiper-manset-4 .swiper-pagination .swiper-pagination-bullet-active {
        background: #e30a17 !important;
        color: #e30a17 !important;
        box-shadow: 0 0 5px 0px rgba(227, 10, 23, 0.64) !important;
    }

}


.swiper-manset-1,
.swiper-manset-2,
.swiper-manset-3,
.swiper-manset-4,
.swiper-manset-5,
.swiper-manset-6 {
    font-family: var(--manset-font-family) !important;
}

body:has(#single-content) h1,
body:has(#single-content) h2,
#single-content {
    font-family: var(--single-font-family) !important;
}


.live-animation:after {
    animation: live 1.1s linear infinite;
}

@keyframes live {
    0%, 25%, 75%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }

}


button.active-tab {
    border-color: rgb(var(--primary));
}

.dark button.active-tab {
    border-color: #fff;
}

#tab-contents .table-body > div:nth-child(1) {
    border-left-color: #00a83f;
}

#tab-contents .table-body > div:nth-child(2) {
    border-left-color: #d08800;
}

#tab-contents .table-body > div:nth-child(3) {
    border-left-color: #e8c200;
}

#tab-contents .table-body:not(.sidebar-table-body) > div:nth-last-child(1),
#tab-contents .table-body:not(.sidebar-table-body) > div:nth-last-child(2),
#tab-contents .table-body:not(.sidebar-table-body) > div:nth-last-child(3) {
    border-left-color: #dc0000;
}

.dark section:nth-child(even) .dynamicColored {
    background-color: rgb(var(--page-bg-odd-dark)) !important;
}


#single-content blockquote {
    padding: 28px 20px 28px 26px;
    background: #f1f2f3;
    font-style: italic;
    color: #3F4247;
    position: relative;
    min-height: 95px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border-left: 6px solid #3F4247;
}


#single-content blockquote:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8'%3E%3Cpath d='M9.4779 0.6877C10.0788 1.32567 10.4015 2.04167 10.4015 3.20233C10.4015 5.2436 8.9685 7.0737 6.8837 7.9781L6.3629 7.1745C8.3085 6.1218 8.6887 4.7564 8.8407 3.8955C8.5275 4.0575 8.1174 4.1144 7.7154 4.0772C6.6629 3.97962 5.8333 3.11553 5.8333 2.04167C5.8333 0.91409 6.7474 0 7.875 0C8.5009 0 9.0995 0.2861 9.4779 0.6877ZM3.64452 0.6877C4.24547 1.32567 4.56817 2.04167 4.56817 3.20233C4.56817 5.2436 3.13521 7.0737 1.05033 7.9781L0.52959 7.1745C2.47515 6.1218 2.8554 4.7564 3.00739 3.8955C2.69414 4.0575 2.28409 4.1144 1.88209 4.0772C0.82954 3.97962 0 3.11553 0 2.04167C0 0.91409 0.91409 0 2.04167 0C2.66762 0 3.2662 0.2861 3.64452 0.6877Z' fill='%233F4247'/%3E%3C/svg%3E");
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    width: 19px;
    height: 19px;
    background-size: contain;
    background-repeat: no-repeat;
}

.dark #single-content blockquote {
    background: #212331;
    border-color: #ffffffe0;
    color: #ffffffe0;
}

.dark #single-content blockquote:after {
    filter: brightness(0) invert(1);
    opacity: .88;
}

.dark #single-content .wptb-preview-table tr:nth-of-type(2n+1),
.dark #single-content .wptb-table-container table.wptb-preview-table-mobile tr td:nth-of-type(2n+1) {
    background-color: rgb(var(--page-bg-even-dark));
}

.dark .wptb-row.wptb-table-head {
    background-color: #2e3146 !important;
}

@media (max-width: 767px) {
    #single-content table {
        max-width: 100%;
        display: block;
        overflow-x: auto;
        height: 100% !important;
    }

    #single-content blockquote {
        padding: 20px 20px 20px 30px;
        min-height: 90px;
        border-left-width: 3px;
        border-radius: 3px;
    }

    #single-content blockquote:before {
        left: 16px;
    }

    #single-content blockquote:after {
        transform: scale(.8);
        left: 7px;
    }


}


.dark #single-content hr {
    background-color: rgb(var(--border-dark));
    color: rgb(var(--border-dark));
    border-color: rgb(var(--border-dark));
    margin: 15px 0;
}


#single-content > p,
#single-content .article-body > p,
#single-content .detail-text-content > p,
#single-content figure {
    margin: 30px 0 !important;
}

#single-content figure .caption {
    margin-top: 15px;
}

@media (max-width: 767px) {
    #single-content > p,
    #single-content .article-body > p,
    #single-content .detail-text-content > p,
    #single-content figure {
        margin: 20px 0 !important;
    }

    #single-content table {
        font-size: 15px;
    }
}

#single-content table {
    width: 100%;
    margin: -1px 0 0 0;
    @apply text-primary;
    background: #1B3C7405;
}

.dark #single-content table {
    color: #fff;
}

#single-content table,
#single-content table tr,
#single-content table td {
    border: 1px solid #e6e6e6;
}

#single-content table td,
#single-content table th {
    width: 25%;
    padding: 10px 10px;
    vertical-align: middle;
    line-height: 1.4;
}

#single-content table {
    text-align: center;
}

#single-content table tr td:nth-child(1) {
    text-align: left;
}

#single-content a:not(.haber-tavsiye a) {
    text-decoration: none;
    color: #18272F;
    font-weight: 700;
    position: relative;
    word-break: break-all;
}

#single-content a:not(.haber-tavsiye a)::before {
    content: '';
    background-color: hsla(196, 61%, 58%, .75);
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 4px;
    z-index: -1;
    transition: all .3s ease-in-out;
}


.checkbox {
    opacity: 0;
    position: absolute;
}

.checkbox-label {
    background-color: #111;
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fa-moon {
    color: #f1c40f;
}

.fa-sun {
    color: #f39c12;
}

.checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
}

.checkbox:checked + .checkbox-label .ball {
    transform: translateX(24px);
}


#single-content table .ast-1 {
    vertical-align: middle;
    text-align: left !important;
    font-size: 14px !important;
}

#single-content table b {
    color: #1B3C74;
}

#single-content table i {
    color: #006D95;
}

.bg-instagram {
    background: linear-gradient(to top right, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d, #f56040, #f77737, #fcaf45, #ffdc80);
}

.rank-math-breadcrumb, .aioseo-breadcrumbs {
    @apply text-gray-600 dark:text-secondary-dark text-[13px] leading-[16px] mb-[25px] mobile:mb-[15px]
}

.rank-math-breadcrumb .separator, .aioseo-breadcrumb-separator {
    @apply mx-[4px]
}

.tradingview-widget-container:not(.h-full) {
    height: 330px !important;
}

#menu-main-menu li:not(:last-child):not(.menu-item-has-children) a,
#menu-main-menu-1 li:not(:last-child):not(.menu-item-has-children) a {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='20' viewBox='0 0 17 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33562 1.87372C8.43568 1.2534 8.45838 0.624575 8.51892 0C8.61813 1.85841 8.91493 3.74149 9.71537 5.43227C10.3796 6.86862 11.4726 8.11011 12.8532 8.87083C14.1194 9.58135 15.5656 9.90215 17 9.99745C15.4454 10.1259 13.8697 10.4748 12.532 11.3198C11.1094 12.1988 10.055 13.6053 9.45556 15.1668C8.85439 16.7027 8.59207 18.3552 8.52985 20C8.45081 19.418 8.44745 18.8291 8.35244 18.2497C8.07666 16.2202 7.4158 14.1644 6.03858 12.6191C4.85474 11.2679 3.15213 10.4748 1.41253 10.1761C0.945892 10.0825 0.470844 10.0579 0 9.9983C2.0137 9.88768 4.07869 9.26055 5.58287 7.84803C7.22998 6.31212 8.02369 4.0708 8.33562 1.87372Z' fill='%2334495E'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px;
    margin-right: -30px;
    padding-right: 30px;
}

@media (max-width: 767px) {
    #menu-main-menu a,
    #menu-main-menu-1 a {
        background-image: unset !important;
    }
}

#menu-main-menu-1 li:not(:last-child) a {
    background-position: right 20px center;
    background-size: 5px;
}

.dark #menu-main-menu li:not(:last-child):not(.menu-item-has-children) a,
.dark #menu-main-menu-1 li:not(:last-child):not(.menu-item-has-children) a {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='20' viewBox='0 0 17 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.33562 1.87372C8.43568 1.2534 8.45838 0.624575 8.51892 0C8.61813 1.85841 8.91493 3.74149 9.71537 5.43227C10.3796 6.86862 11.4726 8.11011 12.8532 8.87083C14.1194 9.58135 15.5656 9.90215 17 9.99745C15.4454 10.1259 13.8697 10.4748 12.532 11.3198C11.1094 12.1988 10.055 13.6053 9.45556 15.1668C8.85439 16.7027 8.59207 18.3552 8.52985 20C8.45081 19.418 8.44745 18.8291 8.35244 18.2497C8.07666 16.2202 7.4158 14.1644 6.03858 12.6191C4.85474 11.2679 3.15213 10.4748 1.41253 10.1761C0.945892 10.0825 0.470844 10.0579 0 9.9983C2.0137 9.88768 4.07869 9.26055 5.58287 7.84803C7.22998 6.31212 8.02369 4.0708 8.33562 1.87372Z' fill='%23fff'/%3E%3C/svg%3E");
}

.sub-menu a {
    background: unset !important;
}

ins.adsbygoogle {
    display: block;
    text-align: center;
}

.banner {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
    clear: both;
    min-width: auto;
}


.sun-and-moon {
    --icon-fill: rgb(var(--header-center-primary));
    stroke-linecap: round;
}

.dark .sun-and-moon {
    --icon-fill: #fff;
}

.sun-and-moon > :is(.moon, .sun, .sun-beams) {
    transform-origin: center;
}

.sun-and-moon > :is(.moon, .sun) {
    fill: var(--icon-fill);
}

.theme-toggle:is(:hover, :focus-visible) > .sun-and-moon > :is(.moon, .sun) {
    fill: var(--icon-fill-hover);
}

.sun-and-moon > .sun-beams {
    stroke: var(--icon-fill);
    stroke-width: 2px;
}

.theme-toggle:is(:hover, :focus-visible) .sun-and-moon > .sun-beams {
    stroke: var(--icon-fill-hover);
}

.dark .sun-and-moon > .sun {
    transform: scale(1.75);
}

.dark .sun-and-moon > .sun-beams {
    opacity: 0;
}

.dark .sun-and-moon > .moon > circle {
    transform: translateX(-7px);
}

@supports (cx: 1) {
    .dark .sun-and-moon > .moon > circle {
        cx: 17;
        transform: translateX(0);
    }
}

.sun-and-moon > .sun {
    transition: transform .5s cubic-bezier(.5, 1.25, .75, 1.25);
}

.sun-and-moon > .sun-beams {
    transition: transform .5s cubic-bezier(.5, 1.5, .75, 1.25), opacity .5s cubic-bezier(.25, 0, .3, 1);
}

.sun-and-moon .moon > circle {
    transition: transform .25s cubic-bezier(0, 0, 0, 1);
}

@supports (cx: 1) {
    .sun-and-moon .moon > circle {
        transition: cx .25s cubic-bezier(0, 0, 0, 1);
    }
}

.dark .sun-and-moon > .sun {
    transition-timing-function: cubic-bezier(.25, 0, .3, 1);
    transition-duration: .25s;
    transform: scale(1.75);
}

.dark .sun-and-moon > .sun-beams {
    transition-duration: .15s;
    transform: rotateZ(-25deg);
}

.dark .sun-and-moon > .moon > circle {
    transition-duration: .5s;
    transition-delay: .25s;
}

.hamburger-opened svg {
    transform: scale(1.18) !important;
}


.dark .sections section .reversedBG {
    background: rgb(var(--page-bg-even-dark));
}

.dark .sections section:nth-child(even) .reversedBG {
    background: rgb(var(--page-bg-odd-dark));
}

.menu-item .sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 14px 18px;
    font-size: 16px;
    top: 39px;
    line-height: 2.2;
    margin-top: -55px;
    padding-top: 39px;
    transition-duration: .15s;
    isolation: isolate;
    pointer-events: none;
}

@media (min-width: 768px) {

    .menu-item-has-children:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -20px;
        height: 2px;
        background: rgb(var(--highlighter));
        transform-origin: left;
        transform: scaleX(0);
        transition-duration: .15s;
        transition-delay: .2s;
    }

    .menu-item-has-children:hover:before {
        transform: scaleX(1);
    }

    .menu-item-has-children:hover:after {
        transform: scaleY(-1);
        border-color: rgb(var(--highlighter)) transparent transparent transparent;
    }

    .dark .menu-item-has-children:hover:after {
        border-color: rgb(var(--highlighter)) transparent transparent transparent;
    }

    .menu-item-has-children:after {
        content: "";
        position: absolute;
        right: -13px;
        top: 11px;
        width: 0px;
        height: 0px;
        transition: .18s;
        transform-origin: center;
        border-style: solid;
        border-width: 4px 4px 0 4px;
        border-color: #34495E transparent transparent transparent;
    }

    .dark .menu-item-has-children:after {
        border-color: #fff transparent transparent transparent;
    }

    .menu-item .sub-menu:before {
        position: absolute;
        inset: 0;
        top: 28px;
        z-index: -1;
        content: "";
        background: white;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

    .dark .menu-item .sub-menu:before {
        background: #262838;
    }

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children:hover {
        position: relative;
        z-index: 99999999;
    }

    .menu-item-has-children:hover > .sub-menu {
        visibility: visible;
        opacity: 1;
        top: 74px;
        pointer-events: auto;
    }

    .menu-item-has-children:has(.sub-menu:hover) {
        color: rgb(var(--highlighter));
    }

    .menu-item .sub-menu a:not(:hover) {
        color: rgb(var(--header-center-primary));
    }

    .dark .menu-item .sub-menu a:not(:hover) {
        color: #fff;
    }

}

img[loading="lazy"]:not(.symbol img):not(.puan-durumu-wrapper img):not(.logo),
.skeleton-effect {
    background-color: #e2e5e7;
    background-image: linear-gradient(90deg, #ffffff00, #ffffff80, #ffffff00);
    background-size: 13% 100%;
    background-repeat: no-repeat;
    background-position: left -13% top 0;
    animation: shine 1s ease infinite;
}

@keyframes shine {
    to {
        background-position: right -13% top 0;
    }
}

.aioseo-breadcrumb-separator:has(+ .aioseo-breadcrumb:empty) {
    display: none;
}


#single-content *:has(> .zoom) {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
    position: relative;
}

#single-content *:has(> .zoom) p {
    font-size: 13px;
    border-radius: 3px;
    background: #00000080 !important;
    color: #fff !important;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    --i: 34px;
    bottom: var(--i);
    margin-bottom: calc(var(--i) * -1);
    padding: 0 8px;
    line-height: 2.1;
    backdrop-filter: blur(2px);
    white-space: nowrap;
    overflow: hidden;
    max-width: 610px;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    #single-content *:has(> .zoom) {
        max-width: 75%;
    }
}

@media (max-width: 767px) {
    #single-content *:has(> .zoom) p {
        font-size: 12px;
        --i: 30px;
        line-height: 2;
        max-width: calc(100% - (var(--i) / 2));
    }
}

.comment-wrapper .comment-wrapper .replyCommentButton {
    display: none;
}


.comment-wrapper {
    --comment-border: rgb(var(--border) / 0.8);
    --comment-border-full: rgb(var(--border));
    --padding: 26px;
    --avatar: 48px;
    --gap: 13px;
    --border-distance: 10px;
    @media (max-width: 767px) {
        --padding: 20px;
        --avatar: 34px;
        --gap: 10px;
        --border-distance: 8px;
    }
}

.dark .comment-wrapper {
    --comment-border: rgb(var(--border-dark) / 0.8);
    --comment-border-full: rgb(var(--border-dark));
}

.comment {
    &:not(.depth-2) {
        padding: var(--padding) 0;
        border-bottom: 1px solid var(--comment-border);

        &:first-child {
            padding-top: 0;

            &:before {
                top: calc(var(--avatar) + var(--border-distance));
            }
        }
    }
}

.comment-wrapper:has(.comment-wrapper):before {
    content: "";
    position: absolute;
    left: calc(var(--avatar) / 2);
    top: calc(var(--avatar) + var(--padding) + var(--border-distance));
    bottom: calc(var(--padding) - 4px);
    width: 1px;
    background: var(--comment-border);
}

.comment-wrapper .comment-wrapper {
    padding-left: calc(var(--gap) + var(--avatar));
}

.comment-wrapper .comment-wrapper:before {
    content: "";
    position: absolute;
    left: calc(var(--avatar) / 2);
    top: calc(var(--avatar) / 2);
    height: 1px;
    background: var(--comment-border);
    width: calc(var(--gap) - 6px + var(--avatar) / 2);
}


.comment-wrapper .comment-wrapper:after {
    content: "";
    position: absolute;
    left: calc(var(--avatar) / 2);
    top: calc(var(--avatar) / 2);
    width: 8px;
    margin: 1px;
    aspect-ratio: 1;
    background: var(--comment-border-full);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 99px;
}

.brackets {
    @apply before:content-['('] after:content-[')'];
}

.table-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    max-width: 833px;
}

.dark input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.logo{
    width:200px;
    height:60px;
    background-size:contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.flogo{
    width:120px;
    height:auto;
    background-color: transparent !important;
}
.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.border-light{
    border:1px rgba(0,0,0,0.05) solid;
}
.dark .border-light{
    border:1px rgba(255,255,255,0.05) solid;
}
.border-bottom-light{
    border-bottom:1px rgba(0,0,0,0.05) solid;
}
.dark .border-bottom-light{
    border-bottom:1px rgba(255,255,255,0.05) solid;
}
.footermenu li{
    width:25%;
    padding:6px 0;
    @media (max-width: 767px) {
        width:50%;
    }
}
.hamburger-menu{
    border-top:1px rgba(0,0,0,0.05) solid;
    z-index: 999999;
}
.dark .hamburger-menu{
    border-top:1px rgba(255,255,255,0.05) solid;
}
.hamburger-menu li{
    width:100%;
    border-bottom:1px rgba(0,0,0,0.05) solid;
}
.dark .hamburger-menu li{
    border-bottom:1px rgba(255,255,255,0.05) solid;
}
.hamburger-menu li a{
    display:flex;
    width:100%;
    height:50px;
    line-height:50px;
    padding-left:8px;
    background-image: unset !important;
}
.hamburger-menu li a i{
    width:50px;
    height:50px;
    line-height:50px;
    text-align: center;
    border-right:1px rgba(0,0,0,0.05) solid;
    margin-right:8px;
}
.dark .hamburger-menu li a i{
    border-right:1px rgba(255,255,255,0.05) solid;
}
.topmenu ul{
    display:flex;
}
.topmenu ul li{
    display:flex;
    align-items: center;
}
.topmenu ul li:after{
    content:'\f111';
    font-family: 'Font Awesome 6 Free';
    font-size: 6px;
    padding:0 8px;
}
.topmenu ul li:last-child:after{
    display:none;
}
.stickable.fixed{
    position: fixed;
    top:0;
    left:0;
    right:0;
    z-index:99999;
}
.grid-cols-12{
    grid-template-columns:unset;
}
.gallery .gallerytitle{
    cursor:pointer;
}
.gallery .gallerytitle div{
    opacity:0;
}
.gallery .gallerytitle.active div{
    opacity:1;
}
.gallery .icon{
    position:absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    display:flex;
    justify-content: center;
    align-items: center;
}
.gallery .icon i{
    color:#fff;
    width:50px;
    height:50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-size:22px;
}
.gallery .swiper .icon i{
    width:30px;
    height:30px;
    line-height: 30px;
    font-size:14px;
}
.gallerymain{
    margin:0 24px;
}
.gallerymain .galleryleft{
    position:absolute;
    width:24px;
    height:24px;
    left:-30px;
    top:50px;
    font-size:24px;
    line-height: 24px;
    text-align: center;
    cursor:pointer;
    opacity:0.8;
}
.gallerymain .galleryright{
    position:absolute;
    width:24px;
    height:24px;
    right:-30px;
    top:50px;
    font-size:24px;
    line-height: 24px;
    text-align: center;
    cursor:pointer;
    opacity:0.8;
}
.galleryAreavideo{
    display:none;
}
.mask-effect {
    content: "";
    position: absolute;
    inset: -40px;
    pointer-events: none;
    top: 60%;
    opacity: .9;
    background-position: bottom;
    background-size: cover;
    -webkit-mask: linear-gradient(180deg, transparent, black 60%);
    filter: blur(30px) brightness(.25);
}