/*
 * Copyright (c) 2016 Matoma Internet Consulting GmbH
 * All Rights Reserved.
 *
 * Matoma Internet Consulting GmbH
 * @link http://www.matoma.de
 * @link mailto:info@matoma.de
 *
 * Project:  TUM Community
 * File:     colorbox.css
 * Authors:   Sven Gak, Tobias Honold
 *
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Matoma Internet Consulting GmbH and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Matoma Internet Consulting GmbH
 * and its suppliers and may be covered by Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Matoma Internet Consulting GmbH.
 *
 */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  font-size: 12px;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(images/overlay.png) repeat 0 0;
}
#colorbox {
  outline: 0;
}
#cboxTopLeft {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -101px 0;
}
#cboxTopRight {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -130px 0;
}
#cboxBottomLeft {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -101px -29px;
}
#cboxBottomRight {
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -130px -29px;
}
#cboxMiddleLeft {
  width: 21px;
  background: url(images/controls.png) left top repeat-y;
}
#cboxMiddleRight {
  width: 21px;
  background: url(images/controls.png) right top repeat-y;
}
#cboxTopCenter {
  height: 21px;
  background: url(images/border.png) 0 0 repeat-x;
}
#cboxBottomCenter {
  height: 21px;
  background: url(images/border.png) 0 -29px repeat-x;
}
#cboxContent {
  background: #fff;
  overflow: hidden;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  margin-bottom: 28px;
}
#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}
#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}
#cboxLoadingOverlay {
  background: url(images/loading_background.png) no-repeat center center;
}
#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}
#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}
#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/controls.png) no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: -75px -25px;
}
#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(images/controls.png) no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: -50px -25px;
}
#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(images/controls.png) no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}
#cboxClose:hover {
  background-position: -25px -25px;
}
/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFF, endColorstr=#00FFFF);
}
div.embed-activity-file .qq-upload-drop-area {
  padding: 10px 0;
  display: block;
  position: relative;
  margin-top: 10px;
}
.qq-upload-drop-area span {
  text-align: center;
}
.qq-uploader {
  position: relative;
  width: 100%;
}
.qq-upload-extra-drop-area {
  position: relative;
  margin-top: 50px;
  font-size: 16px;
  padding-top: 30px;
  height: 20px;
  min-height: 40px;
}
.qq-upload-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.qq-upload-list li {
  margin: 0;
  line-height: 1.2em;
  padding: 2px 0;
  font-size: 13px;
  background-color: transparent;
  clear: both;
}
.qq-upload-list li span {
  float: left;
}
.qq-upload-list li span.ui-icon-trash {
  cursor: pointer;
}
.qq-upload-file,
.qq-upload-spinner,
.qq-upload-size,
.qq-upload-cancel,
.qq-upload-failed-text {
  margin-right: 12px;
}
.qq-upload-spinner {
  display: inline-block;
  background: url("loading.gif");
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
}
.qq-upload-size,
.qq-upload-cancel {
  font-size: 12px;
  font-weight: normal;
}
.qq-upload-failed-text {
  display: none;
}
.qq-upload-fail .qq-upload-failed-text {
  display: inline;
}
.qq-upload-list li.qq-upload-success {
  /*background-color: #5DA30C;
    color: #FFFFFF;*/
}
.qq-upload-list li.qq-upload-fail {
  background-color: #D60000;
  color: #FFFFFF;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-document {
  position: relative;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-document .bp-embed-activity-hide-avatar {
  display: none;
}
span.ajax-loader {
  width: 16px;
  height: 16px;
  background-image: url("ajax-loader.gif");
  float: right;
  margin-left: 6px;
  display: none;
}
#sortable {
  list-style-type: none;
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
}
#sortable li {
  margin: 0px;
  border-bottom: 1px solid #D9DADA;
  padding: 0 30px 0 0px;
  min-height: 30px;
  position: relative;
}
#sortable li span.ui-icon {
  position: absolute;
  cursor: move;
  right: 10px;
  top: 10px;
}
#sortable li span.ui-icon.ui-icon-trash {
  cursor: pointer;
  right: 10px;
  top: 40px;
}
.matoma-imagemap.icon-drag,
#sortable .matoma-imagemap.edit,
.bp-embed-activity-description .matoma-imagemap.edit,
.bp-embed-activity-name .matoma-imagemap.edit {
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 6px;
  cursor: pointer;
  background-position: -1012px -116px;
}
.matoma-imagemap.icon-drag {
  background-position: -567px -116px;
}
#sortable li,
#sortable ul,
.bp-embed-activity-object {
  clear: both;
  width: auto;
}
#bp-embed-activity-main-form {
  display: none;
  font-size: 12px;
}
#bp-embed-activity-colorbox {
  display: none;
}
.bp-embed-activity {
  padding-top: 10px;
}
.bp-embed-activity-resultcontainer {
  display: none;
  background-color: White;
  border: 1px solid #DCDDDD;
  -moz-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  margin: 0;
  padding: 10px;
  text-align: left;
}
div.bp-embed-activity-resultcontainer-head {
  float: none;
  clear: both;
  padding: 10px 0 6px 0;
  background: #F8F8F8;
  border-bottom: 1px solid #D9DADA;
  margin: -10px -10px 10px -10px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}
