@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");

:root {
  --ajax-blue: #24aae1;
  --ajax-blue-light: #63b8da;
  --ajax-gray: #b2b2b2;
  --ajax-dark-gray: #666666;
}
h1 {
  text-transform: uppercase;
}
p {
  margin-top: 0;
}
a {
  text-decoration: none;
  color: var(--ajax-blue);
}
a:hover {
  color: var(--ajax-blue-light);
}
.freehand {
  margin-top: 2rem;
  font-family: "Pacifico", cursive;
  font-size: 2rem;
  transform: rotate(-5deg);
}
.btm-marg {
  margin-bottom: 1.5rem;
}
.text-dark-gray {
  color: var(--ajax-dark-gray);
}
.text-gray {
  color: var(--ajax-gray);
}
.text-blue {
  color: var(--ajax-blue);
}
html {
  height: 100%;
  font-size: 14px;
}
body {
  min-height: 100%;
  margin: 0px;
}
.top-pad {
  padding-top: 1rem;
}
.top-marg {
  margin-top: 1rem;
}
.btm-pad {
  padding-bottom: 1rem;
}
div.mce-fullscreen {
  z-index: 1050;
}
/* Grid stuff ======================================================================================================================

Homepage layout */
.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
#admin-grid-container {
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: min-content min-content auto min-content min-content;
  grid-template-areas:
    "nav"
    "header"
    "main"
    "sidebar"
    "footer";
  background-color: #f8f8f8;
}
#home-grid-container {
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content;
  grid-template-areas:
    "header"
    "nav"
    "hero"
    "grey2"
    "main"
    "grey3"
    "content2"
    "content3"
    "content4"
    "enquiry"
    "footer";
}
#product-grid-container {
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content min-content;
  grid-template-areas:
    "header"
    "nav"
    "hero"
    "grey2"
    "product-top"
    "grey3"
    "content2"
    "grey4"
    "content3"
    "enquiry"
    "footer";
}
#product-top {
  grid-area: product-top;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  grid-template-areas:
    "big-image-holder"
    "product-gallery"
    "product-info"
    "product-side";
}
#big-image-holder {
  grid-area: big-image-holder;
}
#productArea {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
#product-gallery {
  grid-area: product-gallery;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid #d3d3d3;
}
#product-info {
  grid-area: product-info;
}
#product-side {
  grid-area: product-side;
}
header {
  grid-area: header;
}
nav {
  grid-area: nav;
  z-index: 1000;
}
#hero {
  display: none;
  grid-area: hero;
  height: 400px;
  background-color: black;
}
.hero-text-container {
  width: 40%;
  margin-left: 10%;
  color: white;
  text-transform: uppercase;
  padding: 1rem;
}
.hero-text-container .title,
.enquiry-text-container .title {
  padding-left: 2rem;
  font-size: 1.6rem;
}
.hero-text-container .subtitle,
.enquiry-text-container .subtitle {
  font-size: 1.2rem;
  padding-left: 0px;
  margin: 0px 0px 1rem 0px;
}
#grey2 {
  grid-area: grey2;
}
main {
  grid-area: main;
  padding: 0;
}
aside {
  padding: 1rem;
  grid-area: sidebar;
  background-color: rgb(177, 177, 177);
  text-align: center;
}
#grey3 {
  grid-area: grey3;
}
#grey4 {
  grid-area: grey4;
}
#content2 {
  grid-area: content2;
}
#content3 {
  grid-area: content3;
}
#content4 {
  grid-area: content4;
}
#enquiry {
  grid-area: enquiry;
  width: 100%;
  background-color: black;
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 3rem 0;
  /* padding-left: 5%; */
}
.enquiry-image {
  background-image: url("/assets/enquiry-bg.jpg");
  background-size: cover;
  background-position: center;
}
.enquiry-text-container {
  color: white;
  text-transform: uppercase;
  padding: 1rem;
}
footer {
  grid-area: footer;
}
#subnav-container {
  position: absolute;
  top: 3.5rem;
  left: 5%;
  width: 90%;
  min-height: 300px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  border-color: rgb(187, 187, 187);
  border-style: solid;
  border-width: 1px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  box-sizing: border-box;
}
#basket-container {
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  position: fixed;
}
#basket-container-inner {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 5%;
  bottom: 5%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 5px;
  border-color: rgb(187, 187, 187);
  border-style: solid;
  border-width: 1px;
  overflow-y: scroll;
  box-sizing: border-box;
}
.subnav {
  padding: 1rem;
}
#subnav-container ul {
  background-color: inherit;
}
#subnav-container ul li {
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.5rem;
  border-bottom: 1px solid #d3d3d3;
}
#subnav-container a {
  color: #5f5f5f;
}
#subnav-container a:hover {
  color: black;
  background-color: none;
}
#video-embed {
  position: relative;
  padding-bottom: 45%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#video-embed iframe,
