﻿:root {
    --gray: #F1F2F1;
    --orange: #ff6f3c;
    --green: #4CB627;
    --blue: #5da7a2;
    --yellow: #fdbc40;
    --black: #393D3F;
    --green: #55bd6b;
    --darkgreen: #0d3b30
}

* {
    transition: all .3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #faf5eb
}

header {
    position: relative;
    z-index: 3;
    background-color: var(--yellow);
    margin-bottom: 15px;
}

    header .logo a img {
        max-height: 45px;
    }

.btn-blue {
    display: inline-block;
    font-size: 14px;
    padding: 5px 10px;
    text-decoration: none;
    background: var(--blue);
    color: #fff;
    border-radius: 10px;
}

    .btn-blue:hover {
        background: var(--yellow);
    }

.btn-gray {
    display: inline-block;
    font-size: 14px;
    padding: 5px 10px;
    text-decoration: none;
    background: #6c757d;
    color: #fff;
    border-radius: 10px;
}

.btn-orange {
    display: inline-block;
    font-size: 14px;
    padding: 5px 10px;
    text-decoration: none;
    background: var(--orange);
    border-radius: 10px;
    color: #fff;
}

    .btn-orange:hover {
        background: #c4522a
    }

.odd {
    /* display: none;*/
}

.topMenu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .topMenu ul li a {
        display: block;
        padding: 20px 20px;
        font-weight: 500;
        color: var(--darkgreen);
        text-decoration: none;
        background: transparent;
    }

        .topMenu ul li a:hover {
            background: var(--darkgreen);
            color: #fff;
        }

.search {
    width: 100%;
}

.searchBox {
    position: relative;
}

    .searchBox input {
        display: block;
        width: 100%;
        background: #fff;
        border: 0;
        padding: 9px 60px 9px 20px;
        font-size: 14px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        border-radius: 3px;
        outline: none;
        box-shadow: none;
    }

    .searchBox a {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%)
    }

        .searchBox a svg {
            max-height: 23px;
        }

        .searchBox a:hover svg path {
            fill: var(--orange)
        }

aside {
    background: var(--blue);
    padding: 0;
    margin-bottom: 15px;
    height: 300px;
    border-radius: 10px;
}

    aside .scroll-wrapper.scrollbar-inner {
        height: 100%;
    }

    aside .scroll-wrapper > .scroll-content {
        padding: 0 20px 0 10px
    }

    aside .scrollbar-inner > .scroll-element .scroll-element_track {
        background: #fff;
        opacity: 0.2;
    }

    aside .scrollbar-inner > .scroll-element .scroll-bar {
        background: var(--darkblue);
        opacity: 1;
    }

    aside .scrollbar-inner > .scroll-element.scroll-y {
        width: 5px;
    }

    aside a {
        position: relative;
        display: flex;
        padding: 15px;
        background-color: transparent;
        color: #fff;
        font-weight: 400;
        text-decoration: none;
        transition: none !important;
    }

        aside a.active, aside a:hover {
            font-weight: 700;
        }

        aside a .icon {
            margin-right: 10px;
        }

        aside a.active:after {
            content: "\f0d9";
            font-family: FontAwesome;
            font-style: normal;
            font-weight: normal;
            text-decoration: inherit;
            margin-left: auto;
        }


footer {
    position: relative;
    z-index: 3;
    margin-top: 20px;
    background-color: var(--darkgreen)
}

    footer .footerLogo img {
        max-height: 30px;
    }

.footerMenu ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .footerMenu ul li a {
        display: block;
        padding: 20px 25px;
        font-weight: 500;
        color: #fff;
        text-decoration: none;
        background: transparent;
    }

