html {
    /*font-size: 10px;*/
} 

.social-bar {
    position: fixed;
    right: 0;
    top: 35%;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 100;
}

.icon {
    color: white;
    text-decoration: none;
    padding: .7rem;
    display: flex;
    transition: all .5s;
    font-size: 30px
}

.icon-play {
    background: #f47820;
}

.icon-gift {
    background: #f47820;
}

.icon-envelop {
    background: #f47820;
}

.icon-whatsapp {
    background: #f47820;
}

.icon:first-child {
    border-radius: 1rem 0 0 0;
}

.icon:last-child {
    border-radius: 0 0 0 1rem;
}

.icon:hover {
    padding-right: 1rem;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
    color: white
}

.texto {
    padding-right: 2rem;
    margin-top: .5rem;
}


/*
.texto:hover {
    display: inline;
    border-radius: 1rem 0 0 1rem;
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.42);
    color: white
} */