/**
 * Theme Name: Mindcaps Base Theme Content
 * Theme URI: http://www.mindcaps.com
 * Version: 1.0
 * Author: André Seifert
 * Author URI: http://www.mindcaps.com
 * Description: 
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 */

/*--------------------------------------------------------------
Table of Contents:
----------------------------------------------------------------
1.  - Fonts
2.  - Reset
3.  - General Styles
4.  - Structure And Grid (12 & 16)
5.  - Wordpress Core CSS
--------------------------------------------------------------*/

/**
 * 1. Fonts
 */
@import url("font-awesome.min.css");
/*
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}*/

/**
 * 2. Reset
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

* { 
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box;    
	box-sizing: border-box;         
}

article, 
aside, 
details, 
figcaption, 
figure, 
footer, 
header, 
hgroup, 
menu, 
nav, 
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

/**
 * 3. General Styles
 */
 
/* Global */


.clear {
	clear: both;
}


/* Grid */
.row {
	margin: 0 -15px;
}

.col-100 {
	width: 100%;
	float: left;
	position: relative;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-16-1,
.col-16-2,
.col-16-3,
.col-16-4,
.col-16-5,
.col-16-6,
.col-16-7,
.col-16-8,
.col-16-9,
.col-16-10,
.col-16-11,
.col-16-12,
.col-16-13,
.col-16-14,
.col-16-15,
.col-16-16 {
	float: left;
	padding: 0 15px;
	position: relative;
}

/* 12-Grid */
.col-1 {
	width: 8.33333333%;
}

.col-2 {
	width: 16.66666667%;
}

.col-3 {
	width: 25%;
}

.col-4 {
	width: 33.33333333%;
}

.col-5 {
	width: 41.66666667%;
}

.col-6 {
	width: 50%;
}

.col-7 {
	width: 58.33333333%;
}

.col-8 {
	width: 66.66666667%;
}

.col-9 {
	width: 75%;
}

.col-10 {
	width: 83.33333333%;
}

.col-11 {
	width: 91.66666667%;
}

.col-12 {
	width: 100%;
}
/* 16-Grid */
.col-16-1 {
	width: 6.25%;
}

.col-16-2 {
	width: 12.50%;
}

.col-16-3 {
	width: 18.75%;
}

.col-16-4 {
	width: 25%;
}

.col-16-5 {
	width: 31.25%;
}

.col-16-6 {
	width: 37.50%;
}

.col-16-7 {
	width: 43.75%;
}

.col-16-8 {
	width: 50.00%;
}

.col-16-9 {
	width: 56.25%;
}

.col-16-10 {
	width: 62.50%;
}

.col-16-11 {
	width: 68.75%;
}

.col-16-12 {
	width: 75.00%;
}

.col-16-13 {
	width: 81.25%;
}

.col-16-14 {
	width: 87.50%;
}

.col-16-15 {
	width: 93.75%;
}

.col-16-16 {
	width: 100%;
}

/* Basic Typo */

small,
.small {
	font-size: 0.8125em;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.strong,
strong {
	font-weight: 700;
}

.italic {
	font-style: italic;
}

.normal {
	font-style: normal;
}

/* Global */
/* Wrap */
.nowrap {
	white-space: nowrap;
}

.normalwrap {
	white-space: normal;
}

.prewrap {
	white-space: pre-wrap;
}

.pre {
	white-space: pre;
}

/* Text Align */
.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.justify {
	text-align: justify;
}

/* Text Transform */
.lowercase {
	text-transform: lowercase;
}

.uppercase {
	text-transform: uppercase;
}

.capitalize {
	text-transform: capitalize;
}

.texttransform-none {
	text-transform: none;
}	

/* Lists */
ol,
ul,
ul.list-inside,
ol.list-inside {
	list-style-position: inside;
}

ul.list-outside,
ol.list-outside {
	list-style-position: outside;
}

ol,
ol.list-initial {
	list-style-type: initial;
}

ol.list-decimal {
	list-style-type: decimal;
}

ol.list-decimal-leading-zero {
	list-style-type: decimal-leading-zero;
}

ol.list-lower-alpha {
	list-style-type: lower-alpha;
}

ol.list-upper-alpha {
	list-style-type: upper-alpha;
}

ol.list-lower-roman {
	list-style-type: lower-roman;
}

ol.list-upper-roman {
	list-style-type: upper-roman;
}

ol.list-none {
	list-style-type: none;
}

ul,
ul.list-inital {
	list-style-type: disc;
}

ul.list-circle {
	list-style-type: circle;
}

ul.list-square {
	list-style-type: square;
}

ul.list-none,
ol.list-none {
	list-style-type: none;
}

/* Table */
table { 
	width: 100%; 
	border-collapse: collapse; 
}

tr:nth-of-type(odd) { 
	background: #eee; 
}

th { 
	background: #333; 
	color: white; 
	font-weight: bold; 
}

td, th { 
	padding: 6px; 
	border: 1px solid #ccc; 
	text-align: left; 
}

/**
 * 4. Structure And Grid (12 & 16)
 */

/* Positions */
.absolute {
	position: absolute;
}

.relative {
	position: relative;
}

.static {
	position: static;
}

.fixed {
	position: fixed;
}

/* Floatings */
.centered {
	margin: 0 auto;
	float: none;
}

.floatleft {
	float: left;
}

.floatright {
	float: right;
}

.floatnone {
	float: none;
}
 

/**
 * 5. Wordpress Core CSS
 */
.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%; /* Image does not overflow the content area */
    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 p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}





