﻿::-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: 1250px) {
    .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, li {
    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:1250px) {
    .body-content {
        min-height: calc(90vh - 135px);
    }
}

@media(max-width:1250px) {
    .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: 40px 0px;
}

@media(max-width: 1250px) {
    .pageDetailContent {
        padding: 25px 0px;
    }
    .modal .d-flex.justify-content-between.align-items-center.mt-3 {
        flex-direction: column;
    }
    #sidebarsurveyModal .modal-dialog {
        margin: auto !important;
        display: flex;
        align-items: center;
        min-height: calc(100% - var(--bs-modal-margin) * 2);
        width: 95%;
    }
    #sidebarsurveyModal .content {
        padding: 65px 15px !important;
        padding-top: 0px !important;
    }
}


/* 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;
}

    .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: 1250px) {
    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:1250px) {
    .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, .section-header .col-lg-8 {
        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: 1250px) {
    .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: 14px;
                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:1250px) {
    .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: 1250px) {
    .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:1250px) {
    .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: #fff;
    border-radius: 50px;
}

    .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: 1250px) {
    .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: 1250px) {
    .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;
        color: #000;
    }

.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:1250px) {
    #overlay img {
        max-height: 24%;
    }

    #image-gallery .row {
        display: flex;
    }

    #image-gallery .custom-col {
        width: 50% !important;
    }

    #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, .section-header .col-lg-8 {
        width: 40% !important;
    }
}

#click_whatsapp, #fixed-button {
    width: 50px;
    height: 50px;
    /*background-color: #24c862;*/
    background-color: var(--site-color);
    border-radius: 50%;
    left: 15px;
    bottom: 15px;
    right: 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:1250px) {
    .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:1250px) {
    .filtre-modal .modal-dialog {
        margin: 0;
        position: relative;
    }

        .filtre-modal .modal-dialog .modal-content {
            min-height: calc(100vh);
        }
}

@media(max-width:1250px) {
    .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(90vh - 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,
    #member-login select {
        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;
        border-radius: 0;
    }

    #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: 25%;
    padding-right: 0;
}

#member-account > .container > .row > .col-md-9 {
    max-width: 75%;
    flex: 0 0 80%;
}

@media(min-width:1250px) {
    .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;
}

    #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 {
    margin: 0 -7.5px;
    height: 100%;
}

#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-title h3 span {
        font-size: 20px !important;
    }

#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;
}

.__incele,
.__alisverItemDelete {
    margin: 0px 5px;
}

.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: 50px;
    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: 85%;
    margin: 0px 30px;
}

    .__alisverItemName p span {
        font-weight: 600 !important;
    }

    .__alisverItemName a {
        font-size: 16px;
        font-weight: 600;
        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: 12px;
}

#exampleModal .modal-title {
    font-size: 14px !important;
}

.mfp-img {
    border-radius: 0px !important;
}

@media(min-width:1250px) {
    .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:1250px) {
    #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:1250px) {
    .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-danger {
    padding: 10px 20px;
    background: #f8d7da;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

    .alert-div.active {
        right: 0;
        z-index: 999999;
        opacity: 1;
    }

@media(max-width:1250px) {
    .alert-div {
        width: 70%;
        right: -70%;
    }
}

.fa-cart-shopping span {
    font-family: sans-serif;
}

@media(max-width: 1250px) {
    #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;
}

    label.custom-label:hover {
        cursor: text;
    }

#contactForm .mb-3.active label, #teklifForm .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;
            position: relative;
        }

            .section-top-bar ul li a {
                color: var(--site-header-title-color);
            }

@media(max-width:1250px) {
    .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: block;
}

#fixed-button .menu {
    width: 400px;
    background-color: var(--site-color);
    height: 0%;
    transition: all .4s;
    position: absolute;
    bottom: 55px;
    top: auto;
    left: 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:1250px) {
    #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, #alternative-category-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:1250px) {
    .popup-language-content {
        width: 100%;
        padding: 10px;
    }
}

.video-item {
    width: 100%;
}

.product-breadcrumb, .page-breadcrumb {
    background-color: #f5f5f5;
    height: 35px;
    text-align: left;
    display: flex;
    align-items: center;
}

    .product-breadcrumb a {
        color: #000;
    }

@media(max-width:1250px) {
    #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:1250px) {
    #navigation-button {
        display: none;
    }
}

.product-elemans ul li {
    padding: 15px 10px;
    background-color: var(--site-color);
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    border: 1px solid var(--site-color);
}

    .product-elemans ul li:hover {
        background-color: #fff;
        color: var(--site-color);
    }

        .product-elemans ul li:hover a {
            color: var(--site-color);
        }

.productCode {
    background: transparent;
}
/*.productDetail {
    background-color: #F0F0F0;
    background-image: url(../images/product-bg.svg);
    background-size: cover;
}*/
.product-elemans ul li i {
    position: absolute;
    right: 10px;
}

.view {
    width: 450px;
    height: 350px;
}

.productSwiper .swiper-slide {
    padding: 0px;
}

.product-elemans ul li a {
    color: #fff;
    width: 100%;
    display: block;
}

.productImage {
    position: relative;
    height: 100%;
}

.custom-tab, .table-div {
    display: none;
    transition: all .4s;
}

    .custom-tab.show, .table-div.show {
        display: block;
    }

