@charset "utf-8";
/*!
 * custom.css
 * Webkokteyli - 2020
 */

/* vars */
:root {
    --text-color-primary: #78b928;
    --text-color-secondary: #81ce24;
    --text-color-purple: #8b1768;
    --text-color-purple-secondary: #a0237b;

    --bg-color-primary: #404040;
    --bg-color-secondary: #272727;
}

/* body */
body{
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: rgba(0,0,0,0.9);
    font-size: 0.92rem;
}

/* colors */
.color-green {
    color: var(--text-color-primary);
}
.color-purple {
    color: var(--text-color-purple);
}

/* h */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    opacity: 0.92;
}
.h1, h1 {
    font-size: 1.7rem;
    margin-bottom: 1.9rem;
    opacity: 1;
}
.h2, h2 {
    font-size: 1.34rem;
    margin-bottom: 1.34rem;
}
.h3, h3 {
    font-size: 1.2rem;
}

/* headers*/
.headers {
    color: #000;
    position: relative;
    margin-bottom: 1.8rem;
}
.headers span,
.headers p{
    color: #000;
    color: rgb(33 33 33);
    line-height: 2;
    margin-bottom: 0;
}
.headers.headers-colored {
    color: var(--text-color-primary);
}
.headers.headers-border-top:before {
    content: "";
    display: block;
    width: 90px;
    border-top: 2px solid #000;
    margin-bottom: 1.3rem;
}
.headers.headers-colored.headers-border-top:before {
    border-color: var(--text-color-primary);
}
.headers.headers-arrow {
    padding-left: 1.5rem;
}
.headers.headers-arrow:before {
    content: "";
    display: block;
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    position: absolute;
    left: -3px;
    top: 10px;
    /* border-color: #588a1b; */
}
.headers.headers-colored.headers-arrow:before {
    border-color: #83c532;
}

/* button */
.buttons {
    display: flex;
}
.buttons.buttons-right {
    justify-content: flex-end;
}
.buttons > .button {
    /* margin-right: 5px; */
}
.buttons.buttons-right > .button+.button {
    margin-right: 0;
    margin-left: 5px;
}
.button {
    position: relative;
    display: inline-block;
    padding: 0.6rem 1.6rem;
    color: #fff;
    font-size: .8rem;
    line-height: 1.4;
    /* background-color: #444; */
    cursor: pointer;
    text-decoration: none;
    border: 0;
    /* min-height: 48px; */
    border-radius: 0;
    font-size: 1rem;
}
/* .button:hover {
    background-color: #78b928;
} */
.button > i {
    font-size: 0.7rem;
    margin-right: 0.4rem;
}
.btn-secondary{
    background-color: #444;
}
/* .btn-secondary:hover{
    background-color: #78b928;
} */
.btn-success{
    background-color: var(--text-color-primary);
}
.btn-success:hover{
    background-color: var(--text-color-secondary);
}

/* input */
input:not([type=checkbox]), select, textarea, .form-control {
    /* min-height: 48px; */
    border-radius: 0;
    border: 2px solid #e2e2e2;
}
textarea.form-control {
    padding: 1rem;
}

/* dialogues / js-confirm */
.jconfirm .jconfirm-box{
    border-radius: 0;
}
.jconfirm .jconfirm-box .jconfirm-buttons button{
    border-radius: 0;
    padding: 0.5rem 1.5rem;
}
.jconfirm .jconfirm-box .jconfirm-buttons>button{
    margin-left: 0.5rem;
}
.jconfirm .jconfirm-box.jconfirm-type-green {
    border-top: 7px solid var(--text-color-secondary);
}
.jconfirm .jconfirm-box.jconfirm-type-purple {
    border-color: var(--text-color-purple);
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple {
    background-color: var(--text-color-purple);
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover {
    background-color: var(--text-color-purple-secondary);
}

/* card */
.card {
    border: 0;
    border-top: 1px solid #ddd;
    border-radius: 0;
    /* padding-top: 30px; */
}
.card-body {
    padding: 30px;
}

/* topbar search */
.search-results {
    border-radius: 0 0 4px 4px;
    /* margin: 0px; */
    overflow: hidden;
    z-index: 11;
}
.search-results ul {
    margin: 0;
}
.search-results ul li a {
    padding: 0.7rem 1rem;
    font-size: 0.86rem;
    margin: 0;
    border-bottom: 1px solid #eee;
}
.search-results ul li:last-child a {
    border: 0;
}
.search-results ul li a > i {
    font-size: 0.82rem;
    color: #777;
}

/* navbar */
.navbar-brand img{
    width: 180px;
}
.navbar {
    padding: 0;
    flex-direction: column;
}
.navbar .navbar-nav {
    margin-left: -1rem;
}
.navbar .navbar-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 100px;
    align-items: center;
}
.navbar .navbar-tools {
    display: flex;
}
.navbar .navbar-tools .navbar-search{
    margin-right: 2rem;
}
.navbar .navbar-tools .navbar-search input {
    border: 1px solid #ddd;
    height: 34px;
    width: 480px;
    border-radius: 3px;
    padding: 0.5rem 1rem;
    background: transparent;
    z-index: 1;
    position: relative;
    font-size: 0.9rem;
    color: #666;
    min-height: unset;
}
.navbar .navbar-tools .navbar-search > i {
    position: absolute;
    right: 13px;
    top: 50%;
    margin-top: -6px;
    font-size: 0.76rem;
    color: #ccc;
    z-index: 0;
}
.navbar .navbar-tools .navbar-search input::placeholder {
    font-size: 0.72rem;
    letter-spacing: 0.4px;
    color: #aaa;
}
.navbar .navbar-tools .icon-area ul {
    margin: 0;
}
.navbar .navbar-tools .icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar .navbar-tools .icon-area ul li {
    color: var(--text-color-secondary);
}
.navbar .navbar-tools .icon-area ul li:not(:last-child) {
    margin-right: 1.15rem;
}
.navbar-bottom {
    width: 100%;
    height: 46px;
    background-color: #f2f2f2;
}
.navbar .navbar-nav .nav-link {
    padding: 0;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-top: 1px solid transparent;
}
.navbar.navbar-expand-md .navbar-nav .nav-link {
    padding: 0 1rem;
    padding-top: 1px;
}
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
    color: #000;
    font-weight: 500;
    border-top: 1px solid var(--text-color-secondary);
}
.navbar .navbar-nav>li>.dropdown-menu {
    margin: 0;
    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0;
    background-color: #e6e6e6;
}
.navbar .navbar-nav>li>.dropdown-menu a {
    font-size: 0.83rem;
    letter-spacing: 0.5px;
}
.nav-item .dropdown-toggle::after {
    border: 1px solid #777;
    width: 6px;
    height: 6px;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    margin-left: 0.7rem;
    margin-top: -3px;
}
.navbar .navbar-nav .nav-item.show .nav-link {
    background-color: #e6e6e6;
}
.navbar .dropdown-item {
    min-height: 36px;
    display: flex;
    align-items: center;
}
.dropdown-item:focus,
.dropdown-item:hover {
    background: transparent;
    color: var(--text-color-secondary);
}
/* burger */
.burger-menu .dropdown-item {
    font-size: 0.86rem;
}

