/*
Theme Name: Direct
Theme URI: http://themewoop.com/themes/direct
Author: kidesigner
Author URI: http://themewoop.com/
Description: Wordpress Directory Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: direct
Tags: green

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Direct is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
5.0 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
13. Custom CSS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.0 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

/* Small menu. */
.menu-toggle {
	display: none;
}

@media screen and (max-width: 600px) {
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/* Search widget. */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

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

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
13. Custom CSS
--------------------------------------------------------------*/
/* Contact box */
.popup-contact {
	position: fixed;
    width: 246px; 
    top: 30vh;
    right: 33px;
    z-index: 4;
    color: #fff;
    background-color: #e54553;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px 12px 0 0;
    border-radius: 12px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
	transition: all 0.5s;
	transform: rotate(270deg);
	transform-origin: center right;
}

.popup-contact a { color: #fff; }
.popup-contact a:hover { color: #22393d; }
.popup-mail {
    width: 20%;
    font-size: 28px;
    color: #fff;
    float: left;
    padding-left: 15px;
    margin-top: 13px;
}
.popup-text {
    width: 80%;
    float: left;
    text-align: right;
    padding-right: 15px;
    margin: 10px 0;
}
.popup-text h3 {
	margin: 0;
}

/*slider*/
.container-slider h1{
	font-weight: bold !important;
}

.container-slider h1 span{
	font-size: 60px;
    font-family: 'Noto Sans', sans-serif;
}
/*cities section*/
.description-txt{
	font-size: 12px !important;
}	
/*offers section*/
.pricing-box ul li{
	padding: 8px !important;
}
/*forumaire de contact*/
.wrap-direct-page{
	padding: 30px !important;
}
.radio-inline > input{
	margin-top: 7px !important;
}

/*menu*/
nav{
	background: white;
    margin: 0px !important;
    width: 100% !important;
    position: fixed;
    z-index: 999;
       box-shadow: 0px 2px 6px 0px rgba(65, 65, 65, 0.2);
}

/*.pull-right{
	margin-right: 20px !important;
}
*/
@media screen and (max-width: 767px){
	#navbar{
		padding-left: 0px !important;
		background: white;
		   box-shadow: 0px 2px 6px 0px rgba(65, 65, 65, 0.2);
	}

	#menu-main{
		padding: 10px;
	    width: 100%;
	}

	#navbar li{
		text-align: center;
	}

	#navbar .nav li a{
		height: 40px !important;
		line-height: 40px !important;
	}

	.search-handle > a{
		margin-left: 0px !important;	
	}
}

.navbar-brand{
	padding-top: 15px !important;
}

@media screen and (min-width: 1025px)  and (max-width: 1199px){
	#navbar .nav li a{
		padding: 0px 10px !important;
	}
}

@media screen and (max-width: 1024px) {
	.container-slider h1 span{
		font-size: 34px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.navbar-header img{
		width: 90px;
	}
	#navbar{
		padding-left: 120px !important;
	}
	nav.container, .navbar.container{
		width: 100% !important;
	}
}

@media screen and (min-width: 768px) and (max-width: 809px) {
	#navbar .nav li a{
		padding: 0px 9px !important;
		font-size: 13px !important;
	}

}

.copyright_ld{
	color: #859baa !important;
}

.copyright_ld:hover{
	color: #e54553 !important;
}

img[src="https://maps.gstatic.com/intl/en_us/mapfiles/iw_close.gif"]{
	right: 10px !important;
	top: 10px !important;
}

@media screen and (max-width: 991px) {
	#specs > div:nth-child(2) > div.col-md-4.text-center.mobile-show.wow.fadeInUp.animated > img{
		display: none;
	}

	.featured-section > div.container:nth-child(2) .featured-meta{
		text-align: left !important;
		width: 70% !important;
	}

	.featured-section > div.container:nth-child(2) .featured-icon{
		text-align: right !important;
		width: 30% !important;
	}

	#specs > div:nth-child(2) > div:nth-child(3) > div:nth-child(1) > div.featured-icon.pull-left.col-md-4, #specs > div:nth-child(2) > div:nth-child(3) > div:nth-child(2) > div.featured-icon.pull-left.col-md-4{
		float: right !important;
	}
}

