  .news-ticker {
    overflow: hidden;
    position: relative;
    height: 40px;
    direction: rtl;
    top: 0.7rem;
  }

  .ticker-content {
    display: inline-flex;
    white-space: nowrap;
    position: absolute;
    right: 100%;
    animation: scroll-right 30s linear infinite;
    font-size: 14px;
    font-weight: 500;
    color: #212529;
  }

  @keyframes scroll-right {
    from {
      right: 100%;
    }

    to {
      right: -100%;
    }
  }

  .ticker-post {
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    text-decoration: none;
    color: white;
    font-weight: 500;
  }

  /* توقف انیمیشن هنگام هاور */
  .news-ticker:hover .ticker-content {
    animation-play-state: paused;
    cursor: pointer;
  }

  .t-red {
    background-color: #dc3545;
  }

  /* اطلاعیه */
  .t-green {
    background-color: #198754;
  }

  /* سبز */
  .t-blue {
    background-color: #0d6efd;
  }

  /* آبی */

  .btn-hamburger {
    position: absolute;
    left: 1rem;
    z-index: 1000;
  }


