@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
}

#wrapper {
  --theme-color: #000000;
  --hover-color: #ea2605;
  --selection-color: #ea2605;
  --font-color: #000000;
  --border-color: #ea2605;
  --border-width: 10px;
  --border-radius: 8px;
  --header-border-color: #ffffff;
  --header-border-width: 0;
  --header-bg-color: #f0f1f2;
  --header-underline-color: #ea2605;
  --header-underline-width: 0;
  --gallery-border-color: #fbc12e;
  --gallery-border-width: 1px;
  --gallery-border-radius: 8px;
  --why-us-bg: rgba(234, 39, 5, 0.15);
  --tab-bg-color: #515151;
  --gallery-bg-color: #ffffff;

  background-color: var(--theme-bg-color);
  color: var(--font-color);
  font-family: "Exo 2", sans-serif;
  font-weight: 400;
  margin: auto;
}

.header-container {
  background-color: var(--header-bg-color);
  border-bottom-width: var(--header-underline-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-underline-color);
}

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

.container {
  margin: auto;
  max-width: 1050px;
}

#hero, .main-container {
  padding-top: 64px;
}

h1,
h3,
h4,
strong {
  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.5s;
}


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

.button {
  font-size: 12px;
  line-height: 30px;
  padding: 0 15px;
}

.left {
  float: left;
}
.right {
  float: right;
}

#signup_button {
  background-color: var(--selection-color);
  border-radius: var(--border-radius);
  color: #fff;
  font-weight: bold;
  padding: 9px 20px;
  line-height: 18px;
}

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

#action-buttons > a {
  border-radius: var(--border-radius);
  margin-right: 10px;
  font-size: 12px;
  color: #000000;
  line-height: 18px;
  padding: 9px 20px;
  border: 1px solid var(--border-color);
}

#action-buttons > a:hover,
#action-buttons > a:focus {
  background-color: var(--hover-color);
  color: #fff;
}

img {
  max-width: 100%;
}

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

.container::after {
  clear: both;
  content: "";
  display: none;
}

#wrapper h3 {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  padding: 18px 32px;
  background-color: var(--border-color);
  position: absolute;
  top: -34px;
  border-bottom-width: var(--header-border-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-border-color);
  border-radius: var(--border-radius);
}

#wrapper h3::before {
  content: "";
  width: 50px;
  height: 65px;
  background-color: var(--theme-bg-color);
  position: absolute;
  left: -50px;
}

#header {
  min-height: 112px;
  padding: 25px 0px 30px;
}

#header,
#footer {
  display: flex;
  margin: auto;
  max-width: 1050px;
  border-bottom-width: var(--header-border-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-border-color);
}

#footer {
  align-items: center;
  padding: 37px 0px;
}

.footer-container {
  background-color: #000;
  border-bottom: 1px solid rgba(144, 144, 144, 0.2);
}

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

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

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

.logo {
  max-height: 100px;
}

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

.preset_2 #greeting_and_nav_container {
  order: -1;
}

.preset_2 #greeting {
  padding-left: 10px;
  text-align: left;
}

.preset_2 .nav {
  justify-content: flex-start;
}

.preset_4 #greeting_and_nav_container {
  margin-left: 63px;
}

.preset_4 .text-right {
  text-align: unset;
}

.preset_4 #greeting {
  padding-left: 10px;
  text-align: left;
}

.preset_4 .nav {
  justify-content: flex-start;
}

.preset_3 .nav {
  justify-content: center;
}

#greeting {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.64;
}

#header.preset_3 #greeting {
  margin-top: 15px;
  text-align: center;
}

#nav {
  font-size: 14px;
  margin-top: 20px;
}
/* end */

.nav {
  display: flex;
  justify-content: flex-end;
}

.nav ul {
  margin-bottom: 0;
  position: relative;
}

.nav li {
  display: inline-block;
  margin-left: 1rem;
  position: relative;
}

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

.nav a {
  border-radius: var(--border-radius);
  padding: 5px 12.5px;
  line-height: 20px;
}

#footer .nav a {
  color: #fff;
}

#footer .nav a:hover {
  color: var(--hover-color);
}

#categories ul li a,
#helpful_links ul li a {
  border-radius: var(--border-radius);
  transition: all 0.5s;
  color: var(--font-color);
  line-height: 28px;
}

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

