/*
Theme Name: eatonbowls
Theme URI: http://southwestdigital.com.au
Author: Christine Mitcheson
Author URI: http://christinemitcheson.com.au
Description: Description
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: eatonbowls
Tags:
eatonbowls is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

#1 Alignments
#2 Widgets
#3 Content
	##3-1 Posts and pages
	##3-2 Asides
	##3-3 Comments
	##3-4 Word break
	##3-5 Header
	##3-6 Footer
	##3-7 Post and Meta
	##3-8 Search results
	##3-9 Breadcrumbs
#4 Infinite scroll
#5 Media
	##5-1 Captions
	##5-2 Galleries
#6 Navigation
#5 Media Queries
--------------------------------------------------------------*/




/*--------------------------------------------------------------
#1 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;
}



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

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

.widget ul {
	list-style: square;
	padding-left: 20px;
}



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

/*--------------------------------------------------------------
##3-1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
	border-bottom: 1px solid #fff;
	padding-bottom: 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;
}

.entry-title a {
	color:#000;
}

.entry-title a:hover {
	color:#404040;
	text-decoration: none;
}

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

.posts-navigation {
	font-size: 12px;
}

.screen-reader-text {
	visibility: hidden;
	display:none;
}

.home-image {
	width:100%;
	height: auto;
	margin-bottom: 20px;
}

.contentbg {
	background: url(images/container-bg-top.jpg) repeat-x center top;
	position: relative;
	z-index: 5;
	min-height: 1000px;
}

.site-main {
	background-color: rgba(255,255,255, 0.8);
	padding:1%;
}


ul {
	list-style-image: url(images/bullet-sq.png);
}

ul ul {
	list-style-image: url(images/bullet-circle.png);
}

ul ul ul {
	list-style-image: url(images/bullet-triangle.png);
}


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

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

.bypostauthor {
	display: block;
}

.comments-link {
	margin-right: 10px;
}

.comments-link a {
	color:#000;
}

.comments-link a:hover {
	text-decoration: none;
}

/*--------------------------------------------------------------
## 3-3b Comments List
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

.comments-title, .comment-reply-title {
	padding-bottom: 9px;
	margin: 20px 0 20px 0;
	border-bottom: 1px solid #eee;
}

ol.comment-list {
	list-style:none;
	padding-left: 0;
}

.comment-author .avatar {
	margin-right: 25px;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	padding: 4px;
}

.comment-meta {
	margin-bottom: 10px;
}

.comment-details {
	overflow: hidden;
	zoom: 1;
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #ddd;
}

.comment-details .reply {
	margin-top: 10px;
}

.comment-date a {
	font-size: 11px;
	color: #777;
	margin-right: 10px;
}

#commentform #comment {
	width: 100% !important;
}

#commentform #submit {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px;

	color: #333;
	background-color: #fff;
	border-color: #ccc;
}

#commentform #submit:hover{
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad;
}




/*--------------------------------------------------------------
##3-4 Word Break
--------------------------------------------------------------*/

#primary, #secondary {
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;

	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}


/*--------------------------------------------------------------
##3-5 Header
--------------------------------------------------------------*/

.site-title {
	margin-top: 80px;
}

.site-title a {
	color: #000063;
	text-decoration: none;
}

.site-description {
	color: #7d6828;
	font-size: 24px;
	font-weight: 600;
}

.phone {
	text-align: right;
	font-weight: 600;
	font-size: 18px;
	color: #000063;
	margin-top: 80px;
}

.phone a {
	color: #000063;
	text-decoration: none;		
}


/*--------------------------------------------------------------
##3-6 Footer
--------------------------------------------------------------*/

#colophon .container {
	margin-top: 50px;
	padding-top: 180px;
	min-height: 270px;
}

footer a {
	color: #d9af44;
}

footer a:hover {
	color: #fff;
	text-decoration: none;
}


.footer-menu {
	margin-left: 0;
	padding: 0 0 10px 0;
}

.footer-menu li {
	display: inline;
	list-style-type: none;
}

.footer-menu li a {
	border-left: 1px solid #d9af44;
	padding: 0 8px;
	color: #d9af44;
}

