﻿/*@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600&display=swap");*/
:root {
    --color-black: hsl(0, 0%, 10%);
    --color-white: hsl(0, 0%, 100%);
    --color-darken: hsl(0, 0%, 20%);
    --color-pink-100: hsl(336, 95%, 94%);
    --color-pink-200: hsl(338, 91%, 87%);
    --color-pink-300: hsl(339, 90%, 81%);
    --color-pink-400: hsl(339, 88%, 74%);
    --color-pink-500: hsl(339, 82%, 67%);
    --color-pink-600: hsl(339, 76%, 59%);
    --color-pink-700: hsl(339, 67%, 52%);
    --color-pink-800: hsl(339, 68%, 45%);
    --color-pink-900: hsl(339, 69%, 38%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
body {
    color: black;
}
.slider-single {
    /* min-height: 400px;*/
    /*max-width:1290px;
margin:auto;*/
}

@-webkit-keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}


.brand {
    font-size: 1.625rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -1px;
    color: #006400;
    text-transform: uppercase;
}

.header {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 auto;
    z-index: 100;
    background: var(--color-white);
    /*    -webkit-box-shadow: var(--shadow-medium);
    box-shadow: var(--shadow-medium);*/
    border-bottom: 1px solid #edf1f2;
    border-top: 1px solid #edf1f2;
}

    .header .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

.header-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.header-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 0 0 calc(100% - 110px);
}

.header-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

    .header-item-right .menu-icon {
        font-size: 1.35rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 1rem;
        margin-left: 1rem;
        color: var(--color-black);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

.header .menu > ul > li {
    display: inline-block;
    line-height: 55px;
}

    .header .menu > ul > li > a {
        position: relative;
        font-family: inherit;
        font-size: 14px;
        line-height: 44px;
        display: inline-block;
        font-weight: bold;
        letter-spacing: 1px;
        border: none;
        outline: none;
        color: var(--color-black);
        text-transform: capitalize;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

    .header .menu > ul > li .menu-subs {
        position: absolute;
        width: 100%;
        height: auto;
        padding: 1rem 2rem;
        z-index: 109;
        opacity: 0;
        visibility: hidden;
        border-radius: 0.25rem;
        border-top: 1px solid #006400;
        background: var(--color-white);
        -webkit-box-shadow: var(--shadow-medium);
        box-shadow: var(--shadow-medium);
    }

        .header .menu > ul > li .menu-subs > ul > li {
            line-height: 1;
        }

            .header .menu > ul > li .menu-subs > ul > li > a {
                display: inline-block;
                font-family: inherit;
                font-weight: 500;
                padding: 0.75rem 0;
                border: none;
                outline: none;
                color: var(--color-black);
                text-transform: capitalize;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

    .header .menu > ul > li .menu-column-1 {
        min-width: 16rem;
        max-width: 20rem;
    }

    .header .menu > ul > li .menu-subs.menu-mega {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
            display: block;
            line-height: 25px;
            border-bottom: 1px solid #edf1f2;
            text-align: left;
        }

            .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
                display: inline-block;
                font-family: inherit;
                font-weight: 600;
                padding: 10px 0;
                border: none;
                outline: none;
                color: var(--color-black);
                text-transform: capitalize;
                -webkit-transition: color 0.3s ease;
                transition: color 0.3s ease;
            }

    .header .menu > ul > li .menu-subs.menu-column-4 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 1280px;
        width: 100%;
        padding: 30px 20px;
    }

        .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
            -webkit-box-flex: 0;
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            padding: 0 1rem;
        }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
                font-family: inherit;
                font-weight: 500;
                padding: 0.75rem 0;
                color: #006400;
                text-transform: uppercase;
                -webkit-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
                text-align: center;
            }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
                display: block;
                width: 100%;
                height: auto;
                margin-top: 0.75rem;
                -o-object-fit: cover;
                object-fit: cover;
            }

    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
    .header .menu > ul > li .menu-subs > ul > li > a:hover {
        color: #006400;
    }

    .header-item-right a:hover,
    .header .menu > ul > li:hover > a {
        color: #006400;
    }

.header .menu-mobile-header,
.header .menu-mobile-toggle {
    display: none;
}

#kelime2 {
    width: 570px;
    max-width: 570px;
    border: 1px solid #b3b3b3;
}

@media screen and (max-width: 1300px) {
    #kelime2 {
        width: 488px;
        max-width: 488px;
    }
}

@media screen and (max-width: 1100px) {
    #kelime2 {
        max-width: 388px;
    }
}

@media screen and (min-width: 993px) {

    .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
        border-bottom: none;
        text-align: left;
    }

        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > span {
            cursor: default;
            font-weight: bold;
            color: gray;
            display: block;
            margin-bottom: 5px;
        }

        .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > div {
            padding: 10px 0;
        }

    .menu {
        /* width: 100%;*/
        margin: auto;
    }

    .menu-section {
        margin: 0;
        padding: 0;
        display: flex;
    }

    .header .menu > ul > li {
        display: inline-block;
        line-height: 44px;
        text-align: center;
        /*    text-transform: uppercase;*/
        flex-shrink: 0;
        flex-grow: 1;
        cursor: pointer;
        padding: 0 12px;
    }

        .header .menu > ul > li > a {
            text-align: center;
            text-transform: uppercase;
        }

    .menu-item-has-children > a > .ion-ios-arrow-down {
        display: none;
    }

    .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
        opacity: 1;
        visibility: visible;
    }

    .mobillogo, .header .menu > ul > li.mobillogo {
        display: none;
    }

    .onlymobile, .header .menu > ul > li.onlymobile {
        display: none;
    }

    .header-item-center {
        width: 100%;
        max-width: 1270px;
    }
}

#arama2 {
    max-width: 100%;
    padding: 9px;
    position: absolute;
    z-index: 9999;
}

