.px-nft-bar {
    position: fixed;
    left: 0;
    right: 0;
    gap: 20px;
    padding: 15px 55px 15px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    z-index: 9999;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.px-nft-bar.top {
    top: 0;
    transform: translateY(-100%);
}

.px-nft-bar.bottom {
    bottom: 0;
    transform: translateY(100%);
}

.px-nft-title {
    font-size: 16px;
    color: #fff;
}

#px-nft-bar .px-nft-title {
    font-size: 35px;
    transition: color 0.3s ease;

}

.px-nft-button {
    background: #ff5a5f;
    color: #fff;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    text-wrap: nowrap;
}

.px-nft-button:hover {
    background: #ff8083;
}

.px-nft-image img {
    max-width: 150px;
    width: auto;
}

#px-nft-bar .px-nft-close {
    font-size: 37px;
    color: #000000;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    height: fit-content;
    margin: auto;
}

.px-nft-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.px-nft-inner.left {
    justify-content: flex-start;
}

.px-nft-inner.right {
    justify-content: flex-end;
}

.px-nft-inner.center {
    justify-content: center;
}