#categories ul li::before,
#helpful_links ul li::before,
.nav ul li::before {
  content: "";
  height: 100%;
  width: 2px;
  background-color: var(--hover-color);
  position: absolute;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

#categories ul li::before,
#helpful_links ul li::before {
  left: -12px;
}

#categories ul li::after,
#helpful_links ul li::after,
.nav ul li::after {
  content: "";
  height: 100%;
  width: 2px;
  background-color: var(--hover-color);
  position: absolute;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

#categories ul li::after,
#helpful_links ul li::after {
  right: -12px;
}

#categories ul li a::before,
#helpful_links ul li a::before,
.nav ul li a::before {
  content: "";
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 3px solid var(--hover-color);
  position: absolute;
  left: 2px;
  top: 12px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

#categories ul li a::before,
#helpful_links ul li a::before {
  left: -10px;
}

#categories ul li a::after,
#helpful_links ul li a::after,
.nav ul li a::after {
  content: "";
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-right: 3px solid var(--hover-color);
  position: absolute;
  right: 0px;
  top: 12px;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

#categories ul li a::after,
#helpful_links ul li a::after {
  right: -10px;
}

#categories ul li a:hover::after,
#categories ul li a:hover::before,
#helpful_links ul li a:hover::after,
#helpful_links ul li a:hover::before,
.nav ul li a:hover::before,
.nav ul li a:hover::after {
  visibility: visible;
  opacity: 1;
}

.nav ul li a:hover {
  color: var(--hover-color) !important;
}

#categories ul li:hover::before,
#categories ul li:hover::after,
#helpful_links ul li:hover::before,
#helpful_links ul li:hover::after,
.nav ul li:hover::before,
.nav ul li:hover::after {
  visibility: visible;
  opacity: 1;
}

#categories ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

#helpful_links ul {
  display: flex;
  flex-direction: column;
}

#categories ul li {
  width: max-content;
  position: relative;
}

#helpful_links ul li {
  position: relative;
  align-self: flex-start;
}

/* Common gallery with scroll start */
#hero {
  display: flex;
  min-height: 540px;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}

#hero #gallery {
  margin: auto;
}

.preset_3 #gallery,
.preset_4 #gallery {
  order: 2;
}

.gallery {
  min-height: 500px;
  position: relative;
  padding-left: 2.25%;
  text-align: center;
  width: 672px;
}

.preset_6 .gallery {
  width: 586px;
}

.preset_5 .gallery,
.preset_7 .gallery,
.preset_8 .gallery {
  width: 610px;
}

.preset_5 .gallery,
.preset_6 .gallery,
.preset_7 .gallery,
.preset_8 .gallery {
  min-height: 605px;
}

.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: 60px;
  width: 60px;
  position: relative;
  overflow: hidden;
  transition: border 0.5s;
  z-index: 1;
}

.preset_1 .gallery .gallery-thumb,
.preset_2 .gallery .gallery-thumb,
.preset_3 .gallery .gallery-thumb,
.preset_4 .gallery .gallery-thumb {
  top: 424px;
}

.preset_2 .gallery .gallery-thumb {
  right: 60px;
}

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

.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) !important;
}

.gallery input {
  display: none;
}

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

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

.gallery {
  display: flex;
  justify-content: flex-start;
  padding-left: 0;
}

.preset_3 .gallery {
  justify-content: flex-end;
}

.preset_2 .gallery {
  justify-content: flex-end;
}

.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;
}

.preset_4 .gallery input#scroll-left-input:checked ~ .gallery-thumb:nth-child(-n + 22),
.preset_4 .gallery input#scroll-right-input:checked ~ .gallery-thumb:nth-child(n + 22) {
  display: inline-block;
  left: 56px;
}

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

.scroll-left,
.scroll-right {
  position: absolute;
  cursor: pointer;
  left: 20px;
  color: rgba(0, 0, 0, 0.6);
}

.preset_4 .scroll-left,
.preset_4 .scroll-right {
  left: 76px;
}

.scroll-left {
  top: -4px;
  height: 20px;
  width: 20px;
}

.scroll-right {
  bottom: -6px;
  height: 20px;
  width: 20px;
}

.preset_2 .scroll-left,
.preset_2 .scroll-right {
  left: unset;
  right: 82px;
}

.preset_3 .scroll-left,
.preset_3 .scroll-right {
  left: unset;
  right: 18px;
}

.preset_6 .scroll-right,
.preset_8 .scroll-right {
  left: 486px;
}