/* slider carousel */
.container.container-1600 {
    max-width: 1630px;
}
.carousel-item > img {
    max-width: 100%;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: 50% 30%;
}
.carousel-item.left-top .carousel-caption {
    left: 6vw;
    right: auto;
    bottom: auto;
    top: 4rem;
}
.carousel-item.right-top .carousel-caption {
    left: auto;
    right: 6vw;
    bottom: auto;
    top: 4rem;
}
.carousel-item.left-bottom .carousel-caption {
    left: 6vw;
    right: auto;
    bottom: 0;
    top: auto;
}
.carousel-item.right-bottom .carousel-caption {
    left: auto;
    right: 6vw;
    bottom: 0;
    top: auto;
}
.overlay-header {
    text-align: left;
    color: #000;
}
.carousel-item.color-light .overlay-header {
    text-align: left;
    color: #fff;
    text-shadow: 0 0 14px #000b;
}
.overlay-header h1 {
    font-size: 1rem;
    text-transform: uppercase;
    /* font-weight: 500; */
    margin-bottom: 0.3rem;
    letter-spacing: 0;
}
.overlay-header p {
    font-size: 2.1rem;
    font-weight: 300;
    /* max-width: 90%; */
    position: relative;
}
.overlay-header p:before {
    content: "";
    display: block;
    border: 1px solid #000;
    border-left: 0;
    border-bottom: 0;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    position: absolute;
    left: -25px;
    top: 13px;
    border-color: #588a1b;
}
.carousel-item.color-light .overlay-header p:before {
    border-color: #fff;
    top: 20px;
}
.carousel-control-next, .carousel-control-prev {
    width: 50px;
    height: 44px;
    top: 50%;
    bottom: auto;
    margin-top: -22px;
    background-color: rgba(0, 0, 0, 0.33);
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 13px;
}
.carousel:hover .carousel-control-next, .carousel:hover .carousel-control-prev {
    opacity: 1;
}
.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
/* .overlay-header.carousel-caption p {
    font-size: 1.5rem;
}
.overlay-header.carousel-caption h1 {
    font-size: 1.9rem;
    text-transform: none;
    margin-bottom: 25px;
} */
.left-bottom .overlay-header.carousel-caption h1 {
    /* max-width: 60%; */
}
/* sep */
.separator:after{
    background: linear-gradient(90deg, transparent 0%, #ffffffd6 20%, #ffffff 70%);
}


/* content */
/* .content {
    padding: 3rem 0;
} */
.text-content {
    color: rgba(33, 33, 33, 0.6);
    line-height: 2;
}
.text-content.compact {
    text-align: justify;
}
.text-content.compact {
    color: rgba(33, 33, 33, 0.7);
    line-height: 1.9;
    font-size: 0.9rem;
}
.text-content > .row {
    margin-bottom: 1rem;
}
.text-content .quote {
    text-align: left;
    font-size: 2.2em;
    line-height: 1.55;
    color: var(--text-color-secondary);
    font-weight: 300;
    margin: 1rem;
}
.text-content strong,
.text-content b {
    color: rgba(33, 33, 33);
}
.text-content a {
    color: var(--text-color-secondary);
    font-weight: 500;
}
.text-content a strong,
.text-content a b {
    color: var(--text-color-secondary);
}
.text-content a:after {
    content: "\f35d";
    display: inline-block;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 0.7rem;
    margin: 0 0 0 0.3rem;
}

/* home */
.section.section-home.section-home-text {
    margin-bottom: 3rem;
}
.section-home .konfigurator-box a img {
    height: 255px;
}
.product-group {
    margin-bottom: 30px;
}
.product-group .overlay-header {
    position: absolute;
    left: 126px;
    top: 40px;
    z-index: 1;
}
.product-group img {
    max-width: 100%;
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: 50% 54%;
    background-color: #edeef0;
}
.col-12:not([class*=col-sm]) .product-group img {
    height: 350px;
}
.product-group a > span {
    margin-bottom: 15px;
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
}

/* side menu accordion */
.accordion {
    margin: 1rem 0 2rem;
    user-select: none;
    /* border-left: 1px solid #ccc; */
    /* border-right: 1px solid #ccc; */
}
.accordion>.card {
    border: 0;
    border-radius: 0;
    margin-top: -1px;
}
.accordion>.card>a {
    /* font-size: 0.9rem; */
    /* text-transform: uppercase; */
    display: flex;
    align-items: center;
    height: 50px;
    border-top: 1px solid #cacaca;
    border-bottom: 1px solid #bbb;
    /* margin-top: -1px; */
    padding: 0px;
    padding-left: 4px;
    /* background-color: #ececec; */
}
.accordion>.card>a>img {
    width: 16px;
    margin-right: 0.6rem;
    filter: contrast(6);
}
.accordion>.card>a>span:not(.summary) {
    line-height: 1;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #000;
}
.accordion>.card>a:after,
.accordion>.card>a:before {
    content: "";
    display: block;
    /* width: 12px; */
    /* height: 12px; */
    position: absolute;
    right: 0.4rem;
    top: 19px;
}
.accordion>.card>a:after {
    width: 11px;
    border-bottom: 1px solid #666;
    margin-top: 5px;
}
.accordion>.card>a:before {
    height: 11px;
    border-right: 1px solid #666;
    margin-right: 5px;
}
.accordion>.card>a:not(.collapsed):before {
    opacity: 0;
}
/* .accordion>.card .card-body{
    padding-top: 2rem;
    padding-bottom: 2rem;
} */
.accordion>.card .card-body p {
    margin-bottom: 0;
}
.accordion>.card>a>span.summary {
    display: none;
    position: absolute;
    right: 0;
    color: #969696;
    font-size: 0.76rem;
    right: 2rem;
    font-style: italic;
    width: 110px;
    text-align: right;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}
.accordion>.card>a.collapsed>span.summary {
    display: block;
}
.accordion>.card:last-child>a {
}
.accordion .card-body {
    padding: 1rem 0 0.7rem;
    /* padding-left: 1.5rem; */
    /* background-color: #f9f9f9; */
    font-size: 0.82rem;
}
.accordion>.card>a:not(.collapsed) {
    border-bottom: 1px solid transparent;
    /* background-color: #f5f5f5; */
}

/* breadcrumbs */
/* .breadcrumbs {
    padding: 0;
} */
.breadcrumb {
    background-color: transparent;
    padding: 1.3rem 0;
    color: #484848;
    font-size: 0.96rem;
    font-weight: 300;
    margin: 0;
}
.breadcrumbs .breadcrumb li a {
    color: #555;
    font-size: 0.92rem;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    border: 1px solid rgb(111 111 111 / 61%);
    width: 7px;
    height: 7px;
    border-top: 0;
    border-left: 0;
    transform: rotate(-45deg);
    padding: 0;
    margin-top: 8px;
    margin-right: 1rem;
    margin-left: 0.5rem;
}

/* hesabim account*/
.section-account .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.1rem 0.6rem;
    font-size: 0.88rem;
    line-height: 1;
}
.side-menu-account button {
    display: flex;
    width: 100%;
    padding: 0.7rem 0;
    margin-bottom: -1rem;
}
.side-menu-account button i {
    margin-left: 10px;
    margin-right: 0;
}
.account-content .card {
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}
.account-content .card-body {
    padding: 1rem 1.4rem;
}

