/*********************************
4. Home
*********************************/

.home {
    width: 100%;
    height: 260px;
    background: transparent;
}

.home_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.home_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cde4f1;
    background: linear-gradient(#FFFFFF, #cde4f1);
    opacity: 0.9;
}

.home_content {
    width: 100%;
    height: 100%;
}

/*********************************
5. Single Product
*********************************/

.single_product {
    padding-top: 20px;
    padding-bottom: 140px;
}

.image_list li {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 165px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    cursor: pointer;
    padding: 15px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    overflow: hidden;
}

.image_list li:last-child {
    margin-bottom: 0;
}

.image_list li:hover {
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.image_list li img {
    max-width: 100%;
}

.image_selected {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(100% + 15px);
    height: 525px;
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    transform: translateX(-15px);
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
}

.image_selected img {
    max-width: 100%;
}

.product_description {
    background-color: #f7f7f7;
    padding: 30px;
    height: 100%;
    position: relative;
}

.product_category {
    font-size: 12px;
}

.product_category a {
    color: #6eb261;
}

.product_category a:hover {
    opacity: 0.8;
}

.product_name {
    font-size: 30px;
    font-weight: 500;
    margin-top: 11px;
    padding-right: 40px;
    word-break: break-word;
}

.product_rating {
    margin-top: 7px;
}

.product_rating i {
    margin-right: 4px;
}

.product_rating i::before {
    font-size: 13px;
}

.product_text {
    margin-top: 27px;
}

.product_text p:last-child {
    margin-bottom: 0px;
}

.order_info {
    margin-top: 53px;
}

.product_quantity span {
    display: block;
    height: 50px;
    font-size: 16px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    line-height: 50px;
    float: left;
}


.quantity_buttons {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 29px;
    border-left: solid 1px #e5e5e5;
}

.quantity_inc,
.quantity_dec {
    height: 48px;
    width: 30px;
    line-height: 48px;
    border: none;
    background-color: #fff;
    display: inline-block;
    text-align: center;
    user-select: none;
    cursor: pointer;
}

.quantity_inc {
    border-right: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    border-top: 1px solid #b1b1b1;
}

.quantity_dec {
    border-left: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    border-top: 1px solid #b1b1b1;
}

.quantity_control i {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

/* .quantity_control:active {
    border: solid 1px rgba(14, 140, 228, 0.2);
} */

.product_price {
    display: inline-block;
    font-size: 28px;
    font-weight: 500;
    clear: left;
}

.quantity_label {
    line-height: 48px;
    display: inline-block;
    width: 40px;
    height: 48px;
    text-align: center;
    background-color: #fff;
    user-select: none;
    cursor: pointer;
    border-top: 1px solid #b1b1b1;
    border-bottom: 1px solid #b1b1b1;
    margin-right: -4px;
    margin-left: -4px;
}

.button_container {
    margin-top: 5px;
}

.button_container button {
    width: 370px;
    margin-top: -2px;
    margin-left: 10px;
}

.cart_button {
    opacity: 0.8;
    display: inline-block;
    border: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 48px;
    color: #FFFFFF;
    padding-left: 35px;
    padding-right: 35px;
    outline: none;
}

.cart_button:not([disabled]) {
    cursor: pointer;
    opacity: 1 !important;
}

.cart_button:not([disabled]):focus {
    outline: none;
}

.cart_button:not([disabled]):hover {
    opacity: 1 !important;
}

.product_fav {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    margin-left: 36px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.product_fav:hover {
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.product_fav i {
    line-height: 36px;
    color: #cccccc;
}

.product_fav.active i {
    color: #df3b3b;
}

/*********************************
6. Recently Viewed
*********************************/

.viewed {
    padding-top: 51px;
    padding-bottom: 60px;
    background: #eff6fa;
}

.viewed_title_container {
    border-bottom: solid 1px #dadada;
}

.viewed_title {
    margin-bottom: 14px;
}

.viewed_nav_container {
    position: absolute;
    right: -5px;
    bottom: 14px;
}

.viewed_nav {
    display: inline-block;
    cursor: pointer;
}

.viewed_nav i {
    color: #dadada;
    font-size: 18px;
    padding: 5px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.viewed_nav:hover i {
    color: #606264;
}

.viewed_prev {
    margin-right: 15px;
}

.viewed_slider_container {
    padding-top: 50px;
}

.viewed_item {
    width: 100%;
    background: #FFFFFF;
    border-radius: 8px;
    padding-bottom: 25px;
}

.viewed_image {
    width: 100%;
    height: 200px;
}

.viewed_image a {
    width: 100%;
    height: 100%;
}

.viewed_image a img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.viewed_content {
    width: 100%;
    margin-top: 25px;
}

.viewed_price {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.viewed_item.discount .viewed_price {
    color: #df3b3b;
}

.viewed_price span {
    position: relative;
    font-size: 12px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin-left: 8px;
}

.viewed_price span::after {
    display: block;
    position: absolute;
    top: 6px;
    left: -2px;
    width: calc(100% + 4px);
    height: 1px;
    background: #8d8d8d;
    content: '';
}

.viewed_name {
    margin-top: 3px;
}

.viewed_name a {
    font-size: 14px;
    color: #000000;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.viewed_name a:hover {
    color: #6eb261;
}

.item_marks {
    position: absolute;
    top: 18px;
    left: 18px;
}

.item_mark {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
}

.item_discount {
    background: #df3b3b;
    margin-right: 5px;
}

.item_new {
    background: #6eb261;
}

.viewed_item.discount .item_discount {
    display: inline-block;
}

.viewed_item.is_new .item_new {
    display: inline-block;
}

/*********************************
7. Brands
*********************************/

.brands {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}

.brands_slider_container {
    height: 130px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 97px;
    padding-right: 97px;
}

.brands_slider {
    height: 100%;
}

.brands_item {
    height: 100%;
}

.brands_item img {
    max-width: 130px;
}

.brands_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer;
}

.brands_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.brands_nav:hover i {
    color: #676767;
}

.brands_prev {
    left: 40px;
}

.brands_next {
    right: 40px;
}

.product__carousel {
    display: block;
}

.product__carousel a {
    display: block;
    margin-bottom: 15px;
}

.product__carousel .gallery-top {
    border: 1px solid #ebebeb;
    border-radius: 3px;
    margin-bottom: 5px;
    max-height: 500px !important;
}

.product__carousel .gallery-top .swiper-slide {
    position: relative;
    overflow: hidden;
}

.product__carousel .gallery-top .swiper-slide a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.product__carousel .gallery-top .swiper-slide a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product__carousel .gallery-top .swiper-slide .easyzoom-flyout img {
    min-width: 100%;
    min-height: 100%;
}

.product__carousel .swiper-button-next.swiper-button-white,
.product__carousel .swiper-button-prev.swiper-button-white {
    color: #ff3720;
}

.product__carousel .gallery-thumbs .swiper-slide {
    position: relative;
    transition: border .15s linear;
    border: 1px solid #ebebeb;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    height: calc(100% - 2px);
}

.product__carousel .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
    border-color: #000;
}

.product__carousel .gallery-thumbs .swiper-slide img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

.product-vat-inc {
    position: absolute;
    font-size: 10px !important;
    bottom: -15px;
    left: 0px;
}

#productTabs li a {
    color: #7f7f7f;
}

#productTabs li a.active {
    color: #555;
}

.product-share {
    background-color: #eff6fa;
}

.nav-tabs .nav-item {
    margin-bottom: -1px;
    width: 20%;
    text-align: center;
    background: #f7f7f7;
    color: #fff;
    border-right: 1px solid #ddd;
}

.nav-tabs .nav-item:last-child {
    border-right: none;
}

.nav-tabs .nav-link {
    border: none
}

.nav-link .active {
    border-top: 1px solid #ff0000 !important;
}

#productTabs {
    border-left: 1px solid #f7f7f7;
    border-right: 1px solid #f7f7f7;
    border-top: 1px solid #f7f7f7;
}

.tab-content {
    border: 1px solid #f7f7f7;
    border-top: none;
}

.rating {
    float: left;
}

.rating span {
    float: right;
    position: relative;
}

.rating span input {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
}

.rating span label {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #ddd;
    background: #fff;
    font-size: 30px;
    margin-right: 2px;
    line-height: 30px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    cursor: pointer;
}

.rating span:hover~span label,
.rating span:hover label,
.rating span.checked label,
.rating span.checked~span label {
    color: #F90;
}


.product-comments .comment-single {
    border-top: 1px solid #ddd;
    padding: 20px 0px;
}

.product-comments .comment-single:first-child {
    border-top: none;
}

.product-comments .comment-single .cover-area {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    color: #ececec;
    float: left;
    border-radius: 100% !important;
    margin-right: 10px;
}

.product-comments .comment-single .comment-name {
    color: #606264;
}

.product-comments .comment-single .comment-stars {}

.product-comments .comment-single .comment-text {
    color: #555;
}

.product-comments .load-more__btn {
    background: #ececec;
    border: #ececec;
    color: #505050;
}

#optionPrice {
    background: #ececec;
    margin-right: 0px;
    margin-left: 0px;
    font-size: 15px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    height: 0px;
}

