#tsModalContact {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
#tsModalContact .modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 500px; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.tsModalclose {
    color: #aaa;
    text-align: right;
    font-size: 28px;
    font-weight: bold;
}

.tsModalclose:hover,
.tsModalclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.ts-search-profile-card header {
    padding: 10px;
}

.ts-search-profile-card .bulma-media-content {
    align-items: center;
    display: flex;
}

.ts-search-profile-card .bulma-media {
    align-items: center;
}
.ts-search-profile-card .bulma-media {
    margin-bottom: 0 !important;
}
.ts-profile-action {
    display: flex;
}

.ts-search-profile-card .bulma-card-header {
    justify-content: space-between;
}
.ts-profile-card:not(.is-active) .bulma-card-content,.ts-profile-card:not(.is-active) .bulma-card-footer,.ts-search-profile-card:not(.is-active) .bulma-card-content,.ts-search-profile-card:not(.is-active) .bulma-card-footer{
    display: none;
}


.ts-profile-card .bulma-card-content,.ts-profile-card .bulma-card-footer,.ts-search-profile-card .bulma-card-content,.ts-search-profile-card .bulma-card-footer{
     max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.ts-profile-card.is-active .bulma-card-content,.ts-profile-card.is-active .bulma-card-footer,.ts-search-profile-card.is-active .bulma-card-content,.ts-search-profile-card.is-active .bulma-card-footer {
    /* display: block; */
    animation: slideDown 0.5s ease-in-out;
    max-height:initial;
}
.ts-profile-card .bulma-card-content.slide-up,.ts-profile-card .bulma-card-footer.slide-up,.ts-search-profile-card .bulma-card-content.slide-up,.ts-search-profile-card .bulma-card-footer.slide-up {
    /* display: block; */
    animation: slideUp 0.5s ease-in-out;
}


@keyframes slideUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10%);
    }
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}