.video-embed object,
.video-enbed embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.display-0 {
  display: inline-block;
}
.display-640,
.display-768,
.display-992,
.display-1200 {
  display: none;
}
.hide-0 {
  display: none;
}
#menuImg {
  display: grid;
  align-items: end;
  justify-items: end;
}
#productDetailGrid {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 1rem;
  width: 100%;
}
.detailHeader {
  background-color: var(--ajax-blue);
  width: calc(100% - 2rem);
  color: white;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}
#product-info h2,
#product-info h3 {
  font-size: 2rem;
  text-transform: uppercase;
}
#product-info h2 {
  font-weight: bold;
}
#product-info h3 {
  font-weight: normal;
}
#product-info p,
#feature-div p,
#feature-div li {
  font-size: 1.3rem;
}
#priceSpan {
  font-size: 4rem;
}
.galleryImage {
  width: 28%;
  margin: 0.5rem;
}
#product-gallery img {
  max-width: 100%;
  max-height: 100%;
}
header,
.header,
.ajax-blue-bg {
  padding: 1rem;
  background-color: var(--ajax-blue);
  color: white;
}
.notice-bg{
  padding: 1rem;
  background-color: #d1828a;
  color: white;
}
.upsell-item {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 4fr;
  margin-top: 1rem;
}
.upsell-item-text {
  background-color: var(--ajax-gray);
  padding: 0 1rem;
  height: 100%;
  display: grid;
  align-items: center;
}
.upsell-item-text a {
  color: white;
}
.upsell-item-text a:hover {
  color: black;
}
.upsell-item-text h3 {
  margin: 0;
}
#grey2,
#grey3,
#grey4 {
  background-color: var(--ajax-gray);
  border-top: 3px solid white;
  border-bottom: 3px solid white;
  padding: 1.5rem 0 1.5rem 0;
}
footer,
.footer {
  padding: 1rem;
  background-color: var(--ajax-blue);
  color: white;
}
.footer-logo {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.footer-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer a {
  color: #cce8f2;
  text-decoration: none;
}
footer a:hover {
  color: white;
}
.grid-v-align-center,
.quick-link-nav {
  display: grid;
  align-items: center;
}
.grey-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}
.logo-image {
  display: grid;
  align-items: center;
  justify-content: center;
}
.icon-text-block {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  margin: 1rem;
}
.quick-links {
  display: grid;
  grid-template-columns: 1fr;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.quick-link-box {
  display: grid;
  grid-template-rows: min-content auto min-content;
  grid-template-areas:
    "quick-link-title"
    "quick-link-image"
    "quick-link-button";
  margin: 0.5rem;
}
.quick-link-nav {
  display: none;
}
.quick-link-title {
  grid-area: quick-link-title;
  background-color: var(--ajax-dark-gray);
  font-size: 2.5rem;
  padding: 1rem;
  margin: 0px;
  color: white;
  text-transform: uppercase;
}
.quick-link-image {
  grid-area: quick-link-image;
  display: grid;
  background-color: var(--ajax-dark-gray);
  align-items: end;
}
.quick-link-button {
  grid-area: quick-link-button;
  margin-top: 0.5rem;
}
.grey-box {
  background-color: var(--ajax-dark-gray);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  font-weight: 600;
}
.big-header-link {
  padding-top: 1rem;
  color: #f3f3f3;
  font-size: 1.5rem;
  text-align: center;
  display: inline-block;
}
.big-header-link:hover {
  color: white;
}
#header-social-btns {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
/* col layouts =============================================================================*/
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-2-1,
.col-1-2,
.col-1-2-1,
.col-logo {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  margin: 0 auto 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}
.col-2-1 {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
.col-3-1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 1rem;
}
.col-1-3 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 1rem;
}
/* Button Stuff ====================================================================================================================== */
.btn {
  display: inline-block;
  font-size: small;
  padding: 0.5rem;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  align-items: center;
  border: none;
}
.btn-sm {
  font-size: small;
  padding: 0.4rem;
  text-transform: none;
}
.btn:hover {
  cursor: pointer;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn-block {
  display: block;
  box-sizing: border-box;
}
.btn-primary {
  color: #fff;
  background-color: var(--ajax-blue);
  border-color: var(--ajax-blue);
}
.btn-primary:hover {
  color: #fff;
  background-color: var(--ajax-blue-light);
  border-color: var(--ajax-blue-light);
}
.btn-primary:disabled {
  color: #fff;
  background-color: var(--ajax-blue-light);
  border-color: var(--ajax-blue-light);
}
.btn-secondary {
  color: black;
  background-color: var(--ajax-gray);
  border-color: var(--ajax-gray);
}
.btn-secondary:hover {
  color: #fff;
  background-color: var(--ajax-dark-gray);
  border-color: var(--ajax-dark-gray);
}
.btn-secondary .active,
.btn-secondary:disabled {
  color: #fff;
  background-color: var(--ajax-dark-gray);
  border-color: var(--ajax-dark-gray);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:disabled {
  color: #fff;
  background-color: #d1828a;
  border-color: #d1828a;
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:disabled {
  color: #212529;
  background-color: #fde292;
  border-color: #fde292;
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:disabled {
  color: #fff;
  background-color: #90cc9e;
  border-color: #90cc9e;
}
.btn-top {
  padding: 0.5rem;
  font-size: small;
  margin-top: 0px;
  border-radius: 0px 0px 3px 3px;
  color: #fff;
  background-color: #000;
  border-color: #000;
  text-decoration: none;
}
.btn-top:hover {
  background-color: #3c3c3c;
  text-decoration: none;
}
.feature-btns {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
}
.feature-btn {
  font-weight: 600;
}
.top-buttons {
  z-index: 1;
}
/* Product Layouts ======================================================================================================================= */
.product-square {
  text-align: center;
  display: grid;
  grid-template-rows: min-content min-content 1fr min-content min-content;
  grid-template-areas:
    "product-image"
    "product-title"
    "product-description"
    "product-price"
    "product-button";
}
.product-line {
  display: grid;
  align-items: center;
  grid-template-columns: 20% 1fr 20%;
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas:
    "product-image product-title product-price"
    "product-image product-description product-button";
}
/* .product-image {
  grid-area: product-image;
} */
.product-image {
  grid-area: product-image;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  /* This creates a square aspect ratio */
  text-align: center; /* This centers the image horizontally */
  display: flex; /* This centers the image vertically */
  justify-content: center; /* This centers the image horizontally within the flex container */
  align-items: center; /* This centers the image vertically within the flex container */

  /* Add any other styles needed for the grid area */
}

.product-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* This centers the image both vertically and horizontally */
  max-width: 100%;
  max-height: 100%;
  /* This makes sure the image fits inside the square */
}

.product-title {
  grid-area: product-title;
  align-self: end;
  height: 8em;
}
.product-description {
  grid-area: product-description;
  align-self: start;
}
.product-price {
  grid-area: product-price;
  align-self: end;
  text-align: center;
}
.product-button {
  grid-area: product-button;
  align-self: start;
  text-align: center;
}
/* Typography stuff ====================================================================================================================== */
body {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
}
.mb-2 {
  margin-bottom: 1rem;
}
p {
  padding: 1rem;
}
.text-left {
  text-align: center;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.index-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5em;
}
.hidden {
  transition: visibility 0.5s, opacity 0.5s;
  visibility: hidden;
  opacity: 0;
}
.show {
  transition: visibility 0.5s, opacity 0.5s;
  visibility: visible;
  opacity: 1;
}
.list-group {
  list-style-type: none;
  padding: 0;
  overflow: hidden;
  margin: 0rem -1rem -1rem -1rem;
}
.list-group li {
  border-bottom: 1px solid darkgray;
}
.list-group li:first-child {
  border-top: 1px solid darkgray;
}
.list-group li:last-child {
  margin-bottom: 1rem;
}
.list-group li a {
  display: inline-block;
  width: calc(100% - 2rem);
  text-decoration: none;
  color: black;
  padding: 0.5rem 1rem;
}
.list-group li a:hover {
  background-color: darkgray;
}
.header-title {
  font-size: 2rem;
  text-align: center;
}
.white-link a {
  font-weight: bold;
  color: white;
}
/* Navbar stuff ====================================================================================================================== */
nav,
.nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
}
nav ul,
.nav ul,
#menu,
#menu2 {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
}
nav li a,
.nav li a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  color: white;
}
nav li a:hover,
.nav li a:hover {
  background-color: white;
  color: black;
}
#menu li a,
#menu2 li a {
  text-align: center;
}
nav #menu li,
.nav #menu li,
nav #menu2 li,
.nav #menu2 li {
  display: inline-block;
}
nav #menu li a,
.nav #menu li a,
nav #menu2 li a,
.nav #menu2 li a {
  padding: 1rem;
  width: auto;
}
.big-menu-link {
  font-size: 1.5rem;
}
.nav-grid {
  display: none;
  grid-template-columns: 1fr auto;
  align-items: center;
}
#mobile-menu {
  display: flex;
  justify-content: space-around;
}
#mobile-menu li {
  display: inline-block;
  box-sizing: border-box;
}
#mobile-menu li a {
  padding: 1rem;
}
#mobile-menu-dropdown {
  display: none;
}
#mobile-menu-dropdown li {
  display: block;
}
/* Modal styling ====================================================================================================================== */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: 55px auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
  border-radius: 5px;
}