#optionPrice .content {
    margin-left: -5px;
    margin-right: -5px;
}

#optionPrice.active {
    padding: 15px 0px;
    height: auto;
}

.product-price-container {
    background-color: #ececec;
    height: 100px;
}

.short-description {
    background-color: #ececec;
    padding: 5px 10px;
}


.product-price-container .sales-type {
    display: inline-block;
    background-color: #6eb261;
    color: #fff;
    text-align: center;
    height: 100px;
    width: 100px;
    font-size: 16px;
    padding: 25px 0px;
}

.product-price-container .sales-type span {
    display: block;
}

.product-price-container .sales-type span.span1 {}

.product-price-container .sales-type span.span2 {}

.product-price-container .discount-amount {
    font-size: 14px;
    display: block;
    margin: 0px;
    padding: 0px;
    font-weight: 400;
    line-height: 33px;
}

.product-price-container .discount-price {
    display: block;
    font-size: 16px;
    line-height: 33px;
}

.product-price-container .original-price {
    display: block;
    font-size: 22px;
    line-height: 34px;
}

.product-price-container .not-discount-price {
    display: block;
    font-size: 22px;
    line-height: 100px;
}

.product-detail-ads-banners {
    width: 100%;
}

.product-detail-ads-banners .ads-item {
    height: 50px;
    padding: 10px 5px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    width: 100%;
}

