/*<?php
// ---------- COMPRESSION ----------
if (function_exists('ob_gzhandler')) {
    ob_start("ob_gzhandler");
}

// ---------- HEADERS ----------
header("Content-Type: text/css; charset=UTF-8");
header("Cache-Control: must-revalidate");

$offset = 60 * 60 * 24 * 7; // 1 week
header("Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT");

// ---------- RAW CSS OUTPUT STARTS HERE ----------
?>
*/
body {
    padding-top: 130px;
}

@media screen and (max-width: 767px) {
    body { padding-top: 90px; }
}

/* ===== NAVBAR ===== */

.dropdown:hover .dropdown-menu {
    display: block;
}

#navbar-div {
    border: 1px solid yellow;
}

/* ===== SEARCH BOX ===== */

#searchbox {
    position: relative;
    z-index: 3;
    float: left;
    width: 90%;
    margin: 0;
    padding: 0;
    color: white;
    display: inline-block;
}

#searchbox .search_words {
    display: inline-block;
    padding: 3px;
    border-radius: 3px;
    background: white;
    color: black;
}

#searchbox input[type=text] {
    width: 65%;
    display: inline-block;
}

#searchbox input[type=submit] {
    display: inline-block;
    border: none;
    background: url('Images/searchbutton3.gif') no-repeat;
    width: 24px;
    height: 100%;
}

/* ===== PRODUCT BOXES ===== */

.buyitnow {
    position: absolute;
    top: 120px;
    left: 125px;
    color: black;
    text-align: center;
}

.qty {
    position: absolute;
    top: 85px;
    left: 125px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid black;
    width: 70px;
}

.details {
    position: absolute;
    top: 60px;
    left: 125px;
    color: black;
    text-align: center;
}

/* ===== CART BOX ===== */

#cartbox {
    background-color: <?= $ColorBgd2 ?>;
    color: black;
    text-align: left;
    height: 1000px;
    width: 302px;
    padding: 0;
    border: 1px solid black;
}

.cartitembox {
    padding: 0;
    margin: 0;
    border: 1px solid black;
}

.cartitem1 {
    display: inline-block;
    width: 53%;
    border: 1px solid black;
}

.cartitem2 {
    display: inline-block;
    width: 35%;
}

