﻿::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #000;
    border-radius: 50px;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-weight: 500;
    overflow-x: hidden !important;
    width: 100vw !important;
    position: relative;
}


/* Genel Ayarlar Css */

.weta-icerik-tag, .weta-slider-tag, .weta-counter-tag, .weta-parallax-tag {
    font-size: var(--site-title-size);
    font-weight: var(--site-title-weight);
}

a {
    text-decoration: none;
}

.weta-icerik-tag, .img-description {
    color: var(--site-title-color);
}

.section-header .col-lg-2 {
    display: flex;
    align-items: center;
}

@media(max-width: 768px) {
    .weta-slider-tag {
        font-size: 24px;
        padding: 0px 50px;
    }
}

img {
    border-radius: var(--site-image-radius);
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: 'FontAwesome' !important;
}

p, .btn {
    font-size: var(--site-paragraph-size) !important;
}

p {
    font-weight: 400;
}


.logo img {
    max-height: 50px !important;
}

.btn-color {
    background-color: var(--site-color);
    border-color: var(--site-color);
    transition: all 0.4s;
    color: #fff !important;
}

    .btn-color:hover {
        background-color: var(--site-title-color);
        border-color: var(--site-title-color);
    }

footer {
    background: var(--site-footer-color);
    color: var(--site-footer-title-color);
}

    footer span, footer p, footer a {
        color: var(--site-footer-title-color);
    }

.body-content {
    position: relative;
    overflow: hidden;
}

@media(min-width:768px) {
    .body-content {
        min-height: calc(100vh - 135px);
    }
}

@media(max-width:768px) {
    .body-content {
        min-height: 85vh;
        overflow: hidden;
    }
}

html {
    scroll-behavior: smooth;
}

img {
    width: auto;
    max-width: 100%;
}

.form-control:focus {
    border-color: var(--site-color);
}

.rexa-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.pageDetailContent {
    padding: 70px 0px;
}

@media(max-width: 768px) {
    .pageDetailContent {
        padding: 25px 0px;
    }
}


/* Parallax Css */

.parallax-section {
    background-size: cover;
    min-height: 700px;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #fff !important;
    position: relative;
    overflow: hidden;
}
.parallax-section video{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    .parallax-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #111;
        opacity: 0.4;
        z-index: 0;
    }

    .parallax-section .container {
        position: relative;
    }

li {
    list-style-type: none;
}

/* Footer Css */
footer {
    width: 100vw;
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px 0px;
    box-shadow: 0px 0px 15px -5px rgb(56 56 56 / 30%);
}

.footer .footer-pages {
    margin: 0px;
    padding: 0px;
}

    .footer .footer-pages li {
        padding: 10px 0px;
    }

.footer .contact-oge {
    margin-bottom: 15px;
}

.footer .contact-oge-icon {
    margin-right: 10px;
}

.footer .footer-info-list {
    margin-top: 30px;
}

@media(max-width: 768px) {
    footer, .footer .contact-oge {
        text-align: center !important;
    }

        footer .contact-oge a {
            justify-content: center;
        }

    .header2 {
        display: none !important;
    }

    .section-header .row:nth-child(1) {
        align-items: center;
    }

    #footer-col {
        margin: 25px 0px;
    }

    .footer-map {
        padding: 0px 45px;
    }

    #footer-social-media {
        justify-content: center;
    }
}


/* Header Css */
.section-header.fixed {
    position: sticky;
    top: 0;
    line-height: 65px;
    height: 65px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    z-index: 100;
    animation-name: headerAnimate;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

/*@media(max-width:768px) {
    .section-header.fixed {
        animation-name: none;
        animation-duration: 0s;
        animation-fill-mode: none;
    }
}*/

@keyframes headerAnimate {
    0% {
        transform: translate(0px, -70px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

.navbar-expand-sm .navbar-nav .nav-link {
    font-weight: bold;
}

.section-header {
    box-shadow: 0px 0px 15px -5px rgb(56 56 56 / 30%);
    background: var(--site-header-color);
    height: 75px;
    width: 100%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    position: relative;
}

    .section-header .col-lg-3 {
        display: flex;
        align-items: center;
    }

    .section-header .col-lg-9 {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .section-header #navigation > ul > li a {
        color: var(--site-header-title-color);
    }
/* Desktop Header Css */
@media (min-width: 768px) {
    .section-header #navigation {
        align-items: center;
        display: flex;
        width: 100%;
    }

    .section-header .container-fluid {
        padding: 0px 50px;
    }

    .section-header #navigation > ul {
        list-style: none;
        width: 100%;
        justify-content: end;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 100%;
        margin: 0px;
    }

        .section-header #navigation > ul > li, .lang-menu > ul > li {
            height: 70px;
            line-height: normal;
            align-items: center;
            padding: 0 20px;
            line-height: 70px;
            transition: 0.3s;
            -webkit-transition: 0.3s;
        }

        .section-header #navigation > ul > li, .section-header .lang-menu > ul > li {
            height: 70px;
        }

            .section-header #navigation > ul > li a, .nav-right .select-language .lang-menu > ul > li > a {
                display: block;
                color: var(--site-header-title-color);
                font-size: 16px;
                position: relative;
                text-transform: capitalize;
                letter-spacing: 0.02em;
                font-weight: 500;
                position: relative;
            }

                .section-header #navigation > ul > li a::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    right: 0;
                    height: 4px;
                    background-color: var(--site-color);
                    width: 0%;
                    transition: all .3s ease;
                }

    .section-header #navigation .dropdown-menu li a::after {
        display: none !important;
    }

    .section-header #navigation > ul > li:hover a::after {
        width: 100%;
    }

    .section-header #navigation > ul > li a:hover, .nav-right .select-language .lang-menu > ul > li > a:hover {
        color: var(--site-color);
    }

    .section-header #navigation > ul > li .dropdown-trigger {
        display: none;
    }

    .section-header #navigation > ul > li.dropdown .dropdown-trigger {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        font-size: 10px;
        display: block !important;
    }

    .section-header.fixed li.dropdown:hover #main-menu {
        top: 65px;
    }

    .section-header li.dropdown:hover #main-menu, .section-header li.dropdown:hover #custom, .section-header li.dropdown:hover #member-info {
        visibility: inherit;
        display: block;
        top: 75px;
        opacity: 1;
    }

    .section-header li#multi-dropdown #multi-menu {
        left: 108%;
    }

    .section-header li#multi-dropdown:hover #multi-menu {
        visibility: inherit;
        display: block;
        top: 0;
        opacity: 1;
        left: 108%;
    }
}

