.product-description {
    border-bottom: 1px solid #E1E8EE;
    margin-bottom: 20px;
  }
  .product-description span {
    font-size: 12px;
    color: #358ED7;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
  }
  .product-description h1 {
    font-weight: 300;
    font-size: 52px;
    color: #43484D;
    letter-spacing: -2px;
  }
  .product-description p {
    font-size: 16px;
    font-weight: 300;
    color: #727d86;
    line-height: 24px;
  }
  .left-column img {
    width: 100%;
    position: relative;
    opacity: 1;
    transition: all 0.3s ease;
  }
   
  .left-column img.active {
    opacity: 1;
  }
  .left-column {
    width: 30%;
    position: relative;
    align-self: center;
  }
   
  .right-column {
    background-color: rgba(255,255,255,0.5);
    border-radius: 4px;
    padding:8px;
  }
  html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
  }
  .product_panel{
    position:absolute;
    left:48px;
    pointer-events: none;
    top: -300%;
    opacity:0;
    transition: opacity 500ms ease 0ms;
  }
  .product_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    width:max-content;
  }
  .hotspot_dot{
    border-radius: 999px;
    background: rgba(230, 66, 21, 0.353);
    border : 6px solid rgb(230, 66, 21);
    height: 30px;
    width: 30px;
    z-index: 11;
    left: 6px;
    top: 6px;
    cursor:pointer;
    position:absolute;
    visibility:visible;
    pointer-events:auto;
    transform-origin:50% 50%;
    transform: translate(0px, 0px) rotate(0deg) scale(0.5, 0.5);
    transition: transform 500ms ease 0ms, border-color 500ms ease 0ms;
    opacity: 1;
  }
  .hotspot_dot:hover{
    transform: translate(0px, 0px) rotate(0deg) scale(0.8, 0.8);
  }

  .hotspot_pulse{
    border-radius: 999px;
    background: rgba(230, 66, 21, 0.196);
    border : 2px solid rgb(230, 66, 21);
    height: 50px;
    width: 50px;
    cursor:pointer;
    position:relative;
    visibility:visible;
    pointer-events:auto;
    transform-origin:50% 50%;
    transform: translate(0px, 0px) rotate(0deg) scale(0.8, 0.8);
    transition: transform 500ms ease 0ms, opacity 500ms ease 0ms;
    opacity: 0;
  }