
body {
	background: #fff;
    padding-top: 90px;
	color: #181716;
	font-size: 13px;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	line-height: 1.538em;
}


a, .green {
	color: #66bc25;
	text-decoration: none;
}
a:hover {
	color: #48a00c;
	text-decoration: underline;
}

.p,
p, ul, ol {
	margin: .7em 0;
	padding: 0;
}

hr {
	height: 10px;
	margin: 20px 0 10px;
	background: none;
	border: 0 solid #CCC;
	border-top-width: 1px;
}

h1, .h1 {
	font-size: 2em;
	line-height: 1.0em;
	margin: .8em 0;
}
h2, .h2 {
	font-weight: normal;
	font-size: 1.8em;
	margin: .8em 0;
	line-height: 1.1em;
}
h3, .h3 {
	font-weight: normal;
	font-size: 1.5em;
	margin: .7em 0;
	line-height: 1.2em;
}
h4, .h4 {
	font-size: 1.2em;
	margin: .5em 0;
	line-height: 1.2em;
}
h5, .h5 {
	font-size: 1em;
	margin: .4em 0;
}


/*
 * Lists
 */

ul, ul li {
	margin: 0;
	padding: 0;
	list-style: none;
}
ol {
	margin-left: 35px;
}
	ol li {
		padding: 1px 0 1px 0;
	}

/*
 * Table
 */

table {
	margin: 1em auto;
}
	td, th {
		padding: 0.5em 1em;
		border: 1px solid #EEE;
	}
	th {
		font-weight: bold;
	}
	thead {
		background-color: #F7F7F7;
	}
	tfoot {
		background-color: #F7F7F7;
		color: #888;
	}

img {
	vertical-align: middle;
}

.tableHover tr:hover td {
	background-color: #F7F7F7;
}
.tableFull {
	width: 100%;
}


/*
 * Input
 */

