﻿*{
    margin:0;
    padding:0;
}

@font-face {
    font-family: Barlow;
    src: url(/Fonts/Barlow-Light.ttf);
}

@font-face {
    font-family: Barlow-Medium;
    src: url(/Fonts/Barlow-Medium.ttf);
}

@font-face {
    font-family: Barlow-Bold;
    src: url(/Fonts/Barlow-Bold.ttf);
}

@font-face {
    font-family: Barlow-Extra;
    src: url(/Fonts/Barlow-ExtraBold.ttf);
}

:root {
    /*colors*/
    --orange-color: rgb(255 137 0);
    --default-border-color: #dedede;
    --dark-color: rgb(55 62 78);
    --dark-color2: rgb(88 96 114);
    --h-color: rgb(89 89 89);
    --light-color: rgb(238 238 238);
    --danger-color: #ea222f;
    --success-color: #28a745;
    /*fonts*/
    --barlow: Barlow;
    --barlow-medium: Barlow-Medium;
    --baralow-bold: Barlow-Bold;
    --baralow-extra: Barlow-Extra;
}

body {
    font-family: var(--Barlow-Medium);
    background: rgb(238 238 238);
}

.mobil-block {
    display: none
}

.counter-info {
    position: absolute;
    top: 0;
    left: 97px;
    color: #fff;
    background: #ce1b31;
    min-width: 15px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    display:none;
}

.logo img {
    height: 85px;
    width: 175px;
    object-fit: contain;
}

.mobil-menu{
    display:none;
}

@-webkit-keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 90, 14, 0.5), 0 0 0 3px rgba(254, 90, 14, 0.5), 0 0 0 6px rgba(254, 90, 14, 0.5);
    }

    100% {
        box-shadow: 0 0 0 3px rgba(0, 9, 0, 0.15), 0 0 0 6px rgba(254, 90, 14, 0.5), 0 0 0 9px rgba(50, 100, 245, 0);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 90, 14, 0.5), 0 0 0 3px rgba(254, 90, 14, 0.5), 0 0 0 6px rgba(254, 90, 14, 0.5);
    }

    100% {
        box-shadow: 0 0 0 3px rgba(0, 9, 0, 0.15), 0 0 0 6px rgba(254, 90, 14, 0.5), 0 0 0 9px rgba(50, 100, 245, 0);
    }
}

/***** custom scrollbar *****/
/* width */
.scrollbar::-webkit-scrollbar {
    width: 5px;
}

/* Track */
.scrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
.scrollbar::-webkit-scrollbar-thumb {
    background: var(--default-border-color);
    border-radius: 10px;
}

/* Handle on hover */
.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}


/**** Genel *****/
.clearfix::after{
    content:"";
    clear:both;
}

img{
   max-width:100%;
   box-sizing:border-box;
}

ul{
    list-style:none;
}

a {
    color: var(--dark-color);
    text-decoration:none;
}

.mb-15{
    margin-bottom:15px;
}

.bold-text {
    font-family: Barlow-Bold
}