@media(max-width:768px) {
    .section-header #navigation > ul > li, #languages form {
        position: relative !important;
    }

    .section-header #languages.active .dropdown-menu {
        visibility: inherit;
        display: block;
        top: 0px;
        opacity: 1;
        text-align: left !important;
    }

    .section-header #languages .dropdown-trigger {
        position: absolute;
        right: 0;
        top: 0;
    }
}

.gallerySwiper #prevButton, .gallerySwiper #nextButton {
    display: none;
}

.dropdown-menu {
    opacity: 0;
    height: auto;
    top: 150%;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    visibility: hidden;
    display: block !important;
    padding: 15px;
    min-width: 200px;
    border-radius: 0px;
}

    .dropdown-menu li {
        max-height: 45px;
        line-height: 45px;
    }

        .dropdown-menu li a {
            font-size: 14px !important;
            text-decoration: none;
        }

/*.section-header #navigation > ul > li:hover a{
    color: var(--site-color);
}*/
.section-header #navigation > ul > li:hover .dropdown-menu a {
    color: var(--site-header-title-color);
}
/* Mobile Header Css */
@media (max-width: 767.98px) {
    .section-header {
        height: 75px;
        position: relative;
        z-index: 999;
        display: flex;
        align-items: center;
    }

    .visible {
        opacity: 1 !important;
        visibility: visible;
    }

    .menu-click {
        width: 33px;
        height: 33px;
        padding: 5px;
        display: block;
        cursor: pointer;
        z-index: 1;
        position: relative;
        z-index: 99999999999;
    }

        .menu-click span {
            cursor: pointer;
            height: 2px;
            width: 33px;
            margin-bottom: 8px;
            background-color: black;
            position: relative;
            right: 0;
            display: block;
            transform: rotate(0deg);
            transition: .7s ease;
        }

    .section-header #navigation > ul > li.dropdown > .dropdown-trigger.active + ul {
        visibility: inherit;
        display: block;
        top: 100%;
        opacity: 1;
        height: 100%;
    }

    .section-header #navigation > ul > li > .dropdown-trigger {
        display: none;
    }

    .section-header #navigation > ul > li.dropdown > .dropdown-trigger {
        position: absolute;
        right: 0;
        top: 0;
        height: 50px;
        line-height: 50px;
        width: 100%;
        background-color: transparent;
        padding-right: 15px;
        text-align: right;
        font-size: 18px;
        font-weight: 400;
        display: block !important;
    }

    .section-header #navigation > ul {
        align-items: start;
    }

    .dropdown-menu {
        position: relative;
        border: 0;
        height: 0;
        padding: 0;
        top: auto;
        min-width: inherit;
    }

    .section-header .navbar-weta {
        justify-content: flex-end !important;
        display: flex;
        padding-right: 5px;
    }

    .menu-click.open span:nth-child(1) {
        top: 10px;
        transform: rotate(135deg);
        transition: .7s ease;
        background: black;
    }

    .menu-click.open span:nth-child(2) {
        opacity: 0;
        right: 100px;
        background: black;
    }

    .menu-click.open span:nth-child(3) {
        top: -10px;
        transform: rotate(-135deg);
        transition: .7s ease;
        background: black;
    }

    #navigation {
        width: 100%;
        height: 100vh;
        position: absolute;
        left: 0;
        top: 0;
        background-color: rgb(255 255 255);
        padding: 0 30px;
        padding-top: 100px;
    }

    #navigation {
        z-index: 9999;
    }

    .hidden {
        opacity: 0;
        transition-delay: .5s;
        pointer-events: none;
        cursor: default;
    }

    .section-header #navigation > ul {
        flex-direction: column;
    }

        .section-header #navigation > ul li {
            padding: 15px 0px !important;
        }

    .section-header #navigation {
        opacity: 0;
        width: 0;
        transition: all 0.4s;
    }

        .section-header #navigation.visible {
            opacity: 1;
            width: 100%;
            transition: all 0.4s;
        }
}

.section-header #navigation > ul {
    justify-content: end;
}

.section-header #headerStyle-2 #navigation > ul {
    justify-content: center;
}

.section-header .header2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

#navigation .navbar {
    padding: 0 !important;
    position: unset;
}

.section-header #navigation > ul > li, .lang-menu > ul > li {
    padding: 0 20px;
    position: relative;
}


/* Slider CSs */
.pageSliderContent .swiper, .pageSliderContent .swiper-wrapper, .pageSliderContent .swiper-slide {
    max-height: calc(100vh - 75px);
    height: calc(100vh - 75px);
}

    .pageSliderContent .swiper-slide::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        opacity: 0.35;
    }

    .pageSliderContent .swiper-slide .slider-contents {
        position: relative;
    }

