﻿html, body {
    position: relative;
    height: 100%;
    width: 100%;
}

body {
    background-color: #e5e5e5 !important;
    font-size: 13px !important;
}

* {
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
}

@-moz-document url-prefix() {
    b, strong {
        font-weight: 500 !important;
    }
}

header {
    background-color: #5b5b5b;
    color: #fff;
    padding: 5px;
    text-align: center;
}

    header a {
        color: #fff;
    }

        header a:hover {
            color: #fff !important;
        }

#Kullanici {
    float: right;
    z-index: 100;
    list-style: none;
}

    #Kullanici a:hover, a:focus {
        /*color: #fff;*/
        background-color: #5b5b5b;
    }

.form-control, .form-group .form-control {
    background-image: unset;
    padding-left: 5px;
}

.temp {
    width: auto !important;
    float: left !important;
}

.marginTop40px {
    margin-top: 40px;
    padding-right: 0;
}

.aramaGizle {
    display: none;
}

.margintop25px {
    margin-top: 25px;
}

.logo {
    width: 90%;
    margin-top: -5px;
}

@media screen and (max-width: 1350px) {
    .logo {
        width: 50%;
    }

    .attr-nav > ul > li.dropdown ul.dropdown-menu {
        margin-top: -5px;
        right: 0;
        left: unset;
    }

    .temp {
        width: 100% !important;
        float: none;
    }

    .marginTop40px {
        display: none;
    }

    .aramaGizle {
        display: block;
    }

    .satirAyar {
        margin-top: -5px !important;
        margin-bottom: -5px !important;
    }

    .margintop25px {
        margin-top: 0;
    }
}

@media screen and (max-width: 500px) {
    .logo {
        margin: auto;
    }
}

.title {
    font-size: 14px !important;
    line-height: 18px !important;
    font-weight: 700 !important;
}

.siteDefaultColor {
    color: #ff4000 !important;
    background-color: transparent !important;
}

    .siteDefaultColor a {
        color: #ff4000 !important;
        text-decoration: underline;
        background-color: transparent !important;
    }

        .siteDefaultColor a:hover {
            color: #ff4000 !important;
            background-color: transparent !important;
        }

.araBtn {
    background-image: url(images/ara.png);
    background-repeat: no-repeat;
}

.dxpnl-np {
    float: unset !important;
}

.aramaSonuc {
    border: solid 1px Gray;
    margin: 0;
    padding: 0;
    height: 35%;
    overflow-y: auto;
    background-color: #FFF;
    width: 100%;
    cursor: pointer;
}

.aramaSonucList {
    color: #333;
    cursor: pointer;
    padding-top: 3px;
    padding-left: 3px;
}

.aramaSonucListSecili {
    background-color: #5bc0de;
    color: #FFF;
    padding-top: 3px;
    padding-left: 3px;
    cursor: pointer;
}

.loginButton {
    float: right;
    margin-top: 8px;
    margin-right: 10px;
}

.open > .dropdown-menu {
    margin-top: 0;
    min-width: 130px !important;
}

.login-container {
    position: relative;
    width: 300px;
    margin: 30px auto;
    padding: 20px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}

#output {
    position: absolute;
    width: 300px;
    top: -75px;
    left: 0;
    color: #fff;
}

    #output.alert-success {
        background: #19cc19;
    }

    #output.alert-danger {
        background: #e46969;
    }

.login-container::before, .login-container::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 3.5px;
    left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;
}

.login-container::after {
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
    -moz-transform: rotateZ(-2deg);
    -ms-transform: rotateZ(-2deg);
}

.girisAltButtons {
    margin-top: 10px;
    padding: 0 0 3px 3px;
    font-size: smaller;
}

.avatar {
    width: 100%;
    height: 100%;
    margin: 10px auto;
    background-size: cover;
}

.form-box input {
    width: 100%;
    padding: 10px;
    height: 40px;
    border: 1px solid #ccc;
    transition: .2s ease-in-out;
}

    .form-box input[type="text"] {
        border-radius: 5px;
    }

    .form-box input[type="checkbox"] {
        height: unset !important;
        text-align: left;
        width: unset !important;
        margin-top: 10px;
        margin-right: 3px;
    }

.form-box label {
    font-size: 12px;
    font-weight: 700;
}

.form-box input[type="password"] {
    border-radius: 5px;
    border-top: 0;
}

.form-box .login {
    margin-top: 15px;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.glyphicon {
    /*margin-right: 5px;*/
}

.thumbnail {
    height: 325px;
    margin-bottom: 5px;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: center;
    background-color: #fff;
    border: none !important;
}

.caption h5 {
    max-height: 30px;
    min-height: 30px;
    overflow: hidden;
    
}

.caption p {
    margin: 0;
}
.caption h5 a {
    color: #484848 !important;
}
.thumbnail .caption {
    padding: 1px;
}

.owl-stage-outer {
    background-color: #ffffff;
}


.urunSecenek {
    border-bottom: 40px solid #2e6da4;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    right: -35px;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    text-align: center;
}

    .urunSecenek:before {
        content: '';
        border-top: 40px solid transparent;
        border-right: 40px solid transparent;
    }

    .urunSecenek > span {
        font-family: "Comic Sans MS","Comic Sans",cursive;
        color: #fff;
        font-size: 13px;
        position: absolute;
        left: -20px;
        top: 21px;
    }

    .urunSecenek a {
        color: #fff;
        cursor: pointer;
        text-decoration: none;
    }

.urunSecenekBos {
    border-bottom: 40px solid transparent;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    right: -35px;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    text-align: center;
}

    .urunSecenekBos:before {
        content: '';
        border-top: 40px solid transparent;
        border-right: 40px solid transparent;
    }

    .urunSecenekBos > span {
        font-family: "Comic Sans MS","Comic Sans",cursive;
        color: transparent;
        font-size: 13px;
        position: absolute;
        left: -20px;
        top: 21px;
    }

    .urunSecenekBos a {
        color: #fff;
        cursor: pointer;
        text-decoration: none;
    }

.secenekDiv {
    margin-top: 5px;
}

    .secenekDiv .btn-group::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .secenekDiv .btn-group::-webkit-scrollbar {
        width: 12px;
        background-color: #cccccc;
    }

    .secenekDiv .btn-group::-webkit-scrollbar-thumb {
        background-color: rgb(91, 192, 222);
    }

.urunKargo {
    border-bottom: 40px solid #2e6da4;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    float: left;
    margin-left: -40px;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    text-align: center;
}

    .urunKargo:before {
        content: '';
        border-top: 40px solid transparent;
        border-left: 40px solid transparent;
    }

    .urunKargo > span {
        font-family: "Comic Sans MS","Comic Sans",cursive;
        color: #fff;
        font-size: 13px;
        position: absolute;
        right: -10px;
        top: 21px;
    }

.urunKargoBos {
    border-bottom: 40px solid transparent;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    float: left;
    margin-left: -40px;
    top: 0;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    text-align: center;
}

    .urunKargoBos:before {
        content: '';
        border-top: 40px solid transparent;
        border-left: 40px solid transparent;
    }

    .urunKargoBos > span {
        font-family: "Comic Sans MS","Comic Sans",cursive;
        color: transparent;
        font-size: 13px;
        position: absolute;
        right: -10px;
        top: 21px;
    }

.stokYok {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: gray;
    opacity: .5;
    height: 98%;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stokYokImage {
    height: 100%;
    text-align: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    width: 100%;
}

.clear {
    clear: both;
    height: 10px;
}

.urunResim {
    margin-top: 5px;
    max-width: 180px !important;
    max-height: 180px !important;
    min-width: 50px !important;
    min-height: 50px !important;
}

.hero-spacer {
    margin-top: 50px;
}

.hero-feature {
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0;
}

.col-sm-4.col-md-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media screen and (max-width: 500px) {
    .caption .btn {
        font-size: 12px;
        padding: 3px 6px;
    }

    .caption span {
        font-size: 13px;
    }

    .thumbnail {
        height: 210px;
    }

    .urunResim {
        margin-top: 5px;
        max-width: 80px !important;
        max-height: 80px !important;
    }

    .hero-feature {
        padding-right: unset;
        padding-left: unset;
    }
}

@media screen and (max-width: 320px) {
    .caption .btn {
        font-size: 9px;
        padding: 3px 6px;
    }

    .thumbnail {
        height: 220px;
    }
}

.indirimliFiyat {
    color: #FF4000;
}

.solaDaya {
    float: left !important;
}

.solButunle {
    left: -45px;
}

.satirAyar {
    display: inline-table;
    margin: auto;
    margin-top: -10px;
}

.sagaDaya {
    float: right !important;
}

.carousel .carousel-control {
    width: 0 !important;
}
.carousel-inner {
    border-radius: 10px;
}
.carousel-inner > .item > a img {
    margin: 0 auto;
}

.carousel-indicators {
    bottom: -15px;
    z-index: 1;
}

    .carousel-indicators li {
        border-color: #a5a5a5;
    }

    .carousel-indicators .active {
        background-color: #2e6da4;
    }

.carousel-control.left {
    background-image: none;
}

.carousel-control.right {
    background-image: none;
}


@media screen and (max-width: 500px) {
    .carousel-indicators {
        display: none;
    }
}

#toTop {
    position: fixed;
    bottom: 80px;
    right: 30px;
    cursor: pointer;
    display: none;
    border: 1px solid gray;
    z-index: 1000;
    box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19) !important;
    padding-left: 20px;
    padding-right: 20px;
}