@media screen and (max-width: 767px) {
	.directory-masonry > div{
		left: calc(50% - 146px) !important;
	} 
	/* Tailles typos */
	.site-title h2{
		font-size: 26px !important;
	}	

	.plan-section .pricing-box ul li{
		font-size: 14px !important;
	}

	.plan-section .pricing-box h6{
		font-size: 24px !important;
	}

	.plan-section .pricing-order{
		font-size: 24px !important;
	}

	.plan-section .pricing-order i{
		font-size: 18px !important;
	}

	.featured-section .featured-item .featured-meta p{
		font-size: 14px !important;
	}

	.site-title p{
		font-size: 14px !important;
		line-height: 18px !important;
	}

	.site-title span{
		margin: 15px auto 15px;
	}
	
	.footer-section > h3{
		font-size: 26px !important;
	}

	/* Espacement */
	.brands-section, .directory-section, .plan-section, .featured-section, .blogs-section{
		padding: 30px 0 30px !important;
	}

	.brands-section .site-title, .plan-section .site-title, .featured-section .site-title{
		margin-bottom: 0px !important;
	}

	.directory-section .site-title, .blogs-section .site-title{
		margin-bottom: 15px !important;
	}

	.brands-section h2+span, .directory-section h2+span, .plan-section h2+span, .featured-section h2+span, .blogs-section h2+span{
		margin-top: 15px !important
	}

	.directory-section .container{
		padding-right: 0px !important;
    	padding-left: 0px !important;
	}

	.directory-section .directory-filter li a{
		padding: 10px 10px !important;
	}

	.directory-section .directory-filter{
		padding-left: 0px !important;
		margin: 0 0 15px !important;
	}

	.directory-section .direct-category{
		width: 30px !important;
		height: 37px !important;
		background-size: 30px 37px !important;
		margin-bottom: 0px !important;
	}

	.directory-section .direct-item{
		padding-bottom: 0px !important;
		position: relative !important;
		height: 200px !important;
	}

	.directory-section .direct-item .direct-thumb{
		margin-bottom: -40px !important;
	}

	.directory-section .direct-item .wrap-direct-meta{
		position: absolute;
		width: 100%;
    	background: white;
    	bottom: 10px;
	}

	.directory-section .direct-item .wrap-direct-meta .label-bottom{
		margin: 5px auto 5px !important;
	}

	.directory-section .direct-item .wrap-direct-meta h3{
		line-height: 0.7 !important;
	}

	.directory-section .direct-item .wrap-direct-meta .direct-field{
		max-width: 100% !important;
		padding-bottom: 0px !important;
		margin-bottom: 0px !important;
	}

	.plan-section .pricing-box{
		margin-top: 20px !important;
	}

	.plan-section .pricing-box h6{
		padding: 15px 5px !important;
	}

	.plan-section .pricing-box h6 + p{
		margin-top: 15px !important;
		line-height: 48px !important;
	}

	.plan-section .pricing-box > span{
		margin-top: 0px !important;	
		margin-bottom: 0px !important;
	}

	.plan-section .pricing-box ul li{
		padding: 2px !important;
	}

	.plan-section .pricing-order{
		height: 58px !important;
		line-height: 58px !important;
		margin-top: 0px !important;
	}

	.plan-section .pricing-order i{
		width: 34px !important;
    	height: 34px !important;
    	line-height: 34px !important;
	}

	.featured-section .featured-item{
		margin-top: 0px !important;
	}

	.featured-section .featured-item .featured-meta p{
		line-height: 18px !important;
	}

	.featured-section h4{
		margin: 15px 0px !important;
		line-height: 24px !important;
	}

	.owl-carousel .owl-item img{
		margin: auto !important	;
	}

	.blogs-section .wrap-meta-blog h3{
		margin-top: 0px !important;
	}

	.blogs-section .wrap-meta-blog .blog-short-content{
		margin-bottom: 0px !important;
		line-height: 18px !important;
	}

	#footer{
		padding-top: 0px !important;
	}

	#footer .footer-section span{
		margin: 15px 0px !important;
	}

	#footer .footer-section-content p, #footer .footer-section-content ul li{
		line-height: 16px !important;
	}

	#footer .footer-section-content .footer-intouch{
		margin-top: 6px !important;
	}

	#footer .credits{
		margin-top: 0px !important;
	}

	.top-infowindow img{
		display: none;
	}

	img[src="https://maps.gstatic.com/intl/en_us/mapfiles/iw_close.gif"] + div{
		width: 230px !important;
	}

	.pull-right{
		float: left !important;
		margin-bottom: 20px !important;
	}

	.wrap-meta-infowindow .direct-field{
		margin-bottom: 0px !important;
	}
	.popup-contact {
		transform: none;
		border-radius: 12px 0 0 12px;
		right: -195px;
	}
	.popup-contact:hover {
		right: 0;
	}
}