.newspaper-menu {

  &.fixed {
    z-index: 1000;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 30px;
    margin: auto;
    width: 100%;
    padding: 0 15px;
  }

  .container {
    align-items: center;
    overflow: hidden;
    height: 69px;
    box-shadow: rgba(109, 109, 109, 0.5) 0px 2px 17px 0px;
    border-radius: 20px;
    background-color: white;
    justify-content: space-around;
    display: flex;

    div {
      max-width: 70px;
      text-align: center;
      &:hover{
        color: var(--primary-color);
        i{
          color: var(--primary-color);
        }
      }
      &.active{
        color: var(--primary-color);
        i{
          color: var(--primary-color);
        }
      }
    }
    small{
      font-size: 0.65em;
    }

    .btn {
      color: rgb(76, 76, 76);
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      border: none;

      :hover {
        color:var(--primary-color);;
        border: none;
      }

      i {
        font-size: 1.5em;
        color: rgb(76, 76, 76);
      }
    }
  }
}