#announcementSlider {
    max-height: 440px;
}

    #announcementSlider .item {
        height: 100%;
        overflow: hidden;
    }

        #announcementSlider .item a {
            display: block;
            position: relative;
            color: #fff;
            height: 100%;
        }

            #announcementSlider .item a .sliderPhoto {
                position: relative;
                display: block;
                overflow: hidden;
                z-index: 2;
                height: 100%;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                -ms-border-radius: 10px;
                -o-border-radius: 10px;
                border-radius: 10px;
            }

                #announcementSlider .item a .sliderPhoto:before {
                    content: "";
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    height: 60%;
                    background: linear-gradient(180deg, rgba(93, 167, 162, 0) 70.99%, var(--blue) 94.82%);
                    z-index: 2;
                }

                #announcementSlider .item a .sliderPhoto img {
                    object-fit: cover;
                    object-position: center;
                    transform: scale(1);
                    transition: all .7s ease;
                    width: 100%;
                    height: 100%;
                }

            #announcementSlider .item a:hover .sliderPhoto img {
                transform: scale(1.1);
            }

        #announcementSlider .item .sliderText {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 5px 5px 2px 10px;
            z-index: 3;
            font-size:14px;
        }

#news .newsTitle {
    display: block;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: var(--darkgreen);
    margin-bottom: 20px;
}

#news .newsItem {
    padding: 0 3px
}

    #news .newsItem .newsPhoto {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

        #news .newsItem .newsPhoto img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            border-radius: 10px;
        }

    #news .newsItem .newsText span {
        display: block;
        color: var(--blue);
        font-size: 13px;
        margin-bottom: 10px;
    }

    #news .newsItem .newsText a.newsTitle {
        font-size: 17px;
        line-height: 18px;
        font-weight: 700;
        text-decoration: none;
        margin-bottom: 10px;
    }

    #news .newsItem .newsText p {
        font-size: 14px;
        line-height: 15px;
        max-height: 30px;
        overflow: hidden;
    }

/*#news .owl-theme .owl-dots {
    margin-top: 5px
}

    #news .owl-theme .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 0;
        background: var(--green)
    }

    #news .owl-theme .owl-dots .owl-dot.active span {
        margin: 0;
        background: var(--blue)
    }

    #news .owl-theme .owl-dots .owl-dot + .owl-dot {
        margin-left: 8px
    }*/

.bluebox {
    width: 100%;
    height: 100%;
    background: var(--blue)
}

.greenWallet {
    display: flex;
    position: relative;
    width: 100%;
    /* height: 380px; */
    /*background: rgb(93 167 161 / 10%);*/
    background: #f4f1e6;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}

    .greenWallet strong {
        margin-right: 10px;
        color: var(--green);
        font-weight: 600;
    }

    .greenWallet table thead tr th {
        background-color: transparent !important;
        color: var(--green)
    }

    .greenWallet .greenWalletItem strong {
        font-size: 19px;
        font-weight: 700;
        display: block;
    }

    .greenWallet .greenWalletItem span {
        display: block;
        font-size: 18px;
        font-weight: 400;
        font-style: normal;
        text-align: right
    }


    .greenWallet .nav-tabs {
        background: var(--orange)
    }

        .greenWallet .nav-tabs .nav-item {
            width: 50%;
        }

        .greenWallet .nav-tabs .nav-link {
            display: block;
            width: 100%;
            background: transparent;
            border: 0;
            border-radius: 0;
            color: #fff;
            padding: 15px 40px;
            font-weight: 500;
            margin-bottom: 0;
        }

            .greenWallet .nav-tabs .nav-link.active {
                background: var(--orange) !important;
            }

    .greenWallet .tab-content {
        height: 100%;
        border: 1px solid var(--green);
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        background: #faf5eb;
        border-top: 0;
    }

        .greenWallet .tab-content .tab-pane {
            width: 100%;
            height: 100%;
        }

        .greenWallet .tab-content a {
            display: block;
            height: 380px;
            text-decoration: none;
        }

            .greenWallet .tab-content a .greenwalletItem {
                display: block;
                height: 100%;
            }

                .greenWallet .tab-content a .greenwalletItem > table {
                    height: 100%;
                    margin: 0;
                }

                    .greenWallet .tab-content a .greenwalletItem > table td {
                        vertical-align: middle;
                        color: var(--darkgreen)
                    }

    .greenWallet .greenWalletItem .row {
        width: 100%;
    }

#liveChat {
    position: absolute;
    display: none;
    right: 20px;
    bottom: 42px;
    width: 25%;
    height: calc(100% - 165px);
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--gray);
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 0 7px 0px rgb(0 0 0 / 28%)
}

    #liveChat.open {
        display: flex;
    }

