﻿html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #eee;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #666;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

header {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    align-items: center;
    background: white;
    box-shadow: 0 0 3px 0 black;
    left: 0;
    right: 0;
    margin: auto;
    position: fixed;
    z-index: 2;
}

#search > *.header-btn {
    padding: 10px;
    text-decoration: none;
    color: #fff;
    background: #f96b07;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 40px;
    background: #efefef;
    width: 100%;
    z-index: 1;
}

    footer a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40px;
        text-decoration: none;
        color: #404040;
    }

        footer a img {
            height: 30px
        }

#Layer_1 {
    height: 100%;
    width: 100%;
}

.f-w {
    flex-wrap: wrap;
}

#logo {
    display: block;
    width: 100px;
    height: 60px;
    max-width: 20vw;
}

#headerIcons {
    /*width: 233px;*/
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
}

    #headerIcons > * {
        width: 30px;
        height: 30px;
        display: block;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        line-height: 30px;
        text-decoration: none;
    }

        #headerIcons > *.hide {
            display: none;
        }

#page {
    background: #efefef;
    height: calc(100vh - 60px);
    position: relative;
}

#menu {
    cursor: pointer;
}

menu {
    display: flex;
    background: rgba(0,0,0,.2);
    margin: 0;
    padding: 0;
    height: calc(100vh - 60px);
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 60px;
    right: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
    justify-content: end;
    z-index: 1000;
}


    menu nav {
        background: #232b3f;
        width: 300px;
        padding: 10px 0;
        box-sizing: border-box;
        transform: translateX(300px);
        transition: all .3s ease-in-out;
    }

        menu nav a {
            text-decoration: none;
            color: white;
            padding: 5px 25px;
            display: flex;
            align-items: center;
            transition: all .3s;
        }

            menu nav a.active {
                background: #46557a;
            }

            menu nav a:hover {
                background: #2b4a97;
            }

            menu nav a .logo {
                width: 40px;
                height: 34px;
                padding-right: 10px;
                box-sizing: border-box;
                text-align: center;
                line-height: 34px;
                font-size: 16px;
            }

            menu nav a .text {
                font-size: 20px;
            }

    menu.show {
        opacity: 1;
        pointer-events: auto
    }

        menu.show nav {
            transform: translateX(0);
            transition: all .3s ease-in-out .3s;
        }

article {
    padding: 20px;
    box-sizing: border-box;
    padding-top: 80px;
    padding-bottom: 60px;
}

    article > .title {
        font-size: 30px;
        line-height: 50px;
    }

    article > section {
        display: flex;
        justify-content: space-between;
    }

#SplitPage {
    display: flex;
    width: 100%;
}

    #SplitPage > div:first-child {
        padding-right: 10px;
    }

.gridviewFooterBtnFix {
    margin: 8px -8px -10px;
}

#search {
    display: flex;
}

    #search > * {
        border: 1px solid #5c5c5c;
        height: 30px;
        display: block;
        box-sizing: border-box;
        padding: 0;
        width: 30px;
        outline: none;
    }

    #search > .header-btn {
        padding: 0 10px;
        text-decoration: none;
        color: #fff;
        background: #f96b07;
        width: auto;
        box-sizing: border-box;
        border: none;
        margin: 0;
        line-height: 30px;
        margin-right: 15px;
        position: relative;
        display: none;
    }

        #search > .header-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            margin: 0;
            border: 1px solid transparent;
            transition: all .3s;
        }

        #search > .header-btn:hover:before {
            margin: -5px;
            border: 1px solid #f96b07;
        }

    #search > input {
        max-width: 300px;
        width: 100%;
        padding: 0 10px;
    }

    #search > button {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

