#copySuccessToast {
    max-width: 790px;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0px 1px 18px 0px rgba(0,0,0,0.08);
    border-radius: 8px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
    z-index: 20000;
    padding: 20px 30px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    line-height: 24px;
    color: #FFFFFF;
}

#copySuccessToast.copy-success-toast-show{
    transform: translate(-50%, calc(0% - 120px));
    transition: all 250ms cubic-bezier(0.0, 0.0, 0.2, 0.1);
}

#copySuccessToast.copy-success-toast-hide{
    transform: translate(-50%, 100%);
    transition: all 200ms cubic-bezier(0.4, 0.0, 1, 1);
}

@media(max-width: 839.98px){
    #copySuccessToast {
        padding: 10px 15px;
        font-size: 14px;
        line-height: 20px;
    }

    #copySuccessToast.copy-success-toast-show{
        transform: translate(-50%, calc(0% - 65px));
        transition: all 250ms cubic-bezier(0.0, 0.0, 0.2, 0.1);
    }

}