.notice {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    padding: 15px 25px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    background-color: #aeff00;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 200, 81, 0.2);
    max-width: calc(100% - 2rem);
}

.notice--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.notice--error {
    background-color: #ff4444;
    color: white;
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.2);
}

.pa-button--white.button--loading {
    background: #FFF;
}

.button--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.button--loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #333;
    border-radius: 50%;
    border-right-color: transparent;
    animation: button-loading-spinner 0.75s linear infinite;
}

.button--loading span.pa-button__arr {
    display: none;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


#shopIframe {
    width: calc(100% - 2vw);
    height: calc(100% - (150px + 1vw));
    border: none;
    position: fixed;
    top: 150px;
    left: 1vw;
    z-index: 100;
    border: 0;
    border: 2px solid;
    display: none;
    background-color: #fff;
}

.item img {
    max-height: 50px;
}

.offer-card__items .item {
    height: auto;
    min-width: 50px;
    min-height: 50px;
}

#shop .lk-shop-password__completed {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    gap: 3.5rem;
}

.item:after {
    content: attr(data-count);
    position: absolute;
    bottom: 0;
    left: 1px;
    padding: 1px;
    background: rgba(0,0,0,0.5);
    font-size: 10px;
    min-width: 16px;
    text-align: center;
}

.item--hint {
    display: none;
    position: absolute;
    background: #2a2b2c;
    padding: 5px;
    z-index: 100;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.item--hint.show {
    display: block;
}

.item--hint.show.visible {
    opacity: 1;
    transform: translateY(0);
}

.pa-section-shop__grid .offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    margin-bottom: 1rem;
}

.pa-input__icon[data-copy] {
    cursor: pointer;
    pointer-events: auto;
}

label.form-group:has(.error) {
    border-color: #ff4444;
}

.pa-section-first__content-download.only-mobile {
    position: relative;
    z-index: 100;
}

.pa-header__lang {
    z-index: 100;
}

.pa-section-page__referal .offer-card__content .item--hint2 {
    text-transform: none;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 1em;
}


@media screen and (max-width: 768px) {
    .notice {
        width: calc(100% - 2rem);
        left: 1rem;
        transform: translateY(-20px);
    }
    
    .notice--visible {
        transform: translateY(0);
    }


    #shopIframe {
        position: fixed;
    }
    
}