


.wrapperr{
    position: fixed;
   bottom: 20px;
    right: 40px;
    animation: show_toast 1s ease forwards;
  }
  @keyframes show_toast {
    0%{
      transform: translateX(-100%);
    }
    40%{
      transform: translateX(10%);
    }
    80%, 100%{
      transform: translateX(20px);
    }
  }
  .wrapperr.hide{
    animation: hide_toast 1s ease forwards;
  }
  @keyframes hide_toast {
    0%{
      transform: translateX(20px);
    }
    40%{
      transform: translateX(10%);
    }
    80%, 100%{
      opacity: 0;
      pointer-events: none;
      transform: translateX(-100%);
    }
  }
  .wrapperr .toast{
    background: #fffeb6;
    padding: 20px 15px 20px 20px;
    border-radius: 10px;
    border-left: 5px solid #2ecc71;
    box-shadow: 1px 7px 50px rgba(0,0,0,0.15);
    width: 430px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .wrapperr .toast.offline{
    border-color: #ccc;
  }
  .toast .content{
    display: flex;
    align-items: center;
  }
  .content .icon{
    font-size: 25px;
    color: #fffeb6;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background: #2ecc71;
  }
  .toast.offline .content .icon{
    background: #ccc;
  }
  .content .details{
    margin-left: 15px;
  }
  .details span{
    font-size: 20px;
    font-weight: 500;
  }
  .details p{
    color: #878787;
  }
  .toast .close-icon{
    color: #878787;
    font-size: 23px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    transition: all 0.3s ease;
  }
  .close-icon:hover{
    background: #efefef;
  }

  @media (max-width: 1114px){
    

.wrapperr{
  display: none;
  }

  }