﻿:root {
    --main-color: #104675;
    --primary-color: #5a9de6;
    --nav-dark: #5f6366;
    --dark-color: #333;
    --dark-color-hover: #202020;
    --dark-primary-color: #447fbf;
    --dark-primary-color-hover: #2c6db5;
    --secondary-color: #838383;
    --secondary-color-hover: #636363;
    --bg-second: #ececec;
    --orange-hover: #d86708;
    --help-btn: #DE5555;
    --help-btn-hover: #C34040;
}

/*------- GENERAL -----*/
body {
    background: #fff;
}

[class*='col-'] {
    padding-left: 16px;
    padding-right: 16px;
}

article:last-child {
    margin-bottom: 0 !important;
}

.navbar {
    padding: 16px;
}

.nav-dark {
    background: var(--nav-dark);
}

.nav-middle {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.cursor-pointer {
    cursor: pointer;
}

.tooltip-inner {
    font-size: 12px;
}

.fs-8 {
    font-size: 8px;
}

.fs-9 {
    font-size: 9px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-28 {
    font-size: 28px;
}

.fs-1rem {
    font-size: 1rem;
}

.page-load {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
}

    .page-load .lds-default {
        display: inline-block;
        position: absolute;
        width: 64px;
        height: 64px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

        .page-load .lds-default div {
            position: absolute;
            width: 5px;
            height: 5px;
            background: var(--primary-color);
            border-radius: 50%;
            animation: lds-default 1.2s linear infinite;
        }

            .page-load .lds-default div:nth-child(1) {
                animation-delay: 0s;
                top: 29px;
                left: 53px;
            }

            .page-load .lds-default div:nth-child(2) {
                animation-delay: -0.1s;
                top: 18px;
                left: 50px;
            }

            .page-load .lds-default div:nth-child(3) {
                animation-delay: -0.2s;
                top: 9px;
                left: 41px;
            }

            .page-load .lds-default div:nth-child(4) {
                animation-delay: -0.3s;
                top: 6px;
                left: 29px;
            }

            .page-load .lds-default div:nth-child(5) {
                animation-delay: -0.4s;
                top: 9px;
                left: 18px;
            }

            .page-load .lds-default div:nth-child(6) {
                animation-delay: -0.5s;
                top: 18px;
                left: 9px;
            }

            .page-load .lds-default div:nth-child(7) {
                animation-delay: -0.6s;
                top: 29px;
                left: 6px;
            }

            .page-load .lds-default div:nth-child(8) {
                animation-delay: -0.7s;
                top: 41px;
                left: 9px;
            }

            .page-load .lds-default div:nth-child(9) {
                animation-delay: -0.8s;
                top: 50px;
                left: 18px;
            }

            .page-load .lds-default div:nth-child(10) {
                animation-delay: -0.9s;
                top: 53px;
                left: 29px;
            }

            .page-load .lds-default div:nth-child(11) {
                animation-delay: -1s;
                top: 50px;
                left: 41px;
            }

            .page-load .lds-default div:nth-child(12) {
                animation-delay: -1.1s;
                top: 41px;
                left: 50px;
            }

@keyframes lds-default {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

/* Owl Prev Next */

.owl-carousel .owl-nav {
    margin-top: 0 !important;
}

    .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
        position: absolute;
        display: flex;
        align-items: center;
        top: 0;
        height: 90%;
    }

    .owl-carousel .owl-nav .owl-prev {
        left: 0;
        font-size: 3em !important;
        font-weight: 200 !important;
        opacity: 0.3;
        margin-left: 5px;
        color: #fff;
        height: 95%;
    }

    .owl-carousel .owl-nav .owl-next {
        right: 0;
        font-size: 3em !important;
        font-weight: 200 !important;
        opacity: 0.3;
        margin-right: 5px;
        color: #fff;
        cursor: pointer;
        height: 95%;
    }

        .owl-carousel .owl-nav .owl-next:hover span, .owl-carousel .owl-nav .owl-prev:hover span {
            opacity: 1;
            background: transparent !important;
            outline: none !important;
        }

        .owl-carousel .owl-nav .owl-next:focus, .owl-carousel .owl-nav .owl-prev:focus {
            background: transparent !important;
            outline: none !important;
        }

.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #9e9e9e87 !important;
    transition: .2s ease all
}

.owl-carousel .item a img, .owl-carousel .item a video {
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* scrollbar */

::-webkit-scrollbar {
    width: 9px;
    height: 6px;
}

/* Track */

::-webkit-scrollbar-track {
    background: rgba(0,0,0, 0.2);
    transition: 0.2s all ease-in-out;
}

    ::-webkit-scrollbar-track:hover {
        background: rgba(0,0,0, 0.5);
        transition: 0.2s all ease-in-out;
    }

/* Handle */

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    transition: .2s all ease-in-out
}

    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(0,0,0, 1);
        transition: .2s all ease-in-out
    }

/* LOADER */

.page-load-status {
    display: none;
    /* hidden by default */
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #777;
}

.loaderIcon {
    -moz-animation: loaderIcon 2s linear infinite;
    -o-animation: loaderIcon 2s linear infinite;
    -webkit-animation: loaderIcon 2s linear infinite;
    animation: loaderIcon 2s linear infinite;
}

@-webkit-keyframes loaderIcon {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loaderIcon {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*------- BUTTONS -----*/
.mtc-16 {
    margin-top: 16px;
}

.nav2 {
    padding: 0;
}

    .nav2 .nav-middle {
        justify-content: flex-start;
    }

    .nav2 li.nav-item {
        margin: 0 10px;
    }

    .nav2 .bekBtn {
        background: transparent;
        border: 1px solid #999;
        color: #999 !important;
        padding: 5px 0;
        border-radius: 8px;
    }

        .nav2 .bekBtn:first-child {
            margin-left: 0;
        }

        .nav2 .bekBtn:hover {
            background: #999;
            color: #fff !important;
            border-radius: 8px;
            border-color: transparent;
        }

.bekBtn {
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: var(--main-color);
    border-radius: 2px;
    padding: 0.3rem;
    width: 100%;
    text-align: center;
    color: #fff !important;
    border: 1px solid transparent;
}

    .bekBtn:hover {
        border: 1px solid var(--primary-color);
    }

    .bekBtn:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: all 650ms;
    }

    .bekBtn:hover:before {
        left: 100%;
    }

.btn-primary {
    background: var(--main-color);
    border: 1px solid var(--main-color);
}

    .btn-primary:hover {
        background: var(--primary-color);
        border: 1px solid var(--main-color);
    }

.btn-dark-primary-color {
    background: var(--dark-primary-color);
    border: 1px solid var(--dark-primary-color);
}

    .btn-dark-primary-color:hover {
        background: var(--dark-primary-color-hover);
        border: 1px solid var(--dark-primary-color);
    }

.btn-secondary {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

    .btn-secondary:hover {
        background: var(--secondary-color-hover);
        border: 1px solid var(--secondary-color);
    }

.btn-dark {
    background: var(--dark-color);
    border: 1px solid var(--dark-color);
}

    .btn-dark:hover {
        background: var(--dark-color-hover);
        border: 1px solid var(--dark-color);
    }

.bekRadius {
    border-radius: 20px;
}

/*---------HOME ---------------*/

#home .homeContainer {
    width: 956px;
    position: relative;
}

#home {
    padding-top: 16px;
}

@media (min-width: 1199px) {
    .container {
        max-width: 1200px !important;
    }
}

.homeContainer .buttons {
    background: #e5e5e5 !important;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

    .homeContainer .buttons .btn-secondary {
        background: #e5e5e5 !important;
        border: none;
        color: #333;
    }

        .homeContainer .buttons .btn-secondary:hover, .homeContainer .buttons .btn-secondary:active, .homeContainer .buttons .btn-secondary:focus {
            background: #AAAAAA !important;
            color: #fff;
        }

/*------- SLIDER  -----*/

.slider {
    width: 100% !important
}

    .slider .owl-dots {
        position: absolute !important;
        width: 100%;
        bottom: 0;
    }

.slider {
    border: 1px solid transparent;
}

    .slider:hover {
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        box-shadow: rgba(0, 0, 0, 0.12) 0px 2px 8px 0px;
    }

/*------- HORIZONTAL ARTICLE -----*/

.horizontal {
    padding-right: 0;
}

    /* .horizontal .hrzFirst {
    width: calc(100% - 232px)
} */

    /* .horizontal article {
    margin: 0.8rem 0;
} */

    .horizontal article a {
        display: block;
        position: relative;
        text-decoration: none !important;
    }

        .horizontal article a .gorsel {
            width: 100%;
            height: 225px;
            transition: 0.2s all ease-in-out;
            border-radius: 8px;
            box-sizing: border-box;
            border: 1px solid transparent;
        }

        .horizontal article a:hover .gorsel {
            border: 1px solid var(--primary-color);
            box-shadow: 0 0 2px #ccc;
        }

        .horizontal article a span {
            position: absolute;
            bottom: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: calc(100% - 2px);
            margin-left: 1px;
            z-index: 2;
            background: var(--main-color);
            color: #fff;
            padding: 2px 10px;
            height: 25px;
            transition: 100ms ease-in-out;
            border: 1px solid transparent;
            border-radius: 0 0 8px 8px;
            box-sizing: border-box;
        }

        .horizontal article a:hover span {
            border: 1px solid var(--primary-color);
            background: var(--primary-color);
        }

            .horizontal article a:hover span:after {
                content: "\f054";
                font-family: "Font Awesome 5 Free";
                font-weight: 600;
                font-size: 0.8rem;
                padding-top: 2px;
            }

/*------- HORIZONTAL NAV ARTICLE -----*/

.horizontal-nav {
    position: sticky;
    padding: 0 0 0 16px;
    top: 10px;
}

    /* .horizontal-nav .nav-scroll {
    position: fixed;
} */

    .horizontal-nav article {
        margin: 0.8rem 0;
        padding-right: 5px
    }

        .horizontal-nav article:nth-child(1) {
            margin-top: 0;
        }

        .horizontal-nav article a {
            display: block;
            position: relative;
            text-decoration: none !important;
        }

            .horizontal-nav article a img, .horizontal-nav article a video {
                min-width: 200px;
                width: 200px;
                height: 100%;
                border: 1px solid #e5e5e5;
                border-radius: 16px;
                padding: 10px;
            }

                .horizontal-nav article a img:hover, .horizontal-nav article a video:hover {
                    box-shadow: rgb(0 0 0 / 12%) 0px 2px 16px 0px
                }

    .horizontal-nav .pt-50 {
        padding-top: 52px !important;
    }

    .horizontal-nav .pt-64px {
        padding-top: 64px !important;
    }

.bekPuan a, .bekPuan2 a {
    background: linear-gradient(164deg, #3e79ad, #104675);
    background-size: cover;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    min-width: 200px;
    position: relative;
    font-weight: 700;
    box-shadow: rgb(0 0 0 / 12%) 0px 2px 16px 0px;
    display: flex;
}

    .bekPuan a .fa-hand-pointer {
        color: #fff;
        animation: click 2s infinite;
    }


@keyframes click {
    0% {
        transform: scale3d(1,1,1)
    }

    20% {
        transform: scale3d(1.3,1.3,1.3)
    }

    40% {
        transform: scale3d(1.3,1.3,1.3)
    }

    60% {
        transform: scale3d(1,1,1)
    }

    100% {
        transform: scale3d(1,1,1)
    }
}

.bekPuan a:before, .bekPuan2 a:before {
    content: "";
    background: url('../images/cekilis.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.5;
}

.bekCekilisBg span a:before {
    background: url('../images/cekilis.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    z-index: 2;
}


.bekPuan span, .bekPuan2 span {
    color: #fff;
    white-space: nowrap;
}

.bekPuan .puan, .bekPuan2 .puan {
    position: absolute;
    right: -7px;
    top: -6px;
    background: #fff;
    border: 1px solid #104675;
    border-radius: 14px;
    min-width: 60px;
    max-width: 110px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #104675;
    font-size: 100%;
    padding-left: 3px;
    padding-right: 3px;
}



.horizontal-nav .cekilisler {
    display: flex;
    flex-direction: column;
}

.horizontal-nav article.bekCekilis {
    margin: 20px 0;
    display: inline-flex;
}


    .horizontal-nav article.bekCekilis a {
        background: #71b0dc;
        background-size: cover;
        padding: 10px 15px;
        border-radius: 8px;
        color: #fff;
        width: 100%;
        font-weight: bold;
        position: relative;
        box-shadow: rgb(0 0 0 / 12%) 0px 2px 16px 0px;
        margin: 10px 0;
    }

        .horizontal-nav article.bekCekilis a:hover {
            color: #f5f5f5;
        }

        .horizontal-nav article.bekCekilis a.cekilis-0::after {
            content: "";
            /* Çekilişlerde kayan araba görselini açmak için yorum satırını aç */
            /* background: url(../images/cekilis1.png); */
            background-repeat: repeat-x;
            opacity: 0.2;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: bekPuan 6s infinite linear;
        }

        .horizontal-nav article.bekCekilis a.cekilis-1::after {
            content: "";
            background: url(../images/cekilis2.png);
            background-repeat: repeat-x;
            opacity: 0.2;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            animation: bekPuan2 6s infinite linear;
        }

    .horizontal-nav article.bekCekilis .puan {
        position: absolute;
        left: 20%;
        top: -26px;
        background: #fff;
        border: 1px solid #71b0dc;
        border-radius: 50%;
        width: 55px;
        height: 54px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #71b0dc;
        z-index: 2;
    }

    .horizontal-nav article.bekCekilis .puan-text {
        position: relative;
        z-index: 2;
    }

.horizontal-nav .text-main {
    color: #71b0dc;
}


.horizontal-nav article.bekCekilis.multi .puan {
    position: relative;
    background: #fff;
    border: 1px solid #71b0dc;
    border-radius: 50%;
    width: 55px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #71b0dc;
}

.horizontal-nav article.bekCekilis.multi a {
    text-align: center;
}

.horizontal-nav article.bekCekilis.multi .puanAlani {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

    .horizontal-nav article.bekCekilis.multi .puanAlani .borderRight {
        display: block;
        border-right: 1px solid #fff;
        width: 3px;
        height: 32px;
    }

    .horizontal-nav article.bekCekilis.multi .puanAlani .puan {
        position: relative;
        background: #fff;
        border: 1px solid #71b0dc;
        border-radius: 50%;
        width: 45px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #71b0dc;
        font-size: 13px;
    }


.horizontal-nav .navbarSag {
    border-radius: 8px;
    padding: 0;
    position: relative;
    z-index: 3;
}

.horizontal-nav .navbar-toggler-icon {
    width: 1rem;
    height: 1rem;
}

.horizontal-nav .navbar-light .navbar-toggler {
    border: none;
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
}

.horizontal-nav #menuRight ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .horizontal-nav #menuRight ul li.nav-item {
        margin: 5px;
    }

        .horizontal-nav #menuRight ul li.nav-item a.bekBtn {
            background: #fff;
            color: #999 !important;
            border: 1px solid #999;
            border-radius: 8px;
            transition: .2s all linear;
            cursor: pointer;
        }

            .horizontal-nav #menuRight ul li.nav-item a.bekBtn:hover {
                color: #fff !important;
                background: #999;
            }


.horizontal-nav #menuRightAkademi ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .horizontal-nav #menuRightAkademi ul li.nav-item {
        margin-top: 0.75rem;
    }

        .horizontal-nav #menuRightAkademi ul li.nav-item a.bekBtn {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 0.3rem 1.7rem;
            cursor: pointer;
        }

            .horizontal-nav #menuRightAkademi ul li.nav-item a.bekBtn img {
                width: 100%;
                height: 100%;
            }