.input {
	display: inline-block;
	padding: 12px 10px 11px;
	width: 220px;
	max-width: 100%;
	border: 1px solid #CCC;

	background: #fff;
	vertical-align: middle;
	font: 13px/13px Arial, Helvetica, sans-serif;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	background-clip: padding-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
	.input--long {
		width: 350px;
	}
	.input--full {
		width: 100%;
	}
	.input--number {
		width: 55px;
		text-align: center;
	}
	.input--short {
		width: 70px;
		text-align: center;
	}
	.input--textarea {
		max-width: 380px;
		width: 100%;
		height: 90px;
		vertical-align: top;
		line-height: 1.2em;
	}
	.input--full {
		max-width: none;
	}
	.input--textarea--medium {
		height: 200px;
	}
	.input--textarea--large {
		height: 400px;
	}
	.input:focus {
		border-color: #AAA;
		box-shadow: 0 0 6px rgba(0,0,0,0.1);
	}
	.input--invalid {
		border-color: #D47171;
	}


/*
 * Button
 */

.button {
	display: inline-block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	padding: 11px 20px;
	border: 1px solid #66bc25;
	background: #66bc25;
	background-clip: padding-box;
	color: #fff;
	vertical-align: middle;
	text-decoration: none;
    text-shadow: none !important;
	font: normal 12px/13px Arial, Helvetica, sans-serif;
	line-height: 14px;
	-webkit-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	cursor: pointer;
}
	.button--large {
		padding: 13px 18px 12px;
		font-size: 14px;
	}

    .button--arrow {
        padding: 9px 15px 9px 20px;
    }
    .button--arrow:after {
        content: "";
        display: inline-block;
        background: url(../images/gfx/arrow_left.png) 0 center no-repeat;
        height: 20px;
        margin-left: 13px;
        vertical-align: middle;
        width: 9px;
    }

    .button--full {
        border-color: #fff;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        font-size: 24px;
        font-weight: 400;
        font-family: "Open Sans";
        padding: 16px 0 11px;

    }

	.button:hover {
		border-color: #55ac14;
        background-color: #55ac14;
		color: #fff;
		text-decoration: none;
	}
	.button:active {
		border-color: #666;
		background: #454444;
		box-shadow: inset 0 0 3px rgba(0,0,0,.8);
	}

    .rb {
        position: absolute;
        right: 0;
        bottom: -5px;
    }



/*
 * Select
 */

.select {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	padding: 12px 10px;
	min-width: 150px;
}
	.select--full {
		width: 98%;
	}


/*
 * Form
 */

.form {
	max-width: 450px;
	margin: 0 auto;
}

.label,
.formActions {
	display: block;
	clear: both;
	padding: 3px 0 3px 120px;
}
	.label-name {
		float: left;
		margin-left: -120px;
		padding-top: 5px;
		padding-right: 5px;
		width: 110px;
		text-align: right;
		font-size: 13px;
	}
	.label-value {
		padding: 5px 0 0 0;
		display: inline-block;
	}
	.label-help {
		display: block;
		color: #aaa;
		font-size: 11px;
		line-height: 1.2em;
	}
	.label-help--after {
		display: inline-block;
		vertical-align: middle;
	}
	.label--invalid {
		color: #B72B2B;
	}
	.label--invalid .input {
		border-color: #D92E2E;
	}

	.label--big {
		padding-left: 210px;
	}
		.label--big .label-name {
			margin-left: -210px;
			width: 200px;
		}

	.label--small {
		padding-left: 80px;
	}
		.label--small .label-name {
			margin-left: -80px;
			width: 70px;
		}

	/* elastyczne labele */
	.elasticLabels .label {
		padding-left: 0;
	}
		.elasticLabels .label-name {
			display: inline-block;
			float: none;
			margin-left: 0;
			padding-right: 10px;
			min-width: 110px;
			width: auto;
			vertical-align: top;
		}

.formActions {
	margin: 1em 0;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid #E8E8E8;
	background: #F5F5F5;
}
	.formActions--center {
		padding-left: 0;
		text-align: center;
	}
	.formActions--sides {
		padding: 15px;
		overflow: hidden;
	}
		.formActions--sides-left {
			float: left;
		}
		.formActions--sides-right {
			float: right;
		}


/*
 * Loading
 */

.loading {
	background: url(../images/gfx/loading.png) center center no-repeat;
}
	.loading--full {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #FFF;
		opacity: .8;
		filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	}
	.loading-text {
		position: absolute;
		width: 100%;
		text-align: center;
		top: 50%;
	}


/*
 * Media element
 */

.media {
	overflow: hidden;
	display: block;
	margin: .8em 0;
}
	.media-image {
		float: left;
		margin-right: .8em;
	}
	.media-content {
		overflow: hidden;
		margin: 0;
	}
	.media--triple,
	.media--double {
		display: inline-block;
		vertical-align: top;
		width: 18.8%;
		margin: .8em .4%;
	}
	.media--triple {
		width: 32%;
	}

        .media--double .media-image {
            display: inline-block;
            vertical-align: top;
            width: 23.4%;
            margin: .8em .6%;
        }

        .media--double .media-name {
            color: inherit;
        }


.media2 {
	display: table;
	margin: .8em 0;
}
	.media2-image,
	.media2-content {
		display: table-cell;
		vertical-align: middle;
	}
	.media2-image {
		padding: 0 .6em 0 0;
	}
	.media2-image--after {
		padding-right: .6em;
		padding: 0 0 0 .6em;
	}
	.media2--double {
		display: inline-block;
		vertical-align: top;
		width: 48.9%;
		margin: .4em .4% .8em;
	}
	.media2--inline {
		display: inline-block;
		vertical-align: middle;
		margin: .8em .3em;
	}


.left-media-image {
    display: block;
    margin-top: 30px;
}

/*
 * Table Grid
 */

.grid {
	display: table;
	width: 100%;
}
	.grid--fixed {
		table-layout: fixed;
	}
	.grid-cell {
		display: table-cell;
		vertical-align: middle;
	}
	.grid-cell--tabloid {
		width: 1px;
	}


/*
 * Dropdown
 */

.dropdown {
	position: relative;
}
	.dropdown-content {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 500;
	}


/*
 * Hint
 */
.hint {
	color: #999;
	font-size: .8em;
	line-height: 1.3em;
}


/*
 * Container
 */
.container {
	position: relative;
	margin: 0 auto;
	padding: 0 10px;
	/*min-width: 920px;*/
	max-width: 1200px;
}

/*
 * Left
 */
.leftBlock {
	float: left;
	padding-right: 20px;
	width: 200px;
}

.leftBox {
	text-shadow: 1px 1px #fff;
	background: #f0f0f0 url(../images/gfx/logo_bg.png) right bottom no-repeat;
}

/*
 * Right
 */
.rightBlock {
	float: right;
	padding-left: 20px;
	width: 200px;

}

.gray-line {
    background: #f0f0f0;
    text-shadow: 1px 1px #fff;
}

.h {
    font-size: 32px;
	color: #181716;
    font-weight: 400;
    margin-top: 40px;
}
	.h-start {
		margin-bottom: 5px;
	}

	.h-start:first-letter {
		text-transform: uppercase;
	}

.h-small {
    font-size: 24px;
    font-weight: 400;
}

/*
 * Content
 */
.content {
/*	overflow: hidden;*/
}
	.content img {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		max-width: 100%;
	}
		.content-noimg img {
			max-width: none;
			-webkit-box-sizing: content-box;
			-moz-box-sizing: content-box;
			box-sizing: content-box;
		}

	.content ul {
		margin: .8em 0 15px;
		list-style: square;
	}
		.content ul li {
			padding: 1px 0 1px 12px;
			background: no-repeat 0 0.65em url(../images/gfx/dot.png);
		}

	.content .dropdown-content {
		background: #FFF;
		padding: 5px 10px;
		border-radius: 4px;
		box-shadow: 0 2px 6px rgba(0,0,0,.4);
		font-size: 14px;
		min-width: 140px;
		border: 1px solid #E6E6E6;
	}

.border-box {
    border-bottom: 5px solid #66bc25;
    min-height: 283px;
}
.outBox {
	position: relative;

}
	.outBox:after {
		content: '';
		background-color: #f0f0f0;
		position: absolute;
		top: 0;
		right: 100%;
		bottom: 0;
		width: 1000px;
	}

	.outBox--border:after {
        bottom: -5px;
		border-bottom: 5px solid #66bc25;
	}


/*
 * Breadcrumbs
 */

.breadcrumbs {
	margin: 0 0 20px;
	padding: 0 0 5px;
	color: #999;
	font-size: 12px;
}
	.breadcrumbs b {
		display: inline-block;
		margin-top: -2px;
		padding: 0 2px;
		color: #CCC;
		vertical-align: middle;
		font-weight: bold;
		font-size: 18px;
	}
	.breadcrumbs a,
	.breadcrumbs span {
		display: inline-block;
		vertical-align: middle;
		text-decoration: none;
		color: inherit;
	}
	.breadcrumbs a:hover {
		color: #000;
	}


/*
 * Slider
 */

.slider {
	width: 100%;
	overflow: hidden;
	position: relative;
    z-index: 180;
}
	.slider img {
		display: block;
		width: 100%;
	}

	.slider-arr {
		position: absolute;
		z-index: 200;
		top: 0;
		bottom: 0;
		width: 40px;
		height: 40px;
		line-height: 30px;
		font-size: 40px;
		margin: auto;
		color: #F3F3F3;
		color: rgba(255,255,255,.7);
		text-align: center;
		font-weight: bold;
		cursor: pointer;
		text-shadow: 1px 1px 0 rgba(0,0,0,.3);
	}
		.slider-arr:hover {
			color: #FFF;
		}
		.slider-prev {left: 0}
		.slider-next {right: 0}

	.slider-pager {
		position: absolute;
		z-index: 200;
		right: 0;
		bottom: 0;
		text-align: right;
		overflow: hidden;
		padding: 2px;
	}
		.slider-pager-page {
			display: inline-block;
			width: 10px;
			height: 10px;
			margin: 0 3px;
			background-color: #F3F3F3;
			background-color: rgba(255,255,255,.5);
			border-radius: 100%;
			cursor: pointer;
			vertical-align: middle;
			text-shadow: 1px 1px 0 rgba(0,0,0,.3);
		}
			.slider-pager-page:hover,
			.slider-pager-page--active {
				background-color: #fff ;
			}

    .slider-arr-box {
        position: absolute;
        right: -39px;
        bottom: 0;
        z-index: 150;
    }

        .slider-arr-box  .slider-arr {
            display: block;
            position: static;
            width: 50px;
            height: 72px;
            overflow: hidden;
            text-indent: -99999px;
            background: rgba(102, 188, 37, 0.6) url(../images/gfx/start_arrow_top.png) center center no-repeat;
        }

         .slider-arr-box  .slider-arr:hover {
             background-color: #66bc25;
         }

        .slider-arr-box .slider-next {
            background-image: url(../images/gfx/start_arrow_bottom.png);
        }


.slider-loader {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 150;
    width: 100%;
}
    .slider-loader div {
        height: 5px;
        display: block;
        background: #66bc25;
        width: 0%;
        position: relative;
        box-shadow: 0 0 5px rgba(0, 0, 0, .3);
        -webkit-transition: all 0s ease-out;
	    transition: all 0s ease-out;
    }

    .slider-loader.active div {
        width: 100%;
        -webkit-transition: all 6s ease-out;
	    transition: all 6s ease-out;
    }
        .slider-loader div:after {
            content: "";
            width: 5px;
            height: 5px;
            background: #fff;
            position: absolute;
            right: -5px;
        }

.title-slider {
    background: #fff;
    z-index: 185;
    height: 432px;
    overflow: hidden;
    position: relative;

    padding: 0;
    margin: -144px 0 0;
}
    .title-slide-box {
        height: 143px;
        overflow: hidden;
        z-index: 185;
        padding: 0 30px;
        border-bottom: 1px solid #EEE;
    }

/*
 * Pagination
 */

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}
.content .pagination > li {
  display: inline;
    background-image: none;  
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #66bc25;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  color: #437c18;
  background-color: #eeeeee;
  border-color: #dddddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #66bc25;
  border-color: #66bc25;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #ffffff;
  border-color: #dddddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}


/*
 * Items
 */

.item {
	display: inline-block;
	margin: 0;
	padding: 5px 0 20px;
	background: none;
	vertical-align: top;
	text-align: center;
}
	.item--2 {width: 49.5%;}
	.item--3 {width: 32.5%;}
	.item--4 {width: 24.5%;}
	.item--5 {width: 20%;}

	.item-image {
		display: block;
		height: 140px;
		line-height: 140px;
	}
		.item-image img {
			vertical-align: middle;
		}

	.item-name {
		display: block;
		margin: 0 auto;
		max-width: 70%;
		font-weight: normal;
		line-height: 1.2em;
		min-height: 2.4em; /* 2 x line-height */
	}


/*
 * Box
 */

.box {
	position: relative;
	margin: 0.9em 0.7em;
	padding: 0.7em 1em;
	border: 1px solid #CCC;
	border-radius: 2px;
	background-color: #F5F5F5;
	color: #666;
	text-align: left;
	line-height: 1.4em;
}
	.box-close {
		position: absolute;
		top: -6px;
		right: -6px;
		width: 16px;
		height: 16px;
		border: 1px solid #CCC;
		border-radius: 100%;
		background-color: #F5F5F5;
		box-shadow: 0 0 1px rgba(0,0,0,0.3);
		color: #666;
		text-align: center;
		font-size: 12px;
		line-height: 16px;
		cursor: pointer;
	}
	.box-close:hover {
		top: -7px;
		right: -7px;
		width: 18px;
		height: 18px;
		line-height: 18px;
		font-weight: bold;
	}

	.box--ok,
	.box--ok .box-close {
		border-color: #78CA52;
		background: #F7FFED;
		color: #4DAB01;
	}
	.box--error,
	.box--error .box-close {
		border-color: #FF9494;
		background: #FFF0F0;
		color: #D92A2A;
	}
	.box--info,
	.box--info .box-close {
		border-color: #81AEFF;
		background: #E9F1FF;
		color: #2F5DB3;
	}
	.box--alert,
	.box--alert .box-close {
		border-color: #E1D042;
		background: #FFFFDE;
		color: #A99B27;
	}


/*
 * Main
 */
.main {
/*	overflow: hidden;*/
}


/*
 * Top
 */

.top {
	margin-bottom: 10px;
	background: #fff;
    position: fixed;
    z-index: 190;
    top:0;
    width: 100%;
}


/*
 * Logo
 */

.logo {
	display: block;
	float: left;
	padding: 15px 0 13px;
	margin: 0;
}
	.logo img {
		display: block;
	}


/*
 * Nav
 */

.nav {

}

	.nav li {
		float: left;
	}
	.nav a {
		display: block;
		padding: 10px 15px;
		text-decoration: none;
	}
	.nav .dropdown--open a,
	.nav a:hover,
    .nav a.active {
		background: #66bc25;
        color: #fff;
	}
	.nav .dropdown-content {
		background-color: #66bc25;
		width: 200px;
		border: 1px solid #66bc25;
		border-top: none;
	}
		.nav .dropdown-content li {
			float: none;
		}
		.nav .dropdown-content a {
			padding: 5px 10px;
		}
		.nav .dropdown-content a:hover {
			background-color: #33640e;
		}

    .top-menu {
        float: right;
        margin-right: 10px;
    }

        .top-menu a {
            font-size: 12px;
            color: #888;
            padding: 6px 15px;
        }

        .top-menu a:hover, .top-menu a.active {

        }

    .menu {
        float: right;
        margin-top: 20px;
        clear: right;
    }

        .menu a {
            font-size: 14px;
	        color: #181716;
        }

        .menu .dropdown-content {
            width: 280px;
        }
             .menu .dropdown-content ul a {
                 font-size: 12px;
                padding-left: 27px;
                background-image: url(../images/gfx/white_dot.png);
                background-repeat: no-repeat;
                background-position: 13px 13px;
             }

/*
 * Search
 */

.search {
	float: right;
	padding: 20px 0;
	border: 0;
	min-width: 300px;
	white-space: nowrap;
	text-align: right;
}
	.search legend {
		display: none;
	}


/*
 * Categories
 */

.categories {
	display: block;
}
	.categories a {
		display: block;
		padding: 2px 0;
		text-decoration: none;
		font-size: 14px;
		color: inherit;
	}

	.categories a:hover {
		color: #66bc25;
	}

	.content .categories > li  {
		background: none;
		padding: 0;
	}

	.content .categories li {
		background-position: 0 10px;
	}

	.categories > li > a {
		font-size: 20px;
		font-weight: 400 !important;
		padding: 6px 0 15px;
		border-bottom: 1px solid #fff;
		margin-bottom: 5px;
	}

	.categories ul {
		/*display: none;*/
		margin-left: 15px;
		padding: 0 0 5px 5px;
		border-left: 1px solid #EEE;
	}
	.categories ul a {
		font-size: 13px;
	}
	.categories .open > a {
		font-weight: bold;
	}
	.categories .active > a {
		color: #66bc25;
		font-weight: bold;
	}

.green-box {
    background: #66bc25;
    color: #fff;
    padding: 5px 30px 20px;
}
    .green-box a {
        color: inherit;
    }

.icon-phone {
    font-size: 24px;
    line-height: normal;
    padding-left: 60px;
    font-weight: 400;
    background: url(../images/gfx/icon_phone.png) 10px center no-repeat;
}

/*
 * Footer
 */

.footer {
	clear: both;
	padding: 10px;
	background: #66bc25;
	color: #fff;
	font-size: 11px;
    margin-top: 30px;
}
	.footer a {
		float: right;
		color: #cbfaa6;
		text-decoration: none;
	}


.section {
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 2px dotted #eee;
}


/*
 * Modyfikatory
 */

.alignLeft   {text-align: left}
.alignRight  {text-align: right}
.alignCenter {text-align: center}

.pullLeft {
	float: left;
	margin: .8em .8em .8em 0;
}
.pullRight {
	float: right;
	margin: .8em 0 .8em .8em;
}
	.pullRight:first-child,
	.pullLeft:first-child {
		margin-top: 0;
	}

.pullCenter {
	display: block;
	margin: .8em auto;
}

/* read more link */
.more {
	padding-left: 5px;
	font-weight: bold;
	font-size: .9em;
}

/* price hightlight style */
.price {
	font-size: 1.1em;
	font-weight: bold;
	color: #AD0000;
}

/* multiline indent */
.rr {
	display: inline-block;
	vertical-align: top;
}

/* invisible link */
.il {
	text-decoration: inherit;
	color: inherit;
}
	.il:hover {
		text-decoration: underline;
		color: inherit;
	}

.mt0 {
	margin-top: 0;
}
.mb0 {
	margin-bottom: 0;
}

.block {
	display: block;
}
.hide {
	display: none;
}

.ninja {
	position: absolute !important;
	width: 1px;
	height: 1px;
	top: -1px;
	left: -1px;
	text-indent: 1px;
	overflow: hidden;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

.relative {
	position: relative;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both
}

.pointer {
	cursor: pointer;
}


/****************************************************************************/




/* Tablets */
@media (max-width: 991px) {
    .menu-h.ninja {
        width: auto;
        top: auto;
        left: auto;
        overflow: auto;
        height: auto;
         -moz-transition: all 1s ease;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
        position: fixed !important;
        z-index: 810;
        top: 34px;
        right: 30px;
        cursor: pointer;
    }
    
    
    
    .menu-h.ninja.active {
        right: 150px;
    }
    
    .menu-h.ninja  span {
        position: relative !important;
        margin: 0 0 10px 20px !important;
        padding-left: 1.25em !important;
        display: block;
         -moz-transition: all 1s ease;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    
    
    .menu-h.ninja span:before {
        content: "";
        position: absolute;
        top: 0.25em;
        left: 0;
        width: 1em;
        height: 0.1112em;
        border-top: 0.375em double #000;
        border-bottom: 0.13em solid #000;

        -moz-transition: all 1s ease;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    
        .menu-h.ninja.active span:before,   .menu-h.ninja.active span:after {
        content: "";
        position: absolute;
        top: 0.4em;
        left: 0;
        width: 1em;
        height: 0.05em;
        border-top: none;
        border-bottom: 0.13em solid #000;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
        
    }
    
    .menu-h.ninja.active span:after {
         left: -1px;
          -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
     }

    .nav {
        clear: both;
        display: block;
        background: #fff;
        box-shadow: 0 0 14px rgba(0, 0, 0, .2);
        position: fixed;
        top: 0;
        right: -300px;
        bottom: 0;
        
        width: 280px;
        padding-top: 80px;
        z-index: 800;
         -moz-transition: all 1s ease;
        -webkit-transition: all 1s ease;
        transition: all 1s ease;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav > ul {
        float: none !important;
        display: block;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #eee;
    }
    
    
    
    .nav li {
        display: block;
        float: none;
        margin:0;
        padding: 0;
    }
    .nav a {
        display: block;
        font-size: 14px !important;
        color: #333 !important;
        padding: 10px 20px !important;
    } 
    
    .nav a:hover, .nav a.active, .nav .dropdown-content a, .nav .dropdown--open > a {
        color: #fff !important;
    }
    
    .nav .dropdown-content {
        position: static !important;
        width: 100%;
    }
    
          .nav .dropdown-content ul {
              margin-left: 20px;
          }
    
    
            .nav .dropdown-content ul ul {
              margin-left: 20px;
          }
    
          .nav .dropdown-content a {
              font-size: 12px !important;
              padding: 7px !important;
              padding-left: 30px !important;
              
          }
    
    .leftBox {
        min-height: 1px !important;
    }
   
    
    .slider-arr-box {
        right: 31.623931623931625%;
    }
    
    
}



@media (max-width: 1024px) {
    body {
        padding-top: 90px;
    }
    .logo img {
        height: 60px;
    }
    .menu {
        margin-top: 10px;
    }
    .menu a {
        padding: 10px 15px;
    }
    
    .slider-arr-box {
        right: 31.623931623931625%;
    }
}

/* Phone */
@media (max-width: 767px) {
    
     .leftBox {
        min-height: 1px !important;
    }
    
    .logo img {
        height: 60px;
    }
    
    body {
        padding-top: 90px;
    }
    
    .menu-h.ninja {
        top: 35px;
    }

	.no-mobile {
        display: none;
    }
    
    .span {
		width: auto;
		float: none;
		margin-left: 0 !important;
	}

	.media--double,
	.media2--double {
		display: block;
		width: auto;
		margin: .8em 0;
	}
    
        .media--double .media-image, .start-media-image {
            margin-right: 15px;
            float: left;
        }
    
        .start-media-image {
            width: 150px; 
        }
    
    .start-media-box .button {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    
    }
    
    .leftBox {
        padding-top: 5px; 
    }
    
    .title-slider {
        margin-top: 0;
    }
    
    .left-media-image {
        width: 100%;
        display: block;
        margin: 0;;
    }

    .slider-arr-box {
        display: none;
    }
}


.white-popup-block {
    background: #FFF;
    padding: 20px 30px;
    text-align: left;
    max-width: 750px;
    margin: 40px auto;
    position: relative;
}


.white-popup-block img {
	max-width: 100%;
}


/****************************************************************************/


.no-js * {
	-webkit-transition: none !important;
	transition: none !important;
}