﻿* {
    font-family: "Droid Sans", sans-serif;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    background: #000;
    height: 100%;
    width: 100%;
    background: url("../images/texture-darker.png");
}

header, footer {
    -moz-transition: -moz-transform 100ms;
    -webkit-transition: -webkit-transform 100ms;
    -ms-transition: transform 100ms;
    -o-transition: transform 100ms;
    transition: transform 100ms;
}

.focused header {
    -moz-transform: translatey(-100px);
    -webkit-transform: translatey(-100px);
    -ms-transform: translatey(-100px);
    -o-transform: translatey(-100px);
    transform: translatey(-100px);
}

.focused footer {
    -moz-transform: translatey(100px);
    -webkit-transform: translatey(100px);
    -ms-transform: translatey(100px);
    -o-transform: translatey(100px);
    transform: translatey(100px);
}

img {
    -ms-border-radius: 10px;
    border-radius: 10px;
}

a {
    text-decoration: none;
}

/***************************
 * Header
***************************/
header {
    width: 100%;
    padding: 20px;
    color: white;
    border-bottom: 1px solid #ffffff;
    border-bottom: 1px solid rgba(255,255,255,.2);
    -ms-box-shadow: 0 0 20px #000;
    -moz-box-shadow: 0 0 20px #000;
    -webkit-box-shadow: 0 0 20px #000;
}

    header label {
        float: right;
        font-size: 1.2em;
    }

    header input {
        background: #222;
        background: rgba(0, 0, 0, 0.4);
        border: 1px solid #555;
        border: 1px solid rgba(255,255,255,.2);
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        -ms-border-radius: 16px;
        border-radius: 16px;
        color: white;
        font-size: 1em;
        padding: 2px 5px;
        outline: 0;
    }

    header div, footer div {
        margin: 0 auto;
        max-width: 1030px;
        -moz-min-width: 1030px;
        -ms-min-width: 1030px;
        -o-min-width: 1030px;
        -webkit-min-width: 1030px;
        min-width: 1030px;
    }

.logo, .logo a {
    font-weight: normal;
    font-size: 30px;
    margin: 0;
    display: inline-block;
    text-decoration: none;
    color: #ffd200;
}

    .logo span {
        font-weight: bold;
    }

/***************************
 * Menu
***************************/

nav {
    display: inline-block;
    margin-left: 100px;
}

#menu {
    margin: 0;
    padding: 0;
    border: 0;
}
    #menu .ui-icon {
        display: none;
    }

    #menu > li {
        float: left;
        list-style: none;
    }

    #menu li a {
        padding: 10px 12px;
        border: 0;
        white-space: nowrap;
        font-size: 18px;
        color: #ffd200;
    }

        #menu li a.ui-state-focus {
            background: #222222;
        }

        #menu li a:hover,
        #menu li a.ui-state-active {
            background: darkslategray;
        }

    #menu li ul {
        padding: 0;
        position: absolute;
        display: none;
        border-color: darkslategray;
        z-index: 10;
    }

        #menu li ul li {
            background-color: #222222;
        }

            #menu li ul li a {
                display: block;
                border: 0;
            }

#login-menu {
    margin-left: 40px;
    color: lightskyblue !important;
}

/***************************
 * Main
***************************/

.content {
    min-height: 650px;
    width: 100%;
    padding: 20px 0;
    background: url("../images/texture.png");
    -webkit-box-shadow: 0 0 20px #000 inset;
    -ms-box-shadow: 0 0 20px #000 inset;
    box-shadow: 0 0 20px #000 inset;
}

.content-wrapper {
    max-width: 1030px;
    -moz-min-width: 1030px;
    -ms-min-width: 1030px;
    -o-min-width: 1030px;
    -webkit-min-width: 1030px;
    min-width: 1030px;
    margin: 0 auto auto;
}

    .content-wrapper > div {
        text-align: center;
        width: 100%;
    }

.content-block, .content-block-bottom {
    color: white;
    padding: 30px;
    background: url("../images/texture-darker.png");
    -ms-border-radius: 20px;
    border-radius: 20px;
}