.product-detail-ads-banners .ads-item .text {
    flex: 2;
    padding-left: 10px;
}

.product-detail-ads-banners .ads-item .text .text1 {
    color: #6eb261;
    font-size: 12px;
    line-height: 15px;
}

.product-detail-ads-banners .ads-item .text .text2 {
    color: #676767;
    font-size: 12px;
    line-height: 15px;
}

.product-detail-ads-banners .ads-item .icon {
    flex: 1;
    color: #6eb261;
    font-size: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.product-detail-ads-banners .ads-item .icon svg {
    height: 28px;
}

@media only screen and (max-width: 1060px) {
    .product-detail-ads-banners .ads-item .text div {
        font-size: 10px !important;
    }
}

.bread-crumb {
    display: flex;
    margin-bottom: 10px;
}

.bread-crumb li {
    padding: 5px;
}

.bread-crumb li.active {
    color: #6eb261;
}

.bread-crumb li:not(.active):after {
    content: '\003E';
    margin-left: 5px;
    color: #505050;
}

.bread-crumb li a {
    color: #505050;
    padding: 5px;
}

.bread-crumb li a:hover {
    color: #676767;
}

.product-comment-first-detail {
    margin-bottom: 30px;
}

.product-comment-first-detail img {
    width: 100%;
    height: 222px;
    object-fit: cover;
}

.product-comment-first-detail .avg-area {
    width: 100%;
    height: 222px;
    border-radius: 15px;
    border-width: 3px !important;
    padding: 15px;
    text-align: center;
}

.product-comment-first-detail .avg-area .title {
    position: absolute;
    top: -18px;
    font-size: 18px;
    color: #505050;
    background: #fff;
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
    line-height: 35px;
    padding: 0px 10px;
}

.product-comment-first-detail .avg-area .stars {
    margin-top: 10px;
}

.product-comment-first-detail .avg-area .degree {
    font-size: 80px;
    font-weight: 500;
    color: #505050;
    line-height: 122px;
}

.product-comment-first-detail .bar-list li {
    display: flex;
    margin-bottom: 18px;
    height: 30px;
}

.product-comment-first-detail .bar-list li .stars {
    flex: auto;
    max-width: 100px;
    line-height: 30px;
}

.product-comment-first-detail .bar-list li .bar {
    flex: auto;
    background-color: #ececec;
    padding: 5px;
    height: 20px;
    margin: 5px 15px;
    margin-right: 15px;
    border-radius: 10px;
}

.product-comment-first-detail .bar-list li .bar span {
    background-color: #6eb261;
    height: 10px;
    display: block;
    border-radius: 10px;
}

.product-comment-first-detail .bar-list li .bar-text {
    flex: auto;
    max-width: 30px;
    line-height: 30px;
}

#paytr_taksit_tablosu {
    clear: both;
    font-size: 12px;
    max-width: 1200px;
    text-align: center;
    font-family: Arial, sans-serif;
}

