/**
 * Callouts
 *
 * Not quite alerts, but custom and helpful notes for folks reading the docs.
 * Requires a base and modifier class.
 */

/* Common styles for all types */
.bs-callout {
    margin: 20px 0;
    padding: 20px;
    border-left: 3px solid #eee;
    background-color: #fafafa;
    border-color: #ddd;
}
.bs-callout h4 {
  margin-top: 0;
  margin-bottom: 5px;
}
.bs-callout p:last-child {
  margin-bottom: 0;
}

/* Variations */
.bs-callout-danger {
    background-color: tint(@dangerColor,85%);
    border-color: @dangerColor;
}
.bs-callout-warning {
    background-color: #ffffe0;
    border-color: #e6db55;
}
.bs-callout-info {
    background-color: tint(@infoColor,85%);
    border-color: @infoColor;
}
.bs-callout-sucess {
    background-color: tint(@successColor,85%);
    border-color: @successColor;
}

.yt-shortcode-row{
    margin-bottom: 30px;
}