/**
 * All of the CSS for your public-facing functionality should be included in this file.
 */

/*
 * Alerts
 */
.dmfwc .alert {
    display: inline;
    white-space: nowrap;
    min-height: 30px;
    margin: 0;
    padding: 1px 10px 4px 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    line-height: 1;
}

.dmfwc .alert > p {
    margin-bottom: 0;
}

.dmfwc .alert > p + p {
    margin-top: 5px;
}

.dmfwc .alert > .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border-radius: 50px;
    font-size: 10px;
    line-height: 1;
}

.dmfwc .alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.dmfwc .alert-success > .icon {
    background-color: #3c763d;
    color: white;
}

.dmfwc .alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.dmfwc .alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.dmfwc .alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.dmfwc .alert p {
    margin: 0;
    line-height: 1.2;
}

.dmfwc-tooltip-templates {
    display: none;
}