body, html {
    padding: 0;
    margin: 0;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
    font-size: 12px;
    line-height: 13px;
    background-color: #000;
}
a {
    cursor: pointer;
}
#container {
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    padding-bottom: 32px;
    position: relative;
}
#markers {
    max-width: 100%;
    display: inline-block;
    position: relative;
}
#markers > img {
    max-height: calc(100vh - 32px);
    transition: 0.5s all;
    max-width: 100%;
    width: auto;
    height: auto;
}
#markers:hover > img {
    opacity: 0.8;
}
#markers a {
    display: block;
    color: #FFF;
    font-size: 30px;
}
#markers > div > div {
    display: none;
}
.qtip-custom {
    margin: 0.5em;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.product {
    padding: 10px 5px;
    color: #999;
    position: relative;
    overflow: auto;
}
.product > a {
    display: block;
    width: 35%;
    float: left;
    padding-right: 1em;
}
.product > a img {
    width: 100%;
    height: auto;
}
.product .info {
    padding-bottom: 30px;
}
.product .info strong {
    display: block;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    color: #555;
}
.product .info em {
    display: block;
    font-size: 12px;
    padding-top: 5px;
}
.product .learn-more {
    padding: 5px 10px;
    background-color: #F00;
    font-size: 12px;
    line-height: 13px;
    text-transform: uppercase;
    font-weight: 100;
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    float: none;
    color: #FFF;
}
footer {
    position: absolute;
    height: 32px;
    padding: 0 1em;
    color: #AAA;
    bottom: 0;
    line-height: 2.75em;
    font-size: 11px;
    width: calc(100% - 2em);
}
footer br {
    display: none;
}
footer a {
    color: #FFF;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer img {
    height: 32px;
    margin-top: -3px;
    display: inline-block;
    vertical-align: middle;
}
footer span {
    display: block;
    float: left;
}
footer aside {
    float: right;
}

/** MOBILE/TABLET **/
@media (max-width: 700px) and (-webkit-min-device-pixel-ratio: 1.5),
        only screen and (min-device-pixel-ratio: 1.5) {
    #container {
        padding-bottom: 40px;
    }
    #markers > img {
        max-height: calc(100vh - 40px);
    }
    #markers > div {
        height: 24px;
    }
    footer {
        line-height: 12px;
        text-align: right;
    }
    footer aside {
        position: relative;
        padding-right: 80px;
    }
    footer br {
        display: inline-block;
    }
    footer aside a:last-child {
        position: absolute;
        right: 0;
        top: 0;
    }
    .qtip-custom {
        margin: 0;
        position: absolute !important;
        max-height: 50vh;
        overflow-y: scroll;
        left: 0 !important;
        right: 0 !important;
        top: 50% !important;
        width: 100vw !important;
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
        box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
        transform: translateY(-50%);
    }
    .product > a {
        max-height: 120px;
        width: 120px;
    }
    .product > a img {
        width: auto;
        max-width: 100%;
        max-height: 100%;
    }
}