.alert {
    margin-bottom: 0;
}

.flag-icon-coins {
    background-image: url(/templates/images/coins.png);
    width: 16px;
    height: 16px;
    background-size: contain;
    display: inline-block;
    padding-top: 1px;
}

/* characters */
.avatar.avatar-sm {
    width: 32px;
    height: 32px;
    margin-right: 5px;
}

.avatar.avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar-group .avatar {
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-no-wrap {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
@media (max-width: 576px) {
    .table td,
    .table th {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

#select2Basic {
    min-width: 80px !important;
}

/* Fix for swal alert form horizontal margin */
form.form-horizontal {
    margin-block-end: 0 !important;
    margin-bottom: 0 !important;
}

/* reset (fix characters table blink) */
table {
    font-size: 1rem !important;
    line-height: 1.45 !important;
}

form {
    display: block;
    margin-top: 0em;
    unicode-bidi: isolate;
    margin-block-end: 0em;
}

form.form-horizontal {
    margin: 0 !important;
    padding: 0 !important;
}
/* reset end */

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(7px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

/*freekassa glow*/
/* Payment badge */
.payment-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
    z-index: 10;
    white-space: nowrap;
    pointer-events: none;
}

/* Pulse + Glow animation */
.payment-badge.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(238, 90, 111, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.8),
        0 0 30px rgba(238, 90, 111, 0.6),
        0 4px 12px rgba(238, 90, 111, 0.4);
    }
}

/* Shake on card hover */
.payment-system-card:hover .payment-badge {
    animation: badgeShake 0.5s ease-in-out;
}

@keyframes badgeShake {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-8deg);
    }
    50% {
        transform: scale(1.15) rotate(8deg);
    }
    75% {
        transform: scale(1.1) rotate(-5deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .payment-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: -8px;
        right: -8px;
    }
}

/* Ensure parent has position relative */
.position-relative {
    position: relative;
}
/*freekassa glow*/

/*discount*/
.discount-container {
    padding: 10px 15px;
    animation: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
}

.discount-label {
    color: #1dd668;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-shadow: none;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    animation: text-pulse 2s ease-in-out infinite;
}

.arrow-massive {
    width: 100%;
    display: flex;
    justify-content: center;
}

.arrow-massive svg {
    width: 40px;
    height: 40px;
    color: #29c468;
    filter: drop-shadow(0 2px 4px rgba(41, 196, 104, 0.3));
    animation: bounce-arrow 1.2s ease-in-out infinite;
}

@keyframes text-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.05);
    }
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}
/*discount*/

/* Fast Start Plus */
.fs-plus-card {
    border: 2px solid #f5a623 !important;
    animation: fs-plus-glow 2.5s ease-in-out infinite;
}

@keyframes fs-plus-glow {
    0%, 100% { box-shadow: 0 0 12px rgba(245, 166, 35, 0.2), 0 4px 15px rgba(0,0,0,0.15); }
    50%       { box-shadow: 0 0 28px rgba(245, 166, 35, 0.55), 0 4px 20px rgba(0,0,0,0.2); }
}

.fs-plus-ribbon {
    position: absolute;
    top: 14px;
    right: -30px;
    background: linear-gradient(135deg, #f5a623, #c8731a);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 38px;
    transform: rotate(45deg);
    letter-spacing: 0.8px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    white-space: nowrap;
}

.fs-plus-header {
    background: linear-gradient(135deg, #f5a623 0%, #c8731a 100%) !important;
}

.fs-plus-badge-inline {
    background: rgba(255,255,255,0.22);
    border-radius: 4px;
    font-size: 11px;
    padding: 2px 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.fs-plus-subtitle {
    color: rgba(255,255,255,0.88);
    font-size: 12px;
}

.fs-plus-item {
    color: #f5a623;
    font-weight: 600;
}

.fs-plus-icon {
    color: #f5a623 !important;
    fill: rgba(245, 166, 35, 0.25);
}

.fs-plus-buy-btn {
    background: linear-gradient(135deg, #f5a623, #c8731a) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.1s;
}

.fs-plus-buy-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff !important;
}

.fs-plus-demo-btn {
    background: transparent !important;
    border: 1px solid #f5a623 !important;
    color: #f5a623 !important;
    transition: background 0.2s;
}

.fs-plus-demo-btn:hover {
    background: rgba(245, 166, 35, 0.1) !important;
    color: #f5a623 !important;
}
/* Fast Start Plus */