/* siparisler */
.order-list-single-body .card-body {
    padding: 0;
}
.account-orders .table p {
    margin: 0 0 0.4rem;
}
.account-orders .table h2 {
    font-weight: 600;
}
.order-list-single-body .table th,
.order-list-single-body .table td {
    padding: 0.9rem 1.2rem;
    vertical-align: middle;
    border-color: #f0f0f0;
}
.cargo-status-timeline {
    padding-top: 1.4rem;
}
.order-list-single {
    font-size: 0.88rem;
}
.order-list-single-body > div {
    margin-bottom: 3rem;
}
.order-list-single-body > div .headers {
    margin-bottom: 1rem;
    font-weight: 700;
}
.order-list-single-body > div .h {
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 1px;
}
.order-list-single .order-list-info span:first-child {
    font-weight: 600;
}
.order-list-single .order-list-info span:last-child {
    font-size: 0.8rem;
}
.order-list-single .order-list-payment {
    font-weight: 600;
}
.order-list-single .order-list-status i {
    font-size: 0.8rem;
    margin-right: 0.3rem;
    color: #444;
}
/* adresler */
.account-content .buttons > .button:not(:last-child) {
    margin-right: 10px;
}
.account-content .buttons {
    align-items: center;
    justify-content: flex-end;
}
.btn.btn-outline-danger {
    border: 1px solid #ff00007a;
    color: #f00;
}
.btn.btn-outline-danger:hover {
    color: #fff;
}

/* urunler products */
.section.section-products {
    margin-top: 0;
}
.ecommerce-product-related-products .card,
.all-ecommerce-items .card {
    border: 0;
    border-radius: 0;
}
/* .ecommerce-product-related-products .card{
    background-color: transparent;
} */
.ecommerce-product-related-products .card-img-top,
.all-ecommerce-items .card-img-top {
    border-radius: 0;
    height: 376px;
    object-fit: cover;
    object-fit: cover;
    filter: brightness(0.95);
    background-color: #fff;
}
.ecommerce-product-related-products .card > div,
.all-ecommerce-items .card > div {
    border-bottom: 1px solid #ddd;
    height: 100%;
}
.ecommerce-product-related-products .card a:hover,
.all-ecommerce-items .card a:hover {
    text-decoration: none;
}
.ecommerce-product-related-products .card h2,
.all-ecommerce-items .card h2 {
    font-size: 1.35rem;
}
.section.section-products .card-text {
    color: #999;
}

