@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,600");

/* Global css start */
* {
  box-sizing: border-box;
  margin: 0;
}

#wrapper {
  --theme-color: #664e0c;
  --hover-color: #e7ac19;
  --selection-color: #e7ac19;
  --font-color: #000000;
  --border-color: #00000000;
  --border-width: 0px;
  --border-radius: 0px;
  --header-border-color: #e7ac19;
  --header-border-width: 8px;
  --header-bg-color: #000;
  --header-underline-color: #fff;
  --header-underline-width: 0;
  --gallery-border-color: #e5e5e5;
  --gallery-border-width: 1px;
  --gallery-border-radius: 0;
  --why-us-bg: #fffaeb;
  --tab-bg-color: #fffaeb;
  --gallery-bg-color: #ffffff;

  background-color: #fff;
  border-top: 2px solid var(--theme-color);
  color: var(--font-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin: auto;
}

.header-container {
  background-color: var(--header-bg-color);
}

.gallery-container {
  background-color: var(--gallery-bg-color);
}

.main-container {
  padding-top: 30px;
}

h1,
h3,
h4 {
  font-weight: 400;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

a {
  color: var(--font-color);
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s linear;
}

a:hover,
a:focus {
  color: initial;
  text-decoration: none;
}

.button {
  font-size: 12px;
  line-height: 18px;
  padding: 8px 12px;
}

.button > span {
  position: relative;
}

.button:hover > span > span::after,
.button:focus > span > span::after {
  opacity: 1;
}

#signup_button {
  background-color: var(--selection-color);
}

#signup_button:hover,
#signup_button:focus {
  background-color: var(--hover-color);
}

img {
  max-width: 100%;
}

.container {
  padding-right: 0;
  padding-left: 0;
  max-width: 1050px;
  margin: auto;
}

.left {
  float: left;
}

.right {
  float: right;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

#wrapper h3 {
  color: var(--theme-color);
  font-size: 16px;
  line-height: 20px;
}
/* Global css end */

/* Header css start */
#header {
  border-bottom-width: var(--header-underline-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-underline-color);
  display: flex;
  margin: auto;
  max-width: 1050px;
  min-height: 100px;
  padding-bottom: 0;
}

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

.logo {
  max-height: 55px;
}

#greeting_and_nav_container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#greeting {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.6;
  margin-top: 24px;
  margin-bottom: 14px;
}

#nav {
  font-size: 14px;
}

#header.preset_2 {
  flex-direction: row-reverse;
}

.preset_2 #greeting_and_nav_container {
  text-align: left;
}

.preset_3 #brand {
  margin-top: 20px;
}

#header.preset_3 {
  flex-direction: column;
}

#header.preset_3 #greeting {
  margin: 15px 0;
}

.preset_3 #greeting_and_nav_container {
  text-align: center;
}

.preset_3 #nav a {
  padding-bottom: 8px;
}

.preset_4 #greeting_and_nav_container {
  text-align: left;
  margin-left: 90px;
}

#nav li {
  display: inline-block;
  margin-left: 2.5rem;
}

#nav li:first-child {
  margin-left: 0;
}

#nav a {
  color: #fff;
  position: relative;
  line-height: 20px;
  padding-top: 16px;
  padding-bottom: 24px;
}

#nav a:hover {
  color: var(--hover-color) !important;
}

#nav a::after,
#footer ul li a:after,
#categories a::after,
#helpful_links a::after,
#view_all_reviews a::after {
  background-color: var(--hover-color);
  content: "";
  display: block;
  height: 2px;
  opacity: 0;
  transition: all 0.5s;
}

#nav ul li a::after,
#footer ul li a:after {
  height: 4px;
  position: relative;
  bottom: -8px;
  width: 32px;
  margin: 0 auto;
}

#nav ul li a:hover::after,
#footer ul li a:hover::after,
#view_all_reviews a:hover::after {
  opacity: 1;
}
/* Header section */

/* Common gallery start */
#hero {
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}

#why-us ul {
  display: flex;
  text-align: left;
  justify-content: center;
  font-size: 12px;
}

#why-us li {
  background-color: var(--why-us-bg);
  border-radius: var(--border-radius);
  display: flex;
  padding: 12px 12px 12px 16px;
  align-items: center;
}

#why-us li:not(:last-child) {
  margin-right: 24px;
}

#why-us:not(.fw) li {
  margin-bottom: 12px;
}

#why-us.fw li {
  flex-basis: 25%;
}

#why-us i {
  color: var(--selection-color);
  font-size: 1.6rem;
  margin-right: 16px;
}

