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


#hera-ars {
  height: 78%;
  width: 100%;
  top: 0px;
  position: fixed;
  overflow: hidden;
}

#product-options-slider {
  height: 15%;
  width: 100%;
  top: 78%;
  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: #A4DBD9;
  color: #ffffff;
  height: 7%;
  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 */
}