html, body {position: relative; margin: 0; width: 100%; height: 100%; overflow: hidden}


#header {
  height: 8%;
  width: 100%;
  left: 0px;
  top: 0px;
  position: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}

.headerImg {
  max-height: 70%;
  width: auto;
  max-width: 60%;
  position: absolute;
}

#hera-ars {
  height: 66%;
  width: 100%;
  top: 8%;
  position: fixed;
  overflow: hidden;
}

/* #product-name {
  font-family: HelveticaNeue-Light, Helvetica;
  height: 5%;
  width: 100%;
  top: 69%;
  position: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-left: 20px;
} */

#product-options-slider {
  height: 15%;
  width: 100%;
  top: 74%;
  position: fixed;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

#image-slider {
  height: 100%;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

#image-slider img {
  height: 95%;
  width: auto;
  border: 2px solid transparent;
}

#image-slider img.selected {
  border: 2px solid #888888;
}

#bottom-cta {
  font-family: HelveticaNeue-Light, Helvetica;
  font-weight: bold;
  background-color: #000000;
  color: #ffffff;
  height: 7%;
  width: 100%;
  left: 0px;
  top: 89%;
  position: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

#powered-by-shopxr {
  font-family: HelveticaNeue-Light, Helvetica;
  font-size: 11px;
  background-color: #ffffff;
  color: #7F7F7F;
  height: 4%;
  width: 100%;
  left: 0px;
  bottom: 0px;
  position: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* Style the scrollbar track */
::-webkit-scrollbar
{
  height: 8px;
  border-radius: 10px; /* Adjust the border radius as needed */
}
  
  /* Style the scrollbar thumb */
::-webkit-scrollbar-thumb
{
  background-color: #888888; /* Color of the thumb */
  border-radius: 10px; /* Radius of the thumb */
}

/* Style the scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover
{
  background-color: #555555; /* Color on hover */
}