.tablink-1, .pdf-link, .tablink {
    background: #fff;
    border: none;
    transition: all .4s;
    width: 50%;
    padding: 5px 0px;
    font-size: 14px;
    position: relative;
}

    .tablink-1::before, .tablink::before {
        content: '';
        position: absolute;
        top: 0px;
        left: 0px;
        width: 0%;
        height: 100%;
        background: var(--site-color);
        transition: all .3s;
        opacity: 1;
    }

    .tablink-1.active span, .tablink.active span {
        color: #fff;
    }

    .tablink-1:nth-child(1)::before, .tablink:nth-child(1)::before {
        left: auto;
        right: 0;
    }

    .tablink-1.active::before, .tablink.active::before {
        width: 100%;
    }

    .tablink-1 i, .tablink i {
        opacity: 1;
        transition: all .4s;
        color: var(--site-color);
        position: relative;
    }

    .tablink-1 span, .tablink span {
        position: relative;
        z-index: 9;
    }

    .tablink-1.active i, .tablink.active i {
        color: #fff;
    }

.category-button-wrapper {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--site-color);
}

.product-fixed-element {
    position: fixed;
    top: 40%;
    z-index: 99;
    right: 0px;
    width: 70px;
    height: 140px;
    background: var(--site-color);
    cursor: pointer;
}

    .product-fixed-element .text {
        color: #fff;
        font-size: 14px !important;
        position: absolute;
        top: 35%;
        text-align: center;
    }

    .product-fixed-element .content {
        height: 100%;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
    }

        .product-fixed-element .content #info {
            position: absolute;
            top: 10px;
            color: #fff;
            font-size: 20px;
        }

        .product-fixed-element .content #arrow {
            position: absolute;
            bottom: 10px;
            color: #fff;
            font-size: 20px;
        }


@media(min-width:900px) {
    #teklifModal .modal-dialog {
        min-width: 350px;
        width: 350px;
        position: absolute;
        right: -35%;
        height: 100vh;
        display: flex;
        justify-content: end;
        margin: 0px;
        transition: all .4s;
        top: 0;
        transform: none !important;
    }

    #teklifModal.show .modal-dialog {
        right: 0;
    }

    #teklifModal .modal-content {
        height: 100%;
        width: 100%;
        border-radius: 0px;
    }

    #teklifForm .mb-4 {
        width: 100% !important;
    }

    .productDetail .productSwiper, .productDetail .productSwiper .swiper-wrapper, .productDetail .productSwiper .swiper-slide {
        height: 315px;
    }

    .productDetail .product-thumbs, .productDetail .product-thumbs .swiper-wrapper, .productDetail .product-thumbs .swiper-slide {
        height: max-content;
    }
}


#tablo-title span {
    font-size: 16px;
    height: 38px;
    line-height: 38px;
}

#table-select-menu select {
    width: 40%;
}

.product-detail-img {
    width: 100%;
    height: 100%;
    padding: 20px;
    margin-top: 40px;
    background: #fff;
    position: relative;
}

ul li {
    font-weight: 400;
}

.productContent ul {
    padding: 0px;
}

    .productContent ul li {
        position: relative;
        padding-left: 20px;
        line-height: 25px;
    }

        .productContent ul li::before {
            content: '\f1ce';
            font-family: 'FontAwesome';
            position: absolute;
            left: 0;
            font-size: 10px;
        }

.product-pdf-element {
    width: 100%;
    height: 100px;
    background: var(--site-color);
}

    .product-pdf-element .pdf-wrapper {
        display: flex;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    .product-pdf-element .icon {
        margin-right: 20px;
    }

        .product-pdf-element .title span, .product-pdf-element .icon i {
            font-size: 22px;
            color: #fff;
        }

.productContent {
    min-height: 491px;
}

.productDetail .col-md-2 {
    background: #fff;
}

.icons-wrapper {
    display: flex;
    flex-wrap: wrap;
}

    .icons-wrapper .icon {
        background: #fff;
        width: 30%;
        height: 75px;
        margin: 0px 3px;
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--site-color);
        padding: 5px;
    }

.productDetail {
    padding: 30px 0px;
}

.productCode {
    margin: 0px !important;
    padding: 0px !important;
}

#tableSelect {
    position: relative;
    border-radius: 0px !important;
}

    #tableSelect:focus {
        outline: none;
        box-shadow: none;
    }

.test-li1 .custom2 {
    visibility: hidden !important;
    opacity: 0 !important;
    z-index: -99999999 !important;
    left: 115% !important;
    width: max-content;
}

.test-li1.open .custom2 {
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999999 !important;
}


@media(min-width: 1250px) {
    li.dropdown:hover #main-menu {
        visibility: visible !important;
        z-index: 999999 !important;
    }

    #main-menu {
        width: 100%;
        position: absolute;
        left: 0%;
        padding: 20px 45px;
        height: 45vh;
        z-index: -1;
        visibility: hidden !important;
    }
}

.section-header #navigation > ul > li, .lang-menu > ul > li {
    position: initial;
}

#main-menu .content {
    width: 25%;
    border-right: 1px solid #000;
    max-height: 100%;
    height: 100%;
}

#main-menu .title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--site-color) !important;
}

#main-menu .dropdown-custom {
    position: absolute;
    top: 20px;
    left: 35%;
    width: 110%;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
}

#main-menu li.active .dropdown-custom {
    opacity: 1;
    visibility: visible;
    height: calc(100% - 40px);
}

