      .az__content {
        display: inline-block;
        vertical-align: top;
        position: fixed;
        bottom: 5%;
        left: 0;
        right: 0;
        margin: auto;
        padding: 0;
        width: 97%;
        max-width: 400px;
        /* min-height: 124px; */
        font-size: 13px;
        text-align: left;
        border-radius: 20px;
        background: #fff;
        white-space: normal;
        z-index: 3;
        color: #000;
        text-align: center;
        box-shadow: 0 0 5px 0px #0000005c;
        background: rgb(29, 36, 36);
        cursor: pointer;
        display: none;
        background: linear-gradient(
          27deg,
          rgba(29, 36, 36, 1) 0%,
          rgba(72, 77, 87, 1) 100%
        );
        z-index: 100000;
        /* border: 1px solid #000; */
      }

      .az__message_content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .az__content .az__message {
        padding: 5px 16px 20px 16px;
        line-height: 17px;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
      }

      .az__message .az__message img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
      }

      .az__wrap {
        position: relative;
        width: auto;
        height: 100%;
        min-height: 100%;
        font-size: 0;
        line-height: 0;
        text-align: center;
        white-space: nowrap;
        font-family: 'Roboto', sans-serif;
      }

      .az__right img {
        width: 9px;
      }

      .az__header__content {
        padding: 12px 15px 15px 15px;
        color: rgb(109, 107, 107);
        padding-bottom: 10px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .az__left {
        display: flex;
        align-items: center;
        margin-right: 15px;
        /*  width: 138px;*/
        position: relative;
      }

      .az__name__abonem {
        font-size: 16px;
        /* font-weight: 800; */
        color: #ffffff;
        margin: 0;
      }

      .az__message {
        text-align: left;
      }

      .az__title {
        text-transform: uppercase;
        font-size: 15px;
        line-height: 17px;
        color: #a2a6a9;
        margin-left: 7px;
      }

      .az__right {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        position: absolute;
        right: 8px;
        top: 8px;
      }

      .az__right p {
        margin: 0;
        font-size: 13px;
        line-height: 15px;
        color: #a2a6a9;
      }

      .az__time {
        color: #a2a6a9;
        margin: 0;
        font-size: 13px;
        line-height: 15px;
      }

      .az__animated {
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
      }

      @-webkit-keyframes az__bounceInUp {
        from,
        60%,
        75%,
        90%,
        to {
          -webkit-animation-timing-function: cubic-bezier(
            0.215,
            0.61,
            0.355,
            1
          );
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        from {
          opacity: 0;
          -webkit-transform: translate3d(0, 3000px, 0);
          transform: translate3d(0, 3000px, 0);
        }

        60% {
          opacity: 1;
          -webkit-transform: translate3d(0, -20px, 0);
          transform: translate3d(0, -20px, 0);
        }

        75% {
          -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
        }

        90% {
          -webkit-transform: translate3d(0, -5px, 0);
          transform: translate3d(0, -5px, 0);
        }

        to {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }
      }

      @keyframes az__bounceInUp {
        from,
        60%,
        75%,
        90%,
        to {
          -webkit-animation-timing-function: cubic-bezier(
            0.215,
            0.61,
            0.355,
            1
          );
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        from {
          opacity: 0;
          -webkit-transform: translate3d(0, 3000px, 0);
          transform: translate3d(0, 3000px, 0);
        }

        60% {
          opacity: 1;
          -webkit-transform: translate3d(0, -20px, 0);
          transform: translate3d(0, -20px, 0);
        }

        75% {
          -webkit-transform: translate3d(0, 10px, 0);
          transform: translate3d(0, 10px, 0);
        }

        90% {
          -webkit-transform: translate3d(0, -5px, 0);
          transform: translate3d(0, -5px, 0);
        }

        to {
          -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
        }
      }

      .az__bounceInUp {
        -webkit-animation-name: az__bounceInUp;
        animation-name: az__bounceInUp;
      }