.toTopIcon {
    font-size: 1.5em !important;
}

.sepetButton {
    position: fixed;
    right: 30px;
    bottom: 130px;
    z-index: 99999;
    float: right;
    border: 1px solid gray;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    padding-left: 20px;
    padding-right: 20px;
}

.icon180cevir {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    width: 21px;
}

.urunAdet {
    font-weight: 700;
}

.guvenliAlisveris {
    text-align: center;
    margin: 5px auto;
}

footer {
    background-color: #5b5b5b;
    min-height: 350px;
}

    footer a {
        color: white;
    }

    footer ul li {
        /*display: unset !important;*/
    }

        footer ul li a {
            text-transform: unset !important;
            padding: 5px;
        }

.footerleft {
    margin-top: 30px;
    padding: 0 36px;
}

.logofooter {
    margin-bottom: 10px;
    font-size: 25px;
    color: #fff;
    font-weight: 700;
}

.footerleft p {
    color: white;
    font-size: 12px !important;
    margin-bottom: 15px;
}

    .footerleft p i {
        width: 20px;
        color: white;
    }

.paddingtop-bottom {
    margin-top: 30px;
}

h6, .h6 {
    text-transform: unset !important;
}

.footer-ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 2px;
    padding-left: 30px;
}

    .footer-ul li {
        line-height: 26px !important;
        font-size: 13px;
    }

        .footer-ul li a {
            color: white;
            transition: color .2s linear 0,background .2s linear 0;
        }

    .footer-ul i {
        margin-right: 10px;
    }

    .footer-ul li a:hover {
        transition: color .2s linear 0,background .2s linear 0;
    }

.social:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.icon-ul {
    list-style-type: none !important;
    margin: 0;
    padding: 0;
}

    .icon-ul li {
        line-height: 75px;
        width: 100%;
        float: left;
    }

.icon {
    float: left;
    margin-right: 5px;
}

.copyright {
    min-height: 40px;
    background-color: #000;
}

    .copyright a {
        color: #ccc;
    }

    .copyright p {
        text-align: left;
        padding: 10px 0;
        margin-bottom: 0;
        color: #ccc;
    }

.heading7 {
    font-size: 21px;
    font-weight: 700;
    color: #d9d6d6;
    margin-bottom: 22px;
    padding-left: 30px;
}

.post p {
    font-size: 12px;
    color: #FFF;
    line-height: 20px;
}

    .post p span {
        display: block;
        color: #8f8f8f;
    }

.bottom_ul {
    list-style-type: none;
    float: right;
    margin-bottom: 0;
}

    .bottom_ul li {
        float: left;
        line-height: 40px;
    }

        .bottom_ul li:after {
            content: "/";
            margin-right: 8px;
            margin-left: 8px;
            color: #ccc;
        }

        .bottom_ul li a {
            font-size: 12px;
        }

.table > tbody > tr > td, .table > tfoot > tr > td {
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    table#ContentPlaceHolder1_Sepetim1_cart tbody td .form-control {
        width: 20%;
        display: inline !important;
    }

    .actions .btn {
        width: 36%;
        margin: 1.5em 0;
    }

    .actions .btn-info {
        float: left;
    }

    .actions .btn-danger {
        float: right;
    }

    .urunResim1 {
        width: 100px;
        float: right;
        margin-top: -20px;
    }

    .sepetUrunAd {
        line-height: 18px;
    }

    table#ContentPlaceHolder1_Sepetim1_cart thead {
        display: none;
    }

    table#ContentPlaceHolder1_Sepetim1_cart tbody td {
        display: block;
        padding: .6rem;
        min-width: 90%;
    }

    table#ContentPlaceHolder1_Sepetim1_cart tbody tr td:first-child {
        background: #ccc;
        color: #fff;
    }

    table#ContentPlaceHolder1_Sepetim1_cart tbody td:before {
        content: attr(data-th);
        font-weight: 700;
        display: inline-block;
    }

    table#ContentPlaceHolder1_Sepetim1_cart tfoot td {
        display: block;
    }

        table#ContentPlaceHolder1_Sepetim1_cart tfoot td .btn {
            display: block;
        }

    .sepeteEklendiDiv {
        position: fixed;
        width: 100% !important;
        left: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        top: 40% !important;
        box-shadow: 0 0 20px 0 #5bc0de,0 6px 20px 0 #5bc0de;
        line-height: 20px;
        color: #fff;
        background-color: #46b8da;
        z-index: 200;
        text-align: center;
    }
}

.marginRight5 {
    margin-right: 5px;
}

.sepetSayfaKargoBilgi {
    padding: 15px;
    margin-bottom: 18px;
    margin-top: 18px;
    border: 1px solid transparent;
    background-color: #5cb85c;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
}

.sepeteEklendiDiv {
    position: fixed;
    width: 40%;
    z-index: 200;
    top: 50%;
    left: 50%;
    margin-top: -10%;
    margin-left: -20%;
    box-shadow: 0 0 20px 0 #5bc0de,0 6px 20px 0 #5bc0de;
    line-height: 60px;
    color: #fff;
    background-color: #46b8da;
    text-align: center;
}

.table {
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    background-color: #ffffff !important;

}

.sepeteGitDiv {
    padding: 1px;
    border: 1px solid transparent;
    background-color: #5cb85c;
}

    .sepeteGitDiv a {
        padding: 6px;
        font-size: 12px;
        font-weight: 700;
        border-radius: 4px;
        background-color: #FF4000;
        color: #fff;
    }

#greyBackground {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    visibility: visible;
    z-index: 101;
    position: fixed;
    top: 0;
    left: 0;
    filter: alpha(opacity=50);
    -moz-opacity: .5;
    opacity: .5;
}

img {
    max-width: 100%;
}

.preview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.nav-tabs > li {
    margin-bottom: 0 !important;
}

@media screen and (max-width: 996px) {
    .preview {
        margin-bottom: 20px;
    }
}

