@font-face {
    font-family: 'century_gothicregular';
    src: url('../other/gothic-webfont.woff2') format('woff2'),
         url('../other/gothic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.contactWrapper p{
	color:#000;
}

.gallery {
  max-width: calc((150px*2) + 1em);
  padding: 3em 0;
  color: #333;
}
@media (min-width: 768px) {
  .gallery {
    max-width: calc((150px*4) + 3em);
  }
}
.gallery__title {
  font-size: 2em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #666;
}
.gallery__intro {
  margin: 0 0 2em;
}
.gallery__intro p {
  line-height: 1.5em;
}
.gallery ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gallery li {
  margin-bottom: 1em;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.gallery li:hover {
  -webkit-transform: scale(1.0221);
          transform: scale(1.0221);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.gallery img {
  display: block;
  border-radius: 3px;
}

.m-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  pointer-events: none;
}
.m-lightbox.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 101;
  pointer-events: auto;
  z-index: 999;
}
.m-lightbox__slider {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
.m-lightbox__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-lightbox__slide img {
  display: block;
  max-width: calc(100vw - 2em);
  max-height: 90vh;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .m-lightbox__slide img {
    max-width: calc(100vw - 116px);
    max-height: 90vh;
  }
}
.m-lightbox__slide.is-loaded.is-active img {
  opacity: 1;
}
.m-lightbox__slide.is-loaded.is-active .spinner {
  display: none;
}
.m-lightbox button {
  position: absolute;
  margin: 0;
  padding: 0;
  z-index: 102;
  background: transparent;
  border: none;
  cursor: pointer;
}
.m-lightbox__close {
  top: 1em;
  right: 1em;
}
.m-lightbox__nextPrev {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 42px;
  height: 42px;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.m-lightbox__nextPrev.is-active {
  visibility: hidden;
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
@media (min-width: 1024px) {
  .m-lightbox__nextPrev.is-active {
    visibility: visible;
  }
}
.m-lightbox__nextPrev svg {
  display: block;
  width: 100%;
  height: auto;
}
.m-lightbox__nextPrev--next {
  right: 1em;
}
.m-lightbox__nextPrev--prev {
  left: 1em;
}
.m-lightbox__nextPrev:hover {
  cursor: pointer;
}
.m-lightbox__counter {
  position: absolute;
  bottom: 1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #333;
  font-weight: 700;
}

.spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.spinner::before, .spinner::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #333;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
          animation: sk-bounce 2.0s infinite ease-in-out;
}
.spinner::after {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-bounce {
  0%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


.bg-slide{
					background-size:cover;
					background-position:center center;
					height:600px;
				}
				@media(max-width:999px){
					.bg-slide{
						height:300px;
					}
				}
				.category_titleLayer{
				    position: absolute;
				    border: 0;
				    left: 0;
				    right: 0;
				    width: 95%;
				    height: 95%;
				    background-color: rgba(0,0,0,0.5);
				    margin-right: auto;
				    margin-left: auto;
				}
				
	
.categoryPageCategoryImageLayer{
		height:400px !important; 
		background-size:cover; background-position:center center;
	}
.mainPageCategoryImageLayer{
		height:380px !important; 
		background-size:cover; background-position:center center;
}


@import url("datepicker.css");
.whiteBg
{
background-color: #fff;
}

.lightBg
{
background-color: #f8f8f8;
}

.darkBg
{
background-color: #6c6c6c;
color:#fff;
}
/*.navIcon
{
width: 23px;
height:23px;
background:#e0e0e0 url('navIcon.png') no-repeat center center;
border-right: 1px solid #ececec;
}
*/
.navIcon
{
width:  23px;
height: 38px;
padding-left:  20px;
background: url(../png/navicon.png) no-repeat center center;
}
#navigasyon a
{
float: left;
height:38px;
line-height: 38px;
color:#6c6c6c;
font-size: 13px;
padding-left:20px;
padding-right: 10px;
background-image:url('../png/navarrow.png');
background-repeat: no-repeat;
background-position:left center;
}
#navigasyon a.navHome
{
color:  #6c6c6c;
font-weight: 600;
font-style:  normal;
width: 14px;
margin-right:  -15px;
background-image: url('../png/navhome.png');
}
/*#navigasyon a.navHome
{
background-image: url('navHome.png');
color:  #6c6c6c;
font-weight: 600;
font-style:  normal;
width: 14px;
padding:  0;
margin-right: 15px;
}
*/
#catImg
{
position: relative;
}
#catImg img
{
float: left;
width:100%;
}

.filter-box
{
line-height: 30px;
font-size:12px;
color: #6c6c6c;
}

.filter-box select
{
float: left;
height:30px;
margin: 0;
padding-right:15px;
border: 0;
font-size:12px;
color: #6c6c6c;
appearance:none;
-moz-appearance: none;
-webkit-appearance:none;
background:url('../png/selectarrow.png') no-repeat right center;
}

.filter-box .input-wrap
{
height: 30px;
}

.filter-box.col-text
{
line-height: 30px;
font-size:12px;
color: #6C6C6C;
}

.select-wrapper
{
position: relative;
width:53px;
height: 30px;
}

.select
{
width: 33px;
padding:30px 5px 0;
position: absolute;
left:5px;
z-index: 333;
}

.select:hover
{
background: #F3F3F3;
}

.select span
{
width: 33px;
height:20px;
cursor: pointer;
display:none;
padding: 5px 0;
border-top:1px solid #B7B7B7;
}

.select span.selected
{
position: absolute;
top:0;
left: 5px;
cursor:default;
display: block;
border-top:0;
}

.select:hover span
{
display: block;
}
#pageLayout span
{
width:  17px;
height: 30px;
display:  block;
cursor: pointer;
}
#slider-range
{
height: 17px;
margin-top:6px;
margin-right: 17px;
background:url('../png/sliderrange.png') repeat-x 0 center;
position: relative;
}

.ui-slider-range
{
position: absolute;
top:4px;
height: 9px;
background:url('../png/sliderrangefiller.png') repeat-x 0 center;
}

.ui-slider-handle
{
position: absolute;
top:0;
width: 17px;
height:17px;
background:url('../png/sliderhandle.png') no-repeat 0 center;
cursor: pointer;
}

.catalogBtn
{
background:url('../png/catalogicon.png') no-repeat center center;
}

.horizontalBtn
{
background:url('../png/horizontalicon.png') no-repeat center center;
}

.listBtn
{
background:url('../png/listicon.png') no-repeat center center;
}

.catalogBtn.selected
{
background-image: url('../png/catalogiconselected.png');
}

.horizontalBtn.selected
{
background-image: url('../png/horizontaliconselected.png');
}
#filtre .btn.btn-default
{
font-size: 12px;
}
#leftColumn #filtre .btn.btn-default
{
font-size: 20px;
}

.productType, .qtyBtns input
{
font-size: 12px;
text-transform:uppercase;
}

.productType
{
line-height: 30px;
}

.qtyBtns a
{
float: left;
min-width:30px;
height: 30px;
border:1px solid #ececec;
padding-right: 10px;
padding-left:10px;
margin-right: 0;
margin-bottom:0;
box-sizing: border-box;
-webkit-user-select:none;
-moz-user-select: none;
-ms-user-select:none;
-o-user-select: none;
user-select:none;
}

.qtyBtns a p
{
width:100%;
height: 28px;
line-height:28px;
text-align: center;
font-size:12px;
color: #000;
cursor:pointer;
}

.qtyBtns input
{
float: left;
height:28px;
line-height: 28px;
text-align:center;
padding-right: 5px;
padding-left:5px;
border: 0;
box-sizing:border-box;
}

.middleItem td
{
padding-top: 10px;
padding-left:10px;
padding-bottom: 10px;
padding-right:10px;
vertical-align: middle;
}

.middleItem .lightBg td.line-right
{
border-right: 1px solid #dadada;
}

.middleItem td > span
{
display: block;
line-height:2;
clear: both;
}

.middleItem td > span.basketProName
{
font-size: 14px;
}

.middleItem td > span.basketSubPro
{
display: inline-block;
padding-left:5px;
padding-right: 5px;
margin-top:5px;
margin-bottom: 5px;
}

.incBasketProduct, .decBasketProduct
{
}

.incBasketProduct
{
}

.decBasketProduct
{
}

.qtyBasketProduct
{
width: 28px;
}

.removeBasketProduct
{
float: left;
width:30px;
height: 30px;
background:#000;
}

.mDetay
{
cursor: pointer;
}
#cartEmpty
{
font-size:  25px;
line-height:250px;
}
#leftColumn #cartEmpty, #rightColumn #cartEmpty
{
font-size:  14px;
line-height: 25px;
}
#cartEmpty:before
{
content:'';
display:  inline-block;
background: url('../png/cartempty.png') no-repeat center center;
width:  128px;
height: 128px;
vertical-align: middle;
margin-right:20px;
}
#rightColumn #cartEmpty:before, #leftColumn #cartEmpty:before
{
margin-right: 0;
}
@media screen and (min-width: 1001px)
{
.qtyBtns input
{
min-width: 28px;
}
}
@media screen and (max-width: 1000px) and (min-width: 640px)
{
}
@media screen and (min-width: 641px)
{
.middleItem .qtyBtns input
{
width: 28px;
}
}
@media screen and (max-width: 640px)
{
    .middleItem td {
    padding-left: 2px;
    padding-right:2px;
    
}
}