/* Public styles go here */

.friendship_message{
	text-transform:uppercase;
}
button#friendship-request-button {
    margin: 20px 0;
}
.member-picture .oasen-invitation-respond {
	position: absolute;
    top: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-content: center;
    width: 100%;
    left: 0;
    height: 100%;
    align-items: stretch;
    opacity: 0;
    background: hsl(0deg 0% 0% / 54%);
	transition: all 0.7s ease-out;
}
.col.member-picture {
    position: relative;
}
.cancel-friendship-button{
    background: #000000;
    color: #ffffff;
}
.accept-friendship-button{
    background: #dd7129;
    color: #ffffff;
}
#friend_request .member-picture .oasen-member-name {
    text-align: center;
    position: relative;
    color: #000;
    text-decoration: none;
    bottom: 0!important;
    text-transform: uppercase;
}
#friend_request .oasen-invitation * {
    cursor: pointer;
    text-align: center;
    /* padding: 10px; */
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff !important;
    /* background-color: #dd7129; */
    font-family: NeueFrutigerWorldThin !important;
    height: 35px;
    display: block;
    line-height: 35px;
}
#friend_request .member-picture:hover .oasen-invitation-respond{
	opacity:1;
	transition: all 0.7s ease-in;
}