@keyframes bekPuan {
    0% {
        background-position-x: -100%;
    }

    100% {
        background-position-x: 100%;
    }
}

@keyframes bekPuan2 {
    0% {
        background-position-x: 100%;
    }

    100% {
        background-position-x: -100%;
    }
}

.rounded-lg {
    border-radius: 8px;
}
/*------- BOTTOM ARTICLE -----*/

.bottom-area {
    padding-bottom: 16px;
}


    .bottom-area .changeCol.long article {
        width: 474px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
    }

    .bottom-area .changeCol.short article {
        width: 474px;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
    }

    .bottom-area article {
        margin: 0.8rem 0;
    }

        .bottom-area article a {
            display: block;
            position: relative;
            text-decoration: none !important;
            border: 1px solid transparent;
            padding: 10px;
            overflow: hidden;
            padding-bottom: 0;
        }

            .bottom-area article a img {
                width: 100%;
                height: 250px;
                transition: 0.5s all ease-in-out;
                border-radius: 4px;
                transition: .5s all ease
            }

        .bottom-area article:hover a img {
            transform: scale(1.04);
        }

        .bottom-area article a:hover {
            /*border: 1px solid var(--primary-color);*/
            box-shadow: rgb(0 0 0 / 12%) 0px 2px 16px 0px;
            border-radius: 8px
        }

        .bottom-area article a span {
            text-align: center;
            position: relative;
            bottom: 5px;
            display: inline-block;
            width: 100%;
            z-index: 2;
            color: #104675;
            font-weight: 500;
            font-size: 16px;
            transition: 100ms ease-in-out;
            margin-top: 10px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
            transition: 0.3s all ease;
        }

        .bottom-area article a:hover span {
            color: #006fba;
        }