.preset_5 .scroll-right,
.preset_7 .scroll-right {
  left: unset;
  right: -5px;
}

.preset_5 .scroll-right,
.preset_6 .scroll-right,
.preset_7 .scroll-right,
.preset_8 .scroll-right {
  bottom: 19px;
}

.preset_5 .scroll-left,
.preset_6 .scroll-left,
.preset_7 .scroll-left,
.preset_8 .scroll-left {
  bottom: 19px;
  top: unset;
  left: unset;
}

.preset_6 .scroll-left,
.preset_8 .scroll-left {
  left: -5px;
}

.preset_5 .scroll-left,
.preset_7 .scroll-left {
  top: unset;
  right: 486px;
}

.gallery .gallery-thumb {
  position: absolute;
}

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

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

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

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

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

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

.gallery.thumb-right .gallery-thumb {
  right: 0;
}
.gallery.thumb-right .gallery-thumb:nth-of-type(n + 8) {
  right: 60px;
  left: initial;
}

.gallery .gallery-base {
  top: 50%;
  left: 116px;
  transform: translateY(-50%);
}

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

.preset_2 .gallery .gallery-base {
  left: 0px;
}

.preset_7 #gallery,
.preset_5 #gallery {
  order: 2;
}

.preset_5 .gallery .gallery-base,
.preset_6 .gallery .gallery-base,
.preset_7 .gallery .gallery-base,
.preset_8 .gallery .gallery-base {
  top: 42%;
  left: 0px;
}

.preset_7 .gallery .gallery-base,
.preset_5 .gallery .gallery-base {
  left: unset;
  right: 0;
}

.preset_3 .gallery .gallery-base {
  left: 60px;
}