.bp-embed-activity-header-text {
  margin-left: 14px;
}
.bp-embed-activity-resultcontainer-content {
  margin-top: 8px;
}
.bp-embed-activity-resultcontainer-content-description {
  margin-bottom: 10px;
}
.bp-embed-activity-resultcontainer-head .ajax-loader {
  margin-right: 20px;
}
.bp-embed-activity-resultcontainer-content-description span.ui-icon,
.bp-embed-activity-resultcontainer-head span.ui-icon {
  float: right;
}
.bp-embed-activity-maincontainer {
  display: block;
  clear: both;
}
.bp-embed-activity-no-content {
  white-space: pre;
  float: left;
  height: 24px;
  width: 80%;
}
.bp-embed-activity-maincontainer span.ui-icon {
  float: left;
}
.bp-embed-activity-icon-container {
  padding: 6px;
  border: 1px solid #d9dada;
  box-shadow: inset 0px 0px 0px 1px white;
  float: right;
  margin-right: 6px;
  cursor: pointer;
  background-color: #F8F8F8;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.bp-embed-activity-icon-container:hover {
  background-color: white;
}
.bp-embed-activity-icon-container:active {
  background-color: #e9e9e9;
}
div#whats-new-container {
  background-color: #efefef;
  padding: 10px;
  border: 1px solid #CBCBCB;
  /*margin: 10px;*/
  margin-bottom: 10px;
}
#buddypress form#whats-new-form #whats-new-content {
  margin-left: 60px;
  padding: 0px;
}
#buddypress form#whats-new-form textarea {
  width: 100%;
  -moz-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #DCDDDD;
  margin-bottom: 8px;
  max-width: 100%;
}
#buddypress #whats-new:focus {
  border-color: transparent !important;
  outline-color: transparent;
}
div.bp-embed-activity-show-image-text label {
  display: inline;
}
#buddypress form#whats-new-form #whats-new-submit {
  margin-top: 0px;
}
#buddypress form#whats-new-form #whats-new-options {
  margin-top: 8px;
  height: 0;
}
#whats-new-container div.clear {
  height: 1px;
  width: 1px;
  clear: both;
  overflow: hidden;
}
div#whats-new-container #whats-new-avatar {
  position: absolute;
}
div#whats-new-container p.activity-greeting {
  display: none;
}
div.bp-embed-activity-avatar,
div.bp-embed-activity-link-avatar {
  float: left;
  width: 100px;
  max-width: 100px;
  height: auto;
  margin: 0 10px 0px 0;
  position: relative;
  z-index: 1;
}
div.bp-embed-activity-container,
div.bp-embed-activity-object-container {
  float: left;
  width: 79%;
}
input.embed-activity-file,
input.embed-activity-url {
  width: 77%;
  display: inline;
  float: left;
  font-size: 12px;
}
.embed-activity-button {
  float: right;
  display: inline;
}
#sortable div.bp-embed-activity-link-avatar {
  margin: 0 10px 0px 0;
}
.bp-embed-activity-resultcontainer-container {
  padding: 10px 0 0 0;
  clear: both;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-container {
  width: 78%;
}
#buddypress form#whats-new-form .bp-embed-activity-resultcontainer-content-result .bp-embed-activity-description textarea,
#buddypress form#whats-new-form .bp-embed-activity-resultcontainer-content-result .bp-embed-activity-name input {
  width: 90%;
  font-size: 12px;
  margin: 0;
  min-height: 28px;
}
#buddypress form#whats-new-form .bp-embed-activity-resultcontainer-content-result .bp-embed-activity-description textarea {
  margin-bottom: 10px;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-name,
