/**********toast*************/
.toast_tc{
        width: 0;
    max-width: 402px;
    height: 62px;
    background: linear-gradient(74deg, rgba(88,231,236,.9) 0%, rgba(0, 48, 87, .9) 0%, rgba(0, 48, 87, .9) 32%) 0 0 no-repeat padding-box;
    border: 0 solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 18px;
    right: -32px;
    margin-top: 70px;
    margin-right: 73px;
    z-index: 1010;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
}
.toast_hidden {
    width: 100%;
    padding: 0 20px 0 30px;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

@keyframes fadeOutRight {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
}

.toast_active{
    width: 100%;
    padding: 0 20px 0 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }

    to {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
}

.text_toast{
    color:white;
    font-weight: bold;
    font-size: 13px;
    padding-left: 23px;
}

.content_img_toast {
    padding-top: 6px;
}

.content_img_toast > img{
    width: 29px;
}

.close_toast {
    padding-top: 10px;
}
.close_toast > img{
    width: 10px;
    cursor: pointer;
}

.hidden_logo{
    display: none;
}

.content_text_icon {
    height:  100%;
    display: flex;
    align-items: center;

}
