@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    padding: 0;
    margin: 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    padding-top: 80px;
}


/* NAVBAR */

.navbar .navbar-divs {
    font-size: 0;
    display: flex;
    width: 450px;
    margin: auto;
}


/* Navbar-Menu */

.navbar .navbar-menu {
    text-align: left;
    display: inline-block;
    width: 15%;
    margin-bottom: 13px;
}

.navbar-menu .navbar-menu-button {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 8px 0px 0px 0px;
    height: 30px;
}

.navbar-menu .navbar-menu-button img {
    width: 25px;
    fill: white;
}

.navbar-menu .navbar-menu-menu {
    transform: translateY(-100%);
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgb(0, 0, 0);
    background: linear-gradient( 135deg, rgb(4 4 4) 0%, rgb(39 39 39) 100%);
    transition: 0.3s;
    overflow: auto;
    padding-bottom: 30px;
}

.navbar-menu .navbar-menu-menu.show {
    transform: translateY(0%);
}

body.noscroll {
    overflow: hidden;
}

.navbar-menu-menu .navbar-menu-logo {
    width: 100%;
    height: 100%;
    max-width: 450px;
    margin: auto;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 11;
}

.navbar-menu-menu .navbar-menu-logo .navbar-menu-logo-main {
    width: 112px;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -5%);
    z-index: 12;
}

.navbar-menu-menu .navbar-menu-logo .navbar-menu-logo-back {
    width: 100%;
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
    z-index: 11;
    opacity: 0.05;
}

.navbar-menu-menu .navbar-menu-list {
    display: block;
    padding: 15px 20px 0 20px;
    z-index: 15;
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    transform: translateY(-35%);
    max-width: 450px;
    margin: auto;
}

.navbar-menu-menu .navbar-menu-list-item {
    position: relative;
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-width: 2px;
}

.navbar-menu-menu .navbar-menu-list-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-width: 2px;
}

.navbar-menu-menu .navbar-menu-list-item a {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    padding: 15px 0px 15px 7.5px;
    width: 100%;
    letter-spacing: .7px;
    font-weight: 500;
}

.navbar-menu-menu .navbar-menu-list-item.active a {
    color: rgba(255, 255, 255, 1);
}

.navbar-menu-list-item .menu-list-item-left-icon {
    width: max-content;
    height: max-content;
    position: absolute;
    top: 50%;
    left: 2.5px;
    transform: translateY(-50%);
    width: 22.5px;
}

.navbar-menu-list-item span {
    font-size: 14px;
    margin-top: auto;
}

.navbar-menu-menu .navbar-menu-list-item::after {
    content: "";
    background-image: url(../img/icons/menu-right-icon.png);
    width: 6px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.navbar-menu .navbar-menu-sign {
    width: 100vw;
    text-align: center;
    position: absolute;
    top: 67.5%;
    left: 50%;
    transform: translate(-50%, -68.5%);
}

.navbar-menu .navbar-menu-sign p {
    color: rgba(255, 255, 255, .60);
    padding: 0;
    margin: 0;
    font-size: 11px;
}

.navbar-menu .navbar-menu-closer {
    text-align: center;
    z-index: 15;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -75%);
}

.navbar-menu .navbar-menu-closer button {
    border: 0;
    outline: none;
    z-index: 15;
}


/* Navbar-Seach */

.navbar .navbar-search {
    text-align: left;
    display: inline-block;
    width: 15%;
    margin-bottom: 10px;
}

.navbar-search .navbar-search-button {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 8px 0px 0px 0px;
    height: 30px;
}

.navbar-search .navbar-search-bar {
    position: fixed;
    top: 63px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 49px;
    background-color: #DFDFDF;
    padding: 10px 0px;
    z-index: 1;
    max-width: 450px;
    display: none;
    text-align: center;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.navbar-search .navbar-search-bar.show {
    display: block;
}

.navbar-search .navbar-search-bar input {
    width: 92.5%;
    padding: 5px 10px;
    font-size: 12px;
    border: 0px solid black;
    outline: none;
    border-radius: 5px;
}

.navbar-search .navbar-search-bar button {
    padding: 10px;
    position: absolute;
    right: 7.5px;
    top: 50%;
    transform: translate(-5px, -50%);
    border: 0;
    background-color: transparent;
    outline: none;
}


/* Navbar-Logo */

.navbar-logo {
    text-align: center;
    display: inline-block;
    width: 58%;
}

.navbar-logo img {
    max-width: 123px;
    max-height: 30px;
    height: auto;
    margin-top: 6px;
    width: auto;
}


/* Navbar-Color */

.navbar-color {
    text-align: left;
    display: inline-block;
    width: 10%;
    margin-bottom: 7.5px;
}

.navbar-color .navbar-color-button {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0;
}


/* Navbar-Language */

.navbar-language {
    text-align: center;
    display: inline-block;
    width: 26%;
    margin-bottom: 0px;
    margin-top: 6px;
    position: relative;
}

.navbar-language .navbar-language-select {
    position: relative;
    width: 52px;
    height: 33px;
    text-align: left;
    background-color: rgb(43 43 43);
    border: none;
    border-radius: 7.5px;
    outline: none;
    padding: 7px;
    margin-left: auto;
    z-index: 2;
}

.navbar-language .navbar-language-select::after {
    content: '';
    background: url(../img/icons/select-arrow.png);
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    width: 13px;
    height: 8px;
}

.navbar-language .navbar-language-select img {
    width: 22px;
    float: left;
    border-radius: 5px;
}

.navbar-language .navbar-language-options {
    position: absolute;
    top: 37.5px;
    right: 0;
    margin: auto;
    background-color: #2b2b2b;
    width: 44px;
    border-radius: 7.5px;
    overflow: hidden;
    box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.45);
    display: none;
}

.navbar-language .navbar-language-options.show {
    display: block;
}

.navbar-language .navbar-language-option {
    border-bottom: 1px solid #E9E9E9;
    overflow: auto;
    padding: 7px;
}

.navbar-language .navbar-language-option:last-child {
    border-bottom: none;
}

.navbar-language .navbar-language-option:hover {
    background-color: #E9E9E9;
}

.navbar-language .navbar-language-option img {
    width: 28px;
    float: left;
    border-radius: 5px;
}

.navbar-language-option p {
    float: right;
    width: 21px;
    height: 0px;
    color: #606060;
    margin-top: 5px;
    font-weight: 600;
    font-size: 12px;
}


/* TITLE-SLIDERS */

.title-sliders *::selection {
    background-color: transparent;
}

.title-sliders {
    display: flex;
    white-space: nowrap;
}

.title-sliders.show {}

.title-sliders .title-slider {
    float: left;
    padding: 5px 10px;
    display: inline-block;
    white-space: nowrap;
    margin-right: 5px;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.title-sliders .title-slider.active {
    box-shadow: 0px 3px 8px -2px rgba(0, 0, 0, 0.5);
}


/* TİTLE SLİDER DARK */


/* TITLE-SLIDERS */

.title-sliders-dark *::selection {
    background-color: transparent;
}

.title-sliders-dark {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 45px;
    background-color: #DFDFDF;
    padding: 7.5px 10px;
    z-index: 1;
    max-width: 450px;
    display: none;
    overflow: auto;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%);
}

.title-sliders-dark.show {
    display: flex;
}

.title-sliders-dark::-webkit-scrollbar {
    display: none;
}

