.text{
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    color: #fff;
    font-size: 15px;
    top: 15px;
    right: 20px;
}

.toast-notification{
    display: none;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    color: #fff;
    background-color: #d41f24;
    font-size: 15px;
    right: 0;
    left: 0;
    width: 80%;
    margin: auto;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.toast-notification p{
    padding: 15px;
}

.toast-notification a{
    font-size: 18px;
    text-decoration: none;
    padding: 15px;
}

@media screen and (max-width: 767px) {
    .text{
        display: none;
    }

    .toast-notification{
        display: flex;
        bottom: 50px;
        transition: bottom 0.3s ease;
    }

    .toast-notification.close-popup{
        bottom: -100%;
    }
}

@media (orientation: landscape) {
    .toast-notification{
        bottom: -100%;
    }
}