:root {
    --color-white: #ffffff;
    --color-dark-blue: #17124a;
    --color-medium-blue: #2f2870;
    --color-medium-grey: #777777;
    --color-light-grey: #aaaaaa;
}

html {
    height: 100%;
}

/* Page Layout */
body {
    /*font-family: Helvetica, Arial, sans-serif;*/
    font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: #555;
    padding: 0;
    margin: 0;
    height: 100%;
    overflow: hidden;
    font-size: 16px;
    background-color: #fff;
    text-align: center;
    font-size: 13pt;
}
body > .container {
    padding: 60px 15px 0;
}

#main_content {
    letter-spacing: 1px;
    font-size: 12pt;
}
#center_column {
    margin-bottom: 50px;
    text-align: center;
    background-color: #fff;
}
#content {
    overflow-y: auto;
    position: absolute;
    top: 37px;
    bottom: 30px;
    right: 0;
    left: 0;
    padding-top: 20px;
    z-index: 1;
}
.contentHolder {
    margin-top: 20px;
    text-align: left;
}

/* Header */
header {
    background-color: var(--color-dark-blue);
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    /* box-shadow: 0 4px 3px 1px rgba(0, 0, 0, 0.2); */
    margin-bottom: 5px;
    font-size: 12pt;
    height: auto;
    position: relative;
    z-index: 99999;
    border-bottom: 4px solid #ccc;
}
header .navbar-nav {
    line-height: 32px;
}
header .navbar {
    padding: 0;
    z-index: 500;
}
header .navbar-brand {
    font-size: 14pt;
    padding: 0;
}
header .navbar-toggler {
    color: #fff;
    font-size: 14px;
    margin: 4px;
}
header .navbar-toggler:focus {
    outline: 2px auto var(--color-white);
}
div.navbar-collapse {
    /*padding-top: 10px;*/
    line-height: normal;
    z-index: 500;
}
header .nav-link {
    height: 100%;
}
header .navbar-dark .navbar-nav .nav-link,
header .navbar-dark .navbar-nav .nav-link:visited {
    color: #ccc;
    text-decoration: none;
}
header .navbar-dark .navbar-nav .nav-link:hover {
    color: var(--color-white);
    background-color: var(--color-medium-grey);
}
header .navbar-dark .navbar-nav .nav-link:active {
    color: #ff0;
}
header .navbar-dark .navbar-nav .nav-item.active .nav-link {
    color: #fff;
    background-color: var(--color-medium-blue);
}
header .nav-item {
    margin: 0 10px 0 10px;
    min-width: 100px;
    text-align: center;
}
header .social_media_links {
    margin-right: 20px
}
header .social_media_link {
    height: 25px;
    width: 25px;
    margin: 3px 0 3px 20px;
    opacity: 0.8;
}
header .social_media_link:hover {
    opacity: 1;
}
header .dropdown-menu.show {
    /*margin-top: 3px;*/
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border: solid #ccc 1px;
    /*border-right: solid #ccc 1px;*/
    /*border-bottom: solid #ccc 1px;*/
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    box-shadow: 1px 2px 3px 1px rgba(0, 0, 0, 0.2); 
}
header .dropdown-item.active {
    background-color: var(--color-medium-blue);
}
header .dropdown-item:hover {
    color: #fff;
    background-color: var(--color-light-grey);
}
header .dropdown-divider {
    border: 1px solid #ccc;
}

#evaton_logo {
    margin: 4px 20px 4px 10px;
    height: 40px;
}
#header {
    background-color: #070147;
    padding: 5px;
    margin-bottom: 5px;
    font-size: 12pt;
    letter-spacing: 1pt;
}
#navigation_list {
    margin: 0;
    padding-top: 4px;
    list-style: none;
    display: inline-block;
    vertical-align: top;
}
.navigation_item {
    margin: 0 20px 0 0;
    padding: 2px;
    display: inline-block;
    line-height: 50px;
}
#header a {
    color: #ddd;
    text-decoration: none;
}
#header a:hover {
    color: var(--color-web-yellow);
}
#header a:active {
    color: #ff0;
}
#header a:visited {
    color: #ddd;
    text-decoration: none;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    background-color: #777;
    border-top: 2px double var(--color-dark-blue);
    color: #eee;
    font-size: 10pt;
    text-align: right;
    padding: 0 30px 0 0;
    font-family: Helvetica, Arial, sans-serif;
}
#bonus_hector {
    display: none;
}
@media (min-width: 1000px) {
    #bonus_hector {
        display: inline-block;
        /*background-color: #fa0;*/
        background: #fff url(/images/hector_in_space_sm.png) repeat scroll 0 0;
        background-size: contain;
        background-repeat: no-repeat;
        width: 150px;
        height: 150px;
        position: absolute;
        margin-top: -160px;
        top: 0;
        right: 5px;
    }
}

/* Product Styles */
img.product {
    float: left;
    margin: 0 10px 2px 0;
}
.photo_holder {
    text-align: center;
}
img.product_large {
    max-height: 400px;
}
.productTitle {
    font-weight: bold;
    font-size: 20pt;
}
.productSubtitle {
    color: #999;
    font-size: 12pt;
    letter-spacing: 1.5px;
    padding-bottom: 5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
}
.productDescription {
    font-size: 11pt;
    color: #555;
}
.productThumbnails {
    margin-top: 15px;
    text-align: center;
}
.productThumbnail {
    width: 42px;
    height: 42px;
    margin: 5px;
    padding: 1px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
}
.productThumbnail:hover {
    border: 1px solid #ffaa00;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    box-shadow: 0 0 3px 1px rgba(200, 200, 0, 0.5); 
}
.productThumbnail > img {
    width: 40px;
    height: 40px;
    border: none;
}

.specifications {
    margin-top: 30px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 30px;
}
.specificationTitle {
    font-weight: bold;
    font-size: 16pt;
    margin-bottom: 10px;
    color: #555;
}
.specificationList {
    color: #555;
    font-size: 11pt;
    list-style: none;
    margin: 0;
    padding: 0;
}
.specificationItem {

}
.specificationItem > label {
    font-weight: bold;
    color: #555;
    min-width: 100px;
}

/* Main page overview */
.productOverview {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.productOverview .photoHolder img {
    max-width: 120px;
    max-height: 270px;
}
.productOverview .textHolder {

}
.overviewLink:hover {
    text-decoration: none;
}
.overviewLink:hover .productOverview {
    background-color: #fafafa;
    box-shadow: 0 0 3px 1px rgba(50, 50, 50, 0.5); 
}
.productOverview .textHolder h1 {
    font-weight: bold;
    color: #555;
    font-size: 14pt;
}
.productOverview .textHolder p {
    font-size: 11pt;
    color: #555;
}