/**
 * Visual styles for the "Insert separator" and "Blockquote" editor tools added by
 * MasterStudy LMS Addons - Proximilis.
 *
 * Loaded twice:
 *  - as a regular stylesheet on wp-admin / frontend pages so saved content displays correctly,
 *  - as a `content_css` entry inside the TinyMCE/HugeRTE editing area so authors see a live preview.
 */

.msad-blockquote {
	margin: 20px 0;
	padding: 14px 18px !important;
	border-left: 4px solid #6b7280;
	background: #f3f4f6;
	border-radius: 4px;
}

.msad-blockquote.info {
	border-left-color: #2196f3;
	background: #e8f4fd;
    color: #111;
}

.msad-blockquote.warning {
	border-left-color: #f5a623;
	background: #fdf3e0;
     color: #111;
}

.msad-blockquote.danger {
	border-left-color: #e53935;
	background: #fce8e7;
     color: #111;
}
.msad-blockquote.info,
.msad-blockquote.warning,
.msad-blockquote.danger {
    p {
        color: #111 !important;
    }
    h2, h3, h4, h5, h6 {
        color: #111 !important;
        margin-block: 8px 0px;
    }
}


.msad-blockquote > *:last-child {
	margin-bottom: 0;
}

/* TinyMCE 4 (classic wp_editor) toolbar icons already ship "hr" and "blockquote" glyphs. */
.mce-i-msad_hr:before {
	content: '\e01c';
}

.mce-i-msad_blockquote:before {
	content: '\e00e';
}