.preset_4 .gallery .gallery-base {
  left: 170px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(2),
.preset_8 .gallery .gallery-thumb:nth-of-type(2),
.preset_6 .gallery .gallery-thumb:nth-of-type(9),
.preset_8 .gallery .gallery-thumb:nth-of-type(9) {
  top: unset;
  bottom: 0px;
  left: 16px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(3),
.preset_8 .gallery .gallery-thumb:nth-of-type(3),
.preset_6 .gallery .gallery-thumb:nth-of-type(10),
.preset_8 .gallery .gallery-thumb:nth-of-type(10) {
  top: unset;
  bottom: 0px;
  left: 84px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(4),
.preset_8 .gallery .gallery-thumb:nth-of-type(4),
.preset_6 .gallery .gallery-thumb:nth-of-type(11),
.preset_8 .gallery .gallery-thumb:nth-of-type(11) {
  top: unset;
  bottom: 0px;
  left: 152px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(5),
.preset_8 .gallery .gallery-thumb:nth-of-type(5),
.preset_6 .gallery .gallery-thumb:nth-of-type(12),
.preset_8 .gallery .gallery-thumb:nth-of-type(12) {
  top: unset;
  bottom: 0px;
  left: 220px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(6),
.preset_8 .gallery .gallery-thumb:nth-of-type(6),
.preset_6 .gallery .gallery-thumb:nth-of-type(13),
.preset_8 .gallery .gallery-thumb:nth-of-type(13) {
  top: unset;
  bottom: 0px;
  left: 288px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(7),
.preset_8 .gallery .gallery-thumb:nth-of-type(7),
.preset_6 .gallery .gallery-thumb:nth-of-type(14),
.preset_8 .gallery .gallery-thumb:nth-of-type(14) {
  top: unset;
  bottom: 0px;
  left: 356px;
}

.preset_6 .gallery .gallery-thumb:nth-of-type(8),
.preset_8 .gallery .gallery-thumb:nth-of-type(8),
.preset_6 .gallery .gallery-thumb:nth-of-type(15),
.preset_8 .gallery .gallery-thumb:nth-of-type(15) {
  top: unset;
  bottom: 0px;
  left: 424px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(2),
.preset_7 .gallery .gallery-thumb:nth-of-type(2),
.preset_5 .gallery .gallery-thumb:nth-of-type(9),
.preset_7 .gallery .gallery-thumb:nth-of-type(9) {
  top: unset;
  bottom: 0px;
  right: 424px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(3),
.preset_7 .gallery .gallery-thumb:nth-of-type(3),
.preset_5 .gallery .gallery-thumb:nth-of-type(10),
.preset_7 .gallery .gallery-thumb:nth-of-type(10) {
  top: unset;
  bottom: 0px;
  right: 356px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(4),
.preset_7 .gallery .gallery-thumb:nth-of-type(4),
.preset_5 .gallery .gallery-thumb:nth-of-type(11),
.preset_7 .gallery .gallery-thumb:nth-of-type(11) {
  top: unset;
  bottom: 0px;
  right: 288px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(5),
.preset_7 .gallery .gallery-thumb:nth-of-type(5),
.preset_5 .gallery .gallery-thumb:nth-of-type(12),
.preset_7 .gallery .gallery-thumb:nth-of-type(12) {
  top: unset;
  bottom: 0px;
  right: 220px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(6),
.preset_7 .gallery .gallery-thumb:nth-of-type(6),
.preset_5 .gallery .gallery-thumb:nth-of-type(13),
.preset_7 .gallery .gallery-thumb:nth-of-type(13) {
  top: unset;
  bottom: 0px;
  right: 152px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(7),
.preset_7 .gallery .gallery-thumb:nth-of-type(7),
.preset_5 .gallery .gallery-thumb:nth-of-type(14),
.preset_7 .gallery .gallery-thumb:nth-of-type(14) {
  top: unset;
  bottom: 0px;
  right: 84px;
}

.preset_5 .gallery .gallery-thumb:nth-of-type(8),
.preset_7 .gallery .gallery-thumb:nth-of-type(8),
.preset_5 .gallery .gallery-thumb:nth-of-type(15),
.preset_7 .gallery .gallery-thumb:nth-of-type(15) {
  top: unset;
  bottom: 0px;
  right: 16px;
}

.preset_1 i.fas.fa-chevron-right::before,
.preset_2 i.fas.fa-chevron-right::before,
.preset_3 i.fas.fa-chevron-right::before,
.preset_4 i.fas.fa-chevron-right::before {
  content: "\f078";
}

.preset_1 i.fas.fa-chevron-left::before,
.preset_2 i.fas.fa-chevron-left::before,
.preset_3 i.fas.fa-chevron-left::before,
.preset_4 i.fas.fa-chevron-left::before {
  content: "\f077";
}
/* Common gallery with scroll end */

.product-description,
.panel,
.tab,
#related_products,
.custom-block-section {
  position: relative;
  border-style: solid;
  border-color: var(--border-color);
  border-width: var(--border-width);
  border-radius: 40px;
  padding: 56px 40px 40px 40px;
}

.tab {
  padding: 0;
}

#description_heading {
  position: absolute;
  top: -34px;
}

#description {
  font-size: 14px;
  color: var(--font-color);
  line-height: 24px;
  font-weight: 500;
}

#description p:not(:last-child) {
  margin-bottom: 24px;
}

#description ul {
  list-style: initial;
}

#description strong {
  font-weight: 700;
}

.title {
  font-size: 24px;
  line-height: 32px;
}

.label {
  color: var(--font-color);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}

#price {
  color: var(--selection-color);
  font-size: 24px;
  line-height: 32px;
  margin-left: 10px;
}

.title {
  margin-bottom: 32px;
}
#price_container,
#why-us {
  margin-bottom: 48px;
}

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

.preset_5 #why-us,
.preset_6 #why-us {
  margin-bottom: 15px;
}

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

#why-us li {
  flex-basis: 50%;
  margin-bottom: 0px;
  position: relative;
  text-align: left;
  align-items: center;
}

#why-us i {
  background-color: var(--why-us-bg);
  border-radius: var(--border-radius);
  color: var(--selection-color);
  text-align: center;
  padding: 19px;
  width: 70px;
  font-size: 22px;
}

.why_us__heading {
  line-height: 20px;
  margin-top: 8px;
  font-size: 14px;
  margin-bottom: 0;
}

.why_us__content {
  color: #515151;
  line-height: 20px;
  font-weight: 500;
  font-size: 14px;
}

.why-us-text {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 32px;
  padding-right: 40px;
  background-color: var(--why-us-bg);
  border-radius: var(--border-radius);
}

.preset_1 .why-us-text,
.preset_2 .why-us-text,
.preset_3 .why-us-text,
.preset_4 .why-us-text,
.preset_5 .why-us-text,
.preset_6 .why-us-text {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 15px;
  background-color: transparent;
}

.preset_5 #why-us li,
.preset_6 #why-us li {
  padding-right: 65px;
  margin-bottom: 20px;
}

.preset_7 #why-us ul,
.preset_8 #why-us ul {
  display: unset;
}

