
 
 .small, small {
    font-size: .675em!important;
    font-weight: 400;
  }

.share-btn{
    position: relative;
    border: none;
    background: #fff;
    color: #ff7d7d;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px;
    padding-top: 2.5px;
    padding-right: 3px;
    cursor: pointer;
    z-index: 2;
}

.share-options{
    /* position: absolute; */
    bottom: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform-origin: bottom left;
    transform: scale(0);
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: rgba(15, 15, 15, 0.5);
    color: #fff;
    padding: 20px;
    font-family: 'roboto';
    transition: .5s;
    transition-delay: .5s;;
}

.share-options.active{
    transform: scale(1);
    transition-delay: 0s;
}

.title{
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
    width: fit-content;
    padding: 0 20px 3px 0;
}

.social-media{
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* margin: 10px 30px; */
    padding: 0 0 0 30px; 
}

.social-media-btn{
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    line-height: 16px;
    /* font-size: 16px; */
    cursor: pointer;
    margin: 0 5px;
    text-align: center;
}  
.icone{
    display: flex;
    align-items: center;
    justify-content: center;
}
    
  @media (max-width: 767px){
    .social-media-btn{
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 32%;
        color: #fff;
        line-height: 32px;
        font-size: 16px;
        cursor: pointer;
        margin: 0 5px;
        text-align: center;
    }  
}  

/* .social-media-btn:nth-child(1){
    background: #FFA654;
} */

.whatsapp{
    background: #25D366;
}

.facebook{
    background: #3b5998;
    color:#fff
}

.twitter{
    background: #00acee;
    color:#fff
}
.linkedin{
    background: #0e76a8;
}

.clipboard{
    background: #367d1b;
    color: #ffffff;

}

.link-container{
    opacity: 0;
    transition: .5s;
    transition-delay: 0s;
    width: 100%;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    border-radius: 40px;
    background-color: #fff;
    overflow: hidden;
    padding: 0 10px;
}

/* .link{
    width: 80%;
    height: 100%;
    line-height: 40px;
    color: #000;
} */

.copy-btn{
    position: absolute;
    right: 0;
    cursor: pointer;
    background: #000;
    color: #fff;
    border: none;
    height: 100%;
    width: 30%;
    text-transform: capitalize;
    font-size: 16px;
}

.share-options.active .title,
.share-options.active .social-media,
.share-options.active .link-container{
    opacity: 1;
    transition: .5s;
    transition-delay: .5s;
}

.msg_copiada{
    text-align: right;
    margin: 20px;
    display: none; 
    opacity: 1;
    transition: opacity 0.3s ease;
}


 /* compartilhar mobile */
 .compartilhar-mobile{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
  }

  .fa-link::before {
    content: "\f0c1";
    color: #ffffff!important;
  }

  .fa-linkedin::before {
    content: "\f08c";
    color: #ffffff!important;
  }

  .fa-twitter::before {
    content: "\f099";
    color: #ffffff!important;
  }

  .fa-whatsapp::before {
    content: "\f232";
    color: #ffffff!important;
  }
  .fa-facebook::before {
    content: "\f09a";
    color: #ffffff!important;
  }