@media (max-width:768px) {
    .bottom-area article a img {
        height: 100%;
    }
}

/*------- NEWS -----*/

#news-btn {
    position: fixed;
    bottom: 35px;
    left: 35px;
    z-index: 7;
    background: #42a5f5;
    box-shadow: 0 0 4px rgb(0 0 0 / 14%), 0 4px 8px rgb(0 0 0 / 28%);
    color: #fff;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    animation: news 2s;
    /* animation-delay: 10s; */
    animation-iteration-count: 25;
}

    #news-btn:hover {
        background: var(--dark-primary-color);
        border: 1px solid var(--primary-color);
        animation: none;
        transition: .3s ease all;
    }

@keyframes news {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 111, 186, 0.8);
        box-shadow: 0 0 0 0 rgba(0, 111, 186, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(0, 111, 186, 0);
        box-shadow: 0 0 0 10px rgba(0, 1111, 1186, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(0, 111, 186, 0);
        box-shadow: 0 0 0 0 rgba(0, 111, 186, 0);
    }
}

#help-btn {
    position: fixed;
    bottom: 115px;
    left: 35px;
    z-index: 5;
    background: var(--help-btn);
    box-shadow: 0 0 4px rgb(0 0 0 / 14%), 0 4px 8px rgb(0 0 0 / 28%);
    color: #fff;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
}

    #help-btn:hover {
        background: var(--help-btn-hover);
        border: 1px solid var(--help-btn-hover);
        animation: none;
        transition: .3s ease all;
    }