@media screen and (max-width: 992px) {
    .header {
        border-bottom: none;
        border-top: none;
    }

    #arama2 {
        width: 100%;
        max-width: 100%;
        padding: 0px;
        position: relative;
    }

    #kelime2 {
        width: 100%;
        max-width: 100%;
        height: 44px;
        font-size: 14px;
    }

    .header .menu > ul > li {
        line-height: 50px;
        text-align: left;
    }

    .shopping-cart {
        /*     zoom: .8;*/
        margin-right: 5px;
    }

   /* .globalheadsub {
        display: none;
    }*/
    #head1{
display:none;
    }

    .header-item-left, .header-item-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 40px;
        flex: 0 0 40px;
    }

    .wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0.5rem 0;
    }

    .header .container {
        position: relative;
        padding: 0 5px;
        margin: auto;
    }

    .header .menu-mobile-toggle {
        position: relative;
        display: block;
        cursor: pointer;
        width: 30px;
        height: 35px;
        border: none;
        outline: none;
        background: none;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
        margin: 5px 0 0 5px;
    }

        .header .menu-mobile-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            left: 0;
            border: none;
            outline: none;
            opacity: 1;
            margin-top: 7px;
            border-radius: 0.25rem;
            background: var(--color-black);
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

            .header .menu-mobile-toggle span:nth-child(1) {
                top: 0;
            }

            .header .menu-mobile-toggle span:nth-child(2), .header .menu-mobile-toggle span:nth-child(3) {
                top: 0.5rem;
            }

            .header .menu-mobile-toggle span:nth-child(4) {
                top: 1rem;
            }

    .header-item-right {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 75%;
        min-width: 280px;
        height: 100%;
        z-index: 111;
        overflow: hidden;
        background: var(--color-white);
        -webkit-transform: translate(-100%);
        transform: translate(-100%);
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }

        .header .menu.active {
            -webkit-transform: translate(0%);
            transform: translate(0%);
        }

        .header .menu > ul > li {
            display: block;
            line-height: 1;
            margin: 0;
        }

            .header .menu > ul > li > a {
                display: block;
                line-height: 50px;
                height: 50px;
                line-height: 50px;
                display: inline-block;
                padding: 0 10px;
                border-bottom: 1px solid #edf1f2;
                color: #555;
                font-size: 18px;
                width: 100%;
                overflow: hidden;
            }

                .header .menu > ul > li > a i.ion {
                    position: absolute;
                    font-size: 19px;
                    line-height: 19px;
                    opacity: .7;
                    top: 0;
                    right: -10px;
                    width: 14px;
                    height: 50px;
                    text-align: center;
                    -webkit-transform: rotate(-90deg);
                    transform: rotate(-90deg);
                }

        .header .menu .menu-mobile-header {
            position: relative;
            position: sticky;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            top: 0;
            height: 50px;
            z-index: 110;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            background: var(--color-white);
        }

            .header .menu .menu-mobile-header .menu-mobile-arrow {
                display: none;
                cursor: pointer;
                width: 40px;
                height: 40px;
                text-align: center;
                border: none;
                background-color: white;
                border-right: 1px solid rgba(0, 0, 0, 0.1);
                color: var(--color-black);
                font-size: 19px;
                line-height: 19px;
                opacity: .7;
            }

            .header .menu .menu-mobile-header.active .menu-mobile-arrow {
                display: block;
            }

            .header .menu .menu-mobile-header .menu-mobile-title {
                font-family: inherit;
                font-weight: 500;
                line-height: inherit;
                color: var(--color-black);
                text-transform: capitalize;
            }

            .header .menu .menu-mobile-header .menu-mobile-close {
                font-size: 30px;
                line-height: 3.125rem;
                cursor: pointer;
                width: 40px;
                height: 40px;
                text-align: center;
                border: none;
                background-color: white;
                border-left: 1px solid rgba(0, 0, 0, 0.1);
                color: var(--color-black);
            }

        .header .menu .menu-section {
            height: 100%;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 0 10px;
        }

        .header .menu > ul > li .menu-subs {
            position: absolute;
            display: none;
            top: 0;
            left: 0;
            max-width: none;
            min-width: auto;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 1rem;
            padding-top: 4rem;
            opacity: 1;
            overflow-y: auto;
            visibility: visible;
            -webkit-transform: translateX(0%);
            transform: translateX(0%);
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .header .menu > ul > li .menu-subs.menu-mega {
                position: absolute;
                display: none;
                top: 0;
                left: 0;
                max-width: none;
                min-width: auto;
                width: 100%;
                height: 100%;
                margin: 0;
                padding: 1rem;
                padding-top: 60px;
                opacity: 1;
                overflow-y: auto;
                visibility: visible;
                -webkit-transform: translateX(0%);
                transform: translateX(0%);
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .header .menu > ul > li .menu-subs.active {
                display: block;
            }

            .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
                -webkit-box-flex: 0;
                -ms-flex: 0 0 100%;
                flex: 0 0 100%;
                padding: 0rem;
            }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img {
                    margin-top: 0;
                }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center .title {
                    margin-bottom: 1.25rem;
                }

                .header .menu > ul > li .menu-subs.menu-column-4 > .list-item.text-center:last-child .title {
                    margin-bottom: 0rem;
                }

            .header .menu > ul > li .menu-subs > ul > li > a {
                display: block;
            }

            .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
                margin-bottom: 1rem;
                padding-left: 5px;
            }

                .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
                    display: block;
                    padding-left: 15px;
                    font-size: 18px;
                    color: #555;
                }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.65);
        -webkit-transition: all 0.45s ease-in-out;
        transition: all 0.45s ease-in-out;
    }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
}

.menu-section {
    margin: 0;
    padding: 0;
}

    .menu-section img {
        width: 25px;
        margin-right: 10px;
    }

.user-menu__items img {
    width: 25px;
    margin: 0 8px;
}

.user-menu__items li {
    list-style: none;
    display: inline-block;
    margin-right: 8px;
}