.why_us__heading {
  font-family: "Montserrat", sans-serif;
  color: var(--theme-color);
  margin-bottom: 6px;
}

.why_us__content {
  line-height: 16px;
}

#title-price {
  display: flex;
  margin-top: 32px;
}

#title-price #title {
  flex-basis: 775px;
  color: var(--theme-color);
  text-align: left;
  margin-right: auto;
}

#title-price #price_container {
  display: flex;
}

#title-price #price_container .label {
  font-size: 16px;
  color: var(--theme-color);
  margin-right: 8px;
  margin-top: 3px;
  line-height: 24px;
}

#title-price #price_container #price {
  color: var(--selection-color);
}

#hero #gallery {
  width: 500px;
  margin: auto;
}

.gallery {
  min-height: 568px;
  position: relative;
  margin-top: 32px;
}

.gallery .gallery-thumb {
  border-width: var(--gallery-border-width);
  border-style: solid;
  border-color: var(--gallery-border-color);
  border-radius: var(--gallery-border-radius);
  cursor: pointer;
  height: 52px;
  width: 52px;
  position: absolute;
  overflow: hidden;
  transition: border 0.5s;
  z-index: 1;
  bottom: 0;
}

.gallery .gallery-base {
  border: 1px solid;
  border-color: var(--gallery-border-color);
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.5s;
  width: 500px;
  max-height: 500px;
}

.gallery .gallery-thumb > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.gallery .gallery-thumb:hover,
.gallery .gallery-thumb:focus {
  border-color: var(--hover-color);
}

.gallery input {
  display: none;
}

.gallery input:checked + .gallery-thumb {
  border-color: var(--selection-color);
}

.gallery input:checked + .gallery-thumb + .gallery-base {
  opacity: 1;
}

.gallery-thumb {
  min-width: 52px;
  display: none;
}

.gallery input#scroll-left-input:checked ~ .gallery-thumb:nth-child(-n + 22),
.gallery input#scroll-right-input:checked ~ .gallery-thumb:nth-child(n + 22) {
  display: inline-block;
  /* transition: all 0.5s linear; */
}

/* .gallery input#scroll-left-input:checked ~ .scroll-left,
.gallery input#scroll-right-input:checked ~ .scroll-right {
  color: var(--theme-color);
} */

.gallery-thumb:nth-of-type(2),
.gallery-thumb:nth-of-type(9) {
  left: 20px;
}

.gallery-thumb:nth-of-type(3),
.gallery-thumb:nth-of-type(10) {
  left: 88px;
}

.gallery-thumb:nth-of-type(4),
.gallery-thumb:nth-of-type(11) {
  left: 156px;
}

.gallery-thumb:nth-of-type(5),
.gallery-thumb:nth-of-type(12) {
  left: 224px;
}

.gallery-thumb:nth-of-type(6),
.gallery-thumb:nth-of-type(13) {
  left: 292px;
}

.gallery-thumb:nth-of-type(7),
.gallery-thumb:nth-of-type(14) {
  left: 360px;
}

.gallery-thumb:nth-of-type(8),
.gallery-thumb:nth-of-type(15) {
  left: 428px;
}

.scroll-left,
.scroll-right {
  position: absolute;
  bottom: 18px;
  width: 10px;
  height: 16px;
  cursor: pointer;
  color: var(--selection-color);
}

.scroll-left {
  left: 0px;
}

.scroll-right {
  right: 0px;
}

#action-buttons {
  margin-top: 32px;
}

#action-buttons > a {
  color: #664e0c;
  margin-right: 10px;
  border: 1px solid var(--hover-color);
  transition: all 0.5s;
}

#action-buttons > a:hover {
  background-color: var(--hover-color) !important;
  border-color: none;
  color: #000;
}

/* gallery preset_2 */
.preset_2 #title-price {
  order: 1;
  margin-top: 48px;
}

.preset_2 #title-price #title {
  margin-top: 0px;
}

.preset_2 #gallery {
  order: 2;
}

.preset_2 #why-us {
  order: 3;
}

.preset_2 #action-buttons {
  order: 4;
}

/* gallery preset_3 */
.preset_3 #title-price {
  order: 1;
  margin-top: 48px;
}

.preset_3 #title-price #title {
  margin-top: 0px;
}

.preset_3 #gallery {
  order: 3;
}

.preset_3 #why-us {
  order: 2;
}

.preset_3 #action-buttons {
  order: 4;
}

/* gallery preset_4 */
.preset_4 #title-price {
  order: 1;
  margin-top: 48px;
}

.preset_4 #title-price #title {
  margin-top: 0px;
}