/* 
@keyframes news {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.2);
    }
    10% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.2);
    }
    20% {
        transform: scale(1);
    }
} */

.left-news {
    position: fixed;
    bottom: 20px;
    left: 60px;
    width: 20rem;
    z-index: 6;
}

    .left-news .background {
        background: var(--primary-color);
        border-radius: 8px 8px 0 0;
        position: relative;
        padding: 15px;
    }

        .left-news .background h3 {
            color: #fff;
            font-size: 16px;
            margin-bottom: 0;
        }

        .left-news .background .fa-bullhorn {
            color: #fff;
            opacity: 0.2;
            position: absolute;
            right: 8px;
            font-size: 35px;
            top: 0;
            -moz-transform: scaleX(-1);
            -webkit-transform: scaleX(-1);
            -o-transform: scaleX(-1);
            transform: scaleX(-1);
            -ms-filter: fliph;
            filter: fliph;
        }

    .left-news .news-list {
        background: #fff;
        padding: 15px;
        border-radius: 0 0 8px 8px;
    }

        .left-news .news-list .dx-datagrid-headers {
            display: none
        }

        .left-news .news-list .dx-datagrid-rowsview {
            border-top: none
        }

.dx-pager .dx-pages .dx-info {
    font-size: 10px;
}

.left-news .news-list ul {
    max-height: 30rem;
    overflow-y: auto;
}

    .left-news .news-list ul li {
        margin-bottom: 0.8rem;
    }

        .left-news .news-list ul li a {
            color: var(--secondary-color);
            font-size: 14px;
        }

.left-news .news-list li::before {
    content: "\f1ea";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
    color: #e6e6e6;
}

.left-news .news-list a {
    color: var(--dark-color)
}

    .left-news .news-list a:hover {
        color: var(--dark-color-hover)
    }

/* Story Edit */

.stories.carousel .story > .item-link > .item-preview img {
    object-fit: contain;
    background: #fff;
}

.stories.snapgram .story > .item-link > .item-preview {
    background: #fff;
}

#zuck-modal-content .story-viewer .head .item-preview img {
    object-fit: contain;
    background: #fff;
}

#zuck-modal-content .story-viewer .slides .item > .media {
    height: auto;
    max-height: 100%;
    width: 800px;
    object-fit: contain;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    margin: auto;
}



#story .storyContainer {
    padding: 16px 16px 15px;
    position: relative;
}
/*
    #story .storyContainer:hover {
        box-shadow: rgb(0 0 0 / 12%) 0px 2px 16px 0px;
    }*/


.line-height-1-5 {
    line-height: 1.4;
}

.infoCard {
    background: #104675d1;
    color: #fff;
    border: 1px solid #024179;
    border-collapse: separate;
    border-spacing: 15px 50px;
    border-radius: 8px;
}
/*
.infoCard:before {
    content: "";
    width:100%;
    height:100%;
    background: #5a8786;
}*/



/*Ribbos Story */


.ribbonStory {
    font-size: 16px;
    margin-bottom: 0;
    position: absolute;
    left: -11px;
    bottom: 5px;
}

.text {
    display: inline-block;
    padding: 0.5em 1em 0.5em 2em;
    line-height: 1em;
    background: #104675;
    color: #fff;
    position: relative;
}

    .text:before {
        content: '';
        position: absolute;
        border-style: solid;
    }

    .text:after {
        content: '';
        clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
        width: 40px;
        height: 32px;
        background: #104675;
        position: absolute;
        top: 0;
        right: -40px;
    }

.ribbonStory:before {
    top: 0.3em;
    left: 0.2em;
    width: 100%;
    height: 100%;
    border: none;
    background: #104675;
    z-index: -2;
}

.text:before {
    bottom: 100%;
    left: 0;
    border-width: .5em .7em 0 0;
    border-color: transparent #0e2840 transparent transparent;
}


/*#zuck-modal-content .story-viewer .slides .item {
    display: flex;
    align-items: center;
}*/

/* Devex Edit */

#search {
    position: relative;
    width: 100%;
    margin: 0 16px;
}

    #search:hover {
        color: #fff;
    }

    #search.dx-state-focused:hover::before {
        color: #333;
    }

    #search.dx-state-focused::before {
        color: #333;
    }

    #search::before {
        content: "\f0cd";
        font-family: "remixicon";
        font-weight: 300;
        font-size: 1.3rem;
        padding-top: 2px;
        position: absolute;
        right: 10px;
        cursor: pointer;
        z-index: 2;
        color: rgba(0, 0, 0, 0.3)
    }

    #search .dx-placeholder::before {
        padding: 0;
    }

    #search .dx-texteditor-input {
        min-height: auto;
        padding: 0;
        color: rgba(0, 0, 0, 0.3);
        font-weight: 300;
        display: flex;
        align-items: center;
        line-height: 1;
    }

    #search.dx-texteditor.dx-editor-outlined {
        background: transparent;
        padding: 0 15px;
        border: 1px solid rgba(0, 0, 0, 0.3);
        border-radius: 8px !important;
        height: 37px;
    }

        #search.dx-texteditor.dx-editor-outlined:active, #search.dx-texteditor.dx-editor-outlined:focus, #search.dx-texteditor.dx-editor-outlined.dx-state-focused {
            background: rgba(255,255,255, 0.5);
        }

    #search .dx-placeholder {
        color: rgba(0, 0, 0, 0.3);
        font-style: italic;
    }

    #search.dx-texteditor.dx-editor-outlined.dx-state-focused .dx-placeholder {
        color: #333;
    }

    #search .dx-texteditor-input:active, #search .dx-texteditor-input:focus {
        color: #333;
    }

    #search .dx-icon-clear {
        left: -20px;
    }