.tekSatir {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.ikiSatir {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ucSatir {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.flex-div{
    display:flex;
    align-items:center;
}

.margin-0{
    margin:0;
}

/***** makbuz *****/
.makbuz{
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.2);
}

.makbuz .content{
    position:absolute;
    left:50%;
    top:50%;
    max-width:768px;
    width:90%;
    transform:translate(-50%,-50%);
    background:#fff;
    padding:15px;
    border-radius:5px;
}

.makbuz .header{
    text-align:center;
    border-bottom:1px solid var(--default-border-color);
    margin-bottom:15px;
    position:relative
}

.makbuz .header .fa{
       width: 60px;
    height: 60px;
    background: var(--success-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    border-radius: 50%;
}

.makbuz .header h1{
    font-size:24px;
    color:var(--success-color);
    font-family:Barlow-Extra;
    margin-top:15px;
}

.makbuz .subtitle{
    color:var(--success-color);
    font-size:14px;
}

.makbuz table{
    border:0
}

.makbuz tr{
    background:#fff!important
}

.makbuz td,th{
    border:1px solid var(--dark-color)
}

.makbuz .body{
    max-height:550px;
    overflow-y:scroll;
    padding-right:15px
}

/***** modal *****/
.mymodal {
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,0.4);
    width:100%;
    height:100%;
    left:0;
    top:0;
    display:flex;
    align-items:center;
    justify-content:center;
    display:none;
}

.mymodal .content {
   width: 90%;
    max-width: 650px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.mymodal .m-header{
    margin-bottom:15px;
    padding-bottom:15px;
    border-bottom:1px solid var(--default-border-color)
}

.mymodal .m-body{
    
    max-height:450px;
    overflow-y:scroll;
}

.m-footer{
    text-align:right;
    margin-top:15px;
    padding-top:15px;
    border-top:1px solid var(--default-border-color)
}

.m-footer .btn {
    width: auto;
    padding: 5px;
}

.modal-lg, .modal-xl {
    max-width: 650px;
}

/***** tab menu *****/
.tab-menu ul{
    display:inline-block;
    margin-bottom:0;
}

.tab-menu ul li{
    float:left;
    padding:15px;
}

.tab-menu ul li a{
    text-decoration:none;
    font-size:16px;
    font-family:Barlow
}

.tab-menu ul li.active{
    border-bottom:3px solid #000
}

.tab-menu ul li.active a{
    font-family:Barlow-Bold;
    font-weight:bold;
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
}

/***** alert *****/
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: fixed;
    z-index: 9999;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 500px;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
}

.alert .btn-close{
    border: 0;
    background: transparent;
    height: 25px;
    width: 25px;
    position: absolute;
    right: -13px;
    top: -9px;
    border-radius: 50%;
}

.alert-danger .btn-close {
    background: #f2dede;
    color: #b15453;
}

.alert-warning .btn-close {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

.alert-success .btn-close {
    color: #3c763d;
    background-color: #dff0d8;
}

.alert-info .btn-close {
    color: #31708f;
    background-color: #d9edf7;
}

/***** Paging *****/
.paginationn {
    margin: 2em 0;
}

.paginationn a.active {
    background: linear-gradient(0deg, rgb(255, 126, 0) 0%, rgb(255, 159, 0) 100%);
    color: #fff;
}

.paginationn a {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding: 0.5em 1em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #54667a;
    border: 1px solid transparent;
    border-radius: 2px;
}

/***** colors *****/
.orange-color{
    color:var(--orange-color);
}

.dark-color{
    color:var(--dark-color);
}


/***** inputs *****/
.select {
    position: relative;
    display: block;
    width: 100%;
    height: 3em;
    padding: 0.71429em 27.5px 0.71429em 0.71429em;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZmlsbD0iI2FhYSIgZD0iTTkuODc1IDEwLjQzOEwxNiAxNi41NjNsNi4xMjUtNi4xMjVMMjQgMTIuMzEzbC04IDgtOC04eiIvPjwvc3ZnPg==);
    background-position: right 6.5px center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    border-radius: 2px;
    border: 0.5px solid #dde6e9;
    color: #5d6a77;
    cursor: pointer;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
    transition: border .3s,background-color .3s;
    outline: none;
}

/***** buttons *****/
.btn {
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
    font-family: Barlow-Medium;
    display: inline-block;
    box-sizing: border-box
}

.btn-dark{
    background:var(--dark-color);
}

.btn-dark:hover{
    background:var(--orange-color)!important
}

.btn-dark2{
    background:var(--dark-color2);
}

.btn-orange{
    background:var(--orange-color);
}

.btn-small {
    width: auto;
    padding: 0px 5px;
    height: 28px;
    position: relative;
    align-items: center;
    display: inline-flex;
    top: -2px;
    font-size: 12px
}

.btn-close {
    border: 0;
    outline: none;
    background: red;
    padding:5px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 0 8px rgb(255 255 255 / 20%);
    position: absolute;
    top: -10px;
    right: -70px;
}


.nav-btn {
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    background-image: linear-gradient(to right, rgb(78, 153, 217), rgb(58, 99, 134));
    min-width: 7rem;
    padding: 0px 0.75rem;
    border-radius: 1.25rem;
    text-align: left;
    color: #fff !important;
    padding: 7px 8px;
    text-align: center;
    justify-content: center;
    font-family: 'Barlow';
    font-weight: 100;
}


/***** h etiketleri *****/
.section-header{
    padding:25px 0;
}

.section-header h2::before{
    content: "";
    width: 6%;
    height: 3px;
    position: absolute;
    bottom: -5px;
    background: var(--orange-color);
    position: absolute;
}

h1 {
    font-family:Barlow-Bold;
    color:var(--h-color);
}

h2{
    font-family:Barlow-Medium;
    color:var(--h-color);
    margin-bottom:0;
    position:relative;
    font-size:24px;
}

.page-title h1{
    display:inline-block;
    font-size:17px;
}

.page-title .sub-title {
    font-size: 12px;
    margin-left: 15px;
    font-family: 'Barlow-Medium';
    color: var(--h-color);
}

/***** search vhicle *****/
.search-vhicle-container .btnFiltrele{
    display:none;
}

.search-vhicle {
    position: relative;
    border-radius: 3px;
    padding: 2rem;
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 3px;
    background: #fff;
    margin-bottom: 15px;
}

.search-vhicle .select{
    height:2.5em;
    padding:8px;
    font-size:.9em;
    font-family:Barlow-Bold;
    font-weight:bold
}

.search-vhicle .form-group{
    margin-bottom:30px;
}

.search-vhicle .form-group:last-child{
    margin:0;
}

/***** filter box *****/
.filter-box h2 {
    color: #000;
    font-size: 16px;
    font-family: Barlow-Bold;
    font-weight: bold;
    margin-bottom: 6px;
}

.filter-box .filter-list{
    max-height:350px;
    overflow-y:scroll;
}

.filter-box .filter-list ul {
    margin-left:10px;
}

.filter-box .filter-list li{
    margin-bottom:10px;
    position:relative;
}

.filter-box .filter-list li::before{
        content: "";
    width: 15px;
    height: 15px;
    border: 1px solid #dedede;
    display: inline-block;
    margin-right: 5px;
    position: relative;
    top: 2px;
    border-radius: 50%;
}


/***** account navigation *****/
.account-navigation {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.account-navigation li {
       float: left;
    font-family: Barlow-Bold;
    font-weight: bold;
    font-size: 14px;
}

.account-navigation li a{
    text-decoration:none;
    padding:10px;
    display:flex;
    align-items:center;
}

.account-navigation li a span{
    margin-right:5px;
    font-size:16px;
}

.account-navigation a.button{
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    background-image: linear-gradient(to right, rgb(78, 153, 217), rgb(58, 99, 134));
    min-width: 7rem;
    padding: 0px 0.75rem;
    border-radius: 1.25rem;
    text-align: left;
    color: #fff;
    padding: 7px 8px;
    text-align: center;
    justify-content: center;
    font-family: 'Barlow';
    font-weight: 100;
}


/*
    search box
*/
.search-navigation{
    min-height:85px;
    display:flex;
    align-items:center;
}

.search-box {
    width: 100%;
    position: relative;
    border-radius: 25px;
    background: rgb(238 238 238);
    height: 46px;
    border:2px solid transparent;
}

.search-box:hover{
    border:2px solid var(--danger-color);
    background:#fff;
}

.search-box .search-icon{
    float: left;
    width: 35px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box .input {
    display: inline-block;
    width: 85%;
}

.search-box input[type=text]{
    border: 0;
    outline: none;
    background: transparent;
    width: 90%;
    padding: 8px 5px;
    font-size:14px;
    font-family:Barlow-Medium;
    height: 42px;
    position: relative;
}

.search-box button{
    background: var(--danger-color);
    color: #fff;
    position: absolute;
    right: -1px;
    top: -2px;
    height: 46px;
    width: 100px;
    border: 0;
    outline: none;
    border-radius: 25px;
}

.search-box .search-result{
    position:absolute;
    top:calc(100% + 5px);
    left:0;
    width:100%;
    border:1px solid #dddd;
    background:#fff;
    display:none;
    z-index:990;
    border-radius:15px;
    overflow:hidden
}

.search-box .search-row{
    padding:0 10px;
    border-bottom:1px solid #ebebeb
}

.search-box .search-row:hover{
   background:#ebebeb;
}

.search-box .search-row.active{
    background:#ebebeb;
}

.search-box .product-img{
    width:50px;
    float:left;
}

.search-box img{
    width:50px;
    height:50px;
    object-fit:contain;
    margin-right:10px;
}

.search-box .product-row{
   display: inline-block;
   float: left;
   width: calc(100% - 65px);
   margin-bottom:10px;
   margin-left:10px;
}

.search-box .search-result a{
    display:inline-block;;
    color: #212529;
    font-family:var(--barlow-medium);
    font-size:12px;
}

.search-box p{
    margin:0;
}

.search-box.small {
    width:275px;
    display:inline-block;
    border-color:var(--danger-color)
}

.search-box.small input[type=text]{
   width: 100%;
    height: 33px;
}

.search-box.small button{
       width: 49px;
  background:var(--danger-color)
}
/***************************/


/*add cart info*/
.add-cart-info {
    border: 1px solid #c9c9c9;
    box-shadow: 1px 2px 2px 0 rgba(0,0,0,.18);
    display: inline-flex;
    position: fixed;
    right: 0;
    width: 350px;
    z-index: 999;
    background: #fff;
    min-height: 100px;
    right: 20px;
    align-items: center;
    padding:15px;
    display:none
}

.add-cart-info .itemImg{
    display:inline-block;
    width:30%;
    float:left;
    border:1px solid #c9c9c9;
    padding:5px;
}

.add-cart-info img{
       width: 100%;
    height: 100px;
    object-fit: contain;
}

.add-cart-info .item-info{
    display:inline-block;
    width:65%;
    float:right;
    margin-left:5%;
}

.add-cart-info p{
    margin-bottom:5px;
}

.add-cart-info .title{
    font-size: 16px;
    color: #2ca71f;
    display: block;
    font-family:Barlow-Bold
}

.call {
    padding: 7px;
    border-radius: 2px;
    display: inline-block;
    width: 90px!important;
    font-size: 21px;
}

.call.whatsapp {
   background: #25D366
}

/***************************/

/***** main slider *****/
.main-slider{
    position:relative;
    border-bottom:2px solid var(--dark-color);
    background:var(--dark-color);
    max-height:450px;
    margin-bottom:50px;
}

.main-slider img{
    width:100%;
    height:450px;
    object-fit:cover;
}


/***** Product Card *****/
.card-list .column{
   margin-bottom:30px;
}

.card-list .item {
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    transition: all 500ms;
    background:#fff;
    margin:5px;
    border-radius:5px;
}

.card-list .item:hover{
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform:translateY(-5px)
}

.card-list .cardHeader {
    padding: 15px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--default-border-color);
}

.card-list .cardHeader a{
    display:block;
    max-height:200px;
    overflow:hidden
}

.card-list img{
    object-fit: contain;
    width: 100%;
    height:200px;
}

.marka {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger-color);
    display: inline-block;
    color: #fff;
    padding: 2px 5px;
    font-family: 'Barlow';
    font-size: 12px;
}

.brand {
    font-size: 12px;
    position: relative;
    top: -24px;
    background: #ffff;
}

.card-list .cardBody{
    text-align:center;
    padding:10px
}

.card-list .cardBody a{
    color:var(--dark-color);
    font-family:Barlow-Medium
}

.card-list .cardBody p{
    font-size: 12px;
    font-weight: 400;
    height: 29px;
    line-height: 15px;
    padding: 0 15px;
    overflow: hidden;
    margin:0;
}

.card-list .cardFooter{
    text-align:center;
    margin-bottom:10px;
}

.card-list .add-cart{
    padding:7px;
    border-radius:2px;
    display:inline-block;
    width:auto;
}

.card-list .discount{
    width: 37px;
    height: 84px;
    position: absolute;
    top: -18px;
    right: 2px;
}

.card-list .discount p {
    font-size: 12px;
}

.layout-grid{
    margin-bottom:15px;
}

.layout-grid a{
    margin-right:10px;
    text-decoration:none;
    font-size:20px;
}

.layout-grid a:hover{
    color:var(--danger-color)
}

/***** defatul card ******/
.default-card {
    position: relative;
    border-radius: 3px;
    padding: 2rem;
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 3px;
    background: #fff;
    margin-bottom: 15px
}

/***** product list *****/
.product-list .product-item {
    background: #fff;
    box-shadow: rgb(0 0 0 / 16%) 0px 3px 6px, rgb(0 0 0 / 21%) 0px 3px 6px;
   border-radius:3px;
   margin-bottom:30px;
   min-height:202px;
}

.product-list strong{
    font-family:Barlow-Bold;
}

.product-list .item-img {
    display: flex;
    align-items: center;
    justify-content: center;
    position:relative;
}

.kampanya {
    position: absolute;
    z-index: 999;
    top: 31%;
    right: 15px;
    color: #fff;
    width: 70px;
    height: 72px;
    border-radius: 50px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    animation: flash 2s;
    animation-iteration-count: infinite;
}

.kampanya img{
        transform: rotate(19deg);
}

@keyframes flash {
    0% {
        opacity: .5;
        transform:scale(1);
        
    }

    50% {
        opacity: 1;
        transform: scale(1.1)
    }

    100% {
        opacity: .5;
        transform: scale(1)
    }
}

.product-list .item-img img {
    display: inherit;
    padding: 5px;
    max-height: 180px;
}

.product-list .item-info{
    background:var(--light-color);
    padding:10px;
    min-height:202px;
    font-size:14px;
}

.product-list .item-info p{
    margin-bottom:15px;
}

.product-list .item-control{
    padding-right:10px;
    padding-bottom:10px;
    padding-top:10px;
}

.product-list .item-control p{
    line-height:28px;
}

.product-list .price-wrapper .price-regular {
    color: rgb(89, 89, 89);
    text-align: left;
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.25s ease 0s;
    margin-bottom: 0;
    text-align: center;
}

.product-list .price-wrapper .price-sale {
    color: rgb(2, 2, 2);
    text-align: left;
    font-size: 27px;
    font-family:Barlow-Extra;
    font-weight: 500;
    transition: color 0.25s ease 0s;
    text-align:center;
}

.discount {
    background: url(/Images/Genel/indirim.svg) center center / contain no-repeat;
    width: 57px;
    height: 66px;
    color: white;
    text-align: center;
    padding-top: 25px;
    background-position: center center !important;
    background-size: contain !important;
    background-color: transparent !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.discount p{
 font-family: Barlow-Bold;
    font-size: 18px;
    font-weight: 700;
    transform: rotate(-45deg);
}

/***** Product Detail *****/
.product-detail {
    margin: 0 0 2em 0;
    border: 1px solid var(--default-border-color);
    background: #fff;
    box-shadow: rgb(0 0 0 / 10%) 0px 2px 3px;
}

.product-detail .img-product {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-info {
    border-left: 1px solid var(--default-border-color);
}

.product-info .content {
    padding: 30px 30px 10px 30px;
    position: relative;
}

.product-info strong{
    font-family:Barlow-Bold;
    margin-right:10px;
    width:100px;
    display:inline-block;
}

.product-detail .line{
    padding:5px 0;
}

.product-detail .price-wrapper {
    margin: 51px 0;
}

.price-wrapper .sale-regular .sale{
    font-size: 2rem;
    color: var(--orange-color);
    font-weight: 500;
    margin-right: 1.2rem;
}

.price-wrapper .sale-regular .regular{
     font-size: 1.3rem;
    color: #c4baba;
    text-decoration: line-through;
}

.price-wrapper .sale-regular ul{
    display:flex;
    align-items:center;
}

.price-wrapper .sale-regular ul li {
   margin-right:15px;
}

.price-earning {
    display: inline-block;
    border: 1px solid #efefef;
    background-color: #f9f9f9;
    font-family: Barlow-Bold;
    text-align: center;
    background: url(//st2.myideasoft.com/idea/cb/13/themes/selftpl_5d4d5644df40b/assets/images/icon-earning.svg?revision=7.1.5.0-1-1627648597) no-repeat top 5px center;
    padding: 49px 15px 15px 15px;
    width: 100%;
}

.quantity-controls {
    display: inline-flex;
    border: 1px solid #eaeaea;
    height: 50px;
    margin-right: 15px;
    border-radius: 3px;
}

.quantity-controls button{
     border: 0;
    background: transparent;
    outline: none;
    width: 25px;
    font-size: 1.5rem;
}

.quantity-controls input{
    border: 0;
    width: 50px;
    outline: none;
    text-align: center;
    font-size: 1.5rem;
}

.cart-button div{
    float:left
}


.product-detail h1{
    font-size:22px;
    font-family:Barlow-Medium;
}

.fa-star{
    color:var(--orange-color)
}



/***** Bread Crump *****/
.bread-crumb {
    overflow-x: auto;
    border-radius: 2px;
    padding-bottom:15px;
}

.bread-crumb ul {
    border-radius: .25rem;
    display: flex;
    align-items: center;
    margin-bottom:0;
}

.bread-crumb ul li {
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
}

.bread-crumb ul li a{
    font-size:12px;
    font-family:Barlow-Medium;
}

.bread-crumb ul li:first-child::before {
    content: "";
    display: inline-block;
    color: orange;
    padding: 0 5px;
}

.bread-crumb ul li::before {
    content: "\f105";
    display: inline-block;
    color: rgb(255 126 0);
    padding: 0 5px;

     font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit
}

/***** basket *****/
.white-box {
    background-color: #fff;
    color: #202020;
    font-size: 13px;
    margin-bottom: 20px;
    clear: both;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
    padding: 30px 20px;
    border-radius:3px;
}

.white-box .title {
    font-size: 18px;
    font-family:Barlow-Medium;
}

.basket .row{
    border-bottom:1px solid var(--default-border-color);
    position:relative;
}

.basket *{
    font-family:Barlow-Medium
}

.basket strong{
    font-family:Barlow-Bold;
    font-size:18px;
}

.basket .btn-sepet-sil {
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: var(--danger);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff
}


/***** Choose *****/
.choose{
    border-top: 1px solid #F7F7F0;
    line-height: 0;
}

 .choose ul{
    margin-bottom:0;
    display:inline-block
}

 .choose ul li{
    float: left;
    padding: 10px 5px 10px 10px;
}

 .choose a {
    color: var(--dark-color2);
    font-size: 13px;
    padding-left: 0;
    padding-right: 0;
    transition: 500ms all;
}

 .choose i{
    margin-right:3px;
}

.sale {
    color: var(--orange-color);
    font-size: 22px;
    margin-right: 15px;
    font-weight:600;
    font-family:var(--baralow-bold)
}

.regular {
    color: #c5c5c5;
    font-size: 14px;
    text-decoration: line-through;
}

.price-info {
    position: relative;
    top: -16px;
    left: -13px;
}


/***** Tables *****/
table {
    border-collapse: collapse;
    border-spacing: 0;
    min-width: 100%!important;
    border: 1px solid #ddd;
}

table .subtr{
    display:none;
}

th, td {
    text-align: left;
    padding: 8px;
    border: 1px solid var(--default-border-color);
    font-family:Barlow-Medium
}

table th {
    padding: 5px;
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--dark-color2);
    color: #fff;
    font-family:Barlow-Bold
}

table tbody tr:nth-child(odd) {
    background-color: #f2f4f8;
}

table a{
    color:#444
}

.table-responsive{
    overflow:auto;
    position:relative;
}

table .btn {
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
    border-radius: 0.25rem;
    padding: 0.5rem 2em;
    font-size: 14px;
    display: inline-block;
    min-width: 100px;
    border: 1px solid transparent;
    cursor: pointer;
}

table input[type=text]{
    width:75px;
    border:1px solid var(--default-border-color);
    padding:2px 5px;
    outline:none;
}

.islemler{
    position:relative;
}

.islemler a.btn{
    padding:7px;
    position:relative;
}

.islemler a.btn span{
    float: right;
    position: relative;
    top: 0px;
    font-size: 19px;
   
}

.islemler ul{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    z-index:9;
    -webkit-box-shadow: 0 0px 3px rgb(0 0 0 / 15%);
    -moz-box-shadow: 0 0px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0px 3px rgb(0 0 0 / 15%);
    border-radius:0 0 5px 5px;
    display:none;
}

.islemler ul li{
    padding:5px;
    border-bottom:1px solid var(--default-border-color)
}

.islemler ul li a{
    display:block;
    width:100%;
}

.islemler:hover > ul{
    display:block;
}

.islemler:hover > a.btn{
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
}



/***** footer *****/

.footer {
    border-top: 1px solid var(--default-border-color);
    background: var(--dark-color);
    position: relative;
    clear: left;
    min-height: 450px;
    padding: 2em 0;
    margin-top:50px
}

.footer h1{
    color:#fff
}

.footer .company-info p{
    color: #fff;
    font-family:var(--barlow-medium);
    font-size: 12px;
    font-weight: 300;
}

.footer .adress{
    position:relative;
}

.footer img{
    width:100%;
}

.footer .adress p{
    color: #fff;
    font-family: var(--barlow-medium);
    font-size: 14px;
    font-weight: 300;
    left: 25px;
    position: absolute;
    top: 50px;
}

.footer-widget h4 {
    font-size: 14px;
    font-family: 'Barlow-Bold';
    color: #fff;
}

.footer ul li{
    padding:5px;
}

.footer ul li::before{
    content:"";
    width:3px;
    height:3px;
    background:#fff;
    display:inline-block;
    position:relative;
    bottom:4px;
    margin-right:5px;
}

.footer ul li a{
    color:#fff
}

.footer ul li:hover > a{
   color:var(--orange-color)
}

.iconLogo {
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items:center;
    justify-content:center;
    padding: 5px;
    color: #fff!important;
    border-radius: 2px;
    transition:all 500ms;
}

.iconLogo:hover{
    transform:translateY(-5px)
}

.iconLogoFb {
    background: #4267B2
}

.iconLogoTw{
    background:#1DA1F2
}

.iconLogoYt {
   background: #FF0000;
}

.iconLogoIns{
    background:#8a3ab9
}

/*
    subscrip
*/
.subscribe-content {
    position:relative;
    height:35px;
    background:var(--dark-color2)
}

.subscribe-content input[type=text]{
  border:0;
  outline:0;
  background:transparent;
  width:85%;
  padding-left:5px;
  height:35px;
  color:#eaeaea
}

.subscribe-content button{
    width:15%;
    border:0;
    position:absolute;
    right:0;
    height:35px;
    background:var(--orange-color);
    color:#fff
}

.subscribe-content input[type=text]::-webkit-input-placeholder { /* Edge */
    color: #eaeaea;
}

.subscribe-content input[type=text]:-ms-input-placeholder { /* Internet Explorer */
    color: #eaeaea;
}

.subscribe-content input[type=text]::placeholder {
    color: #eaeaea;
}

.pay-list{
    margin:3em 0;
}

.pay-list img{
    width:20%;
    margin-left:5px;
    opacity:0.7;
}

.copright{
    border-top:1px solid var(--default-border-color); 
    margin-top:4em; 
    padding-top:4em;
}

.copright p {
   color: #fff
}

