/* x mark to close message detail modal */
.close_message_detail,
.close_detail {
    position: relative;
    float: right;
    /* margin-top: -1%; */
    cursor: pointer;
    color:white;
    padding:0.2% 1%;
    line-height:normal;
    border:1px solid transparent;
}

/* tooltip that display the word close for 'x' window */
.message_center_detail_modal .tooltip,
.close_detail {
    position: relative;
    display: inline;
    /*border-bottom: 1px dotted black;*/
}

.message_center_detail_modal .tooltip .tooltiptext,
.close_detail .ttip_text
{
    visibility: hidden;
    width:auto;
    background-color: #555;
    color: #fff;
    text-align: center;
    /* border-radius: 6px; */
    padding: 3px 5px;
    position: absolute;
    z-index: 1;
    bottom: -110%;
    left: 80%;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 10px;
}
  
.message_center_detail_modal .tooltip .tooltiptext::after,
.close_detail .ttip_text::after {
    content: inherit;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: 5%;
    border-width: 5px;
    border-style: solid;
}
  
.message_center_detail_modal .tooltip:hover .tooltiptext ,
.close_detail:hover .ttip_text {
    visibility: visible;
    opacity: 1;
}

.message_center_detail_modal .tooltip:hover,
.close_detail:hover {
    border:1px solid white;
}

.beside_btn {
    margin-top:-4.5%;
    margin-bottom:5%;
}

.margin_top_1 {
    margin-top:1%;
}

.margin_top_0_5 {
    margin-top: 0.5%;
    margin-bottom: 5%;
}