.preview-pic {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    background-color: #fff;
    margin-right: 5px;
}

.preview-thumbnail.nav-tabs {
    border: none;
    margin-top: 5px;
    margin-right: 5px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

    .preview-thumbnail.nav-tabs li {
        width: 15%;
        max-height: 70px;
    }

        .preview-thumbnail.nav-tabs li img {
            max-width: 100%;
            display: block;
            border: 1px solid #ddd;
            max-height: 70px;
        }

        .preview-thumbnail.nav-tabs li a {
            padding: 0;
            margin: 0;
        }

        .preview-thumbnail.nav-tabs li:last-of-type {
            margin-right: 0;
        }

.tab-content {
    overflow: hidden;
}

    .tab-content img {
        width: 100%;
        /*-webkit-animation-name: opacity;
        animation-name: opacity;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;*/
    }

.card {
    background: #eee;
    line-height: 1.5em;
}

.urunDetayWrap {
    display: block;
    /*margin-right: -30px;*/
    margin-left: -15px !important;
}

@media screen and (min-width: 997px) {
    .urunDetayWrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        /*margin-right: -30px;*/
        margin-left: 0;
    }
}

.details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    margin-left: -15px;
}

@media screen and (max-width: 997px) {
    .details {
        margin-left: 15px;
        margin-right: 20px;
    }
}

.btn, .navbar .navbar-nav > li > a.btn {
    margin: 0;
}

nav.navbar.bootsnav .navbar-toggle {
    color: black;
}

.navbar .navbar-nav > li > a {
    text-transform: unset;
}

    .actions .btn.btn-sm, .btn-group-sm .btn, .navbar .navbar-nav > li > a.btn.btn-sm, .btn-group-sm .navbar .navbar-nav > li > a.btn {
        padding: 5px 10px;
    }

.colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.product-title, .price, .sizes, .colors {
    font-weight: 700;
}

.price {
    margin-bottom: 20px !important;
    margin-top: 20px !important;
    font-size: 50px;
}

.priceDel {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 10px;
}

.paraPuan {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
}

    .paraPuan span {
        color: #337ab7;
        border-bottom: 1px dashed #337ab7;
    }

.paraPuanBilgi {
    line-height: 20px;
    font-size: 13px;
    border: 1px dashed #337ab7;
    padding: 3px 3px 0 3px;
    margin-bottom: 5px;
}

.paraPuanBilgiSepet {
    line-height: 20px;
    font-size: 16px;
    /*border: 1px dashed #337ab7;*/
    padding: 5px 5px 5px 5px;
    text-align: center;
    font-weight: bold;
    color: #337ab7;
    margin-bottom: 5px;
    border-radius: 4px;
    background-color: #ffffff;
}

    .paraPuanBilgiSepet u {
        color: #ff4000;
    }

.paraPuanBilgiDiv {
    position: fixed;
    bottom: 5px;
    margin-bottom: 0 !important;
    z-index: 999999999;
    left: 15%;
    width: 70%;
    background-color: #337ab7;
    color: white;
    font-size: 16px;
}

.kargo {
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.kargoBilgi {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #63a83c;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    text-align: center;
}

.kargoBilgiStokYok {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #fff;
    border-radius: 10px;
    padding: 10px;
    background-color: red !important;
    width: 100%;
    text-align: center;
}

.kargoBilgi span {
    font-size: 14px;
}

.checked, .price span {
    color: #ff4000;
}

.product-title, .rating, .product-description, .vote, .sizes {
    margin-bottom: 15px;
}

.rating {
    text-align: right;
    float: right;
}

.markaGit {
    text-align: left;
    float: left;
    font-weight: 700;
    font-size: 18px;
}

.product-title {
    margin-top: 15px;
    font-size: 24px !important;
    text-align: center;
}

.orginalUrun {
    float: right;
    position: absolute;
    right: 0;
    width: 225px;
    border: 1px solid #337ab7;
    border-radius: 6px;
    top: 130px;
    margin-right: 15px;
}

    .orginalUrun ul li {
        margin-top: 5px;
        list-style: none;
        margin-left: -30px;
        margin-bottom: -5px;
    }

    .orginalUrun a {
        text-align: left !important;
        color: #337ab7;
        margin: 5px;
        margin-bottom: 0;
    }

@media screen and (max-width: 767px) {
    .orginalUrun {
        width: 50px;
        top: 170px;
    }
}


.adet {
    padding: 0;
    width: 40px;
    height: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    text-align: center;
}

.adetLabel {
    float: left;
    margin-right: 5px;
    line-height: 30px;
    font-size: 14px;
}

.miktar {
    display: inline-block;
    margin-right: -5px;
    padding: 12px 10px 0 5px;
    height: 56px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    margin-bottom: 5px;
}

.sepeteEkle {
    height: 56px;
    vertical-align: middle;
    font-size: 16px;
    line-height: 56px;
    padding: 0 10px;
    border: none;
    border-radius: 3px;
    background: #337ab7;
    color: #fff;
    white-space: nowrap;
    margin-bottom: 5px;
    margin-top: 1px;
}

    .sepeteEkle a:hover {
        color: #fff !important;
        text-decoration: none !important;
    }

.disabled {
    cursor: not-allowed !important;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

.size {
    margin-right: 10px;
}

    .size:first-of-type {
        margin-left: 40px;
    }

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.product-info {
    margin-top: 10px;
    margin-right: 5px;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

@media screen and (max-width: 767px) {
    .product-info {
        margin-left: 0;
        /*margin-right: -25px;*/
    }

    .tagDiv {
        margin-left: 0 !important;
        /*margin-right: -25px !important;*/
    }
}

.product-info1 {
    margin-top: 10px;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 7px;
}

.cont {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.taksitTable {
    border: 1px solid #eee;
    width: 100%;
    text-align: center;
    font-weight: 400 !important;
}

    .taksitTable tr {
        border: 1px solid #eee;
    }

    .taksitTable th {
        height: 30px;
        text-align: center;
        background-color: #222;
        color: #fff;
    }

.taksit {
    font-weight: 700;
}

.bankaAdi {
    font-weight: 700;
}

.bankaMaximum {
    background-color: #faaad6 !important;
}

.bankaCardFinans {
    background-color: #adc1e9 !important;
}

.bankaBonus {
    background-color: #d0ecb5 !important;
}

.bankaAxess {
    background-color: #e8efa4 !important;
}

.bankaWorld {
    background-color: #e0b7e7;
}

.yorumDiv {
    border: 1px solid #eee;
    padding-left: 3px;
    font-weight: 400 !important;
}

    .yorumDiv a {
        background-color: #3f3f3f !important;
    }

.yorumBaslik {
    background-color: #eee;
    font-weight: 700;
    font-size: 14px;
    padding: 5px;
    margin: 5px;
    line-height: 14px;
}

.yorumPuan {
    padding-left: 10px;
}

.yorumTarih {
    float: right;
    margin-right: 10px;
    margin-top: -20px;
    font-weight: 400 !important;
}

.yorumIcerik {
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400 !important;
}

.adresBar {
    margin-bottom: 10px;
    margin-top: -5px;
    margin-left: 15px;
    float: left;
}

.adresBar1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.orderButton {
    margin-top: -40px;
    z-index: 8;
}

.urunBulunamadi {
    text-align: center;
    width: 100%;
    height: 100%;
    background-color: white;
    border: 1px solid #cccccc;
}

@media screen and (max-width: 1350px) {
    .adresBar1 {
        margin-top: 10px;
    }
}

@media screen and (max-width: 997px) {
    .adresBar1 {
        margin-top: 0;
    }

    .btn-breadcrumb > a {
        font-size: 10px;
    }

    .orderButton button {
        font-size: 10px !important;
        overflow: hidden !important;
    }
}

.btn-breadcrumb .btn:not(:last-child):after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    left: 100%;
    z-index: 3;
}

.btn-breadcrumb .btn:not(:last-child):before {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    border-left: 10px solid #adadad;
    position: absolute;
    top: 50%;
    margin-top: -17px;
    margin-left: 1px;
    left: 100%;
    z-index: 3;
}

/*.btn-breadcrumb .btn {
    padding: 6px 18px 6px 24px;
    border-left: 1px solid #fff;
}

    .btn-breadcrumb .btn:first-child {
        padding: 6px 6px 6px 10px;
    }

    .btn-breadcrumb .btn:last-child {
        padding: 6px 18px 6px 24px;
    }

    .btn-breadcrumb .btn.btn-default:not(:last-child):after {
        border-left: 1px solid #fff;
    }

    .btn-breadcrumb .btn.btn-default:not(:last-child):before {
        border-left: 1px solid transparent;
    }

    .btn-breadcrumb .btn.btn-default:hover:not(:last-child):after {
        border-left: 1px solid #fff;
    }

    .btn-breadcrumb .btn.btn-default:hover:not(:last-child):before {
        border-left: 1px solid transparent;
    }*/

.kategoriBaslik {
    text-align: center;
    font-size: 20px;
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
}

.list-group-item h1 {
    font-size: 16px !important;
    line-height: 16px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-weight: 700;
}

.list-group-item .marginTopEksi16 {
    margin-top: -16px;
}

.list-group-item {
    font-size: 13px !important;
    white-space: normal !important;
    word-break: normal;
}

.marka {
    height: 25px !important;
    padding-top: 2px;
}

.badge {
    background-color: #5bc0de;
    margin-right: -10px;
}

.mini-submenu {
    display: none;
    background-color: rgba(0,0,0,0);
    border: 1px solid rgba(0,0,0,0.9);
    border-radius: 4px;
    padding: 9px;
    width: 42px;
}

    .mini-submenu:hover {
        cursor: pointer;
    }

    .mini-submenu .icon-bar {
        border-radius: 1px;
        display: block;
        height: 2px;
        width: 22px;
        margin-top: 3px;
        background-color: #000;
    }

#slide-submenu {
    background: rgba(0,0,0,0.45);
    display: inline-block;
    padding: 0 8px;
    border-radius: 4px;
    cursor: pointer;
}

.enUstKategoriBackground {
    background-color: #5bc0de;
    color: #fff !important;
    font-weight: 700;
}

    .enUstKategoriBackground:hover {
        background-color: #5bc0de !important;
    }

    .enUstKategoriBackground span {
        border: 1px solid #fff;
    }

.solKategoriBackground {
    background-color: #337ab7;
    color: #fff !important;
}

    .solKategoriBackground:hover {
        background-color: #337ab7 !important;
    }

    .solKategoriBackground span {
        background-color: #337ab7;
        border: 1px solid #fff;
    }

.hidden {
    display: none !important;
}

.solMarkaDiv {
    max-height: 330px;
    overflow-y: auto;
}

#scrolStyle::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #000;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

#scrolStyle::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

#scrolStyle::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #000;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #5bc0de;
}

.paging {
    position: relative;
    width: 80%;
    background-color: #fff;
    margin: 0 auto;
    text-align: center;
    height: 50px;
    border: 1px solid #ddd;
}

.pagination {
    margin: 8px 0 !important;
}

.stepwizard-step p {
    margin-top: 10px;
}

.stepwizard-row {
    display: table-row;
}

.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}