.section.section-products .card-title {
    /* font-weight: 400; */
    line-height: 1.5;
}
.ecommerce-product-related-products .card-body,
.all-ecommerce-items .card-body {
    padding: 1.4rem 0;
    font-size: 1rem;
    font-weight: 300;
}
.ecommerce-product-related-products {
    margin-top: 6rem;
    margin-bottom: 3rem;
}
/* .all-ecommerce-items .ecommerce-product-related-products .card h2 {
    margin-bottom: 1rem;
} */
.card-stock-warning,
.card-cargo-free {
    color: #6faf20;
    font-weight: 300;
}
.card-price span.price {
    font-size: 1rem;
    opacity: 0.5;
    margin-right: 0.8rem;
}
.card-price span.price:last-child {
    opacity: 1;
    font-size: 1.3rem;
}
.ecommerce-product-detail {
    /* background-color: #ebecee; */
    /* padding: 3rem 0; */
    /* margin-top: -3rem; */
}
.ecommerce-product-detail .carousel-item > img {
    max-height: none;
    background-color: #fff;
}
.ecommerce-product-quick-info h1 {
    font-size: 2.7rem;
}
.ecommerce-product-info-area .ecommerce-product-quick-info,
.ecommerce-product-info-area .card-stock-warning,
.ecommerce-product-info-area .card-cargo-free {
    font-size: 1.1rem;
    font-weight: 300;
    /* margin-bottom: 2rem; */
}
.ecommerce-product-cart-info .card-price {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 3rem;
}
.ecommerce-product-cart-info .card-price p {
    margin: 0;
}
.ecommerce-product-cart-info .card-price span.price {
    font-size: 1.5rem;
    font-weight: 300;
}
.ecommerce-product-cart-info .card-price span.price:last-child {
    font-size: 2rem;
}
.ecommerce-product-cart-info .card-price .row > div:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.ecommerce-product-description-area {
    background-color: #fff;
}
.ecommerce-product-detail-section {
    background-color: #ebecee;
    padding: 3rem 0;
    margin-bottom: -3rem;
}
.ecommerce-product-description-area {
    font-size: 1.1rem;
    font-weight: 300;
    padding: 2rem 0 0;
}
.ecommerce-product-description-area h1 {
    margin-bottom: 2rem;
}
.ecommerce-product-description-area .row > div > div {
    border-bottom: 1px solid #eee;
    padding-bottom: 3rem;
}
.ecommerce-product-info-area .card {
    background: transparent;
    border: 0;
    margin-bottom: 0 !important;
}
.ecommerce-product-info-area .card-body {
    padding: 0;
}
.ecommerce-product-info-area .card:not(:first-child) {
    margin-top: 2rem;
}
.ecommerce-product-info-area .form-control {
    min-height: 44px;
    /* width: auto; */
    /* min-width: 50%; */
}
.ecommerce-product-info-area .ecommerce-product-quick-info {
    margin-bottom: 30px;
}
.ecommerce-product-info-area {
    padding-left: 2rem;
}
/* amazon benzer similar ürünler */
.ecommerce-product-similar a {
    display: block;
    text-decoration: none;
    position: relative;
}
.ecommerce-product-similar a.active:before,
.ecommerce-product-similar a.active:after{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    display: block;
}
.ecommerce-product-similar a.active:before {
    border-color: #78b928 #78b928 transparent transparent;
    border-color: var(--text-color-secondary) var(--text-color-secondary) transparent transparent;
    border-width: 18px;
    border-style: solid;
}
.ecommerce-product-similar a.active:after {
    width: 8px;
    height: 13px;
    border: 3px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    margin: 3px 6px;
}
.ecommerce-product-similar .card {
    background-color: #ffffff63;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px !important;
    border-radius: 0;
    border: 1px solid transparent;
    /* border-radius: 2px; */
    padding: 1rem;
    text-align: center;
}
.ecommerce-product-similar .card p {
    margin: 0;
}
.ecommerce-product-similar a.active .card,
.ecommerce-product-similar a:hover .card {
    background-color: #fff;
    border-color: #81ce24;
    transition: all .2s ease-in-out;
}
.ecommerce-product-similar .card .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.ecommerce-product-similar .card p {
    font-size: 0.8rem;
    color: #999;
}
.ecommerce-product-similar .row {
    margin: 0 -5px;
}
.ecommerce-product-similar .row > div {
    padding: 0 5px;
}
.ecommerce-product-similar a:hover .card .card-title {
    /* color: #81ce24; */
}

/* konfigurator */
.konfigurator-page{
    position: relative;
    min-height: 600px;
}
.konfigurator-page h1 {
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
}
.konfigurator-page .loading-cover{
    content: "";
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255, 0.97);
    top: 0;
    left: 0;
    z-index: 1;
    align-items: center;
    justify-content: center;
    text-align: center;
    user-select: none;
}
.konfigurator-page .loading-cover.active{
    display: flex;
}
.konfigurator-page .loading-cover .text-content i {
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
    opacity: 0.5;
}
.konfigurator-page .loading-cover .text-content h1 {
    font-size: 1.2rem;
    opacity: 0.8;
}
.konfigurator-steps {
    margin-top: -2rem;
    margin-bottom: 1rem;
}
.konfigurator-step {
    /* padding: 1rem 0; */
    margin: 1.5rem 0;
    /* opacity: 0.8; */
    position: relative;
}
.konfigurator-step a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 0.77rem;
    text-transform: uppercase;
    color: #777;
    letter-spacing: -0.5px;
    text-decoration: none;
    position: relative;
    min-height: 60px;
}
.konfigurator-step a img {
    margin-bottom: 0.6rem;
    opacity: 0.6;
}
.konfigurator-step a.done img{
    opacity: 0.15;
}
.konfigurator-step a.done span{
    opacity: 0.4;
}
.konfigurator-step a.done:before {
    content: "";
    display: block;
    position: absolute;
    right: 17px;
    top: 19px;
    width: 9px;
    height: 16px;
    border: 3px solid #689a2a;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    z-index: 1;
}
.konfigurator-step a.active,
.konfigurator-step a:hover {
    color: var(--text-color-secondary);
}
.konfigurator-step a:hover span{
    opacity: 1;
}
.konfigurator-step a.active img,
.konfigurator-step a:hover img {
    filter: contrast(180%) invert(100%) sepia(100%) saturate(910%) hue-rotate(40deg) brightness(0.8) opacity(0.8);
    opacity: 1;
}
.konfigurator-step a:not(.done) {
    cursor: pointer;
    user-select: none;
    pointer-events: none;
}
.konfigurator-step.dots a:before {
    content: "...";
    display: block;
    font-size: 2.2rem;
    line-height: 1;
    margin-top: -1rem;
    opacity: 0.4;
}
.row > div:not(:last-child) .konfigurator-step:after {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    right: -19px;
    border: 1px solid #d5d5d5;
    transform: rotate(45deg);
    border-left: 0;
    border-bottom: 0;
    top: 50%;
    margin-top: -10px;
}
.konfigurator-content .text-content {
    font-size: 0.96rem;
}
.konfigurator-content > div:not(:last-child) {
    margin-bottom: 3rem;
}

