/*
	Theme Name: Famifi WP
	Description: Famifi Wordpress Theme
	Version: 1.0.0
	Author: PXP, LLC
	Author URI: http://pxp200.com
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    FONTS
\*------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700');
@import url('https://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext');
@import url('https://fonts.googleapis.com/css?family=Indie+Flower');
@import url('https://fonts.googleapis.com/css?family=Raleway');

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#444;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover {
    color: #2f6ea7;
}
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:990px;
	width:100%;
	margin:0 auto;
	position:relative;
}
@media (max-width: 991px) {
	.wrapper {
  	max-width: 660px;
	}
}

.content-container {
    margin-right: auto;
    margin-left: auto;
}

/* sidebar */
.sidebar {

}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
.header-spacer{
	width: 100%;
	height: 80px;
}
.header {
  position: fixed;
  width: 100%;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.95);
}

.main-nav-logo-wrapper {
  height: 36px;
  width: auto;
  margin: 0;
}
.main-navbar{
	max-width: 990px;
	margin: 20px auto auto;
	padding: 0 7px 0 0;
}
.main-nav-logo {
  height: 45px;
  width: auto;
}

.navbar-toggler-icon {
  background-image: none !important;
  height: 0;
}

.main-nav-collapse-button {
  position: absolute;
  top: 11px;
  right: 0px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 44px;
  width: 44px;
  border-radius: 4px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 12px 0 11px 0px;
}
.main-nav-collapse-button:focus {
  outline: none;
}

.main-navbar-nav {
  text-align: center;
  margin: 0 20px;
}

.main-navbar-nav .nav-item a {
  font-size: 18px;
  color: #999;
	margin-right: 25px;
	font-family: lato,arial,helvetica;
}

.main-navbar-nav .nav-item a.selected {
	border-bottom: 3px solid;
}

.main-icon-bar {
  background-color: #888;
  border-radius: 3px;
  display: block;
  height: 4px;
  margin: 2px auto;
  width: 24px;
}

