/*
Theme Name: Flat Bootstrap
Theme URI: http://xtremelysocial.com/wordpress/flat/
Author: XtremelySocial
Author URI: http://xtremelysocial.com
Description: Flat Bootstrap by XtremelySocial is a modern, fully responsive, "flat" style theme with a nice color palette, big full-width images, and full-width colored sections. It automatically adapts for desktops, tablets, and phones. It is based on the WordPress standard starter theme (_S) and the Twitter Bootstrap CSS framework. Features include a mobile navigation bar, multiple columns (grid), buttons, icons, labels, badges, tabbed content areas, collapsible content areas, progress bars, alert boxes, carousels (sliders) and much, much more. This is a theme for both users and theme developers with lots of features but without the bloat. For a live demo go to http://xtremelysocial.com/wordpress/flat/. PLEASE NOTE: Version 1.9 has had a major "spring cleaning" of the functions, templates, and CSS. Please be sure to test it out on your site.
Version: 1.9
License: GNU General Public License
License URI: http://www.opensource.org/licenses/GPL-3.0
Text Domain: flat-bootstrap
Domain Path: /languages/
Tags: one-column, right-sidebar, left-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, featured-images, featured-image-header, full-width-template, flexible-header, theme-options, sticky-post, threaded-comments, light, translation-ready, rtl-language-support, custom-background

Flat Bootstrap WordPress theme, Copyright (C) 2014 XtremelySocial
Flat Bootstrap WordPress theme is licensed under the GPL.
See readme.txt file for license information on components used in this theme.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms and Buttons
# Navigation
	## Links
	## Menus
# Content
	## Header
	## Footer
	## Posts and pages
	## Comments
# Media
	## Captions and Galleries
# Widgets & Plugins
	## Widgets
	## Plugins

--------------------------------------------------------------*/

/*
 * Note that most styles are handled already in our custom bootstrap.css, theme-base.css,
 * and theme-flat.css files.
 *
 * We have put comments next to some of the styles to show what our custom bootstrap.css
 * defaults to in case we (or anyone) wants to put these into custom bootstrap.css
 * instead.
 */

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
/*
 * The cool thing about Lato and Raleway fonts is that they look great at light (300) and
 * regular (500) font weight. So we only use bold (700) sparingly.
 */
body {
	font-family: Arial;
	font-weight: 300; /*Bootstrap is 500;*/
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Arial; /*"Helvetica Neue", Helvetica, Arial, sans-serif;*/
}

/* Lighten the h1-h3 headings so you can use <b> tags to have certain words stand out */
h1,
h2,
h3 {
	font-weight: 300; /*BS is 500 for h1-h6, including .h1-.h6*/
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

/* Increase font size on article "lead" (usually for an "intro" paragraph */
.lead {
	font-size: 22px; /*18px, but goes to 24px @768 browser width */
}

/* Style code tag like pre tag */
code {
	/*color: #2f2f2f;
    background-color: #f5f5f5; Moved to bootstrap.css*/
	border: 1px solid #ccc;
}

/* Remove a bit of margin since Bootstrap h1-h3 tags already have 22px top margin */
hr {
	margin: 16px 0; /*22px 0;*/
}

/*
 * Override margins on jumbotron in case someone uses it like a colored "section" from
 * this theme. Note: Moved here from theme-base.css.
 */
.jumbotron {
	margin-bottom: 0;
}

/*
 * Set block quote footer (author) to larger font size. BS quote is 20px, but footer
 * is only 14px for some reason.
 */
blockquote footer {
	font-size: 18px;
}

/* Color the collapsible panel hover color to match the link hover color */
.panel-title>a:hover,
.panel-title>small:hover,
.panel-title>.small:hover,
.panel-title>small>a:hover,
.panel-title>.small>a:hover {
	color: #19b798;
}

/*--------------------------------------------------------------
# Forms and Buttons
--------------------------------------------------------------*/

/* Tone down field labels on forms, comments section, etc. */
label {
	font-weight: 500;
}

/* Match the default font color */
.form-control {
	color: #555;
	border-radius: 0;
	margin: 15px 0;
}

/*
 * Generically set input buttons to look like Bootstrap, but set colors below that to make
 * it easier for users to override. Match Bootstrap btn-primary styles.
 */
button,
html input[type="button"],
input[type="submit"] {
	background-image: none;
	font-size: 16px;
	line-height: 22px;
	padding: 6px 12px;
	border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	outline: 0;
}
button:hover,
button:focus,
html input[type="button"]:hover,
html input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	outline: 0;
}