#main-menu .dropdown-custom ul {
    padding: 0;
}

.dropdown-custom ul li {
    height: 25px;
    line-height: 25px;
}

.dropdown-custom #elemans {
    border-right: 1px solid #000;
    height: max-content;
}
/*#main-menu .dropdown-custom ul.custom2{
    display: flex;
    flex-wrap: wrap;
}*/
/*#main-menu .dropdown-custom ul.custom2 li{
    width: 50%;
}*/
#elemans ul li.test-li a {
    color: var(--site-header-title-color) !important;
}

#main-menu li.active a {
    color: var(--site-color) !important;
}

#exampleModal .modal-content {
    min-width: 750px;
    height: 700px;
    width: 750px;
}

#exampleModal .modal-dialog {
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    left: 35%;
    right: auto;
}

#exampleModal .modal-content iframe {
    height: 100%;
}

#main-menu .dropdown-custom #custom-menu .custom2 {
    left: 18%;
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .4s;
    z-index: -999;
}

#main-menu .dropdown-custom #custom-menu.show1 .custom2 {
    opacity: 1;
    visibility: visible;
    z-index: 99;
}

.section-header .col-lg-9, .section-header .col-lg-8 {
    justify-content: center;
}

#custom-menu {
    width: max-content;
}

.productDetail .product-thumbs .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.productDetail .product-thumbs .swiper-slide {
    opacity: 0.4;
}

.search-button {
    border: 1px solid rgba(0,0,0,.1);
    cursor: pointer;
    padding: 0px 15px;
    height: 45px;
    line-height: 45px;
    transition: all .4s;
    text-align: left;
    background-color: transparent;
}

.search-dropdown {
    display: flex;
    align-items: center;
    padding: 0px !important;
}

.search-menu {
    transition: all .4s;
    opacity: 0;
    visibility: hidden;
    z-index: -9999;
    position: absolute;
    width: 100%;
    left: 0%;
    padding: 35px 45px;
    height: 45vh;
    z-index: -1;
    visibility: hidden !important;
    top: 150%;
    background-color: #fff;
    border-bottom: 1px solid var(--site-color);
}

    .search-menu.open-search {
        visibility: visible !important;
        display: block;
        top: 75px;
        opacity: 1;
        z-index: 99;
    }

.section-header.fixed .search-menu.open-search {
    top: 65px;
}

.search-menu .title {
    height: 45px;
    line-height: 45px;
}

    .search-menu .title span {
        font-size: 21px !important;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0.5em;
    }

.search-menu .description {
    height: 30px;
    line-height: 30px;
}

    .search-menu .description span {
        font-size: 14px;
        font-weight: 300;
        margin-bottom: 1.5em;
        color: #333;
    }

.search-menu input:focus, .search-menu select:focus {
    outline: none;
    box-shadow: none;
}

.search-menu .input-group-text {
    background-color: var(--site-color);
    border-color: var(--site-color);
    color: #fff;
}

.search-menu .inputs {
    margin-top: 40px;
}

.search-form-buttons input {
    font-size: 15px;
    color: #fff;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: #9d9c9d;
    width: 100%;
    display: block;
    border: 0;
}

.search-menu .col-md-6 select.form-control {
    height: 50px;
    border-radius: 0px;
}

.search-menu select, .search-menu input, .search-menu .input-group-text {
    border-radius: 0px;
    font-size: 13px;
    margin-bottom: 25px;
}

.search-menu .search {
    background-color: var(--site-color);
}

.section-header .col-lg-2 ul {
    padding: 0px !important;
}


#preloader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#alt-dropdown {
    border-left: 1px solid #000;
    padding-left: 30px !important;
}


.section-header.fixed li.dropdown:hover #main-menu-2 {
    top: 65px;
}

@media(min-width:1250px) {
    .section-header li.dropdown:hover #main-menu-2 {
        visibility: inherit;
        display: block;
        top: 75px;
        opacity: 1;
    }
}

.search-menu::after, #main-menu::after {
    content: '';
    /*background: linear-gradient(180deg, rgba(3,66,127,1) 0%, rgba(3,66,127,0) 70%);*/
    background: linear-gradient(0deg, rgba(207,200,200,0) 0%, rgba(166,164,164,1) 100%);
    position: absolute;
    top: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.product-breadcrumb br {
    display: none;
}

.pdf-wrapper {
    display: flex;
    justify-content: center;
    font-weight: 400;
}

#product-documents .tablink-1 {
    height: 32px;
    width: 33.3% !important;
    text-align: center;
    border-bottom: 1px solid var(--site-color);
}
/*#main-menu {
    display: none !important;
}*/
#main-menu-2 li a {
    transition: all .4s;
}

#main-menu-2 li:hover a {
    padding-left: 15px;
    color: var(--site-color) !important;
}

#custom-ul {
    margin-top: 15px;
}

.productTable {
    height: 5%;
    padding-left: 0px;
    color: #00abff;
}

    .productTable:hover {
        text-decoration: underline;
    }

    .productTable a {
        font-weight: bold;
        font-size: 14px;
        color: #00abff !important;
    }

#alternative-category-product {
    padding: 35px 0px;
}

#alternative-product {
    padding: 0px;
}

.productSearch {
    padding-right: 60px;
    height: 80%;
    border-right: 1px solid var(--site-color);
}

#productSearchId, #searchId {
    height: 100%;
}