#KatPart {
    width: 250px;
    overflow: hidden;
    position: relative;
}

    #KatPart ul,
    #KatPart li {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #KatPart > ul ul,
    #KatPart > ul div.hide + ul {
        display: none;
        padding-left: 7px;
    }

        #KatPart > ul ul.active,
        #KatPart > ul div.show + ul {
            display: block;
        }

    #KatPart > ul li {
        /*padding-left: 10px;*/
    }

    #KatPart li > div {
        position: relative;
        cursor: pointer;
    }

        #KatPart li > div > a {
            line-height: 26px;
            font-size: 12px;
            padding: 0 10px;
            display: block;
            text-decoration: none;
            font-weight: bold;
            color: #666;
        }

            #KatPart li > div > a:after {
                content: '';
                left: -50%;
                width: 200%;
                height: 1px;
                background: #cccccc;
                position: absolute;
                bottom: 0;
            }

            #KatPart li > div > a:before {
                content: "\f105";
                font-family: "FontAwesome";
                position: relative;
                opacity: 0;
                transition: width .5s, opacity .8s;
                padding-right: 0;
                width: 3px;
                display: inline-block;
            }

            #KatPart li > div > a:hover,
            #KatPart li.active > div > a {
                color: #f96b07;
            }

                #KatPart li > div > a:hover:before {
                    opacity: 1;
                    width: 10px;
                }

        #KatPart li > div > span {
            display: block;
            width: 30px;
            height: 30px;
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            text-align: center;
            color: #666;
        }

            #KatPart li > div > span:after {
                content: '+';
                font-size: 18px;
                line-height: 30px;
            }

        #KatPart li > div.show > span:after {
            content: '-';
        }

@media screen and (min-width:870px) {
    #KatPart > ul {
        position: fixed;
        width: 250px;
        overflow: hidden;
    }
}

#sagTaraf {
    width: calc(100% - 270px);
    /*justify-content: space-around;*/
}

#Urun {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-around;*/
    align-items: flex-start;
}


    #Urun .item,
    #vitrin .item,
    #ModalUrun .item {
        margin: 5px;
        margin-bottom: 40px;
        -o-border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        margin: 0;
        margin-bottom: 40px;
        width: 25%;
        box-sizing: border-box;
        cursor: pointer;
    }

        #Urun .item .inner,
        #vitrin .item .inner,
        #ModalUrun .item .inner {
            position: relative;
            padding-bottom: 20px;
            border-bottom: none;
            padding: 20px;
            width: 100%;
            transition: all 0.17s ease-in-out;
            -moz-transition: all 0.17s ease-in-out;
            -webkit-transition: all 0.17s;
            box-sizing: border-box;
        }

        #vitrin .item .inner {
            border: 2px solid transparent;
        }

        #Urun .item .inner:hover {
            border-radius: 20px;
            box-shadow: 0px 0px 54px -26px rgb(0 0 0);
        }

        #vitrin .item .inner:hover {
            border-radius: 20px;
            border-color: black;
        }

        #Urun .item .inner > a,
        #vitrin .item .inner > a,
        #ModalUrun .item .inner > a {
            padding-top: 75%;
            position: relative;
            display: block;
            box-sizing: border-box;
        }

        #Urun .item .inner img,
        #vitrin .item .inner img /*,
        #ModalUrun .item .inner img*/ {
            position: absolute;
            top: 0;
            width: 100%;
            transition: all 0.17s ease-in-out;
            -moz-transition: all 0.17s ease-in-out;
            -webkit-transition: all 0.17s ease-in-out;
            -o-transition: all 0.17s ease-in-out;
            /* transform: scale(1.19) translateZ(0); */
            image-rendering: auto;
            object-fit: contain;
            object-position: center;
            height: 100%;
        }

        #Urun .item .inner h3,
        #vitrin .item .inner h3,
        #ModalUrun .item .inner h3 {
            background: #f6f6f6;
            color: #335687;
            font-weight: 600;
            padding: 5px 10px;
            width: 100%;
            font-size: 12px;
            -webkit-border-bottom-right-radius: 3px;
            -webkit-border-bottom-left-radius: 3px;
            -moz-border-radius-bottomright: 3px;
            -moz-border-radius-bottomleft: 3px;
            border-bottom-right-radius: 3px;
            border-bottom-left-radius: 3px;
            text-align: center;
            border: 1px solid #dbdbdb;
            margin-bottom: 15px;
            box-sizing: border-box;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        #Urun .item .inner h4,
        #vitrin .item .inner h4,
        #ModalUrun .item .inner h4 {
            background: #f6f6f6;
            color: #335687;
            font-weight: 600;
            padding: 5px 10px;
            width: 100%;
            font-size: 12px;
            -webkit-border-bottom-right-radius: 3px;
            -webkit-border-bottom-left-radius: 3px;
            -moz-border-radius-bottomright: 3px;
            -moz-border-radius-bottomleft: 3px;
            border-bottom-right-radius: 3px;
            border-bottom-left-radius: 3px;
            text-align: center;
            border: 1px solid #dbdbdb;
            margin-bottom: 15px;
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        #Urun .item .inner h3 div,
        #vitrin .item .inner h3 div,
        #ModalUrun .item .inner h3 div {
            line-height: 20px;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        #Urun .item .inner h4 div,
        #vitrin .item .inner h4 div,
        #ModalUrun .item .inner h4 div {
            line-height: 20px;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        #Urun .item .inner p,
        #vitrin .item .inner p,
        #ModalUrun .item .inner p {
            color: #666;
            font-size: 14px;
            font-family: 'Roboto', sans-serif;
            font-weight: 600;
            margin: 0;
            line-height: 22px;
            margin-bottom: 10px;
            width: 100%;
            padding: 0 10px;
            box-sizing: border-box;
            height: 22px;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
        }

        #Urun .item .inner .kdvDahil,
        #Urun .item .inner .iskonto,
        #Urun .item .inner .kdvHaric,
        #vitrin .item .inner .kdvDahil,
        #vitrin .item .inner .iskonto,
        #vitrin .item .inner .kdvHaric,
        #ModalUrun .item .inner .kdvDahil,
        #ModalUrun .item .inner .iskonto,
        #ModalUrun .item .inner .kdvHaric {
            /*display: inline-block;*/
            text-align: right;
            position: relative;
            border-radius: 3px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -o-border-radius: 3px;
            background: #eee;
            color: #404040;
            padding: 4px 12px;
            margin: 0 5px 10px 5px;
            font-size: 13px;
            font-family: 'Roboto', sans-serif;
            transition: all 0.17s ease-in-out;
            -moz-transition: all 0.17s ease-in-out;
            -webkit-transition: all 0.17s ease-in-out;
            -o-transition: all 0.17s ease-in-out;
            text-transform: uppercase;
            text-decoration: none;
        }

        #Urun .item .inner .iskonto,
        #vitrin .item .inner .iskonto,
        #ModalUrun .item .inner .iskonto {
            background: #393;
            color: white;
        }

        #Urun .item .inner .kdvDahil,
        #vitrin .item .inner .kdvDahil,
        #ModalUrun .item .inner .kdvDahil {
            background: #f96b07;
            color: #fff;
            font-weight: bold;
            font-size: 18px;
        }

        #Urun .item .inner .desc
        #vitrin .item .inner .desc {
            display: none;
        }

        #ModalUrun .item .inner .desc {
            position: relative;
        }

