.snipComponent *:not(.fa) {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: normal;
}
*, *:before, *:after {
    -moz-box-sizing: border-box !important;
    -webkit-box-sizing: border-box !important;
    -ms-box-sizing: border-box !important;
    -o-box-sizing: border-box !important;
    box-sizing: border-box !important;
}
.animated {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

#snipComponent {
    padding:0 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background-color: transparent;
    z-index: 100;
}

.snip-card {
    overflow: hidden;
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 820px;
    min-height: 70px;
    background-color: #fff;
    border-radius: 5px;
    padding: 0.7rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.close-button {
    position: absolute;
    top: 8px;
    right: 17px;
    z-index: 100;
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content:center;
    height: 100%;
    min-height: 60px;
  
}
.image-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 20px;
}
.main-wrapper {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content:space-evenly;
    width: 100%;
    height: 100%;
    min-height: 60px;
   
}
a{
    text-decoration: none;
}
.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:flex-end;
    height: 100%;
    min-height: 60px;
   
}

.button-wrapper a.button-purple{
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    text-decoration: none;
    padding: 0 25px;
    height: 36px;
    background:#7968ff;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    font-size: 16px;
    white-space: nowrap;
    color: white;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
 a.button-purple:hover  {
    box-shadow: 0 8px 14px rgba(121, 104, 255, 0.25), 0 5px 10px rgba(121, 104, 255, 0.22);
}
#profileName {
    text-align: left;
    color: #222;
    display: block;
    opacity: 0.6;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
}
.text-link {
    font-size: 14px;
}
#messageText {
    font-size: 16px;
}
