#toastMessage {
    visibility: hidden;
    width: auto !important;
    min-width: 250px !important;
    max-width: 350px !important;
    text-align: center;
    position: fixed !important;
    z-index: 9999 !important;
    right: 20px !important;
    top: 20px !important;
    font-size: 14px;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    background-color: var(--color-second);
    box-shadow: var(--shadow);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block !important;
}
#toastMessage.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: -80px;
        opacity: 0;
    }

    to {
        top: 20px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: -80px;
        
        opacity: 0;
    }

    to {
        top: 20px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 20px;
        opacity: 1;
    }

    to {
        top: -80px;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 20px;
        opacity: 1;
    }

    to {
        top: -80px;
        opacity: 0;
    }
}

.icon-btn-edit:hover {
    stroke: #007BFF;
}

.icon-btn-pause:hover {
    stroke: var(--warning);
}

.icon-btn-play:hover {
    stroke: var(--success);
}

.icon-btn-trash:hover {
    stroke: var(--color-red);
}