/*
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: 'Montserrat', sans-serif;
    font-weight: 300; /*Bootstrap is 500;*/
    font-size: 18px; /*BS is 16px;*/
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
font-family: 'Shrikhand', cursive;
color: #1e1a4c;
}

/* 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*/
    letter-spacing: 2px;
}
h1 {
	font-size: 50px;
}

p {
	line-height: 30px;
	font-size: 18px;
	letter-spacing: 1px;
}

/*--------------------------------------------------------------
# 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;
}
#page, .navbar, .after-footer {
    max-width: 100%;
    margin: 0 auto;
}

/* 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: 300;
}

/* Match the default font color */
.form-control {
	color: #555;
}

/* 
 * 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: #c21b25;
    border-color: #c21b25;
}
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: #c21b25;
    border-color: #c21b25;
}

/* 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: #c21b25;
}
.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: #c21b25;
    border-color: #c21b25;
}

/* 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) 
 */


/* 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: #34495e;
	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;
}
.sidebar-footer a:not(.btn),
.footer-nav-menu a:not(.btn) {
/*.after-footer a:not(.btn) {*/
	color: #f2f2f2;
}
.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: #c21b25;
	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: #c21b25;
	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;
}


.moveup {
    position: absolute !important;
    top: 0;
    z-index: 10;
}

.moveit img {
   width: 100vw !important;
   height: auto !important;
}
.moveupyes {
	position: absolute;
	top: 0px;
	z-index: 999999;
}

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

.navbar-default {
    background-color: transparent;
    border-color: transparent;
    width: 100%;
    float: left;
}
.top-header {
	background-image: url('http://coopersbbqfortworth.com/wp-content/uploads/2017/09/metal-header.jpg');
	background-repeat: repeat-x; 
	padding-top: 15px;
	padding-bottom: 15px;
	background-position: center bottom;
}

.headtitles {
	color: #fff;
}

.menubackground {
	background-image: url('http://coopersbbqfortworth.com/wp-content/uploads/2017/09/metal-plank-2.jpg');
	background-repeat: repeat; 
	
}

.logo-floater {
	position: absolute;
	text-align: center;
    top: -64px;
}
.mobilelogo-floater {
	text-align: center;
}


.nav>li {
font-family: 'Montserrat', sans-serif;
font-weight: 900;
text-transform: uppercase;

}
.navbar-default .navbar-nav>li>a {
    color: #2a2b29;
}
.imagelogo {
	position: relative;
	z-index: 99999999;
}

.titleshead {
	float: left; margin-right: 20px;
	text-align: center;
	width: auto;
}
.titleshead a:link{
	color: #fff;
}
.titleshead a:active{
	color: #fff;
}
.titleshead a:visited{
	color: #fff;
}
.titleshead a:hover{
	color: #ee1c25;
}

.social {
    float: left;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.32);
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
 color: #fff;
    background-color: rgba(0, 0, 0, 0.32);
    }
    
    .footerback {
	    background-image: url("http://coopersbbqfortworth.com/wp-content/uploads/2017/09/footer-1.jpg");
	    background-position: center center;
	    background-size: cover;
	    padding-top: 35px;
	    padding-bottom: 35px;
	    
    }
    
    .footertopback {
	     background-image: url("http://coopersbbqfortworth.com/wp-content/uploads/2017/07/star-plank.png");
	    background-position: center center;
	    background-repeat: repeat-x;
	    height: 42px;
	    width: 100%;}

.footerone{
	text-align: center;
	margin-top: 45px;
	font-size: 22px;
	color: #fff;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 33px;
}
.footerone a:link {
	color: #fff;	
}

.footerone a:active  {
	color: #fff;	
}
.footerone a:hover {
	color: #ee1c25;
}
.footerone a:visited {
	color: #fff;	
}

.footerthree a:link {
	color: #fff;	
}

.footerthree a:active {
	color: #fff;	
}
.footerthree a:hover {
	color: #ee1c25;
}
.footerthree a:visited {
	color: #fff;	
}



.footertwo{
	text-align: center;
	
}
.footerthree{
margin-top: 45px;
	text-align: center;
	color: #fff;
}

.numberfoot {
	font-weight: 900;
	
}

.printtext {
	padding-left: 15px;
	padding-right: 15px;
}
.footershark {
	 background-image: url("http://coopersbbqfortworth.com/wp-content/uploads/2017/07/dustypaper-texture.jpg");
	    background-position: center center;
	    background-repeat: repeat;
	    border-top: solid 8px #301c12; 
}

.socialfoot{
	margin-bottom: 15px;
	margin-top: 15px;
}
.credits {
	text-align: center;
	font-size: 16px;
	margin-top: 20px;
		color: #301c12;	

}

.sitebysharkmatic{
	text-align: center;
	font-size: 14px;
	margin-top: 20px;
}

.sitebysharkmatic a:link {
	color: #301c12;	
}

.sitebysharkmatic a:active {
	color: #301c12;	
}
.sitebysharkmatic a:hover {
	color: #ee1c25;
}
.sitebysharkmatic a:visited {
	color: #301c12;	
}