.weta-slider-buttons .btn {
    color: #fff;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

    .swiper-slide img {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media(max-width:768px) {
    .pageSliderContent .swiper-slide img {
        display: none !important;
    }

    #list-buttons {
        display: none !important;
    }
}

.btn {
    font-size: 14px;
    border-radius: 5px;
    padding: 7px 10px;
    font-weight: 400;
    outline: none !important;
    min-width: 65px;
    font-weight: 300;
    text-transform: uppercase;
}

.pageSliderContent {
    position: relative;
}

.swiper-button-next, .swiper-button-prev {
    width: 45px !important;
    height: 45px !important;
    background: transparent;
    border-radius: 50px;
}
    .swiper-button-next:hover, .swiper-button-prev:hover{
        background: var(--site-color);
        opacity: 0.50 !important;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 30px !important;
        color: #000;
    }


/* Contact Form */
.contactCenter {
    margin-top: 50px;
}

.form-input {
    border: none;
    border-bottom: 1px solid;
    border-radius: 0;
    border-color: #d3d3d3;
}

    .form-input:focus {
        box-shadow: none;
        outline: none;
    }

.form-section .rexa-content {
    display: block;
}


/* Gallery Section */
.gallery-section .weta-icerik-tag, .gallery-section .galleryDescription, .gallery-section .img-description {
    text-align: center;
}

.gallery-section .img-title {
    margin-top: 30px;
}

    .gallery-section .img-title .weta-icerik-tag {
        font-size: 18px;
    }

.gallery-section .img-description {
    font-size: 14px;
}

.gallery-section {
    padding-top: 40px;
}

    .gallery-section .img-wrapper {
        position: relative;
        margin-top: 15px;
        width: 100%;
        overflow: hidden;
    }

        .gallery-section .img-wrapper img {
            width: 100%;
        }

    .gallery-section .img-overlay {
        background: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
    }

        .gallery-section .img-overlay i {
            color: #fff;
            font-size: 3em;
        }

#overlay {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    #overlay img {
        margin: 0;
        width: auto;
        height: auto;
        object-fit: contain;
        padding: 5%;
    }

#nextButton, #prevButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    border: 1px solid #fff;
    padding: 5px 20px;
}

    #nextButton:hover {
        opacity: 0.7;
    }

    #prevButton:hover {
        opacity: 0.7;
    }

#exitButton {
    color: #fff;
    font-size: 2em;
    transition: opacity 0.8s;
    position: absolute;
    top: 15px;
    right: 15px;
}

    #exitButton:hover {
        opacity: 0.7;
    }


/* Counter Section */
.counter-section {
    background-size: cover;
    min-height: 400px;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #fff !important;
    position: relative;
    max-height: 400px;
    overflow: hidden;
}

    .counter-section video {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
    }

    .counter-section::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #111;
        opacity: 0.4;
        z-index: 1;
    }

    .counter-section .container {
        position: relative;
        z-index: 2;
    }

    .counter-section .counterNumber {
        font-size: 45px;
        font-weight: bold;
    }

.counterLine {
    width: 100%;
    display: block;
    height: 2px;
    background: #fff;
    margin-bottom: 0.5em;
}

.counter-section .counter-content {
    margin-bottom: 20px;
}

.counter-col {
    display: flex;
    justify-content: center;
    align-content: center;
    text-align: center;
}


@media(max-width: 768px) {
    .rexa-content.order-2 {
        margin-top: 25px;
    }
}


/* Icon Section */
.icon-section .icon-content-wrapper {
    margin-bottom: 25px;
}

.icon-section .icon {
    margin-bottom: 15px;
}

.icon-section .icon-wrapper {
    text-align: center;
    /*box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;*/
    padding: 30px 0px;
    transition: all 0.4s ease-out;
}

    .icon-section .icon-wrapper:hover {
        background-color: var(--site-color);
        transition: all 0.4s ease-out;
    }

        .icon-section .icon-wrapper:hover .weta-icerik-tag, .icon-section .icon-wrapper:hover .icon-description, .icon-section .icon-wrapper:hover .icon span {
            color: #fff;
            transition: all 0.4s ease;
        }

    .icon-section .icon-wrapper .icon span {
        font-size: 30px;
    }

    .icon-section .icon-wrapper .weta-icerik-tag {
        font-size: 26px;
    }

.icon-section .custom-col {
    margin: 12px 0;
}

@media(max-width: 768px) {
    .icon-section .custom-col {
        width: 50% !important;
    }

    .icon-section .icon-wrapper .weta-icerik-tag {
        font-size: 18px;
    }
}

.custom-list-button {
    background-color: transparent;
    border: 1px solid #d3d3d3;
}

    .custom-list-button.active {
        border-color: #000;
    }

.blog-list, .blog-list .col-md-4 {
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

    .blog-list.blog-grid-4 .col-md-4 {
        width: 25%;
    }

.blog-title {
    margin-top: 20px;
}

    .blog-title .weta-icerik-tag {
        font-size: 18px;
    }

.blog-list.blog-grid-list .col-md-4 {
    width: 100%;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

    .blog-list.blog-grid-list .col-md-4 .blog-image {
        width: 40%;
    }

    .blog-list.blog-grid-list .col-md-4 img {
        max-height: 300px;
        transition: all 0.4s ease;
    }


@media(max-width:768px) {
    #overlay img {
        max-height: 24%;
    }

    #image-gallery .row {
        display: flex;
    }

    #image-gallery .custom-col {
        width: 50%;
    }

    #image-gallery .row {
        display: flex;
        justify-content: center;
    }

    #nextButton, #prevButton {
        color: #fff;
        font-size: 2em;
        transition: opacity 0.8s;
        border: none !important;
        padding: 0px;
    }

    .section-header .col-lg-3 {
        width: 60% !important;
    }

    .section-header .col-lg-9 {
        width: 40% !important;
    }
}

#click_whatsapp, #fixed-button {
    width: 50px;
    height: 50px;
    /*background-color: #24c862;*/
    background-color: var(--site-color);
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    left: auto;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
}



/* Popup Css */
.home-page-popup .popup, .home-page-popup .language-popup {
    position: fixed;
    width: 610px;
    height: 610px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    padding: 10px;
    color: white;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s;
    animation: popupAnimateOpen 1s;
}

.home-page-popup.visible::before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    /*background: rgba(0,0,0,0.85);*/
    background-color: rgba(20, 32, 34, 0.50);
    z-index: 999;
}

.home-page-popup .close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    z-index: 500;
    border: 1px solid #000;
    background: #000;
    border-radius: 5px;
}

.home-page-popup .visible {
    visibility: visible;
    opacity: 1;
    z-index: 9999999999999;
}

.home-page-popup .close::before {
    transform: translate(-50%,-50%) rotate(-45deg);
}

.home-page-popup .close::after {
    transform: translate(-50%,-50%) rotate(45deg);
}

.home-page-popup .popup:after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: transparent;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.home-page-popup .close::after, .close::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 15px;
    top: 50%;
    left: 50%;
    background: #fff;
}