.topsNEW {
    max-width: 1290px;
    margin: auto;
    text-align: center;
}

.bitkititle {
    margin-top: -165px;
    position: relative;
}

.product_resimdiv {
    background-color: white;
    border: 1px solid #fff;
    height: 352px;
}

.magtop {
    background-image: url(../../../icons/magaza2022.png);
    padding: 1px 0 1px 24px;
    background-repeat: no-repeat;
    background-size: contain;
    font-weight: bold;
}

.headtop1 {
    background-image: url(../../../icons/tel2022.png);
    padding: 0 0 0 22px;
    background-repeat: no-repeat;
    background-size: contain;
}

.headtop2 {
    background-image: url(../../../icons/magaza2022.png);
    padding: 0 0 0 22px;
    background-repeat: no-repeat;
    background-size: contain;
}

.catimg {
    width: 87px;
    max-width: 87px;
    /* height: 72px;*/
    /* border: 1px solid #e6e6e6;*/
    border-radius: 50%;
    box-sizing: border-box;
    padding: 2px;
}

-webkit-transform:scale(.825);transform-origin:0 0;-webkit-transform-origin:0 0
}

.lazyload, .lazyloading {
    opacity: 0
}

.lazyloaded {
    opacity: 1;
    -webkit-transition: opacity .3s linear;
    -o-transition: opacity .3s linear;
    transition: opacity .3s linear
}

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

::-webkit-scrollbar-track {
    border: 0 solid rgba(255,255,255,0)
}

    ::-webkit-scrollbar-track:horizontal {
        border-bottom-width: 1px
    }

    ::-webkit-scrollbar-track:vertical {
        border-right-width: 4px
    }

::-webkit-scrollbar-thumb {
    border: 0 solid #fff;
    background-color: rgba(0,0,0,.32);
    border-radius: 6px
}

    ::-webkit-scrollbar-thumb:horizontal:hover {
        background-color: rgba(0,0,0,.52)
    }

    ::-webkit-scrollbar-thumb:vertical:hover {
        background-color: rgba(0,0,0,.52)
    }

.chevron-icon {
    position: static;
    font-size: 9px;
    transform: rotate(90deg);
}

.filtreboxesPARENTactive .chevron-icon {
    transform: rotate(90deg);
}

.chevron-icon {
    position: absolute;
    right: 8px;
    top: 14px;
    font-size: 9px;
    margin: 0;
}

[class*=" icon-"], [class^=icon-] {
    display: inline-block;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    letter-spacing: 0;
    -webkit-font-feature-settings: "liga";
    -moz-font-feature-settings: "liga=1";
    -moz-font-feature-settings: "liga";
    -ms-font-feature-settings: "liga" 1;
    font-feature-settings: "liga";
    -webkit-font-variant-ligatures: discretionary-ligatures;
    font-variant-ligatures: discretionary-ligatures;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.chevron-icon {
    transform: rotate(270deg);
}

.icon-search-444 {
    font-size: 24px;
    line-height: 24px;
    color: white;
    margin: 0 11px;
    display: block;
}

.categoryFilterTitleActive {
    color: #51b549;
}

.filter__dropdown-footer {
    position: static;
    width: auto;
    text-align: right;
    border-top: 1px solid #d1d1d1;
    padding: 15px 20px 0;
    margin: 15px -20px 0;
}

    .filter__dropdown-footer a, .filter__dropdown-footer button {
        font-size: 18px;
        line-height: 1;
        color: #ededed;
        text-align: center;
        background: #51b549;
        padding: 16px;
        display: block;
        border: 0;
        width: 100%;
    }

@media (min-width: 993px) {
    .filter__dropdown-footer a, .filter__dropdown-footer button {
        width: auto;
        display: inline-block;
        padding: 15px 21px;
        border-radius: 5px;
    }
}

.filtdiv {
    margin-top: 20px;
}

.category-order {
    display: flex;
    padding: 12px 0 12px;
}

.filter__selected {
    position: relative;
    /*    overflow: hidden;
    white-space: nowrap;*/
}

.category-order__filter {
    height: 30px;
    display: inline-block;
}

.filter__selected:before {
    content: " ";
    display: table;
}

.filter__selected-tag {
    background: #edf1f2;
    border-radius: 15px;
    height: 30px;
    line-height: 30px;
    color: #555;
    font-size: 14px;
    cursor: text;
    padding: 0 29px 0 10px;
    min-width: 0;
    display: inline-block;
    margin: 0 4px 10px 0;
    position: relative;
}

.filter__selected:after {
    display: table;
    clear: both;
    content: '';
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 20px;
    height: 30px;
    opacity: .95;
    pointer-events: none;
    background-image: linear-gradient(270deg,#fff,rgba(220,215,253,0));
}

.filter__selected-tag span {
    position: absolute;
    top: 7px;
    right: 7px;
    font-size: 6px;
    line-height: 16px !important;
    width: 16px;
    height: 16px;
    background: #fff;
    color: #555;
    cursor: pointer;
}

.filter-responsive-buttons {
    display: none;
}

.superline {
    height: 16px;
    margin: 14px 5px;
    width: 1px;
    background-color: transparent;
    display: inline-block;
}

.hizliincele {
    background-color: #445970;
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
}

.product h3 {
    text-align: center;
    font-size: 18px;
}

.product h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    height: auto;
    display: block;
    padding: 5px 0 0 0;
    margin: 10px 0 4px 0;
}

.sticker-kuryesel {
    background-image: url(../../../icons/ayni-gun.png);
    height: 80px;
    width: 80px;
    border-radius: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: white;
    bottom: 0;
    top: auto;
}

.product a, .products a {
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    padding: 0;
 
}

@media (max-width: 500px) {
    .acResults4 {
        width: calc(100% - 10px);
    }
    .product h3 {
       
        font-size: 16px;
  
    }
    #arama2 {
        display: block;
    }

    .smARA {
        padding-right: 5px;
        position: absolute;
        top: 0;
        left: auto;
        z-index: 6;
        right: 0;
        width: 44px;
        height: 44px;
    }

    .sticker-kuryesel {
        background-image: url(../../../icons/ayni-gun.png);
        height: 57px;
        border-radius: 27px;
        background-size: contain;
        background-repeat: no-repeat;
        background-color: white;
        bottom: 0;
        top: auto;
    }

    .product_resimdiv {
        border: none;
        display: block;
        height: auto;
        height: 201px;
    }

        .product_resimdiv img {
            max-height: 100%;
        }

    .product {
        -webkit-flex: 0 0 calc(50% - 10px);
        -moz-flex: 0 0 calc(50% - 10px);
        -ms-flex: 0 0 calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
        margin: 5px;
    }

    .bitkititle {
        margin-top: -185px;
        position: relative;
    }

    .chevron-icon {
        position: absolute;
        right: 14px;
        top: 20px;
        font-size: 9px;
        margin: 0;
    }

    .filter-responsive-buttons {
        display: block;
        position: relative;
    }

    .filtdiv {
        display: none;
        margin: 0;
        margin-top: -1px;
    }

    .filter__selected-tag span {
        display: none;
    }

    .filter__selected-tag {
        padding: 0 10px 0 10px;
    }
}