.bp-embed-activity .bp-embed-activity-name {
  font-weight: bold;
  margin: 0px;
}
.bp-embed-activity .bp-embed-activity-name a {
  text-decoration: none;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-name {
  margin-top: 10px;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-description {
  margin-top: 10px;
}
div.bp-embed-activity-link-avatar a.bp-embed-activity-play {
  display: block;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a.bp-embed-activity-play-video {
  background: url(../templates/images/play_video_32.png) no-repeat 50% 50%;
}
a.bp-embed-activity-play-image {
  background: url(../templates/images/play_photo_32.png) no-repeat 50% 50%;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-description textarea {
  border: 1px solid gray !important;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-description span {
  min-width: 30px;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-name span:hover,
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-description span:hover {
  min-width: 30px;
  min-height: 20px;
  cursor: pointer;
}
.bp-embed-activity-image-pager-buttons {
  margin-top: 10px;
  background: transparent none;
  border: none;
}
.bp-embed-activity-image-pager-buttons a {
  border: none;
  background: transparent none;
  display: block;
  cursor: pointer;
  float: left;
  margin: 2px;
  padding: 4px 0;
  position: relative;
}
.bp-embed-activity-image-pager-text {
  float: left;
  margin-left: 10px;
  margin-top: 4px;
  font-size: 90%;
}
.bp-embed-activity-image-pager-text span {
  color: Black;
}
.bp-embed-activity-image-page-number-total {
  margin-right: 20px;
}
.bp-embed-activity-show-image-text {
  margin-top: 10px;
  clear: both;
  font-weight: bold;
}
#bp-embed-activity-resultcontainer .bp-embed-activity-resultcontainer-content-switch {
  display: none;
  clear: both;
  margin-bottom: 10px;
}
#bp-embed-activity-resultcontainer .bp-embed-activity-resultcontainer-content-switch .bp-embed-activity-switch-text {
  display: none;
}
#bp-embed-activity-resultcontainer .bp-embed-activity-resultcontainer-content-switch .text-left {
  display: inline;
  float: left;
  width: 46%;
}
#bp-embed-activity-resultcontainer .bp-embed-activity-resultcontainer-content-switch .text-right {
  display: inline;
  float: left;
  border-left: 2px solid gray;
  width: 46%;
}
#bp-embed-activity-resultcontainer .bp-embed-activity-resultcontainer-content-switch div {
  padding: 10px;
  cursor: pointer;
}
.bp-embed-activity-icon {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.bp-embed-activity-item-list-tabs {
  margin: -15px -19px 15px;
}
.whats-new-footer {
  clear: both;
  display: none;
}
.bp-embed-activity-resultcontainer-content-result {
  margin: -10px -10px 0 -10px;
}
#activity-stream .bp-embed-activity-object-document .bp-embed-activity-object-container {
  padding-left: 24px;
}
#activity-stream .bp-embed-activity-object-document .bp-embed-activity-icon {
  width: 16px;
  height: 16px;
  margin: 0 0 0 2px;
  background-image: url(custom-theme/images/ui-icons_b5b5b5_256x240.png);
  background-position: -32px -96px;
  position: absolute;
  left: 0px;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-document .bp-embed-activity-hide-avatar {
  height: 80px;
  width: 80px;
  background-color: #E9E9E9;
  float: left;
  display: inline;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-document .bp-embed-activity-hide-avatar img {
  display: none;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-document .bp-embed-activity-image {
  background-position: -561px -61px;
  width: 25px;
  height: 30px;
  margin-left: 26px;
  margin-top: 25px;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-document .bp-embed-activity-icon {
  margin-top: 0px;
}
#activity-stream div.bp-embed-activity-object-document .bp-embed-activity-name a {
  font-weight: bold;
}
.bp-embed-activity-resultcontainer-content-result .bp-embed-activity-object-document .bp-embed-activity-name,
#activity-stream .bp-embed-activity-name {
  line-height: 1.1em;
  font-size: 12px;
  font-weight: bold;
}
div.bp-embed-activity-object {
  line-height: 1.1em;
  font-size: 12px;
}
div.bp-embed-activity-object.bp-embed-activity-object-image img {
  width: 150px;
  height: 113px;
  overflow: hidden;
  background-color: white;
}
.bp-embed-activity-image img {
  margin: 2px;
  -webkit-box-shadow: 0px 0px 2px #000;
  /* webkit browser*/
  -moz-box-shadow: 0px 0px 2px #000;
  /* firefox */
  box-shadow: 0px 0px 2px #000;
}
#sortable .bp-embed-activity-image img {
  margin: 0px;
  -webkit-box-shadow: 0px;
  /* webkit browser*/
  -moz-box-shadow: 0px;
  /* firefox */
  box-shadow: 0px;
}
#buddypress form#whats-new-form #whats-new-options select {
  font-size: 12px;
  padding: 5px;
  float: right;
  margin: 0 10px 0 0;
}
div.embed-activity-file .qq-upload-drop-area,
#buddypress form#whats-new-form .qq-upload-button,
#buddypress form#whats-new-form .embed-activity-button,
#buddypress form#whats-new-form #whats-new-options #bp-embed-activity-submit,
#buddypress form#whats-new-form #whats-new-options #aw-whats-new-submit {
  float: right;
  font-size: 12px;
  background: #3971ad;
  border: 1px solid #5a91cc;
  font-weight: bold;
  color: white;
  padding: 5px 14px;
  box-shadow: 0;
  margin: 0px;
  line-height: 14px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-shadow: none;
}
#buddypress form#whats-new-form #whats-new-options #bp-embed-activity-submit:hover,
#buddypress form#whats-new-form #whats-new-options #aw-whats-new-submit:hover {
  border: 1px solid #3971ad;
  background: #5a91cc;
}
#buddypress form#whats-new-form #whats-new-options #bp-embed-activity-submit:active,
#buddypress form#whats-new-form #whats-new-options #aw-whats-new-submit:active {
  border: 1px solid #3971ad;
  background: #26588f;
}
#bp-embed-activity-submit:disabled {
  display: none;
}
.bp-embed-activity-object-container .bp-embed-activity-no-content:after {
  content: "Bitte beschreiben Sie die Datei.";
}
body.language-de .bp-embed-activity-object-container .bp-embed-activity-no-content:after {
  content: "Bitte beschreiben Sie die Datei.";
}
body.language-en .bp-embed-activity-object-container .bp-embed-activity-no-content:after {
  content: "Please describe the file.";
}
div.embed-activity-file .qq-upload-drop-area,
#buddypress form#whats-new-form .qq-upload-button,
#buddypress form#whats-new-form .embed-activity-button {
  box-shadow: inset 0px 0px 0px 1px white;
  background: white;
  border: 1px solid #eeeeee;
  color: #3971ad;
}
div.embed-activity-file .qq-upload-drop-area {
  float: left;
  width: 200px;
  position: relative;
  left: 50%;
  margin-left: -200px;
  border: none;
}
div.embed-activity-file .qq-upload-drop-area .text-drag {
  vertical-align: middle;
}
#buddypress form#whats-new-form .qq-upload-button {
  float: left;
}
div.embed-activity-file .qq-upload-drop-area:hover,
#buddypress form#whats-new-form .qq-upload-button:hover,
#buddypress form#whats-new-form .embed-activity-button:hover {
  background: #F8F8F8;
}
div.embed-activity-file .qq-upload-drop-area:active,
#buddypress form#whats-new-form .qq-upload-button:active,
#buddypress form#whats-new-form .embed-activity-button:active {
  background: #E9E9E9;
}
#whats-new-container .matoma-imagemap.ui-icon-link {
  background-position: -240px -112px;
}
#whats-new-container .matoma-imagemap.ui-icon-image {
  background-position: -208px -128px;
}
#whats-new-container .matoma-imagemap.ui-icon-video {
  background-position: -224px -128px;
}
#whats-new-container .matoma-imagemap.ui-icon-document {
  background-position: -32px -96px;
}
#whats-new-container .matoma-imagemap.ui-icon-poll {
  background-position: -224px -112px;
}
#whats-new-container .matoma-imagemap.bp-embed-activity-resultcontainer-head-icon-close.ui-icon-close {
  cursor: pointer;
  position: relative;
  right: 10px;
  clear: none;
}
.bp-embed-activity-image-pager-button-right a {
  background: transparent none;
}
a.bp-embed-activity-image-colorbox {
  /*background-color: red;*/
  display: inline;
  position: relative;
  overflow: hidden;
  float: left;
  padding: 0;
  margin: 2px 2px 2px 2px;
  width: 150px;
  height: 112px;
  background: #f2f2f2;
  -webkit-box-shadow: 0px 0px 1px #000;
  /* webkit browser*/
  -moz-box-shadow: 0px 0px 1px #000;
  /* firefox */
  box-shadow: 0px 0px 1px #000;
}
div.bp-embed-activity-object.bp-embed-activity-object-image a.bp-embed-activity-image-colorbox img {
  position: absolute;
  width: 100%;
  height: 100%;
}
div.bp-embed-activity-poll {
  clear: both;
  float: none;
  margin-bottom: 6px;
}
div.bp-embed-activity-poll div.ui-progressbar {
  width: 80%;
  height: 18px;
  background-color: #f6f6f6;
  border: 1px solid #ccc;
  float: left;
}
div.bp-embed-activity-poll div.ui-progressbar .ui-progressbar-value {
  margin: 0;
  background-color: #5bc0de;
}
div.bp-embed-activity-poll .ui-icon {
  cursor: pointer;
  float: left;
  background-color: #f6f6f6;
  border: 1px solid #ccc;
  display: block;
  padding: 8px;
  margin: -5px 0 0 10px;
}
div.bp-embed-activity-poll .ui-icon.user_voted {
  background-color: #5bc0de;
}
div.embed-activity-form-new div.poll {
  float: none;
  clear: both;
  margin-bottom: 2px;
}
div.embed-activity-form-new div.poll input {
  width: 80%;
  float: left;
}
div.embed-activity-form-new div.poll .ui-state-default {
  padding: 2px;
  float: left;
  cursor: pointer;
  margin: 4px 0 0 10px;
}
#buddypress form#whats-new-form textarea.ui-state-error:focus {
  border-color: red !important;
}
div.bp-embed-activity-task > div {
  margin: 6px 0 0;
}
div.bp-embed-activity-task div.bp-embed-activity-name {
  font-size: 13px;
}
div.bp-embed-activity-task div.bp-embed-activity-name.check {
  text-decoration: line-through;
}
div.bp-embed-activity-task .fi {
  font-size: 13px;
  margin-right: 4px;
}
div.bp-embed-activity-task .fi-pencil {
  cursor: pointer;
  padding: 0 4px;
}
