.custom-text-banner {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.custom-text-banner-content {
  position: relative;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-text));
  padding: 24px 0;
  width: calc(100% + 100px);
  left: -50px;
}

.custom-text-banner-content .scroll-wrapper {
  position: relative;
  overflow: hidden;
  height: 31px;
}

.custom-text-banner-content .scroll-wrapper .scroll-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
  height: 100%;
  border: none;
  padding: 0;
  margin: 0;
}

.custom-text-banner-text {
  position: relative;
  height: 100%;
  flex: 0 0 auto;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0 15px;
}

.custom-text-banner-text .point {
  font-size: 62px;
  line-height: var(--body1-font-size);
  margin-right: 10px;
  transform: translateY(22%);
}

@media (max-width: 959px) {
  .custom-text-banner-content {
    padding: 12px 0;
  }

  .custom-text-banner-content .scroll-wrapper {
    height: 22.5px;
  }

  .custom-text-banner-text .point {
    /* font-size: 52px;
    transform: translateY(18%); */
    display: none;
  }
}
