@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
@import url('https://fonts.googleapis.com/css?family=Ubuntu&display=swap');

html, body
{
    height: 100%;
    margin: 0;
}

body
{
    background-color: #323232;
    color: white;
    display: flex;
    display: -webkit-flex;
    font-family: "Lato", sans-serif;
    flex-direction: column;
    min-height: 100%;
    overflow: auto !important;
}

h1, h2, h3, h4, h5
{
    color: #db5717;
    margin: 0;
}

hr
{
    border-color: #424242;
    border-style: solid;
}

input, textarea, button, select
{
    border: none;
    outline: none;
}

input, textarea, button, select
{
    font-family: "Lato", sans-serif;
}

input:focus, textarea:focus, select:focus
{
    box-shadow: inset 0 0 0 2px #ee9062;
}

button, a.button
{
    cursor: pointer;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

button.orange, a.button.orange
{
    background-color: #db5717;
    border: 1px solid #db5717;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    padding: 14px 20px;
}

button.small, a.small
{
    padding: 7px 10px !important;
}

button.orange:hover, a.button.orange:hover
{
    background-color: #af4612;
}

button.gray, a.button.gray
{
    background-color: #707070;
    border: 1px solid #707070;
    border-radius: 3px;
    color: white;
    font-weight: bold;
    padding: 14px 20px;
}

button.gray:hover, a.button.gray:hover
{
    background-color: #575757;
}

svg
{
    fill: white;
}

.center-wrap
{
    margin: 0 auto;
    width: 1270px;
}

#header
{
    background: linear-gradient(to right, #202020 25%, #20202080 100%), url("../images2/header.jpg");
    background-color: #202020;
    background-size: cover;
    border-bottom: 3px solid #db5717;
    padding: 16px 0;
}

#header .logo
{
    height: 92px;
}

#header-row
{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

#header .container
{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
}

#header .top-row
{
    display: flex;
    display: -webkit-flex;
}

#header .top-row > *
{
    margin-right: 10px;
}

#header .top-row > :last-child
{
    margin-right: 0;
}

#search-form
{
    display: flex;
    display: -webkit-flex;
    flex: 1;
    margin: 0;
}

#search-form input
{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    flex: 1;
    font-size: 14px;
    padding: 8px 10px;
}

#search-form button
{
    background-color: #db5717;
    border: 1px solid #db5717;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 4px;
}

#search-form button:hover
{
    background-color: #af4612;
}

#header .top-row > a.button, #header .top-row > span.button
{
    background-color: #db5717;
    border: 1px solid #db5717;
    border-radius: 3px;
    cursor: pointer;
    padding: 4px;
}

#header .top-row > a.button:hover, #header .top-row > span.button:hover
{
    background-color: #af4612;
}

#user
{
    position: relative;
}

#user.green svg
{
    fill: lightgreen;
}

#signin
{
    cursor: default;
    opacity: 0;
    padding-top: 10px;
    position: absolute;
    right: -1px;
    transition: opacity .25s ease-in-out, top .25s ease-in-out, visibility .25s ease-in-out;
    top: -100%;
    visibility: hidden;
}

#signin div
{
    background-color: #575757;
    border: 1px solid #707070;
    border-radius: 3px;
    margin-top: 32px;
    min-width: 200px;
    padding: 20px;
}

#signin div > *
{
    display: block;
    margin-bottom: 10px;
}

#signin div > :last-child
{
    margin-bottom: 0;
}

#signin div form > *
{
    margin-bottom: 10px;
    width: 100%;
}

#signin div form > :last-child
{
    margin-bottom: 0;
}

#signin div h2
{
    color: white;
}

#signin form input
{
    border-radius: 3px;
    font-size: 14px;
    padding: 8px 10px;
}

#user.active #signin
{
    opacity: 1;
    top: 0;
    visibility: visible;
    z-index: 1;
}

#header .bottom-row
{
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 10px;
}

#header .bottom-row svg
{
    height: 28px;
    vertical-align: middle;
    width: 28px;
}

#header .bottom-row span
{
    color: white;
    font-size: 12px;
    text-shadow: 0 0 10px #1e1e1e;
}

#nav-bar
{
    background-color: #424242;
}

#nav-bar > :first-child
{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
}

#nav-bar a
{
    color: white;
    flex: 1;
    font-size: 14px;
    padding: 10px 8px;
    text-align: center;
    text-decoration: none;
    transition: box-shadow .25s ease-in-out;
}

#nav-bar a:hover
{
    background-color: #575757;
    box-shadow: inset 0 -1px 0 white;
}

#content
{
    flex-grow: 1;
    padding: 40px 0;
}

#content img
{
    max-width: 100%;
}

#footer
{
    border-top: 3px solid #db5717;
}

#footer .logo
{
    height: 48px;
}

#footer .top-row
{
    background-color: #202020;
    padding: 40px 0;
}

#footer .column-row
{
    display: flex;
    display: -webkit-flex;
}

#footer a
{
    color: white;
    text-decoration: none;
}

#footer a:hover
{
    text-decoration: underline;
}

#footer .column
{
    flex: 1;
    min-width: 200px;
    padding-right: 24px;
}

#footer .column h5
{
    color: white;
    font-size: 14px;
    margin-bottom: 16px;
}

#footer .column ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer .column ul li
{
    font-size: 14px;
    margin-bottom: 8px;
}

#footer .column ul li img
{
    float: left;
    height: 20px;
    margin-right: 6px;
}

#footer .column:last-child
{
    padding-right: 0;
}

#footer .quality-caption
{
    margin: 26px 0;
    text-align: center;
}

#footer .quality-caption span
{
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

#footer .cert-row
{
    display: flex;
    display: -webkit-flex;
    justify-content: space-evenly;
}

#footer .cert-row .cert
{
    align-items: center;
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}

#footer .cert-row .cert img
{
    border-radius: 3px;
    height: 64px;
    margin-bottom: 8px;
}

#footer .cert-row .cert span
{
    color: white;
    font-size: 12px;
    font-weight: bold;
}

#footer .bottom-row
{
    background-color: #424242;
    padding: 8px 0;
}

#footer .bottom-row > * > *
{
    align-items: center;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    flex-direction: column;
    margin: 10px 0;
}

#footer .bottom-row span
{
    color: white;
    text-align: center;
}

#footer .bottom-row .copyright
{
    font-size: 14px;
}

#footer .bottom-row .disclaimer
{
    font-size: 12px;
}

.shop-container
{
    display: flex;
    display: -webkit-flex;
}

#product-sidebar
{
    width: 312px;
}

#product-sidebar:hover .sidebar ul li label i
{
    opacity: 1;
}

.sidebar .caption
{
    background-color: #db5717;
}

.sidebar .caption span
{
    color: white;
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 10px;
    text-transform: uppercase;
}

.sidebar ul
{
    background-color: #424242;
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar > ul
{
    display: block;
}

.sidebar ul li input
{
    display: none;
}

.sidebar ul li input:checked ~ ul
{
    display: block;
}

.sidebar ul li input:checked ~ label i
{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.sidebar ul li label
{
    display: flex;
    display: -webkit-flex;
    font-weight: bold;
}

.sidebar ul li ul li label
{
    font-weight: normal;
    padding-left: 16px;
}

.sidebar ul li ul li ul li label
{
    padding-left: 66px;
}

.sidebar ul li ul li ul li label a
{
    font-size: 12px;
}

.sidebar ul li label:hover
{
    background-color: #575757;
}

.sidebar ul li label i
{
    align-items: center;
    cursor: pointer;
    display: flex;
    display: -webkit-flex;
    opacity: 0;
    padding: 8px 15px;
    transition: opacity .25s ease-in-out;
}

.sidebar ul li label i:hover svg
{
    fill: #db5717;
}

.sidebar ul li label i svg
{
    fill: white;
    height: 12px;
    width: 12px;
}

.sidebar ul li label a
{
    color: white;
    cursor: pointer;
    flex: 1;
    font-size: 14px;
    padding: 8px 10px 8px 2px;
    text-decoration: none;
}

.sidebar ul li label span
{
    color: gray;
    float: right;
    font-size: 12px;
    font-weight: normal;
    padding: 8px 10px;
}

.product-col
{
    flex: 1;
    margin-left: 16px;
}

.sku
{
    font-size: 12px;
}

.price
{
    font-family: "Ubuntu", sans-serif;
    font-size: 21px;
}

.stock
{
    font-size: 12px;
    font-weight: bold;
}

.stock.in-stock
{
    color: lightgreen;
}

.stock.out-of-stock
{
    color: lightcoral;
}

.list
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.list li
{
    background-color: #373737;
    display: flex;
    display: -webkit-flex;
    margin-bottom: 16px;
    padding: 12px;
    transition: box-shadow .25s ease-in-out;
}

.list li:hover
{
    box-shadow: inset 0 0 0 2px #db5717;
}

.list .image
{
    background-color: white;
    height: 200px;
    width: 200px;
}

.list .image img
{
    height: 100%;
    object-fit: contain;
}

.list .content
{
    display: flex;
    display: -webkit-flex;
    flex: 1;
    flex-direction: column;
    margin-left: 10px;
}

.list .top-row a
{
    color: #db5717;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}

.list hr
{
    width: 100%;
}

.list .middle-row
{
    flex: 1;
}

.list .middle-row *
{
    display: block;
    margin-bottom: 6px;
}

.list .bottom-row
{
    display: flex;
    display: -webkit-flex;
}

.list .bottom-row *
{
    display: inline-block;
    margin-right: 10px;
}

.product .top-row
{
    display: flex;
    display: -webkit-flex;
}

.product .image-box
{
    width: 500px;
}

.product .content
{
    flex: 1;
    margin-left: 16px;
}

.image-box .viewport
{
    overflow: hidden;
    position: relative;
}

.image-box .viewport .container
{
    display: flex;
    display: -webkit-flex;
    position: relative;
    transition: left .25s ease-in-out;
}

.image-box .viewport.preview
{
    background-color: white;
    height: 500px;
    width: 500px;
}

.image-box .viewport.preview .container
{
    left: 0;
}

.image-box .viewport.preview .container img
{
    height: 500px;
    width: 500px;
}

.image-box .viewport.carousel
{
    background-color: #373737;
    border: 2px solid #424242;
    margin-top: 16px;
}

.image-box .viewport.carousel .container
{
    left: 100%;
}

.image-box .viewport.carousel .container img
{
    cursor: pointer;
    height: 75px;
    margin: 10px 5px;
    opacity: .5;
    transition: opacity .25s ease-in-out, transform .25s ease-in-out;
    width: 75px;
}

.image-box .viewport.carousel .container img:hover
{
    opacity: 1;
}

.image-box .viewport.carousel .container .selected
{
    opacity: 1;
    transform: scale(1.25);
}

.product .top-row .content > *
{
    display: block;
    margin-bottom: 8px;
}

.product .top-row .content .name
{
    color: #db5717;
    font-size: 24px;
    font-weight: bold;
}

.product .bottom-row
{
    margin-top: 16px;
}

.product .desc
{
    padding: 8px 10px;
}

.product .desc h2
{
    margin-top: 16px;
    margin-bottom: 6px;
}

#map-canvas
{
    height: 800px;
    width: 100%;
}

form.v
{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}

form.hw
{
    margin: 0 auto;
    width: 50%;
}

#content form > *
{
    margin-bottom: 10px;
    width: 100%;
}

#content form input, #content form select
{
    border-radius: 3px;
    padding: 8px 10px;
}

#content form textarea
{
    border-radius: 3px;
    min-height: 10em;
    max-height: 20em;
    padding: 8px 10px;
    resize: vertical;
}

.columns
{
    display: flex;
    display: -webkit-flex;
}

.columns > *
{
    flex: 1;
    margin-right: 50px;
}

.columns > :last-child
{
    margin-right: 0;
}

.data .head
{
    align-items: center;
    background-color: #424242;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    margin-top: 16px;
    padding: 8px 10px;
}

.data .head h2
{
    color: white;
}

.data ul
{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.data img
{
    margin-top: 16px;
}

.data ul li
{
    background-color: #424242;
    display: flex;
    display: -webkit-flex;
    width: 50%;
}

.data ul li:nth-child(odd)
{
    box-sizing: border-box;
    border-right: 2px solid #424242;
}

.data ul li:nth-child(4n+1), .data ul li:nth-child(4n+2)
{
    background-color: #373737;
}

.data ul li span
{
    box-sizing: border-box;
    padding: 8px 10px;
    width: 50%;
}

.data ul li span:last-child
{
    color: darkgray;
}

.card
{
    background-color: #373737;
    display: flex;
    display: -webkit-flex;
    margin-bottom: 10px;
    padding: 10px;
}

.card:last-child
{
    margin-bottom: 0;
}

.card :first-child
{
    margin-right: 10px;
}

.features
{
    margin-top: 10px;
}

.features h4
{
    color: white;
}

.features ul
{
    list-style-position: inside;
    padding: 0;
}

.warranty
{
    align-items: flex-end;
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
}

.warranty > svg
{
    width: 200px;
}

.warranty.small > svg
{
    height: 49px;
    width: auto;
}

.infobox
{
    margin-bottom: 16px;
}

.infobox input[type="checkbox"]
{
    display: none;
}

.infobox input[type="checkbox"] ~ .body
{
    display: none;
}

.infobox input[type="checkbox"]:checked ~ .head i
{
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.infobox input[type="checkbox"]:checked ~ .body
{
    display: block;
}

.infobox label
{
    align-items: center;
    cursor: pointer;
    display: flex;
    display: -webkit-flex;
}

.infobox label i
{
    margin-right: 10px;
}

.infobox label i svg
{
    height: 24px;
    width: 24px;
}

.infobox .head
{
    background-color: #424242;
    padding: 8px 10px;
}
.infobox .head h2
{
    color: white;
}

.infobox .body ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.infobox .body ul li
{
    background-color: #424242;
    display: flex;
    display: -webkit-flex;
}

.infobox .body ul li:nth-child(odd)
{
    background-color: #373737;
}

.infobox .body ul li > *
{
    align-items: center;
    display: flex;
    display: -webkit-flex;
    flex: 1;
    font-size: 13px;
    padding: 8px 10px;
}

.infobox .body ul li img, .infobox .body ul li svg
{
    height: 16px;
    margin-right: 10px;
    vertical-align: middle;
    width: 16px;
}

.infobox .body ul li :first-child
{
    font-weight: bold;
}

.infobox .body ul li span.subtitle
{
    text-transform: uppercase;
}

.infobox .body ul li span.center
{
    text-align: center;
}

#map-canvas p
{
    color: black;
}

.notice
{
    background-color: #ff9900;
    border-radius: 3px;
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 8px 10px;
    text-align: center;
}

.notice span
{
    color: black;
    font-weight: bold;
    text-align: center;
}

.has-magnifier img
{
    transition: filter .1s linear;
}

.magnifier
{
    background-color: white;
    background-repeat: no-repeat;
    border-radius: 50%;
    box-shadow: inset 0px 0px 5px 0px black;
    box-sizing: border-box;
    cursor: none;
    height: 50%;
    opacity: 0;
    position: absolute;
    transform: scale(.5);
    transition: opacity .1s linear, visibility .1s linear, transform .2s ease-out;
    visibility: hidden;
    width: 50%;
    z-index: 1;
}

p a, li a, span a
{
    color: #db5717;
    text-decoration: none;
}

p a:hover, li a:hover, span a:hover
{
    text-decoration: underline;
}

a.button:hover
{
    text-decoration: none;
}

.cart-button
{
    position: relative;
}

.cart-bubble
{
    background-color: white;
    border-radius: 50%;
    font-family: "Ubuntu";
    font-size: 10px;
    font-weight: bold;
    padding: 3px;
    position: absolute;
    right: -5px;
    top: -5px;
    width: 10px;
}

input.numeric
{
    font-family: "Ubuntu";
    font-size: 16px;
    padding: 15px 20px;
    text-align: center;
    width: 94px;
}

.checkout-form > *
{
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

.checkout-form > div > *
{
    margin-right: 6px;
    width: calc(50% - 5px);
}

.checkout-form > div > :last-child
{
    margin-right: 0;
}

.summary
{
    background-color: rgba(0, 0, 0, .1);
    border: 2px solid #db5717;
    margin-top: 30px;
    padding: 20px 30px;
}

.summary > *
{
    margin-bottom: 10px;
}

.summary > div.iline
{
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

hr.nf
{
    border-color: white;
    width: 90%;
}

.overlay
{
    align-items: center;
    background-color: rgba(30, 30, 30, .8);
    cursor: zoom-out;
    display: flex;
    display: -webkit-flex;
    height: 100%;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity .1s ease-in-out, visibility .1s ease-in-out;
    visibility: hidden;
    width: 100%;
}

.overlay .image
{
    max-height: calc(100% - 256px);
    max-width: calc(100% - 256px);
    object-fit: contain;
    position: absolute;
    transform: scale(.5);
    transition: transform .25s ease-in-out, visibility .25s ease-in-out;
    visibility: hidden;
}

.paym
{
    align-items: center;
    display: flex;
    display: -webkit-flex;
    max-height: 64px;
}

.paym > *
{
    margin-right: 5px;
}

.paym label
{
    align-items: center;
    display: flex;
    display: -webkit-flex;
}

.paym label span
{
    margin-right: 5px;
}

.paym div
{
    float: right;
    display: flex;
    display: -webkit-flex;
}

.paym img
{
    background-color: white;
    max-height: 25px;
    padding: 3px;
}

.paym img.cc
{
    max-height: 25px;
}

.card-form
{
    margin-top: 5px;
    padding-left: 33px;
    width: 65%;
}

.card-form div
{
    display: flex;
    display: -webkit-flex;
}

.card-form input
{
    flex: 1;
    margin-bottom: 5px;
    margin-right: 5px;
}

.card-form input:last-child
{
    margin-right: 0;
}

#shipping-methods
{
    width: 100%;
}

#bookcase
{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.book
{
    background-color: #db5717;
    display: block;
    height: 400px;
    margin: 12px;
    overflow: hidden;
    position: relative;
    width: 309px;
}

.book > img
{
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: transform .1s ease-out;
    width: 100%;
}

.book > div
{
    background-color: rgba(255, 255, 255, .8);
    /*backdrop-filter: blur(2px) saturate(180%);*/
    bottom: 32px;
    box-sizing: border-box;
    color: #db5717;
    padding: 16px 8px;
    position: absolute;
    text-align: center;
    width: 100%;
}

.book > div > .brand
{
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.book > div > .title
{
    font-size: 24px;
}

.book:hover > img
{
    transform: scale(1.1);
}

.book:hover > div > .title
{
    color: black;
}

.slide-box
{
    box-sizing: border-box;
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slide-box > div
{
    display: flex;
    display: -webkit-flex;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: left .75s ease-out;
    width: 100%;
}

.slide-box > div > div > div
{
    box-sizing: border-box;
    height: 100%;
    padding: 20px 40px;
    position: absolute;
    width: 30%;
}

.slide-box > div > div > div h2
{
    font-size: 2.5em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.slide-box > div > div > div h3
{
    font-size: 1.25em;
}

.slide-box > div > div > div p
{
    color: gray;
    font-weight: bold;
    line-height: 2em;
    margin-bottom: 32px;
}

.slide-box > div > div > div a
{
    border: 2px solid #db5717;
    box-sizing: border-box;
    color: #db5717;
    display: block;
    font-weight: bold;
    margin: 0 auto;
    padding: 8px 14px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    width: 50%;
}

.slide-box > div > div > div a:hover
{
    background-color: #db5717;
    color: white;
}

.slide-box > div > div > img
{
    background-color: white;
    height: 100%;
    max-width: none !important;
    object-fit: cover;
    width: 1270px;
}

.product-col .location
{
    display: flex;
    display: -webkit-flex;
    margin-bottom: 16px;
}

.product-col .location *
{
    margin-right: 9px;
}

.product-col .location *:last-child
{
    margin-right: 0;
}

.product-col .location a
{
    color: gainsboro;
    text-decoration: none;
}

.product-col .location a:hover
{
    color: #ee9062;
}

.card-box
{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    padding: 10px;
}

.card-box a
{
    box-sizing: border-box;
    padding: 15px;
    text-decoration: none;
    width: 50%;
}

.card-box a img
{
    width: 100%;
}

.card-box a span
{
    background-color: #db5717;
    color: #fff;
    display: block;
    font-size: 34px;
    font-weight: normal;
    padding: 20px;
    text-align: center;
    text-transform: uppercase;
}

.filter-bar
{
    background-color: #424242;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding: 10px;
}

.filter-bar > *
{
    margin: 5px;
}

.filter-bar > * > span
{
    margin-right: 8px;
}

.mobile-only
{
    display: none;
}

@media only screen and (max-width: 600px)
{
    .mobile-only
    {
        display: block;
    }

    .center-wrap
    {
        width: auto;
    }

    #header .logo
    {
        box-sizing: border-box;
        max-width: 100%;
        padding: 10px;
    }

    #header-row
    {
        align-items: center;
        flex-direction: column;
    }

    #header-row .container
    {
        width: 90%;
    }

    #nav-bar > *
    {
        align-items: center;
        overflow-x: scroll;
        justify-content: normal !important;
    }

    #nav-bar > * > a
    {
        min-width: 80px;
    }
    
    #user
    {
        display: none;
    }

    #footer .column-row
    {
        flex-direction: column;
        padding: 0 20px;
    }

    #footer hr, #footer .quality-caption, #footer .cert-row
    {
        display: none;
    }

    #footer .bottom-row
    {
        padding: 8px 16px;
    }

    .columns
    {
        box-sizing: border-box;
        flex-direction: column;
        padding: 20px;
    }

    .columns > *
    {
        margin-right: 0;
    }

    .product-col
    {
        margin: 0 16px;
    }

    .product-col li .image
    {
        height: 96px;
        width: 96px;
    }

    .product-col li .content .top-row a
    {
        font-size: 12px;
    }

    .product-col li .content .middle-row span
    {
        font-size: 10px;
    }

    .product-col li .content .bottom-row
    {
        display: none;
    }

    .card-box a
    {
        width: 100%;
    }
    
    .card-box a span
    {
        font-size: 16px;
    }

    #product-sidebar
    {
        background-color: #424242;
        box-sizing: border-box;
        height: 100%;
        left: -100%;
        overflow-y: scroll;
        padding-bottom: 100px;
        position: fixed;
        top: 0;
        transition: left .2s ease-out;
        width: calc(100% - 40px);
        z-index: 2;
    }

    #product-sidebar .caption
    {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    #product-sidebar i
    {
        opacity: 1;
    }

    #product-sidebar.active
    {
        box-shadow: 0 0 30px 10px #000;
        left: 0;
    }

    #category-sidebar
    {
        background-color: #323232;
        display: block;
        height: 100%;
        left: -100%;
        position: fixed;
        top: 0;
        transition: left .2s ease-out;
        width: 100%;
    }

    #category-sidebar.active
    {
        left: 0;
    }

    #category-sidebar-button
    {
        background-color: #db5717;
        border-radius: 50%;
        bottom: 18px;
        box-shadow: 0 0 3px 0 #000;
        padding: 10px;
        position: fixed;
        right: 16px;
        z-index: 3;
    }
    
    #category-sidebar-button svg
    {
        fill: #fff;
        height: 32px;
        width: 32px;
    }

    #category-sidebar .header
    {
        background-color: #db5717;
        color: #fff;
        font-weight: bold;
        padding: 16px;
    }

    #category-sidebar .items li
    {
        border-bottom: 1px solid lightgray;
        padding: 10px;
    }

    #category-sidebar .items li a
    {
        color: #fff;
    }

    .product .top-row
    {
        flex-direction: column;
    }

    .product .image-box
    {
        width: auto;
    }

    .product .image-box .viewport.preview
    {
        max-height: 328px;
        height: auto;
        width: auto;
    }
    .product .image-box .viewport.preview img
    {
        height: auto;
        width: auto;
    }

    .product .top-row .content
    {
        margin: 0;
        margin-top: 16px;
    }

    .product .top-row .content .name
    {
        font-size: 20px;
    }

    .product .top-row .features li
    {
        font-size: 14px;
    }

    .product .warranty
    {
        background-color: #424242;
        justify-content: center;
        padding: 10px;
    }

    .product .warranty svg
    {
        width: 128px;
    }

    .product .bottom-row .desc
    {
        padding: 0;
    }

    .product .bottom-row .desc h2
    {
        font-size: 20px;
    }

    .product .bottom-row .data .head h2
    {
        flex: 1;
        font-size: 14px;
    }

    .product .bottom-row .data .head h5
    {
        display: none;
    }

    .product .bottom-row .data .head div
    {
        display: flex;
        display: -webkit-flex;
        flex-direction: column;
    }
    
    .product .bottom-row .data .head a
    {
        font-size: 10px;
    }

    .product .bottom-row .data .head a:first-child
    {
        margin-bottom: 5px;
    }
    
    .product .bottom-row .data ul
    {
        font-size: 12px;
    }

    .product .bottom-row .data ul li
    {
        background-color: #373737;
        border-right: none;
        width: 100%;
    }

    .product .bottom-row .data ul li:nth-child(even)
    {
        background-color: #424242;
    }

    .product-col .location
    {
        align-items: center;
        font-size: 12px;
    }

    .product-col .location a
    {
        text-align: center;
    }

    .product-col > h2
    {
        font-size: 18px;
    }

    .content-container
    {
        padding: 0 16px;
    }

    .slide-box
    {
        height: 100px;
        margin: 0 auto;
        width: 300px;
    }

    .slide-box > div > div > div
    {
        padding: 8px;
        width: 40%;
    }

    .slide-box > div > div > div h2
    {
        font-size: 14px;
    }

    .slide-box > div > div > div h3
    {
        font-size: 12px;
    }

    .slide-box > div > div > div p, .slide-box > div > div > div > a
    {
        display: none;
    }

    .slide-box > div > div > img
    {
        background-size: cover;
        width: 300px;
    }

    .overlay .image
    {
        max-height: calc(100% - 16px);
        max-width: calc(100% - 16px);
    }

    .card-form div
    {
        flex-wrap: wrap;
    }

    .paym label div
    {
        overflow: scroll;
    }

    .summary
    {
        background-color: transparent;
        border: none;
        padding: 0;
    }
}