.backHome {
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 15px;
    transition: .2s all linear;
    min-height: 37px;
}

    .backHome:hover {
        text-decoration: none;
    }

    .backHome.history {
        border: 1px solid rgba(0, 0, 0, 0.3);
        color: #999;
        transition: .2s all linear;
        min-height: 37px;
    }

        .backHome.history:hover {
            background: #999;
            color: #fff !important;
        }

#sortProducts.dx-texteditor.dx-editor-outlined {
    background: transparent;
}

#sortProducts {
    width: 50px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px !important;
    color: rgba(0, 0, 0, 0.3);
}

    #sortProducts:hover, #sortProducts:active, #sortProducts:focus {
        background: #AAAAAA !important;
        color: #fff;
        border: 1px solid #999;
    }

    #sortProducts .dx-dropdowneditor-field-template-wrapper {
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    #sortProducts .dx-texteditor-input {
        width: 50px;
        color: #fff;
    }

    #sortProducts .dx-dropdowneditor-field-template-wrapper {
        padding: 5px 15px;
    }

.dx-dropdowneditor-overlay, .dx-dropdowneditor-overlay .dx-overlay-content {
    width: 200px !important;
}

#sortProducts .dx-texteditor-buttons-container, #sortProducts .product-name {
    display: none;
}

@media (max-width:768px) {
    #search .dx-placeholder {
        max-width: 90%;
    }
}


/*------------Modal Edit ------------- */
#homeModal .modal-body img {
    width: 100%;
}

/*#bekModal .modal-body img {
    width: 100%;
}

#bekModal .modal-body a.modalImage {
    width: 100%;
}
*/


#homeModal2 .modal-body img {
    width: 100%;
}

/*--------------Skeleton-------------*/


.skeleton-story {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 0;
}

    .skeleton-story .storySkeletonContent {
        z-index: 9999;
        background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
        width: 82px;
        height: 82px;
        border-radius: 50%;
        background-size: 400% 400%;
        -webkit-animation: gradient 2s infinite;
        animation: gradient 2s infinite;
        color: transparent;
    }



.skeleton-slider {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 100px;
    z-index: 9999;
    background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
    height: 300px;
    border-radius: 8px;
    background-size: 400% 400%;
    -webkit-animation: gradient 2s infinite;
    animation: gradient 2s infinite;
    color: transparent;
}

.skeleton-alt {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 420px;
}

    .skeleton-alt .altSkeletonContent1 {
        z-index: 9999;
        background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
        width: 600px;
        height: 200px;
        border-radius: 8px;
        background-size: 400% 400%;
        -webkit-animation: gradient 2s infinite;
        animation: gradient 2s infinite;
        color: transparent;
    }

    .skeleton-alt .altSkeletonContent2 {
        z-index: 9999;
        background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
        width: 340px;
        height: 200px;
        border-radius: 8px;
        background-size: 400% 400%;
        -webkit-animation: gradient 2s infinite;
        animation: gradient 2s infinite;
        color: transparent;
    }

.skeleton-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100px;
    right: -216px;
    align-items: flex-end;
}

    .skeleton-right .rightSkeletonContent {
        z-index: 9999;
        background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
        width: 200px;
        height: 200px;
        margin-bottom: 15px;
        border-radius: 8px;
        background-size: 400% 400%;
        -webkit-animation: gradient 2s infinite;
        animation: gradient 2s infinite;
        color: transparent;
    }

.skeleton-puan {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.skeleton-alt-puan {
    display: flex;
    justify-content: space-between;
    width: 75%;
    position: relative;
    margin-top: 20px;
}


    .skeleton-alt-puan .altSkeletonContent2-puan {
        z-index: 9999;
        background: linear-gradient( 90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
        width: 280px;
        height: 380px;
        border-radius: 8px;
        background-size: 400% 400%;
        -webkit-animation: gradient 2s infinite;
        animation: gradient 2s infinite;
        color: transparent;
    }


.skeleton-right-puan {
    display: flex;
    flex-direction: column;
    width: 25%;
    position: relative;
    margin-top: 20px;
    align-items: flex-end;
}

    .skeleton-right-puan .rightSkeletonContent-puan {
        z-index: 9999;
        background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
        width: 260px;
        height: 183px;
        margin-bottom: 15px;
        border-radius: 8px;
        background-size: 400% 400%;
        -webkit-animation: gradient 2s infinite;
        animation: gradient 2s infinite;
        color: transparent;
    }

.skeleton-slider-gecmis {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    margin-top: 10px;
    z-index: 9999;
    background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
    height: 100px;
    border-radius: 8px;
    background-size: 400% 400%;
    -webkit-animation: gradient 2s infinite;
    animation: gradient 2s infinite;
    color: transparent;
}


@-webkit-keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 50% 0%;
    }

    100% {
        background-position: 100% 0%;
    }
}

@media (max-width:768px) {
    .skeleton-story .storySkeletonContent:nth-last-of-type(n+6) {
        display: none;
    }
}

/*----- Haber Detayı -----*/

#news .head .header {
    font-weight: bold;
    font-size: 22px;
}

#news .golge {
    border: 1px solid #e1e1e1;
}

#news .group p {
    margin-bottom: 0
}

#news .backBtn {
    color: var(--main-color);
    font-size: 14px
}

    #news .backBtn:hover a {
        text-decoration: none
    }

.bottomMobile {
    padding: 0 8px;
}

/*------- Story ---------*/