.ordivide {
  padding: 10px 0 5px 0;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.flex-col-centered {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.main-search-icon {
    width: 19px;
    height: 19px;
		margin-right: 15px;
		padding: 3px 0 0 3px;
}
.main-search-icon img{
	height: 16px;
	width: 16px;
	margin-left: 2px;
}
.main-search__wrapper{
  padding: 10px;
  position: absolute;
  right: 15px;
	top: 55px;
  z-index: 3;
  background: #fff;
  border: 1px solid #009bd5;
  border-radius: 4px;
  border: 0 solid rgba(0,0,0,.25);
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
  background-clip: padding-box;
	width: 80%;
	max-width: 619px;
	visibility: hidden;
}
.main-search__wrapper .search-submit{
	font-size: 15px;
	color: #fff;
	padding: 5px 10px 5px;
	background-color: #28a0c9;
	border: 1px solid #666;
	border-radius: 4px;
	opacity: .9;
}
.search-carrot{
  width: 18px;
  height: 10px;
  position: absolute;
  z-index: 3;
  top: -10px;
	right: 20px;
  overflow: hidden;
}
.main-search__wrapper .search-input{
  font-size: 14px;
  color: #555;
  padding: 5px 7px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
	width: calc(100% - 75px);
}
.search-carrot__outer{
	position: absolute;
	display: inline-block;
	border-bottom: 10px solid #8899a6;
	border-bottom-color: rgba(0,0,0,.1);
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	height: auto;
	right: 0;
	top: 0;
	width: auto;
}
.search-carrot__inner{
	position: absolute;
	display: inline-block;
	top: 1px;
	right: 1px;
	border-left: 9px solid transparent;
	border-right: 9px solid transparent;
	border-bottom: 9px solid #fff;
	border-bottom-color: rgba(255,255,255,.98);
}

@media (max-width: 991px) {
  .main-navbar-nav {
		text-align: right;
		margin: 10px 15px;
	}
	.main-navbar{
		max-width: 660px;
		padding: 0 15px;
	}
	.main-search-icon {
    position: absolute;
    right: 70px;
    top: 10px;
		margin-right: 5px;
	}
	.main-navbar-nav .nav-item a {
		padding-right: 0px;
		color: #333;
		font-size: 20px;
		font-weight: 700;
	}
	.main-navbar-nav .nav-item {
		margin: 5px 0px;
	}
	.search-carrot{
		right: 54px;
	}
	.main-nav-collapse-button{
		top: 0px;
		padding-top: 10px;
	}
}

@media (min-width: 991px) {
  .main-navbar-nav {
		margin-top: 20px;
	}
	.navbar-collapse {
		justify-content: flex-end;
	}
	.main-nav-logo{
		padding-left: 15px;

	}
}


/*------------------------------------*\
    FOOTER
\*------------------------------------*/

.footer {
	width: 100%;
  border-top: 1px solid #ccc;
  background-color: #eee;
  text-align: center;
  padding-top: 10px;
	padding-bottom: 50px;
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-top: 15px;
}
.footer__nav--wrapper{
	max-width: 991px;
	margin: 7.5px 0 15px;
	text-align: center;
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-self: center;
	align-items: center;
	align-self: center;
	flex-wrap: wrap;
}
.footer__nav--item{
	font-size: 14px;
	font-family: Helvetica, arial, sans-serif;
	font-weight: 300;
	text-align: center;
	padding: 0 25px;
	border-right: 1px solid #bbb;
}
.footer__nav--wrapper :last-child {
	border-right: none;
	padding-right: 0;
}
.footer__nav--wrapper :first-child {
	padding-left: 0;
}

.footer__social--wrapper{
	width: 100%;
	max-width: 825px;
	margin: 15px 0 7.5px;
	text-align: center;
	display: flex;
	flex-flow: row;
	justify-content: center;
	align-self: center;
	flex-wrap: wrap;
}
.footer__social--image{
	height: 25px;
	width: 25px;
	background-size: cover;
  background-position: center;
	margin-right: 7px;
}
.footer__social--item{
	display: flex;
	flex-flow: column;
	width: 100%;
	max-width: 20%;
	min-width: 140px;
	padding: 15px;
}
.footer__social--sub-wrapper{
	height: 33px;
	display: flex;
	flex-flow: row;
	width: 100%;
	padding: 0 0 5px 0;
  margin: 0 0 5px 0;
  border-bottom: 1px dotted #999;
}
.footer__social--title{
  font-weight: 700;
  font-size: 16px;
	line-height: 17.6px;
	text-align: left;
}
.footer__social--text{
  font-size: 9px;
  font-weight: 400;
	text-align: left;
}
.footer__social--followers{
	font-weight: 400;
	color: #000;
	font-size: 18px;
	text-align: left;
}
.copyright{
	font: 13px Helvetica,arial,sans-serif;
  font-weight: 300;
  color: #333;
  margin-bottom: 5px;
}
.search{
	max-width: 100%;
}
.search-input{
	font-size: 16px;
  color: #555;
  padding: 5px 7px;
  border-radius: 4px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  width: -webkit-calc(100% - 100px);
  width:    -moz-calc(100% - 100px);
  width:         calc(100% - 100px);
	max-width: 540px;
}
.search-submit{
	font-size: 17px;
  color: #fff;
  padding: 5px 10px 5px;
  background-color: #5aa05f;
  border: 1px solid #666;
  border-radius: 4px;
  opacity: .9
}
.search-main{
	max-width: 990px;
	margin-top: 20px;
}
.search-main h1{
		font-family: 'Roboto Condensed',sans-serif;
    font-size: 32px;
    font-weight: 400;
		margin: 30px 0 20px;
}
@media (max-width: 991px){
	.search-main{
		max-width: 660px;
	}
}

.outer_category {
	display: none;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (max-width: 991px) {
    .scontainer {
        max-width: 660px;
    }

    .header__container--mobile  {
        display: block;
    }

    .header__container--large  {
        display: none;
    }
}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}
.load-more{
  border-radius: 5px;
  border: 1px solid #ccc;
  display: block;
  width: 80%;
  margin: 15px auto 50px;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
  color: #666;
  font-size: 20px;
  opacity: .8;
}
.load-more:hover{
	color: #666;
	opacity: 1;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