.konfigurator-selection-area {
    /* margin-top: 3rem; */
}
.konfigurator-boxes {
    /* margin-top: 3rem; */
}
.konfigurator-box {
    margin-bottom: 30px;
}
.konfigurator-box a {
    display: block;
    /* background-color: #f3f3f3; */
}
.konfigurator-box a:hover{
    text-decoration: none;
}
.konfigurator-box a span {
    /* margin-bottom: 0.4rem; */
    display: block;
    min-height: 84px;
    /* padding: 0.8rem 0 0; */
    text-align: center;
    /* background-color: #fafafa; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid; */
    transition: all .2s ease-in-out;
    line-height: 1.3;
    padding: 0 1rem;
    font-size: 0.86rem;
    background-color: #f7f7f7;
}
.konfigurator-box a:hover span {
    /* background-color: #f5f5f5; */
    /* background-color: #78b928; */
    /* color: #fff; */
    /* background-color: #fff; */
    color: var(--text-color-secondary);
}
.konfigurator-box a img {
    width: 100%;
    height: 140px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    /* opacity: 0.65; */
    transition: opacity .2s ease-in-out;
    /* background-color: #fefefe; */
    display: block;
    /* border: 1px solid #e9e9e9; */
    border-bottom: 0;
}
.konfigurator-box a:hover img {
    opacity: 1;
}

/* konfigurator summary */
.konfigurator-summary button {
    min-height: unset;
    font-size: 0.8rem;
}
.row > div .accordion .card{
    margin-bottom: 0;
}
.konfigurator-summary .accordion .card .card-body {
    padding: 0;
}
.konfigurator-summary .card .card-body .text-content {
    padding: 0.8rem 0 1.2rem 1.8rem;
}
.konfigurator-summary .card .card-body .text-content h4 {
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #444;
    line-height: 1;
    font-weight: 400;
    font-size: 0.9rem;
    /* text-transform: uppercase; */
    color: #333;
}
.konfigurator-summary .card .card-body .text-content > div:not(:last-child) {
    margin-bottom: 1.3rem;
}
.konfigurator-summary .card .card-body .text-content p {
    margin: 0;
}
.konfigurator-summary .card .card-body .text-content p > span {
    display: block;
    line-height: 1.3;
}
.konfigurator-summary .card .card-body .text-content .option-price p {
    font-size: 1rem;
}
.konfigurator-summary .card .card-body .text-content p > span:nth-child(2) {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* konfigurator-add cart */
.konfigurator-cart {
}
.konfigurator-cart .card {
    border-radius: 0;
}
.konfigurator-cart .card-body {
    padding: 1.6rem;
}
.konfigurator-cart .konfigurator-final-product-area .card-title {
    /* font-weight: 500; */
    font-size: 1.4rem;
    margin-bottom: 1.9rem;
}
.konfigurator-cart .konfigurator-final-product-area .card-text {
    font-size: 0.9rem;
}
.konfigurator-cart .konfigurator-final-product-area .final-product-info {
    line-height: 2.3;
}
.konfigurator-cart .konfigurator-final-product-area .final-product-info p.price {
    font-size: 1.2rem;
    text-align: right;
    font-weight: 500;
}
.konfigurator-cart .konfigurator-final-product-area .card {
    border: 0;
    border-top: 1px solid #ddd;
    border-radius: 0;
}
.konfigurator-cart .konfigurator-final-product-area .card-body {
    padding: 2.5rem 0;
}
.konfigurator-cart .konfigurator-final-product-area .final-product-info strong {
    width: 90px;
    display: inline-block;
    font-weight: 500;
}
.konfigurator-cart .konfigurator-final-product-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    max-height: 200px;
}

/* quote */
.konfigurator-quote-form {
    border-top: 1px solid #ddd;
    padding-top: 2rem;
}

/* total price */
.price-summary > .card .card-body p:last-child {
    margin: 0;
}
.price-summary > .card .card-body p {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #444;
}
.price-summary > .card .card-body p.total {
    text-transform: uppercase;
    font-size: 0.92rem;
    margin-top: 1.8rem;
}
.price-summary > .card .card-body p > strong {
    font-weight: 500;
    color: #111;
}