.sendMessage {
    position: relative;
}


    .sendMessage input {
        display: block;
        width: 100%;
        padding: 20px 80px 20px 20px;
        height: 55px;
        border: 0;
        background: var(--blue);
        outline: none;
        box-shadow: none;
    }

    .sendMessage #sendButton {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%)
    }

    .sendMessage a svg path {
        fill: #fff
    }

    .sendMessage a:hover svg path {
        fill: var(--yellow)
    }

.messageBox {
    height: 100%;
    max-height: 100%;
    overflow: auto;
}

    .messageBox .messageItem .user .photo img {
        width: 32px;
        height: 32px;
        object-fit: cover;
        object-position: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
    }

    .messageBox .messageItem .user {
        min-width: 50px;
        margin-right: 10px;
        text-align: center
    }


        .messageBox .messageItem .user span {
            font-size: 12px;
            font-weight: 600;
        }

    .messageBox .messageItem + .messageItem {
        margin-top: 20px
    }

    .messageBox .messageItem .message {
        position: relative;
        font-size: 10px;
        background: var(--green);
        padding: 10px;
        color: #fff;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
        padding-bottom: 20px;
        width: 100%;
    }

        .messageBox .messageItem .message .date {
            position: absolute;
            right: 10px;
            bottom: 5px;
            font-size: 9px
        }

    .messageBox .messageItem.sendMessage .user {
        order: 2;
        margin-right: 0;
        margin-left: 10px
    }

    .messageBox .messageItem.sendMessage .message {
        order: 1;
        background: var(--blue)
    }

        .messageBox .messageItem.sendMessage .message .date {
            position: absolute;
            right: auto;
            left: 10px;
            bottom: 5px;
            font-size: 9px
        }

#shortcuts {
    margin-bottom: 20px
}

    #shortcuts a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--green);
        color: #fff;
        padding: 15px 10px;
        text-decoration: none;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        border-radius: 10px;
    }

        #shortcuts a:hover {
            background: #d95b2e
        }

        #shortcuts a .icon {
            margin-right: 5px
        }
.login-article {
    min-height: 347px;
    padding: 0px;
    background: url(/assetsUser/images/a42.png) 0% 0% / cover no-repeat;
}
.loginBox {
    position: relative;
    width: 630px;
    top: 100px;
    max-width: calc(100% - 40px);
}

    .loginBox .yellowShape {
        display: none;
        position: absolute;
        top: -150px;
        left: -150px;
        z-index: 2;
    }

    .loginBox .greenShape {
        display: none;
        position: absolute;
        bottom: -50px;
        right: -150px;
        z-index: 2;
    }

    .loginBox .loginBoxContent {
        position: relative;
        z-index: 3;
        display: block;
        padding: 40px;
        background: rgba(13, 59, 48, 0.5);
    }

        .loginBox .loginBoxContent strong {
            font-weight: 600;
            text-align: center;
            display: block;
            font-size: 28px;
            line-height: 34px;
            /* identical to box height */

            color: #fff;
        }

        .loginBox .loginBoxContent label {
            display: block;
            text-align: center;
            font-weight: 400;
            font-size: 15px;
            line-height: 18px;
            color: #fff;
        }

        .loginBox .loginBoxContent .form-control {
            background: #FFFFFF;
            border: 1px solid #DDD8CF;
            border-radius: 10px;
            height: 55px;
            outline: none;
            box-shadow: none;
        }

.form-control {
    border-radius: 10px;
}

.forgotPassword {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #fff;
    text-decoration: none;
}

    .forgotPassword:hover {
        text-decoration: underline
    }

table thead tr th {
    background-color: var(--green) !important;
    color: #fff;
    padding: 15px 20px !important;
    font-weight: 600;
    /*    text-align: center*/
}

    table thead tr th:first-child {
        border-top-left-radius: 10px !important;
        border-bottom-left-radius: 10px !important;
        text-align: left
    }

    table thead tr th:last-child {
        border-top-right-radius: 10px !important;
        border-bottom-right-radius: 10px !important;
    }

table tbody tr td {
    padding: 15px 20px !important;
}

.dataTables_scrollHead {
    border-radius: 0;
    margin-bottom: 10px;
    color: #fff;
}

    .dataTables_scrollHead th {
        color: #fff;
        font-weight: 500;
        padding: 15px;
        border-radius: 0 !important;
    }

table.dataTable.table-striped > tbody > tr > td {
    position: relative;
    vertical-align: middle;
    padding: 15px 20px !important;
}

    table.dataTable.table-striped > tbody > tr > td:first-child {
        border-bottom-left-radius: 10px;
        border-top-left-radius: 10px
    }

        table.dataTable.table-striped > tbody > tr > td:first-child:before {
            display: none;
        }

    table.dataTable.table-striped > tbody > tr > td:last-child {
        border-bottom-right-radius: 10px;
        border-top-right-radius: 10px
    }

    table.dataTable.table-striped > tbody > tr > td:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        height: 70%;
        width: 1px;
        background: #8B8B8B;
        opacity: 0.2;
        transform: translateY(-50%)
    }

.dataTables_wrapper > .row:first-child {
    display: flex
}

    .dataTables_wrapper > .row:first-child > div {
        order: 2
    }

        .dataTables_wrapper > .row:first-child > div:last-child {
            order: 1;
        }

table.dataTable.table-striped > tbody > tr > td:last-child {
    text-align: right;
}

div.dataTables_wrapper div.dataTables_filter {
    text-align: left;
    margin: 20px 0;
}

.dataTables_scrollBody table thead {
    display: none;
}

.statusBox {
    text-align: center;
    background: var(--blue);
    padding: 10px 20px;
    color: #fff;
    min-width: 150px;
    font-size: 13px;
    border-radius: 10px;
}

    .statusBox strong {
        display: block;
        margin-top: 5px;
        font-size: 18px;
        font-weight: 600
    }

    .statusBox + .statusBox {
        /*margin-left: 15px*/
    }

    .statusBox.orange {
        background: var(--orange)
    }

    .statusBox.green {
        background: var(--green)
    }

    .statusBox.yellow {
        background: var(--yellow)
    }

    .statusBox.blue {
        background: var(--blue)
    }

.pageHeight {
    overflow-y: auto;
    overflow-x: hidden
}

label {
    font-weight: 600;
}

.invoinceAdress {
    display: block;
    width: 100%;
    font-size: 13px;
    text-align: right;
    color: var(--darkgreen)
}

.storeName {
    color: var(--green);
    font-weight: 500px;
}

.pagecontent {
    max-height: 100%;
}

.content {
    height: 100%;
}

.pageContentFooter {
    padding: 10px 0
}

.select2.select2-container {
    width: 100% !important
}

.select2-container--default .select2-selection--single {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid #dee2e6;
    border-radius: 10px !important;
    height: 38px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        top: 50%;
        transform: translateY(-50%);
        right: 5px
    }

.asideMobile {
    display: none;
}

.productLists {
    height: calc(100% - 80px);
    width: 100%;
    overflow-x: hidden;
}

.productForm {
    background: var(--darkgreen);
    min-height: calc(100% - 60px);
    padding: 40px;
    color: #fff;
}

.productItem {
    margin-bottom: 20px;
}

    .productItem a {
        padding: 0 0 20px;
        display: block;
        border: 1px solid #eee;
        border-radius: 10px;
        overflow: hidden;
        text-decoration: none;
    }

        .productItem a span {
            display: block;
            padding: 20px;
            background-color: var(--gray);
            text-align: center;
            overflow: hidden;
        }

            .productItem a span img {
                height: auto;
                max-width: 100%;
                transform: scale(1);
            }

        .productItem a:hover span img {
            transform: scale(1.08)
        }

        .productItem a strong {
            display: block;
            color: var(--green);
            padding: 10px 20px;
            font-size: 17px;
            font-weight: 600;
        }

        .productItem a p {
            display: block;
            text-align: left;
            padding: 0 20px;
            margin: 0;
            font-weight: 300;
            font-size: 14px;
            line-height: 18px;
            height: 54px;
            overflow: hidden;
            color: #737373;
        }

        .productItem a:hover strong {
            color: var(--blue)
        }

.productLists.scrollbar-inner > .scroll-element.scroll-x {
    display: none;
}

article {
    position: relative;
}

.liveChatIcon {
    position: absolute;
    right: 15px;
    bottom: 0px;
    z-index: 2;
}

.liveChatIcon2 {
    position: absolute;
    right: 15px;
    bottom: 50px;
    z-index: 2;
}

.liveChatIcon svg {
    width: 42px;
}

    .liveChatIcon svg path {
        fill: var(--green)
    }

.liveChatIcon:hover svg path {
    fill: var(--blue)
}

#announcementSlider {
    height: 100%;
}

    #announcementSlider .owl-carousel {
        height: 100%;
    }

    #announcementSlider .owl-stage-outer,
    #announcementSlider .owl-stage-outer div,
    #announcementSlider .owl-stage-outer .item a {
        height: 100%;
    }



.searchBox {
    position: relative;
    /* Make sure the width is set to the width of the input or as desired */
}

#searchResults {
    position: absolute;
    top: 100%;
    /* This positions the box right below the search input */
    left: 0;
    right: 0;
    background-color: white;
    width: 100%;
    /* Adjust width to match the search box if needed */
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    /* Set to none to hide it initially */
}

    #searchResults div {
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

        #searchResults div:hover {
            background-color: #f8f8f8;
        }

.exchange {
    color: var(--darkgreen);
    height: 100%;
    padding: 0 20px;
}

    .exchange span + span {
        margin-left: 15px;
    }

    .exchange span {
        font-size: 13px;
    }

        .exchange span strong {
            margin-right: 5px;
        }

        .exchange span i {
            font-style: normal;
        }

.pageTitle {
    color: var(--darkgreen)
}



.accordion-item .accordion-button {
    background: var(--blue);
    color: #fff;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 10px !important
}

    .accordion-item .accordion-button.collapsed {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-item + .accordion-item {
    margin-top: 20px;
}

.accordion-item {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.accordion-body {
    background: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.logoutbutton {
    background: #faf5eb;
    border: 0;
    aspect-ratio: 1/1;
    display: block;
    width: 45px;
    color: var(--darkgreen);
    transition: all 0.01s ease;
}

    .logoutbutton:hover {
        color: var(--green);
    }

aside a .icon img {
    max-width: 32px;
    height: auto;
}

#shortcuts a .icon img {
    max-width: 32px;
    height: auto;
}

.product-information {
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    color: #737373;
}


/* Datepicker'in kutu yapısını ve arkaplanını düzelten kod */
.ui-datepicker {
    background: white !important;
    border: 1px solid #ccc !important;
    z-index: 9999 !important; /* Datepicker'ın diğer elemanların altında kalmasını önler */
    padding: 10px;
    border-radius: 4px;
}

    /* Datepicker içindeki günlerin görünümünü düzelten kod */
    .ui-datepicker table {
        width: 100%;
        font-size: 14px !important;
    }

    /* Seçili günü belirginleştir */
    .ui-datepicker .ui-state-active {
        background-color: #007bff !important;
        color: white !important;
        border-radius: 50%;
    }

/* Ay ve yıl seçici butonlarını düzelt */
.ui-datepicker-header {
    background:  #55bd6b !important; /* Başlığı yeşil yap */
    color: white !important;
    border-radius: 4px 4px 0 0 !important;
    padding: 5px !important;
    text-align: center !important;
}

/* Ay ve yıl okları (ileri & geri) */
.ui-datepicker-prev, .ui-datepicker-next {
    top: 5px !important;
}

/* Hafta günlerinin başlık stilini düzelt */
.ui-datepicker th {
   
    color: white !important;
    font-weight: bold !important;
    padding: 5px !important;
}

/* Günleri içeren tablo stilini düzelt */
.ui-datepicker td {
    text-align: center !important;
    padding: 5px !important;
}

/* Boş günlerin arka planı */
.ui-datepicker-unselectable .ui-state-default {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
}

/* Seçilebilir günlerin hover efekti */
.ui-datepicker-calendar td a:hover {
    background-color: #007bff !important;
    color: white !important;
    border-radius: 50% !important;
}

.ui-datepicker select.ui-datepicker-month {
    border-radius: 5px !important;
    border-color: lightgray !important;
    padding: 2px !important;
}

.ui-datepicker td span, .ui-datepicker td a {
    border-radius: 5px !important;
    text-align: center !important;
}