#vitrin .item {
    width: 100%
}

#ModalUrun .item {
    width: 100%;
    margin-bottom: 0;
    min-width: 70vw;
}

    #ModalUrun .item .inner > a {
        padding-top: 0;
    }

    #ModalUrun .item .inner .desc * {
        margin: 0;
        padding: 0;
        height: unset;
    }

#ModalUrun .kdvDahil[style],
#ModalUrun .kdvHaric[style],
#ModalUrun .iskonto[style] {
    display: none;
}

#pagging {
    margin: 20px 0;
    justify-content: center;
    display: flex;
}

    #pagging a {
        display: block;
        text-decoration: none;
        width: 30px;
        height: 30px;
        background: white;
        margin: 5px;
        line-height: 30px;
        text-align: center;
        color: #333;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
        transition: all .3s;
    }

        #pagging a.passive {
            cursor: not-allowed;
            background: #eee;
            border: 1px solid #eee;
        }

        #pagging a:not(.passive):hover {
            box-shadow: -1px 1px 8px 0 #ccc;
        }

        #pagging a.current {
            background: #f27a1a;
            color: white;
        }

#mobileKatSwitch {
    display: none;
    background: rgba(0, 0, 0, .05);
    position: relative;
    width: 100%;
    padding: 10px;
    border-bottom: 2px solid #999;
}

    #mobileKatSwitch span {
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        margin: auto;
        cursor: pointer;
    }

        #mobileKatSwitch span:before, #mobileKatSwitch span:after {
            content: '';
            width: 50%;
            height: 2px;
            background: black;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            transition: .3s all;
            transform-origin: center;
            bottom: 25%;
        }

        #mobileKatSwitch span:before {
            transform: rotate(45deg);
            width: 33%;
            right: 20%;
        }

        #mobileKatSwitch span:after {
            transform: rotate(-45deg);
            width: 33%;
            left: 20%;
        }


    #mobileKatSwitch.show span:before,
    #mobileKatSwitch.show span:after {
        width: 50%;
        left: 0;
        right: 0;
    }

