/** Shopify CDN: Minification failed

Line 19:12 Expected identifier but found whitespace
Line 19:28 Unexpected "{"
Line 19:37 Expected ":"
Line 19:63 Expected ":"

**/
.text_scroll {
  overflow: hidden;
}
.text_scroll .scroll_inner,
.text_scroll .scroll_inner_main{
  display: flex;
  align-items: center;
  gap: 100px;
}
.text_scroll .scroll_inner{
  animation: translateFull {{ section.settings.scroll_speed }}s linear infinite; 
}
.text_scroll .scroll_inner .scroll_text{
  width: max-content;
  position: relative;
}
.text_scroll .scroll_inner .scroll_text p{
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 1px;
  vertical-align: middle;
}
.text_scroll .scroll_inner .scroll_text::after{
  content:'';
  position: absolute;
  top: 50%;
  right: calc(100% + 50px);
  width: 4px;
  height: 4px;
  border-radius:50%;
  display: block;
  transform:translateY(-50%);
}