.filter__selected-tag-icon {
    background: #edf1f2;
    color: #51b549;
    font-size: .6rem;
    margin: 0 0 0 4px;
    vertical-align: baseline;
    border-radius: 50%;
    text-align: center;
    width: 22px;
    height: 22px;
    line-height: 22px !important;
}

.icon-close:before {
    content: "\e60c";
}

.category-order__filter--clear {
    display: flex;
}

.filter__clean-btn {
    display: inline-block;
    background: #fff;
    height: 30px;
    border: 1px solid #e2e7e9;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    color: #555;
    cursor: pointer;
    padding: 0 16px;
    margin-left: 5px;
}

.category-order__text {
    min-width: 180px;
    text-align: right;
    white-space: nowrap;
    padding: 0 0 0 20px;
    flex-grow: 2;
}

.filter-responsive-buttons {
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px;
    margin: 5px 0 0;
    font-size: 16px;
    color: #555;
    /* line-height: 39px; */
    /* height: 39px; */
    text-align: center;
    padding: 0;
    padding: 17px 20px 14px;
}

.filter-responsive-button__icon {
    font-size: 14px;
    line-height: 39px;
    color: #555;
    margin: 0 5px 0 0;
    HEIGHT: 20px;
    width: 20px;
    /*background-image: url('filtrele.png');
    background-size: contain;*/
}

.mahgizli {
    display: none;
}

.mahallediv1text1 {
    color: #292f36;
    /* background: #f5f5f5;*/
    cursor: pointer;
}

    .mahallediv1text1 p {
        padding: 5px 40px 0;
        margin: 0;
        /*    font-weight: bold;*/
    }

.mahallediv1 {
    border: 1px solid #B3B3B3
}

.placeicon {
    float: left;
    width: 24px;
    margin: 2px 5px;
}

.catnavparent2 a {
    display: inline-block;
    padding: 0 10px;
    font-size: 14px;
    font-weight: normal;
}

.district-search-button__icon-arrow {
    font-size: 11px;
    color: #8e8e8e;
    position: absolute;
    right: 2px;
    top: 0px;
    padding: 14px;
    /*    background: #f5f5f5;*/
}

.district-search__all-info-wrapper {
    padding: 10px 5px;
}

.district-search__icon-magic-wand {
    float: left;
    font-size: 23px;
    color: #aaa;
    margin: 5px 11px 0 7px;
}

input[type=text], input[type=tel], input[type=email], input[type=tel], textarea, select, input.form-control, textarea.form-control {
    font-size: 19px;
}

#gonderbttn {
    margin-top: 15px;
    margin-bottom: 30px;
    width: 386px;
    max-width: 100%;
    font-size: 24px;
    height: 60px;
    font-family: 'tazebook2', sans-serif;
}

.bloklist {
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
}

::-webkit-input-placeholder { /* Edge */
    color: #ccc
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ccc
}

::placeholder {
    color: #ccc
}

.sepetmain {
    max-width: 1016px;
    width: 100%;
    margin: auto;
}

.SEPETSOL {
    padding: 10px;
    /* background-color: #f4f4f4; */
    color: black;
    width: calc(66% - 10px);
    margin: 5px;
    float: left;
}

.SEPETSAG {
    padding: 10px;
    color: black;
    width: calc(33% - 10px);
    margin: 5px;
    margin-top: 15px;
    float: left;
    border-radius: 6px;
    border: 2px solid #edf1f1;
}

.yenibitki {
    text-align: center;
    font-size: 33px;
    padding: 0 30px;
}

#superpagesnav a {
    display: inline-block;
    padding: 5px 12px;
    height: 40px;
    width: 120px;
    border-radius: 10px;
    text-align: center;
    margin: 5px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-origin: content-box;
    background-color: white;
}

.super0 {
    background-image: url('../../../resimler_kategori/taze-cicek.png?v=351');
}

.super627 {
    background-image: url('../../../resimler_kategori/taze-cicek-pro.png?v=351');
}

.super438 {
    background-image: url('../../../resimler_kategori/taze-bitki.png?v=351');
}

.super425 {
    background-image: url(../../../resimler_kategori/hediye.png?v=351);
}

#superpagesnav .superpagesactive0 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #f3f7fe;
    -webkit-box-shadow: inset 0 0 2px rgba(243, 247, 254, 0.7), inset 0 0 2px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
    box-shadow: inset 0 0 2px rgba(243, 247, 254, 0.7), inset 0 0 2px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
}