@media(max-width:768px) {
    .home-page-popup .popup {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* Dil Menü Css */

#languages .nav-link, #languages .menu-dropdown-link {
    text-transform: uppercase !important;
    cursor: pointer;
}

#languages .dropdown-menu {
    min-width: 60px;
    text-align: center;
}

#languages form {
    position: static;
}



/* Product Css */


.varyasyon-list {
    margin: 15px 0px;
    display: flex;
    align-items: center;
    padding: 10px 5px;
    width: 100%;
    flex-wrap: wrap;
}

    .varyasyon-list img {
        max-height: 65px;
    }

    .varyasyon-list .nav-tabs .nav-link {
        border-radius: 0px;
        margin: 0px 5px;
    }

        .varyasyon-list .nav-tabs .nav-link.active {
            border: 1px solid #000;
        }

    .varyasyon-list .varyasyon-title {
        margin-right: 30px;
        font-weight: bold;
    }

    .varyasyon-list .nav-tabs {
        border: none;
    }

    .varyasyon-list .varyasyon-name {
        font-size: 12px;
        text-align: center;
        color: #000;
        padding-top: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.productPrice {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 5px 5px;
    margin: 15px 0px;
}

    .productPrice p, .productCode p {
        margin-bottom: 0px !important;
        margin-right: 3px;
    }

.productCode {
    display: inline-flex;
    align-items: center;
    width: max-content;
    background: #d3d3d3;
    padding: 5px 5px;
    border-radius: 10px;
    margin: 15px 0px;
}

.product-list .weta-icerik-tag {
    font-size: 22px;
    margin-top: 25px;
}

.varyasyon-color {
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 50%;
}

.productDetail .group .varyasyon-name span {
    margin-top: 10px;
}

.weta-filter-tag {
    color: var(--site-title-color);
    font-size: 20px;
    font-weight: var(--site-title-weight);
}


@media(min-width:768px) {
    .filtre-modal .modal-dialog {
        margin: 0;
        position: relative;
    }

        .filtre-modal .modal-dialog .modal-content {
            min-height: calc(100vh);
        }
}

@media(max-width:768px) {
    .filtre-modal .modal-dialog {
        margin-top: 75px;
        position: relative;
    }

        .filtre-modal .modal-dialog .modal-content {
            min-height: 75vh;
        }

    .filtre-modal .modal-footer {
        justify-content: center !important;
    }

        .filtre-modal .modal-footer .col-md-6 {
            width: 50%
        }

    .varyasyon-list {
        display: block !important;
        width: 100%;
    }

        .varyasyon-list .varyasyon-title {
            display: block;
            width: 100%;
        }
}

.btn-filtre {
    background-color: transparent !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    position: relative;
}

    .btn-filtre::after {
        content: '\2b';
    }

.modal-footer .btn-filtre::after {
    display: none !important;
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-variation {
    text-transform: capitalize !important;
}

.filtre-modal .varyasyon-flex {
    display: block;
    margin: 15px 0px;
}

.form-check-inline {
    margin-right: 5px;
    margin-bottom: 8px;
    padding-left: 5px;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn {
    text-transform: capitalize;
}

/* Member Form Css */
#member-login {
    min-height: calc(100vh - 135px);
    display: flex;
    justify-content: center;
    align-items: center;
}

    #member-login .row {
        display: flex;
        justify-content: center;
    }

    #member-login .panel-heading .col-6 {
        text-align: center;
    }

    #member-login .panel-login > .panel-heading a {
        text-decoration: none;
        color: #666;
        font-weight: bold;
        font-size: 15px;
        -webkit-transition: all 0.1s linear;
        -moz-transition: all 0.1s linear;
        transition: all 0.1s linear;
    }

    #member-login .panel-login > .panel-heading hr {
        margin-top: 10px;
        margin-bottom: 0px;
        clear: both;
        border: 0;
        height: 1px;
        background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
        background-image: -moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
        background-image: -ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
        background-image: -o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.15),rgba(0,0,0,0));
    }

    #member-login .panel-login > .panel-heading a.active {
        font-weight: bold;
        font-size: 18px;
        color: #000;
    }

    #member-login input {
        border-radius: 0px !important;
        transition: all 0.4s ease;
    }

        #member-login input:focus {
            outline: none;
            box-shadow: none;
        }

    #member-login .form-group {
        margin: 15px 0px;
    }

    #member-login .btn-member {
        background-color: #000;
        min-width: 100px;
        color: #fff;
        border: none;
        position: relative;
        max-width: 120px;
    }

    #member-login .col-sm-offset-3 {
        text-align: center;
    }


/* Header Login */
#navigation #member {
    cursor: pointer;
    line-height: 20px;
}

    #navigation #member .box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 120%;
    }

        #navigation #member .box i {
            color: var(--site-header-title-color);
        }

        #navigation #member .box p {
            font-size: 12px !important;
            margin-bottom: 0px;
            color: var(--site-header-title-color);
        }

#navigation a.btn-member-login {
    color: #fff !important;
    background-color: var(--site-color);
}

#navigation #member .dropdown-menu {
    min-width: 150px;
    left: -30px;
}

#navigation #member:hover:in-range::before {
    color: var(--site-color) !important;
}

#navigation a.btn-member-login:hover {
    color: #fff !important;
}

#navigation #member #member-info a {
    color: #666 !important;
}

/* Member Account Css */
#member-account > .container > .row > .col-md-3 {
    max-width: 20%;
    padding-right: 0;
}

#member-account > .container > .row > .col-md-9 {
    max-width: 80%;
    flex: 0 0 80%;
}

@media(min-width:768px) {
    .mobileCol {
        display: none;
    }
}


#member-account .__accountHeader {
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 15px;
    border-radius: 4px;
    font-weight: 700;
    position: relative;
    margin-top: 15px;
}

    #member-account .__accountHeader h2 {
        font-size: 18px;
        margin-bottom: 0px;
    }

