/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    display: block;
    text-align: right;
}
.owl-theme .owl-nav{
    display: none;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel .owl-refresh .owl-item {
    display: none;
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

/* No Js */
.no-js .owl-carousel {
    display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

/* ===========================================================
 *
 *  Name:          selectordie_dev.css
 *  Updated:       2014-10-10
 *  Created by:    Per V @ Vst.mn
 *  What?:         Base CSS for Select or Die
 *
 *  Copyright (c) 2014 Per Vestman
 *  Dual licensed under the MIT and GPL licenses.
 *
 *  No, I don't usually comment my CSS, but in this
 *  case it might "help" someone.
 *
 *  Oddny | Cogs 'n Kegs
 * =========================================================== */

/* Remove, change to fit your needs */
@import url(http://fonts.googleapis.com/css?family=Lato:300,700);

.sod_select,
.sod_select * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* The SoD - Please keep this first three lines intact, otherwise all hell will break looooooose */
.sod_select {
    display: inline-block;
    position: relative;
    line-height: 1;

    width: 200px;
    padding: 15px 10px;
    border: 3px solid #5e5e5e;
    background: #ffffff;
    color: #444444;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    outline: 0;
    outline-offset: -2px; /* Opera */
    cursor: default;
}

/* Up/Down arrows */
.sod_select:before,
.sod_select:after {
    content: "\25B2";
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 7px;
}

/* Down arrow */
.sod_select:after {
    content: "\25BC";
    top: auto;
    bottom: 12px;
}

/* Change the border color on hover, focus and when open */
.sod_select:hover,
.sod_select.open,
.sod_select.focus {
    border-color: #000000;
}

.sod_select.open {
    color: #919191;
}

.sod_select.focus {
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

/* When the entire SoD is disabled, go crazy! */
.sod_select.disabled {
    border-color: #828282;
    color: #b2b2b2;
    cursor: not-allowed;
}

/* The "label", or whatever we should call it. Keep the first three lines for truncating. */
.sod_select .sod_label {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    padding-right: 15px;
}

.sod_select .sod_prefix { /* Use this if you're using a prefix and want to style it */
}

.sod_select .sod_placeholder { /* Use this if you're using a placeholder and want to style it */
}

/* Options list wrapper */
.sod_select .sod_list_wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    height: auto;
    width: 200px;
    margin: 0 0 0 -3px;
    background: #ffffff;
    border: 3px solid #000000;
    border-top: none;
    color: #444444;
    font-weight: 300;
    z-index: 1;
}

/* Shows the option list (don't edit) */
.sod_select.open .sod_list_wrapper {
    display: block;
}

/* Don't display the options when  */
.sod_select.disabled.open .sod_list_wrapper {
    display: none;
}

/* When the option list is displayed above the SoD */
.sod_select.above .sod_list_wrapper {
    top: auto;
    bottom: 100%;
    border-top: 3px solid #000000;
    border-bottom: none;
}

/* Options list container */
.sod_select .sod_list {
    display: block;
    overflow-y: auto;
    padding: 0;
    margin: 0;
}

/* All the options. Keep the first three lines for truncating... */
.sod_select .sod_option {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

    position: relative;
    padding: 10px 10px;
    list-style-type: none;
}

/* Optgroups */
.sod_select .sod_option.optgroup,
.sod_select .sod_option.optgroup.disabled {
    background: inherit;
    color: #939393;
    font-size: 10px;
    font-style: italic;
}

/* Children of an optgroup */
.sod_select .sod_option.groupchild {
    padding-left: 20px;
}

/* Used together with placeholderOption / data-placeholder-option */
.sod_select .sod_option.is-placeholder {
    display: none;
}

/* Disabled option */
.sod_select .sod_option.disabled {
    background: inherit;
    color: #cccccc;
}

/* Hover state for options, also used when a user uses his/hers up/down keys */
.sod_select .sod_option.active {
    background: #f7f7f7;
    color: #333333;
}

/*Make room for the check mark */
.sod_select .sod_option.selected {
    font-weight: 700;
    padding-right: 25px;
}

/* Displays a check mark for the selected option */
.sod_select .sod_option.selected:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    color: #808080;
    height: 9px;
    width: 10px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMTAgOSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgOSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8Zz4NCgk8cGF0aCBmaWxsPSIjRDlEOUQ4IiBkPSJNNCw2LjdDMy42LDYuMywzLjUsNi4xLDMuMSw1LjdDMi42LDUuMiwyLDQuNiwxLjUsNC4xYy0wLjgtMC44LTIsMC40LTEuMiwxLjJjMC45LDAuOSwxLjksMS45LDIuOCwyLjgNCgkJYzAuNywwLjcsMS4zLDEsMiwwQzYuNyw2LDguMywzLjcsOS44LDEuNUMxMC41LDAuNSw5LTAuMyw4LjMsMC42bDAsMEM2LjcsMi45LDUuNyw0LjQsNCw2LjciLz4NCjwvZz4NCjwvc3ZnPg0K);
}

/* Add a .no_highlight class to you SoD to hide the check mark and don't bold the option */
.sod_select.no_highlight .sod_option.selected {
    font-weight: 300;
}

.sod_select.no_highlight .sod_option.selected:before {
    display: none;
}

.sod_select .sod_option.link { /* If data-link is set on a specific option */
}

.sod_select .sod_option.linkexternal { /* If data-link-external is set on a specific option */
}

/* Hide native select */
.sod_select select {
    display: none !important;
}

/* The native select in touch mode. Keep this first line. Sorry, keep everything. */
.sod_select.touch select {
    -webkit-appearance: menulist-button;

    position: absolute;
    top: 0;
    left: 0;
    display: block !important;
    height: 100%;
    width: 100%;
    opacity: 0;
    z-index: 1;
}
/********************************************/
/* Content
/********************************************/
.content-wrapper {
    padding-bottom: 32px;
    background: #efefef;
}
.index .content-wrapper {
    font-size: 0;
}

.counter-oders {
    height: auto;
    margin: 0 0 0 260px;
    font-size: 15px;
    background-color: #fff;
    padding: 15px 0;
}

.counter-oders .counter-cols {
    display: inline-block;
    width: 32%;
    text-align: center;

}

.counter-oders .counter-cols .counter {
    display: block;
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 400;
}

/********************************************/
/* Slider
/********************************************/
.slider_container{
    margin-left: 250px;
}
/*.slider {
    position: relative;
    display: block;
    width: calc(100% - 250px);
    height: 420px;
}
.slider .owl-stage-outer,
.slider .owl-stage,
.slider .owl-item {
    position: relative;
    height: 100%;
}
.slide {
    position: relative;
    display: block;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center center;
}
.slide:before {
    position: absolute;
    display: none;
    content: '';
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,.7);
}
.slide-inner {
    position: absolute;
    display: block;
    top: 50%; left: 95px;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slide-title {
    position: relative;
    display: block;
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    color: #3d3d3d;
    letter-spacing: -0.02em;
    line-height: 36px;

    opacity: 0;

    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}
.owl-item.active .slide-title {
    opacity: 1;

    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.slide-title b {
    display: block;
    font-size: 50px;
    font-weight: 600;
}
.slide-content {
    position: relative;
    display: block;
    margin-top: 25px;
    max-width: 420px;
    font-size: 17px;
    font-weight: 400;
    color: #3d3d3d;
    letter-spacing: -0.01em;
    line-height: initial;

    opacity: 0;

    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}*/
.owl-item.active .slide-content {
    opacity: 1;

    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.slide-button {
    position: relative;
    display: inline-block;
    margin-top: 25px;

    opacity: 0;

    -webkit-transition: 
        all .4s ease-in-out,
        opacity .4s ease-in-out;
    -o-transition: 
        all .4s ease-in-out,
        opacity .4s ease-in-out;
    transition: 
        all .4s ease-in-out,
        opacity .4s ease-in-out;

    -webkit-transition-delay: 0s, 0s;
    -o-transition-delay: 0s, 0s;
    transition-delay: 0s, 0s;
}
.owl-item.active .slide-button {
    opacity: 1;

    -webkit-transition-delay: 0s, 1s;
    -o-transition-delay: 0s, 1s;
}
.slider .owl-dots {
    position: absolute;
    display: block;
    bottom: 10px; left: 50%;
    font-size: 0;
    white-space: nowrap;

    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.slider .owl-dot {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 13px; height: 13px;
    margin: 6px;
    cursor: pointer;
}
.slider .owl-dot span {
    position: absolute;
    display: block;
    top: 50%; left: 50%;
    width: 6px; height: 6px;
    background: #fff;
    border-radius: 50%;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slider .owl-dot.active span {
    width: 13px; height: 13px;
}
/********************************************/
/* Popular Products
/********************************************/
.popular-products, .sign-istanbul-products {
    position: relative;
    display: block;
    width: calc(100% - 260px);
    height: auto;
    margin: 10px 0 10px 260px;
    background: #fff;
    font-size: 0;
}
.sign-istanbul-products a{
    font-size: 13px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    clear: both;
    margin: 7px 5px 7px 0;
    padding: 15px 23px;
    color: #fff;
    line-height: 100%;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.sign-istanbul-products a.hizlipanel{
    background: rgb(201, 86, 174)
}

.sign-istanbul-products a.birliktematbaa{
    background: rgb(51, 198, 138)
}

.sign-istanbul-products a.baskiyonetimi{
    background: rgb(5, 29, 166)
}

.sign-istanbul-products a.onlinemagaza{
    background: rgb(7, 133, 242)
}

.sign-istanbul-products a.affiliatemarket{
    background: rgb(226, 69, 72)
}




.poppro-info {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 200px; height: 315px;
    padding: 20px;
}
.poppro-info h3 {
    position: relative;
    display: block;
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    letter-spacing: -0.005em;
    text-transform: uppercase;
}
.poppro-info p {
    position: relative;
    display: block;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #6b6b6b;
    letter-spacing: -0.005em;
}
.poppro-arrows {
    position: absolute;
    display: block;
    bottom: 20px; left: 20px;
}
.poppro-arrows span:before {
    line-height: 37px;
}
.poppro-arrows span {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 47px; height: 38px;
    border: 1px solid #d9d9d9;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    line-height: 41px;
}
.poppro-left {
    border-radius: 10px 0 0 10px;
}
.poppro-right {
    border-radius: 0 10px 10px 0;
    margin-left: -1px;
}
.poppro-page {
    position: absolute;
    display: block;
    bottom: 30px; right: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #9b9b9c;
}
.poppro-slider {
    position: relative;
    display: inline-block !important;
    vertical-align: top;
    width: calc(100% - 240px);
    height: auto;
    margin: 0 20px 0 20px;
}
.poppro {
    position: relative;
    display: block;
    width: 100%; height: 275px;
    margin: 20px 0;
    border: 1px solid #efefef;
    text-align: center;
    box-shadow: 0 0 0 rgba(186,186,186,.35);
}
.poppro:hover {
    box-shadow: 0 0 6px rgba(186,186,186,.35);
}
.poppro-image {
    position: relative;
    display: block;
    width: 100%; height: 155px;
    background-size: cover;
    background-position: center center;
}
.poppro-title {
    position: relative;
    display: block;
    margin: 20px 0 5px;
    font-size: 10px;
    font-weight: 800;
    color: #373b3e;
    text-transform: uppercase;
    letter-spacing: 0.181em;
}
.poppro-desc {
    position: relative;
    display: block;
    margin-bottom: 20px;
    font-size: 10px;
    font-style: italic;
    color: #656b6f;
}
.poppro-price {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #656b6f;
}

.poppro-piece {
    position: relative;
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #c0392b;
}

/********************************************/
/* Product
/********************************************/
.help {
    position: relative;
    display: block;
    width: calc(100% - 260px);
    height: auto;
    margin: 10px 0 10px 260px;
    background: #f6f6f6;
    font-size: 0;
    text-align: center;
}
.help-header {
    position: relative;
    display: block;
    padding: 25px;
}
.help-header img {
    position: relative;
    display: block;
    width: 55px; height: auto;
    margin: 0 auto 10px;
}
.help-header h2 {
    position: relative;
    display: block;
    margin: 0 0 5px;
    font-size: 29px;
    font-weight: 600;
    color: #3d3d3d;
}
.help-header h1 {
    position: relative;
    display: block;
    margin: 40px 0 0 0px;
    font-size: 20px;
    font-weight: 600;
    color: #3d3d3d;
}

.help-header p {
    position: relative;
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #848484;
}
.help-header p.mtb-ozel1 {
    position: relative;
    display: block;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #848484;
}
.help-column {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50%; height: auto;
    padding: 25px;
    background: #fff;
}
.help-column img {
    position: relative;
    display: block;
    width: auto; height: 75px;
    margin: 0 auto 10px;
}
.help-column h3 {
    position: relative;
    display: block;
    margin: 0 0 15px;
    font-size: 14px;
    font-weight: 400;
    color: #3d3d3d;
    text-transform: uppercase;
}
.help-column p {
    position: relative;
    display: block;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #848484;
}
.help-column a {
    position: relative;
    display: block;
    margin: 20px auto;
    font-size: 11px;
    font-weight: 400;
    color: #f8735d;
    text-transform: uppercase;
    text-decoration: underline;
}

/********************************************/
/* Steps and Ads
/********************************************/
.steps {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 71%; height: auto;
}
.steps img {
    position: relative;
    display: block;
    width: calc(100% + 4px); height: auto;
}
.matbuu-bayi-ad {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 29%; height: auto;
}
.matbuu-bayi-ad img {
    position: relative;
    display: block;
    width: calc(100% + 4px); height: auto;
}


/********************************************/
/* Product
/********************************************/
.product {
    display: block;
    width: 100%;
    font-size: 0;
    padding-bottom: 0;
}
.product article {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(50% + 220px); height: auto;
    padding-bottom: 20px;
}
.product-inner {
    position: relative;
    display: block;
    float: right;
    width: 910px;
}
.product-header {
    position: relative;
    display: block;
    margin: 0 8px 8px;
}
.product-image {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 490px;
    margin: 0 45px 8px 0;
}
.product-image img {
    position: relative;
    display: block;
    width: 100%; height: auto;
}
.product-info {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 535px);
    padding: 20px 0;
    letter-spacing: -0.025em;
}
.product-price {
    position: relative;
    display: block;
    float: left; clear: both;
    font-size: 45px;
    font-weight: 600;
    color: #3d3d3d;
}
.product-price sup {
    font-size: 28px;
}
.product-price-detail {
    position: relative;
    display: block;
    float: left; clear: both;
    font-size: 15px;
    font-weight: 400;
    color: #3d3d3d;
}
.product-production {
    position: relative;
    display: block;
    float: left; clear: both;
    margin: 7px 0;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #020100;
    letter-spacing: 0.075em;
    background: #feda00;
    border-radius: 999px;
    text-transform: uppercase;
}
.product-cargo {
    position: relative;
    display: block;
    float: left; clear: both;
    margin: 20px 0;
    padding: 15px 23px;
    font-size: 15px;
    font-weight: 400;
    color: #3d3d3d;
    border-radius: 2px;
    border: 1px solid #a5a8ab;
}
.product-upload {
    position: relative;
    display: block;
    float: left; clear: both;
    margin: 7px 14px 7px 0;
    padding: 15px 23px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 100%;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    border-radius: 2px;
    background: rgba(242, 119, 45, 1);
}
.product-upload:hover {
    background: rgba(242, 119, 45, .9);
}
.product-design {
    position: relative;
    display: block;
    float: left;
    margin: 7px 14px 7px 0;
    padding: 15px 23px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 100%;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    border-radius: 2px;
    background: rgba(26, 164, 221, 1);
}

.fmk-design {
    position: relative;
    display: block;
    float: left;
    margin: 7px 14px 7px 0;
    padding: 15px 23px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 100%;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.42);
}

.product-design:hover {
    background: rgba(26, 164, 221, .9);
}

.fmk-design:hover {
    background: rgba(0, 0, 0, 0.35);
}

.product-upload:before,
.product-design:before {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: -1px 5px 0 0;
    line-height: 100%;
}
.product-info h1 {
    position: relative;
    display: block;
    clear: both;
    margin: 10px 0;
    /*padding-top: 40px;*/
    font-size: 30px;
    font-weight: 400;
    color: #3d3d3d;
}
.product-info p {
    position: relative;
    display: block;
    margin: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: #3d3d3d;
}
.product-section {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 8px;
    border: 1px solid #d5d5d5;
    background: #f9f9f9;
}
.col-full {
    width: calc(100% - 16px);
}
.col-half {
    width: calc(50% - 16px);
}
.section-header {
    position: relative;
    display: block;
    border-bottom: 1px solid #d5d5d5;
    box-shadow: 0 2px 2px rgba(23,23,24,.03);
    text-align: center;
}
.col-full .section-header {
    background: #fff;
}
.section-header.orange-bg {
    background: #f2772d;
    margin: -1px -1px 0 -1px;
    padding: 1px 1px 0 1px;
}
.section-header.black-bg {
    background: #3d3d3d;
    margin: -1px -1px 0 -1px;
    padding: 1px 1px 0 1px;
}
.section-header.left-side {
    display: inline-block;
    vertical-align: top;
    width: 170px;
    margin: -1px 0 -1px -1px;
    padding: 20px 0;
    text-align: right;
}
.section-title {
    position: relative;
    display: block;
    padding: 30px 8px;
    font-size: 22px;
    font-weight: 400;
    color: #3d3d3d;
    letter-spacing: -0.025em;
}
.section-header.orange-bg .section-title {
    color: #fff;
}
.tab-titles {
    position: relative;
    display: inline-block;
    vertical-align: top;
}
.tab-title {
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 36px;
    padding: 0 10px;
    margin: 0 8px;
    font-size: 13px;
    font-weight: 400;
    color: #3d3d3d;
    letter-spacing: -0.025em;
    line-height: 36px;
    box-shadow: inset 0 -2px 0 0 rgba(242,119,45,0);
    cursor: pointer;
    text-transform: uppercase;
}
.section-header.orange-bg .tab-title {
    color: #fff;
    box-shadow: none;
}
.section-header.black-bg .tab-title {
    color: #fff;
    box-shadow: none;
}
.section-header.left-side .tab-title {
    display: block;
    float: right; clear: both;
    padding: 0 20px 0 12px;
    margin: 5px 0;
    line-height: 30px;
    height: 30px;
}
.section-header:not(.left-side) .tab-titles:only-child .tab-title {
    height: 88px;
    font-size: 22px;
    line-height: 88px;
    text-transform: none;
}
.tab-title.active {
    box-shadow: inset 0 -2px 0 0 rgba(242,119,45,1);
}
.section-header.orange-bg .tab-title.active {
    padding: 0 18px;
    color: #f2772d;
    background: #fff;
}
.tab-titles:only-child .tab-title.active {
    color: rgba(242,119,45,1);
}
.section-header.black-bg .tab-title.active {
    color: #3d3d3d;
    background: #fff;
}
.section-content {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%; height: auto;
}
.section-header.left-side + .section-content {
    width: calc(100% - 170px);
}
.col-full .section-content {
    font-size: 15px;
    font-weight: 400;
    color: #646464;
    letter-spacing: -0.025em;
}
.col-half .section-content {
    height: 290px;
    font-size: 15px;
    font-weight: 300;
    color: #646464;
    letter-spacing: -0.025em;
}
.col-half .section-content:after {
    position: absolute;
    display: block;
    content: '';
    bottom: 0; left: 0;
    width: 100%; height: 30px;
    pointer-events: none;

    background: -webkit-linear-gradient(rgba(249,249,249,0) 0%, rgba(249,249,249,1) 100%);
    background: -o-linear-gradient(rgba(249,249,249,0) 0%, rgba(249,249,249,1) 100%);
    background: linear-gradient(rgba(249,249,249,0) 0%, rgba(249,249,249,1) 100%);
}
.col-half .tab-contents {
    height: inherit;
}
.tab-content {
    position: relative;
    display: block;
    width: 100%; height: 0;
    padding: 0 45px;
    overflow: hidden;

    opacity: 0;

    -webkit-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}
.tab-content.active {
    height: auto;
    opacity: 1;
}
.col-full .tab-content.active {
    padding: 45px;
}
.col-half .tab-content.active {
    padding: 30px;
    height: inherit;
    overflow: hidden;
    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
.section-content h3 {
    position: relative;
    display: block;
    margin: 0 0 25px;
    font-size: 22px;
    font-weight: 400;
    color: #3d3d3d;
    letter-spacing: -0.025em;
}
.col-half .section-content h3,
.col-half .section-content h4 {
    position: relative;
    display: block;
    margin: 0 0 17px;
    font-size: 15px;
    font-weight: 600;
    color: #3d3d3d;
    letter-spacing: -0.025em;
}
.section-content h5 {
    position: relative;
    display: block;
    margin: 0 0 17px;
    font-size: 18px;
    font-weight: 400;
    color: #1aa4dd;
    letter-spacing: -0.025em;
}
.col-full .section-content p {
    position: relative;
    display: block;
    margin: 0 0 15px;
}
.col-half .section-content p {
    position: relative;
    display: block;
    margin: 0 0 15px;
}
.section-content small {
    position: relative;
    display: block;
    margin: 15px 0;
    font-size: 12px;
    font-weight: 300;
    color: #4a4a4a;
    letter-spacing: -0.025em;
    line-height: 17px;
}
.section-content .tab-button {
    position: relative;
    display: inline-block;
    margin: 0 0 15px;
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    color: #1aa4dd;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    border: 1px solid #1aa4dd;
    border-radius: 2px;
}
.section-content .tab-button:hover {
    background: #1aa4dd;
    color: #f7f7f7;
}
.section-content .tab-video {
    z-index: 1;
    position: relative;
    display: block;
    float: right;
    width: 410px; height: auto;
    margin-left: 40px;
    cursor: pointer;
}
.section-content .tab-video img,
.section-content .tab-video embed,
.section-content .tab-video video,
.section-content .tab-video iframe {
    position: relative;
    display: block;
/*    width: 100%; height: auto;*/
}
.section-content .tab-video:before {
    z-index: 1;
    position: absolute;
    display: block;
    width: 75px; height: 75px;
    top: 50%; left: 50%;
    background: rgba(61,61,61,.7);
    font-size: 35px;
    color: #fff;
    line-height: 75px;
    text-align: center;
    text-indent: 6px;
    border-radius: 50%;

    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.section-content table {
    position: relative;
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    color: #4a4a4a;
}
.section-content thead {
    font-weight: 600;
}
.section-content td {
    padding: 8px;
    border: 1px solid #d5d5d5;
}
.section-content thead td {
    border-top: 0;
}
.section-content td:first-child {
    border-left: 0;
}
.section-content td:last-child {
    border-right: 0;
}
.section-content tr:hover {
    color: #1aa4dd;
}
.section-content thead tr:hover {
    color: #4a4a4a;
}
.accordion-trigger {
    padding-right: 10px;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.accordion-trigger:after {
    position: relative;
    display: inline-block;
    content: "w";
    top: 2px; left: 10px;
    font-family: "matbuu" !important;
    font-size: 15px;
    text-transform: none;
}
.accordion-trigger.active:after {
    content: "J";
}
.accordion-content {
    height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity .4s ease-in-out;
    -o-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}
.accordion-trigger.active + .accordion-content {
    height: auto;
    opacity: 1;
}
.template {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #a5a8ab;
    letter-spacing: -0.015em;
    line-height: 33px;
}
.template:nth-of-type(3n) {
    margin-right: 0;
}
.template:before {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: -1px 7px 0 0;
    font-size: 33px;
    color: #a5a8ab;
    line-height: 33px;
}
.template.icon-ai:hover,
.template.icon-ai:hover:before
{
    color: #ffaa2b;
}
.template.icon-ps:hover,
.template.icon-ps:hover:before
{
    color: #7ebcf9;
}
.template.icon-id:hover,
.template.icon-id:hover:before
{
    color: #eb43a3;
}
.template.icon-cd:hover,
.template.icon-cd:hover:before
{
    color: #77797b;
}
.product-slider .item {
    position: relative;
    display: block;
    text-align: center;
}
.product-slider .item-image {
    position: relative;
    display: block;
    width: 100%; height: 145px;
    margin-bottom: 7px;

    background-size: cover;
    background-position: center center;
}
.product-slider .item-title {
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #3d3d3d;
    letter-spacing: -0.025em;
}
.product-slider .item-price {
    position: relative;
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #f2772d;
    letter-spacing: -0.025em;
}
.product-slider .owl-prev {
    position: absolute;
    display: block;
    top: 32%; left: -37px;
    font-family: "matbuu";
    font-size: 30px;
    color: #a5a8ab;
}
.product-slider .owl-next {
    position: absolute;
    display: block;
    top: 32%; right: -37px;
    font-family: "matbuu";
    font-size: 30px;
    color: #a5a8ab;
}
.custom-mask {
    z-index: 1;
    position: fixed;
    display: none;
    top: 0; left: 0;
    bottom: 0; right: 0;
    cursor: pointer;
}
.custom-mask.open {
    display: block;
}
.product aside {
    z-index: 1;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 220px); height: auto;
    background: #fff;

    -webkit-transition: 
        transform .4s ease-in-out,
        box-shadow .4s ease-in-out;
    -o-transition: 
        transform .4s ease-in-out,
        box-shadow .4s ease-in-out;
    transition: 
        transform .4s ease-in-out,
        box-shadow .4s ease-in-out;
}
.custom-scroll {
    display: block;
    overflow-y: auto;
    overflow-y: overlay;
    width: 100%; height: 100%;

    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
.custom-open {
    position: absolute;
    display: none;
    top: 55px; right: 100%;
    background: #fff;
    width: 55px; height: 55px;
    line-height: 55px;
    color: #3d3d3d;
    text-align: center;
    font-size: 25px;
    cursor: pointer;
    box-shadow: -5px 0 8px rgba(0,0,0,.2);
}
.custom-open:hover,
.open .custom-open {
    background: rgba(26, 164, 221, 1);
    color: #fff;
}
.custom-open:before {
    display: block;
    line-height: inherit;
}
.custom-inner {
    position: relative;
    display: block;
    width: 420px;
    padding: 20px;
}
.custom-title {
    position: relative;
    display: block;
    margin: 0 0 15px;
    font-size: 30px;
    font-weight: 600;
    color: #3d3d3d;
}
.custom-inner label {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 8px);
/*    margin: 8px 4px;*/
    font-size: 14px;
    font-weight: 600;
    color: #a5a8ab;
    /*letter-spacing: -0.025em;*/
    /*text-indent: 12px;*/
}
.custom-inner label.col-half {
    width: calc(50% - 8px);
}
.sod_select {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 12px;
    text-indent: 0;
    border: 1px solid #d3d3d3;
    font-size: 14px;
    font-weight: 300;
    color: #3d3d3d;
    text-transform: none;
}
.sod_select:hover {
    box-shadow: none;
    border-color: #111;
}
.sod_select.open,
.sod_select.focus {
    box-shadow: none;
    border-color: #f2772d;
}
.sod_select.disabled {
    border-color: #d3d3d3;
}
.sod_select:before {
    display: none;
}
.sod_select:after {
    content: "t";
    font-family: "matbuu";
    font-size: 14px;
    color: #3d3d3d;
}
.sod_select.open:after,
.sod_select.focus:after {
    color: #3d3d3d;
}
.sod_select .sod_list_wrapper {
    display: block;
    width: calc(100% + 2px);
    margin: 0 -1px;
    border: 1px solid #d3d3d3;
    box-shadow: 0 0 0 rgba(0,0,0,.1);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.sod_select.open .sod_list_wrapper {
    border-color: #f2772d;
    border-top-color: #d3d3d3;
    box-shadow: 0 7px 7px rgba(0,0,0,.1);

    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.sod_select .sod_option {
    overflow: hidden;
    padding: 0 10px;
    max-height: 0;
}
.sod_select.open .sod_option {
    padding: 10px;
    max-height: 40px;
}
.sod_select .sod_label,
.sod_select .sod_option.selected {
    font-weight: 300;
}
.custom-price {
    display: none;
    margin: 30px auto;
}
.custom-info {
    position: relative;
    display: block;
    margin: 30px 0 0;
}
.custom-info.icon-help:before {
    position: relative;
    display: inline-block;
    content: '?';
    vertical-align: top;
    width: 20px; height: 20px;
    margin: -2px 8px 0 0;
    background: #feda00;
    font-family: 'proxima-nova' !important;
    font-size: 15px;
    font-weight: 700 !important;
    color: #3d3d3d;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
}
.custom-info h6 {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    color: #3d3d3d;
    line-height: 18px;
    letter-spacing: -0.025em;
}
.custom-info p {
    position: relative;
    display: block;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 300;
    color: #3d3d3d;
    line-height: 16px;
    letter-spacing: -0.025em;
}
.product-title{
    position: relative;
    display: block;
    font-size: 30px;
    margin-bottom: 15px;
}
.form-group-yeni{
    margin-bottom: 15px;
}
/*Sadece Ürünler sayfasında yüklenecek*/

@media all and (max-width: 1380px) {
    .product article {
        width: 910px;
    }

    .product aside {
        width: calc(100% - 910px);
    }
}

@media all and (max-width: 1330px) {
    .product article {
        width: 100%;
    }

    .product-inner {
        float: none;
        width: 100%;
    }

    .product aside {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 420px;
        height: auto !important;
        box-shadow: 0 0 0 rgba(0, 0, 0, .2);
        border-left: 4px solid rgba(26, 164, 221, 1);

        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    .product aside.open {
        box-shadow: -5px 0 15px rgba(0, 0, 0, .2);
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        -o-transform: translateX(0%);
        transform: translateX(0%);
    }

    .custom-open {
        display: block;
    }

    .custom-inner {
        width: auto;
        height: auto;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }
}

@media all and (max-width: 1170px) {

    /*.slider {
        width: 100%; height: 45.653vw;
        margin: 0;
        max-height: 420px;
        min-height: 380px;
    }
    .slide:before {
        display: block;
    }
    .slider .owl-dot span {
        background: #3d3d3d;
    }
*/
    .tag:after {
        display: none;
    }
}

@media all and (max-width: 910px) {
    .product-image {
        display: block;
        width: 100%;
        margin: 0 0 45px;
    }

    .product-info {
        display: block;
        width: 100%;
        text-align: center;
    }

    .product-price,
    .product-price-detail,
    .product-production,
    .product-cargo {
        width: 100%;
    }

    /*.product-upload,
    .product-design {
        width: calc(50% - 14px);
        margin: 7px;
    }*/
}

@media all and (max-width: 880px) {
    .slider_container {
        margin: 0;
    }

    .counter-oders {
        margin-left: 0;
    }

    .counter-oders .counter-cols .counter {
        font-size: 20px;
    }

    .slider {
        position: relative;
        display: block;
        height: 220px;
    }

    /*.slide-inner {
        left: 30px;
    }*/
}

@media all and (max-width: 850px) {
    .col-half {
        width: calc(100% - 16px);
    }

    .section-content .tab-video {
        display: none;
    }

    .footer-step {
        margin: 20px calc(50% - 200px);
        display: inline-block;

    }
}

@media all and (max-width: 800px) {
    .steps {
        display: none;
    }

    .ad {
        width: 100%;
    }
}

@media all and (max-width: 760px) {
    .poppro-info {
        display: block;
        width: 100%;
        height: auto;
        padding-bottom: 60px;
    }

    .poppro-slider {
        display: block !important;
        width: calc(100% - 40px);
    }
}

@media all and (max-width: 750px) {

    
    
    .links a.h-blog, .links a.h-desing-help, .links a.h-help-area, .links a.h-support, .links a.icon-headphone, .links span {
        display: none;
    }

    .popular-products, .help {
        margin: 0;
        width: 100%;
    }

    .main-footer .tag {
        margin: 0 15px;
    }

    /*SHOPS*/
    .shops-step {
        margin: 15px;
        width: auto;
    }

    .shops-step:after {
        display: none;
    }

    .shops-step img {
        height: 120px;
    }

    .shops-step span {
        font-size: 13px;
    }

    .shops-slider .owl-next {
        right: 0;
    }

    .shops-slider .owl-prev {
        left: 0;
    }

    .shops-aside {
        display: none;
    }

    .shops-products {
        width: auto;
        margin-top: 15px;
    }

    .shops-product {
        width: calc(100% / 2 - 34px);
    }

    .shops-product-price {
        font-size: 20px;
    }

    .shops-product-categories {
        display: block;
    }
}

@media all and (max-width: 520px) {

    .flag_gif{
        display: none;
    }
    /*	.links [class^="icon-"] {
            display: none;
        }
    .slide-title {
        font-size: 35px;
    }
    .slide-title b {
        font-size: 45px;
    }*/
    .category {
        height: auto;
    }

    .sub-categories {
        flex-direction: column;
        display: flex;
        padding: 20px 25px;
    }

    .category-columns {
        -webkit-columns: 2;
    }

    .categories-dropdown > *:not(a):after {
        top: 25px;
    }
}