#neo-payment-guide-left,
#neo-payment-guide-right {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    box-sizing: border-box;
    padding: 24px;

    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);

    color: #252a2e;
    font-size: 14px;
    line-height: 1.5;
    z-index: 20;
}

#neo-payment-guide-left {
    left: max(24px, calc(50vw - 610px));
}

#neo-payment-guide-right {
    right: max(24px, calc(50vw - 610px));
}

.neo-payment-guide-title {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 700;
}

.neo-payment-guide-item {
    margin-bottom: 17px;
}

.neo-payment-guide-item:last-child {
    margin-bottom: 0;
}

.neo-payment-guide-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.neo-payment-guide-item span {
    display: block;
    opacity: 0.72;
}

@media (max-width: 1150px) {
    #neo-payment-guide-container {
        width: min(620px, calc(100% - 24px));
        margin: 24px auto 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    #neo-payment-guide-left,
    #neo-payment-guide-right {
        position: static;
        transform: none;
        width: auto;
    }
}

@media (max-width: 680px) {
    #neo-payment-guide-container {
        grid-template-columns: 1fr;
    }

    #neo-payment-guide-left,
    #neo-payment-guide-right {
        padding: 19px;
    }
}

.neo-guide-contact-button {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin-top: 20px;
    padding: 12px 16px;

    border: 1px solid #252a2e;
    border-radius: 9px;

    background: #252a2e;
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;

    cursor: pointer;
    transition:
        opacity 0.15s ease,
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.neo-guide-contact-button:hover {
    color: #ffffff !important;
    opacity: 0.88;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.14);
}

.neo-guide-contact-button:active {
    transform: translateY(1px);
}

.neo-guide-contact-button:focus-visible {
    outline: 3px solid rgba(37, 42, 46, 0.3);
    outline-offset: 3px;
}