#member-account .account__list {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-bottom: 0;
    border-radius: 4px;
}

    #member-account .account__list ul {
        padding: 0px;
        margin: 0px;
    }

    #member-account .account__list > ul > li a {
        padding: 7px 5px;
        border-bottom: 1px solid #e5e5e5;
        display: block;
        text-decoration: none;
    }

    #member-account .account__list > ul > li ._al-icon {
        position: absolute;
        font-size: 16px;
        text-align: center;
        width: 25px;
        height: 25px;
    }

    #member-account .account__list > ul > li ._al-text {
        padding-left: 35px;
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        color: #0F1111;
    }

    #member-account .account__list > ul > li ._al-icon i::before {
        color: #666;
    }

#member-account .cart-flex {
    margin-bottom: 15px !important;
}

#member-account .col-md-6 {
    padding: 0 7.5px;
}

#member-account .card {
    border-color: #e5e5e5;
}

#member-account .card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

#member-account .card-body, .card-header {
    padding: 10px 15px;
    font-size: 13px;
}

#member-account .card-header {
    border-color: #e5e5e5;
    background-color: #f0f2f5;
    font-size: 14px;
    font-weight: 500;
}

#member-account .btn-border {
    background: #fff;
    border-color: #0070ba;
    color: #0070ba !important;
    padding: 0 !important;
    border: 0;
    font-size: 13px !important;
}

.text-right, .account_menu_right {
    text-align: right;
}

#member-account .form-control {
    height: 34px !important;
    display: block;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e5e5e5 !important;
    background-color: #eee !important;
    padding: 0 10px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
}

#member-account input:focus {
    box-shadow: none;
    outline: none;
}

#member-account .accountDiv {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 15px;
}

#member-account .form-group {
    margin-bottom: 10px !important;
}

#member-account .btn-update {
    font-size: 13px !important;
    font-weight: 400;
}

#member-account .UserAddressListItem, .row {
    margin: 0 -7.5px;
}

#member-account .user-address-item {
    width: 33.3%;
    padding: 0 7.5px;
    float: left;
    margin-bottom: 15px;
}

#member-account .address-page-container {
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

#member-account .adres-top {
    padding: 7.5px 15px;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
    background: #f0f2f5;
    border-radius: 4px 4px 0 0;
    position: relative;
}

#member-account .user-address-item .adresName-blog {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

#member-account .label-primary {
    position: absolute;
    font-size: 11px;
    background: #f0f2f5;
    color: #16be48;
    padding: 5px;
    border-radius: 4px;
    right: 10px;
    border: 0;
    font-weight: 500;
    top: 5px;
}

#member-account .adres-center {
    padding: 20px 15px;
    font-size: 13px;
    background: #fff;
    border-radius: 0 0 4px 4px;
    min-height: 180px;
    position: relative;
    max-height: 180px;
}

    #member-account .adres-center div {
        line-height: 24px;
    }

#member-account .adres-centertable {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    overflow: hidden;
    padding-right: 10px;
}

#member-account .adres-bottom {
    display: inline-block;
    width: 100%;
    padding: 10px 15px 0px;
    background: #fff;
}

#member-account .account_menu_left, .account_menu_right, .adres-page-container-delete, .adres-page-container-edit {
    width: 50%;
    float: left;
}

#member-account .account_menu_left, .account_menu_right, .adres-page-container-delete, .adres-page-container-edit {
    width: 50%;
    float: left;
}

#member-account .address-delete {
    line-height: 20px;
    font-size: 13px;
    border: 0;
    background: transparent;
    height: 32px;
    padding: 0;
    text-decoration: none;
    color: #000;
}

#member-account .address-edit {
    background: #ffffff;
    color: #0070ba;
    border: 1px solid #0070ba;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
}

.password-member {
    display: flex;
    align-items: center;
    position: relative;
}

    .password-member .toggle-password {
        position: absolute;
        right: 10px;
    }

#member-success {
    height: calc(100vh - 135px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EBF0F5;
}

    #member-success .success-card {
        width: 500px;
        height: 500px;
        background: #F8FAF5;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 30px;
    }

        #member-success .success-card .icon {
            margin-bottom: 20px;
        }

            #member-success .success-card .icon i {
                font-size: 100px;
            }

        #member-success .success-card .content p {
            font-size: 20px !important;
            color: #9ABC66;
        }

        #member-success .success-card .loginbutton {
            background-color: #9ABC66 !important;
            border-color: #9ABC66 !important;
            border: none;
            color: #fff;
            transition: all 0.4s ease;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            padding: 10px 20px;
        }

            #member-success .success-card .loginbutton span {
                color: #fff;
                position: relative;
                z-index: 99;
            }

            #member-success .success-card .loginbutton::before {
                content: '';
                position: absolute;
                left: 0;
                width: 0%;
                height: 100%;
                background: #3c5318 !important;
                transition: all 0.4s ease;
                top: 0;
            }

            #member-success .success-card .loginbutton::after {
                content: '';
                position: absolute;
                right: 0;
                width: 0%;
                height: 100%;
                background: #3c5318 !important;
                transition: all 0.4s ease;
                top: 0;
            }

            #member-success .success-card .loginbutton:hover::after,
            #member-success .success-card .loginbutton:hover::before {
                width: 50%;
                z-index: 1;
            }

.filtre-modal .accordion-body {
    display: flex;
    flex-wrap: wrap;
}

.cartButton {
    margin: 15px 0px;
}

.btn-cart {
    background-color: var(--site-color);
    color: #fff;
    transition: all 0.4s ease;
}

/* Sepet Css */
#cart .cart-title {
    margin-bottom: 30px;
}

#cart .cart-login-alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    background-color: #fffff1;
    border: 1px solid #deddbe;
    font-weight: 500;
    font-size: 13px;
}

    #cart .cart-login-alert p {
        margin-bottom: 0px;
    }

        #cart .cart-login-alert p .link {
            text-decoration: none;
        }

.user-address-item label {
    width: 100%;
}

.slider-animate {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0px;
}

.animate-icon {
    animation: upDown 1.5s linear infinite;
    font-size: 34px;
}

.__alisverItemDelete {
    width: 43px;
}

.qua-wrappeR button {
    background-color: #f0f2f5;
    border: 1px solid #e5e5e5;
    height: 34px;
    width: 24px;
    padding: 0;
}

