#block-eyecatcher p {
  display: inline-block;
  padding-left: 100%;
/* -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);
 transform:translateX(100%); */
  /* Apply animation to this element */
  -moz-animation: example1 15s linear infinite;
  -webkit-animation: example1 15s linear infinite;
  animation: example1 15s linear infinite;
  font-size: 2em;
  font-style: italic;/* 3em; */
}
/* Move it (define the animation) */
@keyframes example1 {
  0% {
    -moz-transform: translate(0, 0);
}
  100% {
    -moz-transform: translate(-100%);
}
}
@keyframes example1 {
  0% {
    -webkit-transform: translate(0, 0);
}
  100% {
    -webkit-transform: translate(-100%);
}
}
@keyframes example1 {
  0% {
    -moz-transform: translate(0, 0); /* Firefox bug fix */
    -webkit-transform: translate(0, 0); /* Firefox bug fix */
    transform: translate(0, 0);
  }
  100% {
    -moz-transform: translate(-100%); /* Firefox bug fix */
    -webkit-transform: translate(-100%); /* Firefox bug fix */
    transform: translate(-100%);
  }
}

.eye {
  display: flex;
  align-items: center;
}

.eye1 {
  overflow: hidden;
  /* to use full width if text is too short */
  flex-basis: 100%;
  white-space: nowrap;
}

.eye2 {
  margin-left: 2%;
  white-space: nowrap;
}
.eye-button {
  height: 2em;
  color: blue;
  border-radius: .5em;
  font-size: 1.1em;
  position: relative;
}

.eye-button:hover {
  cursor: pointer;
  /* color: red; */
}

.eye-button:hover:after {
    content: '';
    /* background: linear-gradient(to right, #c21500, #ffc500); */
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    /* height: 300px; */
    /* width: 300px; */
    /* transform: translate(-50%, -50%) rotate(0deg); */
    /* transition: all 2s ease-in; */
    top: 1px;
    right: 1px;
    bottom: 1px;
    left: 1px;
    /* border: 2px solid darkred; */
    border: 2px solid darkred;
    /* background-color: red; */
    box-shadow: 0 0 0 5px #66a3ff;
    border-radius: .5em;
 
}





.activities {
  /* display: flex; */
  display: grid;
  /* grid-template-columns: repeat(7, minmax(0, 1fr)); */
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  /* grid-auto-flow: column; */
  /* justify-content: space-between; */
  text-align: center;
  margin-top: .4em;
}

.activity {
  overflow: hidden;
/* .activities>div { */
  /* flex: 1 1 0px; */
  text-overflow: ellipsis;
}

.activity_icon {
  width: 32px;
  margin: auto;
  /* transition: 1s ease-in-out; */
}

.activity_text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity {
  display: none;
}

@media not ((min-width: 320px) and (max-width: 480px)) {

  .activity:nth-child(-n + 5) {
    display: block;
  }
}

@media (min-width: 320px) and (max-width: 480px) {

  .activity:nth-child(-n + 4) {
    display: block;
  }
  .activity_text {
    font-size: .8em;
  }
}

.activity_icon > svg {
  fill: yellowgreen;
}
.activity_icon > svg:hover {
  fill: var(--menu-color-hover);
}

/* spacing video from text */
.fjm--welcome-flex-container > div:first-of-type {
  margin-top: 0.5em;
}

video {
  height: auto   !important;
  border-radius: .5em;
}

/* no outline box while focused  */
video:focus {
  outline-width: 0;
}