/* The Close Button */
.modalClose {
  color: #aaa;
  position: absolute;
  top: 0px;
  right: 1rem;
  font-size: 28px;
  font-weight: bold;
}
.modalClose:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Form styling ====================================================================================================================== */
input,
textarea,
select {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  border-radius: 3px;
  border: solid 1px #ccc;
  padding: 0.4em;
  box-sizing: border-box;
}
.price {
  display: inline-block;
  position: relative;
  width: 100%;
}
.price input {
  padding-left: 1em;
}
.price:before {
  position: absolute;
  content: "£";
  left: 0.4em;
  top: calc(0.4em + 1px);
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
}
.form-control {
  width: 100%;
}
/* Layout Objects ================================================= */
.card {
  text-align: center;
  border: 1px solid darkgray;
  border-radius: 5px;
  padding: 1rem;
  background-color: white;
}
.img-fluid {
  max-width: 100%;
}
.banner-icon {
  height: 3rem;
}
.banner-text {
  font-weight: bold;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding-left: 1rem;
}
.search-input-wrapper {
  position: relative;
}
.search-input-icon {
  position: absolute;
  right: 1rem;
  top: calc(
    50% - 0.5em
  ); /* Keep icon in center of input, regardless of the input height */
}
.pagination {
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
/* Carousel Stuff ================================================= */
.carousel-container {
  display: inline-block;
  margin-left: 10%;
  margin-top: 5%;
}
.para-div {
  background-color: rgba(36, 171, 225, 0.767);
  color: white;
  /* display: inline-block; */
  padding: 2rem 2rem 1rem 2rem;
  transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
}
.para-div h1 {
  margin: 0;
}
.carousel-text,
.carousel-btn-text {
  transform: skew(30deg);
  -webkit-transform: skew(30deg);
  -moz-transform: skew(30deg);
  -o-transform: skew(30deg);
}
.carousel-text {
  margin: 0rem 4rem;
}
.carousel {
  height: 100%;
  width: 100%;
  background-position: center;
}
.carousel-btn {
  background-color: #6f6f6f;
  color: white;
  transform: skew(-30deg);
  -webkit-transform: skew(-30deg);
  -moz-transform: skew(-30deg);
  -o-transform: skew(-30deg);
  padding: 1rem;
  display: inline-block;
  margin-top: -1rem;
  margin-left: 10%;
  margin-right: auto;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
}
.carousel-btn:hover {
  background-color: #9f9f9f;
  color: black;
}
.mySlides {
  background-repeat: no-repeat;
  background-position: center;
}
.dtr-details {
  background-color: white;
}
#big-image {
  max-height: 14.5rem;
}
@media screen and (min-width: 640px) {
  #admin-grid-container {
    grid-template-columns: 15rem auto;
    grid-template-rows: min-content min-content auto min-content;
    grid-template-areas:
      "nav nav"
      "sidebar header"
      "sidebar main"
      "footer footer";
  }
  .col-3-1 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #priceSpan {
    font-size: 2.5rem;
  }
  .footer-logo {
    max-width: 40%;
    margin-left: 0;
    margin-right: auto;
  }
  .display-640 {
    display: inline-block;
  }
  .hide-640 {
    display: none;
  }
  .btn-sm {
    font-size: small;
    padding: 0.4rem !important;
    text-transform: none !important;
  }
  .btn-block {
    width: 100%;
    display: block;
  }
  .btn-top {
    padding: 1rem;
    font-size: initial;
  }
  .quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-1 {
    grid-template-columns: 1fr;
  }
  .col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-7 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-8 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-9 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-10 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-11 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-12 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-1-2 {
    grid-template-columns: 1fr 1fr;
  }
  .col-1-2-1 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  .nav-grid {
    display: grid;
  }
  #mobile-menu {
    display: none;
  }
  #hero {
    display: block;
  }
  .btn {
    font-size: initial;
    padding: 1rem;
  }
  .galleryImage {
    width: 22%;
  }
  .display-768 {
    display: inline-block;
  }
  .hide-768 {
    display: none;
  }
  .feature-btns {
    grid-template-columns: repeat(4, 1fr);
  }
  .col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .col-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-7 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-8 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-9 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-10 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-11 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-12 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .col-1-2-1 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .container {
    min-width: 758px;
  }
  .banner-text {
    font-size: 1rem;
  }
  #product-top {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-areas:
      "big-image-holder product-info product-side"
      "product-gallery product-gallery product-side";
  }
}
@media screen and (min-width: 992px) {
  .col-3-1 {
    display: grid;
  }
  .galleryImage {
    width: 18%;
  }
  .footer-logo {
    max-width: 30%;
    margin-left: 0;
    margin-right: auto;
  }
  .display-992 {
    display: inline-block;
  }
  .hide-992 {
    display: none;
  }
  .big-header-link {
    padding-top: 0;
    color: #f3f3f3;
    font-size: 1.5rem;
    text-align: right;
  }
  #header-social-btns {
    display: none;
  }
  #productDetailGrid {
    grid-template-columns: 3fr 1fr;
  }
  .header-title {
    text-align: left;
  }
  .col-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .col-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .col-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .col-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .col-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .col-10 {
    grid-template-columns: repeat(10, 1fr);
  }
  .col-11 {
    grid-template-columns: repeat(11, 1fr);
  }
  .col-12 {
    grid-template-columns: repeat(12, 1fr);
  }
  .col-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .col-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .col-1-2-1 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  #nav-burger {
    display: none;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  #src {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* columns: 2;
        column-gap: 0; */
  }
  #src li {
    border: none;
  }
  #src li a {
    margin: 1rem;
    border: darkgray solid 1px;
    border-radius: 3px;
    width: calc(100% - 4rem);
  }
  .col-logo {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-text-container .title {
    font-size: 2rem;
  }
  .hero-text-container .subtitle {
    font-size: 1.5rem;
  }
  .container {
    min-width: 982px;
  }
  .header-title {
    font-size: 1rem;
  }
  .quick-links {
    grid-template-columns: repeat(4, 1fr);
  }
  .quick-link-nav {
    display: grid;
  }
}
@media screen and (min-width: 1200px) {
  #product-gallery {
    justify-content: flex-start;
  }
  .galleryImage {
    width: 15%;
  }
  .display-1200 {
    display: inline-block;
  }
  .hide-1200 {
    display: none;
  }
  .col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .container {
    min-width: 1190px;
  }
  .header-title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1330px) {
  .display-1330 {
    display: inline-block;
  }
  .hide-1330 {
    display: none;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1700px;
  }
  .display-1800 {
    display: inline-block;
  }
  .header-title {
    font-size: 2rem;
  }
}

/* Table styling */
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: black;
  vertical-align: top;
  border-color: #9f9f9f;
}
.table>thead {
  vertical-align: bottom;
  font-size:large;
  font-weight: bold;
}
.table th{
  padding: 1rem;
}
.table td{
  padding: .5rem;
}
.table>tbody {
  vertical-align: inherit;
}
.table-striped>tbody>tr{
  border-color: #9f9f9f;
}
.table-striped>tbody>tr:nth-of-type(odd)>* {
  background-color: #d8d8d8;
}
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}