#superpagesnav .superpagesactive627 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #fefdeb;
    -webkit-box-shadow: inset 0 0 2px rgba(254, 253, 235, 0.7), inset 0 0 2px rgba(254, 253, 235, 0.5), inset -1px 0 1px rgba(254, 253, 235, 0.5), inset 1px 0 1px rgba(254, 253, 235, 0.5);
    box-shadow: inset 0 0 2px rgba(254, 253, 235, 0.7), inset 0 0 2px rgba(254, 253, 235, 0.5), inset -1px 0 1px rgba(254, 253, 235, 0.5), inset 1px 0 1px rgba(254, 253, 235, 0.5);
}

#superpagesnav .superpagesactive438 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #f3fdf8;
    -webkit-box-shadow: inset 0 0 2px rgba(243, 253, 248, 0.7), inset 0 0 2px rgba(243, 253, 248, 0.5), inset -1px 0 1px rgba(243, 253, 248, 0.5), inset 1px 0 1px rgba(243, 253, 248, 0.5);
    box-shadow: inset 0 0 2px rgba(243, 253, 248, 0.7), inset 0 0 2px rgba(243, 253, 248, 0.5), inset -1px 0 1px rgba(243, 253, 248, 0.5), inset 1px 0 1px rgba(243, 253, 248, 0.5);
}

#superpagesnav .superpagesactive425 {
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid #e9edfd;
    -webkit-box-shadow: inset 0 0 2px rgba(233, 237, 253, 0.7), inset 0 0 2px rgba(233, 237, 253, 0.5), inset -1px 0 1px rgba(233, 237, 253, 0.5), inset 1px 0 1px rgba(233, 237, 253, 0.5);
    box-shadow: inset 0 0 2px rgba(233, 237, 253, 0.7), inset 0 0 2px rgba(233, 237, 253, 0.5), inset -1px 0 1px rgba(233, 237, 253, 0.5), inset 1px 0 1px rgba(233, 237, 253, 0.5);
}
.superpages {
    /*  background-color: #e5e5e5;
    border-bottom: 2px solid #f7f7f7;*/
}

    .superpages:hover {
        /*  background-color: #8e8e8e;*/
    }

/*.superpagesactive {
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
    box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
}*/
#superpagesnav {

    padding: 2px;
    background: white;
    border-radius: 70px;

}
    #superpagesnav .superpagesactive {
        background-color: #fff;
        border-radius: 50px;
        border: 1px solid #f3f7fe;
        -webkit-box-shadow: inset 0 0 1px rgba(243, 247, 254, 0.7), inset 0 0 1px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
        box-shadow: inset 0 0 1px rgba(243, 247, 254, 0.7), inset 0 0 1px rgba(243, 247, 254, 0.5), inset -1px 0 1px rgba(243, 247, 254, 0.5), inset 1px 0 1px rgba(243, 247, 254, 0.5);
    }

.superpagesactive2 {
    background-color: #fff;
    -webkit-box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
    box-shadow: 5px 5px 12px -4px rgba(0,0,0,0.63);
}

 

.globalhead {
    background: rgb(225, 248, 231);
    border-bottom: 0;
}

#preh {
    background: #f7f7f7;
    /*   min-height: 10px;*/
}

.col-md-4 > a > img {
    border-radius: 12px;
}

@media (max-width: 500px) {
    .superline {
        height: 16px;
        margin: 10px 5px;
        width: 1px;
        background-color: #8E8E93;
        display: inline-block;
    }

    #superpagesnav {
        text-align: center;
    }
    /*   .col-xs-4 {
        width: 33.333%;
        padding-left: 10px;
        padding-right: 10px;
    }*/
    .catnavparent2 a {
        display: inline-block;
        padding: 0 6px;
        font-size: 12px;
        font-weight: normal;
    }

    .globalhead {
        background: #fff;
        border-bottom: 0;
    }

    .globalheadsub {
        /*background: #f7f7f7;*/
        border-radius: 8px;
        margin: 0px;
        padding: 0px;
    }

    .globalhead2 {
        display: none;
    }

    .mobillogo {
        display: inline-block;
        width: 133px;
        max-width: 100%;
        margin-top: 8px;
    }

    .mobillogo2 {
        display: inline-block;
        width: auto;
        max-height: 35px;
        max-width: 100%;
        margin-top: 4px;
    }

    .header {
        border-top: none;
    }

    #superpagesnav a {
        display: inline-block;
        padding: 4px 8px;
        height: 30px;
        width: calc(25% - 8px);
        border-radius: 10px;
        text-align: center;
        margin: 4px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-origin: content-box;
    }

    .globalhead1, .globalhead2 {
        width: 100%;
        padding: 5px;
    }

    .yenibitki {
        text-align: center;
        font-size: 23px;
        padding: 0 5px;
    }

    .SEPETSOL {
        padding: 10px;
        /* background-color: #f4f4f4; */
        color: black;
        width: calc(100% - 5px);
        margin: 5px;
        float: left;
    }

    .SEPETSAG {
        padding: 10px;
        color: black;
        width: calc(100% - 20px);
        margin: 5px;
        margin-top: 35px;
        float: left;
        border-radius: 6px;
        border: 2px solid #edf1f1;
    }
}

.formdiv {
    position: relative;
}

.form-group__show-type {
    position: absolute;
    top: 2px;
    right: 0;
    width: 45px;
    height: 45px;
    margin: 0;
    cursor: pointer;
    font-size: 26px;
    text-align: center;
}

    .form-group__show-type:before {
        position: absolute;
        right: 14px;
        top: 14px;
    }

h3.yenigelen, h2.yenigelen {
    font-size: 33px;
    margin: 35px 0 30px 0;
    padding: 0 10px;
}

.product h3 {
    overflow: hidden;
}

.red.btn {
    color: #FFFFFF;
    background-color: #d84a38;
    border-radius: 6px;
    max-width: 265px;
    font-size: 16.5px;
    padding: 6px 20px;
    height: 50px;
    font-family: 'tazebook2', sans-serif;
    line-height: 40px;
}