#heading {
    font-size: 30px;
    width: 100%;
}

#Temel, #Currency {
    border: 1px solid #aaa;
    padding: 20px;
    border-radius: 10px;
    background: #f6f8fe;
    width: 300px;
    margin: 20px 0;
    box-sizing: border-box;
}

    #Temel .input,
    #Currency .input {
        margin-bottom: 20px;
    }

        #Temel .input:last-child,
        #Currency .input:last-child {
            margin-bottom: 0;
        }

        #Temel .input > *,
        #Currency .input > * {
            display: block;
            width: 100%;
        }

        #Temel .input > label {
            padding: 5px 10px;
            border-bottom: 1px solid #444;
            box-sizing: border-box;
            margin-bottom: 10px;
        }

        #Temel .input > button,
        #Currency .input > button {
            border: 1px solid #999;
            height: 30px;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 5px 0 #aaa;
            background: #ffffff;
            cursor: pointer;
            font-size: 16px;
        }

        #Temel .input > button {
            display: none;
        }

            #Temel .input > button.show {
                display: block;
            }

            #Temel .input > button:active,
            #Currency .input > button:active {
                background: #efefef;
                box-shadow: 0 0 3px 0 #aaa;
            }

            #Temel .input > button[disabled],
            #Currency .input > button[disabled] {
                background: #d4d4d4;
                color: #818181;
                box-shadow: 0 0 3px 0 #aaa;
                cursor: not-allowed;
            }

    #Currency .bigTitle {
        font-size: 20px;
        font-weight: 600;
        padding-bottom: 10px;
    }

#SiparisTablosu {
    width: 100%;
    margin: 20px 0;
    padding: 10px;
    box-sizing: border-box;
    background: #f6f8fe;
    border: 1px solid #aaa;
    border-radius: 10px;
    display: none;
}

    #SiparisTablosu.show {
        display: block;
    }


    #SiparisTablosu input {
        width: 100%;
        height: 20px;
    }

        #SiparisTablosu input#IskontoInput {
            width: auto;
        }

#Tablo {
    display: table;
    width: 100%;
    border-collapse: collapse;
}

    #Tablo thead .hucre {
        border-bottom: 2px solid black;
    }

    #Tablo .hucre {
        border-bottom: 1px solid black;
        vertical-align: middle;
        padding: 10px 5px;
        text-align: left;
    }

        #Tablo .hucre:last-child {
            text-align: right
        }

    #Tablo tfoot .hucre {
        border: none;
        border-top: 1px solid black;
    }

    #Tablo #araToplam,
    #Tablo #iskonto,
    #Tablo #Kdv,
    #Tablo #iskontoAraToplam {
        display: none;
    }

    #Tablo input[name='Adet'] {
        width: 40px;
        border-radius: 3px;
        border: 1px solid #c9c9c9;
        padding: 5px;
        outline: none;
    }

    #Tablo .hucre button {
        border: 1px solid #999;
        width: 100%;
        height: 30px;
        padding: 0;
        margin: 7px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 5px 0 #aaa;
        background: #ffffff;
        cursor: pointer;
        padding: 10px;
        box-sizing: border-box;
        white-space: nowrap;
    }

        #Tablo .hucre button:active {
            background: #efefef;
            box-shadow: 0 0 3px 0 #aaa;
        }

#siparisLoading {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: rgba(0, 0, 0, .75);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

    #siparisLoading.show {
        display: flex;
    }

    #siparisLoading img {
        max-width: 100%;
        max-height: 100%;
    }

#BildirimBody {
    text-align: center;
}

    #BildirimBody img {
        width: 500px;
        height: 500px;
        max-width: 80vw;
        max-height: 50vh;
        object-fit: contain;
    }

    #BildirimBody .title {
        font-size: 18px;
        font-weight: bold;
    }