/* box list */
.konfigurator-box.konfigurator-box-list {
    /* width: 50%; */
    margin-bottom: 0;
}
.konfigurator-box.konfigurator-box-list a {
    border-bottom: 1px solid #f5f5f5;
    border-top: 1px solid #f5f5f5;
    padding: 1.2rem;
    line-height: 1;
    /* margin-top: -1px; */
    position: relative;
    margin-bottom: 0.5rem;
}
.konfigurator-box.konfigurator-box-list a span {
    margin: 0;
    display: inline-block;
    min-height: auto;
    padding: 0;
    line-height: normal;
    text-align: left;
    background-color: transparent;
}
.konfigurator-box.konfigurator-box-list a:hover {
    /* background-color: #fafafa; */
    color: var(--text-color-secondary);
    /* font-weight: 500; */
}
.konfigurator-box.konfigurator-box-list a:before {
    content: "";
    display: inline-block;
    /* position: absolute; */
    left: 17px;
    top: 19px;
    width: 9px;
    height: 16px;
    border: 3px solid #bdbdbd;
    border-left: 0;
    border-top: 0;
    transform: rotate(45deg);
    z-index: 1;
    margin-right: 1rem;
    opacity: 0.25;
    transition: all .2s ease-in-out;
}
.konfigurator-box.konfigurator-box-list a:hover:before {
    border-color: var(--text-color-secondary);
    opacity: 1;
}
/* box list img */
.konfigurator-box.konfigurator-box-list a > img {
    display: inline-block;
    width: 140px;
    height: 55px;
    margin-right: 1.2rem;
}

.konfigurator-box.konfigurator-box-list.konfigurator-box-list-img a {
    padding: 0 1.2rem;
    border-color: #f5f5f5;
    margin-bottom: 0.5rem;
}

/* summary */
.side-menu > .card {
    background-color: #f2f2f2;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #bbb;
}
.side-menu > .card .card-body {
    padding: 1.3rem;
    padding: 26px;
}
.side-menu ul li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

/* side-menu-header */
.side-menu-header {
    position: relative;
}
.side-menu-header > .buttons {
    position: absolute;
    top: 0;
    right: 0;
}
.side-menu-header > .buttons > .button {
    padding: 0.5rem 0.8rem;
    font-size: 0.7rem;
    letter-spacing: -0.4px;
}
.side-menu-header > .buttons > .button > i {
    margin: 0;
    font-size: 0.7rem;
}
.side-menu-header > .buttons > .button.button-reset {
    background-color: var(--text-color-secondary);
}
.side-menu-header > .buttons > .button.button-back {
    padding: 0.5rem 1.6rem;
}


/* ecommerce cart sepet */
.price-summary dl {
    margin: 0;
}
.price-summary dl > div:not(:last-child) {
    margin-bottom: 20px;
}
button.ecommerce-remove-cart {
    font-size: 0.7rem;
    border-radius: 0;
    background-color: transparent;
    color: #dc3545;
}
.ecommerce-cart-list-item p {
    margin: 0;
}
.ecommerce-cart-summary dd.warehouse {
    font-size: 0.85rem;
    letter-spacing: -0.2px;
    line-height: 1.8;
}

/* dosya merkezi */
.accordion .card .accordion-header {
    padding: 0;
    margin-bottom: 1rem;
}
.accordion-header > h2 {
    margin: 0;
    font-size: 1rem;
}
.accordion-header button {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    padding: 1rem 1.3rem;
    line-height: 1;
    outline: none;
    box-shadow: none !important;
    border-radius: 0;
    text-decoration: none !important;
}
.accordion-header button:hover {
    text-decoration: none;
    color: var(--color-primary);
}
.accordion-header button:after {
    content: "+";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.3rem;
    margin: 12px;
}
.accordion-header button[aria-expanded="true"] {
    background-color: var(--bg-primary);
    color: #fff;
}
.accordion-header button[aria-expanded="true"]:after {
    opacity: 0;
}
.file-center .kilavuzlar-inner img {
    border: 1px solid #e5e5e5;
    padding: 1.5rem 2rem;
    /* margin-bottom: 1.4rem; */
    max-height: 260px;
    width: 100%;
    object-fit: contain;
}
.file-center .kilavuzlar-inner > a {
    padding: 1.5rem 0.2rem;
    display: block;
    text-decoration: none;
}
.file-center .kilavuzlar-inner h4 {
    font-size: 0.92rem;
    color: #000;
    opacity: 1;
    font-weight: 500;
    margin-bottom: 0.7rem;
}
.file-center .kilavuzlar-inner a:hover h4 {
    color: var(--color-primary);
}
.file-center .kilavuzlar-inner p {
    margin: 0;
    font-size: 0.86rem;
    color: #777;
}

