/* GENERAL STYLES */

body {
    background-color: #444;
}

main.parallax {
    position: relative;
    display: block;
    background-image: url('/assets/images/backgrounds/background_2c.jpg');
}

.content-width {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* HEADER */

#header-container {
    background-color: rgba(0, 255, 0, 0.5);
    height: 100px;
    margin-bottom: 30px;
    color: #fff;
}

#header-container ul {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    list-style: none;
}

#header-container header {
    position: relative;
    height: 80px;
    padding: 10px 0 10px 0;
    z-index: 10;
}

#header-container header .logo-box {
    /*float: left;*/
}

#header-container header .logo-box img {
    /*margin: 4px 15px 0 -15px;*/
}

#header-container header .account-box {
    position: absolute;
    right: 0;
    top: 40px;
}

#header-container header .account-box .account-info {
    position: relative;
    float: right;
    background-color: rgba(80, 80, 80, 0.5);
    padding: 3px 8px;
    margin-left: 5px;
    font-size: 13px;
}

#header-container header .account-box .account-info ul {
    border-top: solid 1px #fff;
    margin-top: 5px;
    padding-top: 5px;
    display: none
}

#header-container header .account-box .account-info:hover ul {
    display: block
}

#header-container header .account-box .cart-items {
    position: relative;
    float: right;
    background-color: rgba(80, 80, 80, 0.5);
    padding: 3px 8px;
    font-size: 13px;
}

/* MAIN CONTENT */

#main-container {
    /*background-color: rgba(255, 255, 255, 0.8);*/
    background-color: rgba(255, 255, 255, 0.8);
}

#main-content {
    min-height: 900px;
    padding: 25px 0 40px 0;
}

main tr:not(.grey) a,
main tr:not(.grey) a:visited {
    color: #080;
}

/* FOOTER */

#footer-container {
    background-color: #fff;
    min-height: 80px;
    margin-top: 5px;
    border-top: solid #000 1px;
    box-shadow: #000 0 -3px 5px;
    padding: 10px 0 30px 0;
}

#footer-container footer .copyright-box {
    float: right;
}

#footer-container #cookieDisclaimer {
    background-color: lightgrey;
    border: solid 1px black;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 12px;
    overflow: hidden
}

#footer-container #cookieDisclaimer button {
    float: right;
}

/*=====================
    RESPONSIVE STYLES
 ===================== */

/* Mobile Landscape */
@media only screen and (min-width: 480px) {

    .content-width {
        width: 95%;
    }

    #header-container header .account-box {
        top: 10px;
    }
}

/* Tablet Portrait */
@media only screen and (min-width: 768px) {

    .content-width {
        width: 720px;
    }
}

/* Tablet Landscape / Desktop */
@media only screen and (min-width: 1024px) {

    .content-width {
        width: 960px;
    }
}

/*=====================
    DEBUG CONSOLE
 ===================== */

#debug-console {
    clear: both;
    margin: 10px 0 40px 0;
    padding: 2px 10px 10px 10px;
    height: 88px;
}

#console-log {
    background-color: grey;
    color: white;
    padding: 5px;
    font-family: "Lucida Console", Consolas, monospace;
    font-size: 11px;
    line-height: 15px;
    height: 68px;
    overflow: hidden;
}