#login-button {
    border: none;
    background: transparent;
}

.login-menu {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all .4s;
    background: #fff;
    width: 270px;
    left: -90%;
    border: 1px solid #d3d3d3;
    top: 95%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

    .login-menu.login-open {
        visibility: visible;
        opacity: 1;
        z-index: 99999;
    }

    .login-menu #links {
        text-align: center;
    }

        .login-menu #links a.active {
            font-weight: bold;
        }

    .login-menu .form-control {
        font-size: 12px !important;
        border: none;
        border-bottom: 1px solid #d3d3d3;
        border-radius: 0;
        padding: 10px 5px;
    }

    .login-menu .panel-body {
        margin-top: 20px;
    }

    .login-menu .form-group {
        margin-bottom: 15px;
    }

.menu-line {
    display: block;
    width: 100%;
    height: 1px;
    background: #d3d3d3;
}

.login-menu .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #000;
}

.login-menu #login-submit, .login-menu #register-submit {
    border: none;
    color: #fff;
    position: relative;
    background: var(--site-color);
}

#back-top {
    position: fixed;
    bottom: 16px;
    right: 19px;
    padding: 0;
    margin: 0;
    z-index: 20;
    transition: all .4s;
    opacity: 0;
    color: var(--site-color);
}

    #back-top.show {
        opacity: 1;
    }


.customer-title h4 {
    font-size: 28px !important;
    color: var(--site-color);
}

.customer-description span {
    font-size: 12px;
}

@media(min-width:1000px) {
    .customer-login .col-md-7 {
        padding-left: 200px;
        position: relative;
    }

        .customer-login .col-md-7::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 10%;
            width: 1px;
            height: 100%;
            right: auto;
            background-color: var(--site-color);
        }
}

.customer-button {
    margin-top: 30px;
}

.customer-login .form-control {
    font-size: 12px;
}

.btn-member {
    background-color: var(--site-color) !important;
    border: 1px solid transparent !important;
}

    .btn-member:hover {
        background-color: transparent !important;
        border: 1px solid var(--site-color) !important;
        color: var(--site-color) !important;
    }

.customer-description span.private {
    font-size: 14px;
    display: block;
    margin: 15px 0px;
}

.customer-list ul li {
    display: flex;
    align-items: center;
    padding-left: 40px;
    position: relative;
    margin-bottom: 15px;
}

    .customer-list ul li .icon {
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background-color: var(--site-color);
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 50%;
    }

.register-title {
    text-align: center;
    background-color: var(--site-color);
    padding: 10px 0px;
    color: #fff;
}

#register-panel {
    padding: 40px 10px;
}

#register-form {
    border: 1px solid #ccc;
}

#register-panel {
    justify-content: flex-start !important;
}

.icon a {
    display: block;
    height: 100%;
}

.icons-wrapper .icon img {
    height: 100%;
}



#myModal, .modal-3d {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    opacity: 0;
    transition: all .45s;
    z-index: -1;
    visibility: hidden;
    cursor: auto !important;
}

    #myModal.show, .modal-3d.show {
        opacity: 1;
        z-index: 9;
        visibility: visible;
        overflow: hidden;
    }

    #myModal .modal-content, .modal-3d .modal-content {
        background-color: #fefefe;
        margin: 20% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 50%;
    }

    #myModal .closeButton,
    .modal-3d .sendClose {
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        display: flex;
        justify-content: end;
    }

        #myModal .closeButton:hover,
        #myModal .closeButton:focus,
        .modal-3d .sendClose:hover,
        .modal-3d .sendClose:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

    #myModal .modal-content .btn-color,
    .modal-3d .modal-content .btn-color {
        width: 120px;
    }

    #myModal .modal-content .buttons,
    .modal-3d .modal-content .buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

        #myModal .modal-content .buttons .wrapper,
        .modal-3d .modal-content .buttons .wrapper {
            width: 30%;
            display: flex;
            justify-content: space-between;
        }

    #myModal #text,
    .modal-3d #text {
        text-align: center;
    }

.private-tab .item {
    background-color: #f3f3f3;
    border-left: 1px solid #f3f3f3;
    border-right: 1px solid #f3f3f3;
    border-top: 1px solid #f3f3f3;
    width: 100%;
}

    .private-tab .item .item-title {
        padding: 5px;
        text-align: left;
        background-color: var(--site-color);
        color: #fff;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        height: 34px;
    }

        .private-tab .item .item-title span {
            color: #212529 !important;
            font-weight: 600;
            font-size: 14px;
            padding-left: 10px;
        }

    .private-tab .item .form-control, .private-tab .item .item-input {
        border-left: 1px solid #f3f3f3;
        border: none;
        border-radius: 0px;
        font-size: 14px;
        border-top: 1px solid #f3f3f3;
        padding-left: 10px;
        font-weight: 400;
        background: #fff;
        padding: 5px;
    }

.private-tab .private-wrapper {
    display: flex;
}

.private-tab .variation_content {
    padding-left: 10px;
    color: #000;
    font-size: 11px;
}

.product-variation-names .variation-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.variation-wrapper .item {
    border: 1px solid;
    margin: 10px;
    width: 47%;
    padding: 10px;
}

    .variation-wrapper .item .title span {
        font-size: 14px;
        font-weight: 600;
    }


.sertifika-wrapper .item {
    width: 100%;
}

