/**
 * Crosscommerce - Wordpress theme
 *
 * @authors   Niek Heerink <crossmediahouse.nl>
 * @version   1.0
 * @generated 2021-06-01
 * @copyright (c) 2021 Crossmedia House
 * @license   All Rights Reserved
 */

/* Globals
   ========================================================================== */

:root {

	/** Gutters **/

	--gutter-lg: 15px;
	--gutter-sm: 7.5px;

	/** Container **/

	--container: 1160px;
}

* {
	padding: 0;
	margin: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

html, 
body {
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

iframe {
	max-width: 100%;
	border: 0;
}

blockquote:before, 
blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

table th,
table td {
	vertical-align: top;
	text-align: left;
	padding: 15px 0;
}

a, 
a:before, a:after, 
button, 
[type="submit"], 
[type="button"] {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	outline: none;
}

[type="submit"], 
[type="button"], 
button {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}

[type="text"],
[type="tel"],
[type="email"],
[type="search"],
[type="password"],
textarea {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
}

@media (max-width: 767px) {

	body h1 {
	   font-size: 1.325rem;
	   line-height: initial;
    }

    body h2,
    body h3 {
	   font-size: 1.125rem;
	   line-height: initial;
    }

    body h4,
    body h5 {
       font-size: .925rem;
	   line-height: initial;
    }

    body h6 {
    	font-size: .725rem;
	   line-height: initial;
    }

}

/* Container
   ========================================================================== */

.container {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 var(--gutter-lg);
	max-width: var(--container);
	margin: auto;
}

/* Row
   ========================================================================== */

.row {
	display: flex;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

/* Alignments
   ========================================================================== */

.alignright {
	float: right;
}

.alignleft {
	float: left;
}

.aligncenter {
	display: block;
	margin: auto;
	text-align: center;
	clear: both;
}

/* Position spacers
   ========================================================================== */

.top-1 {
	top: 1px;
}

.top-2 {
	top: 2px;
}

.top-3 {
	top: 3px;
}

.top-4 {
	top: 4px;
}

.top-5 {
	top: 5px;
}

.top-6 {
	top: 6px;
}

.top-7 {
	top: 7px;
}

.top-8 {
	top: 8px;
}

.top-9 {
	top: 9px;
}

.top-10 {
	top: 10px;
}

.top-15 {
	top: 15px;
}

.top-20 {
	top: 20px;
}

/* Spacers padding top
   ========================================================================== */

.pt-1 {
	padding-top: 1px;
}

.pt-2 {
	padding-top: 2px;
}

.pt-3 {
	padding-top: 3px;
}

.pt-4 {
	padding-top: 4px;
}

.pt-5 {
	padding-top: 5px;
}

.pt-10 {
	padding-top: 10px;
}

.pt-15 {
	padding-top: 15px;
}

.pt-20 {
	padding-top: 20px;
}

.pt-25 {
	padding-top: 25px;
}

.pt-30 {
	padding-top: 30px;
}

.pt-40 {
	padding-top: 40px;
}

.pt-50 {
	padding-top: 50px;
}

.pt-75 {
	padding-top: 75px;
}

.pt-100 {
	padding-top: 100px;
}

.pt-125 {
	padding-top: 125px;
}

.pt-150 {
	padding-top: 150px;
}

.pt-200 {
	padding-top: 200px;
}

.pt-250 {
	padding-top: 250px;
}

.pt-300 {
	padding-top: 300px;
}

@media (max-width: 992px) {

	.pt-md-0 {
		padding-top: 0;
	}

	.pt-md-1 {
	   padding-top: 1px;
	}

	.pt-md-2 {
		padding-top: 2px;
	}

	.pt-md-3 {
		padding-top: 3px;
	}

	.pt-md-4 {
		padding-top: 4px;
	}

	.pt-md-5 {
	    padding-top: 5px;
    }

	.pt-md-10 {
		padding-top: 10px;
	}

	.pt-md-15 {
		padding-top: 15px;
	}

	.pt-md-20 {
		padding-top: 20px;
	}

	.pt-md-25 {
		padding-top: 25px;
	}

	.pt-md-30 {
		padding-top: 30px;
	}

	.pt-md-40 {
		padding-top: 40px;
	}

	.pt-md-50 {
		padding-top: 50px;
	}

	.pt-md-75 {
		padding-top: 75px;
	}

	.pt-md-100 {
		padding-top: 100px;
	}

	.pt-md-125 {
		padding-top: 125px;
	}

	.pt-md-150 {
		padding-top: 150px;
	}

	.pt-md-200 {
		padding-top: 200px;
	}

	.pt-md-250 {
		padding-top: 250px;
	}

	.pt-md-300 {
		padding-top: 300px;
	}

}

@media (max-width: 767px) {

	.pt-sm-0 {
		padding-top: 0;
	}

	.pt-sm-1 {
	    padding-top: 1px;
	}

	.pt-sm-2 {
		padding-top: 2px;
	}

	.pt-sm-3 {
		padding-top: 3px;
	}

	.pt-sm-4 {
		padding-top: 4px;
	}

	.pt-sm-5 {
	    padding-top: 5px;
    }

	.pt-sm-10 {
		padding-top: 10px;
	}

	.pt-sm-15 {
		padding-top: 15px;
	}

	.pt-sm-20 {
		padding-top: 20px;
	}

	.pt-sm-25 {
		padding-top: 25px;
	}

	.pt-sm-30 {
		padding-top: 30px;
	}

	.pt-sm-40 {
		padding-top: 40px;
	}

	.pt-sm-50 {
		padding-top: 50px;
	}

	.pt-sm-75 {
		padding-top: 75px;
	}

	.pt-sm-100 {
		padding-top: 100px;
	}

	.pt-sm-125 {
		padding-top: 125px;
	}

	.pt-sm-150 {
		padding-top: 150px;
	}

	.pt-sm-200 {
		padding-top: 200px;
	}

	.pt-sm-250 {
		padding-top: 250px;
	}

	.pt-sm-300 {
		padding-top: 300px;
	}

}

/* Spacers padding bottom
   ========================================================================== */

.pb-1 {
	padding-bottom: 1px;
}

.pb-2 {
	padding-bottom: 2px;
}

.pb-3 {
	padding-bottom: 3px;
}

.pb-4 {
	padding-bottom: 4px;
}

.pb-5 {
	padding-bottom: 5px;
}

.pb-10 {
	padding-bottom: 10px;
}

.pb-15 {
	padding-bottom: 15px;
}

.pb-20 {
	padding-bottom: 20px;
}

.pb-25 {
	padding-bottom: 25px;
}

.pb-30 {
	padding-bottom: 30px;
}

.pb-40 {
	padding-bottom: 40px;
}

.pb-50 {
	padding-bottom: 50px;
}

.pb-75 {
	padding-bottom: 75px;
}

.pb-100 {
	padding-bottom: 100px;
}

.pb-125 {
	padding-bottom: 125px;
}

.pb-150 {
	padding-bottom: 150px;
}	

.pb-200 {
	padding-bottom: 200px;
}

.pb-250 {
	padding-bottom: 250px;
}

.pb-300 {
	padding-bottom: 300px;
}

@media (max-width: 992px) {

	.pb-md-0 {
		padding-bottom: 0;
	}

	.pb-md-1 {
	    padding-bottom: 1px;
	}

	.pb-md-2 {
		padding-bottom: 2px;
	}

	.pb-md-3 {
		padding-bottom: 3px;
	}

	.pb-md-4 {
		padding-bottom: 4px;
	}

	.pb-md-5 {
	    padding-bottom: 5px;
    }

	.pb-md-10 {
		padding-bottom: 10px;
	}

	.pb-md-15 {
		padding-bottom: 15px;
	}

	.pb-md-20 {
		padding-bottom: 20px;
	}

	.pb-md-25 {
		padding-bottom: 25px;
	}

	.pb-md-30 {
		padding-bottom: 30px;
	}

	.pb-md-40 {
		padding-bottom: 40px;
	}

	.pb-md-50 {
		padding-bottom: 50px;
	}

	.pb-md-75 {
		padding-bottom: 75px;
	}

	.pb-md-100 {
		padding-bottom: 100px;
	}

	.pb-md-125 {
	    padding-bottom: 125px;
    }

	.pb-md-150 {
		padding-bottom: 150px;
	}	

	.pb-md-200 {
		padding-bottom: 200px;
	}

	.pb-md-250 {
		padding-bottom: 250px;
	}

	.pb-md-300 {
		padding-bottom: 300px;
	}

}

@media (max-width: 767px) {

	.pb-sm-0 {
		padding-bottom: 0;
	}

	.pb-sm-1 {
	    padding-bottom: 1px;
	}

	.pb-sm-2 {
		padding-bottom: 2px;
	}

	.pb-sm-3 {
		padding-bottom: 3px;
	}

	.pb-sm-4 {
		padding-bottom: 4px;
	}

	.pb-sm-5 {
	    padding-bottom: 5px;
    }

	.pb-sm-10 {
		padding-bottom: 10px;
	}

	.pb-sm-15 {
		padding-bottom: 15px;
	}

	.pb-sm-20 {
		padding-bottom: 20px;
	}

	.pb-sm-25 {
		padding-bottom: 25px;
	}

	.pb-sm-30 {
		padding-bottom: 30px;
	}

	.pb-sm-40 {
		padding-bottom: 40px;
	}

	.pb-sm-50 {
		padding-bottom: 50px;
	}

	.pb-sm-75 {
		padding-bottom: 75px;
	}

	.pb-sm-100 {
		padding-bottom: 100px;
	}

	.pb-sm-125 {
		padding-bottom: 125px;
	}

	.pb-sm-150 {
		padding-bottom: 150px;
	}	

	.pb-sm-200 {
		padding-bottom: 200px;
	}

	.pb-sm-250 {
		padding-bottom: 250px;
	}

	.pb-sm-300 {
		padding-bottom: 300px;
	}

}

/* Spacers padding left
   ========================================================================== */

.pl-1 {
	padding-left: 1px;
}

.pl-2 {
	padding-left: 2px;
}

.pl-3 {
	padding-left: 3px;
}

.pl-4 {
	padding-left: 4px;
}

.pl-5 {
	padding-left: 5px;
}

.pl-10 {
	padding-left: 10px;
}

.pl-15 {
	padding-left: 15px;
}

.pl-20 {
	padding-left: 20px;
}

.pl-25 {
	padding-left: 25px;
}

.pl-30 {
	padding-left: 30px;
}

.pl-40 {
	padding-left: 40px;
}

.pl-50 {
	padding-left: 50px;
}

.pl-75 {
	padding-left: 75px;
}

.pl-100 {
	padding-left: 100px;
}

.pl-150 {
	padding-left: 150px;
}

.pl-200 {
	padding-left: 200px;
}

@media (max-width: 992px) {

	.pl-md-0 {
		padding-left: 0;
	}

	.pl-md-1 {
	    padding-left: 1px;
	}

	.pl-md-2 {
		padding-left: 2px;
	}

	.pl-md-3 {
		padding-left: 3px;
	}

	.pl-4 {
		padding-left: 4px;
	}

	.pl-md-5 {
	    padding-left: 5px;
	}

	.pl-md-10 {
		padding-left: 10px;
	}

	.pl-md-15 {
		padding-left: 15px;
	}

	.pl-md-20 {
		padding-left: 20px;
	}

	.pl-md-25 {
		padding-left: 25px;
	}

	.pl-md-30 {
		padding-left: 30px;
	}

	.pl-md-40 {
		padding-left: 40px;
	}

	.pl-md-50 {
		padding-left: 50px;
	}

	.pl-md-75 {
		padding-left: 75px;
	}

	.pl-md-100 {
		padding-left: 100px;
	}

	.pl-md-150 {
		padding-left: 150px;
	}

	.pl-md-200 {
		padding-left: 200px;
	}

}

@media (max-width: 767px) {

	.pl-sm-0 {
		padding-left: 0;
	}

	.pl-sm-1 {
	    padding-left: 1px;
	}

	.pl-sm-2 {
		padding-left: 2px;
	}

	.pl-sm-3 {
		padding-left: 3px;
	}

	.pl-sm-4 {
		padding-left: 4px;
	}

	.pl-sm-5 {
	    padding-left: 5px;
	}

	.pl-sm-10 {
		padding-left: 10px;
	}

	.pl-sm-15 {
		padding-left: 15px;
	}

	.pl-sm-20 {
		padding-left: 20px;
	}

	.pl-sm-25 {
		padding-left: 25px;
	}

	.pl-sm-30 {
		padding-left: 30px;
	}

	.pl-sm-40 {
		padding-left: 40px;
	}

	.pl-sm-50 {
		padding-left: 50px;
	}

	.pl-sm-75 {
		padding-left: 75px;
	}

	.pl-sm-100 {
		padding-left: 100px;
	}

	.pl-sm-150 {
		padding-left: 150px;
	}

	.pl-sm-200 {
		padding-left: 200px;
	}

}

/* Spacers padding right
   ========================================================================== */

.pr-1 {
	padding-right: 1px;
}

.pr-2 {
	padding-right: 2px;
}

.pr-3 {
	padding-right: 3px;
}

.pr-4 {
	padding-right: 4px;
}

.pr-5 {
	padding-right: 5px;
}

.pr-10 {
	padding-right: 10px;
}

.pr-15 {
	padding-right: 15px;
}

.pr-20 {
	padding-right: 20px;
}

.pr-25 {
	padding-right: 25px;
}

.pr-30 {
	padding-right: 30px;
}

.pr-40 {
	padding-right: 40px;
}

.pr-50 {
	padding-right: 50px;
}

.pr-75 {
	padding-right: 75px;
}

.pr-100 {
	padding-right: 100px;
}

.pr-150 {
	padding-right: 150px;
}

.pr-200 {
	padding-right: 200px;
}

@media (max-width: 992px) {

	.pr-md-0 {
		padding-right: 0;
	}

	.pr-md-1 {
	    padding-right: 1px;
	}

	.pr-md-2 {
		padding-right: 2px;
	}

	.pr-md-3 {
		padding-right: 3px;
	}

	.pr-md-4 {
		padding-right: 4px;
	}

	.pr-md-5 {
	    padding-right: 5px;
	}

	.pr-md-10 {
		padding-right: 10px;
	}

	.pr-md-15 {
		padding-right: 15px;
	}

	.pr-md-20 {
		padding-right: 20px;
	}

	.pr-md-25 {
		padding-right: 25px;
	}

	.pr-md-30 {
		padding-right: 30px;
	}

	.pr-md-40 {
		padding-right: 40px;
	}

	.pr-md-50 {
		padding-right: 50px;
	}

	.pr-md-75 {
		padding-right: 75px;
	}

	.pr-md-100 {
		padding-right: 100px;
	}

	.pr-md-150 {
		padding-right: 150px;
	}

	.pr-md-200 {
		padding-right: 200px;
	}

}

@media (max-width: 767px) {

	.pr-sm-0 {
		padding-right: 0;
	}

	.pr-sm-1 {
	    padding-right: 1px;
	}

	.pr-sm-2 {
		padding-right: 2px;
	}

	.pr-sm-3 {
		padding-right: 3px;
	}

	.pr-sm-4 {
		padding-right: 4px;
	}

	.pr-sm-5 {
	    padding-right: 5px;
	}

	.pr-sm-10 {
		padding-right: 10px;
	}

	.pr-sm-15 {
		padding-right: 15px;
	}

	.pr-sm-20 {
		padding-right: 20px;
	}

	.pr-sm-25 {
		padding-right: 25px;
	}

	.pr-sm-30 {
		padding-right: 30px;
	}

	.pr-sm-40 {
		padding-right: 40px;
	}

	.pr-sm-50 {
		padding-right: 50px;
	}

	.pr-sm-75 {
		padding-right: 75px;
	}

	.pr-sm-100 {
		padding-right: 100px;
	}

	.pr-sm-150 {
		padding-right: 150px;
	}

	.pr-sm-200 {
		padding-right: 200px;
	}

}

/* Spacers margin top
   ========================================================================== */

.mt-5 {
	margin-top: 5px;
}

.mt-10 {
	margin-top: 10px;
}

.mt-15 {
	margin-top: 15px;
}

.mt-20 {
	margin-top: 20px;
}

.mt-25 {
	margin-top: 25px;
}

.mt-30 {
	margin-top: 30px;
}

.mt-40 {
	margin-top: 40px;
}

.mt-50 {
	margin-top: 50px;
}

.mt-75 {
	margin-top: 75px;
}

.mt-100 {
	margin-top: 100px;
}

.mt-150 {
	margin-top: 150px;
}

.mt-200 {
	margin-top: 200px;
}

.mt-250 {
	margin-top: 250px;
}

.mt-300 {
	margin-top: 300px;
}

@media (max-width: 992px) {

	.mt-md-5 {
	    margin-top: 5px;
	}

	.mt-md-10 {
		margin-top: 10px;
	}

	.mt-md-15 {
		margin-top: 15px;
	}

	.mt-md-20 {
		margin-top: 20px;
	}

	.mt-md-25 {
		margin-top: 25px;
	}

	.mt-md-30 {
		margin-top: 30px;
	}

	.mt-md-40 {
		margin-top: 40px;
	}

	.mt-md-50 {
		margin-top: 50px;
	}

	.mt-md-75 {
		margin-top: 75px;
	}

	.mt-md-100 {
		margin-top: 100px;
	}

	.mt-md-150 {
		margin-top: 150px;
	}

	.mt-md-200 {
		margin-top: 200px;
	}

	.mt-md-250 {
		margin-top: 250px;
	}

	.mt-md-300 {
		margin-top: 300px;
	}

}

@media (max-width: 767px) {

	.mt-sm-5 {
	    margin-top: 5px;
	}

	.mt-sm-10 {
		margin-top: 10px;
	}

	.mt-sm-15 {
		margin-top: 15px;
	}

	.mt-sm-20 {
		margin-top: 20px;
	}

	.mt-sm-25 {
		margin-top: 25px;
	}

	.mt-sm-30 {
		margin-top: 30px;
	}

	.mt-sm-40 {
		margin-top: 40px;
	}

	.mt-sm-50 {
		margin-top: 50px;
	}

	.mt-sm-75 {
		margin-top: 75px;
	}

	.mt-sm-100 {
		margin-top: 100px;
	}

	.mt-sm-150 {
		margin-top: 150px;
	}

	.mt-sm-200 {
		margin-top: 200px;
	}

	.mt-sm-250 {
		margin-top: 250px;
	}

	.mt-sm-300 {
		margin-top: 300px;
	}

}

/* Spacers margin bottom
   ========================================================================== */

.mb-5 {
	margin-bottom: 5px;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-40 {
	margin-bottom: 40px;
}

.mb-50 {
	margin-bottom: 50px;
}

.mb-75 {
	margin-bottom: 75px;
}

.mb-100 {
	margin-bottom: 100px;
}

.mb-150 {
	margin-bottom: 150px;
}	

.mb-200 {
	margin-bottom: 200px;
}

.mb-250 {
	margin-bottom: 250px;
}

.mb-300 {
	margin-bottom: 300px;
}

@media (max-width: 992px) {

	.mb-md-5 {
	    margin-bottom: 5px;
	}

	.mb-md-10 {
		margin-bottom: 10px;
	}

	.mb-md-15 {
		margin-bottom: 15px;
	}

	.mb-md-20 {
		margin-bottom: 20px;
	}

	.mb-md-25 {
		margin-bottom: 25px;
	}

	.mb-md-30 {
		margin-bottom: 30px;
	}

	.mb-md-40 {
		margin-bottom: 40px;
	}

	.mb-md-50 {
		margin-bottom: 50px;
	}

	.mb-md-75 {
		margin-bottom: 75px;
	}

	.mb-md-100 {
		margin-bottom: 100px;
	}

	.mb-md-150 {
		margin-bottom: 150px;
	}

	.mb-md-200 {
		margin-bottom: 200px;
	}

	.mb-md-250 {
		margin-bottom: 250px;
	}

	.mb-md-300 {
		margin-bottom: 300px;
	}

}

@media (max-width: 767px) {

	.mb-sm-5 {
	    margin-bottom: 5px;
	}

	.mb-sm-10 {
		margin-bottom: 10px;
	}

	.mb-sm-15 {
		margin-bottom: 15px;
	}

	.mb-sm-20 {
		margin-bottom: 20px;
	}

	.mb-sm-25 {
		margin-bottom: 25px;
	}

	.mb-sm-30 {
		margin-bottom: 30px;
	}

	.mb-sm-40 {
		margin-bottom: 40px;
	}

	.mb-sm-50 {
		margin-bottom: 50px;
	}

	.mb-sm-75 {
		margin-bottom: 75px;
	}

	.mb-sm-100 {
		margin-bottom: 100px;
	}

	.mb-sm-150 {
		margin-bottom: 150px;
	}

	.mb-sm-200 {
		margin-bottom: 200px;
	}

	.mb-sm-250 {
		margin-bottom: 250px;
	}

	.mb-sm-300 {
		margin-bottom: 300px;
	}

}

/* Block sizes
   ========================================================================== */

.blk-12 {
    width: 100%;
}

.blk-11 {
    width: 91.66666667%;
}

.blk-10 {
    width: 83.33333333%;
}

.blk-9 {
	width: 75%;
}

.blk-8 {
    width: 66.66666667%;
}

.blk-7 {
    width: 58.33333333%;
}

.blk-6 {
    width: 50%;
}

.blk-5 {
    width: 41.66666667%;
}

.blk-4 {
    width: 33.33333333%;
}

.blk-3 {
    width: 25%;
}

.blk-2 {
    width: 16.66666667%;
}

.blk-1 {
    width: 8.33333333%;
}

@media (max-width: 1200px) {

	.blk-lg-12 {
	    width: 100%;
	}

	.blk-lg-11 {
	    width: 91.66666667%;
	}

	.blk-lg-10 {
	    width: 83.33333333%;
	}

	.blk-lg-9 {
		width: 75%;
	}

	.blk-lg-8 {
	    width: 66.66666667%;
	}

	.blk-lg-7 {
	    width: 58.33333333%;
	}

	.blk-lg-6 {
	    width: 50%;
	}

	.blk-lg-5 {
	    width: 41.66666667%;
	}

	.blk-lg-4 {
	    width: 33.33333333%;
	}

	.blk-lg-3 {
	    width: 25%;
	}

	.blk-lg-2 {
	    width: 16.66666667%;
	}

	.blk-lg-1 {
	    width: 8.33333333%;
	}

}

@media (max-width: 992px) {

	.blk-md-12 {
	    width: 100%;
	}

	.blk-md-11 {
	    width: 91.66666667%;
	}

	.blk-md-10 {
	    width: 83.33333333%;
	}

	.blk-md-9 {
		width: 75%;
	}

	.blk-md-8 {
	    width: 66.66666667%;
	}

	.blk-md-7 {
	    width: 58.33333333%;
	}

	.blk-md-6 {
	    width: 50%;
	}

	.blk-md-5 {
	    width: 41.66666667%;
	}

	.blk-md-4 {
	    width: 33.33333333%;
	}

	.blk-md-3 {
	    width: 25%;
	}

	.blk-md-2 {
	    width: 16.66666667%;
	}

	.blk-md-1 {
	    width: 8.33333333%;
	}

}

@media (max-width: 767px) {

	.blk-sm-12 {
	    width: 100%;
	}

	.blk-sm-11 {
	    width: 91.66666667%;
	}

	.blk-sm-10 {
	    width: 83.33333333%;
	}

	.blk-sm-9 {
		width: 75%;
	}

	.blk-sm-8 {
	    width: 66.66666667%;
	}

	.blk-sm-7 {
	    width: 58.33333333%;
	}

	.blk-sm-6 {
	    width: 50%;
	}

	.blk-sm-5 {
	    width: 41.66666667%;
	}

	.blk-sm-4 {
	    width: 33.33333333%;
	}

	.blk-sm-3 {
	    width: 25%;
	}

	.blk-sm-2 {
	    width: 16.66666667%;
	}

	.blk-sm-1 {
	    width: 8.33333333%;
	}

}

/* Block paddings
   ========================================================================== */

.blk-1, 
.blk-2, 
.blk-3, 
.blk-4, 
.blk-5, 
.blk-6, 
.blk-7, 
.blk-8, 
.blk-9, 
.blk-10, 
.blk-11, 
.blk-12 {
	padding-right: var(--gutter-lg);
    padding-left: var(--gutter-lg);
}

/* Gutters
   ========================================================================== */

.gutter {
	padding: 0 var(--gutter-lg);
}

.gutter-sm {
	padding: 0 var(--gutter-sm);
}

.no-gutter {
	padding: 0;
	margin: 0;
}

/* Sizes
   ========================================================================== */

.width-100 {
	width: 100%;
}

.height-100 {
	height: 100%;
}

/* Padding
   ========================================================================== */

.no-padding {
	padding: 0;
}

/* Margin
   ========================================================================== */

.no-margin {
	margin: 0;
}

/* List
   ========================================================================== */

.no-list {
	list-style-type: none;
}

/* Display
   ========================================================================== */

.display-block {
	display: block;
}

.display-inline-block {
	display: inline-block;
}

.display-flex {
	display: flex;
}

.display-none {
	display: none;
}

/* Positions
   ========================================================================== */

.position-absolute {
	position: absolute;
}

.position-relative {
	position: relative;
}

.position-sticky {
	position: sticky;
}

.position-fixed {
	position: fixed;
}

/* Locations
   ========================================================================== */

.top-left {
	top: 0;
	left: 0;
}

.top-right {
	top: 0;
	right: 0;
}

.bottom-left {
	bottom: 0;
	left: 0;
}

.bottom-right {
	bottom: 0;
	right: 0;
}

/* Flex
   ========================================================================== */

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

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

.flex-column {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.justify-start {
	justify-content: flex-start;
}

.justify-end {
	justify-content: flex-end;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

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

.align-start {
	align-items: flex-start;
}

.align-end {
	align-items: flex-end;
}

/* Order
   ========================================================================== */

.order-1 {
	order: 1;
}

.order-2 {
	order: 2;
}

.order-3 {
	order: 3;
}

@media (max-width: 992px) {

	.order-md-1 {
		order: 1;
	}

	.order-md-2 {
		order: 2;
	}

	.order-md-3 {
		order: 3;
	}

}

@media (max-width: 767px) {

	.order-sm-1 {
		order: 1;
	}

	.order-sm-2 {
		order: 2;
	}

	.order-sm-3 {
		order: 3;
	}

}

/* Text alignment
   ========================================================================== */

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

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

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

@media (max-width: 992px) {

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

	.text-left-md {
	   text-align: left;
	}

	.text-right-md {
		text-align: right;
	}

}

@media (max-width: 767px) {

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

	.text-left-sm {
	   text-align: left;
	}

	.text-right-sm {
		text-align: right;
	}

}

/* Hide elements
   ========================================================================== */

@media (max-width: 1200px) {

	.hidden-xl {
		display: none;
	}

}

@media (max-width: 992px) {

	.hidden-md {
		display: none;
	}

}

@media (max-width: 767px) {

	.hidden-sm {
		display: none;
	}

}

/* Backgrounds
   ========================================================================== */

.bg-white {
	background: #FFF;
}

/* Buttons
   ========================================================================== */

.btn, .button {
	display: inline-block;
	padding: 18px 40px;
	font-weight: bold;
	text-decoration: none;
	border: none;
	border-radius: 29px;
	cursor: pointer;
}

@media (max-width: 992px) {

	.btn, .button {
		padding: 15px 30px;
	}

}

/* Paragraphs
   ========================================================================== */

.content p {
	margin-bottom: 25px;
}

/* Content
   ========================================================================== */

.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
	margin-bottom: 25px;
}

.content ul, .content ol {
	margin: 0 0 25px 25px;
}

.content :last-child {
	margin-bottom: 0;
}

/* Header
   ========================================================================== */

.header {
	position: relative;
	z-index: 99;
}

/* Header logo
   ========================================================================== */

@media (max-width: 992px) {

	.header__logo {
		text-align: center;
	}

	.header__logo img {
		display: inline-block;
		max-width: 175px;
	}

}

@media (max-width: 767px) {

	.header__logo img {
		max-width: 160px;
	}

}

/* Header account
   ========================================================================== */

@media (max-width: 767px) {

	.header__account svg {
		max-width: 18px;
		height: 17px;
	}

}  

/* Header menu
   ========================================================================== */

.header__menu li {
	z-index: 99;
	margin-right: 50px;
	list-style-type: none;
}

.header__menu > li {
	position: relative;
}

.header__menu li:last-child {
	margin-right: 0;
}

.header__menu li a {
	text-decoration: none;
}

.header__menu ul ul {
	display: none;
	position: absolute;
 	z-index: 99;
  	width: 225px;
  	left: 50%;
  	top: 100%;
  	padding: 25px;
}

.header__menu ul ul li {
	margin-bottom: 20px;
	margin-right: 0;
}

.header__menu ul ul li:last-child {
	margin-bottom: 0;
}

.header__menu ul ul li a {
	position: relative;
	display: block;
	width: 100%;
}

.header__menu ul ul li a span {
	position: absolute;
	right: 0;
	top: 7px;
	transform: rotate(-90deg);
}

.header__menu li svg path {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.header__menu ul ul ul {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	left: 225px;
    top: 0;
    width: calc(var(--container) - 225px);
    border-left: 1px solid;
}

.header__menu ul ul ul > li {
	position: relative;
	width: 25%;
	display: flex;
	flex-direction: column;
	margin-bottom: 5px;
}

.header__menu ul ul ul > li.mega_menu_title > a {
	font-weight: bold;
	margin-bottom: 5px;
	pointer-events: none;
}

.header__menu ul ul ul ul {
	display: block !important;
	opacity: 1 !important;
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0;
	margin-bottom: 30px;
	border: none;
}

.header__menu ul ul ul ul li {
	display: block;
	width: 100%;
}

.main-menu {
	display: block;
}

.main-menu .header__menu ul .close__nav {
	display: none;
}

@media (max-width: 992px) {

	.main-menu {
		position: fixed;
		z-index: 99;
		left: -400px;
		top: 0;
		width: 320px;
		height: 100%;
		padding: 0;
		background: #FFF !important;
		box-shadow: 10px 0 5px -2px rgba(136, 136, 136,.1);
		-webkit-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}

	.show-menu .main-menu {
		left: 0;
	}

	.main-menu .container {
		padding: 0;
	}

	.main-menu .header__menu ul {
		display: block;
	}

	.main-menu .header__menu li {
		position: static;
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
		padding: 0 15px 15px 15px;
		border-bottom: 1px solid;
	}

	.main-menu .header__menu li a {
		font-size: 15px !important;
		color: #000 !important;
		position: relative;
		display: block;
		width: 100%;
	}

	.main-menu .header__menu li a span {
		position: absolute;
		right: 0;
		top: 0;
		transform: rotate(0deg);
	}

	.main-menu .header__menu li a span svg {
		transform: rotate(-90deg);
	}

	.main-menu .header__menu li a span svg path {
		stroke: #000;
	}

	.main-menu .header__menu ul ul {
		display: block !important;
		opacity: 1 !important;
		background: #FFF !important;
		padding: 0 !important;
		border: none !important;
		position: fixed;
		z-index: 99;
		left: -400px;
		top: -5px;
		width: 320px;
		height: calc(100% + 5px);
	}

	.main-menu .header__menu ul ul.sub-visible {
		left: 0;
	}

	.main-menu .header__menu ul .close__nav,
	.main-menu .header__menu ul ul .close__sub {
		background: #000;
		padding: 2px 0 0 0;
	}

	.main-menu .header__menu ul .close__nav {
		display: block;
	}

	.main-menu .header__menu ul .close__nav a {
		position: relative;
		text-align: right;
		padding: 13px 45px 17px;
		color: #FFF !important;
	}

	.main-menu .header__menu ul .close__nav a:before {
		content: '';
		position: absolute;
		right: 13px;
		top: 23px;
		background: #FFF;
		width: 18px;
		height: 2px;
		transform: rotate(45deg);
	}

	.main-menu .header__menu ul .close__nav a:after {
		content: '';
		position: absolute;
		right: 13px;
		top: 23px;
		background: #FFF;
		width: 18px;
		height: 2px;
		transform: rotate(-45deg);
	}

	.main-menu .header__menu ul ul .close__sub a {
		padding: 18px 0 17px 50px;
		color: #FFF !important;
		background: url(../images/icons/arrow-left-white.svg) no-repeat 15px 23px;
		background-size: 16px;
	}

	.main-menu .header__menu ul ul .sub__title {
		font-weight: bold;
		text-transform: uppercase;
	}
    
	.main-menu .header__menu ul ul ul > li.mega_menu_title > a {
		margin-bottom: 0;
		font-weight: normal;
		pointer-events: initial;
	}

	.main-menu .header__menu ul ul ul > li.mega_menu_title > a:after {
		content: '';
		position: absolute;
		right: -3px;
		top: 5px;
		width: 12px;
		height: 12px;
		background: url(../images/icons/chevron-right.svg) no-repeat;
	}

}

/* Menu toggle
   ========================================================================== */

.menu__toggle {
	display: none;
}

.toggle__button {
	display: block;
	width: 45px;
}

.toggle__button .toggle__button-line {
	display: block;
	width: 100%;
	max-width: 23px;
	height: 2px;
	background: #000;
	margin-bottom: 5px;
	border-radius: 5px;
}

@media (max-width: 992px) {

	.menu__toggle {
		display: block;
	}

}

/* Search
   ========================================================================== */

.search__form {
	display: none;
	z-index: 99;
	top: 108px;
	left: 0;
	width: 100%;
}

.show-search .search__form {
	display: block;
}

.search__form form {
	width: 100%;
	padding: 30px 75px;
	background: #FFF;
	box-shadow: -6px 6px 6px rgba(0,0,0,.05), 6px 6px 6px rgba(0,0,0,.05), 0 6px 6px rgba(0,0,0,.05);
}

.search__form form input[type="search"] {
	width: 100%;
	font-size: 18px;
	padding: 20px 10px;
	border: none;
	border-radius: 0;
	border-bottom: 2px solid #000;
}

.search__form form button {
	position: absolute;
	right: 110px;
	top: 50px;
	background: no-repeat;
	border: none;
}

.search__form .search-toggle {
	position: absolute;
	right: 30px;
	top: 15px;
	color: #000;
	text-decoration: none;
	font-size: 30px;
}

@media (max-width: 992px) {

	.search__form {
		top: 78px;
	}

	.search__form form {
		padding: 15px 30px;
	}

	.search__form form input[type="search"] {
		font-size: 15px;
	}

	.search__form form button {
		right: 60px;
		top: 35px;
	}

}

/* Banner
   ========================================================================== */

.banner a {
	font-size: 16px;
	text-decoration: none;
}

@media (max-width: 767px) {

	.banner svg {
		position: absolute;
		left: 15px;
	}

}

/* Hero
   ========================================================================== */

.hero .hero__image {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.hero .hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 767px) {

	.hero,
	.hero .hero__content {
		max-height: 400px;
	}

}

/* Collection
   ========================================================================== */

.collection .collection__item {
	border: 1px solid;
}

.collection .collection__item a {
	text-decoration: none;
	color: #000;
}

/* Products
   ========================================================================== */

.products ul.products li {
	margin-bottom: 0;
}

/* Customer service
   ========================================================================== */

.customerservice .customerservice__subjects .customerservice__subject-name {
	margin-bottom: 1px;
	font-size: 16px;
	cursor: pointer;
}

.customerservice .customerservice__subjects .customerservice__subject-name svg {
	right: 0;
	top: 3px;
}

.customerservice .customerservice__subjects .customerservice__subject-name.ui-state-active svg {
	transform: rotate(90deg);
}

.customerservice .customerservice__subjects .customerservice__subject-icon {
	width: 23px;
}

.customerservice .customerservice__subjects .customerservice__subject-questions {
	margin-bottom: 1px;
}

.customerservice .customerservice__subject-answer {
	display: none;
}

/* Footer
   ========================================================================== */

.footer ul li {
	list-style-type: none;
}

.footer a {
	text-decoration: none;
}

/* Gateways
   ========================================================================== */

.payment__gateways .payment__gateways-icons .gateway__icon {
	width: 55px;
	height: 35px;
}

.payment__gateways .payment__gateways-icons .gateway__icon img {
	width: 100%;
	height: 100%;
}

/* Social media
   ========================================================================== */

.social__media .social__media-links .social__link svg {
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.social__media .social__media-links .social__link a:hover svg {
	opacity: .7;
}

h1, h2, h3, h4, h5 {
	font-family: "Zilla Slab", serif;
}

h1 {
	font-weight: 500;
}