#paytr_taksit_tablosu::before {
    display: table;
    content: " ";
}

#paytr_taksit_tablosu::after {
    content: "";
    clear: both;
    display: table;
}

.taksit-tablosu-wrapper {
    margin: 5px;
    width: 280px;
    padding: 12px;
    cursor: default;
    text-align: center;
    display: inline-block;
    border: 1px solid #e1e1e1;
}

.taksit-logo img {
    max-height: 28px;
    padding-bottom: 10px;
}

.taksit-tutari-text {
    float: left;
    width: 126px;
    color: #a2a2a2;
    margin-bottom: 5px;
}

.taksit-tutar-wrapper {
    display: inline-block;
    background-color: #f7f7f7;
}

.taksit-tutar-wrapper:hover {
    background-color: #e8e8e8;
}

.taksit-tutari {
    float: left;
    width: 126px;
    padding: 6px 0;
    color: #474747;
    border: 2px solid #ffffff;
}

.taksit-tutari-bold {
    font-weight: bold;
}

@media all and (max-width: 600px) {
    .taksit-tablosu-wrapper {
        margin: 5px 0;
    }
}


.product-option-contain select.product-option {
    width: auto;
    display: block;
    margin: 0px;
    padding: 10px 40px;
    border: 2px solid #6eb261;
    -webkit-appearance: auto;
    border-radius: 5px;
    color: #6eb261;
    font-weight: bold;
}

.product-option-contain .product-option-custom-radio,
.product-option-contain .product-option-custom-checkbox {
    position: relative;
    display: inline-grid;
    margin-right: 5px;
    min-width: 90px;
    width: max-content;
    padding: 5px 10px;
    cursor: pointer;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px;
}

.product-option-contain .radio-container,
.product-option-contain .checkbox-container {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0px;
    left: 0px;
    border: 0.5px solid#999;
    border-radius: 4px;
}

.product-option-contain .radio-value-text,
.product-option-contain .checkbox-value-text {
    color: #777;
}

.product-option-contain .radio-value-text.not-price,
.product-option-contain .checkbox-value-text.not-price {
    line-height: 30px;
}

.product-option-contain .radio-value-price,
.product-option-contain .checkbox-value-price {
    display: block;
    line-height: 10px;
    font-size: 12px;
    color: #444;
}

.product-option-custom-radio input[type="radio"]:checked+span,
.product-option-custom-checkbox input[type="checkbox"]:checked+span {
    border: 3px solid #6fb261;
}

.product-option-custom-radio input[type="radio"]:checked+span+span,
.product-option-custom-checkbox input[type="checkbox"]:checked+span+span {
    color: #111;
}

.product-option-custom-radio input[type="radio"]:disabled+span,
.product-option-custom-checkbox input[type="checkbox"]:disabled+span {
    border-color: #c0c0c0;
}

.product-option-custom-radio input[type="radio"]:disabled+span+span,
.product-option-custom-checkbox input[type="checkbox"]:disabled+span+span,
.product-option-custom-radio input[type="radio"]:disabled+span+span+span,
.product-option-custom-checkbox input[type="checkbox"]:disabled+span+span+span {
    color: #c0c0c0;
}