#story .stories.carousel .story > .item-link > .item-preview {
    height: 71px !important;
    max-height: 71px !important;
}

#story .stories.carousel .story {
    width: 71px !important;
    max-width: 71px !important;
}

.stories.carousel .story:first-child {
    margin-left: 6px;
}


.stories.snapgram .story > .item-link > .item-preview {
    background: var(--primary-color);
}

#stories {
    cursor: grab;
}

#home .menuFlex .navbar .collapse, #home .menuFlex .navbar .collapsing {
    position: absolute;
    top: 48px;
    z-index: 5;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}


@media (max-width: 1199px) {
    #home {
        flex-direction: column;
    }


        #home .homeContainer {
            width: 100%;
        }


        #home #sticky.nav-scroll {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            width: 100%;
            align-items: center;
        }

            #home #sticky.nav-scroll article {
                margin: 10px;
            }

                #home #sticky.nav-scroll article.bekPuan:first-child {
                    margin: 20px;
                }

        #home .menuFlex {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

    #bekModal .modal-body a.modalImage img {
        width: 100%;
    }


    .horizontal-nav .navbarSag {
        width: 100%;
    }
}



#ImageModal .puanModalImage {
    max-height: 60vh;
    object-fit: contain;
}

@media (min-width: 768px) and (max-width:992px) {
    .horizontal article a img, .horizontal article a img {
        height: 100% !important;
    }

    .owl-carousel .item a img, .owl-carousel .item a video {
        height: 100%;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    /*---------HOME ---------------*/
    #home .homeContainer {
        width: 100%;
    }
    /*---------HOME ---------------*/
    .horizontal article:first-child {
        margin-top: 2px !important;
    }

    /*    .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*='col'] {
        padding-left: 0;
        padding-right: 0;
    }*/

    .left-news {
        width: 96%;
        top: auto;
        bottom: 60px;
    }

    .owl-carousel .item a img, .owl-carousel .item a video {
        height: 100%;
        object-fit: contain;
    }

    #navbarTop .nav-item {
        margin: 0 auto;
        width: 100%;
    }

        #navbarTop .nav-item .bekBtn {
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

    #main {
        padding: 0;
    }



    .container {
        padding-left: 0;
        padding-right: 0;
    }

    .horizontal article a img {
        border-radius: 0;
    }

        .horizontal article a img:active, .horizontal article a img:hover, .horizontal article a img:focus {
            border-radius: 0;
        }

    .horizontal article a span {
        border-radius: 0;
    }

    .horizontal article {
        margin: 0.1rem 0;
    }

    .bottom-area .changeCol {
        width: 100%;
    }

        .bottom-area .changeCol.long article {
            width: 100%;
        }

        .bottom-area .changeCol.short article {
            width: 100%;
        }

    .left-news {
        bottom: 40px;
        left: 10px;
    }

    #news-btn {
        bottom: 35px;
        left: 15px;
    }

    #help-btn {
        bottom: 115px;
        left: 15px;
    }

    .horizontal-nav {
        padding: 0;
    }

    .horizontal .hrzFirst {
        width: 100%;
    }

    .horizontal-nav article a img, .horizontal-nav article a video {
        height: 200px;
    }

    .bottom-area article a span, .horizontal article a span {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        display: block;
        line-height: 1;
        font-size: 14px;
    }

    #zuck-modal-content .story-viewer .slides .item > .media {
        height: auto;
        width: 100%;
        top: 50%;
        object-fit: contain;
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
        margin: auto;
    }

    #home #sticky.nav-scroll {
        justify-content: center;
    }

    .bottom-area .changeCol.long article {
        margin-left: auto;
        margin-right: auto;
    }

    .bottom-area .changeCol.short article {
        margin-left: auto;
        margin-right: auto;
    }
}

/* OLD */

@media (min-width: 769px) and (max-width:1199px) {
    /*---------HOME ---------------*/
    #home .homeContainer {
        width: 100%;
    }
    /*---------HOME ---------------*/
    .horizontal {
        padding-right: 16px;
    }

    .left-news {
        width: 96%;
        top: auto;
        bottom: 60px;
    }

    /*  .bottom-area .changeCol.long article {
        width: 610px;
    }

    .bottom-area .changeCol.short article {
        width: 310px;
    }*/

    /* .bottom-area article a img {
        height: 100%
    }*/

    .owl-carousel .item a img {
        height: 100%;
        object-fit: contain;
    }

    #navbarTop .nav-item {
        margin: 0 auto;
        width: 100%;
    }

        #navbarTop .nav-item .bekBtn {
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            width: 100%;
        }

    .horizontal article {
        margin: 0.8rem 0;
    }

    .bottom-area article {
        margin: 0.8rem 0;
    }
}