.sertifika-wrapper .item-title {
    background: var(--site-color);
    color: #fff;
    padding: 0px 10px;
}

.sertifika-wrapper .item-img {
    width: 60px;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 5px;
    margin: 10px 0px;
    border-right: 1px solid var(--site-color);
}

.sertifika-wrapper .item-wrapper {
    display: flex;
}

.sertifika-wrapper .item-content {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.private-tab .dropdown-menu.show {
    visibility: visible;
    display: block !important;
    opacity: 1;
    z-index: 9999999999;
}

.private-tab .dropdown-menu li {
    line-height: normal !important;
    max-height: fit-content !important;
}

.form-check-input:focus {
    box-shadow: none !important;
}



#product-documents .items-elemans {
    position: relative;
}

    #product-documents .items-elemans a.btn-transparent {
        position: absolute;
        left: -60px;
        top: 5px;
    }

.datasheets img {
    height: 20px;
}

table.table-filter img {
    max-height: 30px;
}

table.table-filter .btn {
    padding: 0px;
    width: 100%;
    font-size: 14px !important;
    display: flex;
    align-items: center;
}

.table-filter__desktop-label {
    font-size: 12px;
    display: block;
    position: relative;
}

th.table-filter__select.datasheets {
    display: flex !important;
    justify-content: space-evenly;
    align-items: center;
    height: 39px;
}

.table-filter th.clear-filter::after {
    display: none !important;
}

.table-filter__select.clear-filter a.clear-filter img {
    height: 65%;
    filter: brightness(500);
}

.table-filter th.clear-filter span {
    width: 100%;
    display: flex;
}

.table-filter tbody * {
    font-size: 12px !important;
}

.error-section {
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.s404wrapper {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #ffff;
    padding: 100px;
}

    .s404wrapper h1 {
        font-weight: 300;
    }


#form_ventCalc .div_inputVentCalc {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    #form_ventCalc .div_inputVentCalc span:nth-child(1) {
        display: block;
        width: 100%;
        color: #000;
        font-size: 16px !important;
    }

    #form_ventCalc .div_inputVentCalc .form-control {
        width: 25%;
        border-color: #8a8a8a;
    }


.vent-Calculator #left-content-bar {
    padding-right: 10%;
    text-align: justify;
}

#form_ventCalc sup {
    width: 50%;
    display: block;
    height: auto;
    line-height: 24px;
    font-size: 14px !important;
}

#form_ventCalc .div_inputVentCalc .form-control.error {
    border-color: red;
}

.vent-Calculator hr {
    border-top: 3px solid;
}


@media(min-width:1400px) {
    .container {
        max-width: 75%;
    }
}


.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.progress-wrap {
    position: fixed;
    left: 15px;
    bottom: 15px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 93, 224, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(130%);
    z-index: 99;
    transition: all 200ms linear;
}

    .progress-wrap svg.progress-circle path {
        stroke: var(--site-color);
        stroke-width: 5;
        box-sizing: border-box;
    }

    .progress-wrap svg.progress-circle path {
        stroke: #b5b5b5;
    }

    .progress-wrap svg path {
        fill: none;
    }

.progress-wrap {
    background-color: transparent;
    left: auto !important;
    right: 15px;
}

    .progress-wrap::after {
        color: #b5b5b5;
    }

    .progress-wrap::after {
        position: absolute;
        content: "\f062";
        font-family: 'FontAwesome' !important;
        text-align: center;
        line-height: 45px;
        font-size: 18px;
        color: #b5b5b5;
        left: 0;
        top: 0;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        z-index: 1;
    }

#filteredProduct th {
    font-size: 13px !important;
    background-color: var(--site-color);
    color: #fff;
    text-align: center;
}

#filteredProduct td {
    font-size: 13px !important;
    text-align: center;
    font-weight: 400;
}

#filteredProduct .btn {
    padding: 0px;
    font-weight: 400;
    font-size: 13px !important;
}

input#AccesoriesCode:focus,
input#AccesoriesCode:focus-visible,
input#productCode:focus,
input#productCode:focus-visible {
    border-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}


.cartdetailModal .btn-close {
    background-image: none !important;
}

.cartdetailModal .modal-dialog {
    max-width: 50%;
}

.section-header .cart-dropdown {
    margin: 0px 5px;
}

    .section-header .cart-dropdown:hover {
        background-color: transparent !important;
    }


.elemans-div .col-md-6.copy-div {
    width: 55% !important;
}

.elemans-div .col-md-6.content {
    width: 45% !important;
}

    .elemans-div .col-md-6.content .d-flex {
        margin-top: 0px !important;
    }

#copyDiv .btn-delete {
    position: absolute;
    top: auto;
    right: 10px;
    width: 37.5% !important;
    bottom: 15px;
    font-weight: 500 !important;
}

#showPassword, #showPasswordconfirm {
    position: absolute;
    right: 20px;
    bottom: 2px;
}

#sendModal .modal-content {
    justify-content: center;
    align-items: center;
}

#sendModal .form-control {
    border: 1px solid var(--site-color);
    width: 50%;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 15px;
}

#sendModal #text {
    margin-top: 20px;
}

#sendModal .modal-content .buttons .wrapper {
    margin-top: 10px !important;
    justify-content: center;
}

.section-top-bar *{
    color: #fff !important;
}

