/*
Theme Name: Weaver Xtreme Child Demo
Theme URI: //weavertheme.com
Description: Bare minimum Weaver Xtreme Child demo theme
Author: Bruce Wampler
Author URI: //weavertheme.com/about
Version: 1.0
Tags: theme-options
Template: weaver-xtreme


    This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.


About style.css:

Traditionally, a child theme provides its own style.css to override or extend the
parent style.css. This usually involved adding an "@import" to the child's style.css.

Weaver Xtreme handles the main style sheet differently. It is called "assets/css/style.weaverx.css",
and is loaded before the theme "style.css" file. Thus, there is no need to "@import" the
parent stylesheet.

So you can make overrides and extensions directly in this child style.css.

*/



/*  ------------------------------------------------------
 Add specific style overrides here...

  Just for example, this style will change the default BG Color for the site.
*/
body,
input,
textarea {
	background-color: #CCC;
}

div#project {
    text-align: center;
}
.project_title {
    margin-bottom: 2em;
    font-size: 20px;
}
#project .project_nav{
	    color: #ccc;
    font-family: sans-serif;
    font-size: 12px;
    position: relative;
        margin-bottom: 10px
}
#project .project_nav a{
	    cursor: pointer;
    color: #999;
    text-decoration: none;
    padding-bottom: 2px;
}
#project .project_nav a:hover{
	color: #000;
}
#project_content{
	    margin: 0 auto;
    text-align: center;
        margin-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    font-size: 12px;
    padding-right: 40px;
}
#thumbnail_container img{
	    cursor: pointer;
    display: inline-block;
    float: none;
    margin: 0 10px 20px 10px;
    height: 120px;
    vertical-align: top;
    width: auto;
}

#thumbnail_container img.active{
	outline: 1px solid rgba(0, 0, 0, 0.6);
    outline-offset: 2px;
}
.project_nav a.index {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 0 0 -7px;
    height: 14px;
    vertical-align: middle;
    width: 14px;
}
.project_nav a.index span {
    background: rgba(128, 128, 128, 0.4);
    display: block;
    text-indent: 99px;
    overflow: hidden;
    position: absolute;
    height: 6px;
    width: 6px;
}
.project_nav .index span:nth-child(1) {
    top: 0;
    left: 0;
}
.project_nav .index span:nth-child(2) {
    top: 0;
    right: 0;
}
.project_nav .index span:nth-child(3) {
    bottom: 0;
    left: 0;
}
.project_nav .index span:nth-child(4) {
    bottom: 0;
    right: 0;
}

#project{
    display: none;
}
#nav_number{
        margin: 0px 16px 0px 4px;
}
.divider{
        width: 73%;
    display: block;
    margin: 0 auto;
    border-bottom: 2px double #8c8c8c;
    margin-bottom: 10px;
    margin-top: 11px;
}
.final-tiles-gallery .tile .caption{
    background: transparent!important;
}

.final-tiles-gallery .tile .caption .title{
    visibility: hidden!important;
}

.final-tiles-gallery .tile:hover .caption {
    background-color: rgba(0, 0, 0, 0.78)!important;
}
.final-tiles-gallery .tile:hover .caption .title {
    visibility: visible!important;
}
#project .prime-image img {
         opacity: 0;
    height: 0;
    transition: all 1s;
    position: absolute;
}

#project .prime-image img.active {
    display: block;
    margin: 0 auto;
    opacity: 1;
    height: auto;
    position: relative;
}
#thumbnail_container{
        margin-top: 15px;
}
#project-content p {
        margin-bottom: -2px;
}

header{
        min-height: 120px;
}