.d-flex-c {
    display: flex;
    justify-content: center;
    align-items: center;
}
/*------------- ÜRÜN SAYFASI-------------------*/
.detay {
    padding: 3rem 0;
    min-height: 100vh;
}

    .detay .container {
        padding: 1rem;
        border-radius: 8px;
    }


    .detay .urun {
        padding: 1rem;
        border: 1px solid #e5e5e5;
        background: #fafafa;
        border-radius: 8px;
        box-shadow: 0 0 12px rgba(204, 204, 204, 0.45);
        width: 350px;
    }

        .detay .urun:hover {
            background: #fafafa;
            box-shadow: 0 0 16px rgba(204, 204, 204, 0.7);
        }


        .detay .urun .urunEkleme {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #333;
            font-size: 0.8em;
        }

    .detay .productPlusMinus {
        display: flex;
        justify-content: center;
        background: #FCFCFC;
        box-shadow: 0 0 10px #e8e8e8;
        align-items: center;
        border-radius: 22px;
        padding: 6px;
    }

        .detay .productPlusMinus a {
            font-size: 16px;
            color: #a9a9a9;
            cursor: pointer;
        }

    .detay input.sepetInput {
        width: 45px;
        height: 25px;
        border: none;
        background: none;
        text-align: center;
        font-size: 18px;
        color: #333;
    }


    .detay .productPlusMinus.inSepet {
        display: flex;
        justify-content: center;
        background: #FCFCFC;
        box-shadow: 0 0 10px #e8e8e8;
        align-items: center;
        border-radius: 22px;
        padding: 6px;
        margin-right: -20px
    }

        .detay .productPlusMinus.inSepet a {
            font-size: 14px;
            color: #a9a9a9;
            cursor: pointer;
        }

        .detay .productPlusMinus.inSepet input {
            width: 35px;
            height: 20px;
            border: none;
            background: none;
            text-align: center;
            font-size: 18px;
            color: #333;
        }

    .detay input::-webkit-outer-spin-button,
    .detay input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .detay input[type=number] {
        -moz-appearance: textfield;
    }


    .detay .row [class*='col-'] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .detay .urun img {
        width: 250px;
        height: 200px;
        object-fit: contain;
        border-radius: 4px;
        cursor: pointer;
    }

    .detay .urun .urun-adi {
        color: #333;
        
        
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        
        min-height: 3.6rem;
    }

    .detay .urun .sepete-ekle {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #e86c1f;
        color: #fff;
        border-radius: 4px;
        padding: 2px 5px;
        box-shadow: rgb(0 0 0 / 12%) 0px 2px 16px 0px;
        transition: .1s all linear;
    }

        .detay .urun .sepete-ekle i {
            transform: translateX(-150px);
            position: absolute;
            font-size: 26px;
            opacity: 0.6;
        }

        .detay .urun .sepete-ekle:hover i {
            transform: translateX(-60px);
            transition: .1s all linear
        }

        .detay .urun .sepete-ekle:hover {
            background: #D25E15;
        }

    .detay .urun:hover {
        text-decoration: none;
        color: #333;
    }


.sepet .card-header .ri-shopping-cart-line {
    position: absolute;
    right: 10px;
    font-size: 1.7rem;
    opacity: 0.2;
    top: 13px;
}

.sepet .card-body.max-screen {
    max-height: 50vh;
    overflow-y: auto;
}

.sepet .sepetUrunleri {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
}

    .sepet .sepetUrunleri:last-child {
        margin-bottom: 0 !important;
    }

    .sepet .sepetUrunleri img {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 4px;
    }

    .sepet .sepetUrunleri .d-block.gorsel p {
        font-size: 12px;
        margin: 3px 0;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-width: 80px;
    }

    .sepet .sepetUrunleri .d-block.urunHk {
        width: 90%;
    }

        .sepet .sepetUrunleri .d-block.urunHk .sepetInput {
            max-width: 65px;
        }

        .sepet .sepetUrunleri .d-block.urunHk p {
            font-size: 12px;
            margin: 0;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }

    .sepet .sepetUrunleri #counterInc {
        height: 25px;
        width: 80px;
        margin: 5px 0;
    }

        .sepet .sepetUrunleri #counterInc input {
            min-height: 10px;
        }

.btn-outline-bekPuan {
    background: #e86c1f;
    color: #fff;
    transition: .2s all linear;
}

    .btn-outline-bekPuan:hover {
        background: #CF611D;
        color: #fff;
    }


.detay #counterIncUrun {
    height: 25px;
    width: 80px;
    margin: 0;
}

    .detay #counterIncUrun input {
        min-height: 10px;
    }

.detay .dx-numberbox-spin-container {
    width: 14px;
}

/*----Çekiliş-----*/

.detay.cekilis .urun a img {
    width: 250px;
    height: 200px;
    border-radius: 4px;
}

.detay.cekilis .puanBilgileri {
    margin-bottom: 0;
    padding: .5rem 0;
    font-weight: bold;
    color: #999;
    text-align: right;
}

/*------Sipariş Geçmişi ----------*/

.siparisGecmisi .siparisGorseli {
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #D9D9D9;
    box-shadow: 0 0 8px #ececec;
}

.siparisGecmisi .inceleBtn {
    width: 2rem;
    height: 2rem;
    background: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.siparisGecmisi .fiyat {
    min-width: 9rem;
    text-align: right;
}

.siparisSilme .dx-checkbox-icon {
    border: 1px solid #bbbbbb;
}

.w-10 {
    width: 10%;
}

.siparisGecmisi .siparisSatiri {
    position: relative;
}

    .siparisGecmisi .siparisSatiri .siparisUrun {
        border-radius: 0;
    }

    .siparisGecmisi .siparisSatiri:last-child .siparisUrun {
        border-radius: 0 0 8px 8px;
    }

.siparisSiliniyor {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    background: linear-gradient(90deg, #fff, #ebeaea, #fff, #ebeaea, #fff, #ebeaea);
    height: 100%;
    border-radius: 8px;
    background-size: 400% 400%;
    -webkit-animation: gradient 2s infinite;
    animation: gradient 2s infinite;
    color: transparent;
}

.siparisBaslik {
    width: 100%;
    border-radius: 8px 8px 0 0;
}

@media (max-width:1199px) {
    .detay .dx-numberbox-spin-container {
        display: none
    }

    .detay #counterIncUrun {
        width: 50%;
    }

    .sepet .sepetUrunleri #counterInc {
        width: 100%;
    }


    .detay .urun img {
        width: 100%;
        height: 100%;
    }

    .detay .urun {
        margin: 0 auto;
        width: 350px;
    }
}

@media (max-width:768px) {
    .detay .urunlerRepeat:first-child, .detay .urunlerRepeat:nth-child(2) {
        margin-top: 1rem;
    }

    .border-md-right {
        border-right: none !important;
    }
}


.img-larged {
    background-size: contain !important;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    cursor: zoom-out;
    animation: fullImage 0.2s;
}

    .img-larged:after {
        content: "\eb97";
        font-family: 'remixicon' !important;
        font-style: normal;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #fff;
        position: fixed;
        top: 50px;
        right: 50px;
        font-size: 32px;
        font-weight: 400;
        opacity: 0.5;
        cursor: pointer;
    }


