.fixed-parent {
    max-width:300px;
    position:fixed;
    bottom:0;
    width: 100%;
    right: 2rem;
    z-index: 9999;
}
.badge {
font-size: 0.8em;
display:flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: center;
border: none;
max-height: 50px;
padding: 10px 14px;
max-width: max-content;
margin: 2rem auto;
border-radius: 5px;
background: rgba(255, 255, 255, 0.03);
box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.07);
align-items: center;
gap: 15px;
color: #ffffff;
text-decoration: none;
}

.badge:hover, .badge:focus {
    background-color: rgba(0, 0, 0, 0.07);
}

.badge svg {
height: 100%;
width: 90px;
margin-top: 4px;
display: block;
overflow: visible;
}
.st0 {
    fill:#ffffff;
}


@media (max-width: 768px) {
    .fixed-parent {
        max-width: 100%;
        right:unset;
    }
    .badge {
        font-size: 0.6em;
        padding: 6px 8px;
        margin: 2rem auto 1rem auto;
    }
    
    .badge svg {
        width: 65px;
        margin-top: 2px;
    }
}