.qua-wrappeR input {
    border-radius: 0;
    border: 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    max-width: 42px;
    text-align: center;
    height: 34px;
    background-color: #fff;
    padding: 0;
}

    .qua-wrappeR input:focus {
        box-shadow: none;
        border: none !important;
        outline: none;
    }

.qua-wrappeR {
    display: flex;
    align-items: center;
}

#member-account .address-page-container.active {
    border: 1px solid #000;
}

@keyframes upDown {
    0%, 100% {
        top: 0;
    }

    50% {
        transform: translate3d(0,100%,0);
    }
}

.__alisverisCart {
    border: 1px solid #e5e5e5;
    border-bottom: 0;
    border-radius: 4px;
}

.__alisverisMercant {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    justify-content: space-between;
    background-color: #f0f2f5;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 4px 4px 0 0;
}

.__alisverisMercantHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.__alisverisMercantInfo {
    display: flex;
    justify-content: space-between;
}

.__alisverisMercantLabel {
    margin-right: 3px;
}

.__aliverisKargoBilgi {
    display: flex;
    font-size: 14px;
    color: #4CAF50;
    align-items: center;
}

    .__aliverisKargoBilgi i {
        position: relative;
        top: 1px;
        margin-right: 4px;
        font-size: 17px;
        font-weight: 500;
    }

.__aliverisKargoBilgiText {
    margin: 0;
    color: #4CAF50;
}

.__alisverItem {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 0 4px 4px;
}

.__alisverItemImg {
    height: 70px;
    max-height: 70px;
    min-height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 50px;
}

    .__alisverItemImg img {
        max-width: 100%;
        width: auto;
        margin: 0 auto;
        max-height: 100%;
    }

.__alisverItemName {
    display: flex;
    flex-direction: column;
    width: 500px;
    margin: 0px 30px;
}

    .__alisverItemName a {
        font-size: 16px;
        font-weight: 400;
        color: #0f1111;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }

._errorPage {
    padding: 100px;
}

    ._errorPage span {
        font-size: 52px;
        margin-bottom: 15px;
        color: var(--site-color);
    }

    ._errorPage h4 {
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
    }


.breadcrumb-checkout {
    background-color: #fbfbfb;
    min-height: 100px;
    border-bottom: 1px solid #f0f2f5;
}

    .breadcrumb-checkout a {
        color: #111;
    }

    .breadcrumb-checkout .container, .breadcrumb-checkout .row {
        height: 100px;
    }

    .breadcrumb-checkout .col-md-4 {
        height: 100%;
    }

        .breadcrumb-checkout .col-md-4:nth-child(2) {
            border-left: 1px solid #000;
            border-right: 1px solid #000;
        }

        .breadcrumb-checkout .col-md-4 .content {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

            .breadcrumb-checkout .col-md-4 .content .icon-wrapper {
                display: flex;
                min-width: 150px;
                align-items: center;
            }

                .breadcrumb-checkout .col-md-4 .content .icon-wrapper .icon {
                    font-size: 18px;
                    margin-right: 15px;
                }

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 55px 22px 35px 22px;
    transition: .5s;
    position: absolute;
    bottom: 0;
}

    .head .titles {
        font-weight: 500;
        line-height: 1;
        color: #000 !important;
        font-size: 22px;
        transition: .5s;
    }

.go-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    color: #000;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 999;
}

#image-gallery .img-wrapper:hover .head {
    transform: translateY(200px);
}

    #image-gallery .img-wrapper:hover .head .titles {
        transform: translateX(-300px);
    }

    #image-gallery .img-wrapper:hover .head .go-btn {
        transform: translateX(300px);
    }

#yanmenu {
    padding: 70px 0px;
}

    #yanmenu ul {
        margin: 0px;
        padding: 0px;
        background-color: #f8f8f8;
        border: 1px solid #d3d3d3;
    }

        #yanmenu ul li {
            padding: 10px 20px;
            height: 50px;
            border-bottom: 1px solid #d3d3d3;
            display: flex;
            align-items: center;
            transition: all .3s ease;
        }

            #yanmenu ul li::before {
                content: '\f0da';
                font-family: 'FontAwesome';
                margin-right: 15px;
                transition: all .3s ease;
            }

            #yanmenu ul li a {
                display: block;
                width: 100%;
                color: #000;
                transition: all .3s ease;
            }

            #yanmenu ul li.active, #yanmenu ul li:hover {
                background-color: var(--site-color);
                color: #fff;
            }

                #yanmenu ul li.active a, #yanmenu ul li:hover a {
                    color: #fff;
                }


#yanForm {
    background-color: #f8f8f8;
    border: 1px solid #d3d3d3;
}

    #yanForm .form-Title {
        font-size: 14px;
        text-align: center;
        padding: 15px 0px;
    }

    #yanForm .input-group-content {
        height: 45px;
        position: relative;
        margin: 10px 0px;
    }

        #yanForm .input-group-content .form-control {
            height: 45px;
            box-shadow: inset 0 1px 2px 0 rgba(102,113,123,.11);
            padding-left: 50px;
            font-size: 14px;
            border-radius: 10px;
        }

        #yanForm .input-group-content .input-icon {
            position: absolute;
            top: 0;
            left: 0;
            border-right: 1px solid #dce3eb;
            width: 45px;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 10px 0px 0px 10px;
            transition: all .3s ease;
        }

        #yanForm .input-group-content .formHolder {
            position: absolute;
            top: 20%;
            left: 19%;
            font-size: 12px;
            transition: all .3s ease;
            font-weight: 700;
        }

    #yanForm .form-content {
        padding: 10px 15px;
    }

    #yanForm .input-group-content.active .formHolder {
        font-size: 10px;
        top: 2%;
    }

    #yanForm .input-group-content.active .input-icon {
        border-color: #000;
        background-color: var(--site-color);
        color: #ffff;
    }

#product-list .col-md-3 .product-wrapper .product-title {
    padding: 15px 0px;
}

#teklifModal .modal-header span {
    font-size: 15px;
}

.mfp-img {
    border-radius: 0px !important;
}

@media(min-width:768px) {
    .contactCenter #address {
        width: 60%;
    }
}


