
.telegram-notification {
    position: fixed;
    right: 40px;
    bottom: 15px;
    max-width: 280px;
    padding: 10px;
    border-radius: 10px;
    transform: translateX(101%);
    transition: transform 2.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 99;
}

.telegram-notification .messengers {
    position: relative;
    padding-top: 40px;
}

.telegram-notification-buttons {
    display: flex;
    justify-content: center;
}

.telegram-notification-buttons a {
    margin: 0 5px;
    border-radius: 6px;
}

.telegram-notification-buttons a.btn:hover {
    background: #4854a2 !important;
    color: #fff !important;
}

@media screen and (max-width: 600px) {
    .telegram-notification {
        max-width: calc(100% - 30px);
        left: 20px;
    }
}

.telegram-notification.show {
    transform: translateX(0);
}

.telegram-notification img {
    display: block;
    margin: 0 auto;
}

.telegram-notification .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: #333;
    cursor: pointer;
}
.telegram-notification .btn-close .fa{
    font-size: 20px;
}

.telegram-notification .btn {
    display: block;
    padding: 12px 18px;
    margin: 0 auto;
    max-width: max-content;
    background-color: #000;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.telegram-notification .btn-icon {
    margin: -25px auto 0;
    display: block;
    width: max-content;
}

.telegram-notification .btn:hover {
    background-color: #ffffff;
    color: #000;
}

.discount-button {
    position: absolute;
    display: block;
    padding: 0;
    outline: 0;
    background: none;
    border: 0;
    box-shadow: none;
    width: 60px;
    height: 60px;
    top: -20px;
    right: calc(100% - 40px);
}
.discount-button svg {
    width: 60px;
    height: 60px;
    transform: rotate(0deg);
}
.discount-button.animate {
    animation: slide-in 5s cubic-bezier(0.075, 0.82, 0.165, 1);
    animation-delay: 1s;
}

@keyframes slide-in {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