.footer-menu > li:first-child > a {
	border-left: none;
	padding: 0 8px 0 0;
}

.footer-menu li a:hover {
	text-decoration: none;
	color: #fff;
}

.copyright {
	/*float:left;*/
	color: #fff;
}

.footerbg2 {
	background: url(images/bg-footer-center.png) no-repeat center bottom;
	position: relative;
	z-index: 20;
}

.footerbg1 {
	background: url(images/bg-footer-slice.png) repeat-x bottom;
	position: relative;
	z-index: 10;
}


/*--------------------------------------------------------------
##3-7 Posts and Meta Tags
--------------------------------------------------------------*/

.entry-meta .posted-on .byline {
	margin: 0 20px;

}

.posted-on .fa, .byline .fa {
	color:#000063;
	padding: 0 5px 0 0;
}

.posted-on a, .byline a {
	color: #000063;
}


.posted-on a:hover,  .byline a:hover  {
	color: #2567ec;
	text-decoration: underline;
}

/*--------------------------------------------------------------
##3-8 Search
--------------------------------------------------------------*/

.search-highlight {
	background:#ffff00;
}



/*--------------------------------------------------------------
##3-9 Breadcrumbs
--------------------------------------------------------------*/


#breadcrumbs{
    list-style:none;
    margin:10px 0;
    overflow:hidden;
    margin-left: -38px;
}
  
#breadcrumbs li{
    display:inline-block;
    vertical-align:middle;
    margin-right:15px;
    color: #7d6828;
    font-weight: 200;
}
  
#breadcrumbs .separator{
    font-size:14px;
    font-weight:200;
    color:#7d6828;
}

#breadcrumbs a {
	color: #000063;
	font-weight: 700;
}

#breadcrumbs a:hover {
	color:#2567ec;
	font-weight: 700;
	text-decoration: none;
}


/*--------------------------------------------------------------
#4 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;
}

/*--------------------------------------------------------------
#5 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,
img {
	max-width: 100%;
}

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

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

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

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

/*--------------------------------------------------------------
##5-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;
}


/*--------------------------------------------------------------
#6 Navigation - navbar affix
--------------------------------------------------------------*/

.affix  {
	top:0px;
	width:100%;
	z-index: 9999 !important;
}

.affix + .container-fluid {
	padding-top:20px;
}

.container .affix {
	background-color: #d9af44;
	margin-left: -400px;
	padding-left: 400px;
	width: 150%;
}

.navbg {
	background-color: #d9af44;
	padding-top: 5px;
}


/*--------------------------------------------------------------
##7 Media Queries
--------------------------------------------------------------*/

/* Extra small devices (phones, less than 768px) */
@media (max-width: 768px) {
	.container .affix {width:102%; margin-left: -20px; padding-left: 20px; padding-right: 20px;}
	.home-small {display:visible;}
	.home-large {display:none;}
	.logo-img {display:none;}
	.site-title {margin-top: 10px; font-size:24px; }
	.site-description {font-size:18px;}
	.phone {margin-top: 10px; text-align: left; font-size:16px;}
	.footerbg2 {background: transparent;}
}


/* Small devices (phones, greater than 768px) */
@media (min-width: 769px) and (max-width: 992px) {
	.home-large {display:none;}
	.home-small {display:visible;}
	.logo-img {display:none;}
	.site-title {margin-top: 10px; font-size:24px; }
	.site-description {font-size:18px;}
	.phone {margin-top: 10px; text-align: right; font-size:16px;}
}

/* Medium devices (tablets & small monitors, greater than 992px) */
@media (min-width: 993px) and (max-width: 1200px) {
	.home-large {display:visible;}
	.home-small {display:none;}
	.footer-menu {float:right; text-align: right;}
	.home-large {display:visible;}
	.home-small {display:none;}
	.site-title {margin-top: 50px;}
	.phone {margin-top: 50px;}
}

/* Large devices (desktops monitors, greater than 1200px) */
@media (min-width:1201px) {
	.footer-menu {float:right; text-align: right;}
	.home-large {display:visible;}
	.home-small {display:none;}
}

