html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
    font-family: Montserrat;
    outline: 0;
}

header {
    color: white;
}

img {
    max-width: 100%;
    max-height: 100%;
}

header .header-top {
    display: flex;
    width: 100%;
    align-items: center;
    background-color: #FCB123;
}

header .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #92530C;
}

.header-bottom .search {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 30px;
}

.search .dropdown {
    height: 40px;
    background-color: #FCB123;
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
    position: relative;
    color: white;
    border-radius: 20px 0 0 0;

    h5 {
        min-width: max-content;
        display: flex;
        align-items: center;

        img {
            width: 12px;
            height: 12px;
            margin-left: 5px;
        }

        cursor: pointer;
    }

    ul {
        position: absolute;
        left: 0;
        bottom: 1px;
        transform: translateY(90%);
        background-color: #FCB123;
        z-index: 2;
        opacity: 0;
        pointer-events: none;
        list-style: none;
        padding: 10px;
        font-size: 12px;
        transition: all .5s;
        margin: 0;
        border-radius: 0 5px 10px 10px;

        li {
            margin: 5px 0;

            label {
                display: flex;
                align-items: center;

                input {
                    margin-right: 5px;
                }
            }
        }
    }

    &.active {
        ul {
            pointer-events: all;
            opacity: 1;
            transform: translateY(100%);
        }
    }
}

.search .ara {
    width: 100%;
    height: 40px;
    border: none;
    padding: 0 20px;
}

.search button {
    height: 40px;
    background-color: #FCB123;
    display: flex;
    align-items: center;
    padding: 0 20px;
    white-space: nowrap;
    border: none;
    color: white;
    border-radius: 0 0 20px 0;
    cursor: pointer;
    min-width: fit-content;

    img {
        width: 16px;
        margin-right: 5px;
        height: 16px;
    }
}

