* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 1.5em;
}

.page-title {
    margin: 0;
}

.title-container {
    width: 100%;
    background: #f15a29;
    padding: 0;
    margin: 0;
}

.title-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 10px 25px;
}

.cart-btn {
    padding: 5px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    float: right;
    border: none;
    background: #f15a29;
    color: #fff;
    border-radius: 5px;
    transition: all ease-in-out 250ms;
}

.cart-btn:hover {
    background: #555;
    cursor: pointer;
}

.cart-btn:hover .tooltiptext {
    visibility: visible;
}

.cart-btn:focus {
    outline: none;
}

.cart-btn p {
    margin: 0;
    margin-left: 10px;
}


.tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 110%;
}

.tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

.cart-preview {
    width: 50%;
    margin: 0;
    padding: 30px;
    float: right;
    position: absolute;
    z-index: 55;
    background: #eee;
    box-shadow: 10px 10px 3px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    display: none;
}

#shopping-cart {
    margin: 0;
    width: 100%;
}

.tbl-cart {
    width: 100%;
}

.tbl-cart tr {
    width: 100%;
}

.tbl-cart th,
.tbl-cart td {
    width: 100%;
    padding: 0 20px;
}

.go-to-cart-btn {
    width: 100%;
    display: flex;
    align-items: center;
    transition: all ease-in-out 250ms;
}

.go-to-cart-btn a:hover {
    background: #555;
    cursor: pointer;
}

.go-to-cart-btn a {
    width: 100%;
    background: #f15a29;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 2px;
}

.txt-heading {
    border-bottom: 1px solid #211a1a;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
}

.txt-heading h5 {
    color: #f15a29;
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.5em;
}

.no-records {
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.no-records i {
    opacity: .5;
    margin-bottom: 25px;
}

.no-records p {
    font-size: 20px;
    letter-spacing: 5px;
    opacity: .5;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav li {
    border-bottom: 1px solid #eee;
}

.nav li a {
    font-size: 14px;
}

#accordionMenu {
    max-width: 300px;
}

.panel-body {
    padding: 0;
}

.panel-group .panel+.panel {
    margin-top: 0;
    border-top: 0;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-default>.panel-heading {
    color: #333;
    background-color: #fff;
    border-color: #e4e5e7;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.panel-default>.panel-heading a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
}

.panel-default>.panel-heading a:after {
    content: "";
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right;
    transition: transform .25s linear;
    -webkit-transition: -webkit-transform .25s linear;
}

.panel-default>.panel-heading a[aria-expanded="true"] {
    background-color: #eee;
}

.panel-default>.panel-heading a[aria-expanded="true"]:after {
    content: "\e113";
}

.panel-default>.panel-heading a[aria-expanded="false"]:after {
    content: "\e114";
}

/* Change background color of buttons on hover */
.tablinks:hover {
    background-color: #ddd;
}

/* Create an active/current "tab button" class */
a.tablinks.active {
    background-color: #ccc;
}

.product-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    /* justify-content: space-between; */
}

.category-menu {
    width: 20%;

}

.cart-item-image {
    padding: 0;
}

#accordionMenu {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
}

.grid-container {
    width: 80%;
    margin-left: 40px;
}

.products-holder {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
}

.product-container {
    width: 100%;
    height: auto;
}

.product-item {
    width: 100%;
    height: auto;
    margin: 0;
    border: 1px solid #aaa;
}

.product-image {
    width: 100%;
    height: auto;
    background: #ddd;
}

.product-item img {
    width: 100%;
    height: auto;
}

.product-tile-footer {
    display: flex;
    flex-direction: column;
    margin: 25px;
    padding: 0;
}

.product-title {
    font-weight: bold;
    text-transform: uppercase;
}

.product-price {
    margin-bottom: 20px;
}

.cart-action {
    display: flex;
    flex-direction: column;
}

.cart-action input {
    width: 100%;
}

.btnAddAction {
    margin-top: 10px;
    margin-left: 0;
    background: #f15a29;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btnAddAction:hover {
    background: #555;
}

.tbl-cart {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tbl-cart tbody {
    width: 100%;
}

.tbl-cart tr {
    height: 50px;
}

.tbl-cart tr:not(:first-child) {
    border-bottom: 1px solid #aaa;
}

.tbl-cart tr:first-child {
    background: #555;
    color: #fff;
    width: 100%;
}

.btn {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 20px;
    border-radius: 3px;
    background: #f15a29;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1;
    transition: 0.3s ease;
}

.btn:hover {
    background: #fff;
    border: 2px solid #f15a29;
    color: #f15a29;
}

footer {
    height: 100px;
    text-align: center;
    color: #aaa;
    background: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

.banner-ad {
    width: 100%;
    margin-top: 50px;
}

.banner-ad img {
    width: 100%;
}

.banner-ad .container {
    position: relative;
}

.banner-ad a {
    position: absolute;
    bottom: 220px;
    right: 150px;
    background: #343436;
    padding: 15px 30px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    border: 2px solid #fff;
}

.banner-ad a:hover {
    background: #fff;
    cursor: pointer;
    color: #f15a29