@keyframes fullImage {
    0% {
        transform: scale3d(0, 0, 1);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

/*Puan Çevirme Ekranı Card*/
.cardPuan {
    background-color: #fff;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 2rem;
    box-shadow: 0px 5px 16px rgba(0,0,0,0.2);
}

    .cardPuan .banner {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        box-sizing: border-box;
    }

        .cardPuan .banner svg {
            background-color: #fff;
            width: 8rem;
            height: 8rem;
            box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
            border-radius: 50%;
            transform: translateY(-20px);
        }

    .cardPuan h2.name {
        text-align: center;
        padding: 0 2rem 0;
        margin: 0;
    }

    .cardPuan .title {
        color: #a0a0a0;
        font-size: 0.85rem;
        text-align: center;
        padding: 0 2rem 1.2rem;
    }

    .cardPuan .actions {
        padding: 0 2rem 1.2rem;
        display: flex;
        flex-direction: column;
        order: 99;
    }

        .cardPuan .actions .follow-info {
            padding: 0 0 1rem;
            display: flex;
        }

            .cardPuan .actions .follow-info h2 {
                text-align: center;
                width: 50%;
                margin: 0;
                box-sizing: border-box;
            }

                .cardPuan .actions .follow-info h2 a {
                    text-decoration: none;
                    padding: 0.8rem;
                    display: flex;
                    flex-direction: column;
                    border-radius: 0.8rem;
                    transition: background-color 100ms ease-in-out;
                }

                    .cardPuan .actions .follow-info h2 a span {
                        color: #1c9eff;
                        font-weight: bold;
                        transform-origin: bottom;
                        transform: scaleY(1.3);
                        transition: color 100ms ease-in-out;
                    }

                    .cardPuan .actions .follow-info h2 a small {
                        color: #afafaf;
                        font-size: 0.85rem;
                        font-weight: normal;
                    }

                    .cardPuan .actions .follow-info h2 a:hover {
                        background-color: #f2f2f2;
                    }

                        .cardPuan .actions .follow-info h2 a:hover span {
                            color: #007ad6;
                        }

        .cardPuan .actions .follow-btn button {
            color: #fff;
            font: inherit;
            font-weight: bold;
            width: 100%;
            border: none;
            padding: 1rem;
            outline: none;
            cursor: pointer;
            box-sizing: border-box;
            border-radius: 1.5rem/50%;
            transition: background-color 100ms ease-in-out, transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
        }

            .cardPuan .actions .follow-btn button:hover {
                background-color: var(--main-color);
                transform: scale(1.1);
            }

            .cardPuan .actions .follow-btn button:active {
                background-color: var(--main-color);
                transform: scale(1);
            }


            .cardPuan .actions .follow-btn button.satinAl {
                background-color: var(--primary-color);
            }

                .cardPuan .actions .follow-btn button.satinAl:hover {
                    background-color: var(--main-color);
                }

                .cardPuan .actions .follow-btn button.satinAl:active {
                    background-color: var(--main-color);
                }

            .cardPuan .actions .follow-btn button.tlyeCevirin {
                background-color: var(--orange);
            }

                .cardPuan .actions .follow-btn button.tlyeCevirin:hover {
                    background-color: var(--orange-hover);
                }

                .cardPuan .actions .follow-btn button.tlyeCevirin:active {
                    background-color: var(--orange-hover);
                }


.border-md-right {
    border-right: 1px solid #dee2e6;
}

.kampanyaKosullari a {
    font-size: 12px;
    border-radius: 6px;
    font-weight: 500;
}




#notfound {
    position: relative;
    height: 100vh;
}

    #notfound .notfound {
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.notfound {
    max-width: 560px;
    width: 100%;
    padding-left: 160px;
    line-height: 1.1;
}

    .notfound .notfound-404 {
        position: absolute;
        left: 0;
        top: 0;
        display: inline-block;
        width: 140px;
        height: 140px;
        background-image: url('../images/emoji.png');
        background-size: cover;
    }

        .notfound .notfound-404:before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-transform: scale(2.4);
            -ms-transform: scale(2.4);
            transform: scale(2.4);
            border-radius: 50%;
            background-color: #f2f5f8;
            z-index: -1;
        }

    .notfound h1 {
        font-size: 65px;
        font-weight: 700;
        margin-top: 0px;
        margin-bottom: 10px;
        color: #151723;
        text-transform: uppercase;
    }

    .notfound h2 {
        font-size: 21px;
        font-weight: 400;
        margin: 0;
        text-transform: uppercase;
        color: #151723;
    }

    .notfound p {
        color: #999fa5;
        font-weight: 400;
    }

    .notfound a {
        display: inline-block;
        font-weight: 700;
        border-radius: 40px;
        text-decoration: none;
        color: #388dbc;
    }

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        width: 110px;
        height: 110px;
    }

    .notfound {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 110px;
    }
}


/*cekilisToplu CSS*/
.draw_wrapper {
    font-family: Montserrat, tahoma, arial, helvetica, sans-serif;
}

.draw_wrapper .accordion {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.draw_wrapper .card {
    position: relative;
}

.draw_wrapper .card-header {
    background-color: #fefefe;
    padding: 7px 0px !important;
}

.draw_images, .draw_name, .draws {
    width: 100%;
}

.draw_wrapper .desc p {
    font-size: 12px;
}

.draw_images img {
    transition: .5s ease;
}

    .draw_images img:hover {
        transform: scale(1.2);
    }

    .card-header button {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
    }

.draw_wrapper .card-header button {
    color: black;
    font-weight: 700;
    display: flex;
    justify-content: center;
}

    .draw_wrapper .card-header button:hover, .draw_wrapper .card-header button:focus {
        text-decoration: none;
    }

#kvkkModal .modal-body iframe {
    min-height: 500px;
}

#kvkkModal .float-left {
    display: flex;
    flex-direction: row !important;
    
}

    #kvkkModal .float-left input {
        margin-right: 5px;
    }



@media (max-width: 1200px) {
    .card-header {
        display: flex;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
    }

    .card .urun img {
        width: 100%;
        height: auto !important;
    }
}

.kvkkCheckBox{
    width:1.55rem;
    height:1.55rem;
    border:5px solid red;
}


/*.draw_wrapper .arrow{
    position: absolute;
    right: 20px;
}
*/
