/*
|====================================================
| RGC BASE LAYOUT DEFAULTS
|====================================================
*/

/*
|====================================================
| OVERALL LAYOUT DEFAULTS
|====================================================
*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,700,700i,900');

* {
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color:#586062;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
	max-width: 100%;
}

.browserupgrade {
	background: #FB8C00;
	color: #fff;
	text-align:center;
	padding: 10px;
}

.browserupgrade a {
	color: #fff;
	text-decoration: underline;
}

/*
|====================================================
| TYPOGRAPHIC DEFAULTS
|====================================================
*/

h1,
h2,
h3,
h4,
h5,
h6,
p {
	
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #51808d;
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.2;
}

h1 {
	font-size: 4.0em /*60px*/
}

h2 {
	font-size: 2.667em /*40px*/
}

h3 {
	font-size: 1.467em /*22px*/
}

h4 {
	font-size: 1.467em /*22px*/
}

h5,
h6 {
	font-size: 1em;
}

a {
	color: #00a79e;
	cursor: pointer;
	transition: all .2s ease-in-out;
	text-decoration: none;
}

a:hover {
	color: #51808d;
}

.button {
	padding: 5px 10px;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #f57f3a;
}

.button:after {
	content: "";
	display: block;
	background: url("../assets/button-arrow.svg") no-repeat left top;
	background-size: cover;
	width: 35px;
	height: 35px;
	margin-left: 10px;
}

.button:hover {
	color: #d76f33;
}

.button:hover:after {
	
}

ul, ol {
	padding-left: 20px;
}

blockquote {
	border-left: solid 1px #ccc;
	padding-left: 20px;
	font-style:italic;
}

dt {
	font-weight: bold;
}

address {
	margin: 1em 0;
}

pre {
	white-space: pre-wrap;
    word-wrap: break-word; 
}

/*
|====================================================
| CONTENT-AREA DEFAULTS
|====================================================
*/

table {
	width: 100%;
	border: solid 1px #f1f1f1;
	border-collapse: collapse;
	margin: 1em 0;
}

tr {
	border-bottom: solid 1px #f1f1f1;
}

tr:nth-child(even) {
	background: #f1f1f1;
}

td, th {
	padding: 10px;
}

th {
	font-weight: 700;
}

.alignleft {
	float: left; 
}

.alignright {
	float: right; 
}

.aligncenter {
	display:block;
	margin:0 auto;
}

p .alignleft, 
img.alignleft, 
.wp-caption.alignleft { 
	margin: 10px 30px 20px 0;
	padding: 0; 
}

p .alignright, 
img.alignright, 
.wp-caption.alignright {
	margin: 10px 0 20px 30px; 
	padding: 0; 
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size:.8em;
	font-style:italic;
	margin:0 0 1em 0;
}

.single-template .featured-img img {
	width: 100%;
}

hr {
	border: none;
	border-bottom: solid 1px #eee;
	margin: 2em 0;
}

.pagination {
	display: flex;
}

.pagination span, 
.pagination a {
	padding: 10px;
	margin-right: 5px;
}

.article-pagination {
	display:flex;
	justify-content: space-between;
}
/*
|====================================================
| SIDEBAR-AREA/WIDGET DEFAULTS
|====================================================
*/
.widget {
	margin-bottom: 30px;
}

.widget .title {
	font-weight: 500;
}

.searchform label {
	display:none;
}

.searchform div {
	display:flex;
	justify-content: space-between;
}

.searchform input[type="text"] {
	flex:1;
}