.login {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background: linear-gradient(to left, #92530C, #492A06);
    padding: 50px 0;
    overflow-y: auto;

    .flex {
        display: flex;

        label {
            width: 50%;

            &:first-child {
                margin-right: 10px;
            }

            input {
                width: 300px;
            }
        }
    }

    form {
        display: flex;
        flex-direction: column;
        min-width: 350px;
        background-color: orange;
        padding: 30px;
        max-width: 100%;
        border-radius: 20px 10px 50px 20px;
        height: fit-content;

        .logo {
            margin-bottom: 30px;
        }

        label {
            display: flex;
            flex-direction: column;
            margin-bottom: 20px;

            span {
                font-size: 12px;
                font-weight: 500;
                margin-bottom: 5px;
            }

            input,
            select {
                border: none;
                padding: 15px 10px;
            }
        }

        .gizlilik {
            flex-direction: unset;
            align-items: center;

            input {
                width: 16px;
                height: 16px;
            }

            span {
                margin-bottom: 0;
                margin-left: 5px;
            }
        }

        button {
            background: linear-gradient(to right, #C50171, #630139);
            background-size: 150% auto;
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all .2s;

            &:hover {
                background-position: 50%;
            }
        }

        h5 {
            margin-top: 30px;
            text-align: center;

            a {
                font-weight: bold;
                cursor: pointer;
            }
        }
    }
}

.header-top .logo {
    width: 300px;
    max-width: 300px;
    min-width: 0;
    padding-right: 20px;
    padding-left: 20px;
    flex: 1;
}

.header-top .header-nav {
    width: 100%;
    flex: 1;
}

.header-top .user {
    width: 300px;
    max-width: 300px;
    min-width: 300px;
    padding-left: 20px;
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

header nav {
    display: flex;
    align-items: center;
    margin-top: 10px;
    justify-content: space-between;
}

header .header-nav h5 {
    background-color: #A66011;
    display: block;
    width: 100%;
    color: white;
    padding: 5px 10px;
    font-weight: 500;
    font-size: 12px;
}

header .user {
    display: flex;
    align-items: center;
}

.user .info {
    background-color: white;
    width: 200px;
    min-width: 200px;
    margin-right: -15px;
    height: 80px;
    max-height: 80px;
    display: flex;
    align-items: center;
    border-radius: 20px 0 0 20px;
    padding: 10px 25px 10px 10px;
    color: black;

    p {
        font-size: 12px;
    }
}

.info .details {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    white-space: nowrap;
}

.info .kupa {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 10px;
}

.kupa i {
    background-color: #FFCA00;
    border: 1px solid #D5A900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    border-radius: 50%;
    padding: 2.5px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 5px;
}

.kupa img {
    width: 36px;
    height: 36px;
}

.button {
    background-color: white;
    border-radius: 30px;
    cursor: pointer;
    font-size: 12px;
    width: fit-content;
    white-space: nowrap;
    color: #F6A100;
    border: none;
    padding: 5px 10px;
    display: flex !important;
    align-items: center;

    img {
        width: 16px !important;
        height: 16px !important;
        margin: 0;
        margin-right: 5px;
        filter: invert(1)
    }
}

.button-1 {
    background-color: #00d78d;
    color: white;
    border-radius: 5px;
    padding: 12.5px 20px;
    font-size: 11px;
    font-weight: 500;
    display: block;
    margin: 10px 0;
    transition: all .2s;

    &.small {
        padding: 5px 10px;
        width: fit-content
    }

    &.medium {
        padding: 10px 15px;
        width: fit-content;
    }

    &.blue {
        background: linear-gradient(to right, #2858a8, #4a6da8);
    }

    &.orange {
        background: linear-gradient(to right, #ff8159, #ff9f82);
    }

    &:hover {
        box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
    }
}

.mesajlasma {
    display: flex;
    max-height: 939px;

    .mesajlari-yukle {
        width: 40%;
        overflow-y: auto;
        height: 600px;
        background-color: white;
        box-shadow: inset -5px 0 30px 0 rgba(0, 0, 0, 0.25);

        .gelen {
            display: flex;
            align-items: center;
            color: black;
            padding: 10px;
            transition: all .25s;
            cursor: pointer;
            border-bottom: 1px solid #ddd;

            &:hover {
                background-color: #eee;
            }

            img {
                width: 64px;
                height: 64px;
                border-radius: 50%;
                margin-right: 20px;
            }
        }
    }

    .mesajlar {
        width: 60%;
        background-image: url(../images/msg.webp);
        background-size: 400px auto;
        padding: 20px;
        max-height: 600px;
        display: flex;
        flex-direction: column;

        #mesajlar {
            height: 100%;
            min-height: 500px;
            width: 100%;
            padding: 10px;
            overflow-y: auto;
            margin-bottom: 20px;

            .mesaj {
                display: flex;
                margin: 10px 0;

                div {
                    background-color: white;
                    color: black;
                    padding: 15px;
                    font-size: 15px;
                    display: flex;
                    flex-direction: column;
                    width: fit-content;
                    border-radius: 5px;
                    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);

                    h6 {
                        margin-left: auto;
                        color: #999;
                        margin-top: 2.5px;
                    }
                }

                &.ben {
                    div {
                        margin-left: auto;
                        background-color: rgb(161, 237, 161);
                    }
                }
            }
        }

    }

    .mesaj-yaz {
        display: flex;
        align-items: center;

        input {
            width: 100%;
            min-width: 0;
            border: none;
            font-size: 12px;
            padding: 0 20px;
            border-radius: 30px;
            height: 40px;
            margin-right: 2.5px;
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
        }

        button {
            height: 40px;
            width: fit-content;
            min-width: fit-content;
            white-space: nowrap;
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
        }
    }
}

.button-2 {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin: 2.5px;
    color: white;
    border-radius: 5px;
    background: linear-gradient(to right, #339734, #78b179);
}

header .pp {
    background-color: #F6A100;
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
    z-index: 1;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 0 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

    &:hover>.front {
        opacity: 1;
        pointer-events: all;
    }

    .front {
        transition: all .5s;
        opacity: 0;
        pointer-events: none;
        display: flex;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        backdrop-filter: blur(5px);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 0 0 0 30px;

        .button {
            margin: 5px 0;
        }
    }

    .profile-photo {
        position: absolute;
        width: 100%;
        height: 100%;
        object-position: center;
        border-radius: 0 0 0 30px;
    }

    i {
        position: absolute;
        left: 5px;
        top: 5px;
        background-image: url(../images/non-success.svg);
        width: 16px;
        height: 16px;
        background-size: contain;
        display: block;

        &.active {
            background-image: url(../images/success.svg);
        }
    }

}

.header-login-info {
    justify-content: center;
}

.header-input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.header-input-group input {
    width: 100%;
    height: 24px;
    padding: 2px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 11px;
    outline: none;
    box-sizing: border-box;
}

.header-input-group input:focus {
    border-color: #F6A100;
}

header .header-login-pp {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 5px;
}

.header-login-submit {
    cursor: pointer;
    font-weight: 600;
    margin: 0 !important;
}

.header-reg-text {
    color: white;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s;
    line-height: 1.2;
}

.header-reg-text:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.night-mode {
    display: flex;
    align-items: center;
    padding: 5px;
    transition: all .5s;
    width: 70px;
    background-color: rgb(93 144 196);
    border: 2px solid white;
    border-radius: 50px;
    cursor: pointer;

    img {
        width: 20px;
        height: 20px;
        object-fit: contain;
        border-radius: 50%;
        cursor: pointer;
        padding: 2px;
        transition: background-color 0.3s;
    }

    img:first-child {
        background-color: black;
    }

    img:last-child {
        margin-left: auto;
        background-color: transparent;
    }
}

body.dark-mode .night-mode {
    background-color: #1a1a1a;

    img:first-child {
        background-color: transparent;
    }

    img:last-child {
        background-color: #FFCA00;
    }
}

.new-header {
    display: flex;
    align-items: center;
    padding: 10px 50px;
    gap: 10px;

    .logo {
        min-width: 200px;
        object-fit: contain;
    }

    .search {
        width: 100%;
        min-width: 0;
        position: relative;
        display: flex;
        align-items: center;

        input {
            width: 100%;
            padding: 15px 20px;
            color: white;
            border: unset;
            border-radius: 1000px;
            background-color: rgba(0, 0, 0, 0.2);

            &:focus {
                background-color: rgba(0, 0, 0, .3);
            }
        }

        i {
            width: 16px;
            height: 16px;
            cursor: pointer;
            filter: brightness(0) saturate(100%) invert(53%) sepia(95%) saturate(1651%) hue-rotate(312deg) brightness(97%) contrast(109%);
            position: absolute;
            right: 20px;
            background-image: url(../images/search.svg);
            background-size: contain;
        }
    }

    nav {
        margin-top: 0;

        a {
            background-color: rgba(0, 0, 0, 0.2) !important;
            flex-direction: column;
            color: black;
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;

            &:hover {
                background-color: rgba(0, 0, 0, .3) !important;
            }

            img {
                width: 32px;
                height: 32px;
                margin-right: 0;
                margin-bottom: 5px;
            }
        }
    }

    .night-mode {
        flex-direction: column;
        height: fit-content;
        width: unset;
        margin-right: 10px;
        gap: 5px;

        img {
            min-width: 20px;

            &:last-child {
                margin-left: 0;
            }
        }
    }

    .user {
        gap: 10px;

        img {
            width: 32px;
            min-width: 32px;
            height: 32px;
            min-height: 32px;
        }
    }
}

nav a {
    background-color: #ED9A00;
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    font-weight: 700;
    display: flex;
    margin: 0 5px;
    align-items: center;
    font-size: 15px;
    white-space: nowrap;
}

nav a img {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: normal;
}

a {
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 15px;

    img {
        height: 76px;
        margin-right: 20px;
        object-fit: contain;
    }

    h2 {
        font-weight: 500;
        font-size: 28px;
    }

    .logo-img {
        width: 100%;
        min-width: 150px;
        margin-right: 0;
    }
}

.login {
    .logo {
        justify-content: center;

        .logo-img {
            width: unset;
        }
    }
}

.acilir {
    position: relative;
}

.acilir.left-menu.active h5 {
    margin-top: 18px;
    border-radius: 0 20px 0 0;
}

.acilir.right-menu.active h5 {
    margin-top: 18px;
    border-radius: 20px 0 0 0;
}

.acilir-menu {
    z-index: 2;
    position: absolute;
    left: 0;
    color: #854B09;
    bottom: -1px;
    background-color: white;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.25);
    width: 100%;
    border-radius: 0 0 10px 0;
    opacity: 0;
    transform: translateX(-100%) translateY(100%);
    pointer-events: none;
    transition: all .5s;

    .drop-menu {

        h4 {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 10px 20px;

            img {
                margin-right: 20px;
                transition: all .5s;
            }
        }

        div {
            display: none;
            padding: 10px 20px;
            padding-top: 0;

            a {
                display: block;
                width: 100%;
                margin: 5px 0;
            }
        }

        &.active {
            h4 {
                img {
                    transform: rotate(90deg);
                }
            }
        }
    }
}

.right-menu .acilir-menu {
    border-radius: 0 0 0 10px;
    box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, 0.25);
    transform: translateX(100%) translateY(100%);
}

.acilir.active .acilir-menu {
    opacity: 1;
    transform: translateX(0) translateY(100%);
    pointer-events: all;
}

.acilir-menu .menu {
    border-bottom: 1px solid #707070;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    padding-bottom: 15px;
}

.acilir-menu .menu:last-child {
    border: none
}

.acilir-menu .menu h4 {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    padding: 0 5px;
    margin-bottom: 5px;
}

.acilir-menu .menu a {
    padding-left: 37px;
    font-size: 12px;
    margin: 2px 0;
}

.acilir-menu .menu h4 img {
    margin-right: 5px;
    width: 24px;
    height: 24px;
}

.left-menu,
.right-menu {
    display: flex;
    align-items: center;
    width: 200px;
}

.left-menu i,
.right-menu i {
    z-index: 1;
    width: 54px;
    height: 58px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

.left-menu i img,
.right-menu i img {
    width: 24px;
    height: 24px;
}

.left-menu h5,
.right-menu h5 {
    font-size: 15px;
    padding: 0 20px 0 40px;
    margin-left: -20px;
    border-radius: 0 20px 20px 0;
    background-color: #FCB123;
    transition: all .5s;
    margin-top: 0;
    height: 40px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.right-menu {
    justify-content: flex-end;
}

.right-menu h5 {
    margin-left: 0;
    margin-right: -20px;
    border-radius: 20px 0 0 20px;
    padding: 0 40px 0 20px;
}

.right-menu i {
    border-radius: 20px 0 0 20px;
}

main {
    padding: 20px;
}

.slider {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.slider .box {
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 25%;
    height: 280px;
    overflow-y: auto;
    margin-right: -5px;
    background: linear-gradient(135deg, #C74043, #893A3C);
}

.slider .box:first-child {
    border-radius: 20px 0 0 20px;
}

.slider .box:last-child {
    border-radius: 0 20px 20px 0;
}

.box h2 {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 15px;
    margin: 10px 0;
}

.box ul {
    background-color: white;
    list-style: none;
    padding: 0;
    margin: 0;
    color: black;
    height: 100%;
    overflow-y: auto;
    border-radius: 0 0 0 20px;
}

.box ul::-webkit-scrollbar {
    display: none;
}

.box ul li {
    padding: 5px 10px;
    text-align: left;
    font-size: 13px;
    display: flex;
    cursor: pointer;
    transition: all .2s;
    align-items: center;
}

.box ul li:hover {
    background-color: #eee;
}

.box ul li i {
    width: 10px;
    height: 10px;
    background-size: 100% 100%;
    display: block;
    margin-right: 5px;
}

.box .up {
    background-image: url(../images/up.svg);
}

.box .down {
    background-image: url(../images/down.svg);
}

.box .stabil {
    background-image: url(../images/stabil.svg);
}

.box .icon {
    width: 20px;
    height: 20px;
    margin-left: auto;
    background-image: url(../images/icon.svg);
}

.box.box-right .icon {
    margin-left: unset !important;
    margin-right: 5px;
}

.box.box.box-right ul li i:last-child {
    margin-left: auto;
}

.slider .slider-zone {
    width: 50%;
    height: 300px;
    background-color: white;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.slider-zone .alt-images {
    width: 100%;
    display: flex;
    align-items: center;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    padding: 10px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(to left, #C74043, #893A3C);
}

.alt-images img {
    max-width: calc(20% - 10px);
    height: 50px;
    margin: 0 5px;
    object-fit: cover;
    max-height: 50px;
    min-height: 50px;
    border-radius: 10px !important;
}

.slider-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .box:last-child {
    margin-right: 0;
    margin-left: -5px;
}

.slider .box:last-child ul {
    border-radius: 0 0 20px 0;
}

.piyasalar {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.piyasalar .piyasa {
    display: flex;
    align-items: center;
    width: calc(20% - 20px);
    margin: 10px;
    font-size: 13px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 5px;
    color: black;
    background-color: #FAFAFA;

    img:first-child {
        width: 24px;
        height: 24px;
    }

    img:last-child {
        width: fit-content;
        min-width: 0;
        max-height: 24px;
        margin-left: auto;
    }

    h4 {
        font-size: 13px;
        font-weight: 600;
        margin-left: 5px;
        white-space: nowrap;
    }

    h5 {
        font-size: 13px;
        margin-left: 5px;
    }

    h6 {
        font-size: 13px;
    }

    i {
        width: 16px;
        height: 16px;
        background-size: contain;
        margin-left: 5px;
        margin-right: 2.5px;
    }

    .low {
        display: flex;
        align-items: center;
        color: red;
        white-space: nowrap;

        i {
            background-image: url(../images/low.svg);
        }
    }

    .high {
        color: green;
        display: flex;
        align-items: center;
        white-space: nowrap;

        i {
            background-image: url(../images/high.svg);
        }
    }
}

.ikili-alan {
    display: flex;
    align-items: center;
    width: 100%;
}

.ikili-alan .urunler {
    width: 65%;
    padding-right: 0;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.ikili-alan .yazilar {
    width: 35%;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.kutucuklar {
    display: flex;
    margin: 20px 0;

    .kutu {
        flex: 1;
        min-width: 0;
        margin-right: 10px;
        background-color: #F6A100;
        padding: 20px;
        min-height: 100px;
        border-radius: 5px;

        &:last-child {
            margin-right: 0;
        }

        h2 {
            font-weight: 600;
        }
    }
}

.urun-listesi {
    display: flex;
    flex-wrap: wrap;
}

.urun-listesi .urun {
    width: calc(25% - 20px);
    margin: 10px;
    background: linear-gradient(to right, #830F95, #33084B);
}

.urunler.tum .urun {
    width: calc(20% - 20px);
    margin: 10px;
}

.yazilar.tum {
    .yazi-listesi {
        border: unset;
        flex-wrap: wrap;
        flex-direction: unset;
        overflow: hidden;

        .yazi {
            width: calc(25% - 20px);
            margin: 10px;
            flex-direction: column;

            .img {
                width: 100%;
                min-height: 150px;
                height: 150px;
                border-radius: 20px;

                img {
                    border-radius: 20px;
                }

                i {
                    padding: 10px 15px;
                    font-size: 13px;
                    border-radius: 0 20px 0 10px;
                }
            }

            .icerik {
                width: 100%;
            }
        }
    }
}

.tumu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    padding-top: 30px;
}

.tumu a {
    border-radius: 30px;
    color: white;
    padding: 5px 10px;
    font-size: 13px;
    width: fit-content;
    background: linear-gradient(to right, #830F95, #33084B);
}

.yazilar .tumu a {
    background: linear-gradient(to right, #C50171, #630139);
}

.stars {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    border-radius: 10px 0 20px 0;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    background-color: rgba(107, 107, 107, 0.25);

    i {
        width: 16px;
        height: 16px;
        background-image: url(../images/star.svg);
        background-size: contain;
    }

    span {
        margin-left: 5px;
    }
}

.ppuan {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 20px;

    h3 {
        margin-top: 0;
        margin-bottom: 0 !important;
    }

    div {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    h6 {
        font-weight: bold;
        font-size: 13px;
    }

    .stars {
        position: relative;
        margin: 0 10px;
        background-color: rgba(0, 0, 0, 0.25);
        border-radius: 30px;
    }
}

.urun {
    display: flex;
    flex-direction: column;
    border-radius: 20px 0 20px 0;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #830F95, #33084B);

    img:first-child {
        width: 100%;
        height: 170px;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
    }

    &:hover .puan {
        opacity: 1;
    }

    .puan {
        transition: all .5s;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0 !important;
        right: unset;
        display: flex;
        align-items: center;
        width: 100%;
        transform: translateY(-100%);

        .imgs {
            background-color: rgba(255, 255, 255, 0.5);
            padding: 2px 5px;
            border-radius: 0 10px 10px 10px;
        }

        i {
            position: absolute;
            right: 2.5px;
            border-radius: 50%;
            font-size: 9px;
            background-color: black;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid green;
        }

        img {
            width: 16px;
            height: 16px;
            min-width: 16px;
            border-radius: 50%;
            object-fit: cover;
        }
    }

    .add {
        position: absolute;
        right: 5px;
        top: 5px;
        width: 24px;
        height: 24px;
        background-image: url(../images/add.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    h5 {
        color: white;
        padding: 10px;
        position: relative;
        font-weight: 500;

        .kull {
            position: absolute;
            display: flex;
            align-items: center;
            top: 0;
            right: 0;
            transform: translateY(-100%);
            white-space: nowrap;
            border-radius: 10px 0 0 0;
            font-size: 12px;
            height: 37px;
            transition: all .5s;

            img {
                width: 32px !important;
                height: 32px;
                min-width: 32px;
                min-height: 32px;
                border-radius: 50%;
                position: absolute;
                right: 5px;
                bottom: 2.5px;
                transform: unset;
                border: 2px solid #ED9A00;
            }

            span {
                background-color: #ED9A00;
                height: 37px;
                display: flex;
                transition: all .5s;
                align-items: center;
                padding-left: 5px;
                border-radius: 10px 0 0 0;
                padding-right: 42px;
                transform: translateX(100%);
                opacity: 0;
            }

            &:hover {
                span {
                    transform: unset;
                    opacity: 1;
                }
            }
        }

    }

    .alt {
        display: flex;
        align-items: center;
        background-color: white;
        border-radius: 20px 0 20px 0;

        h6 {
            color: #854B09;
            margin-left: 10px;
            font-size: 15px;
            font-weight: 500;
        }

        .right {
            margin-left: auto;
            display: flex;
            align-items: center;

            i {
                background-color: #FF4444;
                color: white;
                padding: 0 10px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 12px;
                font-style: normal;
                position: relative;
            }

            i:before {
                content: "";
                position: absolute;
                left: 0;
                transform: translateX(-100%);
                width: 0;
                height: 0;
                border-top: 15px solid transparent;
                border-bottom: 15px solid transparent;
                border-right: 15px solid #FF4444;
            }
        }

        button {
            background-color: #ED9A00;
            border-radius: 0 0 20px 0;
            padding: 0 15px;
            height: 30px;
            border: none;
            color: white;
            display: flex;
            align-items: center;
            cursor: pointer;
            justify-content: center;

            img {
                width: 20px;
                height: 20px;
                object-fit: contain;
            }
        }
    }

    &.uzman {

        img {
            height: 200px;
            background-color: #F6A100;
            border-radius: 10px 0 0 10px;
        }

        h5 {
            font-size: 12px;

            .rozetler {
                position: absolute;
                top: 0;
                left: 0;
                transform: translateY(-100%);

                img {
                    background-color: transparent;
                }

                div:first-child:after {
                    left: 5px;
                    width: fit-content;
                    transform: translateX(0) translateY(-100%);
                }

                div:last-child:after {
                    left: unset;
                    right: 5px;
                    width: fit-content;
                    transform: translateX(0) translateY(-100%);
                }
            }
        }

        h5 tr td:first-child {
            font-weight: bold;
        }

        h6 {
            font-size: 13px;
        }

        .right button {
            font-size: 10px;
        }

    }
}

.yazi-listesi {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #854B09;
    padding: 0 10px;
    overflow-y: scroll;

    &::-webkit-scrollbar {
        width: 5px
    }

    /* Track */
    &::-webkit-scrollbar-track {
        background: transparent;
        box-shadow: inset 0 0 5px #dddddd;
        border-radius: 4px;
        border-left: 2px solid transparent;
        border-right: 2px solid transparent;
    }

    /* Handle */
    &::-webkit-scrollbar-thumb {
        background: #484848;
    }

    /* Handle on hover */
    &::-webkit-scrollbar-thumb:hover {
        background: #555;
        width: 5px;
    }
}

.yazi {
    display: flex;
    align-items: center;
    margin: 10px 0;
    position: relative;
    border: 1px solid #eee;
    border-radius: 20px;
    background: linear-gradient(to right, #C50171, #630139);

    .img {
        display: flex;
        width: 30%;
        min-width: 30%;
        height: 100%;
        min-height: 100%;
        position: relative;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 100%;
            display: block;
            border-radius: 20px 0 0 20px;
        }

        i {
            position: absolute;
            right: 0;
            top: 0;
            background-color: white;
            padding: 5px 10px;
            color: #854B09;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-radius: 0 0 0 10px;
            font-style: normal;
            font-size: 12px;
        }
    }

    div {
        color: white;
    }

    .icerik {
        width: 75%;
        padding: 10px;
    }

    h3 {
        font-size: 15px;
        font-weight: 600;
    }

    h4 {
        font-size: 13px;
        margin: 10px 0;
    }

    h5 {
        font-size: 13px;
        display: flex;
        align-items: center;

        a {
            margin-left: auto;
            background-color: white;
            color: #854B09;
            border-radius: 30px;
            padding: 5px 10px;
            font-size: 12px;
            text-align: center;
        }
    }
}

.listeler {
    margin: 30px 0;
    border-radius: 20px 20px 50px 50px;
    box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, 0.25);
}

.listeler .tabs {
    display: flex;
    align-items: flex-start;
}

.tabs i {
    flex: 1;
    height: 48px;
    min-width: 48px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.15);
}

.tabs i:hover {
    box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.25);
}

.tabs i.active {
    height: 64px;
}

.tabs i img {
    width: 24px;
    height: 24px;
}

.listeler h2 {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(to left, #92530C, #492A06);
}

.urun-carousel {
    display: flex;
    align-items: center;
    padding: 10px 50px;
    position: relative;
}

.urun-carousel .owl-stage-outer {
    position: relative;
}

.urun-carousel .owl-nav.disabled,
.nasil-carousel .owl-nav.disabled {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
}

.owl-prev,
.owl-next {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(252, 177, 35, 0.6) url(../images/arrow.svg) no-repeat center !important;
    background-size: 20px 20px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 5px 5px 10px 0 rgba(252, 177, 35, 0.5);
}

.owl-prev span,
.owl-next span {
    display: none;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
    transform: rotate(180deg) translateY(50%);
    box-shadow: -5px -5px 10px 0 rgba(252, 177, 35, 0.5);
}

.table-1 {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 13px;

    thead th {
        border-bottom: 2px solid black;
    }

    .blue-a {
        color: #78c2ba;
    }

    th,
    td {
        padding: 10px;
    }

    .success {
        background-color: green;
        text-align: center;
    }

    .button {
        margin: 0;
    }

    .warning {
        background-color: orange;
        text-align: center;
    }

    .error {
        background-color: red;
        text-align: center;
    }

    .flex {
        a {
            margin: 0 2.5px;
        }
    }

    img {
        width: 64px;
        height: 64px;
        object-fit: contain;
    }

    tbody tr td {
        border-bottom: 1px solid #333;
    }
}

.ilanlar {
    margin: 30px 0;

    table {
        width: 100%;
        text-align: center;
        font-size: 13px;
        font-weight: 600;

        th {
            background-color: #e9e9e9;
            font-size: 13px;
            padding: 5px;
        }

        tr td {
            padding: 5px 10px;
            transition: all .2s;
        }

        tr:hover td {
            background-color: #f9f9f9;
        }

        tr td:nth-child(2) {
            text-align: left;
            color: #123293;
            font-weight: 600;
        }

        tr:nth-child(2n+2) td {
            background-color: #eee;
        }

        img {
            width: 72px;
            height: 72px;
            object-fit: contain;
        }

        .kullanici {
            display: flex;
            align-items: center;
            margin-top: 5px;
            width: max-content;

            img {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                object-fit: cover;
                margin-right: 5px;
            }

            h5 {
                font-weight: 500;
            }
        }

        .fiyat {
            color: #c75351;
            font-size: 13px;
            display: flex;
            justify-content: center;

            i {
                display: inline-block;
                font-size: 10px;
                margin-top: 0;
                margin-right: 5px;
            }
        }
    }

}

.yayindakiler-carousel,
.yayindakiler-wrap {
    padding: 20px;

    a {
        display: flex;
        border-radius: 20px;
        position: relative;

        i {
            opacity: 0;
            background-image: url(../images/incele.svg);
            width: 100%;
            height: 100%;
            position: absolute;
            bottom: 0;
            transition: all .5s;
            left: 0;
            border-radius: 10px;
            backdrop-filter: blur(2px);
            background-repeat: no-repeat;
            background-position: bottom center;
            background-size: 50% 50%;
        }

        .category {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            font-size: 25px;
            font-weight: 800;
            text-align: center;
            backdrop-filter: blur(2px);
            border-radius: 10px;
            text-transform: uppercase;
            transition: all .2s;
            color: white;
            text-shadow: 0 0 10px black;

            &:hover {
                backdrop-filter: blur(5px);
            }
        }

        img {
            object-fit: cover;
            height: 300px;
            max-height: 300px;
            border-radius: 10px;
        }

        &:hover {
            i {
                opacity: 1;
            }
        }
    }
}

.yayindakiler-wrap {
    flex-wrap: wrap;
    display: flex;

    a {
        width: calc(20% - 20px);
        margin: 10px;

        img {
            width: 100%;
            height: 350px;
            min-height: 350px;
            object-fit: cover;
        }
    }
}

*[data-title] {
    position: relative;
}

*[data-title]:hover::after {
    pointer-events: none;
    font-family: Montserrat;
    background-color: black;
    color: white;
    padding: 10px;
    font-size: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: normal;
    content: attr(data-title);
    position: absolute;
    left: 50%;
    white-space: nowrap;
    top: -10px;
    transform: translateX(-50%) translateY(-100%);
}

.rozetler {
    display: flex;
    position: absolute;
    top: -2.5px;
    left: 2.5px;
    width: calc(100% - 5px);
    transform: translateY(-100%);

    div {
        flex: 1;
        max-width: 32px;
        min-width: 0;
        height: 32px;

        img {
            object-fit: contain;
        }
    }
}

.flex .label-1 {
    width: 100%;
    flex: 1;
    margin-right: 5px;

    &:last-child {
        margin-right: 0;
    }
}

.label-1 {
    display: flex;
    flex-direction: column;
    margin: 10px 0;

    h5 {
        font-weight: bold;
        font-size: 13px;
    }

    input,
    select,
    textarea {
        margin-top: 5px;
        width: 100%;
        padding: 10px;
        border-radius: 5px;
        resize: none;
        border: unset;
    }
}

.label-2 {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin: 2.5px;
    border-radius: 5px;
    border: 1px solid #666;

    input {
        margin-left: 0;
    }

    &:hover,
    &:has(input:checked) {
        background: linear-gradient(to right, #339734, #78b179);
    }
}

.msg-box {
    background-color: #d0e2fe;
    padding: 20px;
    color: #6278ac;
    border-radius: 5px;
    border: 1px solid #5f6585;
    font-size: 12px;
    margin: 10px 0;
    line-height: 1.5;

    &.red {
        background-color: #a7292b;
        color: white;
        border-color: white;
    }
}

.profil {

    display: flex;
    margin: 50px 0;

    .flex {
        .w-50:first-child {
            padding-right: 10px;
        }
    }

    .yildiz_filtresi {
        background-color: transparent;
        border: 1px solid #666;
        color: white;
        padding: 5px 10px;

        option {
            color: black;
        }
    }

    .hizmet {
        display: flex;
        background-color: #888888;
        flex-direction: column;
        border-radius: 10px;

        img {
            width: 128px;
            height: 128x;
            object-fit: cover;
        }

        h5 {
            padding: 10px;
            font-size: 13px;
            font-weight: 600;
        }
    }

    .etiketler {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 5px;
        margin-top: 5px;
        margin-bottom: 10px;

        .etiket {
            background-color: #eee;
            padding: 5px;
            font-size: 12px;
            color: black;
            border-radius: 5px;
            margin-right: 5px;
            cursor: pointer;

            &:after {
                content: "x";
                margin-left: 5px;
            }
        }
    }

    .etiket-ekle {
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        i {
            font-style: normal;
            margin-right: 5px;
            font-size: 13px;
            background-color: rgba(0, 0, 0, 0.25);
            padding: 5px 10px;
            border-radius: 2.5px;
            margin-bottom: 20px;
            cursor: pointer;
        }
    }

    .msg-box-2 {
        font-size: 12px;
        border: 1px dashed black;
        padding: 15px;
        border-radius: 5px;
        background-color: #eee;
        color: black;
    }

    .yorumlar {
        .yorum {
            background-color: #888 !important;
        }
    }

    .cv {
        margin-bottom: 50px !important;

        .w-50 {
            display: flex;
            flex-direction: column;
        }

        .ozgecmis {
            height: 100%;
        }
    }

    .yetenekler {
        i {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
            margin: 2.5px;
            color: white;
            border-radius: 5px;
            border: 1px solid #666;
            background: linear-gradient(to right, #339734, #78b179);
        }
    }

    .yorumlar-alani {
        position: relative;

        .flex {
            position: absolute;
            bottom: -10px;
            right: 0;
            transform: translateY(100%);
        }

        .yorumlar {
            height: 470px;
            overflow-y: auto;
            padding-right: 5px;

            &::-webkit-scrollbar {
                width: 5px
            }


            .pp {
                position: relative;
                display: flex;
                flex-direction: column;

                .pp-img {
                    border-radius: 50% 50% 0 0;
                    width: 120px;
                    height: 120px;
                    min-width: 120px;
                    object-fit: cover;
                }

                .bilgi {
                    position: relative;

                    .rozetler {
                        div {
                            height: auto;

                            img {
                                width: 100%;
                                height: 100%;
                                object-fit: contain;
                            }
                        }
                    }

                    h5 {
                        background-color: green;
                        padding: 10px;
                        display: flex;
                        align-items: center;
                        border-radius: 0 0 10px 10px;

                        i {
                            margin-left: auto;
                            font-style: normal;
                        }

                        a {
                            opacity: 0;
                            transition: all .25s;
                            position: absolute;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background-color: rgba(0, 0, 0, 0.25);
                            backdrop-filter: blur(2.5px);
                            display: flex;
                            font-size: 12px;
                            font-weight: bold;
                            align-items: center;
                            justify-content: center;
                            border-bottom-left-radius: 10px;
                            border-bottom-right-radius: 10px;
                        }

                        &:hover {
                            a {
                                opacity: 1;
                            }
                        }
                    }
                }
            }

            /* Track */
            &::-webkit-scrollbar-track {
                background: transparent;
                box-shadow: inset 0 0 5px #dddddd;
                border-radius: 4px;
                border-left: 2px solid transparent;
                border-right: 2px solid transparent;
            }

            /* Handle */
            &::-webkit-scrollbar-thumb {
                background: #484848;
            }

            /* Handle on hover */
            &::-webkit-scrollbar-thumb:hover {
                background: #555;
                width: 5px;
            }
        }

        .yorum {
            display: flex;
            flex-direction: row;
            margin: 5px 0;
            justify-content: stretch;
            align-items: stretch;
            background-color: rgba(255, 255, 255, 0.25) !important;

            h5 {
                text-align: center;
            }

            .pp-yorum {
                background-color: #ab7237;
                margin-left: 20px;
                position: relative;
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                padding: 10px;

                .stars {
                    position: absolute;
                    top: 1px;
                    right: 1px;
                    margin-top: 0;
                    left: unset;
                    width: fit-content;
                }
            }
        }
    }

    .baslik {
        font-size: 15px;
        font-weight: bold;
        display: block;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .listele {
        display: flex;
        flex-direction: column;

        .item {
            border-bottom: 1px solid #666;
            display: flex;
            margin-bottom: 10px;

            &.flex {
                .w-50 {
                    display: flex;
                    width: fit-content;
                    margin-left: 0;

                    &:last-child {
                        margin-left: auto;
                        text-align: right;

                        img {
                            margin-left: 20px;
                        }
                    }
                }
            }

            img {
                background-color: #f8ac58;
                width: 72px;
                height: 72px;
                object-fit: contain;
                padding: 15px;
            }

            div {
                margin-left: 20px;

                h5 {
                    font-weight: bold;
                    font-size: 12px;
                    margin: 5px 0;
                }

                h3 {
                    font-weight: bold;
                    margin: 0;
                    line-height: 1;
                }

                a {
                    font-size: 12px;
                    color: #4f96ff;
                    font-weight: 500;
                }
            }
        }
    }

    .ikili-table {
        width: 100%;
        margin: 30px 0;

        h3 {
            font-weight: bold;
            font-size: 15px;
            margin-bottom: 10px;
        }

        .w-50 {
            &:first-child {
                margin-right: 50px;
            }
        }

        table {
            margin: 10px 0;
            border-collapse: collapse;
            text-align: left;
            width: 100%;

            thead th {
                padding: 10px;
                border-bottom: 2px solid black;
                font-size: 13px;

                &:first-child {
                    padding-right: 50px;
                }
            }

            td {
                padding: 10px;
                font-size: 13px;
            }

            tbody tr:nth-child(2n+1) {
                background-color: rgba(0, 0, 0, 0.25);
            }
        }

        span {
            font-size: 12px;
        }

        .pagination {
            margin-left: auto;
            display: flex;
            align-items: center;

            i {
                padding: 5px 7.5px;
                border: 1px solid #666;
                font-style: normal;
                cursor: pointer;
                font-size: 13px;
                background-color: white;
                color: black;
                font-weight: 500;

                &:nth-child(1) {
                    border-top-left-radius: 5px;
                    border-bottom-left-radius: 5px;
                }

                &:nth-child(2) {
                    color: white;
                    background-color: #0f6dfd;
                }

                &:nth-child(3) {
                    border-top-right-radius: 5px;
                    border-bottom-right-radius: 5px;
                }
            }
        }

        .flex {
            label {

                &:last-child {
                    margin-left: auto;
                }

                &:first-child {
                    input {
                        width: 60px
                    }
                }

                h5 {
                    margin: 2.5px 0;
                }

                input {
                    height: 40px;
                    border-radius: 5px;
                    padding: 0 10px;
                    border: unset;
                }
            }
        }
    }

    .left {
        min-width: 250px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: white;
        padding: 20px;
        border-radius: 128px 10px 30px 10px;
        background: linear-gradient(to left, #92530C, #492A06);

        .bakiye {
            position: relative;
            width: 100%;

            b {
                margin-left: auto;
            }

            i {
                opacity: 0;
                transition: all .25s;
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                backdrop-filter: blur(2.5px);
                display: flex;
                font-weight: bold;
                align-items: center;
                justify-content: center;
                border-radius: 30px;
                font-style: normal;
                font-size: 10px;
            }

            &:hover {
                i {
                    opacity: 1;
                }
            }
        }

        .teminat {
            position: relative;
            width: 90%;
            margin-top: 10px;

            b {
                margin-left: auto;
            }

            i {
                opacity: 0;
                transition: all .25s;
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;
                backdrop-filter: blur(2.5px);
                display: flex;
                font-weight: bold;
                align-items: center;
                justify-content: center;
                border-radius: 30px;
                font-style: normal;
                font-size: 10px;
            }

            &:hover {
                i {
                    opacity: 1;
                }
            }
        }

        .pp-detaylar {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 5px;

            .p-detay {
                background-color: #907666;
                border-radius: 1000px;
                display: flex;
                align-items: center;

                h5 {
                    padding: 5px 10px;
                    font-size: 12px;
                }

                i {
                    margin-left: auto;
                    font-style: normal;
                    background-color: black;
                    border-radius: 1000px;
                    font-size: 12px;
                    padding: 5px;
                    width: 45px;
                    text-align: center;
                    border: 2px solid white;

                    &.green {
                        border-color: green;
                    }

                    &.red {
                        border-color: red;
                    }

                    &.orange {
                        border-color: orange;
                    }
                }

                .detay {
                    padding: 2px;
                    margin-left: auto;
                    display: flex;
                    position: relative;
                    z-index: 1;
                    align-items: center;
                    justify-content: center;
                    border-radius: 1000px;
                    overflow: hidden;

                    &.yuzdeli {
                        i {
                            border: unset;
                        }

                        .percent {
                            position: absolute;
                            width: 0;
                            left: -1px;
                            top: -1px;
                            z-index: -1;
                            height: calc(100% + 2px);
                            background-color: orange;
                        }
                    }
                }
            }
        }

        .pp {
            position: relative;
            display: flex;
            flex-direction: column;


            img {
                border-radius: 50% 50% 0 0;
                width: 200px;
                height: 200px;
                object-fit: cover;
            }

            .gold-uye {
                position: absolute;
                right: 0;
                top: 30%;
                width: 64px;
                height: 64px;
                background-image: url(../images/gold.png);
                background-size: contain;
            }

            .bilgi {
                position: relative;

                h5 {
                    background-color: green;
                    padding: 10px;
                    display: flex;
                    align-items: center;
                    text-align: center;
                    justify-content: center;
                    border-radius: 0 0 10px 10px;

                    i {
                        margin-left: auto;
                        font-style: normal;
                    }

                    a {
                        opacity: 0;
                        transition: all .25s;
                        position: absolute;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0, 0, 0, 0.25);
                        backdrop-filter: blur(2.5px);
                        display: flex;
                        font-size: 12px;
                        font-weight: bold;
                        align-items: center;
                        justify-content: center;
                        border-bottom-left-radius: 10px;
                        border-bottom-right-radius: 10px;
                    }

                    &:hover {
                        a {
                            opacity: 1;
                        }
                    }
                }
            }
        }

        h2 {
            margin-top: 30px;
            font-weight: 600;
            font-size: 20px;
        }

        h3 {
            font-size: 12px;
        }

        .menu {
            margin-top: 30px;
            display: flex;
            flex-direction: column;

            a {
                font-size: 13px;
                margin: 5px 0;
                text-align: center;

                &.active {
                    font-weight: bold;
                }
            }
        }
    }

    .right {
        width: 100%;
        margin-left: 10px;
        border-radius: 30px 10px 30px 10px;
        background: linear-gradient(to left, #92530C, #492A06);
        padding: 20px;
        min-width: 0;
        color: white;

        .header {
            margin-bottom: 20px;

            h2 {
                font-weight: bold;
                font-size: 20px;
            }

            p {
                margin: 0;
                font-size: 13px;
            }
        }
    }

}

.tabs-div {

    .tabs-tab {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 20px;

        i {
            cursor: pointer;
            font-size: 12px;
            font-style: normal;
            padding: 5px 10px;
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
            margin: 5px;
            transition: all .2s;
            border-radius: 30px;
            font-weight: 500;
            white-space: nowrap;

            &:first-child {
                margin-left: 0;
            }

            &:last-child {
                margin-right: 0;
            }

            &:hover,
            &.active {
                background-color: #F6A100;
                color: white;
            }
        }
    }

    .tab-page {
        display: none;
        font-size: 13px;
        margin-left: 10px;
    }

}

.comments {
    display: flex;
    flex-direction: column;

    .comment {
        display: flex;
        margin-bottom: 30px;
        max-width: 400px;

        img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        div {
            margin-top: 2.5px;
            font-size: 12px;

            a {
                font-weight: 600;
            }

            h6 {
                font-size: 10px;
            }
        }
    }
}

.add-comment {
    display: flex;
    align-items: center;
    max-width: 400px;
    padding: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;

    input {
        border: unset;
        width: 100%;
    }

    a {
        color: #0095f6;
        font-weight: 500;
        cursor: pointer;
    }
}

.yayindakiler-icerik,
.nasil-icerik {
    display: flex;
    margin: 50px 0;

    .sol img:first-child {
        width: 300px;
        max-height: 400px;
    }

    .sag {
        margin-left: 20px;

        h2 {
            font-weight: 500;
        }

        h3 {
            font-size: 15px;
            color: #666;
            margin-bottom: 50px;
        }

        p {
            font-size: 13px;
        }
    }
}

.nasil-icerik {
    text-align: center;
    color: white;
    padding: 50px 20px;
    border-radius: 20px;
    background: linear-gradient(to left, #92530C, #492A06);

    .sag {
        width: 100%;
        margin-left: 0;

        h3 {
            color: #aaa
        }
    }

    .tabs-tab {
        justify-content: center;
    }

    .sag img:first-child {
        width: 500px;
        max-width: 100%;
        border-radius: 20px;
        margin-bottom: 30px;
    }
}

.nasil-yapilir {
    border-radius: 50px 0 50px 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
    padding: 10px;
}

.nasil-yapilir-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;

    .nasil {
        max-width: calc(25% - 20px);
        margin: 10px;
    }
}

.nasil-yapilir .nasil-carousel {
    padding: 0 50px;
}

.nasil-yapilir h2 {
    display: flex;
    align-items: center;
    color: #92530C;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    padding-bottom: 0;
}

.nasil-yapilir h2 img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.nasil {
    display: flex;
    flex-direction: column;
    position: relative;
    height: 250px;
    align-self: stretch;
    border-radius: 10px 10px 20px 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

.nasil img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 20px 0;
    object-fit: cover;
}

.nasil div {
    position: absolute;
    left: 0;
    color: white;
    bottom: 0;
    align-items: center;
    position: relative;
    display: flex;
    border-radius: 0 0 20px 0;
    background: linear-gradient(to left, #C50171, #630139);
}

.nasil div i {
    background-color: white;
    border-radius: 0 10px 0 0;
    width: 50px;
    min-width: 50px;
    min-height: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nasil div i img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.nasil div h5 {
    padding: 5px;
}

.owl-stage {
    margin: 20px 0px;
    overflow: visible;
}

.main-slider {
    width: 100%;
    height: 100%;
}

.main-slider .owl-stage-outer,
.main-slider .owl-stage,
.main-slider .owl-item {
    height: 100%;
}

.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider .owl-stage {
    margin: 0;
    overflow: hidden;
}

.sayfa-sonu {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.sayfa-sonu .ikon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ikon i {
    background-color: #F6A100;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yazilar-wrap {
    display: flex;
    margin: 50px 0;
    flex-wrap: wrap;

    .yazi {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

.ikon i img {
    width: 56px;
    height: 56px;
}

.ikon h4 {
    background-color: #F6A100;
    padding: 0 15px;
    border-radius: 0 20px 20px 20px;
    color: white;
    margin-top: 10px;
    text-align: center;
    line-height: 1;
    height: 50px;
    display: flex;
    align-items: center;
}

.container {
    width: 90%;
    margin: 0 auto;
}

footer {
    background-color: #F6A100;
    color: white;
}

footer .container {
    display: flex;
    align-items: center;
}

footer .footer-left img {
    width: 100px;
}

footer .footer {
    text-align: center;
    padding: 0 50px;
}

.footer .footer-buttons {
    display: flex;
    align-items: center;
    margin: 10px 0;
    justify-content: center;
}

footer p {
    margin: 0;
    font-size: 12px;
}

.footer-buttons a {
    font-size: 12px;
    margin: 0 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.footer-buttons a img {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

footer span {
    display: block;
    font-size: 10px;
}

footer .footer-left,
footer .footer-right {
    width: 300px;
    padding: 10px 0;
}

.footer-right div {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin: 5px 0;
}

.footer-right div img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

.heading {
    color: white;
    font-weight: 600;
    font-size: 20px;
    padding: 15px;
    border-radius: 30px;
    text-align: center;
    border-radius: 20px;
    background: linear-gradient(to left, #92530C, #492A06);

}

.heading p {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: normal;
}

.yorumlar {
    .yorum {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #f9f9f9;
        padding: 10px;
        border-radius: 10px;

        .stars {
            position: relative;
            border-radius: 10px;
            margin-top: 10px;
        }

        img {
            width: 128px;
            max-width: 128px;
            height: 128px;
            border-radius: 50%;
            object-fit: cover;
        }

        h3 {
            font-weight: 600;
            margin-top: 20px;
            font-size: 13px;
        }

        p {
            font-size: 12px;
            margin-top: 20px;
        }
    }

    &.yayindakiler-yorumlar {
        img {
            border-radius: 0;
            height: 200px;
            object-fit: contain;
            object-position: center;
        }
    }
}

.kategoriler {
    padding: 0 50px;
    display: flex;

    .kategori {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        margin: 10px;
        text-align: center;
        border: 1px solid #92530C;
        border-radius: 10px 10px 20px 20px;

        img {
            width: 100%;
            height: 256px;
            object-fit: cover;
            border-radius: 10px 10px 0 0;
        }

        h3 {
            font-weight: 600;
            font-size: 15px;
            background-color: #92530C;
            color: white;
            padding: 10px;
            border-radius: 0 0 20px 20px;
        }
    }
}

.sikayet {

    margin: 50px 0;

    .flex {
        width: 100%;
    }

    label {
        width: 100%;
        margin: 10px 0;
    }

    label h5 {
        font-weight: 600;
        color: white;
        background-color: #F6A100;
        width: fit-content;
        padding: 5px 20px;
        border-radius: 20px 5px 0 0;
        margin-left: 5px;
        font-size: 12px;
    }

    .flex label:last-child {
        margin-left: 10px;
    }

    input,
    select,
    button,
    textarea {
        border-radius: 5px;
        border: 2px solid #F6A100;
        padding: 10px 20px;
        width: 100%;
    }

    textarea {
        resize: none;
        height: 150px;
    }

    button {
        margin-left: auto;
        width: fit-content;
        background: linear-gradient(to right, #830F95, #33084B);
        color: white;
        border: none;
        font-weight: 600;
        cursor: pointer;
        padding: 15px 40px;
    }

    img {
        width: 256px;
        height: 256px;
    }

}

.flex {
    display: flex;
}

.w-50 {
    width: 50%;
}

.mt-10 {
    margin-top: 10px;
}

.a-center {
    align-items: center;
}

.j-center {
    justify-content: center;
}

.f-column {
    flex-direction: column;
}

.flex .ikili {
    width: 50%;
}

.flex .ikili:last-child {
    margin-left: 10px;
}

.hakkimizda {

    margin: 10px 0;

    h2 {
        margin-bottom: 20px;
        background: linear-gradient(to right, #C50171, #630139);
        padding: 15px 20px;
        color: white;
        font-size: 15px;
        font-weight: 500;
        border-radius: 30px;
    }

    .soru {
        background: linear-gradient(to right, #830F95, #33084B);
        color: white;
        border-radius: 10px;
        margin: 5px 0;
    }

    .soru h3 {
        font-size: 15px;
        font-weight: bold;
        cursor: pointer;
        position: relative;
        padding: 15px 20px;
        display: flex;
        align-items: center;
    }

    .soru h3:after {
        content: "";
        width: 16px;
        height: 16px;
        background-image: url(../images/ok.svg);
        margin-left: auto;
        display: block;
        background-size: 100% 100%;
        filter: brightness(100%) invert(1);
        transition: all .5s;
    }

    .soru.active h3:after {
        transform: rotate(180deg);
    }

    .soru div {
        font-size: 13px;
        display: none;
        padding: 0 20px;
        padding-bottom: 15px;
    }

}

.sikayetler {
    display: flex;
    flex-direction: column;

    .sikayet:last-child {
        border: unset;
    }

    .sikayet:first-child {
        padding-top: 20px;
    }

    .sikayet {
        border-bottom: 1px solid #ddd;
        padding: 50px 0;
        margin: 0;

        h2 {
            font-weight: 600;
            margin-bottom: 20px;
        }

        p {
            font-size: 15px;
            color: #212121;
            margin-bottom: 0;
        }

        .sikayet-header {
            display: flex;
            align-items: center;

            img {
                width: 64px;
                height: 64px;
                border-radius: 50%;
                margin-right: 10px;
                background-color: #eee;
            }

            .flex {
                display: flex;
                align-items: center;
                font-size: 15px;

                h3 {
                    font-weight: 600;
                    color: black;
                    font-size: 15px;
                }

                h4 {
                    font-size: 13px;
                    margin-top: 2.5px;
                }

                a {
                    display: flex;
                    align-items: center;
                    color: #695de9;
                    font-weight: 600;
                }

                i {
                    width: 16px;
                    height: 16px;
                    margin: 0 10px;
                    display: block;
                    background-size: 100% 100%;
                    background-image: url(../images/reply.svg);
                }
            }
        }

    }
}

.cok-konusulanlar {
    position: relative;
    padding: 50px 0;
    margin-top: 50px;

    &:after {
        content: "";
        width: 56%;
        height: 100%;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        position: absolute;
        background-color: #695de9;
        border-radius: 90px 0 0;
    }

    &:before {
        content: "";
        min-width: 183px;
        min-height: 186px;
        top: auto;
        right: 0;
        bottom: 0;
        left: auto;
        position: absolute;
        background-color: #3ad08f;
        border-radius: 0 400px 0 0;
        z-index: 1;
        width: 28.5%;
        height: 46.5%;
        right: 27.5%;
    }
}

.cozum-basarisi {
    background-color: #272635;
    padding: 100px 0;
    text-align: center;
    color: white;

    h2 {
        font-size: 50px;
        font-weight: 600;
    }

    .flex {
        align-items: center;
        justify-content: center;
        margin: 60px 0;

        .select-box {
            margin-right: 30px;
        }

        div {
            display: flex;
        }

        label {
            color: #686677;
            font-size: 13px;
            margin: 0 10px;
            font-weight: 500;
            display: flex;
            align-items: center;

            input {
                width: 16px;
                height: 16px;
                margin-right: 5px;
            }
        }
    }

    p {
        color: #7c7b85;
        font-size: 13px;
        width: 80%;
        margin: 0 auto;
    }

    label {
        cursor: pointer;

        input {
            opacity: 0;
            position: absolute;
        }

        i {
            width: 24px;
            height: 24px;
            outline: 1px solid #afb0b6;
            border-radius: 50%;
            margin-right: 10px;
            position: relative;
            transition: all .5s;

            &:after {
                content: "";
                border-radius: 50%;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                position: absolute;
                background-color: green;
                width: 20px;
                height: 20px;
                opacity: 0;
                transition: all .5s;
            }
        }

        &:has(input:checked) {
            i {
                outline: 1px solid green;
            }

            i:after {
                opacity: 1;
            }
        }
    }
}

.firmalar {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;

    .firma {
        display: flex;
        align-items: center;
        border-radius: 20px;
        background-color: #f4f5f9;
        width: 600px;
        max-width: 90%;
        height: 100px;
        margin: 10px 0;

        .sag {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .sira {
            height: 100px;
            border-radius: 23px;
            padding: 5px;
            color: black;
            display: flex;
            align-items: center;
            font-style: normal;
            font-size: 13px;
            justify-content: center;
            font-weight: 400;
            width: 44px;
            min-width: 44px;
            flex-direction: column;

            i {
                width: 16px;
                height: 16px;
                background-size: contain;
                display: inline-flex;
                background-repeat: no-repeat;
                background-position: center;
            }

            &.arti {
                background-color: #c9f8e3;

                i {
                    background-image: url(../images/rank-up.svg);
                    margin-top: 5px;
                }
            }

            &.eksi {
                background-color: #ffdae1;
                flex-direction: column-reverse;

                i {
                    background-image: url(../images/rank-down.svg);
                    margin-bottom: 5px;
                }
            }
        }

        img {
            width: 108px;
            height: 72px;
            margin-right: 27px;
            border-radius: 19px;
            background-color: white;
            padding: 5px;
            object-fit: contain;
            margin-left: 30px;
        }

        h3 {
            color: black;
        }

        .puan {
            margin-left: auto;
            color: #9c9ba4;
            margin-right: 30px;
            display: flex;
            align-items: center;
            font-size: 13px;

            i {
                width: 24px;
                height: 24px;
                background-image: url(../images/star-s.svg);
                display: block;
                margin-right: 5px;
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
            }

            b {
                font-size: 19px;
                color: #444;
                font-weight: 700;
            }
        }
    }
}

.select-box {
    position: relative;

    input {
        display: none;
    }

    .main {
        padding: 20px 30px;
        font-size: 15px;
        background-color: #3a384a;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 500;
        color: #686677;
        text-align: left;
        display: flex;
        align-items: center;
        cursor: pointer;
        border: 1px solid transparent;
        transition: all .2s;
        width: 300px;

        &:hover {
            border: 1px solid #b2c1f6;
        }
    }

    .main:after {
        content: "";
        transition: all .5s;
        width: 16px;
        height: 16px;
        margin-left: auto;
        background-size: contain;
        filter: brightness(100%) invert(1);
        background-image: url(../images/arrow-d.svg);
    }

    .others {
        transition: all .5s;
        opacity: 0;
        z-index: 1;
        pointer-events: none;
        bottom: -10px;
        transform: translateY(100%);
        position: absolute;
        width: 100%;
        background-color: white;
        border-radius: 5px;
        border: 1px solid #dcdde1;
        box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
        padding: 12px 10px 12px 10px;

        input {
            width: 100%;
            padding: 5px;
            border: 1px solid black;
            border-radius: 5px;
            margin-bottom: 12px;
        }

        ul {
            max-height: 150px;
            overflow-y: auto;
            margin: 0;
            color: black;
            list-style: none;
            padding: 0;
            width: 100%;

            li {
                padding: 0;
                text-align: left;
                font-size: 12px;
                padding: 5px;
                width: 100%;
                margin: 2.5px 0;
                cursor: pointer;

                &:hover,
                &.active {
                    background-color: #9ba1ff;
                    border-radius: 5px;
                    color: white;
                }
            }
        }
    }

    &.active {
        .others {
            opacity: 1;
            pointer-events: all;
        }

        .main:after {
            transform: rotate(180deg);
        }
    }
}

.cok-konusulanlar-carousel {
    margin-left: 15%;

    .sikayet {
        border: 2px solid black;
        border-radius: 20px;
        padding: 30px;
        display: flex;
        color: white;
        flex-direction: column;

        &:last-child {
            border: 2px solid black;
        }

        h2 {
            transition: all .2s;
            margin: 30px 0;
            font-size: 25px;
        }

        h3 {
            color: white !important;
            font-size: 15px !important;
        }

        img {
            width: 72px !important;
            height: 72px !important;
        }

        .reply-a {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 600;
            font-size: 20px;
            margin-top: auto;

            i {
                width: 24px;
                height: 24px;
                margin: 0 10px;
                margin-left: 0;
                filter: brightness(0) invert(1);
                display: block;
                background-size: 100% 100%;
                background-image: url(../images/reply.svg);
            }
        }
    }

    .owl-item.firstactiveitem {
        background-color: white;
        border-radius: 20px;
        color: black;

        .sikayet {

            h3 {
                color: black !important;
            }

            h4 {
                color: black !important;
            }

            h2 {
                color: black !important;
            }

            .reply-a {
                color: #695de9;

                i {
                    filter: unset;
                }
            }

        }
    }
}

.sikayet-carousel,
.sikayet-carousel-reverse {
    .sikayet {
        padding: 30px !important;
        border: unset;
        border-radius: 10px;
        background-color: #eee;

        h2 {
            margin-bottom: 0;
            margin-top: 20px;
        }
    }
}

.sikayet-carousel-reverse {
    .sikayet {
        direction: ltr;
    }
}

.gundem {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #85878e;
    font-size: 30px;
    font-weight: 500;
    z-index: 1;
}

.gundemdekiler {
    background-color: #695de9;
    border-radius: 30px;
    color: white;
    padding: 20px 50px;

    .sikayet {
        border: unset;
        padding: 0 !important;

        h2 {
            margin: 0;
            margin-top: 30px;
        }

        h3 {
            color: white !important;
        }

        a {
            color: white !important;

            i {
                fill: #fff;
                filter: brightness(0) invert(1);
            }
        }
    }

}

.filtrele {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;

    select,
    input,
    button {
        padding: 10px 5px;
        min-width: 0;
        font-size: 12px;
        border-radius: 10px;
        border: none;
        background-color: #eee;
        margin-right: 2.5px;
    }

    div {
        display: flex;
        margin: 0 5px;

        input,
        select {
            width: 100%;
            margin: 0;
            margin-right: 2.5px;
        }
    }

    button {
        background-color: green;
        border: none;
        color: white;
        padding: 10px 10px;
        cursor: pointer;
        min-width: fit-content;
    }
}

@media (max-width: 1300px) {
    header {
        .header-top {
            flex-direction: column;
            align-items: unset;

            .header-nav {
                margin-top: 30px;
                margin-bottom: 10px;

                nav {
                    flex-wrap: wrap;
                    padding: 10px;

                    a {
                        width: calc(50% - 10px);
                        margin: 5px;
                    }
                }
            }

            .logo {
                width: calc(100% - 100px);
                margin-top: 15px;
            }

            .user {
                position: absolute;
                right: 0;
                top: 0;
            }
        }
    }

    .piyasalar {
        .piyasa {
            width: calc(50% - 10px);
            margin: 5px;
        }
    }

    .urun-listesi {
        .urun {
            width: calc(50% - 20px);
        }
    }

    .ikili-alan {
        .yazilar {
            width: 50%;
        }
    }
}

.table {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 763px) {

    .filtrele {
        flex-wrap: wrap;

        input,
        select,
        div {
            width: calc(50% - 10px);
            margin: 5px;
        }

        div {
            button {
                margin-right: 0;
            }
        }
    }

    .cozum-basarisi {
        .flex {
            flex-direction: column;

            .select-box {
                margin-right: 0;
                margin-top: 0;
            }

            div {
                margin-top: 20px;
            }
        }
    }

    .firmalar {
        width: 100%;

        .firma {
            img {
                width: 77px;
                margin: 0 10px;
            }

            .sag {
                flex-direction: column;
                align-items: flex-start;

                .puan {
                    margin-left: 0;
                    margin-top: 5px;
                }
            }
        }
    }

    .login {
        .flex {
            flex-direction: column;

            label {
                width: 100%;
                margin-right: 0 !important;
            }

            input,
            select {
                width: 100% !important;
            }
        }
    }

    .cok-konusulanlar {
        &:after {
            z-index: -1;
            width: 90%;
        }

        &:before {
            max-height: 186px;
            right: unset;
            left: 10%;
        }

        .cok-konusulanlar-carousel {
            margin-left: 0;
            padding: 10px;
        }
    }

    header {
        .header-top {
            flex-direction: column;
            align-items: unset;

            .header-nav {
                margin-top: 30px;
                margin-bottom: 10px;

                nav {
                    flex-wrap: wrap;
                    padding: 10px;

                    a {
                        width: calc(50% - 10px);
                        margin: 5px;
                    }
                }
            }

            .logo {
                width: calc(100% - 100px);
                margin-top: 15px;
            }

            .user {
                position: absolute;
                right: 0;
                top: 0;
            }
        }
    }

    .profil {
        flex-direction: column;

        .right {
            margin-left: 0;
            margin-top: 50px;
        }

        .ppuan {
            flex-direction: column;

            div {
                margin-left: unset;
                margin-top: 10px;
            }

            .stars {
                margin-top: 0;
                margin-left: 10px;
            }
        }

        .yorumlar-alani {
            .yorum {
                flex-direction: column;
                justify-content: center;
                align-items: center;

                .pp-yorum {
                    margin-left: 0;
                    margin-top: 20px;
                    padding: 30px 0;
                }
            }
        }

        .kutucuklar {
            flex-direction: column;

            .kutu {
                width: 100%;
                margin: 5px 0;
            }
        }

        .listele {
            .item {
                &.flex {
                    flex-direction: column;

                    .w-50:last-child {
                        margin-top: 10px;
                    }
                }
            }
        }

        form {
            .flex {
                flex-direction: column;

                label {
                    margin-right: 0 !important;
                }
            }
        }

        .ikili-table {
            flex-direction: column;

            .w-50 {
                width: 100%;
                margin: 10px 0 !important;
                padding-right: 0 !important;
            }
        }

        .mesajlasma {
            flex-direction: column;

            .mesajlari-yukle {
                width: 100%;
            }

            .mesajlar {
                width: 100%;
            }

            .mesaj-yaz {
                button {
                    img {
                        margin-right: 0;
                    }

                    h5 {
                        display: none;
                    }
                }
            }
        }
    }

    .kategoriler {
        flex-direction: column;
        padding: 20px 0;

        .kategori {
            width: 90%;
            margin: 10px auto;
        }
    }

    .iletisim,
    .sikayetim_var {
        flex-direction: column;

        .ikili {
            width: 100%;
        }
    }

    .ilanlar {

        table {
            thead {
                display: none;
            }

            tbody {
                display: flex;
                flex-direction: column;
                width: 100%;
                min-width: 100%;

                tr {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    width: 100%;
                    min-width: 100%;
                    background-color: #f9f9f9;
                    margin: 10px 0;
                    padding: 10px;
                    border-radius: 30px;

                    td:nth-child(2) {
                        text-align: center;
                    }

                    td {
                        padding: 7.5px;
                        background-color: unset !important;
                    }

                    .kullanici {
                        margin: 10px auto;

                        h5 {
                            font-size: 13px;
                        }
                    }

                    &:nth-child(2n+2) {
                        background-color: #eee;
                    }
                }
            }
        }

    }

    body.dark-mode .ilanlar tr {
        background-color: #333;

        &:nth-child(2n+2) {
            background-color: #555;
        }
    }

    .yayindakiler-icerik {
        flex-direction: column;

        .sol {
            img {
                width: 100% !important;
                object-fit: contain;
            }
        }

        .sag {
            margin-left: 0;
            margin-top: 30px;
            text-align: center;

            .tabs-tab {
                justify-content: center;
                margin-bottom: 50px;
            }

            h2 {
                margin-bottom: 10px;
            }
        }
    }

    .slider {
        flex-direction: column;

        .box:first-child {
            width: calc(100% - 30px);
            border-radius: 20px 20px 0 0;
            margin-right: 0;

            ul {
                border-radius: 20px 20px 0 0;
            }
        }

        .slider-zone {
            width: 100%;
        }

        .box:last-child {
            width: calc(100% - 30px);
            border-radius: 0 0 20px 20px;
            margin-right: 0;

            ul {
                border-radius: 0 0 20px 20px;
            }
        }

        .box {
            height: 200px;
        }

    }

    .yayindakiler-wrap {
        a {
            width: 100%;
            margin: 10px 0;
        }
    }

    .piyasalar .piyasa {
        width: 100%;
    }

    .ikili-alan {
        flex-direction: column;

        .urunler {
            width: 100%;
        }
    }

    .nasil-yapilir-wrap {
        .nasil {
            max-width: 100%;
            width: 100%;
            margin: 10px 0;
        }
    }

    .yazilar {
        width: 100% !important;

        .yazi-listesi {
            flex-direction: column !important;
            overflow: hidden !important;
            height: max-content;
        }

        .yazi {
            flex-direction: column;
            width: 100% !important;
            margin: 10px 0 !important;

            .img {
                width: 100%;
                height: 150px;
                min-height: 150px;

                i {
                    padding: 10px 15px;
                    font-size: 15px;
                }
            }

            .icerik {
                width: 100%;
            }
        }
    }

    .tumu {
        padding-top: 10px;
    }

    .urun-listesi .urun {
        width: 100%;
    }

    .yazi-listesi {
        border: unset;
        margin-top: 50px;
    }

    .sayfa-sonu {
        flex-wrap: wrap;

        .ikon {
            width: calc(50% - 20px);
            margin: 10px;
        }
    }

    footer {
        .container {
            flex-direction: column;
            text-align: center;
            padding: 20px 0;
        }

        .footer {
            margin: 20px 0;
            padding: 0 20px;
        }

        .footer-right div {
            justify-content: center;
        }
    }

    .listeler .tabs {
        overflow-x: auto;
    }

    .acilir {
        display: none;
    }

    header .header-bottom {
        padding: 10px;
    }

    .user {

        .info {
            display: none;
        }

    }

    .header-bottom {
        .search {
            margin: 0;
        }
    }

}

body.dark-mode {

    background-color: #242424;
    color: white;

    header .header-top {
        background-color: #C07A01;
    }

    .new-header {
        .search {
            input {
                background-color: rgba(255, 255, 255, 0.1);

                &:focus {
                    background-color: rgba(255, 255, 255, 0.2);
                }
            }
        }

        nav {
            a {
                background-color: rgba(255, 255, 255, 0.1) !important;
                color: white;

                img {
                    filter: invert(1)
                }

                &:hover {
                    background-color: rgba(255, 255, 255, 0.2) !important;
                }
            }
        }

        .user {
            img {
                filter: invert(1);
            }

            .user-area {
                img {
                    filter: unset
                }
            }
        }
    }

    nav a {
        background-color: #93520D;
    }

    .yorumlar {
        .yorum {
            background-color: #555;
        }
    }

    .sikayetler {
        .sikayet {
            border-color: #555;

            h3 {
                color: white !important
            }

            p {
                color: white;
            }

            .reply {
                filter: brightness(0) invert(1)
            }
        }
    }

    .sikayet-carousel,
    .sikayet-carousel-reverse {
        .sikayet {
            background-color: #444;

            h3 {
                color: white !important;
            }
        }
    }

    .ilanlar {
        th {
            background-color: #555;
        }

        tr td {
            color: white;
        }

        tr:nth-child(2n+2) td {
            background-color: #333;
        }

        tr:hover td {
            background-color: #555;
        }
    }

    .listeler,
    .nasil-yapilir {
        background-color: #2C2C2C;
    }

    .nasil-yapilir h2 {
        color: white;

        #Icon_awesome-puzzle-piece {
            fill: #ffffff !important;
        }
    }

    .tabs i {
        background-color: #E4E4E4;
    }

    .box {
        ul {
            background-color: #2C2C2C;
            color: white;

            li:hover {
                background-color: #666;
            }
        }
    }

    .night-mode {
        background-color: #000000;
    }
}