.message-close {
    position: absolute;
    top: 12px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    color: inherit;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.messages:hover .message-close {
    visibility: visible;
    opacity: 0.7;
}

.message-close:hover {
   position: absolute;
    top: 12px;
    right: 10px;
    background: none;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    opacity: 1;
    color: inherit;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: visible;
}

.message-content::before{
    background: none !important;
}

.message.info{
    color:#1A3764 !important;
    border-color: #1A3764 !important;
}

.message.info > :first-child::before {
    display: none !important;
}