.section-header #navigation > ul > li.active a {
    color: var(--site-color);
}

#whatsapp {
    cursor: pointer;
}

.productDetail .col-md-7 {
    position: relative;
    padding-left: 50px;
}

    .productDetail .col-md-7 .productContent {
        padding-right: 15px;
    }

@media(max-width:768px) {
    #click_whatsapp {
        width: 45px;
        height: 45px;
        font-size: 30px;
    }
}

#footer-social-media {
    padding: 0px;
}

    #footer-social-media li {
        margin-right: 10px;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 17px;
        background-color: #000;
        position: relative;
    }

        #footer-social-media li a {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background-color: transparent;
        }

    #footer-social-media li {
        background-color: transparent;
    }

        #footer-social-media li span {
            color: var(--site-footer-title-color);
        }

section#bottom-footer {
    padding: 15px 0;
    background-color: var(--site-footer-color);
    border-top: 1px solid #d3d3d3;
    color: var(--site-footer-title-color);
}

    section#bottom-footer * {
        font-size: 12px !important;
        color: var(--site-footer-title-color);
        margin-bottom: 0px;
    }

    section#bottom-footer .row {
        display: flex;
        align-items: center;
    }

.btn-teklif {
    background-color: var(--site-color);
    color: #fff;
}

    .btn-teklif:hover {
        border: 1px solid var(--site-color) !important;
        color: var(--site-color) !important;
    }

#teklifModal .form-control:focus {
    box-shadow: none !important;
}

@media(min-width: 900px) {
    #teklifModal .modal-dialog {
        min-width: 700px;
    }
}

@media(max-width:768px) {
    .productDetail .col-md-7 {
        padding: 50px 20px;
    }
}

/* Dökümanlar Css */
#dokumanTab {
    border: none;
}

    #dokumanTab .nav-link.active {
        border: none;
        box-shadow: none;
        background-color: transparent;
        border-bottom: 2px solid var(--site-color);
        color: #000;
    }

#document-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0px;
}

    #document-list li {
        background: #fff;
        max-width: 100%;
        border: 1px solid var(--site-color);
        margin: 10px 0px;
        border-radius: 30px;
        overflow: hidden;
        height: 50px;
        line-height: 50px;
        width: max-content;
    }

        #document-list li a {
            color: #000;
            display: block;
            width: 100%;
            height: 100%;
            padding: 0px 25px;
        }

#dokumanTabContent {
    margin: 15px 0px;
}

#languageForm {
    display: flex;
    align-items: center;
}

    #languageForm span.fa-solid.fa-globe {
        margin-right: 10px;
    }

#product-list .product-image {
    position: relative;
    display: flex;
    overflow: hidden;
}

    #product-list .product-image img {
        transition: all .50s ease-in-out;
    }

#product-list #multi img:nth-child(2) {
    position: absolute;
    left: 0;
    opacity: 0;
    transform: scale(0.95);
    transition: all .7s !important;
}

#product-list .product-wrapper:hover #multi img:nth-child(1) {
    opacity: 0;
    transform: scale(0);
}

#product-list .product-wrapper:hover #multi img:nth-child(2) {
    opacity: 1;
    transform: scale(1.15);
    transition: all .7s;
}

.pageSliderContent img {
    display: none !important;
}

.alert-div {
    width: 20%;
    position: fixed;
    bottom: 10%;
    right: -20%;
    transition: all .3s;
    opacity: 0;
}

    .alert-div.active {
        right: 0;
        z-index: 999999;
        opacity: 1;
    }

@media(max-width:768px) {
    .alert-div {
        width: 70%;
        right: -70%;
    }
}

.fa-cart-shopping span {
    font-family: sans-serif;
}

@media(max-width: 768px) {
    #member-account > .container > .row > .col-md-3 {
        max-width: 100%;
        padding-right: 10px;
    }

    #member-account > .container > .row > .col-md-9 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    #member-account .col-md-6, #member-account .user-address-item {
        width: 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }

    footer .box {
        margin: 20px 0px;
    }

    #full {
        width: 100% !important;
        max-width: 100% !important;
    }
}

li.dropdown #custom {
    width: 100vw;
    position: absolute;
    left: 0;
    min-height: 250px;
    display: flex !important;
    align-items: center;
    flex-direction: column;
    padding: 35px 0px;
    border-radius: 0px;
}

#custom #myTab {
    border: none;
}

#custom .nav-tabs .nav-link.active {
    border: none;
    border-bottom: 1px solid #000;
    font-weight: bold;
}

#custom .nav-tabs .nav-link {
    border: none;
    color: #000;
    font-size: 13px;
}

li.dropdown #custom .nav-item {
    margin: 0px 15px;
}

li.dropdown #custom #myTabContent {
    margin-top: 50px;
}

.tab-pane ul li.duz a {
    padding: 10px 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    font-size: 14px !important;
    width: max-content;
}

.tab-pane ul li.duz, .menuImage_list {
    line-height: normal !important;
    max-height: max-content !important;
    margin: 0px 10px;
    transition: all .3s;
}

.tab-pane ul.category {
    display: flex;
}

.tab-pane ul li.duz a:hover {
    background-color: #eee;
    border: 1px solid #000;
}

li.menuImage_list .menuImage {
    transition: all .3s;
}

li.menuImage_list .menuImagePicture {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all .3s;
}

li.menuImage_list .menuImagePicture {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
}

.menuImage_list img {
    height: 150px;
    transition: all .3s;
}

.menuImage_list .menuText {
    text-align: center;
    font-size: 13px;
    font-weight: 300;
}

li.menuImage_list:hover img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

li.menuImage_list:hover {
    margin-top: -15px;
}

label.custom-label {
    transform: translateY(30px);
    transition: all .45s;
    width: max-content;
    padding: 0px 5px;
    z-index: -1;
    position: relative;
}

#contactForm .mb-3.active label {
    transform: translateY(0px);
    font-size: 13px;
}

.form-input {
    background-color: transparent;
}

