.notification {
    position:fixed;
    font-family: sans-serif;
    border-radius: 16px;
    background-color: #222222;
    bottom:0;
    z-index:3;
    box-sizing:border-box;
    margin-bottom:15px;
    opacity:0;
    left:50%;
    filter: drop-shadow(#0f0f0f 0 0 10px);
    transform: translate(0,300px);
    -webkit-animation: noti 1s forwards alternate ease-in;
            animation: noti 1s forwards alternate ease-in;
            animation-delay: 0.5s;
  }

  .notification.show {
    opacity:1;
    transform:translate(300,0);
    transition:opacity 2s ease,transform 2s ease
  }

  .notification .achtitle {
    font-size: 14px;
    color: #dfdfdf;
    font-weight: normal;
  }

  .notification .achsp {
    display: block;
    top: 44px;
    position: fixed;
  }
  .notification .achname {
    color:#FF9000 ;
    font-size: 16px;
    padding-left: 20px;
    font-weight: normal;
  }

  .notification .achnamez {
    color:#FF9000 ;
    font-size: 16px;
    font-weight: normal;
  }

  .notification .achdesc {
    font-style: normal;
    color: #888;
    font-weight: normal;
  }

  .notification_inner {
    max-width:450px;
    max-height:140px;
    display:flex;
    margin:0 auto;
    position:relative;
    min-width:400px;
    min-height:100px
  }
  .notification_inner .alinkgo:hover {
    background:#252525;
   
  }
  .notification_inner .alinkgo {
    background:#222222;
    border-radius:16px;
    padding:15px;
    display:flex;
    color:inherit;
    width:100%;
    text-decoration: none
  }
  
  .notification_inner .pic {
    margin-right:15px;
    min-width:70px
  }
  
  .notification_inner .pic_holder {
    width:70px;
    height:70px;
    display:flex
  }

  .notification_inner .pic_holder .img {
    width:100%;
    object-fit:cover;
    border-radius:50%
  }
  .notification_inner .note_content {
    font-size:12px;
    line-height: 25px;
  }
  .notification_inner .note_text .emojiimg {
    margin:-4px 2px;
    width:20px;
    height:20px
  }

  .notification_inner .close_wrapper {
    position:absolute;
    right:15px;
    top:15px;
    border-radius: 30px;
    width:30px;
    height:30px;
    z-index:2;
    align-items: center;
    justify-content: center;
    background-color: #333333;  
  }
  .notification .close {

    cursor:pointer;
    width:30px;
    height:30px;
    text-align:center;
    border-radius:60px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background-image:url(../img/x.png); background-repeat: no-repeat; background-position: center;
  }
  .notification .close:hover {
    background-color:#414141
  }

  .achivka {
    font-family: sans-serif;
    border-radius: 16px;
    background-color: #222222;
    margin: 10px;
    max-width: 335px;
    filter: drop-shadow(#0f0f0f 0 0 10px);
    float: left;
  }
  
  .achivka .achlsp {
    display: block;
    top: 25px;
    position: fixed;
  }
  .achivka .achnam {
    color:#FF9000 ;
    font-size: 15px;
    padding-left: 20px;
    font-weight: normal;
    line-height: 14px;
    position: fixed;
    top: 27px;
  }
  
  .achivka .achtext {
    color: #888;
    font-weight: normal;
    line-height: 14px;
    margin-right: 15px;
    position: fixed;
    top: 60px;
  }

  .ach_inner {
    max-width:450px;
    max-height:140px;
    margin:0 auto;
    position:relative;
    min-width:340px;
    min-height:100px
  }
  .ach_inner .achlink:hover {
    background:#252525;
    cursor: help;
  }
  
  .ach_inner .achlink {
    background:#222222;
    border-radius:16px;
    padding:15px;
    color:inherit;
    display: flex;
    text-decoration: none;
  }
  
  .ach_inner .apic {
    margin-right:15px;
    min-width:70px;
    float: left;
  }
  
  .ach_inner .apic_holder {
    width:70px;
    height:70px;
    float: left;
  }
  
  .ach_inner .apic_holder .img {
    width:100%;
    object-fit:cover;
    border-radius:50%
  }
  .ach_inner .notecontent {
    font-size:12px;
  }

  @-webkit-keyframes noti {
    30% {
      transform: translate(0);
    }
    100% {
      transform: translate(0);
    }
  }
  
  @keyframes noti {
    30% {
      transform: translate(0);
    }
    100% {
      transform: translate(0);
    }