#Notifications.active #Var,
#Notifications:not(.active) #Yok {
    display: block;
}

#Notifications:not(.active) #Var,
#Notifications.active #Yok {
    display: none;
}

#NotifyTitle {
    text-align: center;
    font-weight: bold;
    line-height: 30px;
}

#NotifyClear {
    font-size: 12px;
    text-align: right;
    padding: 5px;
    color: red;
}

div#Notifyempty {
    padding: 10px 20px 10px;
    font-size: 13px;
    font-style: italic;
    color: #888;
}

#BildirimCekmecesi {
    position: fixed;
    height: auto;
    max-height: 50vh;
    width: 300px;
    background: white;
    right: 10px;
    top: 70px;
    box-shadow: 0 0 3px 0 #999;
    display: none;
    overflow: auto;
    border-radius: 3px;
    padding: 10px;
    box-sizing: border-box;
}

    #BildirimCekmecesi.show {
        display: block;
    }

    #BildirimCekmecesi .item {
        padding: 10px;
        box-sizing: border-box;
        border-top: 1px solid #999;
        font-size: 12px;
        font-style: italic;
    }

        #BildirimCekmecesi .item.new {
            font-weight: bold;
            background: rgb(255, 255, 219);
            font-style: normal;
        }


        #BildirimCekmecesi .item .title {
            font-size: 14px;
        }

        #BildirimCekmecesi .item > * {
            white-space: nowrap;
            text-overflow: ellipsis;
        }


/*#pdfIndir {
    position: relative;
}

    #pdfIndir div {
        width: 150px;
        top: -5px !important;
        top: 5px !important;
        line-height: 18px;
        right: 100% !important;
        padding-right: 10px;
    }*/
a.img.owl-carousel.owl-theme > div:not(:first-child) {
    display: none;
}

#ModalUrun {
    max-width: 90vw;
}

    #ModalUrun img {
        max-height: 60vh;
        width: 100%;
        object-fit: contain;
        max-width: 60vw;
        margin: auto;
    }

    #ModalUrun .item .ad {
        text-align: left;
        margin: 20px 0;
        position: relative;
        line-height: 18px;
        font-size: 14px;
        color: #666;
        height: 36px;
        overflow: hidden;
    }

    #ModalUrun .item .fiyat {
        text-align: right;
        color: #f27a1a;
        font-size: 16px;
        border: 1px solid #f27a1a;
        font-weight: bold;
        padding: 3px 10px;
        margin-top: 10px;
    }


#FiyatListesiCont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

    #FiyatListesiCont .satir {
        width: 200px;
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        padding: 10px;
        margin: 10px;
        border: 1px solid #999;
        border-radius: 5px;
        text-align: center;
    }

        #FiyatListesiCont .satir > div {
            width: 100%;
            padding: 5px 0;
        }

            #FiyatListesiCont .satir > div.btn {
                cursor: pointer;
                border: 1px solid black;
            }

#Brosur {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
}

    #Brosur .item {
        width: 24%;
        overflow: hidden;
        text-decoration: none;
        margin-bottom: 20px;
    }

        #Brosur .item .img {
            border: 1px solid #232b3f;
            padding-top: 133%;
            position: relative;
        }

            #Brosur .item .img img {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                padding: 20px;
                box-sizing: border-box;
                object-fit: contain;
            }

        #Brosur .item .ad {
            text-align: center;
            color: white;
            background: #232b3f;
            font-weight: bold;
            padding: 10px;
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
        }

#pdfCreator {
    position: fixed;
    top: 60px;
    background: rgba(0, 0, 0, .6);
    left: 0;
    right: 0;
    margin: auto;
    box-sizing: border-box;
    height: calc(100vh - 100px);
    width: 100%;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    z-index: 2;
}

    #pdfCreator .page {
        position: relative;
        margin: auto;
    }