.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

    .slick-list:focus {
        outline: 0
    }

.slick-slider .slick-list {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-slide {
    /*display: none;*/
    float: left;
    height: 100%;
    min-height: 1px;
    text-align: center;
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block;
    margin: auto;
}

.slick-next, .slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    padding: 0;
    -webkit-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    transform: translate(0,-50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0
}

    .slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
        color: transparent;
        outline: 0;
        background: 0 0
    }

        .slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
            opacity: 1
        }

    .slick-prev:before, .slick-next:before {
        font-family: 'FontAwesome';
        font-size: 37px;
        line-height: 1;
        opacity: .75;
        color: #445970;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: "\f104"
}

[dir=rtl] .slick-prev:before {
    content: "\f105"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: "\f105"
}

[dir=rtl] .slick-next:before {
    content: "\f104"
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer
    }

        .slick-dots li button {
            font-size: 0;
            line-height: 0;
            opacity: 0;
            display: block;
            width: 20px;
            height: 20px;
            padding: 5px;
            cursor: pointer;
            color: transparent;
            border: 0;
            outline: 0;
            background: 0 0
        }

            .slick-dots li button:focus, .slick-dots li button:hover {
                outline: 0
            }

                .slick-dots li button:focus:before, .slick-dots li button:hover:before {
                    opacity: 1
                }

            .slick-dots li button:before {
                font-family: slick;
                font-size: 6px;
                line-height: 20px;
                position: absolute;
                top: 0;
                left: 0;
                width: 20px;
                height: 20px;
                content: '•';
                text-align: center;
                opacity: .25;
                color: #000;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale
            }

        .slick-dots li.slick-active button:before {
            opacity: .75;
            color: #000
        }

.slider-single .slick-list {
    height: 100%
}

.slider-single .slick-list {
    width: 100%
}

.slider-single .slick-dots {
    bottom: .625rem;
    list-style: none;
    margin: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

@media screen and (min-width:48em) {
    .slider-single .slick-dots {
        bottom: .9375rem
    }
}

.slider-single .slick-dots li {
    background-color: transparent;
    border-radius: .625rem;
    border: 1px solid #666;
    cursor: pointer;
    display: inline-block;
    height: 12px;
    margin: 0 .3125rem;
    text-indent: -99999px;
    width: 12px
}

    .slider-single .slick-dots li.slick-active {
        background: #e6e6e6
    }

.slider-single .slider-image {
    background-position: center center;
    background-size: cover;
    height: 100%;
    position: relative
}

.mahallesec {
    margin: 0;
    background-color: #FFFFFF;
}

#mahalleparent {
    width: 100%;
    border-radius: 5px;
    padding: 5px;
    background-color: #FFFFFF;
    max-width: 1290px;
    margin: auto;
    padding: 15px 0;
}

.analogoIMG {
    max-width: 150px;
    display: block;
    float: left;
    margin-bottom: 10px;
    margin-right: 50px;
}

.analogoIMG2 {
    max-width: 150px;
    display: block;
    float: left;
    margin-right: 50px;
    max-height: 60px;
    margin: 10px;
    margin-right: 50px;
}

.ecommerce .breadcrumb h1 {
    font: 13px 'tazebook2',sans-serif;
    font-size: 13px;
    text-align: left;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: auto;
    margin: auto;
    display: inline;
}

.catnavparent2 {
    max-width: 1290px;
    margin: 10px auto 5px auto;
    display: none;
    width: calc(100% - 50px);
}

#emaillisttext {
    display: inline-block;
    padding-top: 1px;
    padding-bottom: 1px;
    height: 24px;
    font-size: 16px;
    width: 230px;
    border: 1px solid #e5e5e5;
    padding: 6px 12px;
}

.ebtn {
    display: inline-block;
    cursor: pointer;
    background-color: white;
    height: 24px;
    width: 37px;
    padding-top: 5px;
}

.topsNEW {
    max-width: 1290px;
    margin: auto;
    text-align: center;
}

.ccdiv {
    width: 60%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 35px;
}

.installment-details {
    width: 40%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-left: 5px;
    padding-right: 5px;
}

    .installment-details .installment-table label, .payment__outofstock .alert__body, .preliminary-info__confirmation label p {
        margin-bottom: 0
    }

.payment__outofstock .icon-warning {
    position: relative;
    bottom: 2px
}

.payment__discount-item-error {
    padding: 10px;
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
    margin-top: 10px;
    border-radius: 4px;
    text-align: left;
    font-size: 14px
}

    .payment__discount-item-error .icon-info {
        margin-top: -3px
    }

.showInstallmentABText .installment-details-text {
    display: flex
}

.total-price {
    width: 96%;
    height: 130px;
    margin-top: 0;
    border-radius: 4px;
    border: 2px solid #e2e7e9;
    background-color: #edf1f2;
}

.total-price {
    position: relative;
    width: 100%;
    padding: 0 1%;
    margin: 0px auto
}

.total-price__amount {
    display: block;
    color: #51b549;
    font-size: 23px
}

/*   .total-price__amount:before {
        content: ":";
        font-size: 18px;
        color: #000;
        margin-right: 3px
    }*/

.total-price__row {
    text-align: center;
    font-size: 18px;
    margin-top: 23px;
    line-height: 32px
}

.total-price-ab {
    display: none;
    height: inherit
}

.installment-details-text {
    display: none;
    align-items: center;
    margin-bottom: 10px;
    color: #3597ec
}

    .installment-details-text span[class^=icon] {
        font-size: 11.5px
    }

.installment-details .installment-table {
    display: none;
    width: 100%;
    position: absolute;
    background-color: #fff;
    margin: 0 0 0px;
    border-collapse: separate;
    border: 2px solid #e2e7e9;
    border-radius: 4px
}