@media(min-width:1250px) {
    .section-header .col-lg-8 {
        width: 58% !important;
    }

    .section-header .col-lg-2:nth-child(3) {
        width: 25% !important;
    }

    .cart-dropdown span,
    .search-dropdown span {
        font-size: 13px !important;
    }
}

.div_inputVentCalc span:nth-child(3) {
    display: block;
    width: 10%;
    text-align: left;
    padding-left: 10px;
}

#calculateButton {
    height: 30px;
    border-radius: 7px;
    line-height: 0px;
    background-color: #15314c;
    color: #fff !important;
    border-color: #15314c !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 130px;
}

.vent-Note-Text p {
    font-size: 16px !important;
    color: #8a8a8a !important;
    font-weight: 500 !important;
}

@media(min-width: 1000px) {
    .dropdown-trigger-menu-alt,
    .dropdown-trigger-menu {
        display: none !important;
    }
}

#productCategoryFind,
#resetButton {
    width: 100%;
}

#productCategoryFind {
    background-color: var(--site-color) !important;
    color: #fff !important;
}

.button-wrapper-details {
    display: flex;
    justify-content: end;
}

.copy-div .item {
    width: 50%;
    display: flex;
    align-items: center;
}

.item-value-content {
    width: 48% !important;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .item-value-content span {
        display: block;
        width: 48%;
        text-align: center;
        border-radius: 8px;
        height: 30px;
        line-height: 30px;
        font-weight: 600 !important;
    }

        .item-value-content span:nth-child(1) {
            background-color: #7c7c7c !important;
            color: #fff !important;
        }

        .item-value-content span:nth-child(2) {
            border: 1px solid #7c7c7c !important;
            color: var(--site-color) !important;
        }

.add-Button-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

    .add-Button-bar .button-line {
        width: 70%;
        display: flex;
        align-items: center;
    }

    .add-Button-bar .button {
        width: 30%;
    }

        .add-Button-bar .button button {
            width: 100% !important;
            border: none !important;
        }

            .add-Button-bar .button button:focus,
            .add-Button-bar .button button {
                background-color: transparent !important;
            }

.button-line .line {
    width: 100%;
    height: 3px;
    background-color: var(--site-color);
}

.add-Button-bar .button button .plus-add {
    margin-left: 0px;
    margin-right: 10px;
}

.category-page .main-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .category-page .main-content-wrapper .category-list-content {
        width: 24% !important;
        margin-top: 30px;
    }

    .category-page .main-content-wrapper #product-list,
    .category-page .main-content-wrapper #category-list {
        width: 75% !important;
    }

    .category-page .main-content-wrapper .menu-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        position: relative;
    }

        .category-page .main-content-wrapper .menu-title * {
            margin: 0px !important;
            padding: 0px !important;
        }

        .category-page .main-content-wrapper .menu-title h5 {
            font-size: 16px !important;
            font-weight: 600 !important;
        }

    .category-page .main-content-wrapper .menu-content,
    .category-page .main-content-wrapper .main-category .menu-content .menu-elemans {
        opacity: 0;
        visibility: hidden;
        height: 0;
        overflow: hidden;
        transition: all .4s;
        margin-top: 10px;
        padding-left: 10px;
    }

    .category-page .main-content-wrapper .main-category {
        height: 50px;
        overflow: hidden;
        border-bottom: 1px solid #ebebeb;
    }

        .category-page .main-content-wrapper .main-category.show {
            height: max-content;
            overflow: auto;
            padding: 15px 0px;
        }

            .category-page .main-content-wrapper .main-category.show .menu-content,
            .category-page .main-content-wrapper .menu-content.open .menu-elemans {
                opacity: 1;
                visibility: visible;
                height: max-content;
            }

    .category-page .main-content-wrapper .menu-elemans * {
        color: #000 !important;
        font-size: 14px;
        font-weight: 500;
    }

    .category-page .main-content-wrapper .menu-elemans li a {
        transition: all .4s;
    }

    .category-page .main-content-wrapper a.open-page {
        color: var(--site-color) !important;
    }

    .category-page .main-content-wrapper .menu-elemans li:hover a {
        color: var(--site-color) !important;
    }

    .category-page .main-content-wrapper .menu-content .menu-title h5 {
        font-size: 14px !important;
        font-weight: 500 !important;
    }

    .category-page .main-content-wrapper .main-category .menu-content .menu-elemans {
        margin-top: 0px;
    }

    .category-page .main-content-wrapper .menu-content .menu-title h5 a {
        color: #000;
    }

.main-category .content {
    height: 100%;
}

.menu-elemans ul {
    margin-bottom: 0px;
    margin: 10px 0px;
}

.blog-list .blog-description {
    margin-top: 10px;
    text-align: justify;
}

.category-page .main-content-wrapper #altMenu,
.category-page .main-content-wrapper #mainMenu {
    position: absolute;
    width: 92%;
    text-align: end;
    left: 0;
}

    .category-page .main-content-wrapper #altMenu:hover,
    .category-page .main-content-wrapper #mainMenu:hover {
        border-color: transparent !important;
    }