.preset_7 #why-us ul li,
.preset_8 #why-us ul li {
  display: flex;
  margin-bottom: 24px;
}

.preset_7 #why-us ul h4,
.preset_8 #why-us ul h4 {
  margin-top: 0;
}

.preset_7 #why-us ul i,
.preset_8 #why-us ul i {
  margin-right: 8px;
}

.panel {
  background-color: transparent;
  margin-bottom: 48px;
  overflow: visible !important;
}

.tab-header {
  border-bottom-width: var(--header-border-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-border-color);
}

.panel-header {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  color: var(--theme-color);
}

.panel-header h3 {
  border-radius: var(--border-radius);
  display: inline-block;
  margin-bottom: 12px;
  padding: 10px;
}

.panel-content {
  padding: 0 !important;
  font-weight: 500;
}

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

.panel-content p:not(:last-child) {
  margin-bottom: 1rem;
}

.tab {
  margin-bottom: 72px;
}

.tab .tab-header {
  background-color: var(--tab-bg-color);
  position: absolute;
  top: -36px;
  z-index: 1;
  border-radius: var(--border-radius);
  display: inline-block;
  padding: 18px 32px;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.5s;
}

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

.tab .tab-header:nth-of-type(1)::before {
  content: "";
  width: 50px;
  height: 65px;
  background-color: var(--theme-bg-color);
  position: absolute;
  left: -50px;
}

.tab .tab-header:nth-of-type(2) {
  left: 194px;
}
.tab .tab-header:nth-of-type(3) {
  left: 348px;
}
.tab .tab-header:nth-of-type(4) {
  left: 500px;
}
.tab .tab-header:nth-of-type(5) {
  left: 651px;
}

.tab .tab-content {
  display: none;
  padding: 55px 10px 0;
  opacity: 0;
  transition: opacity 0.5s;
  width: 100%;
}

.tab input {
  display: none;
}

.tab-header:first-of-type {
  border-top-left-radius: var(--border-radius);
}

.tab-header:last-of-type {
  border-top-right-radius: var(--border-radius);
}

.tab input:checked + .tab-header {
  background-color: var(--selection-color);
}

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

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

.tab-content p {
  font-size: 14px;
  line-height: 24px;
}
.tab-content ul {
  list-style-type: initial;
}

.tab-content p:not(:last-child) {
  margin-bottom: 1em;
}

.feedback-links-minibanner-etc {
  display: flex;
}

#mid_left {
  width: 280px;
  order: 1;
}

#mid_right {
  width: 722px;
  margin-right: 48px;
}

.category-and-specification {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 22px;
  margin-top: 72px;
}

#category_list,
#helpful_link_list {
  font-size: 14px;
}

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

#newsletter {
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  padding: 40px;
  background: #ffe502;
}

#newsletter h3 {
  margin: 8px 0;
  line-height: 1.5;
  font-size: 14px;
  position: unset;
  background-color: unset;
  padding: 0;
  color: var(--theme-color);
  border-bottom: none;
}

#newsletter #newsletter_icon {
  color: var(--selection-color);
  font-size: 32px;
  margin-bottom: 18px;
}

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

#mid_left_banners {
  text-align: center;
}

#mid_left_banners a {
  margin-bottom: 32px;
}

#mid_left_banners img {
  border-radius: var(--border-radius);
}

#technical_information > .panel-content > * {
  padding-left: 10px;
}

#technical_information {
  margin-bottom: 48px !important;
  order: -1;
}

#item_specifics ul {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 32px;
}

#item_specifics_heading {
  line-height: 24px;
  margin-bottom: 16px;
  display: inline-block;
  border-radius: var(--border-radius);
}

#item_specifics li {
  position: relative;
  padding-right: 10px;
}

#item_specifics li::before {
  content: "";
  width: 8px;
  height: 4px;
  border-radius: 4px;
  background-color: var(--border-color);
  position: absolute;
}

#item_specifics li strong {
  display: block;
  font-size: 14px;
  color: #515151;
  line-height: 20px;
  font-weight: 500;
  margin-top: 8px;
}

#item_specifics li span {
  font-size: 14px;
  color: var(--font-color);
  letter-spacing: 0;
  line-height: 24px;
}

.custom-block-section {
  margin-top: 22px;
  margin-bottom: 48px;
}

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

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

