.info-widget {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    border-radius: 1rem 1rem 0 0;
    background-color: #000;
    z-index: 10000000001;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.66);
    height: 7.6rem;
    overflow: hidden;
}
.info-widget__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-widget__content p{
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #fff;
    margin: 0 0 1rem;
}
.info-widget__content a{
   font-size: 2rem;
   font-weight: 600;
   line-height: 2rem;
   color: #fff; 
}
@media(max-width: 767px){
    .info-widget{
        display: none;
        bottom: env(safe-area-inset-bottom, 0);
    }
}