.installment-details .installment-table__cell {
    border-left: 2px solid #e2e7e9;
    border-top: 2px solid #e2e7e9;
}

    .installment-details .installment-table__cell:first-child {
        border-left: none
    }

.installment-details .installment-table__row:hover {
    cursor: pointer
}

.installment-details .installment-table__row.is-active {
    background-color: #edf1f2;
    color: #51b549
}

.installment-details .installment-table__row td {
    padding: 10px;
    line-height: 100%;
    text-align: center
}

    .installment-details .installment-table__row td:first-child {
        text-align: left;
    }

.installment-details .installment-table__row th {
    padding: 6px 0;
    text-align: center
}

    .installment-details .installment-table__row th:first-child {
        padding-left: 0;
        padding-right: 0;
        text-align: center
    }

.installment-details thead .installment-table__cell {
    border-top: none
}

.installment-details thead .installment-table__row {
    background-color: #edf1f2
}

#sozlesmemetni {
    float: left;
    margin: 10px 10px 20px 10px;
}

#ccform {
    padding: 10px 0 30px 0px;
    FLOAT: left;
    width: 100%;
    height: 300px;
}

.odebutonCC {
    display: block;
    background-color: #51b549;
    border-radius: 6px;
    font-family: 'tazebook2', sans-serif;
    line-height: 30px;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 1px;
    float: left;
    width: 300px;
    text-align: center;
}

    .odebutonCC:hover {
        color: white;
        background-color: #357730;
    }

.gorsellist {
    display: block;
    max-width: 1290px;
    margin: auto;
    overflow: overlay;
    height: auto;
}

    .gorsellist > a {
        padding: 10px 0px;
        display: inline-block;
        width: 25.4%;
        float: left;
    }

        .gorsellist > a:nth-child(2) {
            display: inline-block;
            padding: 10px 15px;
            width: 49.2%;
            float: left;
        }

        .gorsellist > a > img {
            width: 100%;
        }

@media (max-width: 500px) {

    .gorsellist > a {
        padding: 5px 0px;
        display: inline-block;
        width: 100%;
        float: left;
    }

        .gorsellist > a:nth-child(2) {
            display: inline-block;
            padding: 5px 0px;
            width: 100%;
            float: left;
        }

    .odebutonCC {
        width: 100%;
    }

    .total-price__row {
        text-align: center;
        font-size: 18px;
        margin-top: 0;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .total-price {
        width: 96%;
        height: auto;
        margin-top: 0;
        border-radius: 4px;
        border: 2px solid white;
        background-color: white;
    }

    .total-price__amount {
        display: inline;
        color: #51b549;
        font-size: 23px;
    }

        .total-price__amount:before {
            content: ":";
            font-size: 18px;
            color: #000;
            margin-right: 3px;
        }

    #ccform {
        height: auto;
    }

    .ccdiv {
        width: 100%;
        float: left;
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .installment-details {
        width: 100%;
        float: left;
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.prehCAT {
    background-color: #fffbf8;
    text-align: center;
    padding: 14px;
    border-bottom: 0.5px solid #e5e5e5;
    font-size: 17px;
    letter-spacing: 0.11px;
    display: block;
}

.encok2 {
    padding-left: 12px;
    font-size: 13px;
    margin-top: 60px;
    /* position: absolute;
    bottom: 8px;*/
}

.menu-search {
    float: left;
    margin-top: 0;
}

.smARA {
    z-index: 999999;
}

.ozm {
    height: 44px;
    line-height: normal !important;
    width: 117px;
}

.ozm1 {
    text-transform: none;
    position: absolute;
    left: 0;
    top: 6px;
    height: auto;
    width: auto;
}


.ozm2 {
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    position: absolute;
    left: 0;
    bottom: 4px;
    height: auto;
    width: auto;
}

.tumsonuclar {
    text-align: center;
}

    .tumsonuclar a, .tumsonuclar a:hover {
        display: inline-block;
        color: #fff;
        background-color: #51b549;
        Text-align: center;
        padding: 10px 36px;
        margin: 2px 10px 10px;
        border-color: #51b549;
        border-radius: 5px;
        font-size: 14px;
    }

.acResults {
    z-index: 9999;
    position: absolute;
    width: 100%;
    top: auto !important;
    left: auto !important;
    display: none;
    box-shadow: 0 1px 6px 0 rgba(2,2,2,.16);
    border-radius: 10px;
}

    .acResults ul li:hover {
        background-color: #f5f5f5;
    }

.urunrenkimgdiv {
    background-color: white;
    display: inline-block;
    font-size: 13px;
    position: relative;
    width: 50px;
    height: 50px;
    float: left;
    /* margin: 5px; */
    border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-webkit-radius: 50%;
    zoom: 1;
    margin-LEFT: 8px;
    padding: 0px;
    overflow: hidden;
    border: 0 solid #e5e5e5;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
}

    .urunrenkimgdiv img {
        max-height: 100%;
    }


.prehyaz2 {
    padding: 4px;
    font-size: 13px;
    text-align: center;
    background-color: #f4edab;
}

.ozelnotlar {
    padding: 5px 20px 5px 20px;
    margin: 5px 0 10px 0;
    border-radius: 5px;
    background-color: #edf1f2;
}

.upload_link {
    display: inline-block;
    padding: 8px;
    padding-left: 44px;
    background-image: url("../../../images/upload_image.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: left;
    background-position-y: center;
    cursor: pointer;
}

.aciklama {
    padding: 25px 25px;
    color: black;
    background-color: #edf1f2;
    border-radius: 6px;
    margin: 10px;
    font-size: 17px;
    width: 100%;
    max-width: 1290px;
    margin: 10px auto;
    box-sizing: border-box;
}

.ustaciklamabanner {
    background-image: url('30dakBanner.png');
    background-repeat: no-repeat;
    background-position-x: left;
    background-size: contain;
    position: relative;
    background-color: #d1e6ff;
    padding: 10px;
    border-radius: 10px;
    font-size: 25px;
    color: black;
    font-weight: bold;
    text-align: center;
}

.ustaciklamabannerSPOT {
    display: inline-block;
    background-color: #cd2e37;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin: 5px;
}

.ustaciklamabannerDETAY {
    display: inline-block;
    position: absolute;
    width: 200px;
    font-size: 14px;
    right: 0;
top:0;
    background-color: #ddebfe;
    padding: 10px;
    border-radius: 10px;
    font-weight: normal;
    color: black;
    margin: 10px;
}
@media (max-width: 480px) {
    .ustaciklamabanner {
        background-position-x: left;
        background-position-y: center;
        background-size: 100px;
        padding-left: 100px;
        border-radius: 10px;
        font-size: 20px;
    }
    .ustaciklamabannerSPOT {
        display: inline-block;
        background-color: #cd2e37;
        padding: 6px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: bold;
        color: white;
        margin: 5px;
    }
    .ustaciklamabannerDETAY {
        display: block;
        position: static;
        width: auto;
        font-size: 11px;
        background-color: transparent;
        padding: 0;
        border-radius: 10px;
        font-weight: normal;
        color: black;
        margin: 0;
    }
}


#aniheader {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 30px;
    overflow: hidden;
}

    #aniheader img {
        max-width: 900px;
        width: 100%;
    }

.mesai {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -29px;
    font-size: 12px;
    display: none;
}

.mesai2 {
    display: block;
    margin: -4px 0 0 18px;
}

.h1header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.h1left-image, .h1right-image {
    height: 120px;
}

h1.iconh1 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    margin: 0 25px;
}

@media (min-width: 480px) {

 
    .prehyaz2 {
        padding: 6px;
        font-size: 15px;
        text-align: center;
        background-color: #f4edab;
    }
}


@media (max-width: 480px) {
    h1.iconh1 {
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        margin: 0 7px;
    }
    .h1left-image, .h1right-image {
        height: 80px;
    }
 
}



.blogbej {
    background-color: #f8f7f5;
    float: left;
}

#MainContent_blogrow {
    max-width: 1280px;
    margin: auto;
}

