.br-tessera-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #f3f3f3;
    border-radius: 5px;
    margin: 20px 0;
    position: relative;
}

.br-tessera-auth-container {
    cursor: pointer;
}

.br-tessera-auth-container .br-tessera-hover-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.br-tessera-auth-container:hover .br-tessera-hover-container{
    opacity: 1;
}

.br-tessera-hover-container .br-tessera-download-panel {
    box-sizing: border-box;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.75);
    color: black;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.br-tessera-hover-container .br-tessera-download-panel img{
    width: 16px;
    height: 16px;
}

.br-tessera-unauth-container img {
    width: 100%;
    max-width: 200px;
}

.br-tessera-unauth-container strong {
    width: 100%;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background-color: #ffc8c8;
    color: #d06464;
    border-radius: 5px;
}