.big-menu .container {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.big-menu .content-image {
    width: 25%;
}


.big-menu .content {
    width: 75% !important;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: none !important;
}

.big-menu::after {
    display: none !important;
}

li.category-dropdown {
    width: 33.3% !important;
    height: 100%;
    position: relative;
    overflow: hidden;
    max-height: none;
}

.big-menu .category-menu-listing {
    padding: 0px;
}

    .big-menu .category-menu-listing .category-menu-item,
    .big-menu .alt-category-menu-listing .category-alt-items {
        max-height: 25px !important;
        line-height: 25px !important;
        transition: all .4s;
    }

.big-menu .all-categories {
    font-weight: 700 !important;
}

    .big-menu .all-categories,
    .big-menu .category-menu-item a,
    .big-menu .category-alt-items a,
    .big-menu .all-categories i {
        transition: all .4s;
    }

        .big-menu .all-categories:hover i {
            transform: translateX(10px);
        }

        .big-menu .all-categories:hover,
        .big-menu .category-menu-item:hover a {
            color: #166aa4 !important;
        }

            .big-menu .category-menu-item:hover a.category-menu-item-a,
            .big-menu .category-alt-items:hover a {
                transform: translateX(10px);
            }

.big-menu .alt-category-menu-listing,
.big-menu .alt-category-menu-listing .alt-alt-category-listing {
    padding: 0px;
    width: 100%;
    height: max-content;
    visibility: hidden;
    transition: all .4s;
    background-color: #f3f3f3;
    min-height: 100%;
    position: absolute;
    top: 45px;
    left: -100%;
}

    .big-menu .alt-category-menu-listing .alt-alt-category-listing {
        top: 0;
    }

.big-menu .category-menu-item.show .alt-category-menu-listing,
.big-menu .category-menu-item.show .alt-category-menu-listing .category-alt-items.open .alt-alt-category-listing {
    visibility: visible;
    opacity: 1;
    z-index: 9;
    left: 0;
}

.big-menu .category-menu-item.show .category-menu-item-a,
.big-menu .category-alt-items.open .alt-category-a {
    display: none !important;
}

.big-menu .category-menu-item.show,
.big-menu .category-alt-items.open {
    max-height: max-content !important;
}


.big-menu .btn-back-menu,
.big-menu .btn-back-menu-alt {
    font-weight: 700 !important;
    font-size: 12px !important;
    color: var(--site-color);
    padding: 0px 0px;
    margin-bottom: 10px;
    text-align: left;
    border: none !important;
}

.menu-wrapper {
    position: relative;
    left: -100%;
    transition: all .4s;
    opacity: 0;
}

.main-category.show .menu-wrapper {
    left: 0;
    opacity: 1;
}

.section-header .col-lg-2 li img {
    max-height: 15px;
}

.section-header .col-lg-2 li:nth-child(1) img {
    max-height: 17px;
}

.section-header .search-button {
    padding: 0px;
    font-weight: 600 !important;
}

.section-header .col-lg-2 li {
    margin: 0px !important;
    padding: 0px 5px !important;
}

.section-header #navigation > ul > li#languages img {
    margin-right: 5px;
}

.cartdetailModal .productImage-cart {
    display: flex;
    justify-content: end;
}

    .cartdetailModal .productImage-cart img {
        max-height: 250px;
    }

.cinsiyet-bar {
    display: flex;
    align-items: center;
    padding: 0px 10px;
    margin: 10px 0px;
}

    .cinsiyet-bar img {
        max-height: 25px;
        margin-right: 10px;
    }

    .cinsiyet-bar h1 {
        font-size: 14px !important;
        margin: 0px;
    }

#productSearchId select option:nth-child(1),
#productSearchId select option::selection,
#productSearchId select option[selected] {
    font-weight: bold !important;
}




#productSearchId form span {
    display: block;
    height: 25px;
    line-height: normal;
    font-size: 12px !important;
    font-weight: bold;
}

.image-wrapper-accesories {
    display: flex;
    flex-wrap: wrap;
}

    .image-wrapper-accesories .item {
        width: 10%;
        margin-right: 10px;
    }

        .image-wrapper-accesories .item img {
            height: 55px;
        }


.cartdetailModal .cart-items {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

    .cartdetailModal .cart-items .item {
        margin-right: 15px;
    }

        .cartdetailModal .cart-items .item img {
            max-height: 20px;
        }

    .cartdetailModal .cart-items p {
        margin-bottom: 0px !important;
    }

.alert-tool {
    position: fixed;
    bottom: 40px;
    right: -100%;
    z-index: 99999;
    transition: all .4s;
}

    .alert-tool.active {
        right: 0;
    }


.productFinder .finderElemanTitle {
    font-weight: 700 !important;
    font-size: 16px !important;
    margin-bottom: 7px;
    display: block;
    color: #333333 !important;
}

.productFinder .form-select,
.productFinder .form-control {
    background-color: #eff5f7;
    border: none;
    height: 40px;
}

.productFinder .form-select:disabled,
.productFinder .form-control:disabled {
    opacity: 0.5;
    background: #fbfbfb;
}


    .productFinder .form-select:focus,
    .productFinder .form-control:focus {
        box-shadow: none !important;
    }

.productFinder .productFinderContent {
    margin-top: 50px;
}

.productFinder .mb-4 {
    margin-bottom: 2rem !important;
}

.productFinderResult {
    transition: all .4s;
    margin-top: 15px;
}

    .productFinderResult.hidden {
        visibility: hidden;
        opacity: 0;
    }

    .productFinderResult.active {
        visibility: visible;
        opacity: 1;
    }

.productFinder .topBar {
    display: flex;
    justify-content: space-between;
}


.modal-body .button--inactive {
    pointer-events: auto;
}

.modal-body .is-waiting {
    display: none !important;
}



.productFinderResult .table-content .item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 32.5%;
    border: 1px solid #d3d3d3;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    overflow: hidden;
}

    .productFinderResult .table-content .item .product-Finder-result-image {
        width: 30%;
        padding: 30px 10px;
    }

    .productFinderResult .table-content .item .product-Finder-result {
        width: 50%;
        display: flex;
        align-items: center;
    }

        .productFinderResult .table-content .item .product-Finder-result p {
            font-size: 17px !important;
            font-weight: 500 !important;
            margin-bottom: 0px !important;
        }