/* contact iletisim */
.contact-info-area .card {
    border: 0;
    background-color: #f5f5f5;
}
.form-check-input+label {
    font-size: 0.72rem;
    line-height: 2;
    color: #666;
}
.contact-form-area .form-group:nth-child(2),
.contact-form-area .form-group:nth-child(3) {
    width: 50%;
    float: left;
}
.contact-form-area .form-group:nth-child(2) {
    margin-right: 30px;
    width: calc(50% - 30px);
}
.contact-info-area .contact-list > p {
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.contact-form-area .form-group {
    margin-bottom: 0.8rem;
}
.contact-form-area .form-group label {
    font-size: 0.8rem;
}
.contact-form-area {
}

/* footer */
.konfigurator-footer .text-content {
    font-size: 0.9rem;
}
.konfigurator-footer .text-content ul li i {
    position: absolute;
    margin-top: 7px;
    min-width: 20px;
    text-align: center;
}
.konfigurator-footer .text-content ul li {
    position: relative;
}
.konfigurator-footer .text-content ul li p {
    padding-left: 30px;
    margin-bottom: 0.4rem;
}

/* footer */
.footer-content {
    background-color: #f2f2f2;
    background: #fafafa;
    z-index: 1;
    border-top: 1px solid #efefef;
    color: rgba(33, 33, 33, 0.7);
    line-height: 1.9;
    font-size: 0.9rem;
}
.footer-content .footer-content-info a,
.footer-content a:hover {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
}
.footer-content .row > div:not(:last-child) > div {
    border-right: 1px solid #e9e9e9;
    margin-right: 10px;
}
.footer-content .row > div h3 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #000;
}
.footer-content .footer-content-info img.logo {
    max-width: 180px;
}
.footer-content .footer-content-info img.iyzico {
    max-width: 90%;
    margin-top: 1rem;
    width: 300px;
}
.footer-content-info p {
    padding-right: 10%;
}
.footer-content-menus > ul {
    columns: 1;
}
footer .footer-copyright {
    background-color: var(--text-color-secondary);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 200;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}
footer .footer-copyright i {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.84);
}
.footer-content-contact .social-list {
    margin-top: 1rem;
}
.footer-content-contact .social-list li a {
    padding: 0.3rem;
}
.footer-content-contact .social-list li a:hover {
    color: var(--text-color-secondary);
}

/* recaptcha */
.grecaptcha-badge{
    display: none;
}

/* mobile */
@media (max-width: 1600px){
    .container-1600{
        padding: 0;
    }
}

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

@media (min-width: 1024px){
    .konfigurator-box a img {
        /* height: 140px; */
    }
    .konfigurator-box a span {
        min-height: 60px;
    }
}

@media (max-width: 768px){
    .navbar-search {
        display: none;
    }
    .navbar .navbar-tools .icon-area {
        /* display: none; */
        margin-right: 50px;
    }
    .carousel-item > img {
        height: 180px;
    }
    .navbar-brand, .navbar-light .navbar-brand {
        display: flex;
        padding-top: 0;
    }
    .navbar .navbar-top {
        min-height: 80px;
    }
    .navbar-bottom {
        display: none;
    }
    .navbar .navbar-tools .icon-area ul li:last-child {
        display: none;
    }
    .burger-social a {
        color: var(--color-primary);
    }
    /* .navbar .navbar-tools .icon-area ul li:first-child {
        display: none;
    } */
    .carousel-indicators {
        display: none;
    }
    .carousel-item.left-top .carousel-caption,
    .carousel-item.right-top .carousel-caption,
    .carousel-item.left-bottom .carousel-caption,
    .carousel-item.right-bottom .carousel-caption {
        position: relative;
        left: 0;
        top: 0;
        padding: 20px 0 15px 40px;
        background-color: #f9f9f9;
    }
    .carousel-item:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        /* background-color: rgb(255 255 255 / 0.10); */
    }
    .carousel-caption.overlay-header h1 {
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
    }
    .carousel-caption.overlay-header p {
        font-size: 1rem;
        margin: 0;
    }
    .carousel-item.color-light .overlay-header {
        color: #000;
        text-shadow: none;
    }
    .carousel-item.color-light .overlay-header * {
        font-weight: 400;
    }
    .carousel-item.color-light .overlay-header p:before {
        border-color: #000;
        width: 7px;
        height: 7px;
        top: 8px;
    }
    /* .carousel-caption.overlay-header h1 {
        margin-bottom: 0.5rem;
        font-size: 0.7rem;
    }
    .carousel-caption.overlay-header p {
        font-size: 1rem;
        margin: 0;
    } */
    .left-bottom .overlay-header.carousel-caption h1 {
        max-width: 100%;
    }
    .product-group .overlay-header {
        left: 55px;
        top: 25px;
    }
    .product-group .overlay-header h1 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    .product-group .overlay-header p {
        font-size: 1.1rem;
    }
    .col-12:not([class*=col-sm]) .product-group img {
        height: 250px;
    }
    .product-group img {
        height: 140px;
        object-fit: contain;
    }
    .product-groups .row > div:first-child .product-group img {
        object-fit: cover;
    }
    .footer-content .row > div:not(:last-child) > div {
        border: 0;
        margin-bottom: 2rem;
    }
    .footer-content {
        padding: 2rem 1rem !important;
    }
    
}