.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
    top: 14px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}

.stepwizard-step {
    display: table-cell;
    text-align: center;
    position: relative;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}

.panel-pricing {
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}

    .panel-pricing:hover {
        box-shadow: 0 0 60px gray;
    }

    .panel-pricing .panel-heading {
        padding: 20px 10px;
    }

        .panel-pricing .panel-heading .fa {
            margin-top: 10px;
            font-size: 58px;
        }

    .panel-pricing .list-group-item {
        color: #777;
        border-bottom: 1px solid rgba(250,250,250,0.5);
    }

        .panel-pricing .list-group-item:last-child {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }

        .panel-pricing .list-group-item:first-child {
            border-top-right-radius: 0;
            border-top-left-radius: 0;
        }

    .panel-pricing .panel-body {
        background-color: #fff;
        font-size: 40px;
        color: #ff4000;
        padding: 20px;
        margin: 0;
    }

.modal-header {
    padding: 9px 15px;
    border-bottom: 1px solid #eee;
    color: #fff;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

    .modal-header .close {
        color: #fff !important;
        opacity: .9 !important;
        font-size: 1.5em;
        margin: 0 !important;
    }

.kargoBlok {
    margin: 5px;
    padding: 5px;
    border: 2px;
    border-style: solid;
    overflow: hidden;
    background-color: #ffffff;
}

.panel-danger {
    border-color: #ebccd1 !important;
}

.krediKartiForm {
    background-color: #fff;
    margin-top: 10px;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    width: 49.5%;
}

.krediKartiOzet {
    background-color: #fff;
    margin-top: 10px;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    margin-right: 10px;
    width: 49.5%;
    min-height: 440px;
}

.krediKartiOzetOzet {
    text-align: right;
}

.urunOzet {
    min-height: 135px;
}

.krediKartiOzet h3 {
    color: #333;
}

@media screen and (max-width: 1199px) {
    .krediKartiOzet {
        width: 95%;
        margin-left: 10px;
    }

    .krediKartiOzetOzet {
        text-align: left;
    }

    .krediKartiForm {
        width: 95%;
        margin-left: 10px;
    }
}

#messages {
    margin-top: 10px;
    padding: 5px;
    background-color: #fff;
    height: 100%;
    overflow: hidden;
    font-weight: 700;
}

#txtSkt {
    float: left;
    width: 50%;
}

#txtCvc {
    float: right;
    width: 50%;
}

#adres {
    background-color: #fff;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 10px;
}

.adresBlok {
    border: 1px solid #ccc;
    margin-right: 10px;
    padding: 10px;
    border-radius: 6px;
    background-color: #eee;
    width: 31.5%;
    margin-bottom: 10px;
}

    .adresBlok:hover {
        box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    }

.adresBlokEksik {
    border: 4px solid #ff4000;
    margin-right: 10px;
    padding: 10px;
    border-radius: 6px;
    background-color: #eee;
    width: 31.5%;
    margin-bottom: 10px;
}

    .adresBlokEksik:hover {
        box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    }

.adresAktif {
    border: 1px solid #ff4000 !important;
}

.adresBaslik label {
    cursor: pointer;
}


.hataliAdresUyari {
    float: left;
    color: #ff4000;
    font-weight: bold;
}

.adresButtons {
    float: right;
}

    .adresButtons a {
        margin: 5px;
    }

@media screen and (max-width: 767px) {
    .adresBlok {
        width: 95%;
        margin-right: 0;
        display: inline-block;
    }
}

@media screen and (max-width: 500px) {
    .adresBlok {
        width: 90%;
        margin-right: 0;
        display: inline-block;
    }
}

#adresModal .form-group {
    margin-bottom: 0;
}

.control-label {
    white-space: nowrap;
    text-align: right;
    padding-top: 9px;
}

.jumbotron h1 {
    font-size: 48px;
}

.jumbotron {
    padding-bottom: 15px !important;
    padding-top: 15px !important;
}

