/*
	Theme Name: democykler
	Version: 1.0
	Author: democykler
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
    font-size: 62.5%;
}

body {
    font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	line-height: 1.5;
    color: #303030;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: 'Khand', sans-serif;
	font-weight: bold;
}

h1,
.h1 {
	font-size: 2em;
	text-align: center;
}

/* clear */
.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    *zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

a {
    color: #444;
    text-decoration: none;
}

a:hover {
    color: #444;
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input,
select {
	display: inline-block;
	padding: 10px;
	border: 1px solid #eee;
	border-radius: 5px;
}

ul,
ol {
	padding-left: 1.2em;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
    max-width: 1280px;
    padding: 0 10px;;
    margin: 0 auto;
    position: relative;
}

.wrapper.small {
	max-width: 950px;
}

body>.wrapper {
	padding-top: 2em;
	padding-bottom: 2em;
}

.text-center {
	text-align: center;
}

/* header */
.header {
	padding: 15px 0;
	background: #303030;
}

.header .nav,
.shop-navigation>ul {
	display: none;
}

.header .nav>ul {
	margin: 0;
	padding: 0;
	display: inline-block;
	width: auto;
	text-align: left;
}

.header .nav>ul>li {
	display: inline-block;
}

.header .nav a {
	display: block;
	color: rgba(255, 255, 255, .5);
	text-transform: uppercase;
	font-size: 12px;
	padding-left: 1em;
}

#mmenu-button {
    position: absolute;
    top: -45px;
    right: 10px;
    bottom: 0;
    height: 20px;
    margin: auto;
}

#mmenu-button span {
    display: block;
    width: 40px;
    height: 2px;
    background: #fff;
    margin-bottom: 6px;
}

/* logo */
.logo {}

.logo-img {}

/* nav */
.nav {
    width: 100%;
    align-self: start;
    text-align: right;
}

.shop-navigation {
	width: 100%;
}

.shop-navigation .cart img {
    vertical-align: middle;
    margin: 0 10px 5px 0;
}

.shop-navigation .cart .amount {
    color: #89b5cc;
    font-weight: 500;
    font-size: 14px;
}

.shop-navigation>ul {
	margin: 0;
	padding: 0;
}

.shop-navigation>ul>li {
	display: inline-block;
	text-transform: uppercase;
	font-size: 16px;
	padding: 0 10px;
}

.shop-navigation a {
	color: #fff;
}
/* sidebar */
.sidebar {}

/* footer */
.footer {
	padding: 20px 0;
	background: #eabd6b;
	font-size: .9em;
	font-weight: 500;
}

.footer  .headline {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1.1em;
}

.footer .wrapper>div {
	min-width: 250px;
}

.payments {
	background: #2f3030;
    text-align: center;
    padding: 1em 10px;
}

/* brands */
.brands{
    margin-top: 40px;
}

.brands .owl-carousel .owl-stage{
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.brands .owl-item img{
    max-height: 100px;
    width: 100%;
    object-fit: contain;

}

.brandsBtn{
    background: #4395bb;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    margin: 40px 0 30px 0;
    transition: .3s linear;
}

.brandsBtn:hover{
    background: #000;
    color: #fff;
}

.flex.flex-row{
    margin: 0 -10px;
}

.flex .flex50{
    width: 100%;
    padding: 0 20px;
}

.wpforms-field-medium {
    width: 100%!important;
    max-width: 100%!important;
    padding: 10px!important;
}

.wpcf7 input[type="submit"]{
    background: #4395bb;
    color: #fff; 
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.align-top {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.align-bottom {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.hidden-mobile {
	display: none;
}

.top-content-wrapper {
	position: relative;
}

.slider .caption {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
    text-shadow: 0 0 20px #fff;
	text-transform: uppercase;
	margin-top: 2em;
}

.slider .caption p {
	margin: 0;
}

.slider .caption .h1 {
	font-size: 1.5em;
}

.usp {
	padding: 30px 0;
    background: rgba(235, 236, 236, .9);
	font-size: 12px;
}

.usp .owl-carousel .owl-item img {
	width: auto;
	margin: auto;
}

.usp .item p {
    margin-bottom: 0;
    font-weight: 600;
}

.usp .item p span {
    font-style: italic;
    color: #4395bb;
}


.usp .owl-dots {
    margin: 2em 0 0;
    text-align: center;
}

.usp button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #111;
    display: inline-block;
    margin: 5px;
    opacity: .5;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}


.usp button.owl-dot:hover,
.usp button.owl-dot.active {
    opacity: .9;
}

.product-list {
    padding: 30px 0;
    background-image: url(img/products-bg.jpg);
    background-position: center top;
    background-size: cover;
}

.woocommerce ul.products {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.woocommerce ul.products li.product {
	box-shadow: 0 0 14.5px rgba(0,0,0,0.33);
	background: #2f3030;
    text-align: center;
	width: calc(50% - 20px) !important;
	margin: 1em 10px !important;
	position: relative;
	padding-bottom: 40px;
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: #fff;
	font-family: 'Montserrat', sans-serif;
}

.woocommerce ul.products li.product .price {
	color: #eabd6b;
	font-size: 1.1em;
}

.woocommerce ul.products li.product .price del {
	display: block;
	color: #fff;
	font-size: .9em;
}

.woocommerce ul.products li.product .price ins {
	text-decoration: none;
}

.woocommerce ul.products li.product .button {
    margin: 0;
    border: none;
    padding: 10px;
    font-size: 0;
    background: url(img/cart.png) center no-repeat;
    position: absolute;
    bottom: 15px;
}

.woocommerce div.product form.cart .button {
    background: #eabd6b;
    color: #000;
    padding: 13px;
}

.woocommerce-variation-price {
	margin: 1em 0 2em;
}

.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #eabd6b;
    font-size: 1.25em;
    font-weight: bold;
}

.wpforms-submit{
	display: inline-block;
	background: #eabd6b!important;
	color: #000!important;
	padding: 13px!important;
	font-weight: 700!important;
	border-radius: 3px!important;
	border:none!important;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {}

@media only screen and (min-width:480px) {}

@media only screen and (min-width:768px) {
	.slider .caption {
		font-size: 35px;
	}
    .flex .flex50{
        width: 50%;
    }
}

@media only screen and (min-width:1024px) {
	.hidden-mobile {
		display: block;
	}
	.hidden-desktop {
		display: none;
	}
	.header .nav,
	.shop-navigation>ul {
		display: block;
	}
	.usp {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9;
	}
	.woocommerce ul.products li.product {
		width: calc(25% - 20px) !important;
	}
	.footer .wrapper>div:last-child {
		margin-left: auto;
	}
}

@media only screen and (min-width:1140px) {}

@media only screen and (min-width:1280px) {
	.slider .caption {
		font-size: 60px;
	}
	.usp {
		padding; 60px 0;
		font-size: 1em;
	}
}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-webkit-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

::-moz-selection {
    background: #04A4CC;
    color: #FFF;
    text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #FFF;
    border: 1px solid #F0F0F0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
