/* ==========================================================================
   Bruin: 4b3c30
   Bruin (licht): 9e968f
   Blauw: 0594ae
   Zwart: 000
   ========================================================================== */

/* ==========================================================================
   Body
   ========================================================================== */

body {
    min-width: 320px;
    background-color: #f1f0ef;
    color: #4b3c30;
	font-size: 16px;
	line-height: 1.42857;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}


/* ==========================================================================
   Base
   ========================================================================== */

a { color: #4b3c30; text-decoration: none;}
a:hover { color: #0594ae;}
a:focus { outline: none;}

h1, h2, h3, h4, h5, h6 { margin: 0; color: #4b3c30; font-weight: 700; line-height: 100%; font-family: 'Oswald', sans-serif;}
p { margin-top: 0;}
hr { height: 0; border: 0; border-top: 1px solid #ccc;} 
img { max-width: 100%; height: auto;}

*, *:before, *:after {
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}


/* ==========================================================================
   Page-wrap
   ========================================================================== */

.page-wrap {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ==========================================================================
   Container
   ========================================================================== */

.container {
	position: relative;
	width: 940px;
	margin-left: auto;
	margin-right: auto;
}
.container .row { margin-left: -20px;}

.container-fluid {
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
.container-fluid .row { margin-left: -10px; margin-right: -10px;}


/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: relative;
	height: 100px;
    line-height: 100px;
    text-align: center;
}

/* logo */
.header .logo {
    position: absolute;
    top: 10px;
    left: 0;
	display: block;
	max-width: 200px;
	transition: opacity 0.3s;
}
.header .logo:hover { opacity: 0.8;}

/* social */
.header .social {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.header .social li {
    float: left;
    margin: 0 5px;
    font-size: 18px;
}

/* Menu
   ========================================================================== */
.header .menu {
    display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .menu > li {
    position: relative;
    float: left;
    margin: 0 10px;
	font-size: 18px;
    text-transform: uppercase;
}
.header .menu > li > a {
	color: #4b3c30;
	text-decoration: none;
	transition: color 0.5s;
}
.header .menu > li > a:hover, .header .menu > li.active > a { color: #0594ae;}

/* menu > ul */
.header  .menu > li > .sub-ul {
    display: none;
    z-index: 100;
    position: absolute;
    top: 80px;
}
.header .menu > li:hover > .sub-ul { display: block;}
.header .menu > li.last > .sub-ul { right: 0;}
.header .menu > li > .sub-ul:before {
	content: "";
	position: absolute;
	top: -9px;
    left: 20px;
	width: 20px;
	height: 10px;
	background-image: url(../images/menu-arrow.png);	
}
.header .menu > li.last > .sub-ul:before { left: auto; right: 20px;}
.header .menu > li > .sub-ul > ul {
    min-width: 160px;
	margin: 0;
	padding: 5px 10px;
	list-style: none;
    background-color: #fff;
    border: 1px solid #4b3c30;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 1px;
    text-align: left;
}
.header .menu > li > .sub-ul > ul > li {
    float: none;
    font-size: 16px;
    line-height: 30px;
	white-space: nowrap;
}
.header .menu > li > .sub-ul > ul > li > a {
	display: block;
    color: #4b3c30;
}
.header .menu > li > .sub-ul > ul > li > a:hover, .header .menu > li > .sub-ul > ul > li.active > a { color: #0594ae;}

/* menu > ul > ul > ul */
.header .menu > li > .sub-ul > ul > li > ul > li > ul { display: none;}


/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
    position: relative;
    height: 35px;
    margin-bottom: 20px;
    line-height: 33px;
    border: 1px solid #4b3c30;
    text-transform: uppercase;
}

/* search-box */
.navbar .search-box {
    float: left;
    padding: 0 10px;
    background-color: #fff;
    border-left: 1px solid #4b3c30;
}
.navbar .search-box form { position: relative;}
.navbar .search-box input[type=text] {
    display: block;
    height: 33px;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #4b3c30;
    line-height: normal;
    text-transform: uppercase;
}
.navbar .search-box input[type=text]:focus { box-shadow: none;}
.navbar .search-box button[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: 33px;
    padding: 0;
    background: none;
    border: none;
}
.navbar .search-box button[type=submit]:hover { color: #0594ae;}
.navbar .search-box button[type=submit] .fa { display: block; font-size: 18px;}

/* button */
.navbar .button {
    float: left;
    display: block;
    padding: 0 10px;
    background-color: #fff;
    border-left: 1px solid #4b3c30;
}
.navbar .button .text { float: left; margin-right: 10px;}
.navbar .button .image { float: right;}

/* language */
.navbar .language {
    float: left;
    margin: 0;
    padding: 0 5px;
    list-style: none;
    background-color: #fff;
    border-left: 1px solid #4b3c30;
}
.navbar .language li {    
    float: left;
    margin: 0 5px;
}
.navbar .language li a { color: #9e968f;}
.navbar .language li a:hover { color: #0594ae;}
.navbar .language li.active a { color: #4b3c30;}


/* ==========================================================================
   Nav-holder
   ========================================================================== */

/* nav-toggle */
.nav-toggle {
    float: left;
    display: block;
    margin-left: 10px;
    color: #0594ae;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
}
.nav-toggle .nav-close .fa { font-size: 18px;}
.nav-toggle:hover { color: #4b3c30;}

/* nav-holder */
.nav-holder {
    z-index: 999999;
    position: fixed;
    top: 100px;
    left: -260px;
    width: 250px;
    height: 100%;
    padding-top: 35px;
    background-color: #0594ae;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    overflow-y: auto;
    transition: 0.5s;
}
.nav-holder.active { left: 0;}

/* nav-close */
.nav-holder .nav-close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 10px;
    color: #fff;
    line-height: 33px;
    vertical-align: middle;
    cursor: pointer;
}
.nav-holder .nav-close .fa { font-size: 20px;}
.nav-holder .nav-close:hover { color: #4b3c30;}

/* menu */
.nav-holder .menu {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav-holder .menu > li {
	font-size: 16px;
    text-transform: uppercase;
}
.nav-holder .menu > li > a {
    display: block;
    padding: 0 10px;
	color: #fff;
	line-height: 35px;
	text-decoration: none;
	transition: 0.3s;
}
.nav-holder .menu > li > a:hover, .nav-holder .menu > li.active > a { background-color: #fff; color: #0594ae;}


/* ==========================================================================
   Eyecatcher
   ========================================================================== */

.eyecatcher { margin-bottom: 1px;}
.eyecatcher .slides li {
    min-height: 350px;
    overflow: hidden;
}
.eyecatcher .slides li img {
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
}

/* caption */
.eyecatcher .slides .caption {
    position: absolute;
    left: 0;
    right: 0;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 100%;
    background-color: rgba(255,255,255,0.80);
    text-align: center;
    text-transform: uppercase;
}
.eyecatcher .slides .caption .line-1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 120%;
}
.eyecatcher .slides .caption .line-2 {
    margin: 10px;
    color: #000;
}

/* quick-share */
.eyecatcher .slides .quick-share {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    transition: 0.5s;
}
.eyecatcher:hover .slides .quick-share { opacity: 1;}
.eyecatcher .slides .quick-share a {
    float: left;
    display: block;
    width: 50px;
    height: 50px;
    margin-left: 1px;
    padding-top: 5px;
    background-color: #4b3c30;
    color: #fff;
    text-align: center;
    text-transform: lowercase;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}
.eyecatcher .slides .quick-share a i { font-size: 24px;}
.eyecatcher .slides .quick-share a[title="Download"] { display: none;}
.eyecatcher .slides .quick-share a span { display: block; font-size: 10px;}
.eyecatcher .slides .quick-share a:hover { background-color: #0594ae;}


/* ==========================================================================
   Hero-bar
   ========================================================================== */

.hero-bar {
    display: block;
    padding: 10px;
    background-color: #0594ae;
    color: #fff;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
}
.hero-bar:hover { color: #fff; text-shadow: 0 0 3px rgba(75,60,48,1.0);}


/* ==========================================================================
   Highlights
   ========================================================================== */

.highlights { margin-bottom: 60px;}
.highlights .item {
    position: relative;
    display: block;
    height: 40vh;
    min-height: 120px;
    margin-top: 20px;
}
.highlights .item .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 120px;
    background-color: rgba(255,255,255,0.8);
    padding: 10px;
}
.highlights .item .overlay .go {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #0594ae;
}
.highlights .item .overlay .go .fa { font-size: 30px;}
.highlights .item .overlay .title {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}


/* ==========================================================================
   Main
   ========================================================================== */

.main { margin-bottom: 40px;}


/* ==========================================================================
   Content
   ========================================================================== */

.content {
    color: #000;
    font-family: 'Roboto', sans-serif;
}
.content h1 {
    margin-bottom: 20px;
    font-size: 24px; 
    text-transform: uppercase;
}
.content h2 { font-size: 20px; margin-bottom: 14px;}
.content h3 { font-size: 16px; margin-bottom: 5px;}
.content img, .content iframe { border: none;}

/* left/right */
.content-left { float: left; width: 45%;}
.content-right { float: right; width: 45%;}

/* Introduction
   ========================================================================== */
.content.introduction {
    margin: 40px 20% 20px 20%;
    text-align: center;
}

/* Custom-table
   ========================================================================== */
.content .custom-table {
	table-layout: fixed;
	width: 100%;
}
.content .custom-table tr th,
.content .custom-table tr td {
	padding: 10px;
	border-bottom: 1px solid #4D442E;

	text-align: left;
	word-wrap: break-word;
}

.content .custom-table tr th,
.content .custom-table tr:first-child td {
	border-bottom: 1px solid #0594ae;

	text-align: left;
	color: #0594ae;
}
.content .custom-table tr:last-child td { border-bottom: none; }


/* ==========================================================================
   Title-divider
   ========================================================================== */

.title-divider {
    z-index: 1;
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}
.title-divider:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 49.5%;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid #dddad8;
    font-size: 0;
    overflow: hidden;
}
.title-divider span {
    display: inline-block;
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #f1f0ef;
    color: #a4a4a3;
    font-size: 18px;
    text-transform: uppercase;
}


/* ==========================================================================
   News
   ========================================================================== */

.news .item {
    float: left;
    display: block;
    width: 300px;
    margin: 0 20px 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #dddad8;
}
.news .item .image { transition: opacity 0.5s;}
.news .item:hover .image { opacity: 0.9;}
.news .item .description .title {
    margin: 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.news .item .description .date { color: #0594ae; font-size: 14px; font-family: 'Oswald', sans-serif;}
.news .item .description .date .fa { color: #4b3c30;}


/* ==========================================================================
   Filter-bar
   ========================================================================== */

.filter-bar {
    min-height: 35px;
    margin-bottom: 20px;
    line-height: 33px;
    border: 1px solid #4b3c30;
}
.filter-bar .control-group {
    float: left;
    border-right: 1px solid #4b3c30;
}
.filter-bar .control-group:last-child { border-right: none;}
.filter-bar .control-group select {
    width: 180px;
    height: 33px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #4b3c30;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    vertical-align: inherit;
}
.filter-bar .control-group button[type=submit] {
    margin-left: 5px;
    line-height: normal;
    border: none;
    background: none;
    text-transform: uppercase;
}
.filter-bar .control-group button[type=submit]:hover { color: #0594ae;}


/* ==========================================================================
   Shop-categories-overview
   ========================================================================== */

.shop-categories-overview { margin-bottom: 20px;}
.shop-categories-overview .item {
    position: relative;
    display: block;
    height: 40vh;
    min-height: 120px;
    margin-bottom: 20px;
}
.shop-categories-overview .item .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background-color: rgba(255,255,255,0.8);
    padding: 10px;
    text-transform: uppercase;
}
.shop-categories-overview .item .overlay .go {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #0594ae;
}
.shop-categories-overview .item .overlay .go .fa { font-size: 30px;}
.shop-categories-overview .item .overlay .title {
    font-size: 24px;
    font-weight: 700;
}


/* ==========================================================================
   Dealer-locator
   ========================================================================== */

.dealer-locator .simple-search { margin-top: 40px;}
.dealer-locator .simple-search h2 { text-transform: uppercase;}


/* ==========================================================================
   Dealer-locator-introduction
   ========================================================================== */

.dealer-locator-introduction { margin-top: 60px;}
.dealer-locator-introduction .image {
    display: inline-block;
    margin-bottom: 10px;
}


/* stores detail */
.dealer-locator {}
.dealer-locator .stores {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 1px 0 1px #ccc;
    margin: 10px 0;
    padding: 10px;
}

.map_canvas {
    border: 1px solid #a19369;
    float: right;
    height: 500px;
    width: 100%;
}

.counter {
    border-top: 1px solid #a19369;
    height: 100%;
    margin: 25px 0 0;
    overflow: auto;
    padding: 25px 0 0;
    width: auto;
    text-align: center;
}
.counter p {
    background: #d7cfbe none repeat scroll 0 0;
    border: 1px solid #b0a285;
    margin: 0 0 15px;
    padding: 5px;
    text-align: center;
    width: 300px;
}

.counter .block {
    display: table;
    float: none;
    margin: 0 auto;
}

.counter .adp, .counter .adp table {
    display: block;
    text-align: center;
    width: 300px;
}
.counter tbody {
    display: block;
    text-align: center;
    width: 300px;
}
.counter tr {
    display: block;
    text-align: center;
    width: 100%;
}
.counter td {
    display: block;
    text-align: center;
    width: 100%;
}
.counter .btn, .counter input {
    width: 100%;
}

/* ==========================================================================
   Social-share
   ========================================================================== */

.social-share {
    margin: 60px 0;
    text-align: center;
}
.social-share ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.social-share ul li {
    float: left;
    margin: 0 10px;
}
.social-share ul li a { color: #0594ae;}
.social-share ul li a:hover { color: #4b3c30;}
.social-share ul li a .fa { font-size: 36px;}


/* ==========================================================================
   Advanced-search
   ========================================================================== */

.advanced-search .col {
    float: left;
    width: 300px;
    margin: 0 20px 20px 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #4b3c30;
}
.advanced-search .col h3 {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9e968f;
    font-size: 16px;
}
.advanced-search .col .colors .color {
    float: left;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
	position: relative;
    padding: 40px 30px 30px 30px;
    background-color: #4b3c30;
}

/* Latest-news
   ========================================================================== */
.footer .latest-news { margin-bottom: 60px;}
.footer .latest-news .item {
    display: block;
    margin-top: 20px;
    border: 1px solid #f1f0ef;
    background-color: #f1f0ef;
    overflow: hidden;
}
.footer .latest-news .item .image { transition: opacity 0.5s;}
.footer .latest-news .item:hover .image { opacity: 0.9;}
.footer .latest-news .item .description {
    position: relative;
    height: 120px;
    padding: 10px;
}
.footer .latest-news .item .description .title { font-weight: 700; text-transform: uppercase;}
.footer .latest-news .item .description .date {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #0594ae;
}
.footer .latest-news .item .description .date .fa { color: #4b3c30;}

/* Ending
   ========================================================================== */
.footer .ending {
    padding-top: 10px;
    border-top: 1px solid #9e968f;
    color: #9e968f;
}
.footer .ending a { color: #9e968f;}
.footer .ending a:hover { color: #fff;}
.footer .ending .copyright { float: left;}
.footer .ending .sitelinks { float: right;}


/* ==========================================================================
   Contact-form
   ========================================================================== */

.contact-form table { width: 100%;}
.contact-form table tr td { padding-bottom: 3px;}
.contact-form small { color: #f00;}


/* ==========================================================================
   Images
   ========================================================================== */
 
.image img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* ==========================================================================
   CSS3 transition
   ========================================================================== */

a, .btn { transition: 0.5s;}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-block;
	padding: 4px 30px;
	border-radius: 0;
	background-color: transparent;
    border: 1px solid #0594ae;
	color: #0594ae;
    font-weight: 700;
	line-height: 20px;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
	cursor: pointer;
}
.btn:hover { background-color: #0594ae; color: #fff;}

.btn-block {
	display: block;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/* icon */
.btn .fa {
    display: block;
    float: left;
    margin-right: 5px;
    line-height: 20px;
}
header .btn.webshop {
    padding: 4px 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
header .btn.webshop .fa {
    float: right;
    margin-right: 0;
    margin-left: 10px;
}

/* Size
   ========================================================================== */
.btn-large { padding: 6px 14px; font-size: 15px;}
.btn-small { padding: 2px 8px; font-size: 12px;}
.btn-mini { padding: 0 6px; font-size: 11px;}


/* ==========================================================================
   Forms
   ========================================================================== */

.form-horizontal .form-group label {
	display: inline-block;
	margin-right: 20px;
    margin-bottom: 0;
}
.form-group {
	margin-bottom: 10px;
}
label {
    display: block;
    margin-bottom: 5px;
}
select,
textarea,
input[type="text"],
input[type="password"] {
	display: inline-block;
	height: 30px;
	padding: 0 10px;
	vertical-align: middle;
	color: #595959;
	line-height: 20px;
}
input,
select,
textarea {
	width: 220px;
}
select,
textarea,
input[type="text"],
input[type="password"] {
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
select.invalid,
textarea.invalid,
input[type="text"].invalid,
input[type="password"].invalid {
	border: 1px solid #d44950;
}
select.invalid:focus,
textarea.invalid:focus,
input[type="text"].invalid:focus,
input[type="password"].invalid:focus {
	border: 1px solid #d44950;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d44950;
}
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus {
	border-color: rgba(82, 168, 236, 0.8);
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
	width: auto;
}
select[multiple],
select[size],
textarea {
	height: auto;
}
select,
input[type="radio"],
input[type="checkbox"] {
	cursor: pointer;
}

/* Size
   ========================================================================== */	
.input-mini { width: 50px;}
.input-small { width: 110px;}
.input-medium { width: 170px;}
.input-large { width: 260px;}


/* ==========================================================================
   Alerts
   ========================================================================== */

.alert {
	margin-bottom: 20px;
	padding: 15px;
	background-color: #fcf8e3;
	border: 1px solid #faebcc;
	border-radius: 4px;
	color: #8a6d3b;
}
.alert-error {
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}
.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d;
}
.alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

.pull-left { float: left;}
.pull-right { float: right;}

.text-left { text-align: left;}
.text-right { text-align: right;}
.text-center { text-align: center;}

.vertical-align {
	position: relative;
	top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


/* ==========================================================================
   Clearing
   ========================================================================== */

.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.clear:before,
.clear:after,
.clearfix:before,
.clearfix:after {
	display: table;
	content: " ";
}
.container:after,
.container-fluid:after,
.row:after,
.clear:after,
.clearfix:after {
	clear: both;
}


/* ==========================================================================
   Grid system
   ========================================================================== */

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
	position: relative;
	min-height: 1px;
	padding-left: 10px;
	padding-right: 10px;
}
@media (min-width: 768px) {
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { float: left;}
	.col-12 { width: 100%;}
	.col-11 { width: 91.66666667%;}
	.col-10 { width: 83.33333333%;}
	.col-9 { width: 75%;}
	.col-8 { width: 66.66666667%;}
	.col-7 { width: 58.33333333%;}
	.col-6 { width: 50%;}
	.col-5 { width: 41.66666667%;}
	.col-4 { width: 33.33333333%;}
	.col-3 { width: 25%;}
	.col-2 { width: 16.66666667%;}
	.col-1 { width: 8.33333333%;}
}


/* ==========================================================================
   Responsive utility classes
   ========================================================================== */

.visible-phone { display: none !important;}
.visible-tablet { display: none !important;}
.hidden-desktop { display: none !important;}

@media (min-width: 768px) and (max-width: 979px) {
	.hidden-desktop { display: inherit !important;}
	.visible-desktop { display: none !important;}
	.visible-tablet { display: inherit !important;}
	.hidden-tablet { display: none !important;}
}
@media (max-width: 767px) {
	.hidden-desktop { display: inherit !important;}
	.visible-desktop { display: none !important;}
	.visible-phone { display: inherit !important;}
	.hidden-phone { display: none !important;}
}


/* ==========================================================================
   FlexSlider
   ========================================================================== */

.slides, .flex-control-nav, .flex-direction-nav { margin: 0; padding: 0; list-style: none;}
.slides > li { display: none; -webkit-backface-visibility: hidden;}
.slides img { width: 100%; display: block;}

.slides:after { content: "\0020"; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides { display: block;}
* html .slides { height: 1%;}
.no-js .slides > li:first-child { display: block;}