.hakkimizda {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.hesapNumaralarimiz {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.hesapNumaraRow {
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    margin: 5px;
    white-space: nowrap;
    display: block;
    margin-bottom: 20px;
}

    .hesapNumaraRow a {
        color: #fff;
        text-decoration: underline;
    }

        .hesapNumaraRow a:hover {
            color: #fff;
            text-decoration: underline;
        }

@media screen and (max-width: 1200px) {
    .hesapNumaraRow {
        height: 80px;
        white-space: normal;
    }
}

@media screen and (max-width: 997px) {
    .hesapNumaraRow {
        height: 100%;
    }

    .jumbotron h1 {
        font-size: 34px;
    }

    .iletisimText {
        text-align: left !important;
    }

    .kampanyaBilgi {
        max-height: 100px;
        overflow: scroll;
    }
}

.iletisim {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
}

.iletisimText {
    text-align: right;
}

.kampanyalar {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.kampanyaBilgi {
    border-radius: 5px;
    padding: 5px 5px 5px 100px;
    background: url(/images/kozmetikUyari.png) no-repeat 20px 50% #eee;
    margin-bottom: 10px;
    white-space: normal;
    border: 1px solid #ccc;
    max-height: 100px;
    overflow: scroll;
}

.kampanyaDetay {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

.urunKampanyali {
    position: absolute;
    text-align: center;
    width: 80%;
    margin-left: 10%;
    margin-top: -5px;
    font-weight: 700;
}

.kampanyaBilgiUrunDetay {
    font-size: 14px;
    border-radius: 4px;
    padding: 3px;
    /*color: red;
    text-decoration: underline;*/
}

.badgeMarginTop {
    margin-top: -20px;
}

.haberveDuyuru {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    font-size: 14px;
}

    .haberveDuyuru p {
        font-size: 14px;
    }

.haberDetay {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    font-size: 14px;
}

    .haberDetay p {
        font-size: 14px;
    }

.iade {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

    .iade h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0;
        padding: 5px 0;
        border-bottom: 1px solid #ccc;
    }

    .iade h4 {
        font-size: 14px;
        font-weight: 700;
    }

    .iade p {
        font-size: 14px;
    }

.sss {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

    .sss ul {
        list-style: none;
        margin: 0 5px;
        padding: 0;
    }

    .sss h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0;
        padding: 5px 0;
        border-bottom: 1px solid #ccc;
    }

    .sss h4 {
        font-size: 14px;
        font-weight: 700;
    }

    .sss p {
        font-size: 14px;
    }

.musteriHizmetleriBaslik {
    font-size: 18px;
    line-height: 30px;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
}

    .musteriHizmetleriBaslik a {
        text-decoration: none;
        color: inherit;
    }

.garanti {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

    .garanti h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 5px 0;
        padding: 5px 0;
        border-bottom: 1px solid #ccc;
    }

    .garanti h4 {
        font-size: 14px;
        font-weight: 700;
    }

    .garanti p {
        font-size: 14px;
    }

.ureticiIthalatci {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
}

.ureticiIthalatciRow {
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    margin: 5px;
    white-space: nowrap;
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

    .ureticiIthalatciRow a {
        color: #fff;
    }

@media screen and (max-width: 1200px) {
    .ureticiIthalatciRow {
        height: 80px;
        white-space: normal;
    }
}

@media screen and (max-width: 997px) {
    .ureticiIthalatciRow {
        height: 100%;
        white-space: normal;
    }
}

.siparisTakip {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
}

.siparisTakipRow {
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    background-color: #5bc0de;
    color: #fff;
    margin: 5px;
    white-space: nowrap;
    display: block;
    border-bottom: 5px solid #ccc;
    margin-bottom: 10px;
}

.siparisTakipRowHeader {
    height: 40px;
    line-height: 40px;
    border-radius: 6px;
    background-color: #2e6da4;
    color: #fff;
    margin: 5px;
    white-space: nowrap;
    display: block;
    margin-bottom: 10px;
}

.row .baslik {
    display: none;
    font-weight: 700;
}

@media screen and (max-width: 1200px) {
    .siparisTakipRow {
        height: 40px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 997px) {
    .siparisTakipRow {
        height: 100%;
        white-space: normal;
    }

    .siparisTakipRowHeader {
        visibility: hidden;
    }

    .row .baslik {
        display: inline;
    }
}

.eftHavele {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
}

.siparisOzet {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
}

    .siparisOzet h1 {
        color: #333;
    }

.adresBlokOzet {
    border: 1px solid #ccc;
    margin-right: 10px;
    padding: 10px;
    border-radius: 6px;
    background-color: #eee;
    margin-bottom: 10px;
    width: 49%;
}

@media screen and (max-width: 799px) {
    .container {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
}

@media screen and (max-width: 1199px) {
    .adresBlokOzet {
        width: 100%;
        margin-right: 0;
        display: inline-block;
    }
}

@media screen and (max-width: 767px) {
    .adresBlokOzet {
        width: 95%;
        margin-left: 10px;
        margin-right: 0;
        display: inline-block;
    }

    .container-fluid > .navbar-header {
        margin-left: 0;
        margin-right: 0;
    }

    .navbar-nav {
        margin: unset;
    }
}

@media screen and (max-width: 500px) {
    .adresBlokOzet {
        width: 93%;
        margin-right: 0;
        margin-left: 10px;
        display: inline-block;
    }
}

.hesabim {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
}

    .hesabim .col-md-6 {
        padding-right: 0;
        padding-left: 0;
        margin-right: 2px;
        width: 49.5%;
    }

    .hesabim a {
        text-decoration: underline;
    }

    .hesabim .row {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

.hesabimBody {
    height: 130px;
    overflow: auto;
}

    .hesabimBody div {
        border-bottom: 1px dashed #ccc;
        margin-bottom: 2px;
        margin-top: 2px;
        margin-right: 5px;
    }

@media screen and (max-width: 997px) {
    .hesabim .col-md-6 {
        width: 95%;
        margin-left: 15px;
    }

    .hediyeCekListesi .row {
        border-bottom: 1px dashed #ccc;
        padding-bottom: 5px;
    }
}

@media screen and (max-width: 500px) {
    .hesabim .col-md-6 {
        width: 90%;
    }
}

.hediyeCekListesi {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hediyeCekListesiDurumAktif {
    color: green;
}

.hediyeCekListesiDurumPasif {
    color: red;
}

.tooltip-inner {
    word-break: break-all;
}

.fbLogin {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
    text-align: center;
}

.anaMarkalar {
    padding-right: 30px;
    padding-top: 10px;
    padding-left: 30px;
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
}

    .anaMarkalar h2 {
        border-bottom: 1px solid #ccc;
    }

    .anaMarkalar .mypagination {
        list-style: none;
        display: inline-block;
        padding-left: 0;
        margin: 20px 0;
        border-radius: 4px;
        text-align: center;
        margin: 8px 0 !important;
        font-size: 10px;
    }

.mypagination li {
    display: inline;
}

    .mypagination li > a {
        position: relative;
        float: left;
        margin-left: -1px;
        line-height: 1.42857143;
        color: #337ab7;
        text-decoration: none;
        background-color: #fff;
        border: 1px solid #ddd;
    }

.mypagination > li > a:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}

.mypagination li:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.mypagination li:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.markalarDiv {
    float: left;
    font-size: 10px;
    text-align: center;
    margin: 5px;
}

.markalarResim {
    border: 1px solid #A9A9A9;
}

    .markalarResim:hover {
        box-shadow: 0 0 20px 0 #A9A9A9,0 6px 20px 0 #A9A9A9;
    }

.markalarTumButton {
    text-decoration: none;
    text-align: center;
    padding: 0 !important;
    width: 150px;
    height: 35px;
    cursor: pointer;
    line-height: 35px;
    font-size: 12px;
}

    .markalarTumButton:hover {
        background: #63a83c;
        color: #FFF !important;
        cursor: pointer;
        text-decoration: none;
    }

.tagDiv {
    background-color: #fff;
    margin: 5px 5px 10px 0;
    padding: 10px;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}



.tags {
    list-style: none;
    overflow: hidden;
    padding: 0;
}

    .tags li {
        float: left;
    }

.tag {
    border-radius: 3px 0 0 3px;
    color: #fff;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 23px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
}

    .tag::before {
        background: #fff;
        border-radius: 10px;
        box-shadow: inset 0 1px rgba(0,0,0,0.25);
        content: '';
        height: 6px;
        left: 10px;
        position: absolute;
        width: 6px;
        top: 10px;
    }

.tagBaslik {
    background: #63a83c;
    border-radius: 3px 0 0 3px;
    color: #fff;
    display: inline-block;
    height: 26px;
    line-height: 26px;
    padding: 0 20px 0 10px;
    position: relative;
    margin: 0 10px 10px 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

    .tagBaslik::before {
        background: #fff;
        border-radius: 10px;
        box-shadow: inset 0 1px rgba(0,0,0,0.25);
        height: 6px;
        left: 10px;
        position: absolute;
        width: 6px;
        top: 10px;
    }

    .tagBaslik::after {
        background: #fff;
        border-bottom: 13px solid transparent;
        border-left: 10px solid #63a83c;
        border-top: 13px solid transparent;
        content: '';
        position: absolute;
        right: 0;
        top: 0;
    }

.sepetKupon {
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
    padding: 10px 30px 20px;
}

.kuponDurum {
    height: 24px;
    line-height: 24px !important;
    cursor: pointer;
    display: flex;
    margin-left: 10px;
    margin-bottom: 2px;
}

.sepetKampanya {
    background-color: #fff;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
    height: 100%;
    padding: 10px 30px 20px;
}

.kampanyaAltBilgi {
    padding: 3px;
    border-radius: 3px;
    font-size: 10px;
}

/*.nav-side-menu {
    font-family: verdana;
    font-size: 12px;
    font-weight: 200;
    background-color: #5b5b5b;
    width: 190px;
    position: absolute;
    color: #e1ffff;
    position: absolute;
}

    .nav-side-menu .brand {
        background-color: #5b5b5b;
        line-height: 50px;
        display: block;
        text-align: center;
        font-size: 14px;
    }

    .nav-side-menu .toggle-btn {
        display: none;
    }

    .nav-side-menu ul, .nav-side-menu li {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 35px;
        cursor: pointer;
    }

    .nav-side-menu .badge {
        line-height: 20px;
        margin-right: 10px;
        margin-top: 5px;
    }

    .nav-side-menu ul :not(collapsed) .arrowR:before, .nav-side-menu li :not(collapsed) .arrowR:before {
        font-family: FontAwesome;
        content: "\f078";
        display: inline-block;
        padding-left: 10px;
        padding-right: 10px;
        vertical-align: middle;
        float: right;
    }

    .nav-side-menu ul .active, .nav-side-menu li .active {
        border-left: 3px solid #d19b3d;
        background-color: #5b5b5b;
    }

    .nav-side-menu ul .sub-menu li.active, .nav-side-menu li .sub-menu li.active {
        color: #d19b3d;
    }

        .nav-side-menu ul .sub-menu li.active a, .nav-side-menu li .sub-menu li.active a {
            color: #d19b3d;
        }

    .nav-side-menu ul .sub-menu li, .nav-side-menu li .sub-menu li {
        background-color: #5b5b5b;
        border: none;
        line-height: 35px;
        border-bottom: 1px solid #23282e;
        margin-left: 0;
    }

.sub-menu {
    max-height: 200px;
    overflow: auto;
}

.nav-side-menu ul .sub-menu li:hover, .nav-side-menu li .sub-menu li:hover {
    background-color: #5b5b5b;
}

.nav-side-menu ul .sub-menu li:before, .nav-side-menu li .sub-menu li:before {
    font-family: FontAwesome;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    vertical-align: middle;
}

.nav-side-menu li {
    padding-left: 10px;
    border-left: 3px solid #2e353d;
    border-bottom: 1px solid #23282e;
}

    .nav-side-menu li a {
        text-decoration: none;
        color: #e1ffff;
    }

        .nav-side-menu li a i {
            padding-left: 10px;
            width: 20px;
            padding-right: 20px;
        }

    .nav-side-menu li:hover {
        border-left: 3px solid #d19b3d;
        background-color: #4f5b69;
        -webkit-transition: all 1s ease;
        -moz-transition: all 1s ease;
        -o-transition: all 1s ease;
        -ms-transition: all 1s ease;
        transition: all 1s ease;
    }

@media (max-width: 3840px) {
    .nav-side-menu {
        position: relative;
        width: 100%;
        margin-bottom: 10px;
    }

        .nav-side-menu .toggle-btn {
            display: block;
            cursor: pointer;
            position: absolute;
            right: 10px;
            top: 10px;
            z-index: 3 !important;
            padding: 3px;
            background-color: #fff;
            color: #000;
            width: 40px;
            text-align: center;
        }

    .brand {
        text-align: left !important;
        font-size: 22px;
        padding-left: 20px;
        line-height: 50px !important;
    }
}

@media (min-width: 3840px) {
    .nav-side-menu .menu-list .menu-content {
        display: block;
    }

    #main {
        width: calc(100% - 300px);
        float: right;
    }
}*/

@media (max-width: 991px) {
    #urun_list {
        width: 100% !important;
    }
}

.filter-button {
    position: fixed;
    left: 20px;
    bottom: 40%;
    z-index: 99999999;
    border-radius: 6px;
    width: 60px;
    height: 60px;
    box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19) !important;
}

    .filter-button a {
        color: white;
    }

        .filter-button a:hover, a:focus {
            text-decoration: none;
            background-color: transparent;
        }

.filter-btn {
    width: 30%;
}

.filter-btn1 {
    width: 70%;
}

/* The side navigation menu */
.sidenav {
    width: 100%; /* 0 width - change this with JavaScript */
    z-index: 1;
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    border: 1px solid #cccccc;
    height: 100%;
    padding-bottom: 20px;
}

    .sidenav::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .sidenav::-webkit-scrollbar {
        width: 3px;
        background-color: transparent;
    }

    .sidenav::-webkit-scrollbar-thumb {
        background-color: rgb(91, 192, 222);
    }

@media (max-width: 991px) {
    .filterUstDiv {
        height: 100%; /* 100% Full-height */
        width: 250px; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 9999999999; /* Stay on top */
        top: 0;
        left: 0;
        background-color: #5b5b5b;
        color: white;
        overflow-x: hidden; /* Disable horizontal scroll */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
    }

    .sidenav {
        height: 100%; /* 100% Full-height */
        width: 250px; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 9999999999; /* Stay on top */
        top: 0;
        left: 0;
        background-color: #5b5b5b;
        color: white;
        overflow-x: hidden; /* Disable horizontal scroll */
        transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
        padding-bottom: 50px !important;
    }

        .sidenav .checkbox {
            line-height: 20px !important;
            font-size: 12px !important;
        }

        .sidenav input[type="checkbox"] {
            margin-top: 3px !important;
        }

        .sidenav .badge {
            line-height: 10px !important;
            font-size: 10px !important;
        }

        .sidenav span {
            margin-top: 2px !important;
        }

    .filter-btn {
        margin: 5px;
        z-index: 999999999999; /* Stay on top */
        position: absolute;
        bottom: 1px;
        width: 30%;
    }

    .filter-btn1 {
        margin: 5px;
        z-index: 999999999999; /* Stay on top */
        position: absolute;
        bottom: 1px;
        right: 0;
        width: 66%;
    }

    .sidenav a {
        font-weight: bold;
        color: white !important;
    }
}

.sidenav .checkbox {
    padding-right: 15px;
    padding-left: 10px;
    line-height: 20px;
    font-size: 14px;
    border-bottom: 1px solid #ccc;
    border-radius: 6px;
}

    .sidenav .checkbox label, .radio label {
        width: 100%;
    }

.sidenav input[type="checkbox"] {
    margin-top: 4px;
}

.sidenav span {
    /*margin-top: 6px;*/
}

.sidenav h1 {
    font-size: 20px;
    margin-bottom: 20px;
    /*border-bottom: 1px solid white;*/
}

.sidenav h4 {
    font-size: 16px;
    font-weight: bold;
}

.sidenav a {
    font-weight: bold;
    color: #337ab7;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: fixed;
    top: 3px;
    left: 165px;
    font-size: 15px;
    margin-left: 40px;
    z-index: 1;
}

.gitLink {
    padding-right: 15px;
    padding-left: 10px;
    height: 30px;
    line-height: 16px;
    font-size: 14px;
    font-weight: normal !important;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.getLinkDiv {
    border-bottom: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 5px;
   
}

.filterKategori {
    border-top: 1px solid rgb(91, 192, 222);
    border-bottom: 1px solid rgb(91, 192, 222);
    margin: -5px;
    padding: 5px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 6px;
}


    .filterKategori::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .filterKategori::-webkit-scrollbar {
        width: 3px;
        background-color: transparent;
    }

    .filterKategori::-webkit-scrollbar-thumb {
        background-color: rgb(91, 192, 222);
    }

.filterMarkalar {
    border-top: 1px solid rgb(91, 192, 222);
    border-bottom: 1px solid rgb(91, 192, 222);
    margin: -5px;
    padding: 5px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 6px;
}


    .filterMarkalar::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .filterMarkalar::-webkit-scrollbar {
        width: 3px;
        background-color: transparent;
    }

    .filterMarkalar::-webkit-scrollbar-thumb {
        background-color: rgb(91, 192, 222);
    }

.filterBlok {
    border-top: 1px solid rgb(91, 192, 222);
    border-bottom: 1px solid rgb(91, 192, 222);
    margin: -5px;
    padding: 5px;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 6px;
}


    .filterBlok::-webkit-scrollbar-track {
        background-color: transparent;
    }

    .filterBlok::-webkit-scrollbar {
        width: 3px;
        background-color: transparent;
    }

    .filterBlok::-webkit-scrollbar-thumb {
        background-color: rgb(91, 192, 222);
    }

.filterBar {
    background-color: white;
    padding: 5px;
    border: 1px solid #cccccc;
    margin-bottom: -5px;
    display: inline-block;
    width: 100%;
}

    .filterBar ul {
        margin: 0;
        padding: 0;
        border: 0;
        font: inherit;
        outline: 0;
        list-style: none;
    }


.filteredElement {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    zoom: 1;
    display: inline-block;
    float: left;
    background-color: #eee;
    -moz-border-radius: 32px;
    -webkit-border-radius: 32px;
    border-radius: 32px;
    padding: 4px 4px 4px 6px;
    height: 32px;
    font-size: 13px;
    margin-left: 3px;
    margin-top: 3px;
}

    .filteredElement a i {
        font-size: 24px;
        line-height: 24px;
        float: left;
    }

.filteredContent {
    display: inline-block;
    width: auto;
    float: left;
    margin-left: 5px;
}

    .filteredContent .filterName {
        font-size: 11px;
        font-weight: 600;
        color: #999;
    }

    .filteredContent span {
        margin: 0 10px 0 0;
        padding: 0;
        display: block;
        width: 100%;
        height: auto;
        line-height: 1;
        font-size: 12px;
    }

.filterBarClear {
    font-size: 14px;
    padding: 4px 4px 4px 6px;
    margin-left: 3px;
    margin-top: 5px;
    font-weight: bold;
    z-index: 5;
}

    .filterBarClear:hover, focus {
        color: #337ab7;
    }

@media (max-width: 768px) {
    #enlargeImageModal {
        display: inline-table;
    }
}

@media screen and (max-width: 768px) {
    .zoomContainer {
        display: none;
    }
}

#slider-text .col-md-12 {
    overflow: hidden;
    padding-left: 0;
    padding-right: 0;
}

#slider-text h2 {
    font-weight: 400;
    font-size: 20px;
    border-radius: 10px 10px 0 0;
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 1px;
    width: 100%;
    margin-top: 0 !important;
    line-height: 30px;
    background-color: #fff;
    color: #e95420;
    text-align: center;
}

.owl-prev {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 40%;
    margin-left: 0 !important;
    display: block !important;
    color: gray !important;
}

.owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 40%;
    right: 7px;
    display: block !important;
    color: gray !important;
}

.sayfaSol {
    float: left;
    width: 50%;
}

.sayfaSag {
    float: right;
    width: 50%;
    text-align: right;
}

.attr-nav > ul > li > a {
    padding: 28px 15px;
}

ul.cart-list > li.total > .btn {
    border-bottom: solid 1px #cfcfcf !important;
    color: #fff !important;
    padding: 10px 15px;
}

.navbar {
    box-shadow: unset;
}

@media (min-width: 1024px) {
    nav.navbar ul.nav > li > a {
        padding: 30px 15px;
        font-weight: 600;
    }

    nav.navbar .navbar-brand {
        margin-top: 0;
        margin-top: 0;
    }

    nav.navbar li.dropdown ul.dropdown-menu {
        border-top: solid 5px;
    }

    nav.navbar-center .navbar-brand {
        margin: 0 !important;
    }

    nav.navbar-brand-top .navbar-brand {
        margin: 10px !important;
    }

    nav.navbar-full .navbar-brand {
        position: relative;
        top: -15px;
    }

    nav.navbar-sidebar ul.nav, nav.navbar-sidebar .navbar-brand {
        margin-bottom: 50px;
    }

        nav.navbar-sidebar ul.nav > li > a {
            padding: 10px 15px;
            font-weight: 700;
        }

    nav.navbar.bootsnav.navbar-transparent.white {
        background-color: rgba(255,255,255,0.3);
        border-bottom: solid 1px #bbb;
    }

    nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark, nav.navbar.bootsnav.navbar-transparent.dark {
        background-color: rgba(0,0,0,0.3);
        border-bottom: solid 1px #555;
    }

    nav.navbar.bootsnav.navbar-transparent.white .attr-nav {
        border-left: solid 1px #bbb;
    }

    nav.navbar.navbar-inverse.bootsnav.navbar-transparent.dark .attr-nav, nav.navbar.bootsnav.navbar-transparent.dark .attr-nav {
        border-left: solid 1px #555;
    }

    nav.navbar.bootsnav.no-background.white .attr-nav > ul > li > a, nav.navbar.bootsnav.navbar-transparent.white .attr-nav > ul > li > a, nav.navbar.bootsnav.navbar-transparent.white ul.nav > li > a, nav.navbar.bootsnav.no-background.white ul.nav > li > a {
        color: #fff;
    }

    nav.navbar.bootsnav.navbar-transparent.dark .attr-nav > ul > li > a, nav.navbar.bootsnav.navbar-transparent.dark ul.nav > li > a {
        color: #eee;
    }
}

@media (max-width: 992px) {
    nav.navbar .navbar-brand {
        margin-top: 0;
        position: relative;
        top: -2px;
    }

    .attr-nav > ul > li > a {
        padding: 16px 15px 15px;
    }

    nav.navbar.navbar-mobile ul.nav > li > a {
        padding: 15px;
    }

    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu > li > a {
        padding-right: 15px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu .col-menu .title {
        padding-right: 30px !important;
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    nav.navbar.navbar-mobile ul.nav ul.dropdown-menu .col-menu ul.menu-col li a {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    nav.navbar-full .navbar-brand {
        top: 0;
        padding-top: 10px;
    }
}

nav.navbar.navbar-inverse {
    background-color: #222;
    border-bottom: solid 1px #303030;
}

    nav.navbar.navbar-inverse ul.cart-list > li.total > .btn {
        border-bottom: solid 1px #222 !important;
    }

    nav.navbar.navbar-inverse ul.cart-list > li.total .pull-right {
        color: #fff;
    }

    nav.navbar.navbar-inverse.megamenu ul.dropdown-menu.megamenu-content .content ul.menu-col li a, nav.navbar.navbar-inverse ul.nav > li > a {
        color: #eee;
    }

    nav.navbar.navbar-inverse ul.nav > li.dropdown > a {
        background-color: #222;
    }

    nav.navbar.navbar-inverse li.dropdown ul.dropdown-menu > li > a {
        color: #999;
    }

    nav.navbar.navbar-inverse ul.nav .dropdown-menu h1, nav.navbar.navbar-inverse ul.nav .dropdown-menu h2, nav.navbar.navbar-inverse ul.nav .dropdown-menu h3, nav.navbar.navbar-inverse ul.nav .dropdown-menu h4, nav.navbar.navbar-inverse ul.nav .dropdown-menu h5, nav.navbar.navbar-inverse ul.nav .dropdown-menu h6 {
        color: #fff;
    }

    nav.navbar.navbar-inverse .form-control {
        background-color: #333;
        border-color: #303030;
        color: #fff;
    }

    nav.navbar.navbar-inverse .attr-nav > ul > li > a {
        color: #eee;
    }

    nav.navbar.navbar-inverse .attr-nav > ul > li.dropdown ul.dropdown-menu {
        background-color: #222;
        border-left: solid 1px #303030;
        border-bottom: solid 1px #303030;
        border-right: solid 1px #303030;
    }

    nav.navbar.navbar-inverse ul.cart-list > li {
        border-bottom: solid 1px #303030;
        color: #eee;
    }

        nav.navbar.navbar-inverse ul.cart-list > li img {
            border: solid 1px #303030;
        }

        nav.navbar.navbar-inverse ul.cart-list > li.total {
            background-color: #333;
        }

    nav.navbar.navbar-inverse .share ul > li > a {
        background-color: #555;
    }


    nav.navbar.navbar-inverse .dropdown-tabs .tab-menu {
        border-right: solid 1px #303030;
    }

        nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li > a {
            border-bottom: solid 1px #303030;
        }

    nav.navbar.navbar-inverse .dropdown-tabs .tab-content {
        border-left: solid 1px #303030;
    }

    nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li > a:hover, nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li > a:focus, nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul > li.active > a {
        background-color: #333 !important;
    }

.dropdown-menu .title a:hover, .dropdown-menu .title a:focus, .dropdown-menu .title a:active {
    color: unset !important;
}


.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    color: #6f6f6f !important;
}

nav.navbar-inverse.navbar-full ul.nav > li > a {
    border: none;
}

nav.navbar-inverse.navbar-full .navbar-collapse .wrap-full-menu {
    background-color: #222;
}

nav.navbar-inverse.navbar-full .navbar-toggle {
    background-color: #222 !important;
    color: #6f6f6f;
}

@media (min-width: 1024px) {
    nav.navbar.navbar-inverse ul.nav .dropdown-menu {
        background-color: #222 !important;
        border-left: solid 1px #303030 !important;
        border-bottom: solid 1px #303030 !important;
        border-right: solid 1px #303030 !important;
    }

    nav.navbar.navbar-inverse li.dropdown ul.dropdown-menu > li > a {
        border-bottom: solid 1px #303030;
    }

    nav.navbar.navbar-inverse ul.dropdown-menu.megamenu-content .col-menu {
        border-left: solid 1px #303030;
        border-right: solid 1px #303030;
    }

    nav.navbar.navbar-inverse.navbar-transparent.dark {
        background-color: rgba(0,0,0,0.3);
        border-bottom: solid 1px #999;
    }

        nav.navbar.navbar-inverse.navbar-transparent.dark .attr-nav {
            border-left: solid 1px #999;
        }

            nav.navbar.navbar-inverse.no-background.white .attr-nav > ul > li > a, nav.navbar.navbar-inverse.navbar-transparent.dark .attr-nav > ul > li > a, nav.navbar.navbar-inverse.navbar-transparent.dark ul.nav > li > a, nav.navbar.navbar-inverse.no-background.white ul.nav > li > a {
                color: #fff;
            }

    nav.navbar.navbar-inverse.no-background.dark .attr-nav > ul > li > a, nav.navbar.navbar-inverse.no-background.dark .attr-nav > ul > li > a, nav.navbar.navbar-inverse.no-background.dark ul.nav > li > a, nav.navbar.navbar-inverse.no-background.dark ul.nav > li > a {
        color: #3f3f3f;
    }
}

@media (max-width: 992px) {
    nav.navbar.navbar-inverse .navbar-toggle {
        color: #eee;
        background-color: #222 !important;
    }

    nav.navbar.navbar-inverse .navbar-nav > li > a {
        border-top: solid 1px #303030;
        border-bottom: solid 1px #303030;
    }

    nav.navbar.navbar-inverse ul.nav li.dropdown ul.dropdown-menu > li > a {
        color: #999;
        border-bottom: solid 1px #303030;
    }

    nav.navbar.navbar-inverse .dropdown .megamenu-content .col-menu .title {
        border-bottom: solid 1px #303030;
        color: #eee;
    }

    nav.navbar.navbar-inverse .dropdown .megamenu-content .col-menu ul > li > a {
        border-bottom: solid 1px #303030;
        color: #999 !important;
    }

    nav.navbar.navbar-inverse .dropdown .megamenu-content .col-menu.on:last-child .title {
        border-bottom: solid 1px #303030;
    }

    nav.navbar.navbar-inverse .dropdown-tabs .tab-menu > ul {
        border-top: solid 1px #303030;
    }

    nav.navbar.navbar-inverse.navbar-mobile .navbar-collapse {
        background-color: #222;
    }
}

@media (max-width: 767px) {
    nav.navbar.navbar-inverse.navbar-mobile ul.nav {
        border-top: solid 1px #222;
    }

    .navbar .dropdown-menu a {
        color: #6f6f6f;
    }
}

.sureliIndirimDiv {
    background-color: gray;
    border: 1px solid #ff4000;
    line-height: 30px;
    padding: 10px 10px 0;
}

.sureliIndirimCaption {
    width: 70%;
    height: 60px;
    font-size: 14px;
    line-height: 50px;
    text-align: left;
    padding-top: 5px;
    float: left;
    font-size: 20px !important;
    color: #fff;
    font-weight: 700;
}

    .sureliIndirimCaption span {
        float: right;
        margin-right: 10px;
    }

.sureliIndirim {
    width: 29%;
    height: 60px;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    padding-top: 5px;
    float: left;
    font-weight: 700;
    border: 1px solid #ccc;
}

.sureliIndirimAnaSayfa {
    width: 95% !important;
    position: absolute;
    left: 0;
    margin-left: 2.5%;
    height: auto;
    bottom: 3%;
    border: 1px solid #ccc;
}

@media(max-width: 1200px) {
    .sureliIndirimCaption {
        display: none;
    }

    .sureliIndirim {
        width: 100%;
    }
}

.kategoriUyari {
    padding: 20px;
    background-color: white;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    max-height: 120px;
    overflow: auto;
}