.section-top-bar {
    position: relative;
    z-index: 101;
    background-color: var(--site-header-color);
    border-bottom: 1px solid #ddd;
    height: 40px;
    display: flex;
    align-items: center;
    line-height: 40px;
}

    .section-top-bar ul {
        margin-bottom: 0px;
    }

        .section-top-bar ul li {
            margin-right: 15px;
            font-size: 12px;
        }

            .section-top-bar ul li a {
                color: var(--site-header-title-color);
            }

@media(max-width:768px) {
    .section-top-bar {
        display: none;
    }
}

.productDetail .swiper-button-next, .productDetail .swiper-rtl .swiper-button-prev, .productDetail .swiper-button-prev.swiper-button-disabled, .productDetail .swiper-button-next.swiper-button-disabled {
    opacity: 0 !important;
    transition: all .3s;
}

.productDetail .productSwiper:hover .swiper-button-next, .productDetail .productSwiper:hover .swiper-button-prev {
    opacity: 1 !important;
}

.productDetail .product-thumbs .swiper-slide {
    padding: 5px;
}

    .productDetail .product-thumbs .swiper-slide.swiper-slide-thumb-active {
        border: 1px solid var(--site-color);
    }

.productDetail .product-thumbs {
    margin-top: 15px;
}

.productDetail .swiper, .productDetail .swiper-wrapper, .productDetail .swiper-slide {
    height: max-content;
}

.address-title {
    font-size: 14px;
    font-weight: bold;
}

.contact-oge p {
    position: relative;
    padding: 0px 20px;
}

    .contact-oge p span {
        position: absolute;
        left: 0;
    }

.productDetail .swiper-button-next, .productDetail .swiper-button-prev {
    display: none;
}

#fixed-button .menu {
    width: 400px;
    background-color: var(--site-color);
    height: 0%;
    transition: all .4s;
    position: absolute;
    bottom: 55px;
    top: auto;
    right: 10px;
    transform: scale(0.20);
    opacity: 0;
    border-radius: 20px;
    overflow: hidden;
    font-size: 16px;
    text-align: left;
    color: var(--site-color);
    border: 1px solid var(--site-color);
}

#fixed-button.active .menu {
    height: 350px;
    transform: scale(1);
    opacity: 1;
}

#fixed-button .header-menu {
    background-color: #fff;
    width: 100%;
    padding: 10px 20px;
    display: flex;
}

    #fixed-button .header-menu .logo {
        width: 100%;
    }

#fixed-button .content {
    padding: 15px 20px;
}

#fixed-button .item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

    #fixed-button .item a, #fixed-button .item p {
        color: var(--site-color);
        margin: 0px;
        text-decoration: none;
    }

.productDetail .tab-pane {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

@media(min-width:768px) {
    #headerStyle-2 #languages {
        display: none !important;
    }
}

/*.productDetail video {
    width: 40%;
}
.productDetail .productSwiper {
    width: 60%;
}
.productDetail .product-thumbs .swiper-wrapper {
    display: flex;
    justify-content: end;
}*/

#category-info {
    border: 1px solid #eee;
    padding: 30px !important;
    margin-top: 50px;
    background: #fff;
}

    #category-info .category-name {
        font-size: 17px;
    }

    #category-info .category-description p, #category-info .category-description {
        font-size: 14px !important;
    }

    #category-info .category-description {
        height: 80px;
        overflow: hidden;
        background: -webkit-linear-gradient(#000, #fff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

        #category-info .category-description.active {
            height: auto;
            -webkit-text-fill-color: rgb(0, 0, 0);
        }

.productDetail video, .productDetail.videoItem .productSwiper {
    width: 50%;
}

.productDetail.videoItem .productSwiper {
    height: auto;
}

    .productDetail.videoItem .productSwiper .swiper-wrapper, .productDetail.videoItem .productSwiper .swiper-slide {
        height: 100%;
    }

.productDetail.videoItem .product-thumbs .swiper-wrapper {
    display: flex;
    justify-content: end;
}

.productDetail.videoItem .col-md-5, .productDetail.videoItem .col-md-7 {
    width: 50%;
}

#alternative-product a {
    color: #000;
}

@media(max-width:992px) {
    .productDetail.videoItem .col-md-5, .productDetail.videoItem .col-md-7 {
        width: 100%;
    }
}

/* Language Popup */

.home-page-popup {
    width: 100vw;
    height: 100%;
}

.popup-language-content {
    width: 50%;
    height: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#language-popup {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
    transform: scale(0);
    opacity: 0;
}

    #language-popup.visible {
        transform: scale(1);
        opacity: 1;
    }

    #language-popup .language-title h4 {
        color: #000;
        font-weight: 400 !important;
        font-size: 30px !important
    }

    #language-popup .custom-language-button {
        border: 1px solid #e5e5e5;
        margin: 0px 15px;
        background: #fff;
        padding: 10px;
        color: #000;
        font-size: 14px;
    }

        #language-popup .custom-language-button img {
            height: 25px;
        }

    #language-popup .languages-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    #language-popup .language-description p {
        color: #000;
        font-size: 14px;
        font-weight: 300;
    }

@media(max-width:768px) {
    .popup-language-content {
        width: 100%;
        padding: 10px;
    }
}

.video-item {
    width: 100%;
}

.product-breadcrumb {
    background-color: #f5f5f5;
    height: 35px;
    text-align: left;
}


@media(max-width:768px) {
    #multi-menu {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 50px;
        right: 0;
        z-index: -1;
        left: -100px;
        transition: all .4s;
        padding: 30px;
        padding-top: 110px;
    }

    #main-menu #multi-dropdown #multi-menu.open {
        visibility: visible;
        left: 0;
        opacity: 1;
        z-index: 99;
    }

    .logo {
        position: relative;
        z-index: 99999999999;
    }

    #navigation {
        padding-top: 100px;
    }
}

#navigation-button {
    background-color: var(--site-header-color);
    border: none;
    padding-left: 10px;
    position: absolute;
    top: 65px;
    font-size: 20px;
    left: 20px;
}

    #navigation-button span {
        text-decoration: underline;
    }
/*#navigation-button::before {
    content: '\f053';
    font-family: 'FontAwesome';
}*/

@media(min-width:768px) {
    #navigation-button {
        display: none;
    }
}

