/* ============================================================================
 *  Footer · Chat notification popups
 *  Styles for the realtime chat notification toasts and their close button.
 * ============================================================================ */

.notification_chat_popup {
    background-color: rgb(211 211 211 / 50%);
	border-radius: 10px;
	box-shadow: 0px 3px 4px 0px #ededed;
}

.notification_chat_popup_title {
    padding: 0.7rem;
}

.notification_chat_popup_fullscreen {
    color: #2d2e83;
    padding-right: 1rem;
}

.notification_chat_popup_sender {
    color: #e71d73;
    text-transform: uppercase;
    font-family: 'Roboto';
}

.notification_chat_popup_message {
    color: #333232;
    font-family: 'Roboto';
	font-style: italic;
	padding: 1rem;
	font-size: 15px;
}

textarea.notification_chat_popup_textarea {
    border-radius: 10px;
	color: #e6007e;
    padding: 0.7rem;
    font-family: 'Roboto';
	border: 1px solid #e9e9e9;
}

textarea.notification_chat_popup_textarea:focus-visible {
    outline: none;
    border: 1px solid #E71D74;
}

textarea.notification_chat_popup_textarea:focus {
   box-shadow: none;
}

button#closemsg {
    color: #2d2e83;
    padding: 0.7rem;
}

.notification_chat_popup_sendbutton {
    margin: 0.7rem;
    display: block;
}

#closemsg {top:0px !important; right:5px !important; font-size: 18px;}