.title-sliders-dark .title-slider {
    float: left;
    padding: 5px 10px;
    display: inline-block;
    white-space: nowrap;
    margin-right: 5px;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.title-sliders-dark .title-slider.active {
    box-shadow: 0px 3px 8px -2px rgba(0, 0, 0, 0.5);
}

.title-sliders-dark .title-slider a {
    text-decoration: none;
    color: black;
}

.title-sliders-dark .title-slider.active a {
    color: white;
}


/* TITLE-BOXES */

.title-boxes {
    background-color: transparent;
    width: 100%;
    height: max-content;
}

.title-boxes .title-box {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 15px;
    max-width: 450px;
}

.title-boxes .title-box .title-box-title {
    width: 100%;
    padding: 10px 0px 10px 9px;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #efefef;
    text-align: left;
    border-left: 3px solid #d9930d;
}

.title-boxes .title-box .title-box-title h2 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.title-boxes .title-box .title-box-item .title-box-item-row {
    font-size: 0;
}

.title-boxes .title-box .title-box-item .title-box-item-title {
    color: #141515;
    font-weight: 600;
    font-size: 14px;
}

.title-boxes .title-box .title-box-item .title-box-item-description {
    font-weight: 400;
    font-size: 12px;
    color: #586D7F;
}

.title-boxes .title-box .title-box-item .title-box-item-image {}

.title-boxes .title-box .title-box-item .title-box-item-image img {
    width: 80%;
    border-radius: 12.5px;
}

.title-boxes .title-box .title-box-item .title-box-item-price {
    color: #586D7F;
    font-size: 13px;
}


/* ADD-DESCRIPTION */

.title-boxes .title-box .title-box-item.add-description .title-box-item-row {
    height: 50px;
}

.title-boxes .title-box .title-box-item.add-description .title-box-item-description {}


/* ADD-IMAGE */

.title-boxes .title-box .title-box-item.add-image .title-box-item-row {}

.title-boxes .title-box .title-box-item.add-image .title-box-item-image {}


/* ADD-PRICE */

.title-boxes .title-box .title-box-item.add-price .title-box-item-price {}


/* ADD-DESCRIPTION AND PRICE */

.title-boxes .title-box .title-box-item.add-price.add-description .title-box-item-row {
    height: 80px;
}

.title-boxes .title-box .title-box-item.add-price.add-description .title-box-item-description {
    display: inline-block;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
}

.title-boxes .title-box .title-box-item.add-price.add-description .title-box-item-price {
    display: inline-block;
    bottom: 2.5%;
    left: 0;
    transform: translateY(-2.5%);
}


/* ADD-IMAGE AND DESCRIPTION */

.title-boxes .title-box .title-box-item.add-image.add-description .title-box-item-row {
    height: 75px;
}

.title-boxes .title-box .title-box-item.add-image.add-description .title-box-item-description {
    display: block;
    width: 70%;
    top: 35%;
    left: 0;
    transform: translateY(-0%);
}

.title-boxes .title-box .title-box-item.add-image.add-description .title-box-item-image {
    display: block;
    width: 80px;
    top: 47.5%;
    right: 0 !important;
    left: auto;
    transform: translateY(-50%);
}


/* ADD-PRICE AND IMAGE */

.title-boxes .title-box .title-box-item.add-price.add-image .title-box-item-row {}

.title-boxes .title-box .title-box-item.add-price.add-image .title-box-item-price {
    color: #000000;
}

.title-boxes .title-box .title-box-item.add-price.add-image .title-box-item-image {}


/* ADD-DESCRIPTION, IMAGE AND PRICE */

.title-boxes .title-box .title-box-item.add-price.add-image.add-description .title-box-item-row {
    height: 90px;
}

.title-boxes .title-box .title-box-item.add-price.add-image.add-description .title-box-item-description {
    display: block;
    width: 70%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.title-boxes .title-box .title-box-item.add-price.add-image.add-description .title-box-item-image {
    display: block;
    width: 80px;
    top: 50%;
    right: 0;
    left: auto;
    transform: translateY(-50%);
}

.title-boxes .title-box .title-box-item .title-box-item-pop-up {
    display: none;
}

.title-boxes .title-box .title-box-item .title-box-item-pop-up.show {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 6;
}

.title-box-item .title-box-item-pop-up .pop-up-card {
    position: fixed;
    background-color: transparent;
    z-index: 6;
    width: 100%;
}

.close-pop-up-card {
    background-color: #fff;
    padding: 50px 20px 11px 2px;
    border-bottom: 6px solid #fff;
}

.title-box-item .title-box-item-pop-up .pop-up-card .pop-up-overflow {
    background-color: white;
    display: block;
    overflow: auto;
    height: 100vh;
}

.pop-up-card .pop-up-card-image img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    width: 100%;
}

.pop-up-card .pop-up-card-text {
    padding: 15px;
    padding-bottom: 0;
}

.pop-up-card .pop-up-card-text h3 {
    font-size: 18px;
    margin: 0;
    color: #141515;
    margin-bottom: 10px;
}

.pop-up-card .pop-up-card-text p {
    font-size: 13px;
    margin: 0;
    color: #2E2E2E;
}

.pop-up-card .pop-up-card-price {}

.pop-up-card .pop-up-card-price .price-row {
    overflow: hidden;
    text-align: center;
}

.pop-up-card .pop-up-card-price .price-row:last-child {
    border-bottom: 0;
}

.pop-up-card .pop-up-card-price .price-row .price-title {
    display: inline-block;
    float: left;
    font-weight: 600;
    color: #586D7F;
    font-size: 14px;
}

.pop-up-card .pop-up-card-price .price-row .price-price {
    display: inline-block;
    float: right;
    font-weight: 500;
    color: #586D7F;
    font-size: 15px;
}


/* OTHER PAGES */

.title-page {
    background: #f2f2f2;
    margin: auto;
    width: 95%;
    height: 45px;
    border-left: 4px solid #aeaeae;
    padding: 7.5px 10px;
    z-index: 1;
    max-width: 450px;
    border-radius: 10px;
}

.title-page.show {
    display: block;
}

.title-page .title {
    float: left;
    padding: 7px 10px;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 600;
}


/* GALERY PAGE */

.galery {
    width: 100%;
    height: max-content;
    padding: 10px;
}

.galery .galery-back {
    font-size: 0;
    background-color: white;
    padding: 0 2.5px;
    border-radius: 7.5px;
    max-width: 450px;
    margin: auto;
}

.galery .galery-item {
    width: 33.33%;
    height: 33.33%;
    display: inline-block;
    padding: 7.5px;
}

.galery .galery-item img {
    width: 100%;
    border-radius: 5px;
}

.galery .galery-item-shower {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 8;
}

.galery .galery-item-shower.show {
    display: block;
}

.galery .galery-item-shower-card {
    width: 85vw;
    max-width: 450px;
    height: auto;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transform: translateY(-50%);
    background-color: white;
    padding: 5px;
    padding-bottom: 2.5px;
    border-radius: 10px;
}

.galery .galery-item-shower-card img {
    border-radius: 7.5px;
    width: 100%;
}

.close-galery-item-shower {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 100%;
}


/* CONNECTIONS PAGE */

.connections {
    width: 100vw;
    height: 10px;
    padding: 10px;
}

.connections .connection {
    background-color: #ffffff;
    padding: 16px 15px 15px 20px;
    border-bottom: 1px solid #c5c5c5;
    position: relative;
    max-width: 450px;
    margin: auto;
    margin-bottom: 10px;
}

.connections .connection>img {
    vertical-align: text-bottom;
}

.connections .connection a {
    color: #444;
    text-decoration: none;
    padding: 0 10px;
    font-size: 14px;
}

.connections .connection .copy-button {
    background-color: transparent;
    border: 0;
    font-size: 16px;
    float: right;
    outline: none;
}

.connections .connection .copy-button .data-tooltip {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px;
    font-size: 11px;
    border-radius: 7.5px;
    z-index: 4;
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.connections .connection .copy-button .data-tooltip.show {
    display: block;
}

.connections .connection .copy-button .data-tooltip::after {
    content: "";
    position: absolute;
    left: calc(50% - 5px);
    width: 0;
    height: 0;
    border-bottom: 5px solid rgba(0, 0, 0, 0.8);
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-right: 5px solid rgba(0, 0, 0, 0);
    top: -5px;
}


/* SEND MESSAGE */

.send-message {
    width: 100%;
    padding: 10px;
    text-align: center;
}

.send-message .message-card {
    background-color: white;
    border-radius: 7.5px;
    padding: 10px;
    text-align: center;
    max-width: 450px;
    margin: auto;
}

.send-message .message-card .message-card-row {
    padding: 5px;
}

.message-card .message-card-row label {
    float: left;
}

.message-card .message-card-row {
    overflow: hidden;
    font-size: 0;
}

.message-card .message-card-row .message-card-label {
    width: 75px;
    display: inline-block;
    float: left;
}

.message-card .message-card-row .message-card-label label {
    width: 100%;
    font-size: 14px;
    line-height: 2;
}

.message-card .message-card-row .message-card-input {
    width: calc(100% - 75px);
    display: inline-block;
    float: right;
}

.message-card .message-card-row .message-card-input input {
    width: 100%;
    padding: 6px;
    outline: none;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

.message-card .message-card-row .message-card-input textarea {
    width: 100%;
    min-height: 62px;
    padding: 6px;
    outline: none;
    resize: vertical;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

.send-message input[type="submit"] {
    background-color: #DFDFDF;
    max-width: 450px;
    padding: 15px 10px;
    border: 0;
    margin-top: 10px;
    width: 100%;
    font-weight: 600;
    outline: none;
    border-radius: 5px;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 473px;
    }
}

.product-img {
    border-radius: 10px;
    -webkit-box-shadow: 1px 4px 10px 1px rgba(0, 0, 0, 0.17);
    box-shadow: 1px 4px 10px 1px rgba(0, 0, 0, 0.17);
    margin-bottom: 10px;
    margin-top: 10px;
}

.navbar-dark {
    padding: 10px 20px 10px 20px;
    box-shadow: 0px 2.5px 5px 0px rgb(0 0 0 / 20%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.navbar-color-switch {
    margin-top: 2px!important;
}

.deneme-40 {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 45px;
    padding: 7.5px 10px;
    z-index: 1;
    background: #f2f2f2;
}

.deneme-41 {
    max-width: 450px;
    overflow: auto;
}

.deneme-42 {
    float: left;
    padding: 5px 10px;
    display: inline-block;
    white-space: nowrap;
    margin-right: 5px;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.deneme-44 {
    white-space: nowrap;
}

.deneme-45 {
    color: #f3a305;
    background-color: black;
}

.deneme-47 {
    background-color: #ffffff;
}

.deneme-70 {}

.deneme-71 {
    color: black;
}

.deneme-72 {}

.deneme-73 {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 50px;
    padding: 7.5px 10px;
    z-index: 1;
    max-width: 450px;
    overflow: auto;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%);
}

.deneme-74 {
    position: fixed;
    top: 61px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 50px;
    padding: 7.5px 10px;
    z-index: 1;
    max-width: 450px;
    overflow: auto;
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 10%);
}

.deneme-73::-webkit-scrollbar {
    display: none;
}

.title-sliders .title-slider-2.active {
    box-shadow: 0px 3px 8px -2px rgb(0 0 0 / 50%);
}

.title-sliders .title-slider-2 {
    float: left;
    padding: 5px 10px;
    display: inline-block;
    white-space: nowrap;
    margin-right: 5px;
    border-radius: 10px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.lb-loader,
.lightbox {
    text-align: center;
    line-height: 0
}

.lb-dataContainer:after,
.lb-outerContainer:after {
    content: "";
    clear: both
}

html.lb-disable-scrolling {
    overflow: hidden;
    position: fixed;
    height: 100vh;
    width: 100vw
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #000;
    filter: alpha(Opacity=80);
    opacity: .8;
    display: none
}

.lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10000;
    font-weight: 400
}

.lightbox .lb-image {
    display: block;
    height: auto;
    max-width: inherit;
    max-height: none;
    border-radius: 3px;
    border: 4px solid #fff
}

.lightbox a img {
    border: none
}

.lb-outerContainer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff
}

.lb-loader,
.lb-nav {
    position: absolute;
    left: 0
}

.lb-outerContainer:after {
    display: table
}

.lb-loader {
    top: 43%;
    height: 25%;
    width: 100%
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(../images/loading.gif) no-repeat
}

.lb-nav {
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10
}

.lb-container>.nav {
    left: 0
}

.lb-nav a {
    outline: 0;
    background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}

.lb-next,
.lb-prev {
    height: 100%;
    cursor: pointer;
    display: block
}

.lb-nav a.lb-prev {
    width: 34%;
    left: 0;
    float: left;
    background: url(../images/prev.png) left 48% no-repeat;
    filter: alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s
}

.lb-nav a.lb-prev:hover {
    filter: alpha(Opacity=100);
    opacity: 1
}

.lb-nav a.lb-next {
    width: 64%;
    right: 0;
    float: right;
    background: url(../images/next.png) right 48% no-repeat;
    filter: alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    transition: opacity .6s
}

.lb-nav a.lb-next:hover {
    filter: alpha(Opacity=100);
    opacity: 1
}

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px
}

.lb-dataContainer:after {
    display: table
}

.lb-data {
    padding: 0 4px;
    color: #ccc
}

.lb-data .lb-details {
    width: 85%;
    float: left;
    text-align: left;
    line-height: 1.1em
}

.lb-data .lb-caption {
    font-size: 13px;
    font-weight: 700;
    line-height: 1em
}

.lb-data .lb-caption a {
    color: #4ae
}

.lb-data .lb-number {
    display: block;
    clear: left;
    padding-bottom: 1em;
    font-size: 12px;
    color: #999
}

.lb-data .lb-close {
    display: block;
    float: right;
    width: 30px;
    height: 30px;
    background: url(../images/close.png) top right no-repeat;
    text-align: right;
    outline: 0;
    filter: alpha(Opacity=70);
    opacity: .7;
    -webkit-transition: opacity .2s;
    -moz-transition: opacity .2s;
    -o-transition: opacity .2s;
    transition: opacity .2s
}

.lb-data .lb-close:hover {
    cursor: pointer;
    filter: alpha(Opacity=100);
    opacity: 1
}

.istek {
    max-width: 448px;
    ;
}

.lv-price {
    font-size: 14px;
}

.category-bg-border-dark {
    border-radius: 10px;
}

.urun-aciklamasi-2 {
    margin-bottom: 10px;
    font-size: 12px;
}

.list-title {
    margin-bottom: 0px;
}

.deneme33 {
    border-top: 1px dotted #f2f2f254;
    margin-bottom: 3px;
    margin-top: 3px;
}

.price-size {
    font-size: 14px;
}

.message-bg {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding-bottom: 20px;
}