.productFinderResult .table-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.product-finder-link {
    background: #cacaca;
    width: 20%;
}

    .product-finder-link a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

        .product-finder-link a img {
            max-height: 60px;
        }

#finderButton,
#clearFinder {
    border: 1px solid #000;
    min-width: 185px;
    border-radius: 8px;
    font-weight: bold !important;
    transition: all .4s;
    font-size: 16px !important;
}

    #finderButton img,
    #clearFinder img {
        max-height: 20px;
    }

    #finderButton:hover,
    #clearFinder:hover {
        transform: scale(1.02);
        background-color: #fff !important;
        color: var(--site-color) !important;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

#clearFinder {
    min-width: 150px;
    margin-left: 10px;
}

.no-results {
    font-size: 30px !important;
}


#radio-buttons-content {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 20px;
    margin-bottom: 20px;
}

    #radio-buttons-content .item-content {
        margin-bottom: 15px;
        margin-left: 5px;
    }

        #radio-buttons-content .item-content .btn {
            min-width: 175px;
            border: 1px solid var(--site-color);
        }

input[type=checkbox]:checked + label:before {
    display: none !important;
}

#radio-buttons-content .item-content input[type=checkbox]:checked + .btn {
    background: var(--site-color);
    color: #fff !important;
}

#myModal .modal-content, .modal-3d .modal-content {
    width: 50% !important;
    margin: 10% auto !important;
}

    #myModal .modal-content .buttons, .modal-3d .modal-content .buttons {
        margin-bottom: 45px;
    }


.modal-3d form .is-waiting{
    display: none !important;
}
.promotion-image {
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}


#getFileButton{
    display: none;
}

/* Modal blur background */
#downloadPopup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

    /* Modal box */
#downloadPopup .popup-content {
    background: #fff;
    width: 90%;
    max-width: 400px;
    padding: 24px 22px;
    border-radius: 14px;
    text-align: center;
    animation: fadeUp 0.25s ease-out;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    position: relative;
}

/* Message text */
#popupMessage {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Close button */
.popup-close {
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0px !important;
    min-width: auto;
    position: absolute;
    top: -10px;
    right: -10px;
}


/* Üyelik Butonu */
#popupButton {
    display: inline-block;
    width: 100%;
    padding: 10px 16px;
    background: var(--site-color) !important;
    border-color: var(--site-color) !important;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: 0.2s;
    text-decoration: none;
    justify-content: center;
}

#popupButton:hover {
    background: #0078cc;
}

/* Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile tweaks */
@media (max-width: 400px) {
    #popupMessage {
        font-size: 14px;
    }

    #popupButton, .popup-close {
        font-size: 14px;
    }
}


.survey-popup-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    padding: 30px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.survey-question-title {
    font-size: 1rem !important;
    color: #333;
    margin-bottom: 15px;
    font-weight: 400;
}

.survey-answers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

/* Şık Butonları */
.answer-label {
    flex: 1;
    min-width: 100px;
    text-align: center;
    border: 1.5px solid #004a8c;
    border-radius: 12px;
    padding: 5px;
    cursor: pointer;
    color: #004a8c;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Gizli Radio Button */
.survey-radio {
    display: none;
}

    /* Seçili Şık Stili */
    .survey-radio:checked + .answer-label {
        background-color: #004a8c;
        color: white;
    }

.answer-label:hover {
    background-color: rgba(0, 74, 140, 0.05);
}

/* Textarea ve Button */
.survey-textarea {
    width: 100%;
    border: 1.5px solid #004a8c;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    resize: none;
    height: 100px;
}

.btn-survey-send {
    background-color: #004a8c;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 40px;
    float: right;
    font-weight: bold;
    transition: transform 0.2s;
}

.btn-survey-send:hover {
    transform: scale(1.05);
    background-color: #003366;
}

#surveyModal .btn-close,
#sidebarsurveyModal .btn-close {
    background-image: none;
    color: #fff;
}
#surveyModal .content{
    padding: 50px 15px;
    padding-top: 0px;
}

.survey-fixed-element {
    position: fixed;
    top: 40%;
    z-index: 99;
    left: 0px;
    width: 70px;
    height: 140px;
    background: var(--site-color);
    cursor: pointer;
    background: linear-gradient(0deg, rgba(19, 100, 163, 1) 0%, rgba(47, 166, 171, 1) 50%, rgba(110, 179, 82, 1) 100%);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#sidebarsurveyModal .modal-dialog {
    margin-left: 0;
    margin-top: 0px;
}
#sidebarsurveyModal .survey-popup-container {
    margin: 0px;
    border-top-left-radius: 0px;
}
#sidebarsurveyModal .content {
    padding: 20px 15px;
}
#sidebarsurveyModal img{
    max-height: 45px;
}