#pdfViewer {
    display: inline-block;
    height: 100%;
    width: 100%;
}

    #pdfViewer .pdfheader {
        height: 50px;
        background: #232b3f;
        display: flex;
        color: white;
        line-height: 50px;
        padding: 0 10px;
        justify-content: space-between;
    }

        #pdfViewer .pdfheader .buttons,
        #pdfViewer .pdfheader .buttons > div {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

            #pdfViewer .pdfheader .buttons > div {
                width: 30px;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            #pdfViewer .pdfheader .buttons svg {
                fill: white;
            }

        #pdfViewer .pdfheader .title {
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            padding-right: 10px;
        }

    #pdfViewer .pdfContainer {
        position: relative;
        overflow: auto;
        background: #f1f1f1;
        width: 100%;
        height: calc(100% - 50px);
    }

@media screen and (max-width: 1280px) {
    #Urun .item {
        width: 33%
    }

    #Brosur .item {
        width: 33%;
    }
}

@media screen and (max-width: 840px) {
    #Urun .item {
        width: 50%
    }

    #Brosur .item {
        width: 49%;
    }
}

@media screen and (max-width: 420px) {
    #Urun .item,
    #Brosur .item {
        width: 100%;
    }
}

@media screen and (max-width:870px) {

    body {
    padding-top: 0px;
    height: 100vh;
    }
    /*
    #pdfIndir div {
        display: none;
    }*/

    article > section {
        flex-wrap: wrap;
    }

    #sagTaraf {
        width: 100%;
    }

    #KatPart {
        width: 100%;
        display: none;
    }

    #mobileKatSwitch {
        display: block;
    }

        #mobileKatSwitch.show + #KatPart {
            display: block;
        }

    #Urun {
        margin-top: 20px;
        justify-content: space-around;
    }

    #headerIcons {
        width: auto;
    }

    header {
        display: flex;
        text-align: center;
        z-index: 100;
        top: 0;
    }

        header > div:first-child {
            justify-content: space-between !important;
        }

    #headerIcons {
        justify-content: center;
    }

    #search {
        flex-wrap: wrap;
        justify-content: center;
    }

        #search > input {
            width: calc(100% - 30px);
            margin: 10px 0;
            min-width: calc(80vw - 40px);
        }

        #search > input, #search > button {
            margin: 10px 0;
        }

    article {
        padding-top: 20px;
    }

    #Bildirim {
        /*margin-top: 0 !important;*/
        max-width: 86vw !important;
    }

    #ModalUrun .item .inner > a {
        padding-top: 80vw;
    }

    #BildirimBody img {
        width: 100%;
    }
}

.blocker {
    z-index: 1000 !important;
}

a#SiparisCont {
    display: flex;
    width: auto !important;
    text-decoration: none;
    color: inherit;
    padding: 0 5px;
}

#BasketCont {
    width: auto !important;
    display: flex;
    padding: 0 5px;
    text-decoration: none;
    color: inherit;
    position: relative;
}

    #BasketCont sup {
        background: #f96b07;
        position: absolute;
        top: -3px;
        line-height: 1;
        left: 22px;
        border-radius: 7px;
        height: 14px;
        line-height: 14px;
        text-align: center;
        font-size: 10px;
        color: white;
        padding: 0 4px;
    }

#currencies {
    white-space: nowrap;
    line-height: 15px;
}

#pdfIndir {
    display: flex;
    width: auto !important;
    padding: 0 5px;
    text-decoration: none;
    color: inherit;
}

#TabContainer {
    display: flex;
    border-bottom: 2px solid #232b3f;
    margin-bottom: 10px;
    align-items: flex-end;
    height: 55px;
}

    #TabContainer .tab-item {
        padding: 010px;
        border: 1px solid #232b3f;
        border-bottom: none;
        transition: all .3s;
        cursor: pointer;
    }

        #TabContainer .tab-item.active {
            padding-top: 15px;
            border-radius: 5px 5px 0 0;
            background: #232b3f;
            color: white;
        }

#BodyContainer .body-item:not(.active) {
    display: none
}

.stat-1:not(:hover) td {
    background: #ffffff !important;
}

.stat-2:not(:hover) td {
    background: #ffef31 !important;
}

.stat-3:not(:hover) td {
    background: #48c84e !important;
}

.stat-4:not(:hover) td {
    background: #cb0000 !important;
}

#MarkaSelect {
    text-align: left;
    font-size: 12px;
    font-weight: bold;
    padding: 0 10px;
    box-sizing: border-box;
    height: 50px;
    width: 100%;
}
