/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks and incorporate additional functionality into the website.
 Author:       Egoy magnaye
 Author URI:   https://www.egoymagnaye.com/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/**
* Text Marquee
*/
.em-marquee--container {
  position: relative;
  overflow: hidden;
  line-height: 1;
}

.em-marquee--inner {
  -webkit-font-smoothing: antialiased;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.em-marquee--part {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0 10px;
}

.em-marquee--part span {
  opacity: 1;
  pointer-events: none;
  /* -webkit-text-fill-color: white; */ /* Will override color (regardless of order) */
  /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black; */
  display: inline-block;
  padding: 0 20px;
}