.content-block-bottom {
    margin-top: 15px;
    border: 1px solid #555;
    border: 1px solid rgba(255,255,255,.2);
    -ms-box-shadow: inset 0 0 100px #ffffff, 0 0 10px #000000;
    -ms-box-shadow: inset 0 0 100px rgba(255,255,255,.1), 0 0 10px rgba(0,0,0,.6);
    -webkit-box-shadow: inset 0 0 100px #ffffff, 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 100px rgba(255,255,255,.1), 0 0 10px rgba(0,0,0,.6);
    -moz-box-shadow: inset 0 0 100px #ffffff, 0 0 10px #000000;
    -moz-box-shadow: inset 0 0 100px rgba(255,255,255,.1), 0 0 10px rgba(0,0,0,.6);
    box-shadow: inset 0 0 100px #ffffff, 0 0 10px #000000;
    box-shadow: inset 0 0 100px rgba(255,255,255,.1), 0 0 10px rgba(0,0,0,.6);
}

.content-table {
    display: table;
}

    .content-table > div {
        display: table-cell;
    }

.details {
    -ms-transition: width 200ms;
    -o-transition: width 200ms;
    -moz-transition: width 200ms;
    -webkit-transition: width 200ms;
    transition: width 200ms;
    position: relative;
    top: 0;
    color: white;
    text-align: left;
    line-height: 1.25em;
    overflow: hidden;
    width: auto;
    margin-left: 30px;
}

    .details a {
        color: white;
    }

    .details p {
        white-space: normal;
    }

    .details p,
    .details ul,
    .details div.list {
        font-size: 14px;
    }

    .details h2 {
        margin-top: 0;
        font-weight: normal;
        font-size: 30px;
        line-height: 38px;
        -moz-text-overflow: ellipsis;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .details ul {
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

        .details ul span {
            display: inline-block;
            width: 100px;
            color: #949494;
            vertical-align: top;
        }

        .details ul li,
        .details div.list div {
            color: #ffd200;
            vertical-align: top;
        }

.carousel {
    display: inline-block;
}

.carousel ul li > div {
    margin-left: 10px;
    margin-right: 10px;
}

.scroll-arrow {
    vertical-align: top;
    display: inline-block;
    -ms-opacity: .3;
    opacity: .3;
    -ms-transition: opacity 200ms, background-color 200ms, color 200ms;
    -o-transition: opacity 200ms, background-color 200ms, color 200ms;
    -moz-transition: opacity 200ms, background-color 200ms, color 200ms;
    -webkit-transition: opacity 200ms, background-color 200ms, color 200ms;
    transition: opacity 200ms, background-color 200ms, color 200ms;
    top: 0;
    left: 0;
    color: #fff;
    background: transparent;
    z-index: 2;
    height: 30px;
    width: 30px;
    margin: 26px 20px 24px;
    line-height: 22px;
    text-align: center;
    font-size: 4em;
    padding: 2px;
    font-family: sans-serif;
    cursor: default;
    -ms-border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -ms-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.scroll-left {
    left: 0;
    right: auto;
}

.scroll-right {
    left: auto;
    right: 0;
}

.image-wrapper {
    height: 100%;
    vertical-align: middle;
    padding-right: 20px;
}

.elo-image-wrapper {
    padding-left: 20px;
}

.model {
    font-size: 1.2em;
    color: #949494;
}

.price {
    margin-top: 20px;
    font-size: 1.8em;
    font-weight: bold;
    color: #ffd200;
}

.postage {
    font-size: 1.2em;
}

.contact {
    font-weight: bold !important;
    color: lightskyblue !important;
}

/***************************
 * Footer
***************************/

footer {
    z-index: 100;
    width: 100%;
    color: #ffd200;
    padding: 20px;
    border-top: 1px solid #ffffff;
    border-top: 1px solid rgba(255,255,255,.2);
    -ms-box-shadow: 0 0 20px #000;
    -moz-box-shadow: 0 0 20px #000;
    -webkit-box-shadow: 0 0 20px #000;
}

    footer:hover .scroll-arrow {
        -ms-opacity: 1;
        opacity: 1;
        background: #ffd200;
        color: #000;
    }

/***************************
 * Login dialog
***************************/

.ui-dialog,
.ui-dialog-buttonpane {
    background: url("../images/texture-darker.png");
}

#login-dialog {
    color: #ffd200;
}

/***************************
/* Small screen fallback
/**************************/

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {

    html,
    body,
    #image-wrap,
    .image-inner-wrap {
        -webkit-tap-highlight-color: #000000;
        -webkit-tap-highlight-color: rgba(0,0,0,0);
        -webkit-transform: translatez(0);
    }
}
