.modal {
    .modal-header {
        border-top-left-radius: 3px;
        -moz-border-radius-top-left: 3px;
        -webkit-border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        -moz-border-radius-top-right: 3px;
        -webkit-border-top-right-radius: 3px;
    }
    &.modal-success {
        .modal-header {
            color: $white;
            background-color: $brand-success;
        }
    }
    &.modal-warning {
        .modal-header {
            color: $white;
            background-color: $brand-warning;
        }
    }
    &.modal-danger {
        .modal-header {
            color: $white;
            background-color: $brand-danger;
        }
    }
    &.modal-info {
        .modal-header {
            color: $white;
            background-color: $brand-info;
        }
    }
    &.modal-primary {
        .modal-header {
            color: $white;
            background-color: $brand-primary;
        }
    }
}
