.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%
}

.header-box {
    padding: 10px
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto
}

.logo {
    display: flex;
    justify-items: center;
    align-items: center;
    font-size: 30px;
    font-weight: 600
}

.logo img {
    height: 30px;
    width: auto;
    margin-right: 10px;
    border-radius: 100px
}

.h-active {
    position: fixed;
    animation: slideIn-922e8fa8 .5s ease forwards
}

.h-active .header-box {
    background-color: #fff0;
    background-color: #e5ebf5
}

@keyframes slideIn-922e8fa8 {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translateY(0)
    }
}

@keyframes slideIn2-922e8fa8 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-100%)
    }
}

.wallets {
    margin-right: 10px
}

.wallets-btn {
    background-color: #e5ebf5;
    border: 1px solid #000;
    border-radius: 5px;
    font-size: 14px;
    max-width: max-content;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #000
}

.wallets-btn:hover {
    transition: .3s;
    transform: scale(1.05)
}

.wallets-btn:active {
    transition: .3s;
    transform: scale(.95)
}
