diff --git a/profiles/wcm_base/CHANGELOG.txt b/profiles/wcm_base/CHANGELOG.txt
index a361f1c3ffcd057c222fffb4dc15f60eafad8460..6692120f9d04f1488bf6c63fe5442a16dbd11838 100644
--- a/profiles/wcm_base/CHANGELOG.txt
+++ b/profiles/wcm_base/CHANGELOG.txt
@@ -1,3 +1,9 @@
+WCM Base 7.x-1.x, 2016-04-19
+----------------------------
+- Media Magnet: Increased query field limit to 512 characters.
+- OCIO Omega Base: Added styles for Views exposed filter and Chosen module.
+- OCIO Media: Fixed improperly sized YouTube embeds.
+
 WCM Base 7.x-1.x, 2016-04-14
 ----------------------------
 - WCM Base: Update Panopoly to 1.33.
diff --git a/profiles/wcm_base/modules/custom/mm/mm_widgets/mm_widgets.module b/profiles/wcm_base/modules/custom/mm/mm_widgets/mm_widgets.module
index 4f6ba62520c28ce9bd2ff3bec105a67894742185..3681dcd361a041917501faf1fd1a6e81d0988fde 100644
--- a/profiles/wcm_base/modules/custom/mm/mm_widgets/mm_widgets.module
+++ b/profiles/wcm_base/modules/custom/mm/mm_widgets/mm_widgets.module
@@ -100,6 +100,7 @@ function mm_widgets_block_configure($delta = '', $edit=array()) {
       '#title' => t('Item filters'),
       '#description' => 'See the <a href="http://mediamagnet.osu.edu/items" target="_blank">items explorer</a>. Ex: tags=alumni&channel_type=rss',
       '#default_value' => variable_get(_mm_widgets_block_setting_name('mm_widgets_items_query', $edit), ''),
+      '#maxlength' => 512,
     );
 
     $form[_mm_widgets_block_setting_name('mm_widgets_template_key', $edit)] = array(
diff --git a/profiles/wcm_base/modules/custom/mm/mm_widgets/plugins/content_types/mm_widgets_live_pane.inc b/profiles/wcm_base/modules/custom/mm/mm_widgets/plugins/content_types/mm_widgets_live_pane.inc
index 10de96bb1983876d39d342343adf462b6163dcc4..51a399da6813a90afbf4f2dadc1f27c2775b095d 100644
--- a/profiles/wcm_base/modules/custom/mm/mm_widgets/plugins/content_types/mm_widgets_live_pane.inc
+++ b/profiles/wcm_base/modules/custom/mm/mm_widgets/plugins/content_types/mm_widgets_live_pane.inc
@@ -50,6 +50,7 @@ function mm_widgets_live_pane_edit_form($form, &$form_state) {
     '#title' => t('Item filters'),
     '#description' => 'See the <a href="http://mediamagnet.osu.edu/items" target="_blank">items explorer</a>. Ex: tags=alumni&channel_type=rss',
     '#default_value' => $conf['items_query'],
+    '#maxlength' => 512,
   );
 
   $form['items_template_key'] = array(
diff --git a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.features_overrides.inc b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.features_overrides.inc
index 661b0f96faedff63b4095e8210f182f6a9d76a5c..320594f202d08e8cfd37801ad034851731e75bb8 100644
--- a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.features_overrides.inc
+++ b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.features_overrides.inc
@@ -28,9 +28,9 @@ function ocio_media_features_override_default_overrides() {
   $overrides["file_display.video__preview__file_field_file_default.status"] = FALSE;
   $overrides["file_display.video__preview__file_field_file_default.weight"] = -41;
   $overrides["file_display.video__preview__file_field_media_large_icon.weight"] = -42;
-  $overrides["file_display.video__preview__media_vimeo_image.settings|image_style"] = 'panopoly_image_thumbnail';
+  $overrides["file_display.video__preview__media_vimeo_image.settings|image_style"] = 'media_thumbnail';
   $overrides["file_display.video__preview__media_vimeo_image.weight"] = -48;
-  $overrides["file_display.video__preview__media_youtube_image.settings|image_style"] = 'panopoly_image_thumbnail';
+  $overrides["file_display.video__preview__media_youtube_image.settings|image_style"] = 'media_thumbnail';
   $overrides["file_display.video__preview__media_youtube_image.weight"] = -49;
 
   // Exported overrides for: file_type
diff --git a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.inc b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.inc
index 1bd74c5feadc06fe5fa9512febe8239d37fe6393..5e7a864fbcd20402d7f0eda3361c0eab230a466f 100644
--- a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.inc
+++ b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.features.inc
@@ -64,11 +64,11 @@ function ocio_media_file_default_displays_alter(&$data) {
     $data['video__preview__file_field_media_large_icon']->weight = -42; /* WAS: 49 */
   }
   if (isset($data['video__preview__media_vimeo_image'])) {
-    $data['video__preview__media_vimeo_image']->settings['image_style'] = 'panopoly_image_thumbnail'; /* WAS: 'media_thumbnail' */
+    $data['video__preview__media_vimeo_image']->settings['image_style'] = 'media_thumbnail'; /* WAS: 'media_thumbnail' */
     $data['video__preview__media_vimeo_image']->weight = -48; /* WAS: 0 */
   }
   if (isset($data['video__preview__media_youtube_image'])) {
-    $data['video__preview__media_youtube_image']->settings['image_style'] = 'panopoly_image_thumbnail'; /* WAS: 'media_thumbnail' */
+    $data['video__preview__media_youtube_image']->settings['image_style'] = 'media_thumbnail'; /* WAS: 'media_thumbnail' */
     $data['video__preview__media_youtube_image']->weight = -49; /* WAS: 0 */
   }
 }
diff --git a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.file_default_displays.inc b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.file_default_displays.inc
index c404364f021f33e48719d33f7c7ebd4c4fbfef85..1220d7f7b2d9e4f943ec10d35286a265868d6199 100644
--- a/profiles/wcm_base/modules/custom/ocio_media/ocio_media.file_default_displays.inc
+++ b/profiles/wcm_base/modules/custom/ocio_media/ocio_media.file_default_displays.inc
@@ -630,7 +630,7 @@ function ocio_media_file_default_displays() {
   $file_display->status = FALSE;
   $file_display->settings = array(
     'width' => '640',
-    'height' => '390',
+    'height' => '360',
     'theme' => 'dark',
     'color' => 'red',
     'autohide' => '2',
@@ -773,7 +773,7 @@ function ocio_media_file_default_displays() {
   $file_display->status = TRUE;
   $file_display->settings = array(
     'width' => '640',
-    'height' => '390',
+    'height' => '360',
     'theme' => 'dark',
     'color' => 'red',
     'autohide' => '2',
@@ -898,7 +898,7 @@ function ocio_media_file_default_displays() {
   $file_display->status = TRUE;
   $file_display->settings = array(
     'width' => '640',
-    'height' => '390',
+    'height' => '360',
     'theme' => 'dark',
     'color' => 'red',
     'autohide' => '2',
@@ -1023,7 +1023,7 @@ function ocio_media_file_default_displays() {
   $file_display->status = TRUE;
   $file_display->settings = array(
     'width' => '640',
-    'height' => '390',
+    'height' => '360',
     'theme' => 'dark',
     'color' => 'red',
     'autohide' => '2',
@@ -1148,7 +1148,7 @@ function ocio_media_file_default_displays() {
   $file_display->status = TRUE;
   $file_display->settings = array(
     'width' => '640',
-    'height' => '390',
+    'height' => '360',
     'theme' => 'dark',
     'color' => 'red',
     'autohide' => '2',
@@ -1273,7 +1273,7 @@ function ocio_media_file_default_displays() {
   $file_display->status = TRUE;
   $file_display->settings = array(
     'width' => '640',
-    'height' => '390',
+    'height' => '360',
     'theme' => 'dark',
     'color' => 'red',
     'autohide' => '2',
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css
index a59207f460b9c6f66555c20db5af4558a499f1ea..5814fcdedb7120b0fc3da29bbb1180fe90dc6dc0 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.css
@@ -185,6 +185,84 @@ textarea {
     width: 100%;
   }
 }
+form .form-text,
+form .chosen-container .chosen-choices {
+  padding: 4px 6px 2px;
+  border: 1px solid #bbb;
+  background-image: none;
+  box-shadow: none;
+  font-size: 0.9em;
+}
+form .chosen-container {
+  font-size: 1em;
+}
+form .chosen-container .result-selected {
+  display: none !important;
+}
+form .chosen-container .chosen-results {
+  font-size: 0.9em;
+}
+form .chosen-container .search-field input {
+  width: 0.1px !important;
+  height: 0.1px !important;
+}
+form .chosen-container .chosen-results li {
+  padding: 7px 6px 4px;
+  line-height: 1em;
+}
+form .chosen-container .chosen-results li.highlighted {
+  background-image: none;
+}
+form .chosen-container.chosen-container-single .chosen-single, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-single, form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  border-radius: 0;
+  background: #eee none;
+  box-shadow: none;
+}
+form .chosen-container.chosen-container .search-field:after, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-choices li.search-choice + .search-field:after {
+  content: "- Select -";
+  color: #666;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field, form .chosen-container.chosen-container-active .search-field {
+  float: none;
+}
+form .chosen-container.chosen-container-single .chosen-results {
+  margin: 0;
+  padding: 0;
+}
+form .chosen-container.chosen-container-single .chosen-drop {
+  border-radius: 0;
+}
+form .chosen-container.chosen-container-single .chosen-single {
+  padding: 0 0 0 6px;
+  height: 27px;
+}
+form .chosen-container.chosen-container-single .chosen-single div b {
+  background-size: 52px 40px !important;
+}
+form .chosen-container.chosen-container-multi .chosen-choices {
+  padding: 1px 3px 0px 3px;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  display: inline-block;
+  float: none;
+  line-height: 1em;
+  margin: 2px 4px 2px 0;
+  padding: 4px 20px 2px 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
+  top: 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field:after {
+  content: "+ Add";
+  cursor: pointer;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
+  margin: 1px 0 0 2px;
+  cursor: default;
+}
+
 .l-page img {
   width: inherit;
 }
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css
index 2e4c5bb9b8d2c5b9fa5449e5a03069a12fed25d3..f1b5aed21d853ecb9b7405d8c3f7767caa2fc2b5 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/layouts/ocio-default/ocio-default.layout.no-query.css
@@ -184,6 +184,84 @@ textarea {
   width: 100%;
 }
 
+form .form-text,
+form .chosen-container .chosen-choices {
+  padding: 4px 6px 2px;
+  border: 1px solid #bbb;
+  background-image: none;
+  box-shadow: none;
+  font-size: 0.9em;
+}
+form .chosen-container {
+  font-size: 1em;
+}
+form .chosen-container .result-selected {
+  display: none !important;
+}
+form .chosen-container .chosen-results {
+  font-size: 0.9em;
+}
+form .chosen-container .search-field input {
+  width: 0.1px !important;
+  height: 0.1px !important;
+}
+form .chosen-container .chosen-results li {
+  padding: 7px 6px 4px;
+  line-height: 1em;
+}
+form .chosen-container .chosen-results li.highlighted {
+  background-image: none;
+}
+form .chosen-container.chosen-container-single .chosen-single, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-single, form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  border-radius: 0;
+  background: #eee none;
+  box-shadow: none;
+}
+form .chosen-container.chosen-container .search-field:after, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-choices li.search-choice + .search-field:after {
+  content: "- Select -";
+  color: #666;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field, form .chosen-container.chosen-container-active .search-field {
+  float: none;
+}
+form .chosen-container.chosen-container-single .chosen-results {
+  margin: 0;
+  padding: 0;
+}
+form .chosen-container.chosen-container-single .chosen-drop {
+  border-radius: 0;
+}
+form .chosen-container.chosen-container-single .chosen-single {
+  padding: 0 0 0 6px;
+  height: 27px;
+}
+form .chosen-container.chosen-container-single .chosen-single div b {
+  background-size: 52px 40px !important;
+}
+form .chosen-container.chosen-container-multi .chosen-choices {
+  padding: 1px 3px 0px 3px;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  display: inline-block;
+  float: none;
+  line-height: 1em;
+  margin: 2px 4px 2px 0;
+  padding: 4px 20px 2px 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
+  top: 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field:after {
+  content: "+ Add";
+  cursor: pointer;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
+  margin: 1px 0 0 2px;
+  cursor: default;
+}
+
 .l-page img {
   width: inherit;
 }
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css
index ccd46fecc750e4313448341d316e9cd3f17a1081..b323a5857754387808169896e88b0961751c083a 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.no-query.css
@@ -180,6 +180,84 @@ textarea {
   width: 100%;
 }
 
+form .form-text,
+form .chosen-container .chosen-choices {
+  padding: 4px 6px 2px;
+  border: 1px solid #bbb;
+  background-image: none;
+  box-shadow: none;
+  font-size: 0.9em;
+}
+form .chosen-container {
+  font-size: 1em;
+}
+form .chosen-container .result-selected {
+  display: none !important;
+}
+form .chosen-container .chosen-results {
+  font-size: 0.9em;
+}
+form .chosen-container .search-field input {
+  width: 0.1px !important;
+  height: 0.1px !important;
+}
+form .chosen-container .chosen-results li {
+  padding: 7px 6px 4px;
+  line-height: 1em;
+}
+form .chosen-container .chosen-results li.highlighted {
+  background-image: none;
+}
+form .chosen-container.chosen-container-single .chosen-single, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-single, form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  border-radius: 0;
+  background: #eee none;
+  box-shadow: none;
+}
+form .chosen-container.chosen-container .search-field:after, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-choices li.search-choice + .search-field:after {
+  content: "- Select -";
+  color: #666;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field, form .chosen-container.chosen-container-active .search-field {
+  float: none;
+}
+form .chosen-container.chosen-container-single .chosen-results {
+  margin: 0;
+  padding: 0;
+}
+form .chosen-container.chosen-container-single .chosen-drop {
+  border-radius: 0;
+}
+form .chosen-container.chosen-container-single .chosen-single {
+  padding: 0 0 0 6px;
+  height: 27px;
+}
+form .chosen-container.chosen-container-single .chosen-single div b {
+  background-size: 52px 40px !important;
+}
+form .chosen-container.chosen-container-multi .chosen-choices {
+  padding: 1px 3px 0px 3px;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  display: inline-block;
+  float: none;
+  line-height: 1em;
+  margin: 2px 4px 2px 0;
+  padding: 4px 20px 2px 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
+  top: 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field:after {
+  content: "+ Add";
+  cursor: pointer;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
+  margin: 1px 0 0 2px;
+  cursor: default;
+}
+
 .l-page img {
   width: inherit;
 }
@@ -4209,3 +4287,27 @@ a#skip:active:hover, a#skip:focus:hover {
   margin-top: 1.3em;
   margin-bottom: 1.3em;
 }
+
+.views-table td.views-field * {
+  margin: 0;
+}
+
+.views-exposed-widgets .views-exposed-widget .form-submit {
+  margin-top: 1.6em !important;
+}
+.views-exposed-widgets .views-exposed-widget.views-submit-button {
+  padding: 0;
+}
+.views-exposed-widgets .views-exposed-.views-exposed-widgets {
+  position: relative;
+}
+.views-exposed-widgets .form-item .description,
+.views-exposed-widgets .form-actions .description {
+  display: none;
+}
+
+.view .ajax-progress {
+  bottom: -1.75em;
+  position: absolute;
+  right: 50%;
+}
diff --git a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css
index 00cfc5ea6bd46e9b606fecf4a68bd977b93fdc13..42261b90197893bfce79108f3b8bd0b0e62ca289 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css
+++ b/profiles/wcm_base/themes/ocio_omega_base/css/ocio-omega-base.styles.css
@@ -181,6 +181,84 @@ textarea {
     width: 100%;
   }
 }
+form .form-text,
+form .chosen-container .chosen-choices {
+  padding: 4px 6px 2px;
+  border: 1px solid #bbb;
+  background-image: none;
+  box-shadow: none;
+  font-size: 0.9em;
+}
+form .chosen-container {
+  font-size: 1em;
+}
+form .chosen-container .result-selected {
+  display: none !important;
+}
+form .chosen-container .chosen-results {
+  font-size: 0.9em;
+}
+form .chosen-container .search-field input {
+  width: 0.1px !important;
+  height: 0.1px !important;
+}
+form .chosen-container .chosen-results li {
+  padding: 7px 6px 4px;
+  line-height: 1em;
+}
+form .chosen-container .chosen-results li.highlighted {
+  background-image: none;
+}
+form .chosen-container.chosen-container-single .chosen-single, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-single, form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  border-radius: 0;
+  background: #eee none;
+  box-shadow: none;
+}
+form .chosen-container.chosen-container .search-field:after, form .chosen-container.chosen-container-active.chosen-with-drop .chosen-choices li.search-choice + .search-field:after {
+  content: "- Select -";
+  color: #666;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field, form .chosen-container.chosen-container-active .search-field {
+  float: none;
+}
+form .chosen-container.chosen-container-single .chosen-results {
+  margin: 0;
+  padding: 0;
+}
+form .chosen-container.chosen-container-single .chosen-drop {
+  border-radius: 0;
+}
+form .chosen-container.chosen-container-single .chosen-single {
+  padding: 0 0 0 6px;
+  height: 27px;
+}
+form .chosen-container.chosen-container-single .chosen-single div b {
+  background-size: 52px 40px !important;
+}
+form .chosen-container.chosen-container-multi .chosen-choices {
+  padding: 1px 3px 0px 3px;
+  cursor: default;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice {
+  display: inline-block;
+  float: none;
+  line-height: 1em;
+  margin: 2px 4px 2px 0;
+  padding: 4px 20px 2px 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
+  top: 4px;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-choice + .search-field:after {
+  content: "+ Add";
+  cursor: pointer;
+}
+form .chosen-container.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
+  margin: 1px 0 0 2px;
+  cursor: default;
+}
+
 .l-page img {
   width: inherit;
 }
@@ -4276,3 +4354,27 @@ a#skip:active:hover, a#skip:focus:hover {
     margin-bottom: 1.3em;
   }
 }
+
+.views-table td.views-field * {
+  margin: 0;
+}
+
+.views-exposed-widgets .views-exposed-widget .form-submit {
+  margin-top: 1.6em !important;
+}
+.views-exposed-widgets .views-exposed-widget.views-submit-button {
+  padding: 0;
+}
+.views-exposed-widgets .views-exposed-.views-exposed-widgets {
+  position: relative;
+}
+.views-exposed-widgets .form-item .description,
+.views-exposed-widgets .form-actions .description {
+  display: none;
+}
+
+.view .ajax-progress {
+  bottom: -1.75em;
+  position: absolute;
+  right: 50%;
+}
diff --git a/profiles/wcm_base/themes/ocio_omega_base/sass/base/_forms.scss b/profiles/wcm_base/themes/ocio_omega_base/sass/base/_forms.scss
index 9493f243d6ac88ecd25ed1fb8d9744cee4bacb7a..64cf94e0a84c90fdce41fc13548efed7d853752a 100644
--- a/profiles/wcm_base/themes/ocio_omega_base/sass/base/_forms.scss
+++ b/profiles/wcm_base/themes/ocio_omega_base/sass/base/_forms.scss
@@ -22,7 +22,7 @@ textarea {
   }
 }
 
-//label style for webform components nexted within fieldsets
+//label style for webcomponents nexted within fieldsets
 .webform-component-fieldset {
   .webform-component {
     label {
@@ -55,3 +55,113 @@ textarea {
     }
   }
 }
+
+
+form {
+  .form-text,
+  .chosen-container .chosen-choices {
+    padding: 4px 6px 2px;
+    border: 1px solid #bbb;
+    background-image: none;
+    box-shadow: none;
+    font-size: 0.9em;
+  }
+
+  .chosen-container {
+    font-size: 1em;
+
+    .result-selected {
+      display:none !important;
+    }
+
+    .chosen-results {
+      font-size: 0.9em;
+    }
+
+    .search-field input {
+      width: 0.1px !important;
+      height: 0.1px !important;
+    }
+
+    .chosen-results li {
+      padding: 7px 6px 4px;
+      line-height: 1em;
+
+       &.highlighted {
+        background-image: none;
+      }
+    }
+
+    &.chosen-container-single .chosen-single,
+    &.chosen-container-active.chosen-with-drop .chosen-single,
+    &.chosen-container-multi .chosen-choices li.search-choice {
+      border-radius: 0;
+      background: #eee none;
+      box-shadow: none;
+    }
+
+    &.chosen-container .search-field:after,
+    &.chosen-container-active.chosen-with-drop .chosen-choices li.search-choice + .search-field:after {
+      content: "- Select -";
+      color: #666;
+      cursor: default;
+    }
+
+    &.chosen-container-multi .chosen-choices li.search-choice + .search-field,
+    &.chosen-container-active  .search-field {
+      float: none;
+    }
+
+    &.chosen-container-single {
+      .chosen-results {
+        margin: 0;
+        padding: 0;
+      }
+
+      .chosen-drop {
+        border-radius: 0;
+      }
+
+      .chosen-single {
+        padding: 0 0 0 6px;
+        height: 27px;
+
+        div b {
+          background-size: 52px 40px !important;
+        }
+      }
+    }
+
+    &.chosen-container-multi {
+
+      .chosen-choices {
+        padding: 1px 3px 0px 3px;
+        cursor: default;
+
+        li {
+          &.search-choice {
+            display: inline-block;
+            float: none;
+            line-height: 1em;
+            margin: 2px 4px 2px 0;
+            padding: 4px 20px 2px 4px;
+
+            .search-choice-close {
+              top: 4px;
+            }
+
+            & + .search-field:after {
+              content: "+ Add";
+              cursor: pointer;
+            }
+          }
+
+          &.search-field input[type="text"] {
+            margin: 1px 0 0 2px;
+            cursor: default;
+          }
+        }
+      }
+    }
+  }
+}
diff --git a/profiles/wcm_base/themes/ocio_omega_base/sass/components/views/_views.scss b/profiles/wcm_base/themes/ocio_omega_base/sass/components/views/_views.scss
new file mode 100644
index 0000000000000000000000000000000000000000..53d793ba35b21f57760d259a511e80892590ca5a
--- /dev/null
+++ b/profiles/wcm_base/themes/ocio_omega_base/sass/components/views/_views.scss
@@ -0,0 +1,31 @@
+.views-table td.views-field * {
+  margin: 0;
+}
+
+.views-exposed-widgets {
+
+  .views-exposed-widget .form-submit {
+    margin-top: 1.6em !important;
+  }
+
+  .views-exposed-widget.views-submit-button {
+    padding: 0;
+  }
+
+  .views-exposed-.views-exposed-widgets {
+    position: relative;
+  }
+
+  .form-item .description,
+  .form-actions .description {
+    display: none;
+  }
+}
+
+.view .ajax-progress {
+  bottom: -1.75em;
+  position: absolute;
+  right: 50%;
+}
+
+