#MainContent_blogrow > div {
    padding: 50px 15px;
    float: left;
}

#MainContent_blogrow a {
    line-height: 24px;
}
    /*.rowblog b {
    display: block;
    height: 55px;
}*/

    #MainContent_blogrow a:hover {
        text-decoration: underline;
    }

#MainContent_blogrow img {
    margin-bottom: 30px;

}

.bloga {
    display: block;
    margin-bottom: 10px;
    padding: 15px;
    height: 100%;
    font-family: 'Inter', sans-serif;
}

    /*    .bloga:hover {
        border: 1px solid #666;
        text-decoration: none;
        color: black;
    }*/

    .bloga h2 {
        padding: 10px 0;
        margin: 0;
        color: #0b2558;
        font-size: 16px;
        font-weight: bold;
        line-height: 25px;
        font-family: 'Inter', sans-serif;
    }

    .bloga img {
        display: inline-block;
        width: 100%;
        height: auto;
        /*   max-height: 200px;*/
    }

.blog1a {
    padding-right: 40px;
    width: calc(100% - 400px);
    float: left;
    font-family: 'Inter', sans-serif;
}
    .blog1a img {
        width: 100%;
    }
.blog1b {
    width: 400px;
    float: left;
    font-family: 'Inter', sans-serif;
}

    .blog1b > a {
        display: block;
        display: -ms-flexbox !important;
        display: flex !important;
        margin-bottom: 24px;
        font-family: 'Inter', sans-serif;
    }

        .blog1b > a > img {
            width: 55px;
            height: 31px;
            margin-right: 15px;
            display: inline-block;
            -ms-flex: 0 0 55px;
            flex: 0 0 55px;
        }

        
.rowblog {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
    .rowblog > div {
        -webkit-flex: 0 0 33.33%;
        -moz-flex: 0 0 33.33%;
        -ms-flex: 0 0 33.33%;
        flex: 0 0 33.33%;
        font-family: 'Inter', sans-serif;
    }

.aciklamaBLOG {
    padding: 25px 25px;
    color: black;
    background-color: white;
    border-radius: 6px;
    margin: 10px;
    font-size: 20px;
line-height:30px;
    width: 100%;
    max-width: 1290px;
    margin: 10px auto;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    max-width: 750px;
}
    .aciklamaBLOG img {
        max-width: 100%;
        display: block;
        margin: auto;
    }

.uruncatlist-text {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
}

.globalhead1 a, .globalhead2 a {
    font-size: 16px;
    color: black;
 
}
@media (max-width:500px) {
    .rowblog > div {
            -webkit-flex: 0 0 100%;
            -moz-flex: 0 0 100%;
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
        }

        .aciklama, .aciklamaBLOG {
            padding: 15px 15px;
        }

        .bloga {
            padding: 0;
        }

        .rowblog > div {
            width: 100%;
        }

        .blogbej {
            background-color: #fff;
            float: none;
        }

        #MainContent_blogrow img {
            margin-bottom: 30px;
            margin-top: 50px;
        }

        #MainContent_blogrow > div {
            padding: 0px 15px;
        }

        .blog1a {
            padding-right: 0;
            width: 100%;
            float: none;
        }

        .blog1b {
            width: 100%;
            float: none;
        }

            .blog1b > a {
                display: block !important;
                margin-bottom: 0;
            }

                .blog1b > a > img {
                    width: 100%;
                    height: auto;
                    margin-right: 0;
                    display: inline-block;
                    -ms-flex: none;
                    flex: none;
                }

                .blog1b > a > span {
                    font-size: 16px;
                }
    }

    .paylasdiv a {
    height: 45px;
    width: 45px;
    padding: 10px;
    float: left;
    text-align: center;
    display: inline-block;
    margin: 0 5px;
    border-radius: 25px;
}
    .paylasdiv a img {
        height: 24px;
    }

