/* Animations */
.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateX(0px) scale(0.7);
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(0.7);
        transform: translateX(2000px) scale(0.7);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: translateX(0px) scale(0.7);
        transform: translateX(0px) scale(0.7);
        opacity: 0.7;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight;
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
/* Animations */

/* Telegram Popup Notification */
.tg_iframe{
	border:0px;
	height:500px;
	max-width:420px;
	width:100%;
	margin:5px;
	box-shadow: 0 0 16px 3px rgba(0,0,0,.2);
}

.d-none {
	display: none !important;
}

.telegram-notification {

    padding: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .85);
    position: fixed;
    bottom: 80px;
    right: 20px;
    max-width: 275px;
	z-index: 100;
}
.telegram-notification-icon {
    width: 100%;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.telegram-notification-icon img {
    max-width: 120px;
}
.telegram-notification-body {
    text-align: center;
    font-size: 1.5em;
    color: #FFF;
    line-height: 1.2;
}
.telegram-notification-button {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 5px;
    color: rgb(53, 127, 226);
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
}
.telegram-notification-button:hover {
    background-color: rgb(216, 240, 251);
    -webkit-transition: background-color 0.2s ease-in-out;
    -moz-transition: background-color 0.2s ease-in-out;
    -ms-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}
.telegram-notification-close {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #000 url("/images/icon-close-inv.svg") no-repeat center center / 40% 40%;
}
/* Telegram Popup Notification */