#description_banner {
  margin-bottom: 72px;
  text-align: center;
}

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

#customer_reviews {
  width: 100%;
}

#customer_reviews tr th {
  border-bottom: 1px solid #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  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: 12px 15px 12px 40px;
  position: relative;
}

#customer_reviews tr td:last-of-type {
  padding: 12px 10px 12px 10px;
}

#customer_reviews tr td:first-of-type i {
  color: #80c366;
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

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

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

#customer_reviews tr td:last-of-type {
  text-align: right;
}

#mini_banners {
  margin-bottom: 60px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

#mini_banners a {
  margin-bottom: 13px;
  margin-right: 13px;
  max-width: 232px;
  line-height: 0;
}

#mini_banners a:nth-of-type(3n) {
  margin-right: 0px;
}

#mini_banners img {
  border-radius: var(--border-radius);
}

.mini_banner_url_motoster_d1 {
    overflow: hidden;
}

.mini_banner_url_motoster_d1 > img {
  transition: 0.5s all ease-in-out;
}

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

#related_products {
  position: relative;
}

#related_products h3 {
  border-bottom-width: var(--header-border-width);
  border-bottom-style: solid;
  border-bottom-color: var(--header-border-color);
  border-radius: var(--border-radius);
  display: inline-block;
  margin-bottom: 15px;
}

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

#related_products .product {
  display: grid;
  grid-template-rows: 184px 2fr .5fr;
}

#related_products .product img {
  background-image: url("https://etg.boostontime.com/public/img/no-image.png");
  max-width: 100%;
  border-radius: var(--border-radius);
  background-color: #fff;
}

#related_products .product h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  margin: 30px 0 12px;
}

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

#related_products .product .price {
  color: var(--selection-color);
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
}

#footer {
  margin-top: 67px;
}

.bold {
  font-weight: bold;
}
.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;
}

#title-price-why_us.full-width {
  text-align: center;
  width: 100%;
}

#title-price-why_us.full-width #why-us ul {
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-gap: 0 10px;
}

#title-price-why_us.vc {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#footer.preset_2 .footer-logo {
  order: 2;
}

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

#footer.preset_3 .footer-logo {
  margin-bottom: 15px;
}

#footer.preset_4 .footer-logo {
  margin-top: 15px;
}

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

/* Media query */

/* media query below 900px */
@media (max-width: 900px) and (min-width: 601px) {
  .gallery-container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .preset_7 #why-us ul li,
  .preset_8 #why-us ul li {
    display: unset;
  }

  .why-us-text {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    background-color: transparent;
  }

  .category-and-specification {
    grid-template-columns: 1fr;
  }
  .category-and-specification .hide-small-version {
    display: none;
  }

  #mid_right {
    margin-right: 0;
  }

  #description_banner {
    margin-bottom: 48px;
  }

  .tab {
    border-width: 0px;
  }

  .tab .tab-header {
    top: 0;
  }

  .tab .tab-header:nth-of-type(1)::before {
    content: "";
    width: unset;
    height: unset;
    background-color: unset;
    position: absolute;
    left: unset;
  }
}

/* media query below 600px */
@media (max-width: 600px) {
  .gallery-container {
    padding-top: 12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  #hero {
    padding-bottom: 40px;
  }

  .main-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .preset_7 #why-us ul li,
  .preset_8 #why-us ul li {
    display: unset;
  }

  .preset_7 .why-us-text,
  .preset_8 .why-us-text {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 15px;
    background-color: transparent;
  }

  #why-us {
    margin-bottom: 32px;
  }

  .preset_5 #why-us,
  .preset_6 #why-us {
    margin-bottom: 32px;
  }

  .category-and-specification {
    grid-template-columns: 1fr;
  }

  .category-and-specification .hide-small-version {
    display: none;
  }

  #description_banner {
    margin-bottom: 48px;
  }

  .tab {
    border-width: 0px;
  }

  .tab .tab-header {
    top: 0;
  }

  .tab .tab-header:nth-of-type(1)::before {
    content: "";
    width: unset;
    height: unset;
    background-color: unset;
    position: absolute;
    left: unset;
  }

  #mid_right {
    margin-right: 0;
  }

  #related_products .container {
    grid-template-columns: 1fr;
  }

  #item_specifics .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  #related_products .product {
    grid-template-rows: 290px 2fr .5fr;
  }
}