.preset_4 #gallery {
  order: 3;
}

.preset_4 .gallery .gallery-base {
  top: unset;
  bottom: 0;
}

.preset_4 .gallery .gallery-thumb {
  top: 0;
}

.preset_4 .scroll-left,
.preset_4 .scroll-right {
  top: 18px;
  bottom: unset;
}

.preset_4 #why-us {
  order: 2;
}

.preset_4 #action-buttons {
  order: 4;
}

/* gallery preset_5 */
.preset_5 #title-price {
  order: 2;
}

.preset_5 #title-price #title {
  margin-top: 0px;
}

.preset_5 #gallery {
  order: 1;
}

.preset_5 #why-us {
  order: 3;
}

.preset_5 #action-buttons {
  order: 4;
}
/* Common gallery end */

#description {
  font-size: 14px;
  margin-top: 16px;
}

#description ul {
  list-style: initial;
}

#description strong {
  font-weight: 700;
}

.title {
  font: 400 24px "Montserrat", sans-serif;
}

.label {
  font-size: 14px;
  margin-bottom: 0;
}

#price {
  color: var(--theme-color);
  font-size: 24px;
}

.panel {
  background-color: transparent;
  border-width: var(--border-width);
  border-style: solid;
  border-color: var(--border-color);
  border-radius: var(--border-radius);
  padding: 0;
}

.tab {
  border-radius: var(--border-radius);
  border-width: var(--border-width);
  border-style: solid;
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}
#tab label:first-of-type {
  border-radius: var(--border-radius) 0 0 0;
}
#related_products_heading {
  border-radius: var(--border-radius) 0 0 0;
}

.panel-header {
  background-color: #fffaeb;
  border-left-width: 8px;
  border-left-style: solid;
  border-left-color: var(--selection-color);
  color: var(--theme-color);
  display: inline-block;
  margin-bottom: 12px;
}

#feedbacks .panel-header {
  margin-bottom: 14px;
}

.panel-header h3 {
  margin-bottom: 0;
  padding: 8px 24px;
}

.panel-content p {
  line-height: 1.75;
}

.tab {
  position: relative;
}

.tab input {
  display: none;
}

.tab .tab-header {
  background-color: var(--tab-bg-color);
  color: #676767;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  padding: 8.5px 14px;
  width: 20%;
  font-weight: 300;
  position: absolute;
  top: 0;
  text-align: center;
  z-index: 1;
  transition: all 0.5s;
}

.tab .tab-header:nth-of-type(1) {
  left: 0;
  padding-left: 24px;
}

.tab .tab-header:nth-of-type(2) {
  left: 20%;
}

.tab .tab-header:nth-of-type(3) {
  left: 40%;
}

.tab .tab-header:nth-of-type(4) {
  left: 60%;
}

.tab .tab-header:nth-of-type(5) {
  left: 80%;
}

.tab .tab-content {
  display: none;
  opacity: 0;
  width: 100%;
  margin-top: 16px;
}

.tab .tab-header:nth-of-type(1) {
  border-left: 8px solid var(--selection-color);
}

.tab input:checked + .tab-header {
  color: var(--theme-color);
  position: relative;
  font-weight: 600;
}

.tab .tab-header:hover,
.tab .tab-header:focus {
  color: var(--hover-color) !important;
}

.tab .tab-header::after {
  content: "";
  height: 2px;
  position: absolute;
  left: 50%;
  top: 100%;
  width: 32px;
  background: var(--hover-color);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.tab input:checked + .tab-header::after,
.tab .tab-header:hover::after,
.tab .tab-header:focus::after {
  opacity: 1;
}

.tab input:checked + .tab-header + .tab-content {
  display: block;
  opacity: 1;
}

.tab-content p:not(:last-child) {
  font-size: 14px;
  margin-bottom: 2em;
}

.tab-content ul {
  list-style-type: initial;
}

#hf_links_and_nl_wrapper {
  display: flex;
}

#category_list {
  font-size: 12px;
}

#categories ul,
#helpful_links ul {
  margin-bottom: 0;
}

#categories ul {
  display: flex;
  flex-wrap: wrap;
}

#helpful_links {
  width: 30%;
}

#categories li {
  margin-bottom: 10px;
  flex-basis: 25%;
}

#categories li:last-child,
#helpful_links li:last-child {
  margin-bottom: 0;
}

#categories ul li a:hover,
#helpful_links a:hover {
  color: var(--hover-color);
}

#helpful_links #helpful_link_list {
  font-size: 12px;
  line-height: 24px;
}