.menumobile {
	background-image: url("http://coopersbbqfortworth.com/wp-content/uploads/2017/07/menumobile.png");
    background-position: center center;
    width: 106%;
    height: 44px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    left: -3%;
	    
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 0;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    background-color: transparent;
    background-image: none;
    border: none;
    border-radius: 0;
    width: 100%;
    height: 44px;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: transparent;
}

.navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 22px;
    text-align: center;
}
.menudivide {
	margin-bottom: 20px;
    border-bottom: dotted 4px rgb(171, 162, 155);
    padding-bottom: 20px;

        text-align: center;
}

.menudividea {
	margin-bottom: 20px;
    padding-bottom: 20px;

        text-align: center;
}

.menudivides {
	
      
        text-align: center;
            margin-top: 2px;
}

.headermenu {
	position: relative;
	top: -25px;
	text-align: center; 
}

.label-above .nf-field-label {
    margin-bottom: 0 !important;
        margin-top: 15px !important;
}
/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(max-width:767px){
.nav>li{
	font-size: 16px;
}
		.logo-floater{
	display: none;
}	
	.mobilelogo-floater{
	display: block;
}		
.titleshead {
	text-align: center;
	width: 100%;
	font-size: 16px;
}	
.top-header{
	display: none;
}
.titleshead img {width: 30px;}
.social {
    width: 30px;
    margin-right: 20px;
}
.footerone a:link {
	font-size: 20px;
}
.footerone a:hover {
	color: #ee1c25;
}
.footerone {
	margin-bottom: 
}

.footerone {
	margin-bottom: 45px;
	padding-bottom: 45px;
	border-bottom: solid 1px #fff; 
}
.footertwo{
	margin-bottom: 0;
	padding-bottom: 45px;
	border-bottom: solid 1px #fff; 
}
.footerthree {
	
}
.numberfoot {
	font-size: 30px;	
}
.numberfootsmall {
	font-size: 21px;	
}
.printtext {
	font-size: 12px;	
}

.imagelogo {
	max-width: 200px;
}


.menudivide {
	        font-size: 23px;
	        }
	        
	        
.menudividea {
	        font-size: 23px;
	        }	        
       
.menudivides {
	
        font-size: 18px;
 }





}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(min-width:768px){
.nav>li{
	font-size: 13px;
}

	.nav>li>a {

    padding: 15px 7px;
}
.logo-floater{
	display: block;
}
.mobilelogo-floater{
	display: none;
}
.titleshead {
	text-align: center;
	width: auto;
	font-size: 13px;
}
.top-header{
	display: block;
}
.titleshead img {width: 15px;}

.social {
      width: 24px;
    margin-right: 10px;
}
.footerone a:link {
	font-size: 15px;
}
.footerone a:hover {
	color: #ee1c25;
}
.numberfoot {
	font-size: 25px;	
}
.numberfootsmall {
	font-size: 18px;	
}
.printtext {
	font-size: 12px;	
}
.menudivide {
	        font-size: 16px;
	        }
	        
	        .menudividea {
	        font-size: 16px;
	        }
       
.menudivides {
	
        font-size: 14px;
 }
}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(min-width:992px){   

.nav>li{
	font-size: 16px;
}
.nav>li>a {

    padding: 15px 10px;
}
.logo-floater{
	display: block;
}
.mobilelogo-floater{
	display: none;
}
.titleshead {
	text-align: center;
	width: auto;
	font-size: 15px;
}
.top-header{
	display: block;
}
.titleshead img {width: 20px;}


.social {
    width: 30px;
    margin-right: 20px;
}
.footerone a:link {
	font-size: 18px;
}
.footerone a:hover {
	color: #ee1c25;
}
.numberfoot {
	font-size: 32px;	
}
.numberfootsmall {
	font-size: 23px;	
}
.printtext {
	font-size: 12px;	
}
.menudivide {
	        font-size: 18px;
	        }
	        
	        .menudividea {
	        font-size: 18px;
	        }
       
.menudivides {
	
        font-size: 15px;
 }
}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
@media(min-width:1200px){
.nav>li{
	font-size: 21px;
}

	.nav>li>a {

    padding: 15px 12px;
}
.footerone a:hover {
	color: #ee1c25;
}
.logo-floater{
	display: block;
}
.mobilelogo-floater{
	display: none;
}
.titleshead {
	text-align: center;
	width: auto;
	font-size: 20px;
}
.top-header{
	display: block;
}
.titleshead img {width: 20px;}
.social {
    width: 30px;
    margin-right: 20px;
}
.footerone a:link {
	font-size: 20px;
}
.numberfoot {
	font-size: 42px;	
}
.numberfootsmall {
	font-size: 29px;	
}
.printtext {
	font-size: 12px;	
}
.menudivide {
	        font-size: 23px;
	        }
	        
	        .menudividea {
	        font-size: 23px;
	        }
       
.menudivides {
	
        font-size: 18px;
 }

}/* - /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */