/* Main CSS
// ------------------------------------
// Authors: Roman Leinwather
// Created at: 07/5/2018
// Copyright 2018 - All rights reserved
// ------------------------------------ */


body {
    background: #252628;
    color: #fff;
    font-family: Roboto, "Helvetica Neue", Helvetica, Arial;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5em;
    padding-bottom: 150px;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.content {
    min-width: 600px;
    margin: auto;
    padding: 75px 150px 0 150px;
}

h1 {
    font-size: 27px;
    line-height: 27px;
    font-weight: bold;
    margin-bottom: 75px;
    text-align: center;
}

h2 {
    font-size: 21px;
    line-height: 21px;
    font-weight: bold;
    text-align: center;
    color: red;
}

#intro {
    font-size: 100px;
    font-weight: 1000;
    margin: 150px 0  0px 0;
    text-align: center;
    color: #fff;
}

table {
    width: 100%;
}

th {
    font-size: 9px;
    font-weight: 100;
    text-align: left;
    text-transform: uppercase;
    border-bottom: 1px solid #444;
    padding: 10px;
}

td {
    padding: 10px;
}

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

tr:hover {
    background: red;
}

.align-right {
    text-align: right
}

.tabs {
    padding: 0;
    margin: 0 0 50px 0;
    text-align: center;
}

.tabs li {
    display: inline;
    text-transform: uppercase;
    font-size: 11px;
    color: #999;
    cursor: pointer;
    list-style: none;
    padding: 0 50px 0 0;
    margin: 0;
}

.tabs li.active,
.tabs li:hover {
    color: red;
    font-weight: 500;
}

.tab-content.active,
.exercise-group.active {
    display: block;
}

.tab-content,
.exercise-group {
    display: none;
}

.workout-nav {
    margin-bottom: 75px;
    width: 100%;
    float: left;
    clear: both;
}

.workout-nav li {
    float: left;
    width: 14%;
    margin: 0 3%;
    text-align: center;
    height: 140px;
    padding: 0;
    opacity: .8;
    position: relative;
    padding: 30px 0;
    background-size: 25% !important;
}

.workout-nav li span {
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
}

.workout-nav li.active,
.workout-nav li:hover {
    opacity: 1;
    background-color: red !important;
    border-radius: 10px;
}

#nav-chest { background: url("../images/ico-chest.png") center 30px no-repeat; }
#nav-black { background: url("../images/ico-back.png") center 30px no-repeat; }
#nav-shoulders { background: url("../images/ico-shoulders.png") center 30px no-repeat; }
#nav-arms { background: url("../images/ico-arms.png") center 30px no-repeat; }
#nav-legs { background: url("../images/ico-legs.png") center 30px no-repeat; }