#helpful_links,
#newsletter,
#mid_left_banner_one_url {
  margin-right: 30px;
}

#newsletter {
  background-color: #fffaeb;
  border-radius: var(--border-radius);
  color: #ffffff;
  margin-bottom: 4px;
  padding: 24px;
  text-align: left;
  width: 344px;
}

#newsletter h3 {
  font-size: 14px;
  color: var(--theme-color);
}

#newsletter #newsletter_icon {
  color: var(--selection-color);
  font-size: 2.5rem;
  margin: 10px 0;
}

#newsletter p {
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 16px;
  color: black;
}

#mid_left_banners {
  text-align: center;
  display: flex;
}

#mid_left_banners > img {
  margin-bottom: 10px;
}

#mid_left_banner_one_url img,
#mid_left_banner_two_url img {
  border-radius: var(--border-radius);
}

#technical_information {
  margin-bottom: 0;
}

#technical_information .panel-header {
  margin-bottom: 0;
}

#item_specifics_heading {
  margin-bottom: 16px;
}

#item_specifics li {
  padding-bottom: 10px;
  flex-basis: 20%;
}

#item_specifics ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

#item_specifics_heading {
  font-size: 14px;
}

#item_specifics li strong {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: var(--selection-color);
}

#item_specifics li span {
  font-size: 14px;
  color: #000000;
  line-height: 24px;
}

#custom_block {
  margin-top: 30px !important;  /* update custom block spacing problem 19/1/2024 */
}

#custom_block_content {
  font-size: 14px;
  margin-top: 7px;
}

#description p {
  margin-bottom: 32px;
}

#description_banner {
  text-align: center;
}

#description_banner_img_url {
  border-radius: var(--border-radius);
}

#feedbacks .panel-content {
  padding-right: 0;
}
#customer_reviews {
  color: var(--font-color);
  width: 100%;
}

#customer_reviews tr th {
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
  padding-bottom: 10px;
  text-align: left;
}

#customer_reviews tr th:first-child {
  width: 75%;
}

#customer_reviews tr th:last-child {
  width: 25%;
}

#customer_reviews tr td {
  font-size: 14px;
  padding: 10px 10px 10px 40px;
  position: relative;
}

#customer_reviews .review {
  font-weight: 400;
  line-height: 24px;
}

#customer_reviews .reviewed-product {
  color: #666666;
  font-size: 12px;
}

#customer_reviews tr td:nth-child(odd) i {
  color: #80c366;
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#customer_reviews tr td:nth-child(even) {
  text-align: right;
  padding: 0;
}

#view_all_reviews {
  margin-bottom: 0;
  padding-top: 10px;
}

#mini_banners {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#mini_banners a {
  max-width: 340px;
  margin-bottom: 15px;
}

#mini_banners a:not(:nth-child(3n + 3)) {
  margin-right: 15px;
}

#mini_banners a img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.mini_banner_url_crystalyst {
    overflow: hidden;
}

.mini_banner_url_crystalyst > img {
  border-radius: var(--border-radius);
  transition: 0.5s all ease-in-out;
}

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

#related_products .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

#related_products {
  border-width: var(--border-width);
  border-style: solid;
  border-color: var(--border-color);
  border-radius: var(--border-radius);
}

#related_products h3 {
  border-left-width: 8px;
  border-left-style: solid;
  border-left-color: var(--selection-color);
  padding: 8px 24px;
  display: inline-block;
  background-color: #fffaeb;
  margin-bottom: 12px;
}

.left.product {
  margin-top: 24px;
}

#related_products .product > a {
  border: 1px solid;
  border-color: var(--gallery-border-color);
  display: flex;
  align-items: center;
  width: 240px;
  height: 240px;
  margin-bottom: 24px;
  overflow-y: hidden;
}

#related_products .product img {
  background-image: url("https://etg.boostontime.com/public/img/no-image.png");
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#related_products .product h4 {
  font: 14px "Montserrat", sans-serif;
  text-align: left;
}

#related_products .product h4 a {
  line-height: 24px;
  transition: all 0.4s;
}

#related_products .product h4 a:hover {
  color: var(--hover-color);
}

#related_products .product .price {
  color: var(--selection-color);
  display: block;
  text-align: left;
  margin-top: 16px;
  font-weight: 600;
  line-height: 28px;
}

#footer {
  display: flex;
  align-items: center;
}

#footer nav {
  flex-grow: 1;
  font-size: 12px;
}

#footer ul {
  display: flex;
  justify-content: flex-end;
}

#footer ul li {
  display: inline-block;
  margin-left: 1rem;
}

#footer ul li a {
  color: white;
  line-height: 20px;
}

