.custom-card-header-img{
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background-image: url("/assets/icard.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-card-header-img2{
    height: 50px;
    width: 50px;
    border-radius: 4px;
    background-image: url("/assets/icard.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-notify-header-img3 {
    height: 50px;
    width: 50px;
    border-radius: 25px;
    background-image: url("/assets/icard.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-card-header-name{
    padding-top: 3px;
    padding-left: 15px!important;
    line-height: 18px;
}
.custom-card-header-name-nm{
    font-weight: bold;
    color:#232323;
    font-size: 16px;
}
.custom-card-header-name-mn{
    color: #585858;
    font-size: 12px;

}

.custom-card-header-time{
    padding-top: 3px;
    padding-left: 15px!important;
    line-height: 18px;
    color: #585858;
    font-size: 12px;

}

.sql{
    font-size: 24px;
    font-weight: bold;
    color: #232323;
}

.topic{
    font-size: 16px;
    font-weight: normal;
    color: #232323;
}

.custom-border {
    border: 2px solid ;
    border-radius: 8px;
    padding: 10px;
}

.bottom-icon{
    color:#585858;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    padding-right: 15px;
}

.sendit-icon{
    color:#333333;
    font-size: 20px;
    font-weight:500;
    text-decoration: none;
    padding-right: 12px;
    background-color: transparent;
    border: 0px;
}

.bi{
    margin-right: 7px;
}

.reply-section{
    background-color: #F4F5F7;
}

.rep{
    padding-left:15px;
}
.reply-form{
    padding: 10px;
    background-color: #fff;
    padding-top: 15px!important;
    padding-bottom: 15px!important;
}

.custom-ans{
    background-color: #FAFAFA!important;
    border-color: #E8EAE6!important;
    border-radius: 10px!important;
}
.custom-lastest{
    font-size: 13px;
    line-height: normal;

    padding-bottom: 5px;

}

.custom-notify{
    padding-left: 15px;
    font-weight:500;
    border-bottom: 5px;
}

.custom-notify-time{
    color: #585858;
    font-size: 12px;
    padding-left: 15px;
}

.custom-notify-padding{
    background-color: #fff!important;
    padding-top: 15px;
    padding-bottom: 15px;

    margin-bottom: 5px;

}

.notify-icon{
    color:#000000;
    font-size: 20px;
    font-weight:500;
    text-decoration: none;
    padding-right: 12px;
}
.notification-wrapper{
    background-color: #fff;
    margin-bottom: 5px;
}
.topic{
    /*max-height: 200px;*/
    overflow: auto;
}
.flexy{
    flex: 1;
}

.anchor_card_disabled{
    pointer-events: none;
}


/** Alert CSS **/
.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    animation: fadeAlert 1s ease-in-out forwards;
}

@keyframes fadeAlert {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    50% {
        opacity: 1;
        transform: translateX(-5%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.alert.fade-out {
    animation: fadeOutAlert 0.5s ease-in-out forwards;
}

.messages_card{
    background-color: white;
    display: flex;
    flex-direction: column;
}
.message_card{
    padding: 10px;
    width:300px;
    margin-bottom: 5px;
    border-radius: 10px;
}
.inbox_card{
    background-color: white;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 10px;
}
.message_card > span{
    font-size: 10px;
}
.fs-10{
    font-size: 10px;
}

.message_card_to{
    align-self: flex-end;
    background-color: #E8EAE6;
}
.message_card_from{
    align-self: flex-start;
    background-color: #d0efb1;
}

@keyframes fadeOutAlert {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-5%);
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}