/* Set colors for input buttons (Search, Reply). Change these in your child theme. */
button,
html input[type="button"],
input[type="submit"] {
	color: #fff;
	background-color: #a30000;
	border-color: #a30000;
}
button:hover,
button:focus,
html input[type="button"]:hover,
html input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	color: #fff;
	background-color: #a30000;
	border-color: #a30000;
}

/* Bootstrap uses "active" style on the <li>, but WordPress paginate_links() uses
 * "current" in a <span> tag on the link. Also set the hover to match the primary button
 * color.
 */
.pagination>li>a,
.pagination>li>span,
span.page-numbers.current {
	color: #a30000;
}
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus,
span.page-numbers.current {
	z-index: 2;
	color: #fff;
	background-color: #a30000;
	border-color: #a30000;
}

/* Force search field to not be rounded on iOS devices */
input.search-field {
	-webkit-appearance: none !important;
	-webkit-border-radius: 0 !important;
	-moz-border-radius: 0 !important;
	border-radius: 0 !important;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

/*
 * Generically style the links here. Set colors below to make it easier for users to
 * override.
 */
a {
	word-wrap: break-word;

	-webkit-transition: color .1s ease-in, background .1s ease-in;
	-moz-transition: color .1s ease-in, background .1s ease-in;
	-ms-transition: color .1s ease-in, background .1s ease-in;
	-o-transition: color .1s ease-in, background .1s ease-in;
	transition: color .1s ease-in, background .1s ease-in;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: 0;
}
a:before,
a:after,
a:hover i:before,
a:focus i:before {
	-webkit-transition: color .1s ease-in, background .1s ease-in;
	-moz-transition: color .1s ease-in, background .1s ease-in;
	-ms-transition: color .1s ease-in, background .1s ease-in;
	-o-transition: color .1s ease-in, background .1s ease-in;
	transition: color .1s ease-in, background .1s ease-in;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

/* Since we lightened the body font, make the site title regular font weight */
.navbar-brand {
	font-weight: 500;
	/*height: 50px; BS already 50px*/ /* Fixes layout if nav bar wraps before collapsing for mobile */
}

/*
 * Line up the navbar with the header and page content (it's in a container, but not a
 * row)
 */
div.navbar-collapse.collapse {
	margin-left: -15px;
	margin-right: -15px;
	float: right;
	background: #FFC001;
}

/* Since we lightened the body font, increase font weight on active tab */
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
	color: inherit;
	font-weight: 500;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

/* Set content (page title) header to midnight blue */
.content-header {
	background-color: #2f2f2f;
	color: #fff;
}
.content-header h1,
.content-header h2,
.content-header h3 {
	color: #fff;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/

/* Set our footer to "almost" black */
.sidebar-footer {
	background-color: #2f2f2f;
	color: white;
}

.sidebar-footer h1,
.sidebar-footer h2,
.sidebar-footer h3 {
	color: #fff;
}

/* Set our "after footer" (footer nav menu and site credits) to "not quite" black */
.after-footer {
	background: #222222;
	color: white;
	font-size: 16px;
}

/* Set link colors to off white and text to gray for footer and after footer */
.sidebar-footer,
	/*.after-footer {*/
.footer-nav-menu {
	color: #95a5a6;
}
.nav>li{
	padding-left: 10px;
	padding-right: 10px;
}
.sidebar-footer a:not(.btn),
.footer-nav-menu a:not(.btn) {
	/*.after-footer a:not(.btn) {*/
	color: #ddd;
	font-weight: 500;
	font-family: Arial;
	font-size: 15px;
}
.sidebar-footer a:hover:not(.btn),
.sidebar-footer a:focus:not(.btn),
.footer-nav-menu a:hover:not(.btn),
.footer-nav-menu a:focus:not(.btn) {
	/*.after-footer a:hover:not(.btn),
    .after-footer a:focus:not(.btn) {*/
	color: #3bc492;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

/* Reduce the size of post entry meta (date, author) */
.entry-meta {
	font-size: 16px;
}

/* Color "sticky" (featured) posts */
.sticky .entry-title:after {
	background-color: #a30000;
	color: #fff;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

/* Reduce the size of comment edit link */
.comment-edit-link {
	font-size: 16px;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/*--------------------------------------------------------------
## Captions and Galleries
--------------------------------------------------------------*/

/* Color and style the Bootstrap carousel captions */
.carousel-caption,
.carousel-caption h4,
.carousel-caption p {
	font-weight: bold;
}
.carousel-caption {
	text-shadow: none;
	background-color: #a30000;
	color: #fff;
	opacity: .75;
	font-weight: bold;
}
.carousel-caption a {
	color: #fff;
	text-decoration: underline;
}
.carousel-caption a:hover,
.carousel-caption a:focus {
	color: #bdc3c7; /*silver*/
}

/*--------------------------------------------------------------
# Widgets and Plugins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Widgets
--------------------------------------------------------------*/

/* Get Jetpack Popular Posts Widget to look like other thumbnail posts */
.widgets-list-layout-links {
	float: left !important;
	margin-left: 15px !important;
	/*margin-left: 1.625em !important;*/
}

/*--------------------------------------------------------------
## Plugins
--------------------------------------------------------------*/

/* Format Jetpack contact form with Bootstrap's form-control tag. */
form.contact-form input[type='text'],
form.contact-form input[type='email'],
form.contact-form textarea {
	display: block;
	width: 98%;
	height: 36px;
	padding: 6px 12px;
	font-size: 16px;
	line-height: 1.428571429;
	color: #a1a1a1;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}
form.contact-form input[type='text']:focus,
form.contact-form input[type='email']:focus,
form.contact-form textarea:focus {
	color: #555;
}

/*Custom CSS*/

body.custom-background {
	padding:0 5% 0 5%;
}
.wpb_single_image img{
	min-height: auto;
}

.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	color: #990000;
	background-color: transparent;
	border-color: #990000;
	border-radius: 2px;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav >a:hover {
	color: black;
	/* background-color: transparent; */
	font-weight: 600;
	border-bottom: 2px solid #087241;
	background: #FFC001;
}

.buttons_list{
	float: right;
	margin-top: 20px;
	margin-bottom: 20px;
}
.filters_right{
	border: 1px solid #ddd;
	float: none;
	min-height: 260px;
	padding-top: 20px;
	overflow: hidden;
	padding-bottom: 20px;
}

a {
	color: mediumblue;
	text-decoration: none;
}

.readmore_link{
	font-size: 14px;
	text-decoration: underline;
}
.business_item_list h2{
	text-transform: capitalize;
}
.businessforsale_detail{
	margin-top: 30px;
}

.posted_date{
	margin-top: 20px;
}

.wpb_singleimage_heading{
	font-size: 28px;
}
.modal-footer{
	overflow: hidden;
}

#page, .navbar, .after-footer {
	max-width: 1200px;
	margin: 0 auto;
}




.navbar-brand {
	float: left;
	padding: 5px !important;
	font-size: 20px;
	line-height: 22px;
	height: 50px;
}
.navbar-brand>img {
	display: block;
	height: 33px;
}

.txtcenter .vc_column-inner{
	padding-top:0 !important;
}

.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid>li {
	margin-bottom: 0px !important;
	padding: 0 0px;
}


.post_item
{
	overflow: hidden;
	width:100%;
	height:auto;
	display:inline-block;
	vertical-align: top;
	margin:5px;
	/* border-bottom: 1px #ccc solid; */
	/* min-height:250px; */
	background: #f7f7f9;
	margin-bottom: 15px;
	padding-top: 15px;
}
.heading a
{
	color: #444451 !important;
	font-weight:bold;
}
.post_item a{
	color:#000;
}
.post_item p{
	text-align: justify;
}
.full_width_image img
{
	width:100%;
	height:auto;
}


.full_width_image.wpb_single_image .vc_figure {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	max-width: 100%;
	width: 100% !important;
}
.full_width_image.wpb_single_image .vc_single_image-wrapper {
	display: inline-block;
	vertical-align: top;
	width: 100% !important;
}
a{
	color:#000;
}


ul {
	list-style-image: url('favicon.png') !important;
}



button {
	color: #fff;
	background-color: #148f77;
	border-color: #13866f;
}


.current-menu-item
{
	background: transparent;
}





a:hover
{
	color: black !important;
}
select[multiple], select[size] {
	height: auto;
	min-height: 100px;
	overflow: auto;
}

ul.nav.nav-tabs {
	border: none;
	background: #f7f7f7;
	margin-bottom: 15px;
}

.nav-tabs>li.active a, .nav-tabs>li a:hover, .nav-tabs>li.active a:hover, .nav-tabs>li.active a:active, .nav-tabs>li.active a:focus {border: none;border-bottom: 3px #900 solid;color: #900 !important;font-weight: 600;background: transparent;}

.nav-tabs>li a {
	font-weight: 600;
	color: #818181;
	border: none;
	border-bottom: 3px transparent solid;
}



.business_item_list
{
	border:2px transparent solid;
	cursor: pointer;
	/* padding-top: 10px; */
	/* padding-bottom: 10px; */
	font-size: 15px;
}
.business_item_list:hover
{
	border:2px #990000 solid;
	cursor: pointer;
}

.post_item .col-md-4 img
{
	width:100%;
	height:100%;
	margin:-15px;
	min-height: 180px;
}

.vc_custom_heading {
	/* padding-left:20px; */
	color: #980001;
	font-size: 27px;
	text-align: center !important;
	font-weight: 600 !important;
	font-family: Arial !important;
}
.agree
{
	width:600px;
	height: 202px;
	position:fixed;
	top:5%;
	bottom:0;
	right:0;
	left:25%;
	z-index:9999999999999;
	background:#fff;
}

.agreeoverlay {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0,0,0,0.7);
	z-index: 99999;
}

.note_text{
	font-size: 13px;
	color: black;
	text-decoration: underline;
}

.navbar-default {
    background-color: #FFC001;
    border-color: #FFC001;
    height: 70px;
    padding-top: 10px;
}

.navbar-default .navbar-nav>li>a {
    color: black;
    padding-bottom: 5px;
    font-weight: bold;
    padding-left: 0;
    padding-right: 0;
}
.headings_custom:after{
    background: transparent !important;
}

.module_img{
	margin-left: 0;
	margin-right: 0;
	background: #9A0000;
}

.wpb_single_image.module_img .vc_figure{
	display: block !important;
}
.module_img .vc_single_image-wrapper{
	display: block !important;
    border-top: 8px solid #FFC001;
}
.module_img img{
	text-align: center;
    margin: 0 auto;
    display: block;
}
.module_img.last{
	    margin-right: 15px;
    	margin-left: -15px;
}
.module_desc{
	    background: #9A0000;
}

.module_desc.last{
	margin-left: -15px;
    margin-right: 15px;
}

.module_desc p{
	text-align: center;
	color: white;
	font-size: 22px;
	margin-top: -15px;
	padding-bottom: 15px;
	font-weight: 600;
	padding-top: 10px;
}

.module_btn{
	background: #9A0000;
    width: 100%;
}

.module_btn button{
	margin: 0 auto !important;
    display: block !important;
    background: #9A0000 !important;
    color: white !important;
    border: 2px solid white !important;
    border-radius: 0 !important;
    width: 80%;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    font-size: 19px !important;
}
.module_btn.last{
	margin-left:-15px;
    margin-right: 15px;
}

.finonline_desc{
	 padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 30px !important;	
}

.finonline_desc{
	text-transform: inherit;
    font-size: 22px;
    color: #000;
}
.gray_bg{
	background:#F5F5F5;
	padding-top: 15px;
    padding-bottom: 0;
    margin-bottom: 30px;
}
.useful_links_header.first{
	margin-top: 20px;
	margin-bottom: 25px;
	margin-left: 0px;
    margin-right: 10px;
}
.vc_row.wpb_row.vc_row-fluid.useful_links_header.mpc-row
{
	margin-left: 0;
    margin-right: 10px;
}
.useful_links_header .wpb_single_image .vc_figure{
	display: block !important;
}

.useful_links_header .wpb_single_image .vc_single_image-wrapper{
	display: block !important;
	border: 1px solid #ddd;
	padding: 0px;
	height: 80px;
}
.useful_links_header img{
	margin: 0 auto;
	display: block;
}
.useful_links_header {
	 margin-left: 4px;
    margin-right: 2px;
}

.useful_links_header .vc_column-inner {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.useful_links_header .wpb_column{
	padding-left: 10px;
}

.module_btn .vc_btn3-style-flat{
	margin: 0 auto !important;
    display: block !important;
    background: #9A0000 !important;
    color: white !important;
    border: 2px solid white !important;
    border-radius: 0 !important;
    width: 80%;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    font-size: 19px !important;

}

@media (max-width:768px){
div.navbar-collapse.collapse {
    float: none;
    background: #FFC001;
}	
.useful_links_header img {
    width: 300px;
    margin-bottom: 10px;
}
.vc_column-inner.vc_custom_1497955959444{
	margin-left: 0 !important;
}
}

.list-inline>li {
    display: inline-block;
    padding-left: 0px;
    padding-right: 6px;
}

#main{
	 min-height: 100%;
}

div.wpcf7 {
    margin: 40px;
    padding: 0;
}

.business_item_list img {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.businessforsale_detail h4{
	font-size: 17px;
}

.businessforsale_detail p {
	font-size: 15px;
}

.businessforcard_detail h4{
	font-size: 17px;
}

.businessforcard_detail p {
	font-size: 15px;
}

.business_item_list h3{
	    font-size: 21px;
}
.searchbar-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
    position: absolute;
    left: 0;
    top: 45%;
    transform: translateY(-50%);
    width: 100%;
    right: 0;
}
.searchbar-container .address-error {
    text-align: right;
    color: #b54544;
    background: #eacccc;
    display: table;
    font-weight: bold;
    font-size: 12px;
    top: -43px;
    transform: translateX(-47%);
    left: 53%;
    border-radius: 5px;
    position: absolute;
    margin-top: 10px;
    padding: 5px 10px;
}
.searchbar {
    display: flex;
    min-width: 100%;
    width: 100%;
}

.searchbar-dropdown {
    padding: 0 11px;
    background: #fff;
    border-radius: 4px 0 0 4px;
    display: block;
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.searchbar-dropdown::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background-color: #ccc;
}

.searchbar-dropdown label {
    margin: 0;
    font-weight: 600;
}
.searchbar-locations label{
	margin: 0;
    font-weight: 600;
}
.searchbar-dropdown select {
    margin: 0 !important;
    border: 0;
    box-shadow: none;
    padding: 0;
    height: 100%;
    color: #c9c8c8;
    margin-left: 15px !important;
}

.searchbar-dropdown select:focus {
    box-shadow: none;
}

.searchbar-locations {
    width: 46%;
    display: flex;
    justify-content: center;
    align-items: center;
	height: 50px;
    padding: 0 11px;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #fff;
}

.searchbar-locations input {
    margin: 0;
    border: 0;
    box-shadow: none;
	height: 100%;
    margin-left: 15px;
    padding: 0 !important;
}

.searchbar-locations input:focus {
    box-shadow: none;
}

.searchbar-btn {
    border-radius: 0 4px 4px 0;
    border: 0;
    background: #d32323;
    padding: 14px 20px 13px;
    box-shadow: none;
    width: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchbar-btn button {
    background: transparent;
    margin: 0;
    padding: 0;
    box-shadow: none;
}
.alert-wait{
	padding: 10px;
    background-color: #f1bf10;
    font-style: italic;
    color: #fff;
    font-size: 14px;
}