#footer ul li a:hover {
  color: var(--hover-color) !important;
}

.footer-container {
  background-color: var(--header-bg-color);
  padding-top: 37px;
  padding-bottom: 37px;
}

/* footer presets */
.preset_2 #footer {
  flex-direction: row-reverse;
}

.preset_2 #footer ul {
  justify-content: flex-start;
}

.preset_3 #footer {
  flex-direction: column;
}

.preset_3 #footer nav {
  margin-top: 20px;
}

.preset_3.footer-container,
.preset_4.footer-container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.preset_4 #footer {
  flex-direction: column-reverse;
}

.preset_4 #footer nav {
  margin-bottom: 20px;
}
/* footer presets end */

.bold {
  font-weight: 600;
}
.italic {
  font-style: italic;
}
.underline {
  text-decoration: underline;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.hide {
  display: none !important;
}
.margin-right-0 {
  margin-right: 0 !important;
}

@media only screen and (max-width: 900px) {
  /* common gallery for tab */
  .gallery .gallery-base {
    left: 126px !important;
  }

  #hero #gallery {
    width: 672px !important;
    height: 500 !important;
  }

  .gallery {
    min-height: 500px !important;
  }

  .gallery .gallery-thumb {
    width: 60px;
    height: 60px;
  }

  .scroll-left {
    bottom: unset !important;
    top: -4px !important;
  }

  .scroll-right {
    top: unset !important;
    bottom: -4px !important;
  }

  .scroll-left,
  .scroll-right {
    position: absolute;
    cursor: pointer;
    left: 22px !important;
    color: rgba(0, 0, 0, 0.6);
    height: 16px;
    width: 10px;
  }

  .gallery {
    margin-top: 0;
  }

  #greeting {
    margin-top: 0;
  }

  #title-price {
    order: 2;
  }

  #why-us {
    order: 3;
  }

  #action-buttons {
    order: 4;
    text-align: left;
  }

  #why-us ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  #why-us li:not(:last-child) {
    margin-right: unset;
  }

  .why_us__heading {
    margin-top: 15px;
  }

  #why-us li {
    flex-direction: column;
    padding: 20px;
  }

  #title-price {
    display: grid;
  }

  #title-price {
    margin-top: 0 !important;
  }

  #title-price #title {
    margin-bottom: 24px;
  }

  #title-price #price_container {
    display: unset;
  }

  #item_specifics li {
    flex-basis: 25%;
  }

  #nav {
    display: none;
  }

  #related_products .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 33px;
  }

  #related_products .product > a {
    width: unset;
    height: unset;
  }

  #mini_banners a:not(:nth-child(3n + 3)) {
    margin-right: unset;
  }

  #mini_banners a {
    height: unset;
  }

  #footer-nav {
    display: none;
  }
}

@media only screen and (max-width: 600px) {
  .gallery-container {
    padding-top: 26px;
  }

  .preset_3 #brand {
    margin-top: 0;
  }

  #nav {
    display: none;
  }

  #greeting {
    margin-top: 0;
  }

  #hero #gallery {
    width: unset !important;
    height: 500 !important;
  }

  #hero #gallery {
    order: 1;
    width: unset;
  }

  .gallery .gallery-base {
    top: unset;
  }

  .preset_4 .scroll-left,
  .preset_4 .scroll-right {
    top: unset;
  }

  #title-price {
    order: 2;
    flex-wrap: wrap;
  }

  #why-us {
    order: 3;
  }

  #why-us ul {
    display: flex;
  }

  #why-us li {
    flex-direction: row;
  }

  .why_us__heading {
    margin-top: 0;
  }

  #action-buttons {
    order: 4;
    text-align: left;
  }

  .preset_1 #title-price,
  .preset_2 #title-price,
  .preset_3 #title-price,
  .preset_4 #title-price,
  .preset_5 #title-price {
    margin-top: 0;
  }

  #title-price #title {
    flex-basis: 100%;
    margin-bottom: 24px;
  }

  #why-us ul {
    flex-wrap: wrap;
  }

  #why-us.fw li {
    flex-basis: 100%;
    flex-wrap: wrap;
    margin-right: 0;
    margin-bottom: 12px;
    padding-left: 20px;
  }

  #why-us i {
    width: 30px;
    align-self: center;
    justify-self: center;
  }

  #item_specifics li {
    flex-basis: 50%;
  }

  #mini_banners a {
    height: unset;
  }

  #mini_banners a:not(:nth-child(3n + 3)) {
    margin-right: 0;
  }

  #footer-nav {
    display: none;
  }
}
