diff --git a/app/controllers/api/v1/statuses_controller.rb b/app/controllers/api/v1/statuses_controller.rb index 62d39615..e800bff4 100644 --- a/app/controllers/api/v1/statuses_controller.rb +++ b/app/controllers/api/v1/statuses_controller.rb @@ -22,10 +22,9 @@ class Api::V1::StatusesController < Api::BaseController render json: @status, serializer: REST::StatusSerializer end - # direct descendants only + # all desendants def comments - descendants_results = @status.descendants(CONTEXT_LIMIT, current_account, nil, nil, 1) - puts "descendants_results: " + descendants_results.inspect + descendants_results = @status.descendants(CONTEXT_LIMIT, current_account, nil, nil) loaded_descendants = cache_collection(descendants_results, Status) @context = Context.new(descendants: loaded_descendants) diff --git a/app/javascript/gabsocial/actions/compose.js b/app/javascript/gabsocial/actions/compose.js index fe9ae66b..4ab65677 100644 --- a/app/javascript/gabsocial/actions/compose.js +++ b/app/javascript/gabsocial/actions/compose.js @@ -166,7 +166,8 @@ export function handleComposeSubmit(dispatch, getState, response, status) { } }; - if (response.data.in_reply_to_id === null && response.data.visibility === 'public') { + if (response.data.visibility === 'public') { + // console.log("response.data.in_reply_to_id:", response.data.in_reply_to_id) insertIfOnline('home'); insertIfOnline('community'); insertIfOnline('public'); diff --git a/app/javascript/gabsocial/actions/lists.js b/app/javascript/gabsocial/actions/lists.js index fe9e41bf..e6c2af9c 100644 --- a/app/javascript/gabsocial/actions/lists.js +++ b/app/javascript/gabsocial/actions/lists.js @@ -112,8 +112,6 @@ export const submitListEditor = (shouldReset) => (dispatch, getState) => { const listId = getState().getIn(['listEditor', 'listId']); const title = getState().getIn(['listEditor', 'title']); - console.log("submitListEditor:", title) - if (listId === null) { dispatch(createList(title, shouldReset)); } else { diff --git a/app/javascript/gabsocial/actions/search.js b/app/javascript/gabsocial/actions/search.js index 29e28fd1..d4054cfb 100644 --- a/app/javascript/gabsocial/actions/search.js +++ b/app/javascript/gabsocial/actions/search.js @@ -1,5 +1,6 @@ import api from '../api'; import { fetchRelationships } from './accounts'; +import { fetchGroupsSuccess, fetchGroupRelationships } from './groups' import { importFetchedAccounts, importFetchedStatuses } from './importer'; export const SEARCH_CHANGE = 'SEARCH_CHANGE'; @@ -48,11 +49,10 @@ export function submitSearch() { dispatch(importFetchedStatuses(response.data.statuses)); } - console.log("response.data.", response.data) - - // if (response.data.groups) { - // dispatch(importFetchedStatuses(response.data.statuses)); - // } + if (response.data.groups) { + dispatch(fetchGroupsSuccess(response.data.groups)) + dispatch(fetchGroupRelationships(response.data.groups.map(item => item.id))) + } dispatch(fetchSearchSuccess(response.data)); }).catch(error => { diff --git a/app/javascript/gabsocial/assets/donor_icon.js b/app/javascript/gabsocial/assets/donor_icon.js deleted file mode 100644 index 4e9eb006..00000000 --- a/app/javascript/gabsocial/assets/donor_icon.js +++ /dev/null @@ -1,24 +0,0 @@ -const DonorIcon = ({ - className = '', - size = '24px', - title = 'Gab.com Donor', -}) => ( - - - - - -) - -export default DonorIcon \ No newline at end of file diff --git a/app/javascript/gabsocial/assets/investor_icon.js b/app/javascript/gabsocial/assets/investor_icon.js deleted file mode 100644 index 3f21174a..00000000 --- a/app/javascript/gabsocial/assets/investor_icon.js +++ /dev/null @@ -1,24 +0,0 @@ -const InvestorIcon = ({ - className = '', - size = '24px', - title = 'Gab.com Investor', -}) => ( - - - - - -) - -export default InvestorIcon \ No newline at end of file diff --git a/app/javascript/gabsocial/assets/pro_icon.js b/app/javascript/gabsocial/assets/pro_icon.js deleted file mode 100644 index d3d9cd73..00000000 --- a/app/javascript/gabsocial/assets/pro_icon.js +++ /dev/null @@ -1,24 +0,0 @@ -const ProIcon = ({ - className = '', - size = '24px', - title = 'GabPRO Account', -}) => ( - - - - - -) - -export default ProIcon \ No newline at end of file diff --git a/app/javascript/gabsocial/components/autosuggest_textbox.js b/app/javascript/gabsocial/components/autosuggest_textbox.js index 1911f487..279d75a8 100644 --- a/app/javascript/gabsocial/components/autosuggest_textbox.js +++ b/app/javascript/gabsocial/components/autosuggest_textbox.js @@ -235,6 +235,7 @@ export default class AutosuggestTextbox extends ImmutablePureComponent { bgTransparent: 1, outlineNone: 1, lineHeight125: 1, + colorPrimary: 1, height100PC: small, width100PC: !small, pt15: !small, @@ -265,7 +266,7 @@ export default class AutosuggestTextbox extends ImmutablePureComponent { className={textareaClasses} disabled={disabled} placeholder={placeholder} - dautoFocus={false} + autoFocus={false} value={value} onChange={this.onChange} // onKeyDown={this.onKeyDown} diff --git a/app/javascript/gabsocial/components/comment.js b/app/javascript/gabsocial/components/comment.js index c84232a1..a9a1b897 100644 --- a/app/javascript/gabsocial/components/comment.js +++ b/app/javascript/gabsocial/components/comment.js @@ -30,7 +30,7 @@ const makeMapStateToProps = (state, props) => ({ }) const mapDispatchToProps = (dispatch) => ({ - onReply (status, router) { + onReply(status, router) { if (!me) return dispatch(openModal('UNAUTHORIZED')) dispatch((_, getState) => { @@ -46,7 +46,7 @@ const mapDispatchToProps = (dispatch) => ({ } }) }, - onFavorite (status) { + onFavorite(status) { if (!me) return dispatch(openModal('UNAUTHORIZED')) if (status.get('favourited')) { @@ -58,6 +58,12 @@ const mapDispatchToProps = (dispatch) => ({ onOpenStatusOptions(status) { dispatch(openPopover('STATUS_OPTOINS', { status })) }, + onOpenLikes(status) { + dispatch(openModal('STATUS_LIKES', { status })) + }, + onOpenReposts(status) { + dispatch(openModal('STATUS_REPOSTS', { status })) + }, }) export default @@ -74,6 +80,8 @@ class Comment extends ImmutablePureComponent { onReply: PropTypes.func.isRequired, onFavorite: PropTypes.func.isRequired, onOpenStatusOptions: PropTypes.func.isRequired, + onOpenLikes: PropTypes.func.isRequired, + onOpenReposts: PropTypes.func.isRequired, } updateOnProps = [ @@ -85,6 +93,8 @@ class Comment extends ImmutablePureComponent { state = { showMedia: defaultMediaVisibility(this.props.status), + statusId: undefined, + height: undefined, } handleOnReply = () => { @@ -117,7 +127,7 @@ class Comment extends ImmutablePureComponent { } const style = { - paddingLeft: `${indent * 40}px`, + paddingLeft: `${indent * 42}px`, } return ( @@ -133,9 +143,13 @@ class Comment extends ImmutablePureComponent { -
+
- + { + this.props.onOpenLikes(this.props.status) + } + + openRepostsList = () => { + this.props.onOpenReposts(this.props.status) } render() { - const { status } = this.props + const { + intl, + status, + } = this.props const repostCount = status.get('reblogs_count') const favoriteCount = status.get('favourites_count') @@ -50,7 +70,7 @@ class CommentHeader extends ImmutablePureComponent { className={_s.ml5} > - Edited + {intl.formatMessage(messages.edited)} @@ -65,12 +85,13 @@ class CommentHeader extends ImmutablePureComponent { underlineOnHover backgroundColor='none' color='tertiary' - to={statusUrl} className={_s.ml5} + onClick={this.openLikesList} > - {favoriteCount} -  Likes + {intl.formatMessage(messages.likesLabel, { + number: favoriteCount, + })} @@ -85,12 +106,13 @@ class CommentHeader extends ImmutablePureComponent { underlineOnHover backgroundColor='none' color='tertiary' - to={statusUrl} className={_s.ml5} + onClick={this.openRepostsList} > - {repostCount} -  Reposts + {intl.formatMessage(messages.repostsLabel, { + number: repostCount, + })} diff --git a/app/javascript/gabsocial/components/comment_list.js b/app/javascript/gabsocial/components/comment_list.js index a2058907..adff6046 100644 --- a/app/javascript/gabsocial/components/comment_list.js +++ b/app/javascript/gabsocial/components/comment_list.js @@ -11,24 +11,23 @@ export default class CommentList extends ImmutablePureComponent { static propTypes = { commentsLimited: PropTypes.bool, descendants: ImmutablePropTypes.list, - } - - handleLoadMore = () => { - // + onViewComments: PropTypes.func.isRequired, } render() { const { descendants, commentsLimited, + onViewComments } = this.props - const upperLimit = 6 const size = descendants.size + const upperLimit = commentsLimited ? 6 : size const max = Math.min(commentsLimited ? 2 : upperLimit, size) + console.log("size, max:", size, max) + const Wrapper = !commentsLimited ? ScrollableList : DummyContainer - console.log("Wrapper:", Wrapper) return (
@@ -50,7 +49,7 @@ export default class CommentList extends ImmutablePureComponent { isText backgroundColor='none' color='tertiary' - onClick={this.handleLoadMore} + onClick={onViewComments} > View more comments diff --git a/app/javascript/gabsocial/components/icon.js b/app/javascript/gabsocial/components/icon.js index 2f77ec73..e4ec9e89 100644 --- a/app/javascript/gabsocial/components/icon.js +++ b/app/javascript/gabsocial/components/icon.js @@ -17,7 +17,6 @@ import CogIcon from '../assets/cog_icon' import CommentIcon from '../assets/comment_icon' import CopyIcon from '../assets/copy_icon' import DissenterIcon from '../assets/dissenter_icon' -import DonorIcon from '../assets/donor_icon' import EllipsisIcon from '../assets/ellipsis_icon' import EmailIcon from '../assets/email_icon' import ErrorIcon from '../assets/error_icon' @@ -31,7 +30,6 @@ import GroupAddIcon from '../assets/group_add_icon' import HappyIcon from '../assets/happy_icon' import HiddenIcon from '../assets/hidden_icon' import HomeIcon from '../assets/home_icon' -import InvestorIcon from '../assets/investor_icon' import ItalicIcon from '../assets/italic_icon' import LikeIcon from '../assets/like_icon' import LikedIcon from '../assets/liked_icon' @@ -52,7 +50,6 @@ import PencilIcon from '../assets/pencil_icon' import PinIcon from '../assets/pin_icon' import PlayIcon from '../assets/play_icon' import PollIcon from '../assets/poll_icon' -import ProIcon from '../assets/pro_icon' import RepostIcon from '../assets/repost_icon' import RichTextIcon from '../assets/rich_text_icon' import SearchIcon from '../assets/search_icon' @@ -90,7 +87,6 @@ const ICONS = { 'comment': CommentIcon, 'copy': CopyIcon, 'dissenter': DissenterIcon, - 'donor': DonorIcon, 'ellipsis': EllipsisIcon, 'email': EmailIcon, 'error': ErrorIcon, @@ -104,7 +100,6 @@ const ICONS = { 'hidden': HiddenIcon, 'happy': HappyIcon, 'home': HomeIcon, - 'investor': InvestorIcon, 'italic': ItalicIcon, 'like': LikeIcon, 'liked': LikedIcon, @@ -125,7 +120,6 @@ const ICONS = { 'pin': PinIcon, 'play': PlayIcon, 'poll': PollIcon, - 'pro': ProIcon, 'repost': RepostIcon, 'rich-text': RichTextIcon, 'search': SearchIcon, diff --git a/app/javascript/gabsocial/components/intersection_observer_article.js b/app/javascript/gabsocial/components/intersection_observer_article.js index 7e5c7e1e..aa7238fa 100644 --- a/app/javascript/gabsocial/components/intersection_observer_article.js +++ b/app/javascript/gabsocial/components/intersection_observer_article.js @@ -45,21 +45,8 @@ class IntersectionObserverArticle extends React.Component { } state = { - isHidden: false, // set to true in requestIdleCallback to trigger un-render - } - - shouldComponentUpdate(nextProps, nextState) { - const isUnrendered = !this.state.isIntersecting && (this.state.isHidden || this.props.cachedHeight); - const willBeUnrendered = !nextState.isIntersecting && (nextState.isHidden || nextProps.cachedHeight); - - // If we're going from rendered to unrendered (or vice versa) then update - if (!!isUnrendered !== !!willBeUnrendered) { - return true; - } - - // Otherwise, diff based on props - const propsToDiff = isUnrendered ? updateOnPropsForUnrendered : updateOnPropsForRendered; - return !propsToDiff.every(prop => is(nextProps[prop], this.props[prop])); + isIntersecting: false, + isHidden: true, } componentDidMount() { @@ -81,6 +68,20 @@ class IntersectionObserverArticle extends React.Component { this.componentMounted = false; } + shouldComponentUpdate(nextProps, nextState) { + const isUnrendered = !this.state.isIntersecting && (this.state.isHidden || this.props.cachedHeight); + const willBeUnrendered = !nextState.isIntersecting && (nextState.isHidden || nextProps.cachedHeight); + + // If we're going from rendered to unrendered (or vice versa) then update + if (!!isUnrendered !== !!willBeUnrendered) { + return true; + } + + // Otherwise, diff based on props + const propsToDiff = isUnrendered ? updateOnPropsForUnrendered : updateOnPropsForRendered; + return !propsToDiff.every(prop => is(nextProps[prop], this.props[prop])); + } + handleIntersection = (entry) => { this.entry = entry; @@ -113,9 +114,6 @@ class IntersectionObserverArticle extends React.Component { hideIfNotIntersecting = () => { if (!this.componentMounted) return - // When the browser gets a chance, test if we're still not intersecting, - // and if so, set our isHidden to true to trigger an unrender. The point of - // this is to save DOM nodes and avoid using up too much memory. this.setState((prevState) => ({ isHidden: !prevState.isIntersecting })) } diff --git a/app/javascript/gabsocial/components/modal/media_modal.js b/app/javascript/gabsocial/components/modal/media_modal.js index a71e93e1..efeee330 100644 --- a/app/javascript/gabsocial/components/modal/media_modal.js +++ b/app/javascript/gabsocial/components/modal/media_modal.js @@ -163,18 +163,14 @@ class MediaModal extends ImmutablePureComponent { outlineNone: 1, circle: 1, cursorPointer: 1, - colorPrimary: i === index, - lineHeight0825: i === index, bgPrimaryOpaque: i !== index, bgPrimary: i === index, + boxShadowDot: i === index, }) - const activeText = i === index ? '•' : '' return (
  • - +
  • ) }) diff --git a/app/javascript/gabsocial/components/panel/profile_info_panel.js b/app/javascript/gabsocial/components/panel/profile_info_panel.js index 51c8b83e..32351994 100644 --- a/app/javascript/gabsocial/components/panel/profile_info_panel.js +++ b/app/javascript/gabsocial/components/panel/profile_info_panel.js @@ -91,9 +91,24 @@ class ProfileInfoPanel extends ImmutablePureComponent {
    - { isPro && } - { isInvestor && } - { isDonor && } + { + isPro && +
    + PRO +
    + } + { + isInvestor && +
    + INVESTOR +
    + } + { + isDonor && +
    + DONOR +
    + }
    } diff --git a/app/javascript/gabsocial/components/panel/progress_panel.js b/app/javascript/gabsocial/components/panel/progress_panel.js index ac92a98e..9b928026 100644 --- a/app/javascript/gabsocial/components/panel/progress_panel.js +++ b/app/javascript/gabsocial/components/panel/progress_panel.js @@ -25,8 +25,6 @@ class ProgressPanel extends PureComponent { const value = Math.min(parseFloat(monthlyExpensesComplete), 100) - console.log("monthlyExpensesComplete:", monthlyExpensesComplete) - return ( diff --git a/app/javascript/gabsocial/components/popover/emoji_picker_popover.js b/app/javascript/gabsocial/components/popover/emoji_picker_popover.js index 6d35fdcd..9c9022f1 100644 --- a/app/javascript/gabsocial/components/popover/emoji_picker_popover.js +++ b/app/javascript/gabsocial/components/popover/emoji_picker_popover.js @@ -221,7 +221,6 @@ const mapDispatchToProps = (dispatch) => ({ onPickEmoji: (emoji) => { dispatch(useEmoji(emoji)) - console.log("emoji:", emoji) dispatch(insertEmojiCompose(0, emoji, false)) }, }) diff --git a/app/javascript/gabsocial/components/popover/group_options_popover.js b/app/javascript/gabsocial/components/popover/group_options_popover.js index b4917e93..2138cd38 100644 --- a/app/javascript/gabsocial/components/popover/group_options_popover.js +++ b/app/javascript/gabsocial/components/popover/group_options_popover.js @@ -84,7 +84,7 @@ class GroupOptionsPopover extends ImmutablePureComponent { ] return ( - + // // {({ opacity, scaleX, scaleY }) => ( diff --git a/app/javascript/gabsocial/components/status.js b/app/javascript/gabsocial/components/status.js index b48f29e2..fa994c2d 100644 --- a/app/javascript/gabsocial/components/status.js +++ b/app/javascript/gabsocial/components/status.js @@ -4,14 +4,11 @@ import ImmutablePureComponent from 'react-immutable-pure-component' import { HotKeys } from 'react-hotkeys' import classNames from 'classnames/bind' import { me, displayMedia, compactMode } from '../initial_state' -import StatusCard from './status_card' -import { MediaGallery, Video } from '../features/ui/util/async_components' import ComposeFormContainer from '../features/compose/containers/compose_form_container' import StatusContent from './status_content' import StatusPrepend from './status_prepend' import StatusActionBar from './status_action_bar' import StatusMedia from './status_media' -import Poll from './poll' import StatusHeader from './status_header' import CommentList from './comment_list' @@ -26,13 +23,14 @@ export const textForScreenReader = (intl, status, rebloggedByText = false) => { const displayName = status.getIn(['account', 'display_name']) + // : todo : const values = [ - displayName.length === 0 ? status.getIn(['account', 'acct']).split('@')[0] : displayName, - status.get('spoiler_text') && status.get('hidden') - ? status.get('spoiler_text') - : status.get('search_index').slice(status.get('spoiler_text').length), - intl.formatDate(status.get('created_at'), { hour: '2-digit', minute: '2-digit', month: 'short', day: 'numeric' }), - `@${status.getIn(['account', 'acct'])}`, + // displayName.length === 0 ? status.getIn(['account', 'acct']).split('@')[0] : displayName, + // status.get('spoiler_text') && status.get('hidden') + // ? status.get('spoiler_text') + // : status.get('search_index').slice(status.get('spoiler_text').length), + // intl.formatDate(status.get('created_at'), { hour: '2-digit', minute: '2-digit', month: 'short', day: 'numeric' }), + // `@${status.getIn(['account', 'acct'])}`, ] if (rebloggedByText) { @@ -64,6 +62,7 @@ class Status extends ImmutablePureComponent { intl: PropTypes.object.isRequired, status: ImmutablePropTypes.map, descendantsIds: ImmutablePropTypes.list, + ancestorStatus: ImmutablePropTypes.map, isChild: PropTypes.bool, isPromoted: PropTypes.bool, isFeatured: PropTypes.bool, @@ -136,7 +135,7 @@ class Status extends ImmutablePureComponent { if (nextProps.status && nextProps.status.get('id') !== prevState.statusId) { return { - loadedComments: false, + loadedComments: false, //reset showMedia: defaultMediaVisibility(nextProps.status), statusId: nextProps.status.get('id'), } @@ -418,6 +417,8 @@ class Status extends ImmutablePureComponent { bgSubtle_onHover: isChild, }) + console.log("status:", status) + return (
    }
    diff --git a/app/javascript/gabsocial/components/status_content.js b/app/javascript/gabsocial/components/status_content.js index 03b7cc6a..b85d3147 100644 --- a/app/javascript/gabsocial/components/status_content.js +++ b/app/javascript/gabsocial/components/status_content.js @@ -78,20 +78,6 @@ class StatusContent extends ImmutablePureComponent { } else { link.setAttribute('title', link.href) } - - const descendents = link.getElementsByTagName('*') - for (let j = 0; j < descendents.length; j++) { - const descendent = descendents[j]; - - if (descendent.classList.contains('invisible')) { - descendent.classList.remove('invisible') - descendent.classList.add(_s.fs0, _s.text, _s.inherit) - } - if (descendent.classList.contains('ellipsis')) { - descendent.classList.remove('ellipsis') - descendent.classList.add(_s.noSelect, _s.text, _s.inherit) - } - } } if ( @@ -299,7 +285,7 @@ class StatusContent extends ImmutablePureComponent { const statusContentClasses = cx({ statusContent: 1, - height220PX: collapsed, + height215PX: collapsed, overflowHidden: collapsed, }) diff --git a/app/javascript/gabsocial/components/status_header.js b/app/javascript/gabsocial/components/status_header.js index 96a28855..5a474d2c 100644 --- a/app/javascript/gabsocial/components/status_header.js +++ b/app/javascript/gabsocial/components/status_header.js @@ -16,6 +16,7 @@ import Button from './button' import Avatar from './avatar' const messages = defineMessages({ + edited: { id: 'status.edited', defaultMessage: 'Edited' }, public_short: { id: 'privacy.public.short', defaultMessage: 'Public' }, public_long: { id: 'privacy.public.long', defaultMessage: 'Visible for anyone on or off Gab' }, unlisted_short: { id: 'privacy.unlisted.short', defaultMessage: 'Unlisted' }, @@ -193,7 +194,7 @@ class StatusHeader extends ImmutablePureComponent { className={_s.ml5} > - Edited + {intl.formatMessage(messages.edited)} diff --git a/app/javascript/gabsocial/components/trends_item.js b/app/javascript/gabsocial/components/trends_item.js index 11c21f93..59fae360 100644 --- a/app/javascript/gabsocial/components/trends_item.js +++ b/app/javascript/gabsocial/components/trends_item.js @@ -50,7 +50,7 @@ export default class TrendingItem extends ImmutablePureComponent { if (!trend) return null - const title = trend.get('title') || '' + const title = `${trend.get('title')}`.trim() const description = trend.get('description') || '' const correctedAuthor = trend.getIn(['author', 'name'], '').replace('www.', '') diff --git a/app/javascript/gabsocial/containers/display.js b/app/javascript/gabsocial/containers/display.js index ecab2cbd..bbd58b70 100644 --- a/app/javascript/gabsocial/containers/display.js +++ b/app/javascript/gabsocial/containers/display.js @@ -45,7 +45,6 @@ class Display extends PureComponent { } static getDerivedStateFromProps(nextProps, prevState) { - console.log("nextProps:", nextProps) if (nextProps.theme !== prevState.theme || nextProps.radiusSmallDisabled !== prevState.radiusSmallDisabled || nextProps.radiusCircleDisabled !== prevState.radiusCircleDisabled || diff --git a/app/javascript/gabsocial/containers/gabsocial.js b/app/javascript/gabsocial/containers/gabsocial.js index e31acffb..c9b422f3 100644 --- a/app/javascript/gabsocial/containers/gabsocial.js +++ b/app/javascript/gabsocial/containers/gabsocial.js @@ -79,6 +79,16 @@ export default class GabSocial extends PureComponent { this.disconnect = store.dispatch(connectUserStream()) store.dispatch(connectStatusUpdateStream()) } + + console.log('%c Gab Social ', [ + , 'color: #30CE7D' + , 'display: block' + , 'line-height: 80px' + , 'font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Helvetica Neue", sans-serif' + , 'font-size: 36px' + , 'text-align: center' + , 'font-weight: bold' + ].join(';')) } componentWillUnmount () { diff --git a/app/javascript/gabsocial/containers/status_container.js b/app/javascript/gabsocial/containers/status_container.js index 26641206..61aebf3b 100644 --- a/app/javascript/gabsocial/containers/status_container.js +++ b/app/javascript/gabsocial/containers/status_container.js @@ -3,7 +3,6 @@ import { Map as ImmutableMap, List as ImmutableList } from 'immutable'; import { replyCompose, mentionCompose, - quoteCompose, } from '../actions/compose'; import { repost, @@ -21,12 +20,13 @@ import { hideStatus, revealStatus, fetchComments, + fetchAncestors, } from '../actions/statuses'; import { initMuteModal } from '../actions/mutes'; import { initReport } from '../actions/reports'; import { openModal } from '../actions/modal'; import { openPopover } from '../actions/popover'; -import { me, boostModal, deleteModal } from '../initial_state'; +import { me, deleteModal } from '../initial_state'; import { createRemovedAccount, groupRemoveStatus, @@ -46,18 +46,14 @@ const makeMapStateToProps = () => { username: username, }) - // : todo : if is comment (i.e. if any ancestorsIds) use comment not status - let descendantsIds = ImmutableList() + let ancestorStatus - if (status) { + if (status && status.get('replies_count') > 0) { let indent = -1 descendantsIds = descendantsIds.withMutations(mutable => { const ids = [status.get('id')] - const r = state.getIn(['contexts', 'replies', ids[0]]) - // console.log("r:", r) - while (ids.length > 0) { let id = ids.shift() const replies = state.getIn(['contexts', 'replies', id]) @@ -75,14 +71,26 @@ const makeMapStateToProps = () => { }); indent++ indent = Math.min(2, indent) + } else { + indent = 0 // reset } } }) } + + if (status && status.get('in_reply_to_account_id')) { + // : todo : + // console.log("FIND ANCESTOR") + const ids = [status.get('id')] + const reps = state.getIn(['contexts', 'inReplyTos']) + } + + // console.log("ancestorStatus:", ancestorStatus) return { status, - descendantsIds + descendantsIds, + ancestorStatus, } } @@ -254,6 +262,10 @@ const mapDispatchToProps = (dispatch) => ({ dispatch(fetchComments(statusId)) }, + onFetchAncestors(statusId) { + dispatch(fetchAncestors(statusId)) + }, + onOpenLikes(status) { dispatch(openModal('STATUS_LIKES', { status })) }, diff --git a/app/javascript/gabsocial/features/account_timeline.js b/app/javascript/gabsocial/features/account_timeline.js index 2296f843..c4bf13ab 100644 --- a/app/javascript/gabsocial/features/account_timeline.js +++ b/app/javascript/gabsocial/features/account_timeline.js @@ -91,8 +91,6 @@ class AccountTimeline extends ImmutablePureComponent { if (!account) return null - console.log("statusIds:", statusIds) - return (
    @@ -294,7 +296,7 @@ class ComposeForm extends ImmutablePureComponent { > { - !!reduxReplyToId && !shouldCondense && isModalOpen && + !!reduxReplyToId && isModalOpen &&
    { const reduxReplyToId = state.getIn(['compose', 'in_reply_to']) - const isMatch = reduxReplyToId || replyToId ? reduxReplyToId === replyToId : true + let isMatch = !!reduxReplyToId + if (!isMatch) isMatch = replyToId ? reduxReplyToId === replyToId : true if (!isMatch) { return { diff --git a/app/javascript/gabsocial/features/search.js b/app/javascript/gabsocial/features/search.js index 01de265c..ea6a3735 100644 --- a/app/javascript/gabsocial/features/search.js +++ b/app/javascript/gabsocial/features/search.js @@ -109,14 +109,16 @@ class Search extends ImmutablePureComponent { Showing {size} of {results.get('groups').size} results
    - { - results.get('groups').slice(0, size).map(group => ( - - )) - } +
    + { + results.get('groups').slice(0, size).map(group => ( + + )) + } +
    ) } diff --git a/app/javascript/gabsocial/features/status.js b/app/javascript/gabsocial/features/status.js index 3dbcadb9..801d6de5 100644 --- a/app/javascript/gabsocial/features/status.js +++ b/app/javascript/gabsocial/features/status.js @@ -39,6 +39,7 @@ class Status extends ImmutablePureComponent { render() { const { status } = this.props + // : todo : // - if comment render as such if (!status) { @@ -46,7 +47,7 @@ class Status extends ImmutablePureComponent { } return ( - + ) } diff --git a/app/javascript/gabsocial/pages/home_page.js b/app/javascript/gabsocial/pages/home_page.js index 5f57a461..38bb4191 100644 --- a/app/javascript/gabsocial/pages/home_page.js +++ b/app/javascript/gabsocial/pages/home_page.js @@ -72,10 +72,11 @@ class HomePage extends PureComponent { diff --git a/app/javascript/gabsocial/reducers/group_lists.js b/app/javascript/gabsocial/reducers/group_lists.js index 45c0165c..ae10fa92 100644 --- a/app/javascript/gabsocial/reducers/group_lists.js +++ b/app/javascript/gabsocial/reducers/group_lists.js @@ -1,22 +1,23 @@ -import { Map as ImmutableMap, List as ImmutableList } from 'immutable'; -import { GROUPS_FETCH_SUCCESS } from '../actions/groups'; +import { Map as ImmutableMap, List as ImmutableList } from 'immutable' +import { GROUPS_FETCH_SUCCESS } from '../actions/groups' const initialState = ImmutableMap({ new: ImmutableList(), featured: ImmutableList(), member: ImmutableList(), admin: ImmutableList(), -}); +}) const normalizeList = (state, type, id, groups) => { - return state.set(type, ImmutableList(groups.map(item => item.id))); -}; + return state.set(type, ImmutableList(groups.map(item => item.id))) +} export default function groupLists(state = initialState, action) { switch(action.type) { case GROUPS_FETCH_SUCCESS: - return normalizeList(state, action.tab, action.id, action.groups); + if (!action.tab) return state + return normalizeList(state, action.tab, action.id, action.groups) default: - return state; + return state } -}; +} diff --git a/app/javascript/gabsocial/reducers/timelines.js b/app/javascript/gabsocial/reducers/timelines.js index 50ee047f..8d843f33 100644 --- a/app/javascript/gabsocial/reducers/timelines.js +++ b/app/javascript/gabsocial/reducers/timelines.js @@ -92,7 +92,8 @@ const updateTimelineQueue = (state, timeline, status) => { let alreadyExists = queuedStatuses.find(existingQueuedStatus => existingQueuedStatus.get('id') === status.get('id')); if (!alreadyExists) alreadyExists = listedStatuses.find(existingListedStatusId => existingListedStatusId === status.get('id')); - if (alreadyExists) { + const isReply = !!status.get('in_reply_to_id') + if (alreadyExists || isReply) { return state; } diff --git a/app/javascript/gabsocial/selectors/index.js b/app/javascript/gabsocial/selectors/index.js index d7b77590..ea74c539 100644 --- a/app/javascript/gabsocial/selectors/index.js +++ b/app/javascript/gabsocial/selectors/index.js @@ -1,21 +1,21 @@ -import { createSelector } from 'reselect'; -import { List as ImmutableList } from 'immutable'; -import { me } from '../initial_state'; +import { createSelector } from 'reselect' +import { List as ImmutableList } from 'immutable' +import { me } from '../initial_state' -const getAccountBase = (state, id) => state.getIn(['accounts', id], null); -const getAccountCounters = (state, id) => state.getIn(['accounts_counters', id], null); -const getAccountRelationship = (state, id) => state.getIn(['relationships', id], null); -const getAccountMoved = (state, id) => state.getIn(['accounts', state.getIn(['accounts', id, 'moved'])]); +const getAccountBase = (state, id) => state.getIn(['accounts', id], null) +const getAccountCounters = (state, id) => state.getIn(['accounts_counters', id], null) +const getAccountRelationship = (state, id) => state.getIn(['relationships', id], null) +const getAccountMoved = (state, id) => state.getIn(['accounts', state.getIn(['accounts', id, 'moved'])]) export const makeGetAccount = () => { return createSelector([getAccountBase, getAccountCounters, getAccountRelationship, getAccountMoved], (base, counters, relationship, moved) => { if (base === null) { - return null; + return null } return base.merge(counters).withMutations(map => { - map.set('relationship', relationship); - map.set('moved', moved); + map.set('relationship', relationship) + map.set('moved', moved) }); }); }; @@ -26,12 +26,12 @@ const toServerSideType = columnType => { case 'notifications': case 'public': case 'thread': - return columnType; + return columnType default: if (columnType.indexOf('list:') > -1) { - return 'home'; + return 'home' } else { - return 'public'; // community, account, hashtag + return 'public' // community, account, hashtag } } }; @@ -66,6 +66,7 @@ export const regexFromFilters = filters => { export const makeGetStatus = () => { return createSelector( [ + (state) => state, (state, { id }) => state.getIn(['statuses', id]), (state, { id }) => state.getIn(['statuses', state.getIn(['statuses', id, 'quote_of_id'])]), (state, { id }) => state.getIn(['statuses', state.getIn(['statuses', id, 'reblog'])]), @@ -76,19 +77,33 @@ export const makeGetStatus = () => { getFilters, ], - (statusBase, quotedStatus, statusRepost, accountBase, accountQuoted, accountRepost, username, filters) => { + (state, statusBase, quotedStatus, statusRepost, accountBase, accountQuoted, accountRepost, username, filters) => { if (!statusBase) { - return null; + return null } const accountUsername = accountBase.get('acct'); //Must be owner of status if username exists if (accountUsername !== username && username !== undefined) { - return null; + return null } if (statusRepost) { - statusRepost = statusRepost.set('account', accountRepost); + statusRepost = statusRepost.set('account', accountRepost) + + //Check if theres a quoted post that + const statusRepostQuoteId = statusRepost.get('quote_of_id') + if (!!statusRepostQuoteId) { + //Get repost's quoted post + let repostedQuotedStatus = state.getIn(['statuses', statusRepostQuoteId]) + if (repostedQuotedStatus) { + //Get/set account and set quoted_status + const repostedQuotedStatusAccount = state.getIn(['accounts', repostedQuotedStatus.get('account')]) + repostedQuotedStatus = repostedQuotedStatus.set('account', repostedQuotedStatusAccount) + + statusRepost = statusRepost.set('quoted_status', repostedQuotedStatus) + } + } } else { statusRepost = null; } @@ -97,6 +112,8 @@ export const makeGetStatus = () => { quotedStatus = quotedStatus.set('account', accountQuoted); } + //Find ancestor status + const regex = (accountRepost || accountBase).get('id') !== me && regexFromFilters(filters); const filtered = regex && regex.test(statusBase.get('reblog') ? statusRepost.get('search_index') : statusBase.get('search_index')); diff --git a/app/javascript/gabsocial/utils/cursor_token_match.js b/app/javascript/gabsocial/utils/cursor_token_match.js index 732de418..36f42561 100644 --- a/app/javascript/gabsocial/utils/cursor_token_match.js +++ b/app/javascript/gabsocial/utils/cursor_token_match.js @@ -12,8 +12,6 @@ export function textAtCursorMatchesToken(str, caretPosition, searchTokens) { word = str.slice(left, right + caretPosition); } - console.log("left, right, word, caretPosition:", left, right, word, caretPosition) - if (!word || word.trim().length < 2 || searchTokens.indexOf(word[0]) === -1) { return [null, null]; } diff --git a/app/javascript/styles/global.css b/app/javascript/styles/global.css index da048cb5..c17e4264 100644 --- a/app/javascript/styles/global.css +++ b/app/javascript/styles/global.css @@ -109,6 +109,10 @@ body { min-height: 18px; } +.statusContent p:not(:last-of-type) { + margin-bottom: 18px; +} + .statusContent em { font-style: italic; } @@ -345,6 +349,10 @@ body { .bgDanger { background-color: var(--color_red); } .bgDangerDark_onHover:hover { background-color: var(--color_red-dark); } +.bgPro { background-color: var(--color_gold); } +.bgDonor { background-color: #4DA6FF; } +.bgInvestor { background-color: #6DD900; } + /* */ .colorPrimary { color: var(--text_color_primary); } @@ -389,7 +397,6 @@ body { /* */ -.lineHeight0825 { line-height: 0.825em; } .lineHeight125 { line-height: 1.25em; } .lineHeight15 { line-height: 1.5em; } .lineHeight2 { line-height: 2em; } @@ -424,6 +431,7 @@ body { .height350PX { height: 350px; } .height260PX { height: 260px; } .height220PX { height: 220px; } +.height215PX { height: 215px; } .height158PX { height: 158px; } .height122PX { height: 122px; } .height72PX { height: 72px; } @@ -439,6 +447,7 @@ body { .maxWidth100PC { max-width: 100%; } .maxWidth640PX { max-width: 640px; } +.maxWidth100PC42PX { max-width: calc(100% - 42px); } .width100PC { width: 100%; } .width50PC { width: 50%; } @@ -692,6 +701,7 @@ body { .boxShadow1 { box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, .25); } .boxShadowPopover { box-shadow: 0 0 15px -5px rgba(0,0,0,0.15); } .boxShadowBlock { box-shadow: 0 1px 2px rgba(0,0,0,0.2); } +.boxShadowDot { box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 6px #000; } .boxShadowNone .boxShadowBlock { box-shadow: none !important; @@ -745,6 +755,23 @@ body { width: 20px; } +:global(.invisible) { + font-size: 0px; + display: inline; + white-space: pre-wrap; + word-wrap: break-word; + font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Helvetica Neue", sans-serif; +} + +:global(.ellipsis) { + display: inline; + white-space: pre-wrap; + word-wrap: break-word; + font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, "Helvetica Neue", sans-serif; + color: inherit; + user-select: none; +} + /* .videoPlayerVolume:before { content: ''; display: block; diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index 78f6c3a9..b7eb939c 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -47,12 +47,9 @@ class Formatter html = raw_content - # puts "BOLLI 1: " + html - html = encode_and_link_urls(html, linkable_accounts) - # puts "BOLLI 2: " + html - + # : todo : if options[:use_markdown] html = convert_headers(html) html = convert_strong(html) @@ -63,16 +60,12 @@ class Formatter html = convert_links(html) html = convert_lists(html) html = convert_ordered_lists(html) - # puts "BOLLI 3: " + html end html = encode_custom_emojis(html, status.emojis, options[:autoplay]) if options[:custom_emojify] - # puts "BOLLI 4: " + html html = simple_format(html, {}, sanitize: false) - # puts "BOLLI 5: " + html - html = html.delete("\n") html.html_safe # rubocop:disable Rails/OutputSafety diff --git a/app/views/layouts/admin.html.haml b/app/views/layouts/admin.html.haml index 62e578f4..d93cb74f 100644 --- a/app/views/layouts/admin.html.haml +++ b/app/views/layouts/admin.html.haml @@ -1,7 +1,7 @@ - content_for :header_tags do = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous' - %link(rel='stylesheet' href='/legacy/common-05893041.css') - %link(rel='stylesheet' href='/legacy/gabsocial-light-e6f94f23.chunk.css') + %link(rel='stylesheet' href='/legacy/common.css') + %link(rel='stylesheet' href='/legacy/default.css') - content_for :content do .admin-wrapper diff --git a/app/views/layouts/auth.html.haml b/app/views/layouts/auth.html.haml index d5c263fb..8ca56b1e 100644 --- a/app/views/layouts/auth.html.haml +++ b/app/views/layouts/auth.html.haml @@ -1,8 +1,10 @@ - content_for :header_tags do = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous' + %link(rel='stylesheet' href='/legacy/common.css') + %link(rel='stylesheet' href='/legacy/default.css') - content_for :content do - .container-alt + .container .logo-container %h1 = link_to root_path do diff --git a/app/views/layouts/public.html.haml b/app/views/layouts/public.html.haml index b2c448b3..74767684 100644 --- a/app/views/layouts/public.html.haml +++ b/app/views/layouts/public.html.haml @@ -1,7 +1,7 @@ - content_for :header_tags do = javascript_pack_tag 'public', integrity: true, crossorigin: 'anonymous' - %link(rel='stylesheet' href='/legacy/common-05893041.css') - %link(rel='stylesheet' href='/legacy/default-558fca16.chunk.css') + %link(rel='stylesheet' href='/legacy/common.css') + %link(rel='stylesheet' href='/legacy/default.css') - content_for :content do .public-layout diff --git a/public/avatars/original/missing.png b/public/avatars/original/missing.png index d20a177c..3b37e69c 100644 Binary files a/public/avatars/original/missing.png and b/public/avatars/original/missing.png differ diff --git a/public/legacy/common-05893041.css b/public/legacy/common-05893041.css deleted file mode 100644 index 1d3f5476..00000000 --- a/public/legacy/common-05893041.css +++ /dev/null @@ -1,2 +0,0 @@ -/*!* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome -* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)*/@font-face{font-family:FontAwesome;src:url(/legacy/fonts/fontawesome-webfont-674f50d2.eot);src:url(/legacy/fonts/fontawesome-webfont-674f50d2.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/legacy/fonts/fontawesome-webfont-af7ae505.woff2) format("woff2"),url(/legacy/fonts/fontawesome-webfont-fee66e71.woff) format("woff"),url(/legacy/fonts/fontawesome-webfont-b06871f2.ttf) format("truetype"),url(/legacy/fonts/fontawesome-webfont-912ec66d.svg#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{margin-left:-8px;position:absolute}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow:before{box-sizing:content-box;position:absolute;border:8px solid transparent;height:0;width:1px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow:before{content:"";z-index:-1;border-width:8px;left:-8px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow:before{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow:before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0}.react-datepicker{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:.8rem;background-color:#fff;color:#000;border:1px solid #aeaeae;border-radius:.3rem;display:inline-block;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-radius:.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{margin-top:10px}.react-datepicker-popper[data-placement^=top]{margin-bottom:10px}.react-datepicker-popper[data-placement^=right]{margin-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{margin-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:.3rem;border-top-right-radius:.3rem;padding-top:8px;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__year-dropdown-container--select{display:inline-block;margin:0 2px}.react-datepicker-time__header,.react-datepicker-year-header,.react-datepicker__current-month{margin-top:0;color:#000;font-weight:700;font-size:.944rem}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{background:0 0;line-height:1.7rem;text-align:center;cursor:pointer;position:absolute;top:10px;width:0;padding:0;border:.45rem solid transparent;z-index:1;height:10px;width:10px;text-indent:-999em;overflow:hidden}.react-datepicker__navigation--previous{left:10px;border-right-color:#ccc}.react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__navigation--previous--disabled,.react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__navigation--next{right:10px;border-left-color:#ccc}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:80px}.react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__navigation--next--disabled,.react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px;border-top-color:#ccc}.react-datepicker__navigation--years-previous:hover{border-top-color:#b3b3b3}.react-datepicker__navigation--years-upcoming{top:-4px;border-bottom-color:#ccc}.react-datepicker__navigation--years-upcoming:hover{border-bottom-color:#b3b3b3}.react-datepicker__month-container{float:left}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption,.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:85px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:.3rem;position:absolute;right:-72px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:#fff}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + .85rem);overflow-y:scroll;padding-right:0;padding-left:0;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:700}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap}.react-datepicker__day,.react-datepicker__day-name,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__month--in-range,.react-datepicker__month--in-selecting-range,.react-datepicker__month--selected,.react-datepicker__quarter--in-range,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--selected{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__month--in-range:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--selected:hover,.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--selected:hover{background-color:#1d5d90}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled{color:#ccc;pointer-events:none}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today{font-weight:700}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted{border-radius:.3rem;background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2{color:green}.react-datepicker__day--in-range,.react-datepicker__day--in-selecting-range,.react-datepicker__day--selected,.react-datepicker__month-text--in-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--selected,.react-datepicker__quarter-text--in-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--selected{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__day--in-range:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--selected:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--selected:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected{border-radius:.3rem;background-color:#2a87d0;color:#fff}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range{background-color:rgba(33,107,165,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range,.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range,.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range{background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover{background-color:transparent}.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover{background-color:#216ba5}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:#f0f0f0}.react-datepicker__input-container{position:relative;display:inline-block;width:100%}.react-datepicker__month-read-view,.react-datepicker__month-year-read-view,.react-datepicker__year-read-view{border:1px solid transparent;border-radius:.3rem}.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover,.react-datepicker__year-read-view:hover{cursor:pointer}.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{border-top-color:#ccc;float:right;margin-left:20px;top:8px;position:relative;border-width:.45rem}.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown,.react-datepicker__year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:.3rem;border:1px solid #aeaeae}.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover,.react-datepicker__year-dropdown:hover{cursor:pointer}.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable,.react-datepicker__year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__month-option,.react-datepicker__month-year-option,.react-datepicker__year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type,.react-datepicker__year-option:first-of-type{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type,.react-datepicker__year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover,.react-datepicker__year-option:hover{background-color:#ccc}.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected,.react-datepicker__year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:transparent;border:0;outline:0;padding:0 6px 0 0;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon:after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"×"}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:700;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:rgba(0,0,0,.8);left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem}@media(max-height:550px),(max-width:400px){.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem}}.react-datepicker__portal .react-datepicker-time__header,.react-datepicker__portal .react-datepicker__current-month{font-size:1.44rem}.react-datepicker__portal .react-datepicker__navigation{border:.81rem solid transparent}.react-datepicker__portal .react-datepicker__navigation--previous{border-right-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--previous--disabled,.react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__portal .react-datepicker__navigation--next{border-left-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--next--disabled,.react-datepicker__portal .react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default} \ No newline at end of file diff --git a/public/legacy/common.css b/public/legacy/common.css new file mode 100644 index 00000000..e8d43ad4 --- /dev/null +++ b/public/legacy/common.css @@ -0,0 +1,2 @@ +/*!* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome +* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)*/@font-face{font-family:FontAwesome;src:url(/legacy/fonts/fontawesome-webfont.eot);src:url(/legacy/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format("embedded-opentype"),url(/legacy/fonts/fontawesome-webfont.woff2) format("woff2"),url(/legacy/fonts/fontawesome-webfont.woff) format("woff"),url(/legacy/fonts/fontawesome-webfont.ttf) format("truetype"),url(/legacy/fonts/fontawesome-webfont.svg#fontawesomeregular) format("svg");font-weight:400;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s linear infinite;animation:fa-spin 2s linear infinite}.fa-pulse{-webkit-animation:fa-spin 1s steps(8) infinite;animation:fa-spin 1s steps(8) infinite}@-webkit-keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";transform:scaleY(-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-close:before,.fa-remove:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-cog:before,.fa-gear:before{content:""}.fa-trash-o:before{content:""}.fa-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-repeat:before,.fa-rotate-right:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before{content:""}.fa-check-circle:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-exclamation-triangle:before,.fa-warning:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-cogs:before,.fa-gears:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before{content:""}.fa-arrow-circle-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-floppy-o:before,.fa-save:before{content:""}.fa-square:before{content:""}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-sort:before,.fa-unsorted:before{content:""}.fa-sort-desc:before,.fa-sort-down:before{content:""}.fa-sort-asc:before,.fa-sort-up:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-gavel:before,.fa-legal:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-bolt:before,.fa-flash:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-clipboard:before,.fa-paste:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-chain-broken:before,.fa-unlink:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:""}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:""}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:""}.fa-eur:before,.fa-euro:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-inr:before,.fa-rupee:before{content:""}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:""}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:""}.fa-krw:before,.fa-won:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-try:before,.fa-turkish-lira:before{content:""}.fa-plus-square-o:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-bank:before,.fa-institution:before,.fa-university:before{content:""}.fa-graduation-cap:before,.fa-mortar-board:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:""}.fa-file-archive-o:before,.fa-file-zip-o:before{content:""}.fa-file-audio-o:before,.fa-file-sound-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:""}.fa-empire:before,.fa-ge:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-paper-plane:before,.fa-send:before{content:""}.fa-paper-plane-o:before,.fa-send-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-bed:before,.fa-hotel:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-y-combinator:before,.fa-yc:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-television:before,.fa-tv:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:""}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-sign-language:before,.fa-signing:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-address-card:before,.fa-vcard:before{content:""}.fa-address-card-o:before,.fa-vcard-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{margin-left:-8px;position:absolute}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow:before{box-sizing:content-box;position:absolute;border:8px solid transparent;height:0;width:1px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow:before{content:"";z-index:-1;border-width:8px;left:-8px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle{top:0;margin-top:-8px}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{border-top:none;border-bottom-color:#f0f0f0}.react-datepicker-popper[data-placement^=bottom] .react-datepicker__triangle:before{top:-1px;border-bottom-color:#aeaeae}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{bottom:0;margin-bottom:-8px}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle,.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow:before{border-bottom:none;border-top-color:#fff}.react-datepicker-popper[data-placement^=top] .react-datepicker__triangle:before,.react-datepicker__month-read-view--down-arrow:before,.react-datepicker__month-year-read-view--down-arrow:before,.react-datepicker__year-read-view--down-arrow:before{bottom:-1px;border-top-color:#aeaeae}.react-datepicker-wrapper{display:inline-block;padding:0;border:0}.react-datepicker{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:.8rem;background-color:#fff;color:#000;border:1px solid #aeaeae;border-radius:.3rem;display:inline-block;position:relative}.react-datepicker--time-only .react-datepicker__triangle{left:35px}.react-datepicker--time-only .react-datepicker__time-container{border-left:0}.react-datepicker--time-only .react-datepicker__time,.react-datepicker--time-only .react-datepicker__time-box{border-radius:.3rem}.react-datepicker__triangle{position:absolute;left:50px}.react-datepicker-popper{z-index:1}.react-datepicker-popper[data-placement^=bottom]{margin-top:10px}.react-datepicker-popper[data-placement^=top]{margin-bottom:10px}.react-datepicker-popper[data-placement^=right]{margin-left:8px}.react-datepicker-popper[data-placement^=right] .react-datepicker__triangle{left:auto;right:42px}.react-datepicker-popper[data-placement^=left]{margin-right:8px}.react-datepicker-popper[data-placement^=left] .react-datepicker__triangle{left:42px;right:auto}.react-datepicker__header{text-align:center;background-color:#f0f0f0;border-bottom:1px solid #aeaeae;border-top-left-radius:.3rem;border-top-right-radius:.3rem;padding-top:8px;position:relative}.react-datepicker__header--time{padding-bottom:8px;padding-left:5px;padding-right:5px}.react-datepicker__month-dropdown-container--scroll,.react-datepicker__month-dropdown-container--select,.react-datepicker__month-year-dropdown-container--scroll,.react-datepicker__month-year-dropdown-container--select,.react-datepicker__year-dropdown-container--scroll,.react-datepicker__year-dropdown-container--select{display:inline-block;margin:0 2px}.react-datepicker-time__header,.react-datepicker-year-header,.react-datepicker__current-month{margin-top:0;color:#000;font-weight:700;font-size:.944rem}.react-datepicker-time__header{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.react-datepicker__navigation{background:0 0;line-height:1.7rem;text-align:center;cursor:pointer;position:absolute;top:10px;width:0;padding:0;border:.45rem solid transparent;z-index:1;height:10px;width:10px;text-indent:-999em;overflow:hidden}.react-datepicker__navigation--previous{left:10px;border-right-color:#ccc}.react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__navigation--previous--disabled,.react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__navigation--next{right:10px;border-left-color:#ccc}.react-datepicker__navigation--next--with-time:not(.react-datepicker__navigation--next--with-today-button){right:80px}.react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__navigation--next--disabled,.react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default}.react-datepicker__navigation--years{position:relative;top:0;display:block;margin-left:auto;margin-right:auto}.react-datepicker__navigation--years-previous{top:4px;border-top-color:#ccc}.react-datepicker__navigation--years-previous:hover{border-top-color:#b3b3b3}.react-datepicker__navigation--years-upcoming{top:-4px;border-bottom-color:#ccc}.react-datepicker__navigation--years-upcoming:hover{border-bottom-color:#b3b3b3}.react-datepicker__month-container{float:left}.react-datepicker__month{margin:.4rem;text-align:center}.react-datepicker__month .react-datepicker__month-text,.react-datepicker__month .react-datepicker__quarter-text{display:inline-block;width:4rem;margin:2px}.react-datepicker__input-time-container{clear:both;width:100%;float:left;margin:5px 0 10px 15px;text-align:left}.react-datepicker__input-time-container .react-datepicker-time__caption,.react-datepicker__input-time-container .react-datepicker-time__input-container{display:inline-block}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input{display:inline-block;margin-left:10px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input{width:85px}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-inner-spin-button,.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__input input[type=time]{-moz-appearance:textfield}.react-datepicker__input-time-container .react-datepicker-time__input-container .react-datepicker-time__delimiter{margin-left:5px;display:inline-block}.react-datepicker__time-container{float:right;border-left:1px solid #aeaeae;width:85px}.react-datepicker__time-container--with-today-button{display:inline;border:1px solid #aeaeae;border-radius:.3rem;position:absolute;right:-72px;top:0}.react-datepicker__time-container .react-datepicker__time{position:relative;background:#fff}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box{width:85px;overflow-x:hidden;margin:0 auto;text-align:center}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list{list-style:none;margin:0;height:calc(195px + .85rem);overflow-y:scroll;padding-right:0;padding-left:0;width:100%;box-sizing:content-box}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item{height:30px;padding:5px 10px;white-space:nowrap}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item:hover{cursor:pointer;background-color:#f0f0f0}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected{background-color:#216ba5;color:#fff;font-weight:700}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--selected:hover{background-color:#216ba5}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled{color:#ccc}.react-datepicker__time-container .react-datepicker__time .react-datepicker__time-box ul.react-datepicker__time-list li.react-datepicker__time-list-item--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__week-number{color:#ccc;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__week-number.react-datepicker__week-number--clickable{cursor:pointer}.react-datepicker__week-number.react-datepicker__week-number--clickable:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day-names,.react-datepicker__week{white-space:nowrap}.react-datepicker__day,.react-datepicker__day-name,.react-datepicker__time-name{color:#000;display:inline-block;width:1.7rem;line-height:1.7rem;text-align:center;margin:.166rem}.react-datepicker__month--in-range,.react-datepicker__month--in-selecting-range,.react-datepicker__month--selected,.react-datepicker__quarter--in-range,.react-datepicker__quarter--in-selecting-range,.react-datepicker__quarter--selected{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__month--in-range:hover,.react-datepicker__month--in-selecting-range:hover,.react-datepicker__month--selected:hover,.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter--in-selecting-range:hover,.react-datepicker__quarter--selected:hover{background-color:#1d5d90}.react-datepicker__month--disabled,.react-datepicker__quarter--disabled{color:#ccc;pointer-events:none}.react-datepicker__month--disabled:hover,.react-datepicker__quarter--disabled:hover{cursor:default;background-color:transparent}.react-datepicker__day,.react-datepicker__month-text,.react-datepicker__quarter-text{cursor:pointer}.react-datepicker__day:hover,.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{border-radius:.3rem;background-color:#f0f0f0}.react-datepicker__day--today,.react-datepicker__month-text--today,.react-datepicker__quarter-text--today{font-weight:700}.react-datepicker__day--highlighted,.react-datepicker__month-text--highlighted,.react-datepicker__quarter-text--highlighted{border-radius:.3rem;background-color:#3dcc4a;color:#fff}.react-datepicker__day--highlighted:hover,.react-datepicker__month-text--highlighted:hover,.react-datepicker__quarter-text--highlighted:hover{background-color:#32be3f}.react-datepicker__day--highlighted-custom-1,.react-datepicker__month-text--highlighted-custom-1,.react-datepicker__quarter-text--highlighted-custom-1{color:#f0f}.react-datepicker__day--highlighted-custom-2,.react-datepicker__month-text--highlighted-custom-2,.react-datepicker__quarter-text--highlighted-custom-2{color:green}.react-datepicker__day--in-range,.react-datepicker__day--in-selecting-range,.react-datepicker__day--selected,.react-datepicker__month-text--in-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__month-text--selected,.react-datepicker__quarter-text--in-range,.react-datepicker__quarter-text--in-selecting-range,.react-datepicker__quarter-text--selected{border-radius:.3rem;background-color:#216ba5;color:#fff}.react-datepicker__day--in-range:hover,.react-datepicker__day--in-selecting-range:hover,.react-datepicker__day--selected:hover,.react-datepicker__month-text--in-range:hover,.react-datepicker__month-text--in-selecting-range:hover,.react-datepicker__month-text--selected:hover,.react-datepicker__quarter-text--in-range:hover,.react-datepicker__quarter-text--in-selecting-range:hover,.react-datepicker__quarter-text--selected:hover{background-color:#1d5d90}.react-datepicker__day--keyboard-selected,.react-datepicker__month-text--keyboard-selected,.react-datepicker__quarter-text--keyboard-selected{border-radius:.3rem;background-color:#2a87d0;color:#fff}.react-datepicker__day--keyboard-selected:hover,.react-datepicker__month-text--keyboard-selected:hover,.react-datepicker__quarter-text--keyboard-selected:hover{background-color:#1d5d90}.react-datepicker__day--in-selecting-range,.react-datepicker__month-text--in-selecting-range,.react-datepicker__quarter-text--in-selecting-range{background-color:rgba(33,107,165,.5)}.react-datepicker__month--selecting-range .react-datepicker__day--in-range,.react-datepicker__month--selecting-range .react-datepicker__month-text--in-range,.react-datepicker__month--selecting-range .react-datepicker__quarter-text--in-range{background-color:#f0f0f0;color:#000}.react-datepicker__day--disabled,.react-datepicker__month-text--disabled,.react-datepicker__quarter-text--disabled{cursor:default;color:#ccc}.react-datepicker__day--disabled:hover,.react-datepicker__month-text--disabled:hover,.react-datepicker__quarter-text--disabled:hover{background-color:transparent}.react-datepicker__month-text.react-datepicker__month--in-range:hover,.react-datepicker__month-text.react-datepicker__month--selected:hover,.react-datepicker__month-text.react-datepicker__quarter--in-range:hover,.react-datepicker__month-text.react-datepicker__quarter--selected:hover,.react-datepicker__quarter-text.react-datepicker__month--in-range:hover,.react-datepicker__quarter-text.react-datepicker__month--selected:hover,.react-datepicker__quarter-text.react-datepicker__quarter--in-range:hover,.react-datepicker__quarter-text.react-datepicker__quarter--selected:hover{background-color:#216ba5}.react-datepicker__month-text:hover,.react-datepicker__quarter-text:hover{background-color:#f0f0f0}.react-datepicker__input-container{position:relative;display:inline-block;width:100%}.react-datepicker__month-read-view,.react-datepicker__month-year-read-view,.react-datepicker__year-read-view{border:1px solid transparent;border-radius:.3rem}.react-datepicker__month-read-view:hover,.react-datepicker__month-year-read-view:hover,.react-datepicker__year-read-view:hover{cursor:pointer}.react-datepicker__month-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view:hover .react-datepicker__year-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__month-read-view--down-arrow,.react-datepicker__year-read-view:hover .react-datepicker__year-read-view--down-arrow{border-top-color:#b3b3b3}.react-datepicker__month-read-view--down-arrow,.react-datepicker__month-year-read-view--down-arrow,.react-datepicker__year-read-view--down-arrow{border-top-color:#ccc;float:right;margin-left:20px;top:8px;position:relative;border-width:.45rem}.react-datepicker__month-dropdown,.react-datepicker__month-year-dropdown,.react-datepicker__year-dropdown{background-color:#f0f0f0;position:absolute;width:50%;left:25%;top:30px;z-index:1;text-align:center;border-radius:.3rem;border:1px solid #aeaeae}.react-datepicker__month-dropdown:hover,.react-datepicker__month-year-dropdown:hover,.react-datepicker__year-dropdown:hover{cursor:pointer}.react-datepicker__month-dropdown--scrollable,.react-datepicker__month-year-dropdown--scrollable,.react-datepicker__year-dropdown--scrollable{height:150px;overflow-y:scroll}.react-datepicker__month-option,.react-datepicker__month-year-option,.react-datepicker__year-option{line-height:20px;width:100%;display:block;margin-left:auto;margin-right:auto}.react-datepicker__month-option:first-of-type,.react-datepicker__month-year-option:first-of-type,.react-datepicker__year-option:first-of-type{border-top-left-radius:.3rem;border-top-right-radius:.3rem}.react-datepicker__month-option:last-of-type,.react-datepicker__month-year-option:last-of-type,.react-datepicker__year-option:last-of-type{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-bottom-left-radius:.3rem;border-bottom-right-radius:.3rem}.react-datepicker__month-option:hover,.react-datepicker__month-year-option:hover,.react-datepicker__year-option:hover{background-color:#ccc}.react-datepicker__month-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-upcoming,.react-datepicker__year-option:hover .react-datepicker__navigation--years-upcoming{border-bottom-color:#b3b3b3}.react-datepicker__month-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__month-year-option:hover .react-datepicker__navigation--years-previous,.react-datepicker__year-option:hover .react-datepicker__navigation--years-previous{border-top-color:#b3b3b3}.react-datepicker__month-option--selected,.react-datepicker__month-year-option--selected,.react-datepicker__year-option--selected{position:absolute;left:15px}.react-datepicker__close-icon{cursor:pointer;background-color:transparent;border:0;outline:0;padding:0 6px 0 0;position:absolute;top:0;right:0;height:100%;display:table-cell;vertical-align:middle}.react-datepicker__close-icon:after{cursor:pointer;background-color:#216ba5;color:#fff;border-radius:50%;height:16px;width:16px;padding:2px;font-size:12px;line-height:1;text-align:center;display:table-cell;vertical-align:middle;content:"×"}.react-datepicker__today-button{background:#f0f0f0;border-top:1px solid #aeaeae;cursor:pointer;text-align:center;font-weight:700;padding:5px 0;clear:left}.react-datepicker__portal{position:fixed;width:100vw;height:100vh;background-color:rgba(0,0,0,.8);left:0;top:0;justify-content:center;align-items:center;display:flex;z-index:2147483647}.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{width:3rem;line-height:3rem}@media(max-height:550px),(max-width:400px){.react-datepicker__portal .react-datepicker__day,.react-datepicker__portal .react-datepicker__day-name,.react-datepicker__portal .react-datepicker__time-name{width:2rem;line-height:2rem}}.react-datepicker__portal .react-datepicker-time__header,.react-datepicker__portal .react-datepicker__current-month{font-size:1.44rem}.react-datepicker__portal .react-datepicker__navigation{border:.81rem solid transparent}.react-datepicker__portal .react-datepicker__navigation--previous{border-right-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--previous:hover{border-right-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--previous--disabled,.react-datepicker__portal .react-datepicker__navigation--previous--disabled:hover{border-right-color:#e6e6e6;cursor:default}.react-datepicker__portal .react-datepicker__navigation--next{border-left-color:#ccc}.react-datepicker__portal .react-datepicker__navigation--next:hover{border-left-color:#b3b3b3}.react-datepicker__portal .react-datepicker__navigation--next--disabled,.react-datepicker__portal .react-datepicker__navigation--next--disabled:hover{border-left-color:#e6e6e6;cursor:default} \ No newline at end of file diff --git a/public/legacy/default-558fca16.chunk.css b/public/legacy/default-558fca16.chunk.css deleted file mode 100644 index 6b0dbd9c..00000000 --- a/public/legacy/default-558fca16.chunk.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:Roboto;font-weight:400;font-style:normal;src:url(/legacy/fonts/roboto/roboto-regular-400-5ea308130680132126f4f73c0d7b73f9.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-regular-400-5ea308130680132126f4f73c0d7b73f9.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-regular-400-9549360090baf2eb8b25d3a9708fc19d.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-regular-400-a91ad097d24828af724d4fee36a063ed.woff) format("woff"),url(/legacy/fonts/roboto/roboto-regular-400-0d984acaec916c225c012f27d0c56a91.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-regular-400-8681f434273fd6a267b1a16a035c5f79.svg) format("svg")}@font-face{font-family:Roboto;font-weight:400;font-style:italic;src:url(/legacy/fonts/roboto/roboto-regular-italic-400-b917f34ead501d28529f8f164cea00f8.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-regular-italic-400-b917f34ead501d28529f8f164cea00f8.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-regular-italic-400-d1f23769ca583437f310764146ec7fbc.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-regular-italic-400-c762d850e2e8d0e29047608715196736.woff) format("woff"),url(/legacy/fonts/roboto/roboto-regular-italic-400-807abe1555908dc0cd41a0d8b02d667d.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-regular-italic-400-39c358e4c78546f0f49e624bcbdc8e63.svg) format("svg")}@font-face{font-family:Roboto;font-weight:300;font-style:normal;src:url(/legacy/fonts/roboto/roboto-light-300-ed8245a91777d0b0c123eca00e03447c.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-light-300-ed8245a91777d0b0c123eca00e03447c.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-light-300-390b76012235541ede113bd336282b26.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-light-300-c46434d46a72919eb141228dd0144b6c.woff) format("woff"),url(/legacy/fonts/roboto/roboto-light-300-96e5fbad8c2f5b81165ede8b2f08a14b.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-light-300-dd0bea1f9a808d633492fa573039ca1d.svg) format("svg")}@font-face{font-family:Roboto;font-weight:300;font-style:italic;src:url(/legacy/fonts/roboto/roboto-light-italic-300-b7ab07d65e00bb581ab4ddf2450c1e42.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-light-italic-300-b7ab07d65e00bb581ab4ddf2450c1e42.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-light-italic-300-806989f337b8d4609fd705284b861e69.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-light-italic-300-cf6e2d8c73bd32ecb3a47759f73b45e2.woff) format("woff"),url(/legacy/fonts/roboto/roboto-light-italic-300-29d3974473a21d5e285a441ee83cef68.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-light-italic-300-f8b0d5a9ac4006ad3031052476de8a24.svg) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:normal;src:url(/legacy/fonts/roboto/roboto-bold-700-7dfb39b7b728dd6cfaa2d4b27ea389d6.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-bold-700-7dfb39b7b728dd6cfaa2d4b27ea389d6.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-bold-700-f3501dc6e4b56028379328ddd8f0129f.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-bold-700-cf654de4c5d988526828f731f299d30a.woff) format("woff"),url(/legacy/fonts/roboto/roboto-bold-700-74bc6165dc68714ccaa88f5c64656b1c.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-bold-700-57888be7f3e68a7050452ea3157cf4de.svg) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:italic;src:url(/legacy/fonts/roboto/roboto-bold-italic-700-62ff4ee765254983c5b563762bc2308a.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-bold-italic-700-62ff4ee765254983c5b563762bc2308a.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-bold-italic-700-658033002d0658ce75d2b8ef43f1a2cd.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-bold-italic-700-b637cf3c25928c417ca5d3959418e208.woff) format("woff"),url(/legacy/fonts/roboto/roboto-bold-italic-700-0265542c048f7c43e09666b5d6340448.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-bold-italic-700-4466317341560ee2759326c4723cae25.svg) format("svg")}@font-face{font-family:Montserrat;font-weight:800;font-style:normal;src:url(/legacy/fonts/montserrat/montserrat-extra-bold-800-9fc91569b3056144781c54138f768ec5.eot?#iefix);src:url(/legacy/fonts/montserrat/montserrat-extra-bold-800-9fc91569b3056144781c54138f768ec5.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-5b99e95293e90d07247882a74d64b1d3.woff2) format("woff2"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-189bfdc04fd790dd68e1de69a890c279.woff) format("woff"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-5085a1794f394b9d700cb99c5c659c3b.ttf) format("truetype"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-3f167b47ccbc00d60ce08497cd1a4623.svg) format("svg")}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}html{scrollbar-color:#2c2c2c #222}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{border:none;background:hsla(0,0%,40%,.5)}body.theme-gabsocial-light::-webkit-scrollbar-thumb{background:hsla(0,0%,100%,.3)}::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,40%,.75)}body.theme-gabsocial-light::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,100%,.4)}::-webkit-scrollbar-thumb:active{background:#666}body.theme-gabsocial-light::-webkit-scrollbar-thumb:active{background:hsla(0,0%,100%,.5)}::-webkit-scrollbar-track{border:none;background:rgba(34,34,34,.5)}body.theme-gabsocial-light::-webkit-scrollbar-track{background:rgba(51,51,51,.3)}::-webkit-scrollbar-track:hover{background:rgba(34,34,34,.75)}body.theme-gabsocial-light::-webkit-scrollbar-track:hover{background:rgba(51,51,51,.4)}::-webkit-scrollbar-track:active{background:#222}body.theme-gabsocial-light::-webkit-scrollbar-track:active{background:rgba(51,51,51,.5)}::-webkit-scrollbar-corner{background:0 0}html{font-family:Roboto,Arial,sans-serif!important;font-weight:400;font-size:62.5%;-moz-text-size-adjust:100%;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizelegibility;font-feature-settings:"kern";-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent;color:#fff;background:#333}body.theme-gabsocial-light{color:#6c6c6c;background:#f2f3f6}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,gabsocial-font-sans-serif,sans-serif}body.app-body{position:absolute;width:100%;padding:0;overflow:hidden;overflow-y:scroll}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#333}body.with-modals{overflow-x:hidden;overflow-y:scroll}body.with-modals--active{overflow-y:hidden;margin-right:13px}body.player{text-align:center}body.embed{background:#3d3d3d;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#292929;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#999;background:#333;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog__illustration img{display:block;max-width:470px;width:100%;height:auto;margin-top:-120px}body.error .dialog h1{font-size:20px;line-height:28px;font-weight:400}button{font-family:inherit;cursor:pointer}button:focus{outline:none}.app-holder,.app-holder>div{display:flex;width:100%;height:100%;align-items:start;justify-content:center;outline:0!important}.visuallyhidden{border:0!important;clip:rect(1px,1px,1px,1px)!important;font-size:1px!important;height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.container-alt{width:700px;margin:40px auto 0}@media screen and (max-width:740px){.container-alt{width:100%;margin:0}}.logo-container{margin:100px auto 50px}@media screen and (max-width:500px){.logo-container{margin:40px auto 0}}.logo-container h1{display:flex;justify-content:center;align-items:center}.logo-container h1 img{height:42px;margin-right:10px}.logo-container h1 a{display:flex;justify-content:center;align-items:center;color:#fff;text-decoration:none;outline:0;padding:12px 16px;line-height:32px;font-family:gabsocial-font-display,sans-serif;font-weight:500;font-size:14px}.compose-standalone .compose-form{width:400px;padding:20px 0;margin:40px auto 0;box-sizing:border-box}@media screen and (max-width:400px){.compose-standalone .compose-form{width:100%;margin-top:0;padding:20px}}.account-header{width:400px;display:flex;font-size:13px;line-height:18px;box-sizing:border-box;padding:20px 0 0;margin:40px auto -30px}@media screen and (max-width:440px){.account-header{width:100%;margin:0 0 10px;padding:20px 20px 0}}.account-header .avatar{width:40px;height:40px;margin-right:8px}.account-header .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px}.account-header .name{flex:1 1 auto;color:#666;width:calc(100% - 88px)}.account-header .name .username{display:block;font-weight:500;text-overflow:ellipsis;overflow:hidden}.account-header .logout-link{display:block;font-size:32px;line-height:40px;margin-left:8px}.grid-3{display:grid;grid-gap:10px;grid-template-columns:3fr 1fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.grid-3 .column-0{grid-column:1/3;grid-row:1}.grid-3 .column-1{grid-column:1;grid-row:2}.grid-3 .column-2{grid-column:2;grid-row:2}.grid-3 .column-3{grid-column:1/3;grid-row:3}.grid-3 .landing-page__call-to-action{min-height:100%}@media screen and (max-width:738px){.grid-3{grid-template-columns:minmax(0,50%) minmax(0,50%)}.grid-3 .landing-page__call-to-action{padding:20px;display:flex;align-items:center;justify-content:center}.grid-3 .row__information-board{width:100%;justify-content:center;align-items:center}.grid-3 .row__mascot{display:none}}@media screen and (max-width:415px){.grid-3{grid-gap:0;grid-template-columns:minmax(0,100%)}.grid-3 .column-0{grid-column:1}.grid-3 .column-1{grid-column:1;grid-row:3}.grid-3 .column-2{grid-column:1;grid-row:2}.grid-3 .column-3{grid-column:1;grid-row:4}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .content{display:block;margin:40px 0}.public-layout .background-svg{display:block;position:absolute;height:100%;width:100%;min-height:580px;z-index:-1;background-image:url(/landing/wave.svg);background-repeat:no-repeat;background-position:bottom;background-size:cover}.public-layout .header{height:80px;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;padding:14px 0;box-sizing:border-box}@media screen and (max-width:1024px){.public-layout .header{padding:14px 20px}}.public-layout .header .header-container{display:flex;width:960px;align-items:stretch;justify-content:center;flex-wrap:nowrap}.public-layout .header .header-container>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:center;justify-content:flex-start;flex-wrap:nowrap}.public-layout .header .nav-center{display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap}.public-layout .header .nav-right{display:flex;align-items:center;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .nav-right .simple_form.new_user{display:flex;flex-direction:row;align-items:center}.public-layout .header .nav-right .simple_form.new_user .fields-group{display:flex;flex-direction:row;margin-bottom:0;position:relative}.public-layout .header .nav-right .simple_form.new_user .fields-group p.hint.subtle-hint{position:absolute;top:30px;left:160px}.public-layout .header .nav-right .simple_form.new_user .fields-group p.hint.subtle-hint a{padding:4px;border-radius:4px;background-color:#333}.public-layout .header .nav-right .simple_form.new_user .fields-group .input{margin-bottom:0;margin-right:10px}.public-layout .header .nav-right .simple_form.new_user .fields-group .input input{min-width:150px;font-size:14px}.public-layout .header .nav-right .simple_form.new_user .actions{display:flex;margin-top:0}.public-layout .header .nav-right .simple_form.new_user .actions .button{margin-bottom:0!important;line-height:38px!important;border:1px solid #333!important;height:38px!important;box-sizing:border-box!important;padding:0 18px!important;text-transform:none!important}.public-layout .header .brand{display:block}.public-layout .header .brand img{display:block;height:30px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .nav-link{display:flex;align-items:center;padding:12px 22px;font-size:14px;font-weight:600;text-decoration:none;color:#fff;white-space:nowrap;text-align:center}.public-layout .header .nav-link:active,.public-layout .header .nav-link:focus,.public-layout .header .nav-link:hover{text-decoration:underline;color:#fff}.public-layout .header .nav-link--hollow{background-color:#333}.public-layout .header .nav-link--hollow:active,.public-layout .header .nav-link--hollow:focus,.public-layout .header .nav-link--hollow:hover{color:#21cf7a}@media screen and (max-width:550px){.public-layout .header .nav-link{font-size:12px;padding:12px 10px}.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#21cf7a;margin:8px 8px 8px 0;border-radius:4px}.public-layout .header .nav-button:active,.public-layout .header .nav-button:focus,.public-layout .header .nav-button:hover{text-decoration:none;background:#1aa360}.public-layout .header .nav-button--hollow{background:0 0}.public-layout .header .nav-button--hollow:active,.public-layout .header .nav-button--hollow:focus,.public-layout .header .nav-button--hollow:hover{background:rgba(33,207,122,.2)}.public-layout .grid{display:grid;grid-gap:10px;grid-template-columns:minmax(300px,3fr) minmax(298px,1fr);grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.public-layout .grid .column-0{grid-row:1;grid-column:1}.public-layout .grid .column-1{grid-row:1;grid-column:2}@media screen and (max-width:600px){.public-layout .grid{grid-template-columns:100%;grid-gap:0}.public-layout .grid .column-1{display:none}}.public-layout .public-account-header{overflow:hidden;margin-bottom:10px;box-shadow:0 0 15px rgba(0,0,0,.2)}.public-layout .public-account-header.inactive{opacity:.5}.public-layout .public-account-header.inactive .avatar,.public-layout .public-account-header.inactive .public-account-header__image{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.public-layout .public-account-header.inactive .logo-button{background-color:#666}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#141414}.public-layout .public-account-header__image:after{content:"";display:block;position:absolute;width:100%;height:100%;box-shadow:inset 0 -1px 1px 1px rgba(0,0,0,.15);top:0;left:0}.public-layout .public-account-header__image img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0;border-radius:4px 4px 0 0}@media screen and (max-width:600px){.public-layout .public-account-header__image{height:200px}}.public-layout .public-account-header--no-bar{margin-bottom:0}.public-layout .public-account-header--no-bar .public-account-header__image,.public-layout .public-account-header--no-bar .public-account-header__image img{border-radius:4px}@media screen and (max-width:415px){.public-layout .public-account-header--no-bar .public-account-header__image,.public-layout .public-account-header--no-bar .public-account-header__image img{border-radius:0}}@media screen and (max-width:415px){.public-layout .public-account-header{margin-bottom:0;box-shadow:none}.public-layout .public-account-header__image:after{display:none}.public-layout .public-account-header__image,.public-layout .public-account-header__image img{border-radius:0}}.public-layout .public-account-header__bar{position:relative;margin-top:-80px;display:flex;justify-content:flex-start}.public-layout .public-account-header__bar:before{content:"";display:block;background:#3d3d3d;position:absolute;bottom:0;left:0;right:0;height:60px;border-radius:0 0 4px 4px;z-index:-1}.public-layout .public-account-header__bar .avatar{display:block;width:120px;height:120px;padding-left:16px;flex:0 0 auto}.public-layout .public-account-header__bar .avatar img{display:block;width:100%;height:100%;margin:0;border-radius:50%;border:4px solid #3d3d3d;background:#1f1f1f}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#3d3d3d;border-radius:0 0 4px 4px;padding:5px}.public-layout .public-account-header__bar:before{display:none}.public-layout .public-account-header__bar .avatar{width:48px;height:48px;padding:7px 0 7px 10px}.public-layout .public-account-header__bar .avatar img{border:0;border-radius:4px}}@media screen and (max-width:600px)and (max-width:360px){.public-layout .public-account-header__bar .avatar{display:none}}@media screen and (max-width:415px){.public-layout .public-account-header__bar{border-radius:0}}@media screen and (max-width:600px){.public-layout .public-account-header__bar{flex-wrap:wrap}}.public-layout .public-account-header__tabs{flex:1 1 auto;margin-left:20px}.public-layout .public-account-header__tabs__name{padding-top:20px;padding-bottom:8px}.public-layout .public-account-header__tabs__name h1{font-size:20px;line-height:27px;color:#fff;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-shadow:1px 1px 1px #000}.public-layout .public-account-header__tabs__name h1 small{display:block;font-size:14px;color:#fff;font-weight:400;overflow:hidden;text-overflow:ellipsis}@media screen and (max-width:600px){.public-layout .public-account-header__tabs{margin-left:15px;display:flex;justify-content:space-between;align-items:center}.public-layout .public-account-header__tabs__name{padding-top:0;padding-bottom:0}.public-layout .public-account-header__tabs__name h1{font-size:16px;line-height:24px;text-shadow:none}.public-layout .public-account-header__tabs__name h1 small{color:#999}}.public-layout .public-account-header__tabs__tabs{display:flex;justify-content:flex-start;align-items:stretch;height:58px}.public-layout .public-account-header__tabs__tabs .details-counters{display:flex;flex-direction:row;min-width:300px}@media screen and (max-width:600px){.public-layout .public-account-header__tabs__tabs .details-counters{display:none}}.public-layout .public-account-header__tabs__tabs .counter{width:33.3%;box-sizing:border-box;flex:0 0 auto;color:#999;padding:10px;border-right:1px solid #3d3d3d;cursor:default;text-align:center;position:relative}.public-layout .public-account-header__tabs__tabs .counter a{display:block}.public-layout .public-account-header__tabs__tabs .counter:last-child{border-right:0}.public-layout .public-account-header__tabs__tabs .counter:after{display:block;content:"";position:absolute;bottom:0;left:0;width:100%;border-bottom:4px solid #333;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #21cf7a;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#666}.public-layout .public-account-header__tabs__tabs .counter:hover:after{opacity:1;transition-duration:.1s}.public-layout .public-account-header__tabs__tabs .counter a{text-decoration:none;color:inherit}.public-layout .public-account-header__tabs__tabs .counter .counter-label{font-size:12px;display:block}.public-layout .public-account-header__tabs__tabs .counter .counter-number{font-weight:500;font-size:18px;margin-bottom:5px;color:#fff;font-family:gabsocial-font-display,sans-serif}.public-layout .public-account-header__tabs__tabs .spacer{flex:1 1 auto;height:1px}.public-layout .public-account-header__tabs__tabs__buttons{padding:7px 8px}.public-layout .public-account-header__extra{display:none;margin-top:4px}.public-layout .public-account-header__extra .public-account-bio{border-radius:0;box-shadow:none;background:0 0;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #525252}.public-layout .public-account-header__extra .public-account-bio .roles{display:none}.public-layout .public-account-header__extra__links{margin-top:-15px;font-size:14px;color:#999}.public-layout .public-account-header__extra__links a{display:inline-block;color:#999;text-decoration:none;padding:15px;font-weight:500}.public-layout .public-account-header__extra__links a strong{font-weight:700;color:#fff}@media screen and (max-width:600px){.public-layout .public-account-header__extra{display:block;flex:100%}}.public-layout .account__section-headline{border-radius:4px 4px 0 0}@media screen and (max-width:415px){.public-layout .account__section-headline{border-radius:0}}.public-layout .detailed-status__meta{margin-top:25px}.public-layout .public-account-bio{background:#474747;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px}@media screen and (max-width:415px){.public-layout .public-account-bio{box-shadow:none;margin-bottom:0;border-radius:0}}.public-layout .public-account-bio .account__header__fields{margin:0;border-top:0}.public-layout .public-account-bio .account__header__fields a{color:#39df8e}.public-layout .public-account-bio .account__header__fields dl:first-child .verified{border-radius:0 4px 0 0}.public-layout .public-account-bio .account__header__fields .verified a{color:#79bd9a}.public-layout .public-account-bio .account__header__content{padding:20px 20px 0;color:#fff}.public-layout .public-account-bio .roles,.public-layout .public-account-bio__extra{padding:20px;font-size:14px;color:#999}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#757575;font-size:18px}.public-layout .static-icon-button>span{font-size:14px;font-weight:500}.public-layout .card-grid{display:flex;flex-wrap:wrap;min-width:100%;margin:0 -5px}.public-layout .card-grid>div{box-sizing:border-box;flex:1 0 auto;width:300px;padding:0 5px;margin-bottom:10px;max-width:33.333%}@media screen and (max-width:900px){.public-layout .card-grid>div{max-width:50%}}@media screen and (max-width:600px){.public-layout .card-grid>div{max-width:100%}}@media screen and (max-width:415px){.public-layout .card-grid{margin:0;border-top:1px solid #474747}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #474747}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#333}.public-layout .card-grid>div .card__bar:active,.public-layout .card-grid>div .card__bar:focus,.public-layout .card-grid>div .card__bar:hover{background:#3d3d3d}}.no-list{list-style:none}.no-list li{display:inline-block;margin:0 5px}.recovery-codes{list-style:none;margin:0 auto}.recovery-codes li{font-size:125%;line-height:1.5;letter-spacing:1px}.public-layout .footer{display:flex;padding:40px 0;font-size:12px;justify-content:center;align-items:center;background-color:#404040;border-top:#1a1a1a}@media screen and (max-width:1024px){.public-layout .footer{padding:40px 20px}}.public-layout .footer .footer-container{display:flex;width:960px;flex-direction:row;flex-wrap:wrap;align-items:center}@media screen and (max-width:1024px){.public-layout .footer .footer-container{width:100%}}@media screen and (max-width:767px){.public-layout .footer .footer-container{flex-direction:column-reverse;justify-content:center}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#999;font-size:1.6rem;line-height:1.5}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer .copyright{margin-right:auto}.public-layout .footer .copyright span{color:#fff;font-size:1.3rem;font-weight:500;line-height:1.5}.public-layout .footer .copyright span:last-of-type{color:#ccc}.public-layout .footer ul{display:flex;flex-wrap:wrap;margin-left:auto}.public-layout .footer ul li a{text-decoration:none;color:#8a8a8a;font-size:1.3rem;font-weight:500;line-height:1.5;padding:10px 4px;margin-left:10px}.public-layout .footer ul li a:active,.public-layout .footer ul li a:focus,.public-layout .footer ul li a:hover{text-decoration:underline}@media screen and (max-width:767px){.public-layout .footer .copyright{margin:0 auto auto;text-align:center}.public-layout .footer ul{margin:0 auto 20px}}.compact-header h1{font-size:24px;line-height:28px;color:#999;font-weight:500;margin-bottom:20px;padding:0 10px;word-wrap:break-word}@media screen and (max-width:740px){.compact-header h1{text-align:center;padding:20px 10px 0}}.compact-header h1 a{color:inherit;text-decoration:none}.compact-header h1 small{font-weight:400;color:#666}.compact-header h1 img{display:inline-block;margin-bottom:-5px;margin-right:15px;width:36px;height:36px}.hero-widget{margin-bottom:10px;box-shadow:0 0 15px rgba(0,0,0,.2)}.hero-widget__img{width:100%;position:relative;overflow:hidden;border-radius:4px 4px 0 0;background:#000}.hero-widget__img img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0;border-radius:4px 4px 0 0}.hero-widget__text{background:#333;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#999;line-height:20px;word-wrap:break-word;font-weight:400}.hero-widget__text .emojione{width:20px;height:20px;margin:-3px 0 0}.hero-widget__text p{margin-bottom:20px}.hero-widget__text p:last-child{margin-bottom:0}.hero-widget__text em{display:inline;margin:0;padding:0;font-weight:700;background:0 0;font-family:inherit;font-size:inherit;line-height:inherit;color:#b3b3b3}.hero-widget__text a{color:#666;text-decoration:none}.hero-widget__text a:hover{text-decoration:underline}@media screen and (max-width:415px){.hero-widget{display:none}}.endorsements-widget{margin-bottom:10px;padding-bottom:10px}.endorsements-widget h4{padding:10px;text-transform:uppercase;font-weight:700;font-size:13px;color:#999}.endorsements-widget .account{padding:10px 0}.endorsements-widget .account:last-child{border-bottom:0}.endorsements-widget .account .account__display-name{display:flex;align-items:center}.endorsements-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.box-widget{padding:20px;border-radius:4px;background:#393939;box-shadow:0 0 1px 1px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;padding:20px;min-height:100%;border-radius:4px;background:#333;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget{font-size:15px;color:#999;line-height:20px;word-wrap:break-word;font-weight:400}.contact-widget strong{font-weight:500}.contact-widget p{margin-bottom:10px}.contact-widget p:last-child{margin-bottom:0}.contact-widget__mail{margin-top:10px}.contact-widget__mail a{color:#fff;text-decoration:none}.moved-account-widget{padding:15px 15px 20px;border-radius:4px;background:#333;box-shadow:0 0 15px rgba(0,0,0,.2);color:#666;font-weight:400;margin-bottom:10px}.moved-account-widget a,.moved-account-widget strong{font-weight:500}.moved-account-widget a:lang(ja),.moved-account-widget a:lang(ko),.moved-account-widget a:lang(zh-cn),.moved-account-widget a:lang(zh-hk),.moved-account-widget a:lang(zh-tw),.moved-account-widget strong:lang(ja),.moved-account-widget strong:lang(ko),.moved-account-widget strong:lang(zh-cn),.moved-account-widget strong:lang(zh-hk),.moved-account-widget strong:lang(zh-tw){font-weight:700}.moved-account-widget a{color:inherit;text-decoration:underline}.moved-account-widget a.mention,.moved-account-widget a.mention:active,.moved-account-widget a.mention:focus,.moved-account-widget a.mention:hover,.moved-account-widget a.mention span{text-decoration:none}.moved-account-widget a.mention:active span,.moved-account-widget a.mention:focus span,.moved-account-widget a.mention:hover span{text-decoration:underline}.moved-account-widget__message{margin-bottom:15px}.moved-account-widget__message .fa{margin-right:5px;color:#999}.moved-account-widget__card .detailed-status__display-avatar{position:relative;cursor:pointer}.moved-account-widget__card .detailed-status__display-name{margin-bottom:0;text-decoration:none}.moved-account-widget__card .detailed-status__display-name span{font-weight:400}.memoriam-widget{padding:20px;background:#000;font-size:14px;color:#999;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#474747;padding:60px 15px;text-align:center;margin:10px 0}.page-header h1{color:#fff;font-size:36px;line-height:1.1;font-weight:700;margin-bottom:10px}.page-header p{font-size:15px;color:#999}@media screen and (max-width:415px){.page-header{margin-top:0;background:#3d3d3d}.page-header h1{font-size:24px}}.directory{background:#333;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.directory__tag{box-sizing:border-box;margin-bottom:10px}.directory__tag>a,.directory__tag>div{display:flex;align-items:center;justify-content:space-between;background:#333;border-radius:4px;padding:15px;text-decoration:none;color:inherit;box-shadow:0 0 15px rgba(0,0,0,.2)}.directory__tag>a:active,.directory__tag>a:focus,.directory__tag>a:hover{background:#474747}.directory__tag.active>a{background:#21cf7a;cursor:default}.directory__tag.disabled>div{opacity:.5;cursor:default}.directory__tag h4{flex:1 1 auto;font-size:18px;font-weight:700;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.directory__tag h4 .fa{color:#999}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#999}.directory__tag.active h4,.directory__tag.active h4 .fa,.directory__tag.active h4 small{color:#fff}.directory__tag .avatar-stack{flex:0 0 auto;width:120px}.directory__tag.active .avatar-stack .account__avatar{border-color:#21cf7a}.avatar-stack{display:flex;justify-content:flex-end}.avatar-stack .account__avatar{flex:0 0 auto;width:36px;height:36px;border-radius:50%;position:relative;margin-left:-10px;background:#1f1f1f;border:2px solid #333}.avatar-stack .account__avatar:first-child{z-index:1}.avatar-stack .account__avatar:nth-child(2){z-index:2}.avatar-stack .account__avatar:nth-child(3){z-index:3}.accounts-table{width:100%}.accounts-table .account{padding:0;border:0}.accounts-table strong{font-weight:700}.accounts-table thead th{text-align:center;text-transform:uppercase;color:#999;font-weight:700;padding:10px}.accounts-table thead th:first-child{text-align:left}.accounts-table tbody td{padding:15px 0;vertical-align:middle;border-bottom:1px solid #474747}.accounts-table tbody tr:last-child td{border-bottom:0}.accounts-table__count{width:120px;text-align:center;font-size:15px;font-weight:500;color:#fff}.accounts-table__count small{display:block;color:#999;font-weight:400;font-size:14px}.accounts-table__comment{width:50%;vertical-align:initial!important}@media screen and (max-width:415px){.accounts-table tbody td.optional{display:none}}@media screen and (max-width:415px){.box-widget,.contact-widget,.directory,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget,.page-header{margin-bottom:0;box-shadow:none;border-radius:0}}.statuses-grid{min-height:600px}@media screen and (max-width:640px){.statuses-grid{width:100%!important}}.statuses-grid__item{width:313.3333333333px}@media screen and (max-width:1255px){.statuses-grid__item{width:306.6666666667px}}@media screen and (max-width:640px){.statuses-grid__item{width:100%}}@media screen and (max-width:415px){.statuses-grid__item{width:100vw}}.statuses-grid .detailed-status{border-radius:4px}@media screen and (max-width:415px){.statuses-grid .detailed-status{border-top:1px solid #5c5c5c}}.statuses-grid .detailed-status.compact .detailed-status__meta{margin-top:15px}.statuses-grid .detailed-status.compact .status__content{font-size:15px;line-height:20px}.statuses-grid .detailed-status.compact .status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.statuses-grid .detailed-status.compact .status__content .status__content__spoiler-link{line-height:20px;margin:0}.statuses-grid .detailed-status.compact .media-gallery,.statuses-grid .detailed-status.compact .status-card,.statuses-grid .detailed-status.compact .video-player{margin-top:15px}.notice-widget{color:#999}.notice-widget,.notice-widget p{margin-bottom:10px}.notice-widget p:last-child{margin-bottom:0}.notice-widget a{font-size:14px;line-height:20px;text-decoration:none;font-weight:500;color:#21cf7a}.notice-widget a:active,.notice-widget a:focus,.notice-widget a:hover{text-decoration:underline}code{font-family:gabsocial-font-monospace,monospace;font-weight:400}.form-container{max-width:400px;padding:20px;margin:0 auto}.simple_form .input{margin-bottom:15px;overflow:hidden}.simple_form .input.hidden{margin:0}.simple_form .input.radio_buttons .radio{margin-bottom:15px}.simple_form .input.radio_buttons .radio:last-child{margin-bottom:0}.simple_form .input.radio_buttons .radio>label{position:relative;padding-left:28px}.simple_form .input.radio_buttons .radio>label input{position:absolute;top:-2px;left:0}.simple_form .input.boolean{position:relative;margin-bottom:0}.simple_form .input.boolean .label_input>label{font-family:inherit;font-size:14px;padding-top:5px;color:#fff;display:block;width:auto}.simple_form .input.boolean .hint,.simple_form .input.boolean .label_input{padding-left:28px}.simple_form .input.boolean .label_input__wrapper{position:static}.simple_form .input.boolean label.checkbox{position:absolute;top:2px;left:0}.simple_form .input.boolean label a{color:#21cf7a;text-decoration:underline}.simple_form .input.boolean label a:active,.simple_form .input.boolean label a:focus,.simple_form .input.boolean label a:hover{text-decoration:none}.simple_form .row{display:flex;margin:0 -5px}.simple_form .row .input{box-sizing:border-box;flex:1 1 auto;width:50%;padding:0 5px}.simple_form .hint{color:#999}.simple_form .hint a{color:#21cf7a}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#141414}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#999}.simple_form p.hint.subtle-hint{text-align:center;font-size:12px;line-height:18px;margin-top:15px;margin-bottom:0}.simple_form .card{margin-bottom:15px}.simple_form strong{font-weight:500}.simple_form strong:lang(ja),.simple_form strong:lang(ko),.simple_form strong:lang(zh-cn),.simple_form strong:lang(zh-hk),.simple_form strong:lang(zh-tw){font-weight:700}.simple_form .input.with_floating_label .label_input{display:flex}.simple_form .input.with_floating_label .label_input>label{font-family:inherit;font-size:14px;color:#fff;font-weight:500;min-width:150px;flex:0 0 auto}.simple_form .input.with_floating_label .label_input input,.simple_form .input.with_floating_label .label_input select{flex:1 1 auto}.simple_form .input.with_floating_label.select .hint{margin-top:6px;margin-left:150px}.simple_form .input.with_label .label_input>label{font-family:inherit;font-size:14px;color:#fff;display:block;margin-bottom:8px;word-wrap:break-word;font-weight:500}.simple_form .input.with_label .hint{margin-top:6px}.simple_form .input.with_label ul{flex:390px}.simple_form .input.with_block_label{max-width:none}.simple_form .input.with_block_label>label{font-family:inherit;font-size:16px;color:#fff;display:block;font-weight:500;padding-top:5px}.simple_form .input.with_block_label .hint{margin-bottom:15px}.simple_form .input.with_block_label ul{-moz-columns:2;column-count:2}.simple_form .required abbr{text-decoration:none;color:#e87487}.simple_form .fields-group{margin-bottom:25px}.simple_form .fields-group .input:last-child{margin-bottom:0}.simple_form .fields-row{display:flex;padding-top:5px;margin:0 -10px 25px}.simple_form .fields-row .input{max-width:none}.simple_form .fields-row__column{box-sizing:border-box;padding:0 10px;flex:1 1 auto;min-height:1px}.simple_form .fields-row__column-6{max-width:50%}.simple_form .fields-row .fields-group:last-child,.simple_form .fields-row .fields-row__column.fields-group{margin-bottom:0}@media screen and (max-width:600px){.simple_form .fields-row{display:block;margin-bottom:0}.simple_form .fields-row__column{max-width:none}.simple_form .fields-row .fields-group:last-child,.simple_form .fields-row .fields-row__column,.simple_form .fields-row .fields-row__column.fields-group{margin-bottom:25px}}.simple_form .input.radio_buttons .radio label{margin-bottom:5px;font-family:inherit;font-size:14px;color:#fff;display:block;width:auto}.simple_form .check_boxes .checkbox label{font-family:inherit;font-size:14px;color:#fff;display:inline-block;width:auto;position:relative;padding-top:5px;padding-left:25px;flex:1 1 auto}.simple_form .check_boxes .checkbox input[type=checkbox]{position:absolute;left:0;top:5px;margin:0}.simple_form input[type=email],.simple_form input[type=number],.simple_form input[type=password],.simple_form input[type=text],.simple_form textarea{box-sizing:border-box;font-size:16px;color:#fff;display:block;width:100%;outline:0;font-family:inherit;resize:vertical;background:#1a1a1a;border:1px solid #0f0f0f;border-radius:4px;padding:10px}.simple_form input[type=email]:invalid,.simple_form input[type=number]:invalid,.simple_form input[type=password]:invalid,.simple_form input[type=text]:invalid,.simple_form textarea:invalid{box-shadow:none}.simple_form input[type=email]:focus:invalid:not(:placeholder-shown),.simple_form input[type=number]:focus:invalid:not(:placeholder-shown),.simple_form input[type=password]:focus:invalid:not(:placeholder-shown),.simple_form input[type=text]:focus:invalid:not(:placeholder-shown),.simple_form textarea:focus:invalid:not(:placeholder-shown){border-color:#e87487}.simple_form input[type=email]:required:valid,.simple_form input[type=number]:required:valid,.simple_form input[type=password]:required:valid,.simple_form input[type=text]:required:valid,.simple_form textarea:required:valid{border-color:#79bd9a}.simple_form input[type=email]:hover,.simple_form input[type=number]:hover,.simple_form input[type=password]:hover,.simple_form input[type=text]:hover,.simple_form textarea:hover{border-color:#000}.simple_form input[type=email]:active,.simple_form input[type=email]:focus,.simple_form input[type=number]:active,.simple_form input[type=number]:focus,.simple_form input[type=password]:active,.simple_form input[type=password]:focus,.simple_form input[type=text]:active,.simple_form input[type=text]:focus,.simple_form textarea:active,.simple_form textarea:focus{border-color:#21cf7a;background:#1f1f1f}.simple_form .input.field_with_errors label{color:#e87487}.simple_form .input.field_with_errors input[type=email],.simple_form .input.field_with_errors input[type=number],.simple_form .input.field_with_errors input[type=password],.simple_form .input.field_with_errors input[type=text],.simple_form .input.field_with_errors select,.simple_form .input.field_with_errors textarea{border-color:#e87487}.simple_form .input.field_with_errors .error{display:block;font-weight:500;color:#e87487;margin-top:4px}.simple_form .input.disabled{opacity:.5}.simple_form .actions{margin-top:30px;display:flex}.simple_form .actions.actions--top{margin-top:0;margin-bottom:30px}.simple_form .block-button,.simple_form .button,.simple_form button{display:block;width:100%;border:0;border-radius:4px;background:#21cf7a;color:#fff;font-size:18px;line-height:inherit;height:auto;padding:10px;text-transform:uppercase;text-decoration:none;text-align:center;box-sizing:border-box;cursor:pointer;font-weight:500;outline:0;margin-bottom:10px;margin-right:10px}.simple_form .block-button:last-child,.simple_form .button:last-child,.simple_form button:last-child{margin-right:0}.simple_form .block-button:hover,.simple_form .button:hover,.simple_form button:hover{background-color:#2cdd87}.simple_form .block-button:active,.simple_form .block-button:focus,.simple_form .button:active,.simple_form .button:focus,.simple_form button:active,.simple_form button:focus{background-color:#1db96d}.simple_form .block-button:disabled:hover,.simple_form .button:disabled:hover,.simple_form button:disabled:hover{background-color:#333}.simple_form .block-button.negative,.simple_form .button.negative,.simple_form button.negative{background:#df405a}.simple_form .block-button.negative:hover,.simple_form .button.negative:hover,.simple_form button.negative:hover{background-color:#e3566d}.simple_form .block-button.negative:active,.simple_form .block-button.negative:focus,.simple_form .button.negative:active,.simple_form .button.negative:focus,.simple_form button.negative:active,.simple_form button.negative:focus{background-color:#db2a47}.simple_form select{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;font-size:16px;color:#fff;display:block;width:100%;outline:0;font-family:inherit;resize:vertical;background:#1a1a1a url("data:image/svg+xml;utf8,") no-repeat right 8px center/auto 16px;border:1px solid #0f0f0f;border-radius:4px;padding-left:10px;padding-right:30px;height:41px}.simple_form .label_input__wrapper{position:relative}.simple_form .label_input__append{position:absolute;right:3px;top:1px;padding:10px 10px 9px;font-size:16px;color:#757575;font-family:inherit;pointer-events:none;cursor:default;max-width:140px;white-space:nowrap;overflow:hidden}.simple_form .label_input__append:after{content:"";display:block;position:absolute;top:0;right:0;bottom:1px;width:5px;background-image:linear-gradient(90deg,rgba(26,26,26,0),#1a1a1a)}.simple_form__overlay-area{position:relative}.simple_form__overlay-area__overlay{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(51,51,51,.65);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);border-radius:4px}.simple_form__overlay-area__overlay__content{text-align:center}.simple_form__overlay-area__overlay__content.rich-formatting,.simple_form__overlay-area__overlay__content.rich-formatting p{color:#fff}.block-icon{display:block;margin:0 auto 10px;font-size:24px}.flash-message{background:#474747;color:#999;border-radius:4px;padding:15px 10px;margin-bottom:30px;text-align:center}.flash-message.notice{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25);color:#79bd9a}.flash-message.alert{border:1px solid rgba(223,64,90,.5);background:rgba(223,64,90,.25);color:#df405a}.flash-message a{display:inline-block;color:#999;text-decoration:none}.flash-message a:hover{color:#fff;text-decoration:underline}.flash-message p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:gabsocial-font-monospace,monospace;background:#333;color:#fff;font-size:14px;margin:0}.flash-message .oauth-code::-moz-focus-inner{border:0}.flash-message .oauth-code::-moz-focus-inner,.flash-message .oauth-code:active,.flash-message .oauth-code:focus{outline:0!important}.flash-message .oauth-code:focus{background:#3d3d3d}.flash-message strong{font-weight:500}.flash-message strong:lang(ja),.flash-message strong:lang(ko),.flash-message strong:lang(zh-cn),.flash-message strong:lang(zh-hk),.flash-message strong:lang(zh-tw){font-weight:700}@media screen and (max-width:740px)and (min-width:441px){.flash-message{margin-top:40px}}.form-footer{margin-top:30px;text-align:center}.form-footer a{color:#999;text-decoration:none}.form-footer a:hover{text-decoration:underline}.quick-nav{list-style:none;margin-bottom:25px;font-size:14px}.quick-nav li{display:inline-block;margin-right:10px}.quick-nav a{color:#21cf7a;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#39df8e}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#999}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#666;font-weight:500}.follow-prompt strong:lang(ja),.follow-prompt strong:lang(ko),.follow-prompt strong:lang(zh-cn),.follow-prompt strong:lang(zh-hk),.follow-prompt strong:lang(zh-tw),.oauth-prompt strong:lang(ja),.oauth-prompt strong:lang(ko),.oauth-prompt strong:lang(zh-cn),.oauth-prompt strong:lang(zh-hk),.oauth-prompt strong:lang(zh-tw){font-weight:700}@media screen and (max-width:740px)and (min-width:441px){.follow-prompt,.oauth-prompt{margin-top:40px}}.qr-wrapper{display:flex;flex-wrap:wrap;align-items:flex-start}.qr-code{flex:0 0 auto;background:#fff;padding:4px;margin:0 10px 20px 0;box-shadow:0 0 15px rgba(0,0,0,.2);display:inline-block}.qr-code svg{display:block;margin:0}.qr-alternative{margin-bottom:20px;color:#666;flex:150px}.qr-alternative samp{display:block;font-size:14px}.table-form p{margin-bottom:15px}.table-form p strong{font-weight:500}.table-form p strong:lang(ja),.table-form p strong:lang(ko),.table-form p strong:lang(zh-cn),.table-form p strong:lang(zh-hk),.table-form p strong:lang(zh-tw){font-weight:700}.simple_form .warning,.table-form .warning{box-sizing:border-box;background:rgba(223,64,90,.5);color:#fff;text-shadow:1px 1px 0 rgba(0,0,0,.3);box-shadow:0 2px 6px rgba(0,0,0,.4);border-radius:4px;padding:10px;margin-bottom:15px}.simple_form .warning a,.table-form .warning a{color:#fff;text-decoration:underline}.simple_form .warning a:active,.simple_form .warning a:focus,.simple_form .warning a:hover,.table-form .warning a:active,.table-form .warning a:focus,.table-form .warning a:hover{text-decoration:none}.simple_form .warning strong,.table-form .warning strong{font-weight:600;display:block;margin-bottom:5px}.simple_form .warning strong:lang(ja),.simple_form .warning strong:lang(ko),.simple_form .warning strong:lang(zh-cn),.simple_form .warning strong:lang(zh-hk),.simple_form .warning strong:lang(zh-tw),.table-form .warning strong:lang(ja),.table-form .warning strong:lang(ko),.table-form .warning strong:lang(zh-cn),.table-form .warning strong:lang(zh-hk),.table-form .warning strong:lang(zh-tw){font-weight:700}.simple_form .warning strong .fa,.table-form .warning strong .fa{font-weight:400}.action-pagination{display:flex;flex-wrap:wrap;align-items:center}.action-pagination .actions,.action-pagination .pagination{flex:1 1 auto}.action-pagination .actions{padding:30px 20px 30px 0;flex:0 0 auto}.post-follow-actions{text-align:center;color:#999}.post-follow-actions div{margin-bottom:4px}.alternative-login{margin-top:20px;margin-bottom:20px}.alternative-login h4{font-size:16px;color:#fff;text-align:center;margin-bottom:20px;border:0;padding:0}.alternative-login .button{display:block}.scope-danger{color:#ff5050}.form_admin_settings_closed_registrations_message textarea,.form_admin_settings_custom_css textarea,.form_admin_settings_site_description textarea,.form_admin_settings_site_extended_description textarea,.form_admin_settings_site_short_description textarea,.form_admin_settings_site_terms textarea{font-family:gabsocial-font-monospace,monospace}.input-copy{background:#1a1a1a;border:1px solid #0f0f0f;border-radius:4px;display:flex;align-items:center;padding-right:4px;position:relative;top:1px;transition:border-color .3s linear}.input-copy__wrapper{flex:1 1 auto}.input-copy input[type=text]{background:0 0;border:0;padding:10px;font-size:14px;font-family:gabsocial-font-monospace,monospace}.input-copy button{flex:0 0 auto;margin:4px;text-transform:none;font-weight:400;font-size:14px;padding:7px 18px 6px;width:auto;transition:background .3s linear}.input-copy.copied{border-color:#79bd9a;transition:none}.input-copy.copied button{background:#79bd9a;transition:none}.connection-prompt{margin-bottom:25px}.connection-prompt .fa-link{background-color:#292929;border-radius:100%;font-size:24px;padding:10px}.connection-prompt__column{align-items:center;display:flex;flex:1;flex-direction:column;flex-shrink:1;max-width:50%}.connection-prompt__column-sep{align-self:center;flex-grow:0;overflow:visible;position:relative;z-index:1}.connection-prompt__column p{word-break:break-word}.connection-prompt .account__avatar{margin-bottom:20px}.connection-prompt__connection{background-color:#474747;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;padding:25px 10px;position:relative;text-align:center}.connection-prompt__connection:after{background-color:#292929;content:"";display:block;height:100%;left:50%;position:absolute;top:0;width:1px}.connection-prompt__row{align-items:flex-start;display:flex;flex-direction:row}.card>a{display:block;text-decoration:none;color:inherit;box-shadow:0 0 15px rgba(0,0,0,.2)}@media screen and (max-width:415px){.card>a{box-shadow:none}}.card>a:active .card__bar,.card>a:focus .card__bar,.card>a:hover .card__bar{background:#474747}.card__img{height:130px;position:relative;background:#141414;border-radius:4px 4px 0 0}.card__img img{display:block;width:100%;height:100%;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;border-radius:4px 4px 0 0}@media screen and (max-width:600px){.card__img{height:200px}}@media screen and (max-width:415px){.card__img{display:none}}.card__bar{position:relative;padding:15px;display:flex;justify-content:flex-start;align-items:center;background:#3d3d3d;border-radius:0 0 4px 4px}@media screen and (max-width:415px){.card__bar{border-radius:0}}.card__bar .avatar{flex:0 0 auto;width:48px;height:48px;padding-top:2px}.card__bar .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;background:#1f1f1f;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.card__bar .display-name{margin-left:15px;text-align:left}.card__bar .display-name strong{font-size:15px;color:#fff;font-weight:500;overflow:hidden;text-overflow:ellipsis}.card__bar .display-name span{display:block;font-size:14px;color:#999;font-weight:400;overflow:hidden;text-overflow:ellipsis}.pagination{padding:30px 0;text-align:center;overflow:hidden}.pagination .current,.pagination .gap,.pagination .newer,.pagination .older,.pagination .page,.pagination a{font-size:14px;color:#fff;font-weight:500;display:inline-block;padding:6px 10px;text-decoration:none}.pagination .current{background:#fff;border-radius:100px;color:#333;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#666}.pagination .older{float:left;padding-left:0}.pagination .older .fa{display:inline-block;margin-right:5px}.pagination .newer{float:right;padding-right:0}.pagination .newer .fa{display:inline-block;margin-left:5px}.pagination .disabled{cursor:default;color:#4d4d4d}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#333;box-shadow:0 0 15px rgba(0,0,0,.2);color:#999;font-size:14px;font-weight:500;text-align:center;display:flex;justify-content:center;align-items:center;cursor:default;border-radius:4px;padding:20px;min-height:30vh}.nothing-here--under-tabs{border-radius:0 0 4px 4px}.nothing-here--flexible{box-sizing:border-box;min-height:100%}.account-role{display:inline-block;padding:4px 6px;cursor:default;border-radius:3px;font-size:12px;line-height:12px;font-weight:500;color:#666;background-color:hsla(0,0%,40%,.1);border:1px solid hsla(0,0%,40%,.5)}.account-role.moderator{color:#79bd9a;background-color:rgba(121,189,154,.1);border-color:rgba(121,189,154,.5)}.account-role.admin{color:#e87487;background-color:rgba(232,116,135,.1);border-color:rgba(232,116,135,.5)}.account__header__fields{padding:0;margin:15px -15px -15px;border-bottom:0;border-top:0;border-color:#525252 currentcolor;border-style:solid none;border-width:1px 0;font-size:14px;line-height:20px}.account__header__fields dl{display:flex;border-bottom:1px solid #525252}.account__header__fields dd,.account__header__fields dt{box-sizing:border-box;padding:14px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header__fields dt{font-weight:500;width:120px;flex:0 0 auto;color:#666;background:rgba(31,31,31,.5)}.account__header__fields dd{flex:1 1 auto;color:#999}.account__header__fields a{color:#21cf7a;text-decoration:none}.account__header__fields a:active,.account__header__fields a:focus,.account__header__fields a:hover{text-decoration:underline}.account__header__fields .verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.account__header__fields .verified a{color:#79bd9a;font-weight:500}.account__header__fields .verified__mark{color:#79bd9a}.account__header__fields dl:last-child{border-bottom:0}.directory__tag .trends__item__current{width:auto}.pending-account__header{color:#999}.pending-account__header a{color:#666;text-decoration:none}.pending-account__header a:active,.pending-account__header a:focus,.pending-account__header a:hover{text-decoration:underline}.pending-account__header strong{color:#fff;font-weight:700}.pending-account__body{margin-top:10px}.activity-stream{box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px}@media screen and (max-width:415px){.activity-stream{margin-bottom:0;border-radius:0;box-shadow:none}}.activity-stream--headless{border-radius:0;margin:0;box-shadow:none}.activity-stream--headless .detailed-status,.activity-stream--headless .status{border-radius:0!important}.activity-stream div[data-component]{width:100%}.activity-stream .entry{background:#333}.activity-stream .entry .detailed-status,.activity-stream .entry .load-more,.activity-stream .entry .status{-webkit-animation:none;animation:none}.activity-stream .entry:last-child .detailed-status,.activity-stream .entry:last-child .load-more,.activity-stream .entry:last-child .status{border-bottom:0;border-radius:0 0 4px 4px}.activity-stream .entry:first-child .detailed-status,.activity-stream .entry:first-child .load-more,.activity-stream .entry:first-child .status{border-radius:4px 4px 0 0}.activity-stream .entry:first-child:last-child .detailed-status,.activity-stream .entry:first-child:last-child .load-more,.activity-stream .entry:first-child:last-child .status{border-radius:4px}@media screen and (max-width:740px){.activity-stream .entry .detailed-status,.activity-stream .entry .load-more,.activity-stream .entry .status{border-radius:0!important}}.activity-stream--highlighted .entry{background:#474747}.button.logo-button{flex:0 auto;font-size:14px;background:#21cf7a;color:#fff;text-transform:none;line-height:36px;height:auto;padding:3px 15px;border:0}.button.logo-button svg{width:20px;height:auto;vertical-align:middle;margin-right:5px;fill:#fff}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#42e193}.button.logo-button.disabled:active,.button.logo-button.disabled:focus,.button.logo-button.disabled:hover,.button.logo-button:disabled:active,.button.logo-button:disabled:focus,.button.logo-button:disabled:hover{background:#333}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}@media screen and (max-width:415px){.button.logo-button svg{display:none}}.embed .detailed-status,.public-layout .detailed-status{padding:15px}.embed .status,.public-layout .status{padding:15px 15px 15px 78px;min-height:50px}.embed .status__avatar,.public-layout .status__avatar{left:15px;top:17px}.embed .status__content,.public-layout .status__content{padding-top:5px}.embed .status__prepend,.public-layout .status__prepend{margin-left:78px;padding-top:15px}.embed .status__prepend-icon-wrapper,.public-layout .status__prepend-icon-wrapper{left:-32px}.embed .status .media-gallery,.embed .status .video-player,.embed .status__action-bar,.public-layout .status .media-gallery,.public-layout .status .video-player,.public-layout .status__action-bar{margin-top:10px}button.icon-button i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}button.icon-button i.fa-retweet:hover{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjODc4Nzg3JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOEM4QzhDJyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}button.icon-button.disabled i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjNTQ1NDU0JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}.icon-button.active i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjMjFjZjdhJyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjMjFjZjdhJyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#21cf7a;border:10px;border-radius:4px;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:inherit;font-size:14px;font-weight:500;height:36px;letter-spacing:0;line-height:36px;overflow:hidden;padding:0 16px;position:relative;text-align:center;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#42e193}.button--destructive{transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;transition:none}.button.disabled,.button:disabled{background-color:#333;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative{color:#333;background:#333}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#3d3d3d}.button.button-alternative-2{background:#757575}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:grey}.button.button-secondary{color:#999;background:0 0;padding:3px 15px;border:1px solid #333}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#3d3d3d;color:#a3a3a3}.button.button-secondary:disabled{opacity:.5}.button.button--block{display:block;width:100%}.column__wrapper{display:flex;flex:1 1 auto;position:relative}.icon-button{display:inline-block;padding:0;color:#999;border:none;background:0 0;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#878787;transition:color .2s ease-out}.icon-button.disabled{color:#545454;cursor:default}.icon-button.active{color:#21cf7a}.icon-button::-moz-focus-inner{border:0}.icon-button::-moz-focus-inner,.icon-button:active,.icon-button:focus{outline:0!important}.icon-button.inverted{color:#999}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#636363}.icon-button.inverted.disabled{color:#878787}.icon-button.inverted.active{color:#21cf7a}.icon-button.inverted.active.disabled{color:#4fe39b}.icon-button.overlayed{box-sizing:content-box;background:rgba(0,0,0,.6);color:hsla(0,0%,100%,.7);border-radius:4px;padding:2px}.icon-button.overlayed:hover{background:rgba(0,0,0,.9)}.text-icon-button{color:#999;border:none;background:0 0;cursor:pointer;font-weight:600;font-size:11px;padding:0 3px;line-height:27px;outline:0;transition:color .1s ease-in}.text-icon-button:active,.text-icon-button:focus,.text-icon-button:hover{color:#636363;transition:color .2s ease-out}.text-icon-button.disabled{color:#a8a8a8;cursor:default}.text-icon-button.active{color:#21cf7a}.text-icon-button::-moz-focus-inner{border:0}.text-icon-button::-moz-focus-inner,.text-icon-button:active,.text-icon-button:focus{outline:0!important}.invisible{font-size:0!important;line-height:0!important;display:inline-block;width:0;height:0;position:absolute}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:"…"}.timeline-compose-block{display:flex;align-items:flex-start;padding:20px;margin-bottom:20px;border-radius:10px;background:#222}body.theme-gabsocial-light .timeline-compose-block{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.timeline-compose-block .emoji-picker-wrapper .emoji-picker-dropdown{top:10px}.timeline-compose-block .compose-form{flex:1 1;padding:0 0 0 20px!important;position:relative}.timeline-compose-block .compose-form .compose-form__autosuggest-wrapper:before{content:"";display:block;position:absolute;height:0;width:0;border:11px solid transparent;border-right:12px solid #fff;left:-22px;top:13px}.timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{padding:14px 32px 13px 10px!important}body.theme-gabsocial-light .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{background:#f2f3f6}.no-reduce-motion .spoiler-input{transition:height .4s ease,opacity .4s ease}.emojione{font-family:"object-fit:contain",inherit;vertical-align:middle;-o-object-fit:contain;object-fit:contain;margin:-.2ex .15em .2ex;width:16px;height:16px}.emojione img{width:auto}.reply-indicator{border-radius:4px;margin-bottom:10px;background:#f2f3f6;padding:10px;min-height:23px;overflow-y:auto;flex:0 2 auto;max-height:500px}@media screen and (min-width:320px)and (max-width:375px){.reply-indicator{max-height:220px}}@media screen and (max-width:320px){.reply-indicator{max-height:130px}}.reply-indicator__header{margin-bottom:5px;overflow:hidden}.reply-indicator__cancel{float:right;line-height:24px}.reply-indicator__display-name{color:#333;display:block;max-width:100%;line-height:24px;overflow:hidden;padding-right:25px;text-decoration:none}.reply-indicator__display-avatar{float:left;margin-right:5px}.status__content--with-action{cursor:pointer}.reply-indicator__content,.status__content{position:relative;font-size:15px;line-height:20px;word-wrap:break-word;font-weight:400;overflow:hidden;text-overflow:ellipsis;padding-top:2px;color:#fff}.reply-indicator__content:focus,.status__content:focus{outline:0}.reply-indicator__content.status__content--with-spoiler,.status__content.status__content--with-spoiler{white-space:normal}.reply-indicator__content.status__content--with-spoiler .status__content__text,.status__content.status__content--with-spoiler .status__content__text{white-space:pre-wrap}.reply-indicator__content .emojione,.status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.reply-indicator__content p,.status__content p{margin-bottom:20px;white-space:pre-wrap}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:2px}.reply-indicator__content a,.status__content a{color:#21cf7a;text-decoration:none}.reply-indicator__content a:hover,.status__content a:hover{text-decoration:underline}.reply-indicator__content a:hover .fa,.status__content a:hover .fa{color:#878787}.reply-indicator__content a.mention:hover,.status__content a.mention:hover{text-decoration:none}.reply-indicator__content a.mention:hover span,.status__content a.mention:hover span{text-decoration:underline}.reply-indicator__content a .fa,.status__content a .fa{color:#757575}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#757575}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#878787;text-decoration:none}.reply-indicator__content .status__content__spoiler-link::-moz-focus-inner,.status__content .status__content__spoiler-link::-moz-focus-inner{border:0}.reply-indicator__content .status__content__spoiler-link::-moz-focus-inner,.reply-indicator__content .status__content__spoiler-link:active,.reply-indicator__content .status__content__spoiler-link:focus,.status__content .status__content__spoiler-link::-moz-focus-inner,.status__content .status__content__spoiler-link:active,.status__content .status__content__spoiler-link:focus{outline:0!important}.reply-indicator__content .status__content__text,.status__content .status__content__text{display:none}.reply-indicator__content .status__content__text.status__content__text--visible,.status__content .status__content__text.status__content__text--visible{display:block}.status__content.status__content--collapsed{max-height:200px}.status__content__read-more-button{display:block;font-size:15px;line-height:20px;color:#21cf7a;border:0;background:0 0;padding:8px 0 0}.status__content__read-more-button:active,.status__content__read-more-button:hover{text-decoration:underline}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:0 0;border:0;color:#333;font-weight:700;font-size:11px;padding:0 6px;text-transform:uppercase;line-height:20px;cursor:pointer;vertical-align:middle}.status__wrapper--filtered{color:#757575;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;box-sizing:border-box;width:100%;clear:both;border-bottom:1px solid #474747}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#3d3d3d}.focusable:focus .status.status-direct{background:#525252}.focusable:focus .status.status-direct.muted{background:0 0}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#474747}.status{padding:8px 10px 8px 68px;position:relative;min-height:54px;border-bottom:1px solid #474747;cursor:default;opacity:1;-webkit-animation:fade .15s linear;animation:fade .15s linear}@supports(-ms-overflow-style:-ms-autohiding-scrollbar){.status{padding-right:26px}}@-webkit-keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes fade{0%{opacity:0}to{opacity:1}}.status .video-player{margin-top:8px}.status.status-direct:not(.read){background:#474747;border-bottom-color:#525252}.status.light .display-name span,.status.light .display-name strong,.status.light .status__content,.status.light .status__display-name,.status.light .status__relative-time{color:#333}.status.light .status__content a{color:#21cf7a}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#333}.status.light .status__content a.status__content__spoiler-link:hover{background:#474747}.status__quote{display:block;color:#fff;text-decoration:none;border:1px solid #666;border-radius:10px;padding:10px 15px;margin-top:15px}.status__meta{font-size:14px;color:#999}.status__meta a{color:#21cf7a;font-weight:700;text-decoration:none}.status__meta a:hover{text-decoration:underline}.notification-favourite .status.status-direct{background:0 0}.notification-favourite .status.status-direct .icon-button.disabled{color:#969696}.notification__relative_time,.status__relative-time{color:#757575;float:right;font-size:14px}.status__display-name{color:#757575}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px;z-index:4}.status-check-box{border-bottom:1px solid #666;display:flex}.status-check-box .status-check-box__status{margin:10px 0 10px 10px;flex:1}.status-check-box .status-check-box__status .media-gallery{max-width:250px}.status-check-box .status-check-box__status .status__content{padding:0;white-space:normal}.status-check-box .status-check-box__status .video-player{margin-top:8px;max-width:250px}.status-check-box .status-check-box__status .media-gallery__item-thumbnail{cursor:default}.status-check-box-toggle{align-items:center;display:flex;flex:0 0 auto;justify-content:center;padding:10px}.status__prepend{margin-left:68px;color:#757575;padding:8px 0 2px;font-size:14px;position:relative}.status__prepend--promoted{border:0!important;background:0 0!important;background-color:transparent!important}.status__prepend .status__display-name strong{color:#757575}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:25px;z-index:4}.status__action-bar__counter{display:inline-flex;margin-right:22px;align-items:center}.status__action-bar__counter .status__action-bar-button{margin-right:4px}.status__action-bar__counter__label{display:inline-block;width:14px;font-size:12px;font-weight:500;color:#757575}.status__action-bar-button{margin-right:18px}.status__action-bar-dropdown{height:23.15px;width:23.15px}.detailed-status__action-bar-dropdown{flex:1 1 auto;display:flex;align-items:center;justify-content:center;position:relative}.detailed-status{background:#3d3d3d;padding:14px 10px}.detailed-status--flex{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start}.detailed-status--flex .detailed-status__meta,.detailed-status--flex .status__content{flex:100%}.detailed-status .status__content{font-size:19px;line-height:24px}.detailed-status .status__content .emojione{width:24px;height:24px;margin:-1px 0 0}.detailed-status .status__content .status__content__spoiler-link{line-height:24px;margin:-1px 0 0}.detailed-status .video-player{margin-top:8px}.detailed-status__meta{margin-top:15px;color:#757575;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#3d3d3d;border-top:1px solid #474747;border-bottom:1px solid #474747;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:#757575;cursor:pointer;text-decoration:none;font-size:13px}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#6c6c6c;font-size:14px}.reply-indicator__content a{color:#757575}.domain{padding:10px;border-bottom:1px solid #474747}.domain .domain__domain-name{flex:1 1 auto;display:block;color:#fff;text-decoration:none;font-size:14px;font-weight:500}.domain__wrapper{display:flex}.domain_buttons{height:18px;padding:10px;white-space:nowrap}.account{padding:10px}.account:not(:last-of-type){border-bottom:1px solid #474747}.account.compact{padding:0;border-bottom:0}.account.compact .account__avatar-wrapper{margin-left:0}.account .account__display-name{flex:1 1 auto;display:block;color:#999;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-right:12px}.account__avatar{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative;background-color:#333}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}.account__avatar-composite{overflow:hidden}.account__avatar-composite,.account__avatar-composite>div{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.account__avatar-composite>div{float:left;position:relative;box-sizing:border-box}a .account__avatar{cursor:pointer}.account__avatar-overlay{width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:36px;height:36px;background-size:36px 36px}.account__avatar-overlay-overlay{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:24px;height:24px;background-size:24px 24px;position:absolute;bottom:0;right:0;z-index:1}.account__relationship{height:auto;padding:0 0 0 5px;position:relative}.account__relationship .dismiss-account-btn{display:block;margin-bottom:5px}.account__disclaimer{padding:10px;border-top:1px solid #474747;color:#757575}.account__disclaimer strong{font-weight:500}.account__disclaimer strong:lang(ja),.account__disclaimer strong:lang(ko),.account__disclaimer strong:lang(zh-cn),.account__disclaimer strong:lang(zh-hk),.account__disclaimer strong:lang(zh-tw){font-weight:700}.account__disclaimer a{font-weight:500;color:inherit;text-decoration:underline}.account__disclaimer a:active,.account__disclaimer a:focus,.account__disclaimer a:hover{text-decoration:none}.account__action-bar{border-top:1px solid #474747;border-bottom:1px solid #474747;line-height:36px;overflow:hidden;flex:0 0 auto;display:flex}.account__action-bar-dropdown{padding:10px}.account__action-bar-dropdown .icon-button{vertical-align:middle}.account__action-bar-dropdown .dropdown--active .dropdown__content.dropdown__right{left:6px;right:auto}.account__action-bar-dropdown .dropdown--active:after{bottom:auto;margin-left:11px;margin-top:-7px;right:auto}.account__action-bar-links{display:flex;flex:1 1 auto;line-height:18px;text-align:center}.account__action-bar__tab{text-decoration:none;overflow:hidden;flex:0 1 100%;border-right:1px solid #474747;padding:10px 0;border-bottom:4px solid transparent}.account__action-bar__tab.active{border-bottom:4px solid #21cf7a}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#999}.account__action-bar__tab strong{display:block;font-size:15px;font-weight:500;color:#fff}.account__action-bar__tab strong:lang(ja),.account__action-bar__tab strong:lang(ko),.account__action-bar__tab strong:lang(zh-cn),.account__action-bar__tab strong:lang(zh-hk),.account__action-bar__tab strong:lang(zh-tw){font-weight:700}.account-authorize{padding:14px 10px}.account-authorize .detailed-status__display-name{display:block;margin-bottom:15px;overflow:hidden}.account-authorize__avatar{float:left;margin-right:10px}.account__display-name,.detailed-status__application,.detailed-status__datetime,.detailed-status__display-name,.status__display-name,.status__relative-time{text-decoration:none}.account__display-name strong,.status__display-name strong{color:#fff}.muted .emojione{opacity:.5}.detailed-status__display-name:hover strong,.reply-indicator__display-name:hover strong,.status__display-name:hover strong,a.account__display-name:hover strong{text-decoration:underline}.account__display-name strong{display:block;overflow:hidden;text-overflow:ellipsis}.detailed-status__application,.detailed-status__datetime{color:inherit}.detailed-status__display-name{color:#666;display:block;line-height:24px;margin-bottom:15px;overflow:hidden}.detailed-status__display-name span,.detailed-status__display-name strong{display:block;text-overflow:ellipsis;overflow:hidden}.detailed-status__display-name strong{font-size:16px;color:#fff}.detailed-status__display-avatar{float:left;margin-right:10px}.status__avatar{height:48px;left:10px;position:absolute;top:10px;width:48px}.status__expand{width:68px;position:absolute;left:0;top:0;height:100%;cursor:pointer}.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#757575}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#757575;color:#333}.muted a.status__content__spoiler-link:hover{background:#878787;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#999;font-size:15px;line-height:22px;position:relative}.notification__message .fa{color:#21cf7a}.notification__message>span{display:inline;overflow:hidden;text-overflow:ellipsis}.notification__favourite-icon-wrapper{left:-26px;position:absolute}.notification__favourite-icon-wrapper .star-icon,.star-icon.active{color:#ca8f04}.notification__display-name{color:inherit;font-weight:500;text-decoration:none}.notification__display-name:hover{color:#fff;text-decoration:underline}.notification__relative_time{float:right}.display-name{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.display-name__html{font-weight:600;padding-right:4px}.display-name__account{font-size:14px}.display-name .emojione[alt=":verified:"]{display:none}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.image-loader{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column}.image-loader .image-loader__preview-canvas{max-width:100%;max-height:80%;background:url(/legacy/images/void-4c8270c17facce6d53726a2ebb9745f2.png) repeat;-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain}.image-loader .loading-bar{position:relative}.image-loader.image-loader--amorphous .image-loader__preview-canvas{display:none}.zoomable-image{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.zoomable-image img{max-width:100%;max-height:80%;width:auto;height:auto;-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain}.navigation-bar{padding:10px;display:flex;align-items:center;flex-shrink:0;cursor:default;color:#999}.navigation-bar strong{color:#666}.navigation-bar a{color:inherit}.navigation-bar .permalink{text-decoration:none}.navigation-bar .navigation-bar__actions{position:relative}.navigation-bar .navigation-bar__actions .icon-button.close{position:absolute;pointer-events:none;transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;transform:scale(1) translate(0);opacity:1}.navigation-bar__profile{flex:1 1 auto;margin-left:8px;line-height:20px;margin-top:-1px;overflow:hidden}.navigation-bar__profile-account{display:block;font-weight:500;overflow:hidden;text-overflow:ellipsis}.navigation-bar__profile-edit{color:inherit;text-decoration:none}.columns-area{display:flex;flex:1 1 auto;flex-direction:row;justify-content:flex-start;position:relative}.columns-area__panels{display:flex;justify-content:center;width:100%;height:100%}.columns-area__panels__pane{height:100%;pointer-events:none;display:flex;justify-content:flex-end;padding-top:15px}.columns-area__panels__pane--start{justify-content:flex-start}.columns-area__panels__pane__inner{width:265px;pointer-events:auto;height:100%}.columns-area__panels__main{display:flex;flex-direction:column;box-sizing:border-box;width:100%;max-width:600px;padding:0 20px}@media screen and (max-width:375px){.columns-area__panels__main{padding:0 10px}}@media screen and (min-width:895px){.columns-area__panels__main{margin:0 20px;padding:0}}.react-swipeable-view-container,.react-swipeable-view-container .column,.react-swipeable-view-container .columns-area,.react-swipeable-view-container .drawer{height:100%}.react-swipeable-view-container>*{display:flex;align-items:center;justify-content:center;height:100%}.column{width:350px;position:relative;box-sizing:border-box;display:flex;flex-direction:column}.column article{background:#222}.ui{display:block;width:100%;padding:0 0 100px}.ui .page{display:flex;flex-direction:column;width:100%}.ui .page__top{display:flex;width:100%;height:auto;z-index:105}@media(min-width:895px){.ui .page__top{top:-290px;position:-webkit-sticky;position:sticky}}.ui .page__columns{width:100%;height:100%}.drawer,.ui .page__columns{display:flex;flex-direction:column}.drawer{width:300px;box-sizing:border-box;overflow-y:hidden}.drawer__tab{display:block;flex:1 1 auto;padding:15px 5px 13px;color:#999;text-decoration:none;text-align:center;font-size:16px;border-bottom:2px solid transparent}.column,.drawer{flex:1 1 100%;overflow:hidden}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{flex:0 0 auto;padding:10px 5px}.column:first-child,.drawer:first-child{padding-left:10px}.column:last-child,.drawer:last-child{padding-right:10px}.columns-area>div .column,.columns-area>div .drawer{padding-left:5px;padding-right:5px}}.account__avatar{width:56px;height:56px;background-size:cover}.columns-area--mobile{display:block;flex-direction:column;width:100%;margin:0 auto}.columns-area--mobile .column,.columns-area--mobile .drawer{width:100%;height:100%;padding:0}.columns-area--mobile .autosuggest-textarea__textarea{font-size:16px}.columns-area--mobile .search__input{line-height:18px;font-size:16px;padding:15px 30px 15px 15px}.columns-area--mobile .search__icon .fa{top:15px}@media screen and (min-width:360px){.columns-area--mobile{padding:15px 0}}@media screen and (min-width:630px){.columns-area--mobile .detailed-status{padding:15px}.columns-area--mobile .detailed-status .media-gallery,.columns-area--mobile .detailed-status .video-player{margin-top:15px}.columns-area--mobile .account__header__bar{padding:5px 10px}.columns-area--mobile .compose-form,.columns-area--mobile .navigation-bar{padding:15px}.columns-area--mobile .compose-form .compose-form__publish .compose-form__publish-button-wrapper{padding-top:15px}.columns-area--mobile .status{padding:15px 15px 15px 78px;min-height:50px}.columns-area--mobile .status__avatar{left:15px;top:17px}.columns-area--mobile .status__content{padding-top:5px}.columns-area--mobile .status__prepend{margin-left:78px;padding-top:15px}.columns-area--mobile .status__prepend-icon-wrapper{left:-32px}.columns-area--mobile .status .media-gallery,.columns-area--mobile .status .video-player{margin-top:10px}.columns-area--mobile .account{padding:15px 10px}.columns-area--mobile .notification__message{margin-left:78px;padding-top:15px}.columns-area--mobile .notification__favourite-icon-wrapper{left:-32px}.columns-area--mobile .notification .account,.columns-area--mobile .notification .status{padding-top:8px}.columns-area--mobile .notification .account__avatar-wrapper{margin-left:17px;margin-right:15px}}.floating-action-button{z-index:1000;display:none;position:fixed;bottom:82px;right:14px;width:61px;height:52px;background-image:url(/legacy/images/sprite-main-navigation-adf3dd71f4d17d0c548676ef4da8544c.png);background-repeat:no-repeat;background-size:161px 152px;background-position:-100px 0;background-color:transparent;border:none}@media screen and (max-width:895px){.floating-action-button{display:flex}}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background-position:-100px -100px}@media screen and (min-width:360px){.getting-started__trends,.getting-started__wrapper,.search{margin-bottom:10px}}@media screen and (max-width:895px){.columns-area__panels__pane--left{display:none}}@media screen and (min-width:895px){.search-page .search{display:none}}@media screen and (max-width:1190px){.columns-area__panels__pane--right{display:none}}.icon-with-badge{position:relative}.icon-with-badge__badge{position:absolute;box-sizing:border-box;left:-10px;top:1px;min-width:16px;height:16px;padding:1px 3px 0;border-radius:8px;text-align:center;font-family:Montserrat,Arial,sans-serif!important;font-size:14px;font-size:1.4rem;line-height:14px;line-height:1.4rem;color:#fff;background:#cc6643}.column-link--transparent .icon-with-badge__badge{border-color:#1f1f1f}.promo-panel{margin-top:10px;background-color:transparent!important;overflow:hidden}.promo-panel-item{display:block;height:42px;line-height:42px;border-bottom:1px solid #474747;background:#222}body.theme-gabsocial-light .promo-panel-item{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.promo-panel-item--highlighted{background-color:#30ce7d;border-radius:10px;font-weight:600;margin-bottom:10px}.promo-panel-item--top-rounded{border-top-right-radius:10px;border-top-left-radius:10px}.promo-panel-item:last-of-type{border-bottom:none}.promo-panel-item__btn{display:block;text-align:left;color:#fff;text-decoration:none;font-size:15px;padding:0 20px}.promo-panel-item__btn--special i{color:#30ce7d}.promo-panel-item__btn:hover{color:#dbdbdb}.promo-panel-item__btn:hover span{text-decoration:underline}.promo-panel-item__icon{margin-right:12px}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{top:0;left:0;background:#545454;flex-direction:column;overflow-y:auto;width:100%;height:100%}.drawer__inner.darker{background:#333}.drawer__inner__gabsocial{background:#545454 url('data:image/svg+xml;utf8,') no-repeat bottom/100% auto;flex:1;min-height:47px;display:none}.drawer__inner__gabsocial>img{display:block;-o-object-fit:contain;font-family:"object-fit:contain;object-position:bottom left";object-fit:contain;-o-object-position:bottom left;object-position:bottom left;width:100%;height:100%;pointer-events:none;user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (min-height:640px){.drawer__inner__gabsocial{display:block}}.pseudo-drawer{background:#545454;font-size:13px;text-align:left}.drawer__header{flex:0 0 auto;font-size:16px;background:#474747;margin-bottom:10px;display:flex;flex-direction:row}.drawer__header a{transition:background .1s ease-in}.drawer__header a:hover{background:#3b3b3b;transition:background .2s ease-out}.slist--flex{display:flex;flex-direction:column}.slist__append{flex:1 1 auto;position:relative;min-height:120px}.column-back-button{background:#3d3d3d;color:#21cf7a;cursor:pointer;flex:0 0 auto;font-size:16px;line-height:inherit;border:0;text-align:unset;padding:15px;margin:0;z-index:3;outline:0}.column-back-button:hover{text-decoration:underline}.column-header__back-button{background:#3d3d3d;border:0;font-family:inherit;color:#21cf7a;cursor:pointer;white-space:nowrap;font-size:16px;padding:0 5px 0 0;z-index:3}.column-header__back-button:hover{text-decoration:underline}.column-header__back-button:last-child{padding:0 15px 0 0}.column-back-button__icon{display:inline-block;margin-right:5px}.column-back-button--slim{position:relative}.column-back-button--slim-button{cursor:pointer;flex:0 0 auto;font-size:16px;padding:15px;position:absolute;right:0;top:-48px}.react-toggle{display:inline-block;position:relative;cursor:pointer;background-color:transparent;border:0;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}.react-toggle-screenreader-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.react-toggle--disabled{cursor:not-allowed;opacity:.5;transition:opacity .25s}.react-toggle-track{width:50px;height:24px;padding:0;border-radius:30px;background-color:#333;transition:background-color .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#1a1a1a}.react-toggle--checked .react-toggle-track{background-color:#21cf7a}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#42e193}.react-toggle-track-check{position:absolute;width:14px;height:10px;top:0;bottom:0;margin-top:auto;margin-bottom:auto;line-height:0;left:8px;opacity:0;transition:opacity .25s ease}.react-toggle--checked .react-toggle-track-check,.react-toggle-track-x{opacity:1;transition:opacity .25s ease}.react-toggle-track-x{position:absolute;width:10px;height:10px;top:0;bottom:0;margin-top:auto;margin-bottom:auto;line-height:0;right:10px}.react-toggle--checked .react-toggle-track-x{opacity:0}.react-toggle-thumb{position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #333;border-radius:50%;background-color:#fafafa;box-sizing:border-box;transition:all .25s ease;transition-property:border-color,left}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#21cf7a}.column-link{background:#474747;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:active,.column-link:focus,.column-link:hover{background:#4f4f4f}.column-link:focus{outline:0}.column-link--transparent{background:0 0;color:#666}.column-link--transparent:active,.column-link--transparent:focus,.column-link--transparent:hover{background:0 0;color:#fff}.column-link--transparent.active{color:#21cf7a}.column-link__icon{display:inline-block;margin-right:5px}.column-link__badge{display:inline-block;border-radius:4px;line-height:19px;padding:4px 8px;margin:-6px 10px}.column-link__badge,.column-subheading{font-size:12px;font-weight:500;background:#333}.column-subheading{color:#757575;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#333}.getting-started__wrapper{flex:0 0 auto}.flex-spacer{flex:1 1 auto}.getting-started{color:#757575;overflow:auto}.getting-started__footer{flex:0 0 auto;padding:20px 10px 10px}.getting-started__footer ul{margin-bottom:10px}.getting-started__footer ul li{display:inline}.getting-started__footer p{color:#757575;font-size:13px;margin-bottom:20px}.getting-started__footer p a{color:#999;text-decoration:underline}.getting-started__footer a{text-decoration:none;color:#999}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover{text-decoration:underline}.getting-started__trends{background:#333;flex:0 1 auto}@media screen and (max-height:810px){.getting-started__trends .trends__item:nth-child(3){display:none}}@media screen and (max-height:720px){.getting-started__trends .trends__item:nth-child(2){display:none}}@media screen and (max-height:670px){.getting-started__trends{display:none}}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px}@media screen and (max-width:960px){.keyboard-shortcuts{height:90vh}}.keyboard-shortcuts__header{display:block;position:relative;border-bottom:1px solid #474747;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.keyboard-shortcuts__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#fff;text-align:center}.keyboard-shortcuts__close{position:absolute;right:10px;top:10px}.keyboard-shortcuts__content{display:flex;flex-direction:row;padding:15px}@media screen and (max-width:960px){.keyboard-shortcuts__content{flex-direction:column;overflow:hidden;overflow-y:scroll;height:calc(100% - 80px);-webkit-overflow-scrolling:touch}}.keyboard-shortcuts table thead{display:block;padding-left:10px;margin-bottom:10px;color:#fff;font-size:16px;font-weight:600}.keyboard-shortcuts table tr{font-size:12px}.keyboard-shortcuts table td{padding:0 10px 8px}.keyboard-shortcuts table kbd{display:inline-block;padding:2px 8px;background-color:#474747;border:1px solid #292929;border-radius:4px}.setting-text{color:#999;background:0 0;border:none;border-bottom:2px solid #333;box-sizing:border-box;display:block;font-family:inherit;margin-bottom:10px;padding:7px 0;width:100%}.setting-text:active,.setting-text:focus{color:#fff;border-bottom-color:#21cf7a}@media screen and (max-width:600px){.setting-text{font-size:16px}}.no-reduce-motion button.icon-button i.fa-retweet{background-position:0 0;height:19px;transition:background-position .9s steps(10);transition-duration:0s;vertical-align:middle;width:22px}.no-reduce-motion button.icon-button i.fa-retweet:before{display:none!important}.no-reduce-motion button.icon-button.active i.fa-retweet{transition-duration:.9s;background-position:0 100%}.status-card{display:flex;font-size:15px;border:1px solid #525252;border-radius:4px;color:#757575;margin-top:14px;text-decoration:none;overflow:hidden;flex-direction:column}.status-card__actions{bottom:0;left:0;position:absolute;right:0;top:0}.status-card__actions,.status-card__actions>div{display:flex;justify-content:center;align-items:center}.status-card__actions>div{background:rgba(0,0,0,.6);border-radius:8px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:0 0;border:0;padding:0 8px;text-decoration:none;font-size:18px;line-height:18px}.status-card__actions a:active,.status-card__actions a:focus,.status-card__actions a:hover,.status-card__actions button:active,.status-card__actions button:focus,.status-card__actions button:hover{color:#fff}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#474747}.status-card-photo{cursor:zoom-in;display:block;text-decoration:none;width:100%;height:auto;margin:0}.status-card-video iframe{width:100%;height:100%}.status-card__title{display:block;font-weight:500;margin-bottom:5px;color:#fff;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:12px 10px;border-top:1px solid #525252}.status-card__description{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:40px;overflow:hidden;color:#999}.status-card__host{display:block;margin-top:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#999}.status-card__image{display:block;padding-bottom:52.25%;position:relative;background:#474747}.status-card__image>.fa{font-size:21px;position:absolute;transform-origin:50% 50%;top:50%;left:50%;transform:translate(-50%,-50%)}.status-card.horizontal{display:block}.status-card.horizontal .status-card__image{width:100%}.status-card.horizontal .status-card__image-image{border-radius:4px 4px 0 0}.status-card.horizontal .status-card__title{white-space:inherit}.status-card.compact{flex-direction:row}.status-card.compact.interactive{border:0}.status-card.compact .status-card__content{padding:10px 8px 8px}.status-card.compact .status-card__title{white-space:nowrap}.status-card.compact .status-card__image{flex:0 0 94px;padding-bottom:0}a.status-card.compact:hover{background-color:#3d3d3d}.status-card__image-image{display:block;position:absolute;right:0;left:0;top:0;bottom:0;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#757575;background-color:transparent;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;box-sizing:border-box;width:100%;clear:both;text-decoration:none}.load-more:hover{background:#383838}.load-gap{border-bottom:1px solid #474747}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#757575;background:#333;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:0 0;padding-top:0}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#757575}.regeneration-indicator__label span{font-size:15px;font-weight:400}.columns-area--mobile .column{border-radius:10px;background:#222}body.theme-gabsocial-light .columns-area--mobile .column{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.column-header__wrapper{position:relative;flex:0 0 auto;overflow:hidden}.column-header__wrapper.active:before{display:block;content:"";position:absolute;top:35px;left:0;right:0;margin:0 auto;width:60%;pointer-events:none;height:28px;z-index:1;background:radial-gradient(ellipse,rgba(33,207,122,.23) 0,rgba(33,207,122,0) 60%)}.column-header{display:flex;font-size:16px;background:#222;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden}body.theme-gabsocial-light .column-header{background:#fff;color:#6c6c6c}.column-header>.btn,.column-header>button{margin:0;border:none;padding:15px;color:inherit;background:0 0;font:inherit;text-align:left;text-decoration:none;white-space:nowrap}.column-header>.btn--sub,.column-header>button--sub{font-size:14px;padding:6px 10px}.column-header>.btn.grouped,.column-header>button.grouped{margin:6px}.column-header>.btn.active,.column-header>button.active{color:#fff;border-radius:10px;background-color:rgba(33,207,122,.1)}@media screen and (max-width:650px){.column-header>.btn,.column-header>button{padding:8px;font-size:14px}.column-header>.btn.grouped,.column-header>button.grouped{margin:6px 2px 6px 6px}.column-header>.btn.active,.column-header>button.active{border-radius:5px}}.column-header>.column-header__back-button{color:#21cf7a}.column-header.active{box-shadow:0 1px 0 rgba(33,207,122,.3)}.column-header.active .column-header__icon{color:#21cf7a;text-shadow:0 0 10px rgba(33,207,122,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:flex;margin-left:auto}.column-header__links .text-btn{margin-right:10px}.column-header__button{cursor:pointer;border:0;padding:0 15px;font-size:16px;color:#fff;background:#222}body.theme-gabsocial-light .column-header__button{color:#6c6c6c;background:#fff}.column-header__button:hover{color:#ababab}.column-header__button.active,.column-header__button.active:hover{color:#fff;background:#474747}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#999;transition:max-height .15s ease-in-out,opacity .3s linear;opacity:1}.column-header__collapsible.collapsed{max-height:0;opacity:.5}.column-header__collapsible.animating{overflow-y:hidden}.column-header__collapsible hr{height:0;background:0 0;border:0;border-top:1px solid #525252;margin:10px 0}.column-header__collapsible-inner{background:#3f3f3f;padding:15px}body.theme-gabsocial-light .column-header__collapsible-inner{background:#e6e6e6}.column-header__setting-btn--link{text-decoration:none}.column-header__setting-btn--link .fa{margin-left:10px}.column-header__setting-btn:hover{color:#999;text-decoration:underline}.column-header__setting-arrows{float:right}.column-header__setting-arrows .column-header__setting-btn{padding:0 10px}.column-header__setting-arrows .column-header__setting-btn:last-child{padding-right:0}.column-header__expansion{overflow-x:scroll;overflow-y:hidden;white-space:nowrap}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:0 0;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#757575;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #757575;border-radius:50%}.no-reduce-motion .loading-indicator span{-webkit-animation:loader-label 1.15s cubic-bezier(.215,.61,.355,1) infinite;animation:loader-label 1.15s cubic-bezier(.215,.61,.355,1) infinite}.no-reduce-motion .loading-indicator__figure{-webkit-animation:loader-figure 1.15s cubic-bezier(.215,.61,.355,1) infinite;animation:loader-figure 1.15s cubic-bezier(.215,.61,.355,1) infinite}@-webkit-keyframes loader-figure{0%{width:0;height:0;background-color:#757575}29%{background-color:#757575}30%{width:42px;height:42px;background-color:transparent;border-width:21px;opacity:1}to{width:42px;height:42px;border-width:0;opacity:0;background-color:transparent}}@keyframes loader-figure{0%{width:0;height:0;background-color:#757575}29%{background-color:#757575}30%{width:42px;height:42px;background-color:transparent;border-width:21px;opacity:1}to{width:42px;height:42px;border-width:0;opacity:0;background-color:transparent}}@-webkit-keyframes loader-label{0%{opacity:.25}30%{opacity:1}to{opacity:.25}}@keyframes loader-label{0%{opacity:.25}30%{opacity:1}to{opacity:.25}}.video-error-cover{align-items:center;background:#000;color:#fff;cursor:pointer;display:flex;flex-direction:column;height:100%;justify-content:center;margin-top:8px;position:relative;text-align:center;z-index:100}.media-spoiler{background:#000;color:#999;border:0;padding:0;width:100%;height:100%;border-radius:4px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.media-spoiler:active,.media-spoiler:focus,.media-spoiler:hover{padding:0;color:#adadad}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{top:0;left:0;width:100%;height:100%;position:absolute;z-index:100}.spoiler-button--minified{display:block;left:4px;top:4px;width:auto;height:auto}.spoiler-button--hidden{display:none}.spoiler-button__overlay{display:block;background:0 0;width:100%;height:100%;border:0}.spoiler-button__overlay__label{display:inline-block;background:rgba(0,0,0,.5);border-radius:8px;padding:8px 12px;color:#fff;font-weight:500;font-size:14px}.spoiler-button__overlay:active .spoiler-button__overlay__label,.spoiler-button__overlay:focus .spoiler-button__overlay__label,.spoiler-button__overlay:hover .spoiler-button__overlay__label{background:rgba(0,0,0,.8)}.modal-container--preloader{background:#474747}.account--panel{background:#3d3d3d;border-top:1px solid #474747;border-bottom:1px solid #474747;display:flex;flex-direction:row;padding:10px 0}.account--panel__button,.detailed-status__button{flex:1 1 auto;text-align:center}.column-settings__outer{background:#474747;padding:15px}.column-settings__section{color:#999;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__hashtags .column-settings__row{margin-bottom:15px}.column-settings__hashtags .column-select__control{outline:0;box-sizing:border-box;width:100%;border:1px solid #666;box-shadow:none;font-family:inherit;background:#222;color:#21cf7a;font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;margin:0;border-radius:4px}.column-settings__hashtags .column-select__control::-webkit-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-moz-placeholder{color:#666}.column-settings__hashtags .column-select__control::placeholder{color:#666}.column-settings__hashtags .column-select__control:-ms-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-ms-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-moz-focus-inner{border:0}.column-settings__hashtags .column-select__control::-moz-focus-inner,.column-settings__hashtags .column-select__control:active,.column-settings__hashtags .column-select__control:focus{outline:0!important}.column-settings__hashtags .column-select__placeholder{color:#757575;padding-left:2px;font-size:12px}.column-settings__hashtags .column-select__value-container{padding-left:6px}.column-settings__hashtags .column-select__multi-value{background:#474747}.column-settings__hashtags .column-select__multi-value__remove{cursor:pointer}.column-settings__hashtags .column-select__multi-value__remove:active,.column-settings__hashtags .column-select__multi-value__remove:focus,.column-settings__hashtags .column-select__multi-value__remove:hover{background:#525252;color:#a3a3a3}.column-settings__hashtags .column-select__input,.column-settings__hashtags .column-select__multi-value__label{color:#999}.column-settings__hashtags .column-select__clear-indicator,.column-settings__hashtags .column-select__dropdown-indicator{cursor:pointer;transition:none;color:#757575}.column-settings__hashtags .column-select__clear-indicator:active,.column-settings__hashtags .column-select__clear-indicator:focus,.column-settings__hashtags .column-select__clear-indicator:hover,.column-settings__hashtags .column-select__dropdown-indicator:active,.column-settings__hashtags .column-select__dropdown-indicator:focus,.column-settings__hashtags .column-select__dropdown-indicator:hover{color:grey}.column-settings__hashtags .column-select__indicator-separator{background-color:#474747}.column-settings__hashtags .column-select__menu{background:#222;border-radius:4px;border:1px solid #666;margin:4px 0 0;font-size:12px;font-size:1.2rem;line-height:14px;line-height:1.4rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5);padding:0;background:#666}.column-settings__hashtags .column-select__menu h4{color:#fff;font-size:14px;font-size:1.4rem;line-height:16px;line-height:1.6rem;font-weight:700}.column-settings__hashtags .column-select__menu ul{margin:6px 0}.column-settings__hashtags .column-select__menu ul li{margin:0 0 2px}.column-settings__hashtags .column-select__menu ul li em{color:#21cf7a}.column-settings__hashtags .column-select__menu-list{padding:6px}.column-settings__hashtags .column-select__option{color:#333;border-radius:4px;font-size:14px}.column-settings__hashtags .column-select__option--is-focused,.column-settings__hashtags .column-select__option--is-selected{background:#4d4d4d}.column-settings__row .text-btn{margin-bottom:15px}.relationship-tag{color:#fff;margin-bottom:4px;display:block;vertical-align:top;background-color:#000;text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px;opacity:.7}.relationship-tag:hover{opacity:1}.setting-toggle{display:block;line-height:24px}.setting-toggle__label{color:#999;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.empty-column-indicator,.error-column{color:#757575;background:#333;text-align:center;padding:40px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;min-height:160px}@supports(display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator>span,.error-column>span{max-width:400px}.empty-column-indicator a,.error-column a{color:#21cf7a;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}@-webkit-keyframes heartbeat{0%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{transform-origin:center center;-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}@-webkit-keyframes shake-bottom{0%,to{transform:rotate(0deg);transform-origin:50% 100%}10%{transform:rotate(2deg)}20%,40%,60%{transform:rotate(-4deg)}30%,50%,70%{transform:rotate(4deg)}80%{transform:rotate(-2deg)}90%{transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{transform:rotate(0deg);transform-origin:50% 100%}10%{transform:rotate(2deg)}20%,40%,60%{transform:rotate(-4deg)}30%,50%,70%{transform:rotate(4deg)}80%{transform:rotate(-2deg)}90%{transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{transform-origin:50% 100%;-webkit-animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) 2s 2 both;animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) 2s 2 both}.emoji-picker-dropdown__menu{background:#fff;position:absolute;box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px;z-index:20000}.emoji-picker-dropdown__menu .emoji-mart-scroll{transition:opacity .2s ease}.emoji-picker-dropdown__menu.selecting .emoji-mart-scroll{opacity:.5}.emoji-picker-dropdown__modifiers{position:absolute;top:60px;right:11px;cursor:pointer}.emoji-picker-dropdown__modifiers__menu{position:absolute;z-index:4;top:-4px;left:-8px;background:#fff;border-radius:4px;box-shadow:1px 2px 6px rgba(0,0,0,.2);overflow:hidden}.emoji-picker-dropdown__modifiers__menu button{display:block;cursor:pointer;border:0;padding:4px 8px;background:0 0}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:hsla(0,0%,40%,.4)}.emoji-picker-dropdown__modifiers__menu .emoji-mart-emoji{height:22px}.emoji-mart-emoji span{background-repeat:no-repeat}.upload-area{align-items:center;background:rgba(0,0,0,.8);display:flex;height:100%;justify-content:center;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:2000}.upload-area *{pointer-events:none}.upload-area__drop{width:320px;height:160px;display:flex;box-sizing:border-box;position:relative;padding:8px}.upload-area__background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;border-radius:4px;background:#333;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#666;font-size:18px;font-weight:500;border:2px dashed #757575;border-radius:4px}.upload-progress{padding:10px;color:#757575;overflow:hidden;display:flex}.upload-progress .fa{font-size:34px;margin-right:10px}.upload-progress span{font-size:12px;text-transform:uppercase;font-weight:500;display:block}.upload-progess__message{flex:1 1 auto}.upload-progress__backdrop{width:100%;height:6px;border-radius:6px;background:#757575;position:relative;margin-top:5px}.upload-progress__tracker{position:absolute;left:0;top:0;height:6px;background:#21cf7a;border-radius:6px}.emoji-button{display:block;font-size:24px;line-height:24px;margin-left:2px;width:24px;outline:0;cursor:pointer}.emoji-button:active,.emoji-button:focus{outline:0!important}.emoji-button img{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8;display:block;width:22px;height:22px;margin:2px 0 0}.dropdown--active .emoji-button img,.emoji-button:active img,.emoji-button:focus img,.emoji-button:hover img{opacity:1;-webkit-filter:none;filter:none}.privacy-dropdown__dropdown{position:absolute;background:#fff;box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:4px;margin-left:40px;overflow:hidden;z-index:10000}.privacy-dropdown__dropdown.top{transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{transform-origin:50% 0}.privacy-dropdown__option{color:#333;padding:10px;cursor:pointer;display:flex}.privacy-dropdown__option.active,.privacy-dropdown__option:hover{background:#21cf7a;color:#fff;outline:0}.privacy-dropdown__option.active .privacy-dropdown__option__content,.privacy-dropdown__option.active .privacy-dropdown__option__content strong,.privacy-dropdown__option:hover .privacy-dropdown__option__content,.privacy-dropdown__option:hover .privacy-dropdown__option__content strong{color:#fff}.privacy-dropdown__option.active:hover{background:#28dd84}.privacy-dropdown__option__icon{display:flex;align-items:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{flex:1 1 auto;color:#757575}.privacy-dropdown__option__content strong{font-weight:500;display:block;color:#333}.privacy-dropdown__option__content strong:lang(ja),.privacy-dropdown__option__content strong:lang(ko),.privacy-dropdown__option__content strong:lang(zh-cn),.privacy-dropdown__option__content strong:lang(zh-hk),.privacy-dropdown__option__content strong:lang(zh-tw){font-weight:700}.privacy-dropdown.active .privacy-dropdown__value{background:#fff;border-radius:4px 4px 0 0;box-shadow:0 -4px 4px rgba(0,0,0,.1)}.privacy-dropdown.active .privacy-dropdown__value .icon-button{transition:none}.privacy-dropdown.active .privacy-dropdown__value.active{background:#21cf7a}.privacy-dropdown.active .privacy-dropdown__value.active .icon-button{color:#fff}.privacy-dropdown.active.top .privacy-dropdown__value{border-radius:0 0 4px 4px}.privacy-dropdown.active .privacy-dropdown__dropdown{display:block;box-shadow:2px 4px 6px rgba(0,0,0,.1)}.search{position:relative}.search__input{display:block;padding:7px 30px 6px 10px;outline:0;box-sizing:border-box;width:100%;border:1px solid #666;box-shadow:none;font-family:inherit;background:#222;color:#21cf7a;font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;margin:0;border-radius:4px}.search__input::-webkit-input-placeholder{color:#666}.search__input::-moz-placeholder{color:#666}.search__input::placeholder{color:#666}.search__input:-ms-input-placeholder{color:#666}.search__input::-ms-input-placeholder{color:#666}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{cursor:default;display:inline-block;position:absolute;top:8px;right:6px;z-index:2;width:18px;height:18px;font-size:16px;font-size:1.6rem;color:#666;opacity:0;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:1}.search__icon .fa-search.active{pointer-events:none}.search__icon .fa-times-circle{cursor:pointer;font-size:17px;font-size:1.7rem;color:#cc6643}.search__icon .fa-times-circle:hover{color:#d47d5f}.search-results__header{color:#757575;background:#383838;padding:15px;font-weight:500;font-size:16px;cursor:default}.search-results__header .fa{display:inline-block;margin-right:5px}.search-results__section{margin-bottom:5px}.search-results__section h5{background:#292929;border-bottom:1px solid #474747;cursor:default;display:flex;padding:15px;font-weight:500;font-size:16px;color:#757575}.search-results__section h5 .fa{display:inline-block;margin-right:5px}.search-results__section .account:last-child,.search-results__section>div:last-child .status{border-bottom:0}.search-results__hashtag{display:block;padding:10px;color:#666;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#707070;text-decoration:underline}.loading-bar{background-color:#21cf7a;height:3px;position:absolute;top:0;left:0}.media-gallery__gifv__label{display:block;position:absolute;color:#fff;background:rgba(0,0,0,.5);bottom:6px;left:6px;padding:2px 6px;border-radius:2px;font-size:11px;font-weight:600;z-index:1;pointer-events:none;opacity:.9;transition:opacity .1s ease;line-height:18px}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.attachment-list{display:flex;font-size:14px;border:1px solid #474747;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#757575;padding:8px 18px;cursor:default;border-right:1px solid #474747;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:26px}.attachment-list__icon .fa{display:block}.attachment-list__list{list-style:none;padding:4px 0 4px 8px;display:flex;flex-direction:column;justify-content:center}.attachment-list__list li{display:block;padding:4px 0}.attachment-list__list a{text-decoration:none;color:#757575;font-weight:500}.attachment-list__list a:hover{text-decoration:underline}.attachment-list.compact{border:0;margin-top:4px}.attachment-list.compact .attachment-list__list{padding:0;display:block}.attachment-list.compact .fa{color:#757575}.media-gallery{margin-top:8px;border-radius:4px;width:100%}.media-gallery,.media-gallery__item{box-sizing:border-box;overflow:hidden;position:relative}.media-gallery__item{border:none;display:block;float:left;border-radius:4px}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#666;line-height:0;position:relative;z-index:1}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img,.media-gallery__preview{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.media-gallery__preview{width:100%;height:100%;position:absolute;top:0;left:0;z-index:0;background:#000}.media-gallery__preview--hidden{display:none}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%}.media-gallery__item-gifv-thumbnail{cursor:zoom-in;height:100%;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;position:relative;width:100%;z-index:1;transform:none;top:0}.media-gallery__item-thumbnail-label{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute}.status__video-player{background:#000;box-sizing:border-box;cursor:default;margin-top:8px;overflow:hidden;position:relative}.status__video-player-video{height:100%;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;position:relative;top:50%;transform:translateY(-50%);width:100%;z-index:1}.status__video-player-expand,.status__video-player-mute{color:#fff;opacity:.8;position:absolute;right:4px;text-shadow:0 1px 1px #000,1px 0 1px #000}.status__video-player-spoiler{display:none;color:#fff;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.status__video-player-spoiler.status__video-player-spoiler--visible{display:block}.status__video-player-expand{bottom:4px;z-index:100}.status__video-player-mute{top:4px;z-index:5}.detailed .video-player__volume:before,.detailed .video-player__volume__current,.fullscreen .video-player__volume:before,.fullscreen .video-player__volume__current{bottom:27px}.detailed .video-player__volume__handle,.fullscreen .video-player__volume__handle{bottom:23px}.video-player{overflow:hidden;position:relative;background:#000;max-width:100%;border-radius:4px}.video-player:focus{outline:0}.video-player video{max-width:100vw;max-height:80vh;z-index:1}.video-player.fullscreen{width:100%!important;height:100%!important;margin:0}.video-player.fullscreen video{max-width:100%!important;max-height:100%!important;width:100%!important;height:100%!important}.video-player.inline video{-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain;position:relative;top:50%;transform:translateY(-50%)}.video-player__controls{position:absolute;z-index:2;bottom:0;left:0;right:0;box-sizing:border-box;background:linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.45) 60%,transparent);padding:0 15px;opacity:0;transition:opacity .1s ease}.video-player__controls.active{opacity:1}.video-player.inactive .video-player__controls,.video-player.inactive video{visibility:hidden}.video-player__spoiler{display:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:4;border:0;background:#000;color:#999;transition:none;pointer-events:none}.video-player__spoiler.active{display:block;pointer-events:auto}.video-player__spoiler.active:active,.video-player__spoiler.active:focus,.video-player__spoiler.active:hover{color:#ababab}.video-player__spoiler__title{display:block;font-size:14px}.video-player__spoiler__subtitle{display:block;font-size:11px;font-weight:500}.video-player__buttons-bar{display:flex;justify-content:space-between;padding-bottom:10px}.video-player__buttons{font-size:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.video-player__buttons.left button{padding-left:0}.video-player__buttons.right button{padding-right:0}.video-player__buttons button{background:0 0;padding:2px 10px;font-size:16px;border:0;color:hsla(0,0%,100%,.75)}.video-player__buttons button:active,.video-player__buttons button:focus,.video-player__buttons button:hover{color:#fff}.video-player__time-current,.video-player__time-sep,.video-player__time-total{font-size:14px;font-weight:500}.video-player__time-current{color:#fff;margin-left:60px}.video-player__time-sep{display:inline-block;margin:0 6px}.video-player__time-sep,.video-player__time-total{color:#fff}.video-player__volume{cursor:pointer;height:24px;display:inline}.video-player__volume:before{content:"";width:50px;background:hsla(0,0%,100%,.35)}.video-player__volume:before,.video-player__volume__current{border-radius:4px;display:block;position:absolute;height:4px;left:70px;bottom:20px}.video-player__volume__current{background:#39df8e}.video-player__volume__handle{position:absolute;z-index:3;border-radius:50%;width:12px;height:12px;bottom:16px;left:70px;transition:opacity .1s ease;background:#39df8e;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.video-player__link{padding:2px 10px}.video-player__link a{text-decoration:none;font-size:14px;font-weight:500;color:#fff}.video-player__link a:active,.video-player__link a:focus,.video-player__link a:hover{text-decoration:underline}.video-player__seek{cursor:pointer;height:24px;position:relative}.video-player__seek:before{content:"";width:100%;background:hsla(0,0%,100%,.35);border-radius:4px;display:block;position:absolute;height:4px;top:10px}.video-player__seek__buffer,.video-player__seek__progress{display:block;position:absolute;height:4px;border-radius:4px;top:10px;background:#39df8e}.video-player__seek__buffer{background:hsla(0,0%,100%,.2)}.video-player__seek__handle{position:absolute;z-index:3;opacity:0;border-radius:50%;width:12px;height:12px;top:6px;margin-left:-6px;transition:opacity .1s ease;background:#39df8e;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.video-player__seek:hover .video-player__seek__handle,.video-player__seek__handle.active{opacity:1}.video-player.detailed .video-player__buttons button,.video-player.fullscreen .video-player__buttons button{padding-top:10px;padding-bottom:10px}.media-spoiler-video{background-size:cover;background-repeat:no-repeat;background-position:50%;cursor:pointer;margin-top:8px;position:relative;border:0;display:block}.media-spoiler-video-play-icon{border-radius:100px;color:hsla(0,0%,100%,.8);font-size:36px;left:50%;padding:5px;position:absolute;top:50%;transform:translate(-50%,-50%)}.account-gallery__container{display:flex;flex-wrap:wrap;padding:4px 2px}.account-gallery__item{border:none;box-sizing:border-box;display:block;position:relative;border-radius:4px;overflow:hidden;margin:2px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#292929;border-bottom:1px solid #474747;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#292929;border:0;margin:0}.account__section-headline a,.account__section-headline button,.notification__filter-bar a,.notification__filter-bar button{display:block;flex:1 1 auto;color:#666;padding:15px 0;font-size:14px;font-weight:500;text-align:center;text-decoration:none;position:relative}.account__section-headline a.active,.account__section-headline button.active,.notification__filter-bar a.active,.notification__filter-bar button.active{color:#fff}.account__section-headline a.active:after,.account__section-headline a.active:before,.account__section-headline button.active:after,.account__section-headline button.active:before,.notification__filter-bar a.active:after,.notification__filter-bar a.active:before,.notification__filter-bar button.active:after,.notification__filter-bar button.active:before{display:block;content:"";position:absolute;bottom:0;left:50%;width:0;height:0;transform:translateX(-50%);border-color:transparent transparent #474747;border-style:solid;border-width:0 10px 10px}.account__section-headline a.active:after,.account__section-headline button.active:after,.notification__filter-bar a.active:after,.notification__filter-bar button.active:after{bottom:-1px;border-color:transparent transparent #333}.account__section-headline a,.account__section-headline button{flex:none;padding:18px 15px;font-size:16px;font-weight:600}::-webkit-scrollbar-thumb{border-radius:0}.search-popout-container{width:251px}@media screen and (max-width:650px){.search-popout-container{width:100%}}.search-popout{background:#222;border-radius:4px;border:1px solid #666;padding:8px 10px 17px;margin:4px 0 0;font-size:12px;font-size:1.2rem;line-height:14px;line-height:1.4rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.search-popout h4{color:#fff;font-size:14px;font-size:1.4rem;line-height:16px;line-height:1.6rem;font-weight:700}.search-popout ul{margin:6px 0}.search-popout ul li{margin:0 0 2px}.search-popout ul li em{color:#21cf7a}noscript{text-align:center}noscript img{width:200px;opacity:.5;-webkit-animation:flicker 4s infinite;animation:flicker 4s infinite}noscript div{font-size:14px;margin:30px auto;color:#666;max-width:400px}noscript div a{color:#21cf7a;text-decoration:underline}noscript div a:hover{text-decoration:none}@-webkit-keyframes flicker{0%{opacity:1}30%{opacity:.75}to{opacity:1}}@keyframes flicker{0%{opacity:1}30%{opacity:.75}to{opacity:1}}@media screen and (max-width:630px)and (max-height:400px){.search,.tabs-bar{will-change:margin-top;transition:margin-top .4s .1s}.navigation-bar{will-change:padding-bottom;transition:padding-bottom .4s .1s}.navigation-bar>a:first-child{will-change:margin-top,margin-left,margin-right,width;transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s}.navigation-bar>.navigation-bar__profile-edit{will-change:margin-top;transition:margin-top .4s .1s}.navigation-bar .navigation-bar__actions>.icon-button.close{will-change:opacity transform;transition:opacity .2s .1s,transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;transition:opacity .2s .3s,transform .4s .1s}.is-composing .search,.is-composing .tabs-bar{margin-top:-50px}.is-composing .navigation-bar{padding-bottom:0}.is-composing .navigation-bar>a:first-child{margin:-100px 10px 0 -50px}.is-composing .navigation-bar .navigation-bar__profile{padding-top:2px}.is-composing .navigation-bar .navigation-bar__profile-edit{position:absolute;margin-top:-60px}.is-composing .navigation-bar .navigation-bar__actions .icon-button.close{pointer-events:auto;opacity:1;transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;transform:scaleX(0) translate(100%)}}.embed-modal{max-width:80vw;max-height:80vh}.embed-modal h4{padding:30px;font-weight:500;font-size:16px;text-align:center}.embed-modal .embed-modal__container{padding:10px}.embed-modal .embed-modal__container .hint{margin-bottom:15px}.embed-modal .embed-modal__container .embed-modal__html{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:gabsocial-font-monospace,monospace;background:#333;color:#fff;font-size:14px;margin:0 0 15px}.embed-modal .embed-modal__container .embed-modal__html::-moz-focus-inner{border:0}.embed-modal .embed-modal__container .embed-modal__html::-moz-focus-inner,.embed-modal .embed-modal__container .embed-modal__html:active,.embed-modal .embed-modal__container .embed-modal__html:focus{outline:0!important}.embed-modal .embed-modal__container .embed-modal__html:focus{background:#3d3d3d}@media screen and (max-width:600px){.embed-modal .embed-modal__container .embed-modal__html{font-size:16px}}.embed-modal .embed-modal__container .embed-modal__iframe{width:400px;max-width:100%;overflow:hidden;border:0}.account__moved-note{padding:14px 10px 16px;background:#3d3d3d;border-top:1px solid #474747;border-bottom:1px solid #474747}.account__moved-note__message{position:relative;margin-left:58px;color:#757575;padding:0 0 4px;font-size:14px}.account__moved-note__message>span{display:block;overflow:hidden;text-overflow:ellipsis}.account__moved-note__icon-wrapper{left:-26px;position:absolute}.account__moved-note .detailed-status__display-avatar{position:relative}.account__moved-note .detailed-status__display-name{margin-bottom:0}.column-inline-form{padding:7px 5px 7px 15px;display:flex;justify-content:flex-start;align-items:center;background:#3d3d3d}.column-inline-form label{flex:1 1 auto}.column-inline-form label input{width:100%;margin-bottom:6px}.column-inline-form label input:focus{outline:0}.column-inline-form .icon-button{flex:0 0 auto;margin:0 5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.list-editor{flex-direction:column;width:100%;overflow:hidden;height:100%;overflow-y:scroll}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#545454;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__inner{border-radius:0 0 8px 8px}.list-editor .drawer__inner.backdrop{width:calc(100% - 60px);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:0 0 0 8px}.list-editor__accounts{background:#545454;overflow-y:auto;max-height:200px}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{display:flex;flex-direction:row;margin:10px 0}.list-editor .search>label{flex:1 1}.list-editor .search>.search__icon .fa{right:102px!important}.list-editor .search>.button{width:80px;margin-left:10px}.list-adder{flex-direction:column;width:100%;overflow:hidden;height:100%;overflow-y:scroll}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#545454;border-radius:4px}.list-adder__lists{background:#545454}.list-adder .list{padding:4px;border-bottom:1px solid #474747}.list-adder .list__wrapper{display:flex}.list-adder .list__wrapper .account__relationship{padding:8px 5px 0}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.edit-list-form__btn,.new-list-form__btn{margin-left:6px;width:112px}.edit-list-form__input,.new-list-form__input{height:36px}.focal-point-modal{max-width:80vw;max-height:80vh;position:relative}.focal-point{position:relative;cursor:pointer;overflow:hidden}.focal-point.dragging{cursor:move}.focal-point img{max-width:80vw;max-height:80vh;width:auto;height:auto;margin:auto}.focal-point__reticle{position:absolute;width:100px;height:100px;transform:translate(-50%,-50%);background:url(/legacy/images/reticle-6490ecbb61185e86e62dca0845cf2dcf.png) no-repeat 0 0;border-radius:50%;box-shadow:0 0 0 9999em rgba(0,0,0,.35)}.focal-point__overlay{position:absolute;width:100%;height:100%;top:0;left:0}.account__header__content{color:#999;font-size:14px;font-weight:400;overflow:hidden;word-break:normal;word-wrap:break-word}.account__header__content p{margin-bottom:20px}.account__header__content p:last-child{margin-bottom:0}.account__header__content a{color:inherit;text-decoration:underline}.account__header__content a:hover{text-decoration:none}.trends__header{color:#757575;background:#383838;border-bottom:1px solid #292929;font-weight:500;padding:15px;font-size:16px;cursor:default}.trends__header .fa{display:inline-block;margin-right:5px}.trends__item{display:flex;align-items:center;padding:15px;border-bottom:1px solid #474747}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#757575;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name span{text-decoration:none}.trends__item__name strong{color:#fff;font-weight:600;text-decoration:none}.trends__item__name a{color:#999;text-decoration:none;font-size:16px;font-weight:500;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name a:active span,.trends__item__name a:focus span,.trends__item__name a:hover span{text-decoration:underline}.trends__item__current{flex:0 0 auto;width:100px;font-size:24px;line-height:36px;font-weight:500;text-align:center;color:#666}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#31de89!important}.layout-toggle{display:flex;padding:5px}.layout-toggle button{box-sizing:border-box;flex:0 0 50%;background:0 0;padding:5px;border:0;position:relative}.layout-toggle button:active svg path:first-child,.layout-toggle button:focus svg path:first-child,.layout-toggle button:hover svg path:first-child{fill:#5c5c5c}.layout-toggle svg{width:100%;height:auto}.layout-toggle svg path:first-child{fill:#525252}.layout-toggle svg path:last-child{fill:#0f0f0f}.layout-toggle__active{color:#21cf7a;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:#525252;border-radius:50%;padding:.35rem}.wtf-panel{display:flex;width:100%;border-radius:10px;flex-direction:column;height:auto;box-sizing:border-box;background:#222}body.theme-gabsocial-light .wtf-panel{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.wtf-panel:not(:last-of-type){margin-bottom:10px}.wtf-panel .wtf-panel-header{display:flex;align-items:baseline;margin-bottom:10px;padding:15px 15px 0}.wtf-panel .wtf-panel-header__icon{margin-right:10px}.wtf-panel .wtf-panel-header__label{flex:1 1;color:#fff;font-size:16px;font-weight:700;line-height:19px}.wtf-panel__content{width:100%;padding-top:8px}.wtf-panel__list{padding:0 5px}.wtf-panel__subtitle{display:block;padding:0 15px;color:#666}.wtf-panel__form{display:block;padding:15px}.wtf-panel__form.button{width:100%}.wtf-panel .wtf-panel-list-item{display:block;padding-bottom:10px}.wtf-panel .wtf-panel-list-item:not(:first-of-type){margin-top:12px}.wtf-panel .wtf-panel-list-item:not(:last-of-type){border-bottom:1px solid #474747}.wtf-panel .wtf-panel-list-item__content{display:flex;flex-direction:row;min-height:46px;margin-left:58px}.wtf-panel .wtf-panel-list-item__account-block{display:flex;position:relative;align-items:baseline;padding-right:10px}.wtf-panel .wtf-panel-list-item__account-block__avatar{height:46px;width:46px;background-color:red;left:-58px;position:absolute}.wtf-panel .wtf-panel-list-item__account-block__name{display:flex;flex-wrap:wrap;flex-direction:column;margin-top:6px}.wtf-panel .wtf-panel-list-item__account-block__name__name{color:#fff;font-size:14px;font-weight:700;line-height:16px;margin-bottom:2px;max-height:32px;overflow:hidden}.wtf-panel .wtf-panel-list-item__account-block__name__username{color:#757575;font-size:12px;line-height:14px}.wtf-panel .wtf-panel-list-item__follow-block{margin-left:auto;padding-top:6px}.wtf-panel .wtf-panel-list-item__follow-block__button{display:flex}.wtf-panel .wtf-panel-list-item__follow-block__icon{color:#fff}.verified-icon{display:inline-block;margin:0 4px 0 1px;vertical-align:top;position:relative;width:15px;height:15px}.verified-icon:before{display:block;content:"";position:absolute;background-color:#00a3ed;top:0;right:0;left:0;bottom:0;border-radius:50%}.verified-icon:after{display:block;position:absolute;content:"";font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#fff;font-size:.6em;line-height:15px;width:15px;height:15px;text-align:center}.compose-modal{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px;flex-direction:column;width:600px;margin:10px 0}.compose-modal__header{display:block;position:relative;border-bottom:1px solid #474747;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.compose-modal__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#f2f3f6;text-align:center}.compose-modal__close{position:absolute;right:10px;top:10px}.compose-modal__content{display:flex;flex-direction:row;flex:1;padding:10px;overflow-y:hidden}.compose-modal__content--scroll{display:block;overflow-y:scroll}.compose-modal__content .timeline-compose-block{background:0 0!important;width:100%;padding:10px 5px;margin-bottom:0}.compose-modal__content .timeline-compose-block .compose-form{max-height:100%;display:flex;flex-direction:column;padding:0!important}.compose-modal__content .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{max-height:160px!important}.compose-modal__content .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper:before{content:none!important}@media screen and (max-width:895px){.compose-modal{margin:0;border-radius:0;height:100vh;width:100vw}}.account-timeline__header{display:block;width:100%}.profile-info-panel{display:flex;position:relative}.profile-info-panel__content{display:flex;flex-direction:column;flex:1 1}@media(min-width:895px){.profile-info-panel__content{padding-top:60px}}.profile-info-panel .profile-info-panel-content{display:flex}.profile-info-panel .profile-info-panel-content__badges{display:flex;margin:5px 0;flex-direction:row;flex-wrap:wrap}.profile-info-panel .profile-info-panel-content__badges__join-date{display:block;margin-top:5px}.profile-info-panel .profile-info-panel-content__badges__join-date .fa{margin-right:8px}.profile-info-panel .profile-info-panel-content__badges__join-date span{color:#fff;font-size:15px;line-height:1.25}body.theme-gabsocial-light .profile-info-panel .profile-info-panel-content__badges__join-date span{color:#6c6c6c}.profile-info-panel .profile-info-panel-content__name{display:block}.profile-info-panel .profile-info-panel-content__name .account-role{vertical-align:top}.profile-info-panel .profile-info-panel-content__name .emojione{width:22px;height:22px}.profile-info-panel .profile-info-panel-content__name .emojione[alt=":verified:"]{display:none}.profile-info-panel .profile-info-panel-content__name h1 span:first-of-type{font-size:20px!important;line-height:1.25;color:#fff;font-weight:600!important;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}body.theme-gabsocial-light .profile-info-panel .profile-info-panel-content__name h1 span:first-of-type{color:#6c6c6c}.profile-info-panel .profile-info-panel-content__name h1 small{display:block;font-size:16px;line-height:1.5;color:#666;font-weight:400;overflow:hidden;text-overflow:ellipsis}.profile-info-panel .profile-info-panel-content__bio{display:block;flex:1 1;color:#fff;margin:15px 0;font-size:15px;line-height:1.25}.profile-info-panel .profile-info-panel-content__bio a{color:#39df8e}.profile-info-panel .profile-info-panel-content__fields{display:flex;flex-direction:column;border-top:1px solid #525252;padding:10px 0;margin:5px 0}@media screen and (max-width:895px){.profile-info-panel .profile-info-panel-content__fields{border-bottom:1px solid #525252}}.profile-info-panel .profile-info-panel-content__fields a{color:#39df8e}.profile-info-panel .profile-info-panel-content__fields dl:first-child .verified{border-radius:0 4px 0 0}.profile-info-panel .profile-info-panel-content__fields .verified a{color:#79bd9a}.profile-info-panel .profile-info-panel-content__fields__item{display:flex;padding:2px 0;margin:2px 0;flex:1 1}.profile-info-panel .profile-info-panel-content__fields__item *{font-size:15px;line-height:24px}.profile-info-panel .profile-info-panel-content__fields__item dt{min-width:26px}.profile-info-panel .profile-info-panel-content__fields__item dd{padding-left:4px}.unauthorized-modal{width:440px!important}.unauthorized-modal__content{display:flex;width:100%;height:150px;justify-content:center;align-items:center;flex-direction:column}.unauthorized-modal .unauthorized-modal-content__text{display:block;margin-bottom:18px;color:#fff;font-size:14px}.unauthorized-modal .unauthorized-modal-content__button{width:200px}.unauthorized-modal__footer{display:flex;border-top:1px solid #666;padding:10px;justify-content:center;align-items:center}.unauthorized-modal__footer>span{font-size:14px;color:#666}.unauthorized-modal__footer>span a{color:#21cf7a!important}@media screen and (max-width:895px){.unauthorized-modal{height:270px!important;width:330px!important}}.error-boundary>div{margin:auto}.error-boundary>div span{display:block;text-align:center;color:#666}.error-boundary>div a{display:block;margin:15px auto;text-align:center;color:#21cf7a}.search-header{display:block;width:100%}.search-header__text-container{display:none;padding:25px 0;background-color:#424242}@media(min-width:895px){.search-header__text-container{display:block}}.search-header__title-text{color:#fff;font-size:27px;font-weight:700;line-height:32px;overflow:hidden;padding-left:20px;text-overflow:ellipsis;white-space:nowrap;max-width:1200px;margin:0 auto;height:32px}.search-header__type-filters-tabs{display:flex;width:100%;max-width:1200px;margin:0 auto}@media screen and (max-width:895px){.search-header__type-filters-tabs{max-width:580px}}@media(min-width:895px)and (max-width:1190px){.search-header__title-text,.search-header__type-filters-tabs{max-width:900px}}.timeline-queue-header{display:block;width:100%;max-height:46px;position:relative;background-color:#1f1f1f;border-bottom:1px solid #292929;border-color:#292929 currentcolor;border-top:1px solid #292929;transition:max-height .15s ease;overflow:hidden}.timeline-queue-header.hidden{max-height:0}.timeline-queue-header__btn{display:block;width:100%;height:100%;text-align:center;line-height:46px;font-size:14px;cursor:pointer;color:#666}.timeline-queue-header__btn span{height:46px}.badge{font-size:12px;text-transform:uppercase;padding:2px 6px;border-radius:2px;margin:0 5px 5px 0}.badge--pro{background-color:#8a2be2;color:#fff}.badge--investor{background-color:gold;color:#000}.badge--donor{background-color:#90ee90;color:#000}.schedule-post-dropdown{display:flex;align-items:center}.schedule-post-dropdown .react-datepicker-popper{z-index:1000}.schedule-post-dropdown .react-datepicker__day--selected,.schedule-post-dropdown li.react-datepicker__time-list-item--selected{background-color:#21cf7a!important}.pro-upgrade-modal__content{overflow-y:scroll!important}.pro-upgrade-modal__text{display:flex;text-align:center;padding:10px 0 15px;flex-direction:column;margin-bottom:10px}.pro-upgrade-modal__list{display:block;margin-bottom:25px;width:100%;background-color:#4d4d4d;text-align:center;padding:20px 0}.pro-upgrade-modal__button{width:100%}.pro-upgrade-modal__button .fa{margin-right:10px}.schedule-post-dropdown-wrapper{margin-left:4px;border-radius:4px;border:1px solid #ccc;line-height:22px;padding-left:6px;text-align:left;width:145px;height:26px;font-size:11px;color:#333;background:#fff}@media(max-width:580px){.schedule-post-dropdown-wrapper{width:124px;font-size:10px;padding-left:2px;margin-left:2px}}.sidebar-menu .progress-panel{padding-left:12px;padding-right:12px}.progress-panel{background:0 0!important;background-color:transparent!important;box-shadow:none!important;margin-top:15px}.progress-panel .progress-panel-header{padding:5px;margin-bottom:0}.progress-panel__content{display:block;padding:0 5px;box-sizing:border-box}.progress-panel__text{display:block;margin-bottom:5px;font-size:14px;color:#999}.progress-panel__bar-container{border-radius:12px;overflow:hidden;position:relative;background-color:#555;margin-top:15px;margin-bottom:15px}.progress-panel__bar,.progress-panel__bar-container{display:block;width:100%;box-sizing:border-box;height:22px}.progress-panel__bar{background-color:#32a269;border-radius:10px;margin:-1px}.progress-panel__bar__text{display:block;position:absolute;top:0;left:0;right:0;text-align:center;font-size:14px;line-height:22px;font-weight:600;color:#fff}.chat-button{width:36px!important;height:36px!important;padding:0!important;box-sizing:border-box;color:#fff}a.button.standard-small,button.standard-small{height:20px;padding:5px 15px;border:none;border-radius:4px;font-size:11px;font-size:1.1rem;line-height:11px;line-height:1.1rem;font-weight:700;text-transform:uppercase;color:#fff;background:#607cf5}input[type=text].standard,textarea.standard{box-sizing:border-box;padding:7px 10px;border-radius:4px;font-size:16px;font-size:1.6rem;line-height:18px;line-height:1.8rem;color:#21cf7a;border:1px solid #666;background:#222}input[type=text].standard::-webkit-input-placeholder,textarea.standard::-webkit-input-placeholder{color:#666}input[type=text].standard::-moz-placeholder,textarea.standard::-moz-placeholder{color:#666}input[type=text].standard:-ms-input-placeholder,textarea.standard:-ms-input-placeholder{color:#666}input[type=text].standard:-moz-placeholder,textarea.standard:-moz-placeholder{color:#666}body.theme-gabsocial-light input[type=text].standard,body.theme-gabsocial-light textarea.standard{color:#666;border-color:#999;background:#f2f3f6}body.theme-gabsocial-light input[type=text].standard::-webkit-input-placeholder,body.theme-gabsocial-light textarea.standard::-webkit-input-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard::-moz-placeholder,body.theme-gabsocial-light textarea.standard::-moz-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard:-ms-input-placeholder,body.theme-gabsocial-light textarea.standard:-ms-input-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard:-moz-placeholder,body.theme-gabsocial-light textarea.standard:-moz-placeholder{color:#999}input[type=text].standard:focus,textarea.standard:focus{outline:none}textarea.standard{resize:vertical}.tabs-bar{display:flex;box-sizing:border-box;background:#000;flex:0 0 auto;overflow-y:auto;height:50px;position:-webkit-sticky;position:sticky;top:0;z-index:1000;transition:transform .2s ease;overflow:hidden}@media screen and (max-width:895px){.tabs-bar--collapsed{margin-top:-50px;transform:translateY(-50px)}}.tabs-bar__container{display:flex;box-sizing:border-box;width:100%;max-width:1200px;margin:0 auto;padding:0 15px}@media screen and (max-width:375px){.tabs-bar__container{padding:0 10px}}.tabs-bar__split{display:flex;width:auto}.tabs-bar__split--left{margin-right:auto}.tabs-bar__split--right{margin-left:auto;padding-top:8px}@media screen and (max-width:450px){.tabs-bar__split--right{padding-top:4px}}.tabs-bar__search-container{display:block;width:251px}@media screen and (max-width:1024px){.tabs-bar__search-container{display:none}}.tabs-bar__profile{position:relative;overflow:hidden;margin:0 0 0 20px;height:34px;width:34px}@media screen and (max-width:450px){.tabs-bar__profile{height:42px;width:42px;margin:0}}.tabs-bar__profile .account__avatar{width:34px;height:34px;background-size:34px 34px}@media screen and (max-width:450px){.tabs-bar__profile .account__avatar{width:42px;height:42px;background-size:42px 42px}}@media screen and (max-width:895px){.tabs-bar__profile,.tabs-bar__profile .account__avatar{width:30px;height:30px;background-size:30px 30px}}.tabs-bar__profile .compose__action-bar{display:block;position:absolute;top:0;right:0;left:-5px;bottom:0}.tabs-bar__profile .compose__action-bar i{display:none}@media screen and (max-width:895px){.tabs-bar__profile .compose__action-bar{display:none}}.tabs-bar__sidebar-btn{display:block;position:absolute;top:0;right:0;left:0;bottom:0;width:30px;opacity:0}@media(min-width:895px){.tabs-bar__sidebar-btn{display:none}}.tabs-bar__page-name{display:block;margin-left:18px;line-height:30px;font-weight:600;font-size:18px;color:#fff}@media(min-width:895px){.tabs-bar__page-name{display:none}}.tabs-bar__button-compose{display:block;width:70px;height:34px;margin-left:20px;border-radius:4px;background-image:url(/legacy/images/sprite-main-navigation-adf3dd71f4d17d0c548676ef4da8544c.png);background-color:#21cf7a!important;background-repeat:no-repeat;background-size:161px 152px;background-position:18px 2px}@media screen and (max-width:450px){.tabs-bar__button-compose{display:none}}.tabs-bar__button-compose:hover{background-color:#2cdd87!important;background-position:18px -98px;box-shadow:inset 0 0 6px #1aa360}.tabs-bar__button-compose span{display:none}.tabs-bar__button{margin-left:12px;height:34px}.tabs-bar .flex{display:flex}.tabs-bar__search-btn{display:none;margin-left:auto}.tabs-bar__search-btn .tabs-bar__link__icon--search{display:block;height:32px;width:32px;background-position:-995px 5px!important}.tabs-bar__search-btn>span{display:none}@media(max-width:895px){.tabs-bar__button-compose,.tabs-bar__search-container{display:none}.tabs-bar__profile{margin:0}.tabs-bar__split{flex-direction:row;align-items:stretch}.tabs-bar__split--left{margin:0;width:80px}.tabs-bar__split--right{padding:8px 0 6px 20px}.tabs-bar__link{display:none!important}.tabs-bar__link--logo{display:flex!important}.tabs-bar.logged-in .tabs-bar__split--left{display:none!important}.tabs-bar.logged-in .tabs-bar__split--right{padding-top:10px;margin-left:0!important;width:100%!important}.tabs-bar.logged-in .tabs-bar__split--right .flex{width:100%}.tabs-bar.logged-in .tabs-bar__search-btn{display:block}}.tabs-bar__link{display:flex;flex:1 1 auto;margin:0 20px 0 0;color:#fff;text-decoration:none}@media screen and (max-width:895px){.tabs-bar__link{width:36px;height:42px;margin:4px 4px 0 0;justify-content:center}.tabs-bar__link.active{border-bottom:2px solid #21cf7a}.tabs-bar__link>span{display:none}}.tabs-bar__link>span{font-size:15px;line-height:50px;margin-left:4px}@media(min-width:1024px){.tabs-bar__link--search{display:none}}@media screen and (max-width:895px){.tabs-bar__link.apps{display:none}}.tabs-bar__link__icon{width:20px;background-repeat:no-repeat;background-image:url(/legacy/images/sprite-main-navigation-links-c3f303b6d9dc7a3ba479c40563a707ae.png);background-size:auto 84px}.tabs-bar__link__icon.chat{font-size:25px;padding-top:7px;width:24px;color:#c8c8c8;background-image:none!important}.tabs-bar__link__icon.chat--sm{font-size:20px!important;width:24px!important;padding-top:14px!important}@media screen and (max-width:895px){.tabs-bar__link__icon{width:32px;background-size:auto 120px}}.tabs-bar__link__icon.home{background-position:0 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.home{background-position:1px 11px}}.tabs-bar__link__icon.notifications{background-position:-140px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.notifications{background-position:-195px 11px}}.tabs-bar__link__icon.groups{background-position:-280px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.groups{background-position:-400px 11px}}.tabs-bar__link__icon.apps{background-position:-825px 18px}.tabs-bar__link__icon.trends{background-position:-850px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.trends{background-position:-1208px 8px}}.tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-697px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-995px 11px}}.tabs-bar__link.active{color:#21cf7a;font-weight:700}.tabs-bar__link.active .tabs-bar__link__icon.home{background-position:0 -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.home{background-position:1px -89px}}.tabs-bar__link.active .tabs-bar__link__icon.notifications{background-position:-140px -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.notifications{background-position:-195px -89px}}.tabs-bar__link.active .tabs-bar__link__icon.groups{background-position:-280px -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.groups{background-position:-400px -89px}}@media(min-width:895px)and (max-width:1024px){.tabs-bar__link.active .tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-697px -52px}}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-995px -89px}}.tabs-bar__link--logo{display:block;width:50px;height:50px;margin-right:28px;border:none;background-image:url(/legacy/images/gab_logo-27b9e62c4655322034140e1f84e13df1.svg);background-repeat:no-repeat;background-position:0 10px;background-size:50px 30px}@media screen and (max-width:895px){.tabs-bar__link--logo{display:none}}.tabs-bar__link--logo span{display:none!important}.tabs-bar__link--logo:hover{background-color:#000!important;border:none!important}.tabs-bar__link--no-highlight,.tabs-bar__link--no-highlight.active,.tabs-bar__link--no-highlight:active,.tabs-bar__link--no-highlight:focus,.tabs-bar__link--no-highlight:hover{background:0 0!important;border-bottom-color:transparent!important}.dropdown-menu{z-index:9999;position:absolute;background:#222;border-radius:4px;border:1px solid #666;padding:4px 0;font-size:13px;font-size:1.3rem;line-height:26px;line-height:2.6rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.dropdown-menu.left{transform-origin:100% 50%}.dropdown-menu.top{transform-origin:50% 100%}.dropdown-menu.bottom{transform-origin:50% 0}.dropdown-menu.right{transform-origin:0 50%}.dropdown-menu__arrow{position:absolute;width:0;height:0;border:0 solid transparent}.dropdown-menu__arrow.left{right:-5px;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#666}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-5px;border-width:5px 5px 0;border-top-color:#666}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#666}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#666}.dropdown-menu ul{overflow:hidden;padding:6px 0}.dropdown-menu__item a{display:block;box-sizing:border-box;overflow:hidden;padding:3px 10px 1px;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;text-transform:capitalize;color:#999}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{outline:0;color:#21cf7a;background:#333!important;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.dropdown-menu__separator{display:block;margin:10px!important;height:1px;background:#333}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown--active .dropdown__content{display:block;line-height:18px;max-width:311px;right:0;text-align:left;z-index:9999}.dropdown--active .dropdown__content>ul{list-style:none;background:#666;padding:4px 0;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.4);min-width:140px;position:relative}.dropdown--active .dropdown__content.dropdown__right{right:0}.dropdown--active .dropdown__content.dropdown__left>ul{left:-98px}.dropdown--active .dropdown__content>ul>li>a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#666;color:#333;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown--active .dropdown__content>ul>li>a:focus{outline:0}.dropdown--active .dropdown__content>ul>li>a:hover{background:#21cf7a;color:#666}.dropdown__icon{vertical-align:middle}.modal-root{position:relative;transition:opacity .3s linear;will-change:opacity;z-index:9999}.modal-root__overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7)}.modal-root__container{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;align-content:space-around;z-index:9999;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.modal-root__modal{pointer-events:auto;display:flex;z-index:9999;max-height:100%;overflow-y:hidden}.video-modal{max-width:100vw;max-height:100vh;position:relative}.media-modal{width:100%;height:100%;position:relative}.media-modal .extended-video-player{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.media-modal .extended-video-player video{max-width:100%;max-height:80%}.media-modal__closer,.media-modal__navigation{position:absolute;top:0;left:0;right:0;bottom:0}.media-modal__navigation{pointer-events:none;transition:opacity .3s linear;will-change:opacity}.media-modal__navigation *{pointer-events:auto}.media-modal__navigation.media-modal__navigation--hidden{opacity:0}.media-modal__navigation.media-modal__navigation--hidden *{pointer-events:none}.media-modal__nav{background:rgba(0,0,0,.5);box-sizing:border-box;border:0;color:#fff;cursor:pointer;display:flex;align-items:center;font-size:24px;height:20vmax;margin:auto 0;padding:30px 15px;position:absolute;top:0;bottom:0}.media-modal__nav--left{left:0}.media-modal__nav--right{right:0}.media-modal__meta,.media-modal__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.media-modal__meta--shifted{bottom:62px}.media-modal__meta a{text-decoration:none;font-weight:500;color:#666}.media-modal__meta a:active,.media-modal__meta a:focus,.media-modal__meta a:hover{text-decoration:underline}.media-modal__page-dot{display:inline-block}.media-modal__button{background-color:#fff;height:12px;width:12px;border-radius:6px;margin:10px;padding:0;border:0;font-size:0}.media-modal__button--active{background-color:#21cf7a}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#666;color:#333;border-radius:8px;overflow:hidden;display:flex;flex-direction:column}.error-modal__body{height:80vh;width:80vw;max-width:520px;max-height:420px;position:relative}.error-modal__body>div{position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;padding:25px;display:none;display:flex;opacity:0;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.error-modal__body,.error-modal__body>div{flex-direction:column;align-items:center;justify-content:center}.error-modal__body{display:flex;text-align:center}.error-modal__footer,.onboarding-modal__paginator{flex:0 0 auto;background:#525252;display:flex;padding:25px}.error-modal__footer>div,.onboarding-modal__paginator>div{min-width:33px}.error-modal__footer .error-modal__nav,.error-modal__footer .onboarding-modal__nav,.onboarding-modal__paginator .error-modal__nav,.onboarding-modal__paginator .onboarding-modal__nav{color:#757575;border:0;font-size:14px;font-weight:500;padding:10px 25px;line-height:inherit;height:auto;margin:-10px;border-radius:4px;background-color:transparent}.error-modal__footer .error-modal__nav:active,.error-modal__footer .error-modal__nav:focus,.error-modal__footer .error-modal__nav:hover,.error-modal__footer .onboarding-modal__nav:active,.error-modal__footer .onboarding-modal__nav:focus,.error-modal__footer .onboarding-modal__nav:hover,.onboarding-modal__paginator .error-modal__nav:active,.onboarding-modal__paginator .error-modal__nav:focus,.onboarding-modal__paginator .error-modal__nav:hover,.onboarding-modal__paginator .onboarding-modal__nav:active,.onboarding-modal__paginator .onboarding-modal__nav:focus,.onboarding-modal__paginator .onboarding-modal__nav:hover{color:#6b6b6b;background-color:#3d3d3d}.error-modal__footer .error-modal__nav.onboarding-modal__done,.error-modal__footer .error-modal__nav.onboarding-modal__next,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next{color:#333}.error-modal__footer .error-modal__nav.onboarding-modal__done:active,.error-modal__footer .error-modal__nav.onboarding-modal__done:focus,.error-modal__footer .error-modal__nav.onboarding-modal__done:hover,.error-modal__footer .error-modal__nav.onboarding-modal__next:active,.error-modal__footer .error-modal__nav.onboarding-modal__next:focus,.error-modal__footer .error-modal__nav.onboarding-modal__next:hover,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:active,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:focus,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:hover,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:active,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:focus,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:hover,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:active,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:focus,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:hover,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:active,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:focus,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:hover,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:active,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:focus,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:hover,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:active,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:focus,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:hover{color:#3d3d3d}.error-modal__footer{justify-content:center}.display-case{text-align:center;font-size:15px;margin-bottom:15px}.display-case__label{font-weight:500;color:#333;margin-bottom:5px;text-transform:uppercase;font-size:12px}.display-case__case{background:#333;color:#666;font-weight:500;padding:10px;border-radius:4px}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.mute-modal,.report-modal{position:relative;flex-direction:column;overflow:hidden;width:480px;max-width:90vw;border-radius:4px;border:1px solid #666;color:#999;background:#222}body.theme-gabsocial-light .actions-modal,body.theme-gabsocial-light .boost-modal,body.theme-gabsocial-light .confirmation-modal,body.theme-gabsocial-light .mute-modal,body.theme-gabsocial-light .report-modal{color:#6c6c6c}.actions-modal .status__display-name,.boost-modal .status__display-name,.confirmation-modal .status__display-name,.mute-modal .status__display-name,.report-modal .status__display-name{display:block;max-width:100%;padding-right:25px}.actions-modal .status__avatar,.boost-modal .status__avatar,.confirmation-modal .status__avatar,.mute-modal .status__avatar,.report-modal .status__avatar{height:28px;left:10px;position:absolute;top:10px;width:48px}.actions-modal .status__content__spoiler-link,.boost-modal .status__content__spoiler-link,.confirmation-modal .status__content__spoiler-link,.mute-modal .status__content__spoiler-link,.report-modal .status__content__spoiler-link{color:#7a7a7a}.actions-modal .status{background:#fff;border-bottom-color:#666;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator{display:block;margin:10px;height:1px;background:#333}.boost-modal__container{overflow-x:scroll;padding:10px}.boost-modal__container .status{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;border-bottom:0}.boost-modal__action-bar,.confirmation-modal__action-bar,.mute-modal__action-bar{display:flex;justify-content:space-between;background:#666;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div,.mute-modal__action-bar>div{flex:1 1 auto;text-align:right;color:#757575;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button,.mute-modal__action-bar .button{flex:0 0 auto}.boost-modal__status-header{font-size:15px}.boost-modal__status-time{float:right;font-size:14px}.mute-modal{line-height:24px}.mute-modal .react-toggle{vertical-align:middle}.report-modal{width:90vw;max-width:700px}.report-modal__container{display:flex;border-top:1px solid #666}@media screen and (max-width:480px){.report-modal__container{flex-wrap:wrap;overflow-y:auto}}.report-modal__comment,.report-modal__statuses{box-sizing:border-box;width:50%}@media screen and (max-width:480px){.report-modal__comment,.report-modal__statuses{width:100%}}.report-modal__statuses{flex:1 1 auto;min-height:20vh;max-height:80vh;overflow-y:auto;overflow-x:hidden}.report-modal__statuses .status__content a{color:#21cf7a}.report-modal__statuses .status__content,.report-modal__statuses .status__content p{color:#999}body.theme-gabsocial-light .report-modal__statuses .status__content,body.theme-gabsocial-light .report-modal__statuses .status__content p{color:#6c6c6c}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #666;max-width:320px}.report-modal__comment p{font-size:14px;line-height:20px;margin-bottom:20px}.report-modal__comment .setting-text{display:block;box-sizing:border-box;width:100%;color:#333;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;outline:0;border-radius:4px;border:1px solid #666;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #525252}.report-modal__comment .setting-toggle{margin-top:20px;margin-bottom:24px}.report-modal__comment .setting-toggle__label{color:#333;font-size:14px}@media screen and (max-width:480px){.report-modal__comment{padding:10px;max-width:100%;order:2}.report-modal__comment .setting-toggle{margin-bottom:4px}}.actions-modal{width:calc(100% - 72px);margin:35px}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;flex-shrink:0;max-height:calc(100vh - 147px)}.actions-modal ul.with-status{max-height:calc(80vh - 75px)}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty):first-of-type{margin:10px 0 0}.actions-modal ul li:not(:empty):last-of-type{margin:0 0 10px}.actions-modal ul li:not(:empty) a{display:flex;align-items:center;padding:13px 10px 12px;@inclide font-size(14);color:#999;text-decoration:none}.actions-modal ul li:not(:empty) a,.actions-modal ul li:not(:empty) a button{transition:none}.actions-modal ul li:not(:empty) a.active,.actions-modal ul li:not(:empty) a.active button,.actions-modal ul li:not(:empty) a:active,.actions-modal ul li:not(:empty) a:active button,.actions-modal ul li:not(:empty) a:focus,.actions-modal ul li:not(:empty) a:focus button,.actions-modal ul li:not(:empty) a:hover,.actions-modal ul li:not(:empty) a:hover button{background:#333;color:#21cf7a;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.actions-modal ul li:not(:empty) a button:first-child{margin-right:10px}.confirmation-modal__action-bar .confirmation-modal__cancel-button,.confirmation-modal__action-bar .confirmation-modal__secondary-button,.confirmation-modal__action-bar .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__secondary-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#757575;font-size:14px;font-weight:500}.confirmation-modal__action-bar .confirmation-modal__cancel-button:active,.confirmation-modal__action-bar .confirmation-modal__cancel-button:focus,.confirmation-modal__action-bar .confirmation-modal__cancel-button:hover,.confirmation-modal__action-bar .confirmation-modal__secondary-button:active,.confirmation-modal__action-bar .confirmation-modal__secondary-button:focus,.confirmation-modal__action-bar .confirmation-modal__secondary-button:hover,.confirmation-modal__action-bar .mute-modal__cancel-button:active,.confirmation-modal__action-bar .mute-modal__cancel-button:focus,.confirmation-modal__action-bar .mute-modal__cancel-button:hover,.mute-modal__action-bar .confirmation-modal__cancel-button:active,.mute-modal__action-bar .confirmation-modal__cancel-button:focus,.mute-modal__action-bar .confirmation-modal__cancel-button:hover,.mute-modal__action-bar .confirmation-modal__secondary-button:active,.mute-modal__action-bar .confirmation-modal__secondary-button:focus,.mute-modal__action-bar .confirmation-modal__secondary-button:hover,.mute-modal__action-bar .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#6b6b6b}.confirmation-modal__action-bar .confirmation-modal__secondary-button,.mute-modal__action-bar .confirmation-modal__secondary-button{flex-shrink:1}.confirmation-modal__container,.mute-modal__container,.report-modal__target{padding:30px;font-size:16px;text-align:center}.confirmation-modal__container strong,.mute-modal__container strong,.report-modal__target strong{font-weight:500}.confirmation-modal__container strong:lang(ja),.confirmation-modal__container strong:lang(ko),.confirmation-modal__container strong:lang(zh-cn),.confirmation-modal__container strong:lang(zh-hk),.confirmation-modal__container strong:lang(zh-tw),.mute-modal__container strong:lang(ja),.mute-modal__container strong:lang(ko),.mute-modal__container strong:lang(zh-cn),.mute-modal__container strong:lang(zh-hk),.mute-modal__container strong:lang(zh-tw),.report-modal__target strong:lang(ja),.report-modal__target strong:lang(ko),.report-modal__target strong:lang(zh-cn),.report-modal__target strong:lang(zh-hk),.report-modal__target strong:lang(zh-tw){font-weight:700}.report-modal__target{padding:20px}.report-modal__target .media-modal__close{top:19px;right:15px}.modal-layout{background:#333 url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMzQuODAwNzggMzEuNzU3ODEzIiB3aWR0aD0iMjM0LjgwMDc4IiBoZWlnaHQ9IjMxLjc1NzgxMiI+PHBhdGggZD0iTTE5LjU5OTYwOSAwYy0xLjA1IDAtMi4xMDAzOS4zNzUtMi45MDAzOSAxLjEyNUwwIDE2LjkyNTc4MXYxNC44MzIwMzFoMjM0LjgwMDc4VjE3LjAyNTM5MWwtMTYuNS0xNS45MDAzOTFjLTEuNi0xLjUtNC4yMDA3OC0xLjUtNS44MDA3OCAwbC0xMy44MDA3OCAxMy4wOTk2MDljLTEuNiAxLjUtNC4xOTg4MyAxLjUtNS43OTg4MyAwTDE3OS4wOTk2MSAxLjEyNWMtMS42LTEuNS00LjE5ODgzLTEuNS01Ljc5ODgzIDBMMTU5LjUgMTQuMjI0NjA5Yy0xLjYgMS41LTQuMjAwNzggMS41LTUuODAwNzggMEwxMzkuOTAwMzkgMS4xMjVjLTEuNi0xLjUtNC4yMDA3OC0xLjUtNS44MDA3OCAwbC0xMy43OTg4MyAxMy4wOTk2MDljLTEuNiAxLjUtNC4yMDA3OCAxLjUtNS44MDA3OCAwTDEwMC42OTkyMiAxLjEyNWMtMS42MDAwMDEtMS41LTQuMTk4ODI5LTEuNS01Ljc5ODgyOSAwbC0xMy41OTk2MSAxMy4wOTk2MDljLTEuNiAxLjUtNC4yMDA3ODEgMS41LTUuODAwNzgxIDBMNjEuNjk5MjE5IDEuMTI1Yy0xLjYtMS41LTQuMTk4ODI4LTEuNS01Ljc5ODgyOCAwTDQyLjA5OTYwOSAxNC4yMjQ2MDljLTEuNiAxLjUtNC4xOTg4MjggMS41LTUuNzk4ODI4IDBMMjIuNSAxLjEyNUMyMS43LjM3NSAyMC42NDk2MDkgMCAxOS41OTk2MDkgMHoiIGZpbGw9IiM3NTc1NzUiLz48L3N2Zz4=) repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}@media screen and (max-width:600px){.account-header{margin-top:0}}.account__header.inactive{opacity:.5}.account__header.inactive .account__avatar,.account__header.inactive .account__header__image{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header__info{position:absolute;top:10px;left:10px}.account__header__image{overflow:hidden;height:350px;position:relative;background:#292929}@media screen and (max-width:895px){.account__header__image{height:225px}}.account__header__image--none{height:125px}.account__header__image img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0}.account__header__bar{display:block;min-height:74px;width:100%;position:relative;background:#3d3d3d}@media(min-width:895px){.account__header__bar{height:74px}}.account__header__avatar{display:block;position:absolute;border:5px solid #3d3d3d;left:0;top:-90px;border-radius:50%;height:200px;width:200px;background-color:#1f1f1f}.account__header__avatar .account__avatar{width:200px;height:200px;background-size:200px 200px}@media screen and (max-width:895px){.account__header__avatar{top:-45px;left:10px;height:90px;width:90px}.account__header__avatar .account__avatar{width:90px;height:90px;background-size:90px 90px}}.account__header__extra{display:flex;flex-direction:row;height:100%;margin:0 auto;padding-left:310px;width:100%;max-width:1200px;box-sizing:border-box;position:relative}@media(min-width:895px)and (max-width:1190px){.account__header__extra{max-width:900px;padding-left:300px}}@media screen and (max-width:895px){.account__header__extra{max-width:900px;padding:10px 10px 0;flex-direction:column-reverse;min-height:50px}}.account__header__extra__buttons{display:flex;align-items:center;margin-left:auto}.account__header__extra__buttons .icon-button{border:1px solid #525252;border-radius:4px;box-sizing:content-box;padding:2px}.account__header__extra__buttons .button{margin-right:10px}.account__header__extra__links{display:flex;font-size:14px;color:#999}@media screen and (max-width:895px){.account__header__extra__links{justify-content:center;flex-wrap:wrap}}.account__header__extra__links a{display:inline-block;text-decoration:none;padding:16px 22px;text-align:center}@media screen and (max-width:1190px){.account__header__extra__links a{padding:16px}}.account__header__extra__links a>span{display:block}.account__header__extra__links a>span:first-of-type{color:#fff;font-size:20px;font-weight:800;line-height:24px}@media screen and (max-width:895px){.account__header__extra__links a>span:first-of-type{font-size:16px;line-height:20px}}.account__header__extra__links a>span:last-of-type{color:#666;font-size:12px;line-height:14px;padding-top:2px}.account__header__extra__links a.active,.account__header__extra__links a:hover{border-bottom:2px solid #fff}.account__header__extra__links a.score{border-bottom:none!important}@media screen and (max-width:895px){.account__header .account-mobile-container{display:block;background:#3d3d3d;margin-top:10px;position:relative;padding:10px 10px 0}.account__header .account-mobile-container--nonuser{padding:10px 10px 15px}}.user-panel{display:flex;width:265px;flex-direction:column;overflow-y:hidden;border-radius:10px;background:#222}body.theme-gabsocial-light .user-panel{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.user-panel__header{display:block;height:112px;width:100%;background:#2c2c2c}body.theme-gabsocial-light .user-panel__header{background:#f5f5f5}.user-panel__header img{display:block;height:100%;width:100%;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.user-panel__profile{display:flex;align-items:flex-start;padding:0 10px;margin-top:-53px}.user-panel__profile .account__avatar{display:block;width:82px;height:82px;border:6px solid #333;background-size:cover}body.theme-gabsocial-light .user-panel__profile .account__avatar{border:6px solid #f2f3f6}.user-panel__meta{display:block;padding:6px 20px 17px}.user-panel__account a{text-decoration:none;color:#fff}.user-panel__account__name{display:block;font-size:20px;font-weight:700;line-height:24px;color:#fff}body.theme-gabsocial-light .user-panel__account__name{color:#6c6c6c}.user-panel__account:hover .user-panel__account__name{text-decoration:underline}.user-panel__account__username{display:block;font-size:14px;line-height:16px;color:#999;text-decoration:none!important}.user-panel__stats-block{display:flex;justify-content:space-between;padding-top:12px}.user-panel .user-panel-stats-item{display:flex;align-items:start;justify-content:left;flex-wrap:wrap;flex-direction:column}.user-panel .user-panel-stats-item a{text-decoration:none;color:#fff}.user-panel .user-panel-stats-item a:hover{opacity:.8}.user-panel .user-panel-stats-item__value{display:block;width:100%;color:#fff;font-size:20px;font-weight:800;line-height:24px}body.theme-gabsocial-light .user-panel .user-panel-stats-item__value{color:#6c6c6c}.user-panel .user-panel-stats-item__label{display:block;width:100%;color:#999;font-size:12px;line-height:14px}.compose-form{padding:10px}.compose-form__sensitive-button{padding:0 10px 10px;font-size:14px;font-weight:500}.compose-form__sensitive-button.active{color:#21cf7a}.compose-form__sensitive-button input[type=checkbox]{display:none}.compose-form__sensitive-button .checkbox{display:inline-block;position:relative;border:1px solid #333;box-sizing:border-box;width:18px;height:18px;flex:0 0 auto;margin-right:10px;top:-1px;border-radius:4px;vertical-align:middle}.compose-form__sensitive-button .checkbox.active{border-color:#21cf7a;background:#21cf7a}.compose-form .compose-form__warning{color:#333;margin-bottom:10px;background:#333;box-shadow:0 2px 6px rgba(0,0,0,.3);padding:8px 10px;border-radius:4px;font-size:13px;font-weight:400}.compose-form .compose-form__warning strong{color:#333;font-weight:500}.compose-form .compose-form__warning strong:lang(ja),.compose-form .compose-form__warning strong:lang(ko),.compose-form .compose-form__warning strong:lang(zh-cn),.compose-form .compose-form__warning strong:lang(zh-hk),.compose-form .compose-form__warning strong:lang(zh-tw){font-weight:700}.compose-form .compose-form__warning a{color:#757575;font-weight:500;text-decoration:underline}.compose-form .compose-form__warning a:active,.compose-form .compose-form__warning a:focus,.compose-form .compose-form__warning a:hover{text-decoration:none}.compose-form .emoji-picker-dropdown{position:absolute;top:5px;right:5px;z-index:1}.compose-form .autosuggest-input,.compose-form .autosuggest-textarea,.compose-form .compose-form__autosuggest-wrapper,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:36px;margin-bottom:11px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;box-sizing:border-box;width:100%;margin:0;color:#333;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;border:0;outline:0}.compose-form .autosuggest-textarea__textarea:focus,.compose-form .spoiler-input__input:focus{outline:0}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{font-size:16px}}.compose-form .spoiler-input__input{border-radius:4px}.compose-form .autosuggest-textarea__textarea{min-height:100px;border-radius:5px 5px 0 0;padding-bottom:0;padding-right:32px;resize:none;scrollbar-color:auto}.compose-form .autosuggest-textarea__textarea::-webkit-scrollbar{all:unset}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{max-height:100px!important;resize:vertical}}.compose-form.condensed .autosuggest-textarea__textarea{min-height:46px;border-radius:5px}.compose-form .autosuggest-textarea__suggestions-wrapper,.compose-form .emoji-picker-wrapper{position:relative;height:0}.compose-form .autosuggest-textarea__suggestions{box-sizing:border-box;display:none;position:absolute;top:100%;width:100%;z-index:99;box-shadow:4px 4px 6px rgba(0,0,0,.4);background:#666;border-radius:0 0 4px 4px;color:#333;font-size:14px;padding:6px}.compose-form .autosuggest-textarea__suggestions.autosuggest-textarea__suggestions--visible{display:block}.compose-form .autosuggest-textarea__suggestions__item{padding:10px;cursor:pointer;border-radius:4px}.compose-form .autosuggest-textarea__suggestions__item.selected,.compose-form .autosuggest-textarea__suggestions__item:active,.compose-form .autosuggest-textarea__suggestions__item:focus,.compose-form .autosuggest-textarea__suggestions__item:hover{background:#4d4d4d}.compose-form .autosuggest-account,.compose-form .autosuggest-emoji{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;line-height:18px;font-size:14px}.compose-form .autosuggest-account-icon,.compose-form .autosuggest-emoji img{display:block;margin-right:8px;width:16px;height:16px}.compose-form .autosuggest-account .display-name__account{color:#757575}.compose-form .compose-form__modifiers{color:#333;font-family:inherit;font-size:14px;background:#fff}.compose-form .compose-form__modifiers .compose-form__upload-wrapper{overflow:hidden}.compose-form .compose-form__modifiers .compose-form__uploads-wrapper{display:flex;flex-direction:row;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__uploads-wrapper.contains-media{padding:5px;border-top:1px solid #ebebeb}.compose-form .compose-form__modifiers .compose-form__upload{margin:5px;width:calc(50% - 10px);height:135px}@media(min-width:895px){.compose-form .compose-form__modifiers .compose-form__upload{width:222px;height:180px}}@media(min-width:607px)and (max-width:895px){.compose-form .compose-form__modifiers .compose-form__upload{width:210px;height:210px}}.compose-form .compose-form__modifiers .compose-form__upload__actions{background:linear-gradient(180deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);display:flex;align-items:flex-start;justify-content:space-between;opacity:0;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{flex:0 1 auto;color:#999;font-size:14px;font-weight:500;padding:10px;font-family:inherit}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:active,.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:focus,.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:hover{color:#21cf7a}.compose-form .compose-form__modifiers .compose-form__upload__actions.active{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description{position:absolute;z-index:2;bottom:0;left:0;right:0;box-sizing:border-box;background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);padding:10px;opacity:0;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload-description textarea{background:rgba(0,0,0,.3);box-sizing:border-box;background:0 0;color:#999;border:1px solid #999;outline:none;padding:10px;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description textarea:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-webkit-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-moz-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea:-ms-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-ms-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description.active{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-thumbnail{border-radius:4px;background-position:50%;background-size:cover;background-repeat:no-repeat;height:100%;width:100%;overflow:hidden}.compose-form .compose-form__buttons-wrapper{padding:10px;background:#ebebeb;border-radius:0 0 4px 4px;display:flex;justify-content:space-between;flex:0 0 auto}.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:flex;flex-wrap:wrap}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__upload-button-icon{line-height:27px}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button{display:none}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button.compose-form__sensitive-button--visible{display:block}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button .compose-form__sensitive-button__icon{line-height:27px}.compose-form .compose-form__buttons-wrapper .icon-button{box-sizing:content-box;padding:0 3px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper{align-self:center;margin-right:4px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter{cursor:default;font-family:gabsocial-font-sans-serif,sans-serif;font-size:14px;font-weight:600;color:#999}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter.character-counter--over{color:#ff5050}.compose-form .compose-form__publish{display:flex;justify-content:flex-end;min-width:0;flex:0 0 auto}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.compose-form__quote-preview{font-size:14px;padding:5px 10px 0;background:#ebebeb;border-bottom:1px solid #c7c7c7;color:#555}.compose-form__quote-preview .status__content{font-size:.9em;color:#555;max-height:100px;overflow-y:auto}.group-column-header{overflow:hidden;border-radius:10px;background:#222}body.theme-gabsocial-light .group-column-header{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-column-header .group-column-header__title{padding:15px;font-size:20px;font-weight:700}.group-column-header .group-column-header__cta{float:right;padding:15px;font-size:17px}.group-column-header .group-column-header__cta a{color:#fff}.group-card-list{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;width:100%;margin-top:20px}.group-card{display:block;flex:0 0 calc(50% - 10px);border-radius:10px;background:#222;margin-bottom:20px;text-decoration:none;overflow:hidden}body.theme-gabsocial-light .group-card{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-card .group-card__header{overflow:hidden}.group-card .group-card__header img{pointer-events:none;width:100%;background:#222}body.theme-gabsocial-light .group-card .group-card__header img{background:#fff}.group-card .group-card__content{padding:15px}.group-card .group-card__content .group-card__title{color:#fff;font-size:16px;font-weight:700}.group-card .group-card__content .group-card__meta{color:#999;font-size:14px;margin-top:5px;margin-bottom:10px}.group-card .group-card__content .group-card__description{color:#fff;font-size:14px}.group-card:hover .group-card__title{text-decoration:underline}.group .group__header-container{width:100%;display:flex;justify-content:center;flex-direction:row}.group .group__header{width:100%;max-width:1150px;background:#222;border-radius:10px;overflow:hidden;margin:20px 0}body.theme-gabsocial-light .group .group__header{background:#fff}.group .group__header .group__cover img{width:100%}.group .group__header .group__tabs .group__tabs__tab{display:inline-block;text-decoration:none;padding:16px 22px;text-align:center;color:#fff}.group .group__header .group__tabs .group__tabs__tab--active,.group .group__header .group__tabs .group__tabs__tab:hover{border-bottom:2px solid #fff}.group .group__header .group__tabs:after{content:"";clear:both;display:table}.group .group__header .group__tabs button{float:right;margin:7px}.group .group__header .group__tabs div{float:right;margin:4px}.group .group__panel{padding:10px 10px 20px}.group .group__panel h1{font-size:22px;font-weight:700;margin-bottom:10px}.group .group__panel .group__panel__description{font-size:14px}.group .group__panel .group__panel__label{display:inline-block;margin-bottom:10px;border-radius:4px;background:#222;font-size:13px;padding:4px 8px}body.theme-gabsocial-light .group .group__panel .group__panel__label{background:#fff}.group .group__feed{background:#222;border-top-left-radius:10px;border-top-right-radius:10px;overflow:hidden}body.theme-gabsocial-light .group .group__feed{background:#fff}.group-account-wrapper{position:relative}.group-account-wrapper>div>.icon-button{position:absolute;right:5px;top:50%;transform:translateY(-50%)}.group-form{padding:20px;border-radius:10px;background:#222}body.theme-gabsocial-light .group-form{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-form,.group-form div{box-sizing:border-box;float:left;width:100%}.group-form input[type=text].standard,.group-form textarea.standard{width:100%;margin:0 0 10px}.group-form textarea{float:left;height:88px}.group-form .group-form__file-label{cursor:pointer;display:block;box-sizing:border-box;float:left;height:20px;padding:3px 0 0 33px;font-size:12px;font-size:1.2rem;font-weight:300;color:#999;background-repeat:no-repeat;background-image:url(/legacy/images/sprite-post-functions-ae530086a5c56d4fa6efd5603a2df828.png);background-size:100px 1200px}.group-form .group-form__file-label.group-form__file-label--selected,.group-form .group-form__file-label:hover{color:#21cf7a;background-position:0 -100px}.group-form .group-form__file{width:1px;height:1px;overflow:hidden;opacity:0;position:absolute;pointer-events:none}.group-form button{float:right}.group-sidebar-panel__items{padding:0 15px 15px}.group-sidebar-panel__items__show-all{color:#fff}.group-sidebar-panel__item{display:block;color:#fff;text-decoration:none;margin-bottom:15px}.group-sidebar-panel__item:last-child{margin-bottom:0}.group-sidebar-panel__item__title{font-weight:700}.group-sidebar-panel__item__meta{font-size:.8em;color:#999}.group-sidebar-panel__item__meta__unread{color:#21cf7a}.sidebar-menu{display:flex;position:fixed;flex-direction:column;width:275px;height:100vh;top:0;bottom:0;left:0;background:#222;transform:translateX(-275px);transition:all .15s linear;z-index:10001}body.theme-gabsocial-light .sidebar-menu{background:#fff}.sidebar-menu__root{display:none}.sidebar-menu__wrapper{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;background-color:transparent;transition:background-color .2s linear;transition-delay:.1s}.sidebar-menu__content{display:flex;flex:1 1;flex-direction:column;padding-bottom:40px;overflow:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.sidebar-menu__section{display:block;margin:4px 0;border-top:1px solid #3d3d3d}.sidebar-menu__section--borderless{margin:0;border-top:none}@media(max-width:400px){.sidebar-menu{width:90vw}}.sidebar-menu__root--visible{display:block}.sidebar-menu__root--visible .sidebar-menu{transform:translateX(0)}.sidebar-menu__root--visible .sidebar-menu__wrapper{background-color:rgba(0,0,0,.3)}.sidebar-menu-header{display:flex;height:46px;padding:12px 14px;border-bottom:1px solid #3d3d3d;box-sizing:border-box;align-items:center}.sidebar-menu-header__title{display:block;font-size:18px;font-weight:600;color:#fff}.sidebar-menu-header__btn{margin-left:auto}.sidebar-menu-profile{display:block;padding:14px 18px}.sidebar-menu-profile__avatar{display:block;width:56px;height:56px}.sidebar-menu-profile__name{display:block;margin-top:10px}.sidebar-menu-profile__name .display-name__account{display:block;margin-top:2px}.sidebar-menu-profile__stats{display:flex;margin-top:12px}.sidebar-menu-profile-stat{display:flex;font-size:14px;text-decoration:none}.sidebar-menu-profile-stat:not(:first-of-type){margin-left:18px}.sidebar-menu-profile-stat__value{display:flex;margin-right:3px;font-weight:700;color:#fff}.sidebar-menu-profile-stat__label{display:flex;color:#fff}.sidebar-menu-profile-stat:hover{text-decoration:underline}.sidebar-menu-item{display:flex;padding:16px 18px;cursor:pointer;text-decoration:none;color:#fff;font-size:15px;font-weight:400;height:50px;box-sizing:border-box}.sidebar-menu-item:hover{background-color:rgba(33,207,122,.1)}.sidebar-menu-item:hover .fa{color:#fff}.sidebar-menu-item .fa{margin-right:10px}.sidebar-menu-item:hover__title{color:#fff}@media screen and (max-width:960px){.status-revisions-root{width:100%}}.status-revisions{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px}@media screen and (max-width:960px){.status-revisions{height:90vh}}.status-revisions__header{display:block;position:relative;border-bottom:1px solid #474747;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.status-revisions__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#fff;text-align:center}.status-revisions__close{position:absolute;right:10px;top:10px}.status-revisions__content{display:flex;flex-direction:row;width:500px;flex-direction:column;overflow:hidden;overflow-y:scroll;height:calc(100% - 80px);-webkit-overflow-scrolling:touch;widows:90%}@media screen and (max-width:960px){.status-revisions{width:100%}}.status-revisions-list{width:100%}.status-revisions-list__error{padding:15px;text-align:center;font-weight:700}.status-revisions-list__item{padding:15px;border-bottom:1px solid #474747}.status-revisions-list__item__timestamp{opacity:.5;font-size:13px}.status-revisions-list__item__text{font-size:15px}.footer-bar{display:block;position:fixed;background:#000;height:58px;bottom:0;left:0;right:0;z-index:1000;transition:transform .2s ease;overflow:hidden;padding-bottom:env(safe-area-inset-bottom)}@media screen and (min-width:895px){.footer-bar{display:none!important}}.footer-bar__container{display:flex;flex-direction:row;align-items:stretch}.footer-bar__link{display:flex;flex:1 1 auto;margin:0;min-width:36px;height:58px;padding-top:4px;justify-content:center;color:#fff;text-decoration:none;border-top:2px solid transparent}.footer-bar__link.active{border-top-color:#21cf7a}.footer-bar__link>span{display:none}.poll{margin-top:16px;font-size:14px}.poll li{margin-bottom:10px;position:relative;height:30px}.poll__chart{position:absolute;top:0;left:0;height:100%;display:inline-block;border-radius:4px;background:hsla(0,0%,40%,.3)}.poll__chart.leading{background:hsla(0,0%,40%,.6)}.poll__text{position:relative;display:inline-block;padding:6px 0;line-height:18px;cursor:default;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff}body.theme-gabsocial-light .poll__text{color:#6c6c6c}.poll__text input[type=checkbox],.poll__text input[type=radio]{display:none}.poll__text .autossugest-input{flex:1 1 auto}.poll__text input[type=text]{box-sizing:border-box;width:100%;font-size:14px;color:#333;display:block;outline:0;font-family:inherit;background:#fff;border:1px solid #dbdbdb;border-radius:4px;padding:6px 10px}.poll__text input[type=text]:focus{border-color:#21cf7a}.poll__text.selectable{cursor:pointer}.poll__text.editable{display:flex;align-items:center;overflow:visible}.poll__input{display:inline-block;position:relative;border:1px solid #333;box-sizing:border-box;width:18px;height:18px;flex:0 0 auto;margin-right:10px;top:-1px;border-radius:50%;vertical-align:middle}.poll__input.checkbox{border-radius:4px}.poll__input.active{border-color:#79bd9a;background:#79bd9a}.poll__number{display:inline-block;width:36px;font-weight:700;padding:0 10px;text-align:right}.poll__footer{padding-top:6px;padding-bottom:5px;color:#757575}.poll__link{display:inline;background:0 0;padding:0;margin:0;border:0;color:#757575;text-decoration:underline;font-size:inherit}.poll__link:hover{text-decoration:none}.poll__link:active,.poll__link:focus{background-color:hsla(0,0%,45.9%,.1)}.poll .button{height:36px;padding:0 16px;margin-right:10px;font-size:14px}.compose-form__poll-wrapper{border-top:1px solid #ebebeb}.compose-form__poll-wrapper ul{padding:10px}.compose-form__poll-wrapper .poll__footer{border-top:1px solid #ebebeb;padding:10px;display:flex;align-items:center}.compose-form__poll-wrapper .poll__footer button,.compose-form__poll-wrapper .poll__footer select{flex:1 1 50%}.compose-form__poll-wrapper .button.button-secondary{font-size:14px;font-weight:400;padding:6px 10px;height:auto;line-height:inherit;color:#757575;border-color:#757575;margin-right:5px}.compose-form__poll-wrapper li{display:flex;align-items:center}.compose-form__poll-wrapper li .poll__text{flex:0 0 auto;width:calc(100% - 29px);margin-right:6px}.compose-form__poll-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;font-size:14px;color:#333;display:inline-block;width:auto;outline:0;font-family:inherit;background:#fff url("data:image/svg+xml;utf8,") no-repeat right 8px center/auto 16px;border:1px solid #dbdbdb;border-radius:4px;padding:6px 30px 6px 10px}.compose-form__poll-wrapper .icon-button.disabled{color:#dbdbdb}.muted .poll{color:#757575}.muted .poll__chart{background:rgba(15,15,15,.2)}.muted .poll__chart.leading{background:rgba(33,207,122,.2)}.introduction{display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:center!important}@media screen and (max-width:920px){.introduction{background:#1f1f1f;display:block!important}}.introduction__pager{background:#1f1f1f;box-shadow:0 0 15px rgba(0,0,0,.2);overflow:hidden}.introduction__frame,.introduction__pager{border-radius:10px;width:50vw;min-width:920px}@media screen and (max-width:920px){.introduction__frame,.introduction__pager{min-width:0;width:100%;border-radius:0;box-shadow:none}}.introduction__frame-wrapper{opacity:0;transition:opacity .5s linear}.introduction__frame-wrapper.active{opacity:1;transition:opacity 50ms linear}.introduction__frame{overflow:hidden}.introduction__illustration{height:50vh}@media screen and (max-width:630px){.introduction__illustration{height:auto}}.introduction__illustration img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;margin:0;width:100%;height:100%}.introduction__text--columnized{display:flex}.introduction__text--columnized>div{flex:1 1 33.33%;text-align:center;padding:25px 25px 30px}@media screen and (max-width:630px){.introduction__text--columnized{display:block;padding:15px 0 20px}.introduction__text--columnized>div{padding:10px 25px}}.introduction__text h3{font-size:24px;line-height:1.5;font-weight:700;margin-bottom:10px}.introduction__text p{font-size:16px;line-height:24px;font-weight:400;color:#999}.introduction__text p code{display:inline-block;background:#1f1f1f;font-size:15px;border:1px solid #474747;border-radius:2px;padding:1px 3px}.introduction__text--centered{padding:25px 25px 30px;text-align:center}.introduction__dots{display:flex;align-items:center;justify-content:center;padding:25px}@media screen and (max-width:630px){.introduction__dots{display:none}}.introduction__dot{width:14px;height:14px;border-radius:14px;border:1px solid #21cf7a;background:0 0;margin:0 3px;cursor:pointer}.introduction__dot:hover{background:#474747}.introduction__dot.active{cursor:default;background:#21cf7a}.introduction__action{padding:0 25px 25px;display:flex;align-items:center;justify-content:center}.emoji-mart{font-size:13px;display:inline-block;color:#333}.emoji-mart,.emoji-mart *{box-sizing:border-box;line-height:1.15}.emoji-mart .emoji-mart-emoji{padding:6px}.emoji-mart-bar{border:0 solid #525252}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#666}.emoji-mart-bar:last-child{border-top-width:1px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;display:none}.emoji-mart-anchors{display:flex;justify-content:space-between;padding:0 6px;color:#757575;line-height:0}.emoji-mart-anchor{position:relative;flex:1;text-align:center;padding:12px 4px;overflow:hidden;transition:color .1s ease-out;cursor:pointer}.emoji-mart-anchor:hover{color:#6b6b6b}.emoji-mart-anchor-selected{color:#21cf7a}.emoji-mart-anchor-selected:hover{color:#1ebd70}.emoji-mart-anchor-selected .emoji-mart-anchor-bar{bottom:-1px}.emoji-mart-anchor-bar{position:absolute;bottom:-5px;left:0;width:100%;height:4px;background-color:#21cf7a}.emoji-mart-anchors i{display:inline-block;width:100%;max-width:22px}.emoji-mart-anchors svg{fill:currentColor;max-height:18px}.emoji-mart-scroll{overflow-y:scroll;height:270px;max-height:35vh;padding:0 6px 6px;background:#fff;will-change:transform}.emoji-mart-scroll::-webkit-scrollbar-track:active,.emoji-mart-scroll::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.3)}.emoji-mart-search{padding:10px 45px 10px 10px;background:#fff}.emoji-mart-search input{font-size:14px;font-weight:400;padding:7px 9px;font-family:inherit;display:block;width:100%;background:hsla(0,0%,40%,.3);color:#333;border:1px solid #666;border-radius:4px}.emoji-mart-search input::-moz-focus-inner{border:0}.emoji-mart-search input::-moz-focus-inner,.emoji-mart-search input:active,.emoji-mart-search input:focus{outline:0!important}.emoji-mart-category .emoji-mart-emoji{cursor:pointer}.emoji-mart-category .emoji-mart-emoji span{z-index:1;position:relative;text-align:center}.emoji-mart-category .emoji-mart-emoji:hover:before{z-index:0;content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:hsla(0,0%,40%,.7);border-radius:100%}.emoji-mart-category-label{z-index:2;position:relative;position:-webkit-sticky;position:sticky;top:0}.emoji-mart-category-label span{display:block;width:100%;font-weight:500;padding:5px 6px;background:#fff}.emoji-mart-emoji{position:relative;display:inline-block;font-size:0}.emoji-mart-emoji span{width:22px;height:22px}.emoji-mart-no-results{font-size:14px;text-align:center;padding-top:70px;color:#333}.emoji-mart-no-results .emoji-mart-category-label{display:none}.emoji-mart-no-results .emoji-mart-no-results-label{margin-top:.2em}.emoji-mart-no-results .emoji-mart-emoji:hover:before{content:none}.emoji-mart-preview{display:none}.container{box-sizing:border-box;max-width:1235px;margin:0 auto;position:relative}@media screen and (max-width:1255px){.container{width:100%;padding:0 10px}}.rich-formatting{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#999;padding-right:10px}.rich-formatting a{color:#21cf7a;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#999}.rich-formatting li a,.rich-formatting p a{color:#21cf7a;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em,.rich-formatting strong{font-weight:700;color:#b3b3b3}.rich-formatting h1{font-family:gabsocial-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h1 small{font-family:gabsocial-font-sans-serif,sans-serif;display:block;font-size:18px;font-weight:400;color:#b3b3b3}.rich-formatting h2{font-family:gabsocial-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h6{font-size:12px}.rich-formatting ol,.rich-formatting ul{margin-left:20px}.rich-formatting ol[type=a],.rich-formatting ul[type=a]{list-style-type:lower-alpha}.rich-formatting ol[type=i],.rich-formatting ul[type=i]{list-style-type:lower-roman}.rich-formatting ul{list-style:disc}.rich-formatting ol{list-style:decimal}.rich-formatting li>ol,.rich-formatting li>ul{margin-top:6px}.rich-formatting hr{width:100%;height:0;border:0;border-bottom:1px solid hsla(0,0%,45.9%,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#292929;padding:20px 0}.information-board .container-alt{position:relative;padding-right:295px}.information-board__sections{display:flex;justify-content:space-between;flex-wrap:wrap}.information-board__section{flex:1 0 0;font-family:gabsocial-font-sans-serif,sans-serif;font-size:16px;line-height:28px;color:#fff;text-align:right;padding:10px 15px}.information-board__section span,.information-board__section strong{display:block}.information-board__section span:last-child{color:#666}.information-board__section strong{font-family:gabsocial-font-display,sans-serif;font-weight:500;font-size:32px;line-height:48px}@media screen and (max-width:700px){.information-board__section{text-align:center}}.information-board .panel{position:absolute;width:280px;box-sizing:border-box;background:#1f1f1f;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:gabsocial-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#999;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #3d3d3d;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:grey}.information-board .panel .panel-header a{text-decoration:none}.information-board .owner{text-align:center}.information-board .owner .avatar{width:80px;height:80px;margin:0 auto 15px}.information-board .owner .avatar img{display:block;width:80px;height:80px;border-radius:48px}.information-board .owner .name{font-size:14px}.information-board .owner .name a{display:block;color:#fff;text-decoration:none}.information-board .owner .name a:hover .display_name{text-decoration:underline}.information-board .owner .name .username{display:block;color:#999}.landing-page li,.landing-page p{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#999}.landing-page li a,.landing-page p a{color:#21cf7a;text-decoration:underline}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:0 0;font-family:inherit;font-size:inherit;line-height:inherit;color:#b3b3b3}.landing-page h1{font-family:gabsocial-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h1 small{font-family:gabsocial-font-sans-serif,sans-serif;display:block;font-size:18px;font-weight:400;color:#b3b3b3}.landing-page h2{font-family:gabsocial-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h6{font-size:12px}.landing-page ol,.landing-page ul{margin-left:20px}.landing-page ol[type=a],.landing-page ul[type=a]{list-style-type:lower-alpha}.landing-page ol[type=i],.landing-page ul[type=i]{list-style-type:lower-roman}.landing-page ul{list-style:disc}.landing-page ol{list-style:decimal}.landing-page li>ol,.landing-page li>ul{margin-top:6px}.landing-page hr{width:100%;height:0;border:0;border-bottom:1px solid hsla(0,0%,45.9%,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#292929;border-radius:4px;padding:25px 40px;overflow:hidden;box-sizing:border-box}.landing-page__call-to-action .row{width:100%;display:flex;flex-direction:row-reverse;flex-wrap:nowrap;justify-content:space-between;align-items:center}.landing-page__call-to-action .row__information-board{display:flex;justify-content:flex-end;align-items:flex-end}.landing-page__call-to-action .row__information-board .information-board__section{flex:1 0 auto;padding:0 10px}@media screen and (max-width:415px){.landing-page__call-to-action .row__information-board{width:100%;justify-content:space-between}}.landing-page__call-to-action .row__mascot{flex:1;margin:10px -50px 0 0}@media screen and (max-width:415px){.landing-page__call-to-action .row__mascot{display:none}}.landing-page__logo{margin-right:20px}.landing-page__logo img{height:50px;width:auto;mix-blend-mode:lighten}.landing-page__information{padding:45px 40px;margin-bottom:10px}.landing-page__information:last-child{margin-bottom:0}.landing-page__information strong{font-weight:500;color:#b3b3b3}.landing-page__information .account{border-bottom:0;padding:0}.landing-page__information .account__display-name{align-items:center;display:flex;margin-right:5px}.landing-page__information .account div.account__display-name:hover .display-name strong{text-decoration:none}.landing-page__information .account div.account__display-name .account__avatar{cursor:default}.landing-page__information .account__avatar-wrapper{margin-left:0;flex:0 0 auto}.landing-page__information .account__avatar{width:44px;height:44px;background-size:44px 44px}.landing-page__information .account .display-name{font-size:15px}.landing-page__information .account .display-name__account{font-size:14px}@media screen and (max-width:960px){.landing-page__information .contact{margin-top:30px}}@media screen and (max-width:700px){.landing-page__information{padding:25px 20px}}.landing-page #gabsocial-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#333;border-radius:4px;box-shadow:0 0 6px rgba(0,0,0,.1)}.landing-page__mascot{height:104px;position:relative;left:-40px;bottom:25px}.landing-page__mascot img{height:190px;width:auto}.landing-page__short-description .row{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:40px}@media screen and (max-width:700px){.landing-page__short-description .row{margin-bottom:20px}}.landing-page__short-description p a{color:#666}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#999}.landing-page__short-description h1 small span{color:#666}.landing-page__short-description p:last-child{margin-bottom:0}.landing-page__hero{margin-bottom:10px}.landing-page__hero img{display:block;margin:0;max-width:100%;height:auto;border-radius:4px}@media screen and (max-width:840px){.landing-page .information-board .container-alt{padding-right:20px}.landing-page .information-board .panel{position:static;margin-top:20px;width:100%;border-radius:4px}.landing-page .information-board .panel .panel-header{text-align:center}}@media screen and (max-width:675px){.landing-page .header-wrapper{padding-top:0}.landing-page .header-wrapper.compact{padding-bottom:0}.landing-page .header-wrapper.compact .hero .heading{text-align:initial}.landing-page .features .container-alt,.landing-page .header .container-alt{display:block}}.landing-page .cta{margin:20px}.landing{height:auto;min-height:80vh}@media(min-width:767px){.landing{height:100vh;height:calc(100vh - 180px);min-height:580px}}.landing .landing-columns{display:flex;flex-direction:row;padding:40px 0 20px}.landing .landing-columns--left{margin-right:80px}.landing .landing-columns--right{margin-left:auto;width:395px}@media(min-width:767px)and (max-width:1024px){.landing .landing-columns{padding:40px 20px 20px}.landing .landing-columns--left{margin-right:40px}.landing .landing-columns--right{width:425px}}@media screen and (max-width:767px){.landing .landing-columns{height:auto;padding:20px 10px 30px;flex-direction:column;align-items:center}.landing .landing-columns--left{margin-right:0}.landing .landing-columns--right{width:100%;margin-left:0;margin-top:30px}}.landing__brand{display:flex;justify-content:start;align-items:center;flex-direction:column}.landing__brand .brand{margin-right:auto!important}.landing__brand img{height:130px}@media(min-width:767px)and (max-width:1024px){.landing__brand img{height:90px}}@media screen and (max-width:767px){.landing__brand img{display:none}}.landing .directory{margin-top:30px;background:0 0;box-shadow:none;border-radius:0}.landing .hero-widget{margin-top:30px;margin-bottom:0}.landing .hero-widget h4{padding:10px;text-transform:uppercase;font-weight:700;font-size:13px;color:#999}.landing .hero-widget__text{border-radius:0;padding-bottom:0}.landing .hero-widget__footer{background:#333;padding:10px;border-radius:0 0 4px 4px;display:flex}.landing .hero-widget__footer__column{flex:1 1 50%}.landing .hero-widget .account{padding:10px 0;border-bottom:0}.landing .hero-widget .account .account__display-name{display:flex;align-items:center}.landing .hero-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.landing .hero-widget__counter{padding:10px}.landing .hero-widget__counter strong{font-family:gabsocial-font-display,sans-serif;font-size:15px;font-weight:700;display:block}.landing .hero-widget__counter span{font-size:14px;color:#999}.landing .simple_form .user_agreement .label_input>label{font-weight:400;color:#999}.landing .simple_form p.lead{color:#999;font-size:15px;line-height:20px;font-weight:400;margin-bottom:25px}.landing__grid{max-width:960px;margin:0 auto;display:grid;grid-template-columns:minmax(0,50%) minmax(0,50%);grid-gap:30px}@media screen and (max-width:738px){.landing__grid{grid-template-columns:minmax(0,100%);grid-gap:10px}.landing__grid__column-login{grid-row:1;display:flex;flex-direction:column}.landing__grid__column-login .box-widget{order:2;flex:0 0 auto}.landing__grid__column-login .hero-widget{margin-top:0;margin-bottom:10px;order:1;flex:0 0 auto}.landing__grid__column-registration{grid-row:2}.landing__grid .directory{margin-top:10px}}@media screen and (max-width:415px){.landing__grid{grid-gap:0}.landing__grid .hero-widget{display:block;margin-bottom:0;box-shadow:none}.landing__grid .hero-widget__footer,.landing__grid .hero-widget__img,.landing__grid .hero-widget__img img{border-radius:0}.landing__grid .box-widget,.landing__grid .directory__tag,.landing__grid .hero-widget{border-bottom:1px solid #474747}.landing__grid .directory{margin-top:0}.landing__grid .directory__tag{margin-bottom:0}.landing__grid .directory__tag>a,.landing__grid .directory__tag>div{border-radius:0;box-shadow:none}.landing__grid .directory__tag:last-child{border-bottom:0}}.brand{position:relative;text-decoration:none;margin-right:15px}.brand__tagline{display:block;width:470px;color:#fff;font-size:30px;line-height:1.4;margin-top:25px;font-weight:400}@media(min-width:767px)and (max-width:1024px){.brand__tagline{width:320px;font-size:20px}}@media screen and (max-width:767px){.brand__tagline{width:100%;font-size:22px;margin-top:0}}@media(min-width:767px){.hidden-sm{display:block}.visible-sm{display:none}}@media screen and (max-width:767px){.hidden-sm{display:none!important}.visible-sm{display:block!important}}.table{width:100%;max-width:100%;border-spacing:0;border-collapse:collapse}.table td,.table th{padding:8px;line-height:18px;vertical-align:top;border-top:1px solid #333;text-align:left;background:#292929}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #333;border-top:0;font-weight:500}.table>tbody>tr>th{font-weight:500}.table>tbody>tr:nth-child(odd)>td,.table>tbody>tr:nth-child(odd)>th{background:#333}.table a{color:#21cf7a;text-decoration:underline}.table a:hover{text-decoration:none}.table strong{font-weight:500}.table strong:lang(ja),.table strong:lang(ko),.table strong:lang(zh-cn),.table strong:lang(zh-hk),.table strong:lang(zh-tw){font-weight:700}.table.inline-table>tbody>tr:nth-child(odd)>td,.table.inline-table>tbody>tr:nth-child(odd)>th{background:0 0}.table.inline-table>tbody>tr:first-child>td,.table.inline-table>tbody>tr:first-child>th{border-top:0}.table.batch-table>thead>tr>th{background:#333;border-top:1px solid #1f1f1f;border-bottom:1px solid #1f1f1f}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #1f1f1f}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #1f1f1f}.table--invites tbody td{vertical-align:middle}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:gabsocial-font-monospace,monospace}button.table-action-link{background:0 0;border:0;font:inherit}a.table-action-link,button.table-action-link{text-decoration:none;display:inline-block;margin-right:5px;padding:0 10px;color:#999;font-weight:500}a.table-action-link:hover,button.table-action-link:hover{color:#fff}a.table-action-link i.fa,button.table-action-link i.fa{font-weight:400;margin-right:5px}a.table-action-link:first-child,button.table-action-link:first-child{padding-left:0}.batch-table__row,.batch-table__toolbar{display:flex}.batch-table__row__select,.batch-table__toolbar__select{box-sizing:border-box;padding:8px 16px;cursor:pointer;min-height:100%}.batch-table__row__select input,.batch-table__toolbar__select input{margin-top:8px}.batch-table__row__select--aligned,.batch-table__toolbar__select--aligned{display:flex;align-items:center}.batch-table__row__select--aligned input,.batch-table__toolbar__select--aligned input{margin-top:0}@media screen and (max-width:415px){.batch-table__row__select,.batch-table__toolbar__select{display:none}}.batch-table__row__actions,.batch-table__row__content,.batch-table__toolbar__actions,.batch-table__toolbar__content{padding:8px 16px 8px 0;flex:1 1 auto}.batch-table__toolbar{border:1px solid #1f1f1f;background:#333;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}@media screen and (max-width:415px){.batch-table__toolbar{display:none}}.batch-table__row{border:1px solid #1f1f1f;border-top:0;background:#292929}@media screen and (max-width:415px){.batch-table__row:first-child{border-top:1px solid #1f1f1f}}.batch-table__row:hover{background:#2e2e2e}.batch-table__row:nth-child(2n){background:#333}.batch-table__row:nth-child(2n):hover{background:#383838}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table__row__content--unpadded{padding:0}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.batch-table .nothing-here{border:1px solid #1f1f1f;border-top:0;box-shadow:none}@media screen and (max-width:415px){.batch-table .nothing-here{border-top:1px solid #1f1f1f}}@media screen and (max-width:870px){.batch-table .accounts-table tbody td.optional{display:none}}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#333;display:flex;justify-content:flex-end}.admin-wrapper .sidebar{width:240px;height:100%;padding:0;overflow-y:auto}.admin-wrapper .sidebar .logo{display:block;margin:40px auto;width:100px;height:100px}@media screen and (max-width:600px){.admin-wrapper .sidebar>a:first-child{display:none}}.admin-wrapper .sidebar ul{list-style:none;border-radius:4px 0 0 4px;overflow:hidden;margin-bottom:20px}@media screen and (max-width:600px){.admin-wrapper .sidebar ul{margin-bottom:0}}.admin-wrapper .sidebar ul a{display:block;padding:15px;color:#999;text-decoration:none;transition:all .2s linear;transition-property:color,background-color;border-radius:4px 0 0 4px}.admin-wrapper .sidebar ul a i.fa{margin-right:5px}.admin-wrapper .sidebar ul a:hover{color:#fff;background-color:#333;transition:all .1s linear;transition-property:color,background-color}.admin-wrapper .sidebar ul a.selected{background:#2e2e2e;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#292929;border-radius:0 0 0 4px;margin:0}.admin-wrapper .sidebar ul ul a{border:0;padding:15px 35px}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a{color:#fff;background-color:#21cf7a;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#2cdd87}.admin-wrapper .sidebar>ul>.simple-navigation-active-leaf a{border-radius:4px 0 0 4px}.admin-wrapper .content-wrapper{flex:2 1 840px;overflow:auto}.admin-wrapper .content{max-width:840px;padding:60px 15px 20px 25px}@media screen and (max-width:600px){.admin-wrapper .content{max-width:none;padding:30px 15px 15px}}.admin-wrapper .content h2{color:#666;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #474747;margin-bottom:40px}.admin-wrapper .content h3{color:#666;font-size:20px;line-height:28px;font-weight:400;margin-bottom:30px}.admin-wrapper .content h4{text-transform:uppercase;font-size:13px;font-weight:700;color:#999;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #474747}.admin-wrapper .content h6{font-size:16px;color:#666;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#fff;font-weight:500}.admin-wrapper .content .directory__tag>a,.admin-wrapper .content .directory__tag>div{box-shadow:none}.admin-wrapper .content .directory__tag .table-action-link .fa{color:inherit}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#999;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#999;margin-bottom:20px}.admin-wrapper .content>p strong{color:#999;font-weight:500}.admin-wrapper .content>p strong:lang(ja),.admin-wrapper .content>p strong:lang(ko),.admin-wrapper .content>p strong:lang(zh-cn),.admin-wrapper .content>p strong:lang(zh-hk),.admin-wrapper .content>p strong:lang(zh-tw){font-weight:700}.admin-wrapper .content hr{width:100%;height:0;border:0;border-bottom:1px solid hsla(0,0%,45.9%,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#999}.admin-wrapper .content .muted-hint a{color:#21cf7a}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;font-weight:500}.admin-wrapper .content .neutral-hint{color:#757575;font-weight:500}@media screen and (max-width:600px){.admin-wrapper{display:block;overflow-y:auto;-webkit-overflow-scrolling:touch}.admin-wrapper .content-wrapper,.admin-wrapper .sidebar-wrapper{flex:0 0 auto;height:auto;overflow:initial}.admin-wrapper .sidebar{width:100%;padding:0;height:auto}}.filters{display:flex;flex-wrap:wrap}.filters .filter-subset{flex:0 0 auto;margin:0 40px 10px 0}.filters .filter-subset:last-child{margin-bottom:20px}.filters .filter-subset ul{margin-top:5px;list-style:none}.filters .filter-subset ul li{display:inline-block;margin-right:5px}.filters .filter-subset strong{font-weight:500;text-transform:uppercase;font-size:12px}.filters .filter-subset strong:lang(ja),.filters .filter-subset strong:lang(ko),.filters .filter-subset strong:lang(zh-cn),.filters .filter-subset strong:lang(zh-hk),.filters .filter-subset strong:lang(zh-tw){font-weight:700}.filters .filter-subset a{display:inline-block;color:#999;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #999}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #a6a6a6}.filters .filter-subset a.selected{color:#21cf7a;border-bottom:2px solid #21cf7a}.report-accounts{display:flex;flex-wrap:wrap;margin-bottom:20px}.report-accounts__item{display:flex;flex:250px;flex-direction:column;margin:0 5px}.report-accounts__item>strong{display:block;margin:0 0 10px -5px;font-weight:500;font-size:14px;line-height:18px;color:#666}.report-accounts__item>strong:lang(ja),.report-accounts__item>strong:lang(ko),.report-accounts__item>strong:lang(zh-cn),.report-accounts__item>strong:lang(zh-hk),.report-accounts__item>strong:lang(zh-tw){font-weight:700}.report-accounts__item .account-card{flex:1 1 auto}.account-status,.report-status{display:flex;margin-bottom:10px}.account-status .activity-stream,.report-status .activity-stream{flex:2 0 0;margin-right:20px;max-width:calc(100% - 60px)}.account-status .activity-stream .entry,.report-status .activity-stream .entry{border-radius:4px}.account-status__actions,.report-status__actions{flex:0 0 auto;display:flex;flex-direction:column}.account-status__actions .icon-button,.report-status__actions .icon-button{font-size:24px;width:24px;text-align:center;margin-bottom:10px}.simple_form.new_account_moderation_note,.simple_form.new_report_note{max-width:100%}.batch-form-box{display:flex;flex-wrap:wrap;margin-bottom:5px}.batch-form-box #form_status_batch_action{margin:0 5px 5px 0;font-size:14px}.batch-form-box input.button{margin:0 5px 5px 0}.batch-form-box .media-spoiler-toggle-buttons{margin-left:auto}.batch-form-box .media-spoiler-toggle-buttons .button{overflow:visible;margin:0 0 5px 5px;float:right}.back-link{margin-bottom:10px;font-size:14px}.back-link a{color:#21cf7a;text-decoration:none}.back-link a:hover{text-decoration:underline}.spacer{flex:1 1 auto}.log-entry{margin-bottom:20px;line-height:20px}.log-entry__header{display:flex;justify-content:flex-start;align-items:center;padding:10px;background:#333;color:#999;border-radius:4px 4px 0 0;font-size:14px;position:relative}.log-entry__avatar{margin-right:10px}.log-entry__avatar .avatar{display:block;margin:0;border-radius:50%;width:40px;height:40px}.log-entry__content{max-width:calc(100% - 90px)}.log-entry__title{word-wrap:break-word}.log-entry__timestamp{color:#757575}.log-entry__extras{background:#424242;border-radius:0 0 4px 4px;padding:10px;color:#999;font-family:gabsocial-font-monospace,monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#757575}.log-entry__icon__overlay{position:absolute;top:10px;right:10px;width:10px;height:10px;border-radius:50%}.log-entry__icon__overlay.positive{background:#79bd9a}.log-entry__icon__overlay.negative{background:#e87487}.log-entry__icon__overlay.neutral{background:#21cf7a}.log-entry .target,.log-entry .username,.log-entry a{color:#666;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#666}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#666}.inline-name-tag .username,.name-tag .username,a.inline-name-tag .username,a.name-tag .username{font-weight:500}.inline-name-tag.suspended .username,.name-tag.suspended .username,a.inline-name-tag.suspended .username,a.name-tag.suspended .username{text-decoration:line-through;color:#e87487}.inline-name-tag.suspended .avatar,.name-tag.suspended .avatar,a.inline-name-tag.suspended .avatar,a.name-tag.suspended .avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8}.name-tag,a.name-tag{display:flex;align-items:center}.name-tag .avatar,a.name-tag .avatar{display:block;margin:0 5px 0 0;border-radius:50%}.name-tag.suspended .avatar,a.name-tag.suspended .avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8}.speech-bubble{margin-bottom:20px;border-left:4px solid #21cf7a}.speech-bubble.positive{border-left-color:#79bd9a}.speech-bubble.negative{border-left-color:#e87487}.speech-bubble.warning{border-left-color:#ca8f04}.speech-bubble__bubble{padding:16px 16px 16px 14px;font-size:15px;line-height:20px;border-radius:4px 4px 4px 0;position:relative;font-weight:500}.speech-bubble__bubble a{color:#999}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#757575}.report-card{background:#333;border-radius:4px;margin-bottom:20px}.report-card__profile{display:flex;justify-content:space-between;align-items:center;padding:15px}.report-card__profile .account{padding:0;border:0}.report-card__profile .account__avatar-wrapper{margin-left:0}.report-card__profile__stats{flex:0 0 auto;font-weight:500;color:#999;text-transform:uppercase;text-align:right}.report-card__profile__stats a{color:inherit;text-decoration:none}.report-card__profile__stats a:active,.report-card__profile__stats a:focus,.report-card__profile__stats a:hover{color:#adadad}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #292929}.report-card__summary__item:hover{background:#383838}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#999}.report-card__summary__item__assigned,.report-card__summary__item__assigned .username,.report-card__summary__item__reported-by,.report-card__summary__item__reported-by .username{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.report-card__summary__item__content{flex:1 1 auto;max-width:calc(100% - 300px)}.report-card__summary__item__content__icon{color:#757575;margin-right:4px;font-weight:500}.report-card__summary__item__content a{display:block;box-sizing:border-box;width:100%;padding:15px;text-decoration:none;color:#999}.one-line{white-space:nowrap}.ellipsized-ip,.one-line{overflow:hidden;text-overflow:ellipsis}.ellipsized-ip{display:inline-block;max-width:120px;vertical-align:middle}.dashboard__counters{display:flex;flex-wrap:wrap;margin:0 -5px 20px}.dashboard__counters>div{box-sizing:border-box;flex:0 0 33.333%;padding:0 5px;margin-bottom:10px}.dashboard__counters>div>a,.dashboard__counters>div>div{padding:20px;background:#3d3d3d;border-radius:4px}.dashboard__counters>div>a{text-decoration:none;color:inherit;display:block}.dashboard__counters>div>a:active,.dashboard__counters>div>a:focus,.dashboard__counters>div>a:hover{background:#474747}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#fff;font-family:gabsocial-font-display,sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#999;text-align:center;font-weight:500}.dashboard__widgets{display:flex;flex-wrap:wrap;margin:0 -5px}.dashboard__widgets>div{flex:0 0 33.333%;margin-bottom:20px}.dashboard__widgets>div>div{padding:0 5px}.dashboard__widgets a:not(.name-tag){color:#666;font-weight:500;text-decoration:none}body.rtl{direction:rtl}body.rtl .column-header>button{text-align:right;padding-left:0;padding-right:15px}body.rtl .landing-page__logo{margin-right:0;margin-left:20px}body.rtl .landing-page .features-list .features-list__row .visual{margin-left:0;margin-right:15px}body.rtl .column-header__icon,body.rtl .column-link__icon{margin-right:0;margin-left:5px}body.rtl .compose-form .compose-form__buttons-wrapper .character-counter__wrapper{margin-right:0;margin-left:4px}body.rtl .navigation-bar__profile{margin-left:0;margin-right:8px}body.rtl .search__input{padding-right:10px;padding-left:30px}body.rtl .search__icon .fa{right:auto;left:10px}body.rtl .column-header__buttons{left:0;right:auto;margin-left:0;margin-right:-15px}body.rtl .column-inline-form .icon-button{margin-left:0;margin-right:5px}body.rtl .column-header__links .text-btn{margin-left:10px;margin-right:0}body.rtl .account__avatar-wrapper{float:right}body.rtl .column-header__back-button{padding-left:5px;padding-right:0}body.rtl .column-header__setting-arrows{float:left}body.rtl .setting-toggle__label{margin-left:0;margin-right:8px}body.rtl .status__avatar{left:auto;right:10px}body.rtl .activity-stream .status.light,body.rtl .status{padding-left:10px;padding-right:68px}body.rtl .activity-stream .status.light .status__display-name,body.rtl .status__info .status__display-name{padding-left:25px;padding-right:0}body.rtl .activity-stream .pre-header{padding-right:68px;padding-left:0}body.rtl .status__prepend{margin-left:0;margin-right:68px}body.rtl .status__prepend-icon-wrapper{left:auto;right:-26px}body.rtl .activity-stream .pre-header .pre-header__icon{left:auto;right:42px}body.rtl .account__avatar-overlay-overlay,body.rtl .column-back-button--slim-button{right:auto;left:0}body.rtl .activity-stream .status.light .status__header .status__meta,body.rtl .status__relative-time{float:left}body.rtl .status__action-bar__counter{margin-right:0;margin-left:11px}body.rtl .status__action-bar__counter .status__action-bar-button{margin-right:0;margin-left:4px}body.rtl .status__action-bar-button{float:right;margin-right:0;margin-left:18px}body.rtl .status__action-bar-dropdown{float:right}body.rtl .privacy-dropdown__dropdown{margin-left:0;margin-right:40px}body.rtl .privacy-dropdown__option__icon{margin-left:10px;margin-right:0}body.rtl .detailed-status__display-name .display-name{text-align:right}body.rtl .detailed-status__display-avatar{margin-right:0;margin-left:10px;float:right}body.rtl .detailed-status__favorites,body.rtl .detailed-status__reblogs{margin-left:0;margin-right:6px}body.rtl .fa-ul{margin-left:2.14285714em}body.rtl .fa-li{left:auto;right:-2.14285714em}body.rtl .admin-wrapper{direction:rtl}body.rtl .admin-wrapper .sidebar ul a i.fa,body.rtl a.table-action-link i.fa{margin-right:0;margin-left:5px}body.rtl .simple_form .check_boxes .checkbox label{padding-left:0;padding-right:25px}body.rtl .simple_form .input.with_label.boolean label.checkbox{padding-left:25px;padding-right:0}body.rtl .simple_form .check_boxes .checkbox input[type=checkbox],body.rtl .simple_form .input.boolean input[type=checkbox],body.rtl .simple_form .input.radio_buttons .radio{left:auto;right:0}body.rtl .simple_form .input.radio_buttons .radio>label{padding-right:28px;padding-left:0}body.rtl .simple_form .input-with-append .input input{padding-left:142px;padding-right:0}body.rtl .simple_form .input.boolean label.checkbox{left:auto;right:0}body.rtl .simple_form .input.boolean .hint,body.rtl .simple_form .input.boolean .label_input{padding-left:0;padding-right:28px}body.rtl .simple_form .label_input__append{right:auto;left:3px}body.rtl .simple_form .label_input__append:after{right:auto;left:0;background-image:linear-gradient(270deg,rgba(26,26,26,0),#1a1a1a)}body.rtl .simple_form select{background:#1a1a1a url("data:image/svg+xml;utf8,") no-repeat left 8px center/auto 16px}body.rtl .table td,body.rtl .table th{text-align:right}body.rtl .filters .filter-subset{margin-right:0;margin-left:45px}body.rtl .landing-page .header-wrapper .mascot{right:60px;left:auto}body.rtl .landing-page__call-to-action .row__information-board{direction:rtl}body.rtl .landing-page .header .hero .floats .float-1{left:-120px;right:auto}body.rtl .landing-page .header .hero .floats .float-2{left:210px;right:auto}body.rtl .landing-page .header .hero .floats .float-3{left:110px;right:auto}body.rtl .landing-page .header .links .brand img{left:0}body.rtl .landing-page .fa-external-link{padding-right:5px;padding-left:0!important}body.rtl .landing-page .features #gabsocial-timeline{margin-right:0;margin-left:30px}@media screen and (min-width:631px){body.rtl .column,body.rtl .drawer{padding-left:5px;padding-right:5px}body.rtl .column:first-child,body.rtl .drawer:first-child{padding-left:5px;padding-right:10px}body.rtl .columns-area>div .column,body.rtl .columns-area>div .drawer{padding-left:5px;padding-right:5px}}body.rtl .public-layout .header .nav-button{margin-left:8px;margin-right:0}body.rtl .public-layout .public-account-header__tabs{margin-left:0;margin-right:20px}body.rtl .landing-page__information .account__display-name{margin-right:0;margin-left:5px}body.rtl .landing-page__information .account__avatar-wrapper{margin-left:12px;margin-right:0}body.rtl .card__bar .display-name{margin-left:0;margin-right:15px;text-align:right}body.rtl .fa-chevron-left:before{content:""}body.rtl .fa-chevron-right:before{content:""}body.rtl .column-back-button__icon{margin-right:0;margin-left:5px}body.rtl .column-header__setting-arrows .column-header__setting-btn:last-child{padding-left:0;padding-right:10px}body.rtl .simple_form .input.radio_buttons .radio>label input{left:auto;right:0}.emojione[title=":8ball:"],.emojione[title=":ant:"],.emojione[title=":back:"],.emojione[title=":black_circle:"],.emojione[title=":black_heart:"],.emojione[title=":black_large_square:"],.emojione[title=":black_medium_small_square:"],.emojione[title=":black_medium_square:"],.emojione[title=":black_nib:"],.emojione[title=":black_small_square:"],.emojione[title=":bomb:"],.emojione[title=":bowling:"],.emojione[title=":bust_in_silhouette:"],.emojione[title=":busts_in_silhouette:"],.emojione[title=":camera:"],.emojione[title=":camera_with_flash:"],.emojione[title=":clubs:"],.emojione[title=":copyright:"],.emojione[title=":curly_loop:"],.emojione[title=":currency_exchange:"],.emojione[title=":dark_sunglasses:"],.emojione[title=":eight_pointed_black_star:"],.emojione[title=":electric_plug:"],.emojione[title=":end:"],.emojione[title=":female-guard:"],.emojione[title=":film_projector:"],.emojione[title=":fried_egg:"],.emojione[title=":gorilla:"],.emojione[title=":guardsman:"],.emojione[title=":heavy_check_mark:"],.emojione[title=":heavy_division_sign:"],.emojione[title=":heavy_dollar_sign:"],.emojione[title=":heavy_minus_sign:"],.emojione[title=":heavy_multiplication_x:"],.emojione[title=":heavy_plus_sign:"],.emojione[title=":hocho:"],.emojione[title=":hole:"],.emojione[title=":joystick:"],.emojione[title=":kaaba:"],.emojione[title=":lower_left_ballpoint_pen:"],.emojione[title=":lower_left_fountain_pen:"],.emojione[title=":male-guard:"],.emojione[title=":microphone:"],.emojione[title=":mortar_board:"],.emojione[title=":movie_camera:"],.emojione[title=":musical_score:"],.emojione[title=":on:"],.emojione[title=":registered:"],.emojione[title=":soon:"],.emojione[title=":spades:"],.emojione[title=":speaking_head_in_silhouette:"],.emojione[title=":spider:"],.emojione[title=":telephone_receiver:"],.emojione[title=":tm:"],.emojione[title=":top:"],.emojione[title=":tophat:"],.emojione[title=":turkey:"],.emojione[title=":vhs:"],.emojione[title=":video_camera:"],.emojione[title=":video_game:"],.emojione[title=":water_buffalo:"],.emojione[title=":waving_black_flag:"],.emojione[title=":wavy_dash:"]{-webkit-filter:drop-shadow(1px 1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff) drop-shadow(-1px -1px 0 #fff);filter:drop-shadow(1px 1px 0 #ffffff) drop-shadow(-1px 1px 0 #ffffff) drop-shadow(1px -1px 0 #ffffff) drop-shadow(-1px -1px 0 #ffffff);transform:scale(.71)} \ No newline at end of file diff --git a/public/legacy/default.css b/public/legacy/default.css new file mode 100644 index 00000000..e49fbdf6 --- /dev/null +++ b/public/legacy/default.css @@ -0,0 +1 @@ +@font-face{font-family:Roboto;font-weight:400;font-style:normal;src:url(/legacy/fonts/roboto/roboto-regular-400.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-regular-400.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-regular-400.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-regular-400.woff) format("woff"),url(/legacy/fonts/roboto/roboto-regular-400.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-regular-400.svg) format("svg")}@font-face{font-family:Roboto;font-weight:400;font-style:italic;src:url(/legacy/fonts/roboto/roboto-regular-italic-400.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-regular-italic-400.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-regular-italic-400.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-regular-italic-400.woff) format("woff"),url(/legacy/fonts/roboto/roboto-regular-italic-400.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-regular-italic-400.svg) format("svg")}@font-face{font-family:Roboto;font-weight:300;font-style:normal;src:url(/legacy/fonts/roboto/roboto-light-300.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-light-300.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-light-300.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-light-300.woff) format("woff"),url(/legacy/fonts/roboto/roboto-light-300.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-light-300.svg) format("svg")}@font-face{font-family:Roboto;font-weight:300;font-style:italic;src:url(/legacy/fonts/roboto/roboto-light-italic-300.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-light-italic-300.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-light-italic-300.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-light-italic-300.woff) format("woff"),url(/legacy/fonts/roboto/roboto-light-italic-300.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-light-italic-300.svg) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:normal;src:url(/legacy/fonts/roboto/roboto-bold-700.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-bold-700.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-bold-700.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-bold-700.woff) format("woff"),url(/legacy/fonts/roboto/roboto-bold-700.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-bold-700.svg) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:italic;src:url(/legacy/fonts/roboto/roboto-bold-italic-700.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-bold-italic-700.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-bold-italic-700.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-bold-italic-700.woff) format("woff"),url(/legacy/fonts/roboto/roboto-bold-italic-700.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-bold-italic-700.svg) format("svg")}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}html{scrollbar-color:#2c2c2c #222}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{border:none;background:hsla(0,0%,40%,.5)}body.theme-gabsocial-light::-webkit-scrollbar-thumb{background:hsla(0,0%,100%,.3)}::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,40%,.75)}body.theme-gabsocial-light::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,100%,.4)}::-webkit-scrollbar-thumb:active{background:#666}body.theme-gabsocial-light::-webkit-scrollbar-thumb:active{background:hsla(0,0%,100%,.5)}::-webkit-scrollbar-track{border:none;background:rgba(34,34,34,.5)}body.theme-gabsocial-light::-webkit-scrollbar-track{background:rgba(51,51,51,.3)}::-webkit-scrollbar-track:hover{background:rgba(34,34,34,.75)}body.theme-gabsocial-light::-webkit-scrollbar-track:hover{background:rgba(51,51,51,.4)}::-webkit-scrollbar-track:active{background:#222}body.theme-gabsocial-light::-webkit-scrollbar-track:active{background:rgba(51,51,51,.5)}::-webkit-scrollbar-corner{background:0 0}html{font-family:Roboto,Arial,sans-serif!important;font-weight:400;font-size:62.5%;-moz-text-size-adjust:100%;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizelegibility;font-feature-settings:"kern";-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent;color:#fff;background:#333}body.theme-gabsocial-light{color:#6c6c6c;background:#f2f3f6}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,gabsocial-font-sans-serif,sans-serif}body.app-body{position:absolute;width:100%;padding:0;overflow:hidden;overflow-y:scroll}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#333}body.with-modals{overflow-x:hidden;overflow-y:scroll}body.with-modals--active{overflow-y:hidden;margin-right:13px}body.player{text-align:center}body.embed{background:#3d3d3d;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#292929;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#999;background:#333;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog__illustration img{display:block;max-width:470px;width:100%;height:auto;margin-top:-120px}body.error .dialog h1{font-size:20px;line-height:28px;font-weight:400}button{font-family:inherit;cursor:pointer}button:focus{outline:none}.app-holder,.app-holder>div{display:flex;width:100%;height:100%;align-items:start;justify-content:center;outline:0!important}.visuallyhidden{border:0!important;clip:rect(1px,1px,1px,1px)!important;font-size:1px!important;height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.container-alt{width:700px;margin:40px auto 0}@media screen and (max-width:740px){.container-alt{width:100%;margin:0}}.logo-container{margin:0 auto 50px}@media screen and (max-width:500px){.logo-container{margin:0 auto 0}}.logo-container h1{display:flex;justify-content:center;align-items:center}.logo-container h1 img{height:42px;margin-right:10px}.logo-container h1 a{display:flex;justify-content:center;align-items:center;color:#fff;text-decoration:none;outline:0;padding:12px 16px;line-height:32px;font-family:gabsocial-font-display,sans-serif;font-weight:500;font-size:14px}.compose-standalone .compose-form{width:400px;padding:20px 0;margin:40px auto 0;box-sizing:border-box}@media screen and (max-width:400px){.compose-standalone .compose-form{width:100%;margin-top:0;padding:20px}}.account-header{width:400px;display:flex;font-size:13px;line-height:18px;box-sizing:border-box;padding:20px 0 0;margin:40px auto -30px}@media screen and (max-width:440px){.account-header{width:100%;margin:0 0 10px;padding:20px 20px 0}}.account-header .avatar{width:40px;height:40px;margin-right:8px}.account-header .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px}.account-header .name{flex:1 1 auto;color:#666;width:calc(100% - 88px)}.account-header .name .username{display:block;font-weight:500;text-overflow:ellipsis;overflow:hidden}.account-header .logout-link{display:block;font-size:32px;line-height:40px;margin-left:8px}.grid-3{display:grid;grid-gap:10px;grid-template-columns:3fr 1fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.grid-3 .column-0{grid-column:1/3;grid-row:1}.grid-3 .column-1{grid-column:1;grid-row:2}.grid-3 .column-2{grid-column:2;grid-row:2}.grid-3 .column-3{grid-column:1/3;grid-row:3}.grid-3 .landing-page__call-to-action{min-height:100%}@media screen and (max-width:738px){.grid-3{grid-template-columns:minmax(0,50%) minmax(0,50%)}.grid-3 .landing-page__call-to-action{padding:20px;display:flex;align-items:center;justify-content:center}.grid-3 .row__information-board{width:100%;justify-content:center;align-items:center}.grid-3 .row__mascot{display:none}}@media screen and (max-width:415px){.grid-3{grid-gap:0;grid-template-columns:minmax(0,100%)}.grid-3 .column-0{grid-column:1}.grid-3 .column-1{grid-column:1;grid-row:3}.grid-3 .column-2{grid-column:1;grid-row:2}.grid-3 .column-3{grid-column:1;grid-row:4}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .content{display:block;margin:40px 0}.public-layout .background-svg{display:block;position:absolute;height:100%;width:100%;min-height:580px;z-index:-1;background-image:url(/landing/wave.svg);background-repeat:no-repeat;background-position:bottom;background-size:cover}.public-layout .header{height:80px;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;padding:14px 0;box-sizing:border-box}@media screen and (max-width:1024px){.public-layout .header{padding:14px 20px}}.public-layout .header .header-container{display:flex;width:960px;align-items:stretch;justify-content:center;flex-wrap:nowrap}.public-layout .header .header-container>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:center;justify-content:flex-start;flex-wrap:nowrap}.public-layout .header .nav-center{display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap}.public-layout .header .nav-right{display:flex;align-items:center;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .nav-right .simple_form.new_user{display:flex;flex-direction:row;align-items:center}.public-layout .header .nav-right .simple_form.new_user .fields-group{display:flex;flex-direction:row;margin-bottom:0;position:relative}.public-layout .header .nav-right .simple_form.new_user .fields-group p.hint.subtle-hint{position:absolute;top:30px;left:160px}.public-layout .header .nav-right .simple_form.new_user .fields-group p.hint.subtle-hint a{padding:4px;border-radius:4px;background-color:#333}.public-layout .header .nav-right .simple_form.new_user .fields-group .input{margin-bottom:0;margin-right:10px}.public-layout .header .nav-right .simple_form.new_user .fields-group .input input{min-width:150px;font-size:14px}.public-layout .header .nav-right .simple_form.new_user .actions{display:flex;margin-top:0}.public-layout .header .nav-right .simple_form.new_user .actions .button{margin-bottom:0!important;line-height:38px!important;border:1px solid #333!important;height:38px!important;box-sizing:border-box!important;padding:0 18px!important;text-transform:none!important}.public-layout .header .brand{display:block}.public-layout .header .brand img{display:block;height:30px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .nav-link{display:flex;align-items:center;padding:12px 22px;font-size:14px;font-weight:600;text-decoration:none;color:#fff;white-space:nowrap;text-align:center}.public-layout .header .nav-link:active,.public-layout .header .nav-link:focus,.public-layout .header .nav-link:hover{text-decoration:underline;color:#fff}.public-layout .header .nav-link--hollow{background-color:#333}.public-layout .header .nav-link--hollow:active,.public-layout .header .nav-link--hollow:focus,.public-layout .header .nav-link--hollow:hover{color:#21cf7a}@media screen and (max-width:550px){.public-layout .header .nav-link{font-size:12px;padding:12px 10px}.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#21cf7a;margin:8px 8px 8px 0;border-radius:4px}.public-layout .header .nav-button:active,.public-layout .header .nav-button:focus,.public-layout .header .nav-button:hover{text-decoration:none;background:#1aa360}.public-layout .header .nav-button--hollow{background:0 0}.public-layout .header .nav-button--hollow:active,.public-layout .header .nav-button--hollow:focus,.public-layout .header .nav-button--hollow:hover{background:rgba(33,207,122,.2)}.public-layout .grid{display:grid;grid-gap:10px;grid-template-columns:minmax(300px,3fr) minmax(298px,1fr);grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.public-layout .grid .column-0{grid-row:1;grid-column:1}.public-layout .grid .column-1{grid-row:1;grid-column:2}@media screen and (max-width:600px){.public-layout .grid{grid-template-columns:100%;grid-gap:0}.public-layout .grid .column-1{display:none}}.public-layout .public-account-header{overflow:hidden;margin-bottom:10px;box-shadow:0 0 15px rgba(0,0,0,.2)}.public-layout .public-account-header.inactive{opacity:.5}.public-layout .public-account-header.inactive .avatar,.public-layout .public-account-header.inactive .public-account-header__image{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.public-layout .public-account-header.inactive .logo-button{background-color:#666}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#141414}.public-layout .public-account-header__image:after{content:"";display:block;position:absolute;width:100%;height:100%;box-shadow:inset 0 -1px 1px 1px rgba(0,0,0,.15);top:0;left:0}.public-layout .public-account-header__image img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0;border-radius:4px 4px 0 0}@media screen and (max-width:600px){.public-layout .public-account-header__image{height:200px}}.public-layout .public-account-header--no-bar{margin-bottom:0}.public-layout .public-account-header--no-bar .public-account-header__image,.public-layout .public-account-header--no-bar .public-account-header__image img{border-radius:4px}@media screen and (max-width:415px){.public-layout .public-account-header--no-bar .public-account-header__image,.public-layout .public-account-header--no-bar .public-account-header__image img{border-radius:0}}@media screen and (max-width:415px){.public-layout .public-account-header{margin-bottom:0;box-shadow:none}.public-layout .public-account-header__image:after{display:none}.public-layout .public-account-header__image,.public-layout .public-account-header__image img{border-radius:0}}.public-layout .public-account-header__bar{position:relative;margin-top:-80px;display:flex;justify-content:flex-start}.public-layout .public-account-header__bar:before{content:"";display:block;background:#3d3d3d;position:absolute;bottom:0;left:0;right:0;height:60px;border-radius:0 0 4px 4px;z-index:-1}.public-layout .public-account-header__bar .avatar{display:block;width:120px;height:120px;padding-left:16px;flex:0 0 auto}.public-layout .public-account-header__bar .avatar img{display:block;width:100%;height:100%;margin:0;border-radius:50%;border:4px solid #3d3d3d;background:#1f1f1f}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#3d3d3d;border-radius:0 0 4px 4px;padding:5px}.public-layout .public-account-header__bar:before{display:none}.public-layout .public-account-header__bar .avatar{width:48px;height:48px;padding:7px 0 7px 10px}.public-layout .public-account-header__bar .avatar img{border:0;border-radius:4px}}@media screen and (max-width:600px)and (max-width:360px){.public-layout .public-account-header__bar .avatar{display:none}}@media screen and (max-width:415px){.public-layout .public-account-header__bar{border-radius:0}}@media screen and (max-width:600px){.public-layout .public-account-header__bar{flex-wrap:wrap}}.public-layout .public-account-header__tabs{flex:1 1 auto;margin-left:20px}.public-layout .public-account-header__tabs__name{padding-top:20px;padding-bottom:8px}.public-layout .public-account-header__tabs__name h1{font-size:20px;line-height:27px;color:#fff;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-shadow:1px 1px 1px #000}.public-layout .public-account-header__tabs__name h1 small{display:block;font-size:14px;color:#fff;font-weight:400;overflow:hidden;text-overflow:ellipsis}@media screen and (max-width:600px){.public-layout .public-account-header__tabs{margin-left:15px;display:flex;justify-content:space-between;align-items:center}.public-layout .public-account-header__tabs__name{padding-top:0;padding-bottom:0}.public-layout .public-account-header__tabs__name h1{font-size:16px;line-height:24px;text-shadow:none}.public-layout .public-account-header__tabs__name h1 small{color:#999}}.public-layout .public-account-header__tabs__tabs{display:flex;justify-content:flex-start;align-items:stretch;height:58px}.public-layout .public-account-header__tabs__tabs .details-counters{display:flex;flex-direction:row;min-width:300px}@media screen and (max-width:600px){.public-layout .public-account-header__tabs__tabs .details-counters{display:none}}.public-layout .public-account-header__tabs__tabs .counter{width:33.3%;box-sizing:border-box;flex:0 0 auto;color:#999;padding:10px;border-right:1px solid #3d3d3d;cursor:default;text-align:center;position:relative}.public-layout .public-account-header__tabs__tabs .counter a{display:block}.public-layout .public-account-header__tabs__tabs .counter:last-child{border-right:0}.public-layout .public-account-header__tabs__tabs .counter:after{display:block;content:"";position:absolute;bottom:0;left:0;width:100%;border-bottom:4px solid #333;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #21cf7a;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#666}.public-layout .public-account-header__tabs__tabs .counter:hover:after{opacity:1;transition-duration:.1s}.public-layout .public-account-header__tabs__tabs .counter a{text-decoration:none;color:inherit}.public-layout .public-account-header__tabs__tabs .counter .counter-label{font-size:12px;display:block}.public-layout .public-account-header__tabs__tabs .counter .counter-number{font-weight:500;font-size:18px;margin-bottom:5px;color:#fff;font-family:gabsocial-font-display,sans-serif}.public-layout .public-account-header__tabs__tabs .spacer{flex:1 1 auto;height:1px}.public-layout .public-account-header__tabs__tabs__buttons{padding:7px 8px}.public-layout .public-account-header__extra{display:none;margin-top:4px}.public-layout .public-account-header__extra .public-account-bio{border-radius:0;box-shadow:none;background:0 0;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #525252}.public-layout .public-account-header__extra .public-account-bio .roles{display:none}.public-layout .public-account-header__extra__links{margin-top:-15px;font-size:14px;color:#999}.public-layout .public-account-header__extra__links a{display:inline-block;color:#999;text-decoration:none;padding:15px;font-weight:500}.public-layout .public-account-header__extra__links a strong{font-weight:700;color:#fff}@media screen and (max-width:600px){.public-layout .public-account-header__extra{display:block;flex:100%}}.public-layout .account__section-headline{border-radius:4px 4px 0 0}@media screen and (max-width:415px){.public-layout .account__section-headline{border-radius:0}}.public-layout .detailed-status__meta{margin-top:25px}.public-layout .public-account-bio{background:#474747;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px}@media screen and (max-width:415px){.public-layout .public-account-bio{box-shadow:none;margin-bottom:0;border-radius:0}}.public-layout .public-account-bio .account__header__fields{margin:0;border-top:0}.public-layout .public-account-bio .account__header__fields a{color:#39df8e}.public-layout .public-account-bio .account__header__fields dl:first-child .verified{border-radius:0 4px 0 0}.public-layout .public-account-bio .account__header__fields .verified a{color:#79bd9a}.public-layout .public-account-bio .account__header__content{padding:20px 20px 0;color:#fff}.public-layout .public-account-bio .roles,.public-layout .public-account-bio__extra{padding:20px;font-size:14px;color:#999}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#757575;font-size:18px}.public-layout .static-icon-button>span{font-size:14px;font-weight:500}.public-layout .card-grid{display:flex;flex-wrap:wrap;min-width:100%;margin:0 -5px}.public-layout .card-grid>div{box-sizing:border-box;flex:1 0 auto;width:300px;padding:0 5px;margin-bottom:10px;max-width:33.333%}@media screen and (max-width:900px){.public-layout .card-grid>div{max-width:50%}}@media screen and (max-width:600px){.public-layout .card-grid>div{max-width:100%}}@media screen and (max-width:415px){.public-layout .card-grid{margin:0;border-top:1px solid #474747}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #474747}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#333}.public-layout .card-grid>div .card__bar:active,.public-layout .card-grid>div .card__bar:focus,.public-layout .card-grid>div .card__bar:hover{background:#3d3d3d}}.no-list{list-style:none}.no-list li{display:inline-block;margin:0 5px}.recovery-codes{list-style:none;margin:0 auto}.recovery-codes li{font-size:125%;line-height:1.5;letter-spacing:1px}.public-layout .footer{display:flex;padding:40px 0;font-size:12px;justify-content:center;align-items:center;background-color:#404040;border-top:#1a1a1a}@media screen and (max-width:1024px){.public-layout .footer{padding:40px 20px}}.public-layout .footer .footer-container{display:flex;width:960px;flex-direction:row;flex-wrap:wrap;align-items:center}@media screen and (max-width:1024px){.public-layout .footer .footer-container{width:100%}}@media screen and (max-width:767px){.public-layout .footer .footer-container{flex-direction:column-reverse;justify-content:center}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#999;font-size:1.6rem;line-height:1.5}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer .copyright{margin-right:auto}.public-layout .footer .copyright span{color:#fff;font-size:1.3rem;font-weight:500;line-height:1.5}.public-layout .footer .copyright span:last-of-type{color:#ccc}.public-layout .footer ul{display:flex;flex-wrap:wrap;margin-left:auto}.public-layout .footer ul li a{text-decoration:none;color:#8a8a8a;font-size:1.3rem;font-weight:500;line-height:1.5;padding:10px 4px;margin-left:10px}.public-layout .footer ul li a:active,.public-layout .footer ul li a:focus,.public-layout .footer ul li a:hover{text-decoration:underline}@media screen and (max-width:767px){.public-layout .footer .copyright{margin:0 auto auto;text-align:center}.public-layout .footer ul{margin:0 auto 20px}}.compact-header h1{font-size:24px;line-height:28px;color:#999;font-weight:500;margin-bottom:20px;padding:0 10px;word-wrap:break-word}@media screen and (max-width:740px){.compact-header h1{text-align:center;padding:20px 10px 0}}.compact-header h1 a{color:inherit;text-decoration:none}.compact-header h1 small{font-weight:400;color:#666}.compact-header h1 img{display:inline-block;margin-bottom:-5px;margin-right:15px;width:36px;height:36px}.hero-widget{margin-bottom:10px;box-shadow:0 0 15px rgba(0,0,0,.2)}.hero-widget__img{width:100%;position:relative;overflow:hidden;border-radius:4px 4px 0 0;background:#000}.hero-widget__img img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0;border-radius:4px 4px 0 0}.hero-widget__text{background:#333;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#999;line-height:20px;word-wrap:break-word;font-weight:400}.hero-widget__text .emojione{width:20px;height:20px;margin:-3px 0 0}.hero-widget__text p{margin-bottom:20px}.hero-widget__text p:last-child{margin-bottom:0}.hero-widget__text em{display:inline;margin:0;padding:0;font-weight:700;background:0 0;font-family:inherit;font-size:inherit;line-height:inherit;color:#b3b3b3}.hero-widget__text a{color:#666;text-decoration:none}.hero-widget__text a:hover{text-decoration:underline}@media screen and (max-width:415px){.hero-widget{display:none}}.endorsements-widget{margin-bottom:10px;padding-bottom:10px}.endorsements-widget h4{padding:10px;text-transform:uppercase;font-weight:700;font-size:13px;color:#999}.endorsements-widget .account{padding:10px 0}.endorsements-widget .account:last-child{border-bottom:0}.endorsements-widget .account .account__display-name{display:flex;align-items:center}.endorsements-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.box-widget{padding:20px;border-radius:4px;background:#393939;box-shadow:0 0 1px 1px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;padding:20px;min-height:100%;border-radius:4px;background:#333;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget{font-size:15px;color:#999;line-height:20px;word-wrap:break-word;font-weight:400}.contact-widget strong{font-weight:500}.contact-widget p{margin-bottom:10px}.contact-widget p:last-child{margin-bottom:0}.contact-widget__mail{margin-top:10px}.contact-widget__mail a{color:#fff;text-decoration:none}.moved-account-widget{padding:15px 15px 20px;border-radius:4px;background:#333;box-shadow:0 0 15px rgba(0,0,0,.2);color:#666;font-weight:400;margin-bottom:10px}.moved-account-widget a,.moved-account-widget strong{font-weight:500}.moved-account-widget a:lang(ja),.moved-account-widget a:lang(ko),.moved-account-widget a:lang(zh-cn),.moved-account-widget a:lang(zh-hk),.moved-account-widget a:lang(zh-tw),.moved-account-widget strong:lang(ja),.moved-account-widget strong:lang(ko),.moved-account-widget strong:lang(zh-cn),.moved-account-widget strong:lang(zh-hk),.moved-account-widget strong:lang(zh-tw){font-weight:700}.moved-account-widget a{color:inherit;text-decoration:underline}.moved-account-widget a.mention,.moved-account-widget a.mention:active,.moved-account-widget a.mention:focus,.moved-account-widget a.mention:hover,.moved-account-widget a.mention span{text-decoration:none}.moved-account-widget a.mention:active span,.moved-account-widget a.mention:focus span,.moved-account-widget a.mention:hover span{text-decoration:underline}.moved-account-widget__message{margin-bottom:15px}.moved-account-widget__message .fa{margin-right:5px;color:#999}.moved-account-widget__card .detailed-status__display-avatar{position:relative;cursor:pointer}.moved-account-widget__card .detailed-status__display-name{margin-bottom:0;text-decoration:none}.moved-account-widget__card .detailed-status__display-name span{font-weight:400}.memoriam-widget{padding:20px;background:#000;font-size:14px;color:#999;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#474747;padding:60px 15px;text-align:center;margin:10px 0}.page-header h1{color:#fff;font-size:36px;line-height:1.1;font-weight:700;margin-bottom:10px}.page-header p{font-size:15px;color:#999}@media screen and (max-width:415px){.page-header{margin-top:0;background:#3d3d3d}.page-header h1{font-size:24px}}.directory{background:#333;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.directory__tag{box-sizing:border-box;margin-bottom:10px}.directory__tag>a,.directory__tag>div{display:flex;align-items:center;justify-content:space-between;background:#333;border-radius:4px;padding:15px;text-decoration:none;color:inherit;box-shadow:0 0 15px rgba(0,0,0,.2)}.directory__tag>a:active,.directory__tag>a:focus,.directory__tag>a:hover{background:#474747}.directory__tag.active>a{background:#21cf7a;cursor:default}.directory__tag.disabled>div{opacity:.5;cursor:default}.directory__tag h4{flex:1 1 auto;font-size:18px;font-weight:700;color:#fff;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.directory__tag h4 .fa{color:#999}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#999}.directory__tag.active h4,.directory__tag.active h4 .fa,.directory__tag.active h4 small{color:#fff}.directory__tag .avatar-stack{flex:0 0 auto;width:120px}.directory__tag.active .avatar-stack .account__avatar{border-color:#21cf7a}.avatar-stack{display:flex;justify-content:flex-end}.avatar-stack .account__avatar{flex:0 0 auto;width:36px;height:36px;border-radius:50%;position:relative;margin-left:-10px;background:#1f1f1f;border:2px solid #333}.avatar-stack .account__avatar:first-child{z-index:1}.avatar-stack .account__avatar:nth-child(2){z-index:2}.avatar-stack .account__avatar:nth-child(3){z-index:3}.accounts-table{width:100%}.accounts-table .account{padding:0;border:0}.accounts-table strong{font-weight:700}.accounts-table thead th{text-align:center;text-transform:uppercase;color:#999;font-weight:700;padding:10px}.accounts-table thead th:first-child{text-align:left}.accounts-table tbody td{padding:15px 0;vertical-align:middle;border-bottom:1px solid #474747}.accounts-table tbody tr:last-child td{border-bottom:0}.accounts-table__count{width:120px;text-align:center;font-size:15px;font-weight:500;color:#fff}.accounts-table__count small{display:block;color:#999;font-weight:400;font-size:14px}.accounts-table__comment{width:50%;vertical-align:initial!important}@media screen and (max-width:415px){.accounts-table tbody td.optional{display:none}}@media screen and (max-width:415px){.box-widget,.contact-widget,.directory,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget,.page-header{margin-bottom:0;box-shadow:none;border-radius:0}}.statuses-grid{min-height:600px}@media screen and (max-width:640px){.statuses-grid{width:100%!important}}.statuses-grid__item{width:313.3333333333px}@media screen and (max-width:1255px){.statuses-grid__item{width:306.6666666667px}}@media screen and (max-width:640px){.statuses-grid__item{width:100%}}@media screen and (max-width:415px){.statuses-grid__item{width:100vw}}.statuses-grid .detailed-status{border-radius:4px}@media screen and (max-width:415px){.statuses-grid .detailed-status{border-top:1px solid #5c5c5c}}.statuses-grid .detailed-status.compact .detailed-status__meta{margin-top:15px}.statuses-grid .detailed-status.compact .status__content{font-size:15px;line-height:20px}.statuses-grid .detailed-status.compact .status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.statuses-grid .detailed-status.compact .status__content .status__content__spoiler-link{line-height:20px;margin:0}.statuses-grid .detailed-status.compact .media-gallery,.statuses-grid .detailed-status.compact .status-card,.statuses-grid .detailed-status.compact .video-player{margin-top:15px}.notice-widget{color:#999}.notice-widget,.notice-widget p{margin-bottom:10px}.notice-widget p:last-child{margin-bottom:0}.notice-widget a{font-size:14px;line-height:20px;text-decoration:none;font-weight:500;color:#21cf7a}.notice-widget a:active,.notice-widget a:focus,.notice-widget a:hover{text-decoration:underline}code{font-family:gabsocial-font-monospace,monospace;font-weight:400}.form-container{max-width:400px;padding:20px;margin:0 auto}.simple_form .input{margin-bottom:15px;overflow:hidden}.simple_form .input.hidden{margin:0}.simple_form .input.radio_buttons .radio{margin-bottom:15px}.simple_form .input.radio_buttons .radio:last-child{margin-bottom:0}.simple_form .input.radio_buttons .radio>label{position:relative;padding-left:28px}.simple_form .input.radio_buttons .radio>label input{position:absolute;top:-2px;left:0}.simple_form .input.boolean{position:relative;margin-bottom:0}.simple_form .input.boolean .label_input>label{font-family:inherit;font-size:14px;padding-top:5px;color:#fff;display:block;width:auto}.simple_form .input.boolean .hint,.simple_form .input.boolean .label_input{padding-left:28px}.simple_form .input.boolean .label_input__wrapper{position:static}.simple_form .input.boolean label.checkbox{position:absolute;top:2px;left:0}.simple_form .input.boolean label a{color:#21cf7a;text-decoration:underline}.simple_form .input.boolean label a:active,.simple_form .input.boolean label a:focus,.simple_form .input.boolean label a:hover{text-decoration:none}.simple_form .row{display:flex;margin:0 -5px}.simple_form .row .input{box-sizing:border-box;flex:1 1 auto;width:50%;padding:0 5px}.simple_form .hint{color:#999}.simple_form .hint a{color:#21cf7a}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#141414}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#999}.simple_form p.hint.subtle-hint{text-align:center;font-size:12px;line-height:18px;margin-top:15px;margin-bottom:0}.simple_form .card{margin-bottom:15px}.simple_form strong{font-weight:500}.simple_form strong:lang(ja),.simple_form strong:lang(ko),.simple_form strong:lang(zh-cn),.simple_form strong:lang(zh-hk),.simple_form strong:lang(zh-tw){font-weight:700}.simple_form .input.with_floating_label .label_input{display:flex}.simple_form .input.with_floating_label .label_input>label{font-family:inherit;font-size:14px;color:#fff;font-weight:500;min-width:150px;flex:0 0 auto}.simple_form .input.with_floating_label .label_input input,.simple_form .input.with_floating_label .label_input select{flex:1 1 auto}.simple_form .input.with_floating_label.select .hint{margin-top:6px;margin-left:150px}.simple_form .input.with_label .label_input>label{font-family:inherit;font-size:14px;color:#fff;display:block;margin-bottom:8px;word-wrap:break-word;font-weight:500}.simple_form .input.with_label .hint{margin-top:6px}.simple_form .input.with_label ul{flex:390px}.simple_form .input.with_block_label{max-width:none}.simple_form .input.with_block_label>label{font-family:inherit;font-size:16px;color:#fff;display:block;font-weight:500;padding-top:5px}.simple_form .input.with_block_label .hint{margin-bottom:15px}.simple_form .input.with_block_label ul{-moz-columns:2;column-count:2}.simple_form .required abbr{text-decoration:none;color:#e87487}.simple_form .fields-group{margin-bottom:25px}.simple_form .fields-group .input:last-child{margin-bottom:0}.simple_form .fields-row{display:flex;padding-top:5px;margin:0 -10px 25px}.simple_form .fields-row .input{max-width:none}.simple_form .fields-row__column{box-sizing:border-box;padding:0 10px;flex:1 1 auto;min-height:1px}.simple_form .fields-row__column-6{max-width:50%}.simple_form .fields-row .fields-group:last-child,.simple_form .fields-row .fields-row__column.fields-group{margin-bottom:0}@media screen and (max-width:600px){.simple_form .fields-row{display:block;margin-bottom:0}.simple_form .fields-row__column{max-width:none}.simple_form .fields-row .fields-group:last-child,.simple_form .fields-row .fields-row__column,.simple_form .fields-row .fields-row__column.fields-group{margin-bottom:25px}}.simple_form .input.radio_buttons .radio label{margin-bottom:5px;font-family:inherit;font-size:14px;color:#fff;display:block;width:auto}.simple_form .check_boxes .checkbox label{font-family:inherit;font-size:14px;color:#fff;display:inline-block;width:auto;position:relative;padding-top:5px;padding-left:25px;flex:1 1 auto}.simple_form .check_boxes .checkbox input[type=checkbox]{position:absolute;left:0;top:5px;margin:0}.simple_form input[type=email],.simple_form input[type=number],.simple_form input[type=password],.simple_form input[type=text],.simple_form textarea{box-sizing:border-box;font-size:16px;color:#fff;display:block;width:100%;outline:0;font-family:inherit;resize:vertical;background:#1a1a1a;border:1px solid #0f0f0f;border-radius:4px;padding:10px}.simple_form input[type=email]:invalid,.simple_form input[type=number]:invalid,.simple_form input[type=password]:invalid,.simple_form input[type=text]:invalid,.simple_form textarea:invalid{box-shadow:none}.simple_form input[type=email]:focus:invalid:not(:placeholder-shown),.simple_form input[type=number]:focus:invalid:not(:placeholder-shown),.simple_form input[type=password]:focus:invalid:not(:placeholder-shown),.simple_form input[type=text]:focus:invalid:not(:placeholder-shown),.simple_form textarea:focus:invalid:not(:placeholder-shown){border-color:#e87487}.simple_form input[type=email]:required:valid,.simple_form input[type=number]:required:valid,.simple_form input[type=password]:required:valid,.simple_form input[type=text]:required:valid,.simple_form textarea:required:valid{border-color:#79bd9a}.simple_form input[type=email]:hover,.simple_form input[type=number]:hover,.simple_form input[type=password]:hover,.simple_form input[type=text]:hover,.simple_form textarea:hover{border-color:#000}.simple_form input[type=email]:active,.simple_form input[type=email]:focus,.simple_form input[type=number]:active,.simple_form input[type=number]:focus,.simple_form input[type=password]:active,.simple_form input[type=password]:focus,.simple_form input[type=text]:active,.simple_form input[type=text]:focus,.simple_form textarea:active,.simple_form textarea:focus{border-color:#21cf7a;background:#1f1f1f}.simple_form .input.field_with_errors label{color:#e87487}.simple_form .input.field_with_errors input[type=email],.simple_form .input.field_with_errors input[type=number],.simple_form .input.field_with_errors input[type=password],.simple_form .input.field_with_errors input[type=text],.simple_form .input.field_with_errors select,.simple_form .input.field_with_errors textarea{border-color:#e87487}.simple_form .input.field_with_errors .error{display:block;font-weight:500;color:#e87487;margin-top:4px}.simple_form .input.disabled{opacity:.5}.simple_form .actions{margin-top:30px;display:flex}.simple_form .actions.actions--top{margin-top:0;margin-bottom:30px}.simple_form .block-button,.simple_form .button,.simple_form button{display:block;width:100%;border:0;border-radius:4px;background:#21cf7a;color:#fff;font-size:18px;line-height:inherit;height:auto;padding:10px;text-transform:uppercase;text-decoration:none;text-align:center;box-sizing:border-box;cursor:pointer;font-weight:500;outline:0;margin-bottom:10px;margin-right:10px}.simple_form .block-button:last-child,.simple_form .button:last-child,.simple_form button:last-child{margin-right:0}.simple_form .block-button:hover,.simple_form .button:hover,.simple_form button:hover{background-color:#2cdd87}.simple_form .block-button:active,.simple_form .block-button:focus,.simple_form .button:active,.simple_form .button:focus,.simple_form button:active,.simple_form button:focus{background-color:#1db96d}.simple_form .block-button:disabled:hover,.simple_form .button:disabled:hover,.simple_form button:disabled:hover{background-color:#333}.simple_form .block-button.negative,.simple_form .button.negative,.simple_form button.negative{background:#df405a}.simple_form .block-button.negative:hover,.simple_form .button.negative:hover,.simple_form button.negative:hover{background-color:#e3566d}.simple_form .block-button.negative:active,.simple_form .block-button.negative:focus,.simple_form .button.negative:active,.simple_form .button.negative:focus,.simple_form button.negative:active,.simple_form button.negative:focus{background-color:#db2a47}.simple_form select{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;font-size:16px;color:#fff;display:block;width:100%;outline:0;font-family:inherit;resize:vertical;background:#1a1a1a url("data:image/svg+xml;utf8,") no-repeat right 8px center/auto 16px;border:1px solid #0f0f0f;border-radius:4px;padding-left:10px;padding-right:30px;height:41px}.simple_form .label_input__wrapper{position:relative}.simple_form .label_input__append{position:absolute;right:3px;top:1px;padding:10px 10px 9px;font-size:16px;color:#757575;font-family:inherit;pointer-events:none;cursor:default;max-width:140px;white-space:nowrap;overflow:hidden}.simple_form .label_input__append:after{content:"";display:block;position:absolute;top:0;right:0;bottom:1px;width:5px;background-image:linear-gradient(90deg,rgba(26,26,26,0),#1a1a1a)}.simple_form__overlay-area{position:relative}.simple_form__overlay-area__overlay{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(51,51,51,.65);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);border-radius:4px}.simple_form__overlay-area__overlay__content{text-align:center}.simple_form__overlay-area__overlay__content.rich-formatting,.simple_form__overlay-area__overlay__content.rich-formatting p{color:#fff}.block-icon{display:block;margin:0 auto 10px;font-size:24px}.flash-message{background:#474747;color:#999;border-radius:4px;padding:15px 10px;margin-bottom:30px;text-align:center}.flash-message.notice{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25);color:#79bd9a}.flash-message.alert{border:1px solid rgba(223,64,90,.5);background:rgba(223,64,90,.25);color:#df405a}.flash-message a{display:inline-block;color:#999;text-decoration:none}.flash-message a:hover{color:#fff;text-decoration:underline}.flash-message p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:gabsocial-font-monospace,monospace;background:#333;color:#fff;font-size:14px;margin:0}.flash-message .oauth-code::-moz-focus-inner{border:0}.flash-message .oauth-code::-moz-focus-inner,.flash-message .oauth-code:active,.flash-message .oauth-code:focus{outline:0!important}.flash-message .oauth-code:focus{background:#3d3d3d}.flash-message strong{font-weight:500}.flash-message strong:lang(ja),.flash-message strong:lang(ko),.flash-message strong:lang(zh-cn),.flash-message strong:lang(zh-hk),.flash-message strong:lang(zh-tw){font-weight:700}@media screen and (max-width:740px)and (min-width:441px){.flash-message{margin-top:40px}}.form-footer{margin-top:30px;text-align:center}.form-footer a{color:#999;text-decoration:none}.form-footer a:hover{text-decoration:underline}.quick-nav{list-style:none;margin-bottom:25px;font-size:14px}.quick-nav li{display:inline-block;margin-right:10px}.quick-nav a{color:#21cf7a;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#39df8e}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#999}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#666;font-weight:500}.follow-prompt strong:lang(ja),.follow-prompt strong:lang(ko),.follow-prompt strong:lang(zh-cn),.follow-prompt strong:lang(zh-hk),.follow-prompt strong:lang(zh-tw),.oauth-prompt strong:lang(ja),.oauth-prompt strong:lang(ko),.oauth-prompt strong:lang(zh-cn),.oauth-prompt strong:lang(zh-hk),.oauth-prompt strong:lang(zh-tw){font-weight:700}@media screen and (max-width:740px)and (min-width:441px){.follow-prompt,.oauth-prompt{margin-top:40px}}.qr-wrapper{display:flex;flex-wrap:wrap;align-items:flex-start}.qr-code{flex:0 0 auto;background:#fff;padding:4px;margin:0 10px 20px 0;box-shadow:0 0 15px rgba(0,0,0,.2);display:inline-block}.qr-code svg{display:block;margin:0}.qr-alternative{margin-bottom:20px;color:#666;flex:150px}.qr-alternative samp{display:block;font-size:14px}.table-form p{margin-bottom:15px}.table-form p strong{font-weight:500}.table-form p strong:lang(ja),.table-form p strong:lang(ko),.table-form p strong:lang(zh-cn),.table-form p strong:lang(zh-hk),.table-form p strong:lang(zh-tw){font-weight:700}.simple_form .warning,.table-form .warning{box-sizing:border-box;background:rgba(223,64,90,.5);color:#fff;text-shadow:1px 1px 0 rgba(0,0,0,.3);box-shadow:0 2px 6px rgba(0,0,0,.4);border-radius:4px;padding:10px;margin-bottom:15px}.simple_form .warning a,.table-form .warning a{color:#fff;text-decoration:underline}.simple_form .warning a:active,.simple_form .warning a:focus,.simple_form .warning a:hover,.table-form .warning a:active,.table-form .warning a:focus,.table-form .warning a:hover{text-decoration:none}.simple_form .warning strong,.table-form .warning strong{font-weight:600;display:block;margin-bottom:5px}.simple_form .warning strong:lang(ja),.simple_form .warning strong:lang(ko),.simple_form .warning strong:lang(zh-cn),.simple_form .warning strong:lang(zh-hk),.simple_form .warning strong:lang(zh-tw),.table-form .warning strong:lang(ja),.table-form .warning strong:lang(ko),.table-form .warning strong:lang(zh-cn),.table-form .warning strong:lang(zh-hk),.table-form .warning strong:lang(zh-tw){font-weight:700}.simple_form .warning strong .fa,.table-form .warning strong .fa{font-weight:400}.action-pagination{display:flex;flex-wrap:wrap;align-items:center}.action-pagination .actions,.action-pagination .pagination{flex:1 1 auto}.action-pagination .actions{padding:30px 20px 30px 0;flex:0 0 auto}.post-follow-actions{text-align:center;color:#999}.post-follow-actions div{margin-bottom:4px}.alternative-login{margin-top:20px;margin-bottom:20px}.alternative-login h4{font-size:16px;color:#fff;text-align:center;margin-bottom:20px;border:0;padding:0}.alternative-login .button{display:block}.scope-danger{color:#ff5050}.form_admin_settings_closed_registrations_message textarea,.form_admin_settings_custom_css textarea,.form_admin_settings_site_description textarea,.form_admin_settings_site_extended_description textarea,.form_admin_settings_site_short_description textarea,.form_admin_settings_site_terms textarea{font-family:gabsocial-font-monospace,monospace}.input-copy{background:#1a1a1a;border:1px solid #0f0f0f;border-radius:4px;display:flex;align-items:center;padding-right:4px;position:relative;top:1px;transition:border-color .3s linear}.input-copy__wrapper{flex:1 1 auto}.input-copy input[type=text]{background:0 0;border:0;padding:10px;font-size:14px;font-family:gabsocial-font-monospace,monospace}.input-copy button{flex:0 0 auto;margin:4px;text-transform:none;font-weight:400;font-size:14px;padding:7px 18px 6px;width:auto;transition:background .3s linear}.input-copy.copied{border-color:#79bd9a;transition:none}.input-copy.copied button{background:#79bd9a;transition:none}.connection-prompt{margin-bottom:25px}.connection-prompt .fa-link{background-color:#292929;border-radius:100%;font-size:24px;padding:10px}.connection-prompt__column{align-items:center;display:flex;flex:1;flex-direction:column;flex-shrink:1;max-width:50%}.connection-prompt__column-sep{align-self:center;flex-grow:0;overflow:visible;position:relative;z-index:1}.connection-prompt__column p{word-break:break-word}.connection-prompt .account__avatar{margin-bottom:20px}.connection-prompt__connection{background-color:#474747;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;padding:25px 10px;position:relative;text-align:center}.connection-prompt__connection:after{background-color:#292929;content:"";display:block;height:100%;left:50%;position:absolute;top:0;width:1px}.connection-prompt__row{align-items:flex-start;display:flex;flex-direction:row}.card>a{display:block;text-decoration:none;color:inherit;box-shadow:0 0 15px rgba(0,0,0,.2)}@media screen and (max-width:415px){.card>a{box-shadow:none}}.card>a:active .card__bar,.card>a:focus .card__bar,.card>a:hover .card__bar{background:#474747}.card__img{height:130px;position:relative;background:#141414;border-radius:4px 4px 0 0}.card__img img{display:block;width:100%;height:100%;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;border-radius:4px 4px 0 0}@media screen and (max-width:600px){.card__img{height:200px}}@media screen and (max-width:415px){.card__img{display:none}}.card__bar{position:relative;padding:15px;display:flex;justify-content:flex-start;align-items:center;background:#3d3d3d;border-radius:0 0 4px 4px}@media screen and (max-width:415px){.card__bar{border-radius:0}}.card__bar .avatar{flex:0 0 auto;width:48px;height:48px;padding-top:2px}.card__bar .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;background:#1f1f1f;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.card__bar .display-name{margin-left:15px;text-align:left}.card__bar .display-name strong{font-size:15px;color:#fff;font-weight:500;overflow:hidden;text-overflow:ellipsis}.card__bar .display-name span{display:block;font-size:14px;color:#999;font-weight:400;overflow:hidden;text-overflow:ellipsis}.pagination{padding:30px 0;text-align:center;overflow:hidden}.pagination .current,.pagination .gap,.pagination .newer,.pagination .older,.pagination .page,.pagination a{font-size:14px;color:#fff;font-weight:500;display:inline-block;padding:6px 10px;text-decoration:none}.pagination .current{background:#fff;border-radius:100px;color:#333;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#666}.pagination .older{float:left;padding-left:0}.pagination .older .fa{display:inline-block;margin-right:5px}.pagination .newer{float:right;padding-right:0}.pagination .newer .fa{display:inline-block;margin-left:5px}.pagination .disabled{cursor:default;color:#4d4d4d}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#333;box-shadow:0 0 15px rgba(0,0,0,.2);color:#999;font-size:14px;font-weight:500;text-align:center;display:flex;justify-content:center;align-items:center;cursor:default;border-radius:4px;padding:20px;min-height:30vh}.nothing-here--under-tabs{border-radius:0 0 4px 4px}.nothing-here--flexible{box-sizing:border-box;min-height:100%}.account-role{display:inline-block;padding:4px 6px;cursor:default;border-radius:3px;font-size:12px;line-height:12px;font-weight:500;color:#666;background-color:hsla(0,0%,40%,.1);border:1px solid hsla(0,0%,40%,.5)}.account-role.moderator{color:#79bd9a;background-color:rgba(121,189,154,.1);border-color:rgba(121,189,154,.5)}.account-role.admin{color:#e87487;background-color:rgba(232,116,135,.1);border-color:rgba(232,116,135,.5)}.account__header__fields{padding:0;margin:15px -15px -15px;border-bottom:0;border-top:0;border-color:#525252 currentcolor;border-style:solid none;border-width:1px 0;font-size:14px;line-height:20px}.account__header__fields dl{display:flex;border-bottom:1px solid #525252}.account__header__fields dd,.account__header__fields dt{box-sizing:border-box;padding:14px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header__fields dt{font-weight:500;width:120px;flex:0 0 auto;color:#666;background:rgba(31,31,31,.5)}.account__header__fields dd{flex:1 1 auto;color:#999}.account__header__fields a{color:#21cf7a;text-decoration:none}.account__header__fields a:active,.account__header__fields a:focus,.account__header__fields a:hover{text-decoration:underline}.account__header__fields .verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.account__header__fields .verified a{color:#79bd9a;font-weight:500}.account__header__fields .verified__mark{color:#79bd9a}.account__header__fields dl:last-child{border-bottom:0}.directory__tag .trends__item__current{width:auto}.pending-account__header{color:#999}.pending-account__header a{color:#666;text-decoration:none}.pending-account__header a:active,.pending-account__header a:focus,.pending-account__header a:hover{text-decoration:underline}.pending-account__header strong{color:#fff;font-weight:700}.pending-account__body{margin-top:10px}.activity-stream{box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px}@media screen and (max-width:415px){.activity-stream{margin-bottom:0;border-radius:0;box-shadow:none}}.activity-stream--headless{border-radius:0;margin:0;box-shadow:none}.activity-stream--headless .detailed-status,.activity-stream--headless .status{border-radius:0!important}.activity-stream div[data-component]{width:100%}.activity-stream .entry{background:#333}.activity-stream .entry .detailed-status,.activity-stream .entry .load-more,.activity-stream .entry .status{-webkit-animation:none;animation:none}.activity-stream .entry:last-child .detailed-status,.activity-stream .entry:last-child .load-more,.activity-stream .entry:last-child .status{border-bottom:0;border-radius:0 0 4px 4px}.activity-stream .entry:first-child .detailed-status,.activity-stream .entry:first-child .load-more,.activity-stream .entry:first-child .status{border-radius:4px 4px 0 0}.activity-stream .entry:first-child:last-child .detailed-status,.activity-stream .entry:first-child:last-child .load-more,.activity-stream .entry:first-child:last-child .status{border-radius:4px}@media screen and (max-width:740px){.activity-stream .entry .detailed-status,.activity-stream .entry .load-more,.activity-stream .entry .status{border-radius:0!important}}.activity-stream--highlighted .entry{background:#474747}.button.logo-button{flex:0 auto;font-size:14px;background:#21cf7a;color:#fff;text-transform:none;line-height:36px;height:auto;padding:3px 15px;border:0}.button.logo-button svg{width:20px;height:auto;vertical-align:middle;margin-right:5px;fill:#fff}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#42e193}.button.logo-button.disabled:active,.button.logo-button.disabled:focus,.button.logo-button.disabled:hover,.button.logo-button:disabled:active,.button.logo-button:disabled:focus,.button.logo-button:disabled:hover{background:#333}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}@media screen and (max-width:415px){.button.logo-button svg{display:none}}.embed .detailed-status,.public-layout .detailed-status{padding:15px}.embed .status,.public-layout .status{padding:15px 15px 15px 78px;min-height:50px}.embed .status__avatar,.public-layout .status__avatar{left:15px;top:17px}.embed .status__content,.public-layout .status__content{padding-top:5px}.embed .status__prepend,.public-layout .status__prepend{margin-left:78px;padding-top:15px}.embed .status__prepend-icon-wrapper,.public-layout .status__prepend-icon-wrapper{left:-32px}.embed .status .media-gallery,.embed .status .video-player,.embed .status__action-bar,.public-layout .status .media-gallery,.public-layout .status .video-player,.public-layout .status__action-bar{margin-top:10px}button.icon-button i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}button.icon-button i.fa-retweet:hover{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjODc4Nzg3JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOEM4QzhDJyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}button.icon-button.disabled i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjNTQ1NDU0JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}.icon-button.active i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjMjFjZjdhJyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjMjFjZjdhJyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#21cf7a;border:10px;border-radius:4px;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-block;font-family:inherit;font-size:14px;font-weight:500;height:36px;letter-spacing:0;line-height:36px;overflow:hidden;padding:0 16px;position:relative;text-align:center;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#42e193}.button--destructive{transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;transition:none}.button.disabled,.button:disabled{background-color:#333;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative{color:#333;background:#333}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#3d3d3d}.button.button-alternative-2{background:#757575}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:grey}.button.button-secondary{color:#999;background:0 0;padding:3px 15px;border:1px solid #333}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#3d3d3d;color:#a3a3a3}.button.button-secondary:disabled{opacity:.5}.button.button--block{display:block;width:100%}.column__wrapper{display:flex;flex:1 1 auto;position:relative}.icon-button{display:inline-block;padding:0;color:#999;border:none;background:0 0;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#878787;transition:color .2s ease-out}.icon-button.disabled{color:#545454;cursor:default}.icon-button.active{color:#21cf7a}.icon-button::-moz-focus-inner{border:0}.icon-button::-moz-focus-inner,.icon-button:active,.icon-button:focus{outline:0!important}.icon-button.inverted{color:#999}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#636363}.icon-button.inverted.disabled{color:#878787}.icon-button.inverted.active{color:#21cf7a}.icon-button.inverted.active.disabled{color:#4fe39b}.icon-button.overlayed{box-sizing:content-box;background:rgba(0,0,0,.6);color:hsla(0,0%,100%,.7);border-radius:4px;padding:2px}.icon-button.overlayed:hover{background:rgba(0,0,0,.9)}.text-icon-button{color:#999;border:none;background:0 0;cursor:pointer;font-weight:600;font-size:11px;padding:0 3px;line-height:27px;outline:0;transition:color .1s ease-in}.text-icon-button:active,.text-icon-button:focus,.text-icon-button:hover{color:#636363;transition:color .2s ease-out}.text-icon-button.disabled{color:#a8a8a8;cursor:default}.text-icon-button.active{color:#21cf7a}.text-icon-button::-moz-focus-inner{border:0}.text-icon-button::-moz-focus-inner,.text-icon-button:active,.text-icon-button:focus{outline:0!important}.invisible{font-size:0!important;line-height:0!important;display:inline-block;width:0;height:0;position:absolute}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:"…"}.timeline-compose-block{display:flex;align-items:flex-start;padding:20px;margin-bottom:20px;border-radius:10px;background:#222}body.theme-gabsocial-light .timeline-compose-block{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.timeline-compose-block .emoji-picker-wrapper .emoji-picker-dropdown{top:10px}.timeline-compose-block .compose-form{flex:1 1;padding:0 0 0 20px!important;position:relative}.timeline-compose-block .compose-form .compose-form__autosuggest-wrapper:before{content:"";display:block;position:absolute;height:0;width:0;border:11px solid transparent;border-right:12px solid #fff;left:-22px;top:13px}.timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{padding:14px 32px 13px 10px!important}body.theme-gabsocial-light .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{background:#f2f3f6}.no-reduce-motion .spoiler-input{transition:height .4s ease,opacity .4s ease}.emojione{font-family:"object-fit:contain",inherit;vertical-align:middle;-o-object-fit:contain;object-fit:contain;margin:-.2ex .15em .2ex;width:16px;height:16px}.emojione img{width:auto}.reply-indicator{border-radius:4px;margin-bottom:10px;background:#f2f3f6;padding:10px;min-height:23px;overflow-y:auto;flex:0 2 auto;max-height:500px}@media screen and (min-width:320px)and (max-width:375px){.reply-indicator{max-height:220px}}@media screen and (max-width:320px){.reply-indicator{max-height:130px}}.reply-indicator__header{margin-bottom:5px;overflow:hidden}.reply-indicator__cancel{float:right;line-height:24px}.reply-indicator__display-name{color:#333;display:block;max-width:100%;line-height:24px;overflow:hidden;padding-right:25px;text-decoration:none}.reply-indicator__display-avatar{float:left;margin-right:5px}.status__content--with-action{cursor:pointer}.reply-indicator__content,.status__content{position:relative;font-size:15px;line-height:20px;word-wrap:break-word;font-weight:400;overflow:hidden;text-overflow:ellipsis;padding-top:2px;color:#fff}.reply-indicator__content:focus,.status__content:focus{outline:0}.reply-indicator__content.status__content--with-spoiler,.status__content.status__content--with-spoiler{white-space:normal}.reply-indicator__content.status__content--with-spoiler .status__content__text,.status__content.status__content--with-spoiler .status__content__text{white-space:pre-wrap}.reply-indicator__content .emojione,.status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.reply-indicator__content p,.status__content p{margin-bottom:20px;white-space:pre-wrap}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:2px}.reply-indicator__content a,.status__content a{color:#21cf7a;text-decoration:none}.reply-indicator__content a:hover,.status__content a:hover{text-decoration:underline}.reply-indicator__content a:hover .fa,.status__content a:hover .fa{color:#878787}.reply-indicator__content a.mention:hover,.status__content a.mention:hover{text-decoration:none}.reply-indicator__content a.mention:hover span,.status__content a.mention:hover span{text-decoration:underline}.reply-indicator__content a .fa,.status__content a .fa{color:#757575}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#757575}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#878787;text-decoration:none}.reply-indicator__content .status__content__spoiler-link::-moz-focus-inner,.status__content .status__content__spoiler-link::-moz-focus-inner{border:0}.reply-indicator__content .status__content__spoiler-link::-moz-focus-inner,.reply-indicator__content .status__content__spoiler-link:active,.reply-indicator__content .status__content__spoiler-link:focus,.status__content .status__content__spoiler-link::-moz-focus-inner,.status__content .status__content__spoiler-link:active,.status__content .status__content__spoiler-link:focus{outline:0!important}.reply-indicator__content .status__content__text,.status__content .status__content__text{display:none}.reply-indicator__content .status__content__text.status__content__text--visible,.status__content .status__content__text.status__content__text--visible{display:block}.status__content.status__content--collapsed{max-height:200px}.status__content__read-more-button{display:block;font-size:15px;line-height:20px;color:#21cf7a;border:0;background:0 0;padding:8px 0 0}.status__content__read-more-button:active,.status__content__read-more-button:hover{text-decoration:underline}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:0 0;border:0;color:#333;font-weight:700;font-size:11px;padding:0 6px;text-transform:uppercase;line-height:20px;cursor:pointer;vertical-align:middle}.status__wrapper--filtered{color:#757575;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;box-sizing:border-box;width:100%;clear:both;border-bottom:1px solid #474747}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#3d3d3d}.focusable:focus .status.status-direct{background:#525252}.focusable:focus .status.status-direct.muted{background:0 0}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#474747}.status{padding:8px 10px 8px 68px;position:relative;min-height:54px;border-bottom:1px solid #474747;cursor:default;opacity:1;-webkit-animation:fade .15s linear;animation:fade .15s linear}@supports(-ms-overflow-style:-ms-autohiding-scrollbar){.status{padding-right:26px}}@-webkit-keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes fade{0%{opacity:0}to{opacity:1}}.status .video-player{margin-top:8px}.status.status-direct:not(.read){background:#474747;border-bottom-color:#525252}.status.light .display-name span,.status.light .display-name strong,.status.light .status__content,.status.light .status__display-name,.status.light .status__relative-time{color:#333}.status.light .status__content a{color:#21cf7a}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#333}.status.light .status__content a.status__content__spoiler-link:hover{background:#474747}.status__quote{display:block;color:#fff;text-decoration:none;border:1px solid #666;border-radius:10px;padding:10px 15px;margin-top:15px}.status__meta{font-size:14px;color:#999}.status__meta a{color:#21cf7a;font-weight:700;text-decoration:none}.status__meta a:hover{text-decoration:underline}.notification-favourite .status.status-direct{background:0 0}.notification-favourite .status.status-direct .icon-button.disabled{color:#969696}.notification__relative_time,.status__relative-time{color:#757575;float:right;font-size:14px}.status__display-name{color:#757575}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px;z-index:4}.status-check-box{border-bottom:1px solid #666;display:flex}.status-check-box .status-check-box__status{margin:10px 0 10px 10px;flex:1}.status-check-box .status-check-box__status .media-gallery{max-width:250px}.status-check-box .status-check-box__status .status__content{padding:0;white-space:normal}.status-check-box .status-check-box__status .video-player{margin-top:8px;max-width:250px}.status-check-box .status-check-box__status .media-gallery__item-thumbnail{cursor:default}.status-check-box-toggle{align-items:center;display:flex;flex:0 0 auto;justify-content:center;padding:10px}.status__prepend{margin-left:68px;color:#757575;padding:8px 0 2px;font-size:14px;position:relative}.status__prepend--promoted{border:0!important;background:0 0!important;background-color:transparent!important}.status__prepend .status__display-name strong{color:#757575}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:25px;z-index:4}.status__action-bar__counter{display:inline-flex;margin-right:22px;align-items:center}.status__action-bar__counter .status__action-bar-button{margin-right:4px}.status__action-bar__counter__label{display:inline-block;width:14px;font-size:12px;font-weight:500;color:#757575}.status__action-bar-button{margin-right:18px}.status__action-bar-dropdown{height:23.15px;width:23.15px}.detailed-status__action-bar-dropdown{flex:1 1 auto;display:flex;align-items:center;justify-content:center;position:relative}.detailed-status{background:#3d3d3d;padding:14px 10px}.detailed-status--flex{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start}.detailed-status--flex .detailed-status__meta,.detailed-status--flex .status__content{flex:100%}.detailed-status .status__content{font-size:19px;line-height:24px}.detailed-status .status__content .emojione{width:24px;height:24px;margin:-1px 0 0}.detailed-status .status__content .status__content__spoiler-link{line-height:24px;margin:-1px 0 0}.detailed-status .video-player{margin-top:8px}.detailed-status__meta{margin-top:15px;color:#757575;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#3d3d3d;border-top:1px solid #474747;border-bottom:1px solid #474747;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:#757575;cursor:pointer;text-decoration:none;font-size:13px}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#6c6c6c;font-size:14px}.reply-indicator__content a{color:#757575}.domain{padding:10px;border-bottom:1px solid #474747}.domain .domain__domain-name{flex:1 1 auto;display:block;color:#fff;text-decoration:none;font-size:14px;font-weight:500}.domain__wrapper{display:flex}.domain_buttons{height:18px;padding:10px;white-space:nowrap}.account{padding:10px}.account:not(:last-of-type){border-bottom:1px solid #474747}.account.compact{padding:0;border-bottom:0}.account.compact .account__avatar-wrapper{margin-left:0}.account .account__display-name{flex:1 1 auto;display:block;color:#999;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-right:12px}.account__avatar{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative;background-color:#333}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}.account__avatar-composite{overflow:hidden}.account__avatar-composite,.account__avatar-composite>div{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.account__avatar-composite>div{float:left;position:relative;box-sizing:border-box}a .account__avatar{cursor:pointer}.account__avatar-overlay{width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:36px;height:36px;background-size:36px 36px}.account__avatar-overlay-overlay{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:24px;height:24px;background-size:24px 24px;position:absolute;bottom:0;right:0;z-index:1}.account__relationship{height:auto;padding:0 0 0 5px;position:relative}.account__relationship .dismiss-account-btn{display:block;margin-bottom:5px}.account__disclaimer{padding:10px;border-top:1px solid #474747;color:#757575}.account__disclaimer strong{font-weight:500}.account__disclaimer strong:lang(ja),.account__disclaimer strong:lang(ko),.account__disclaimer strong:lang(zh-cn),.account__disclaimer strong:lang(zh-hk),.account__disclaimer strong:lang(zh-tw){font-weight:700}.account__disclaimer a{font-weight:500;color:inherit;text-decoration:underline}.account__disclaimer a:active,.account__disclaimer a:focus,.account__disclaimer a:hover{text-decoration:none}.account__action-bar{border-top:1px solid #474747;border-bottom:1px solid #474747;line-height:36px;overflow:hidden;flex:0 0 auto;display:flex}.account__action-bar-dropdown{padding:10px}.account__action-bar-dropdown .icon-button{vertical-align:middle}.account__action-bar-dropdown .dropdown--active .dropdown__content.dropdown__right{left:6px;right:auto}.account__action-bar-dropdown .dropdown--active:after{bottom:auto;margin-left:11px;margin-top:-7px;right:auto}.account__action-bar-links{display:flex;flex:1 1 auto;line-height:18px;text-align:center}.account__action-bar__tab{text-decoration:none;overflow:hidden;flex:0 1 100%;border-right:1px solid #474747;padding:10px 0;border-bottom:4px solid transparent}.account__action-bar__tab.active{border-bottom:4px solid #21cf7a}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#999}.account__action-bar__tab strong{display:block;font-size:15px;font-weight:500;color:#fff}.account__action-bar__tab strong:lang(ja),.account__action-bar__tab strong:lang(ko),.account__action-bar__tab strong:lang(zh-cn),.account__action-bar__tab strong:lang(zh-hk),.account__action-bar__tab strong:lang(zh-tw){font-weight:700}.account-authorize{padding:14px 10px}.account-authorize .detailed-status__display-name{display:block;margin-bottom:15px;overflow:hidden}.account-authorize__avatar{float:left;margin-right:10px}.account__display-name,.detailed-status__application,.detailed-status__datetime,.detailed-status__display-name,.status__display-name,.status__relative-time{text-decoration:none}.account__display-name strong,.status__display-name strong{color:#fff}.muted .emojione{opacity:.5}.detailed-status__display-name:hover strong,.reply-indicator__display-name:hover strong,.status__display-name:hover strong,a.account__display-name:hover strong{text-decoration:underline}.account__display-name strong{display:block;overflow:hidden;text-overflow:ellipsis}.detailed-status__application,.detailed-status__datetime{color:inherit}.detailed-status__display-name{color:#666;display:block;line-height:24px;margin-bottom:15px;overflow:hidden}.detailed-status__display-name span,.detailed-status__display-name strong{display:block;text-overflow:ellipsis;overflow:hidden}.detailed-status__display-name strong{font-size:16px;color:#fff}.detailed-status__display-avatar{float:left;margin-right:10px}.status__avatar{height:48px;left:10px;position:absolute;top:10px;width:48px}.status__expand{width:68px;position:absolute;left:0;top:0;height:100%;cursor:pointer}.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#757575}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#757575;color:#333}.muted a.status__content__spoiler-link:hover{background:#878787;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#999;font-size:15px;line-height:22px;position:relative}.notification__message .fa{color:#21cf7a}.notification__message>span{display:inline;overflow:hidden;text-overflow:ellipsis}.notification__favourite-icon-wrapper{left:-26px;position:absolute}.notification__favourite-icon-wrapper .star-icon,.star-icon.active{color:#ca8f04}.notification__display-name{color:inherit;font-weight:500;text-decoration:none}.notification__display-name:hover{color:#fff;text-decoration:underline}.notification__relative_time{float:right}.display-name{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.display-name__html{font-weight:600;padding-right:4px}.display-name__account{font-size:14px}.display-name .emojione[alt=":verified:"]{display:none}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.image-loader{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column}.image-loader .image-loader__preview-canvas{max-width:100%;max-height:80%;background:url(/packs/media/images/void-4c8270c17facce6d53726a2ebb9745f2.png) repeat;-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain}.image-loader .loading-bar{position:relative}.image-loader.image-loader--amorphous .image-loader__preview-canvas{display:none}.zoomable-image{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.zoomable-image img{max-width:100%;max-height:80%;width:auto;height:auto;-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain}.navigation-bar{padding:10px;display:flex;align-items:center;flex-shrink:0;cursor:default;color:#999}.navigation-bar strong{color:#666}.navigation-bar a{color:inherit}.navigation-bar .permalink{text-decoration:none}.navigation-bar .navigation-bar__actions{position:relative}.navigation-bar .navigation-bar__actions .icon-button.close{position:absolute;pointer-events:none;transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;transform:scale(1) translate(0);opacity:1}.navigation-bar__profile{flex:1 1 auto;margin-left:8px;line-height:20px;margin-top:-1px;overflow:hidden}.navigation-bar__profile-account{display:block;font-weight:500;overflow:hidden;text-overflow:ellipsis}.navigation-bar__profile-edit{color:inherit;text-decoration:none}.columns-area{display:flex;flex:1 1 auto;flex-direction:row;justify-content:flex-start;position:relative}.columns-area__panels{display:flex;justify-content:center;width:100%;height:100%}.columns-area__panels__pane{height:100%;pointer-events:none;display:flex;justify-content:flex-end;padding-top:15px}.columns-area__panels__pane--start{justify-content:flex-start}.columns-area__panels__pane__inner{width:265px;pointer-events:auto;height:100%}.columns-area__panels__main{display:flex;flex-direction:column;box-sizing:border-box;width:100%;max-width:600px;padding:0 20px}@media screen and (max-width:375px){.columns-area__panels__main{padding:0 10px}}@media screen and (min-width:895px){.columns-area__panels__main{margin:0 20px;padding:0}}.react-swipeable-view-container,.react-swipeable-view-container .column,.react-swipeable-view-container .columns-area,.react-swipeable-view-container .drawer{height:100%}.react-swipeable-view-container>*{display:flex;align-items:center;justify-content:center;height:100%}.column{width:350px;position:relative;box-sizing:border-box;display:flex;flex-direction:column}.column article{background:#222}.ui{display:block;width:100%;padding:0 0 100px}.ui .page{display:flex;flex-direction:column;width:100%}.ui .page__top{display:flex;width:100%;height:auto;z-index:105}@media(min-width:895px){.ui .page__top{top:-290px;position:-webkit-sticky;position:sticky}}.ui .page__columns{width:100%;height:100%}.drawer,.ui .page__columns{display:flex;flex-direction:column}.drawer{width:300px;box-sizing:border-box;overflow-y:hidden}.drawer__tab{display:block;flex:1 1 auto;padding:15px 5px 13px;color:#999;text-decoration:none;text-align:center;font-size:16px;border-bottom:2px solid transparent}.column,.drawer{flex:1 1 100%;overflow:hidden}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{flex:0 0 auto;padding:10px 5px}.column:first-child,.drawer:first-child{padding-left:10px}.column:last-child,.drawer:last-child{padding-right:10px}.columns-area>div .column,.columns-area>div .drawer{padding-left:5px;padding-right:5px}}.account__avatar{width:56px;height:56px;background-size:cover}.columns-area--mobile{display:block;flex-direction:column;width:100%;margin:0 auto}.columns-area--mobile .column,.columns-area--mobile .drawer{width:100%;height:100%;padding:0}.columns-area--mobile .autosuggest-textarea__textarea{font-size:16px}.columns-area--mobile .search__input{line-height:18px;font-size:16px;padding:15px 30px 15px 15px}.columns-area--mobile .search__icon .fa{top:15px}@media screen and (min-width:360px){.columns-area--mobile{padding:15px 0}}@media screen and (min-width:630px){.columns-area--mobile .detailed-status{padding:15px}.columns-area--mobile .detailed-status .media-gallery,.columns-area--mobile .detailed-status .video-player{margin-top:15px}.columns-area--mobile .account__header__bar{padding:5px 10px}.columns-area--mobile .compose-form,.columns-area--mobile .navigation-bar{padding:15px}.columns-area--mobile .compose-form .compose-form__publish .compose-form__publish-button-wrapper{padding-top:15px}.columns-area--mobile .status{padding:15px 15px 15px 78px;min-height:50px}.columns-area--mobile .status__avatar{left:15px;top:17px}.columns-area--mobile .status__content{padding-top:5px}.columns-area--mobile .status__prepend{margin-left:78px;padding-top:15px}.columns-area--mobile .status__prepend-icon-wrapper{left:-32px}.columns-area--mobile .status .media-gallery,.columns-area--mobile .status .video-player{margin-top:10px}.columns-area--mobile .account{padding:15px 10px}.columns-area--mobile .notification__message{margin-left:78px;padding-top:15px}.columns-area--mobile .notification__favourite-icon-wrapper{left:-32px}.columns-area--mobile .notification .account,.columns-area--mobile .notification .status{padding-top:8px}.columns-area--mobile .notification .account__avatar-wrapper{margin-left:17px;margin-right:15px}}.floating-action-button{z-index:1000;display:none;position:fixed;bottom:82px;right:14px;width:61px;height:52px;background-image:url(/packs/media/images/sprite-main-navigation-adf3dd71f4d17d0c548676ef4da8544c.png);background-repeat:no-repeat;background-size:161px 152px;background-position:-100px 0;background-color:transparent;border:none}@media screen and (max-width:895px){.floating-action-button{display:flex}}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background-position:-100px -100px}@media screen and (min-width:360px){.getting-started__trends,.getting-started__wrapper,.search{margin-bottom:10px}}@media screen and (max-width:895px){.columns-area__panels__pane--left{display:none}}@media screen and (min-width:895px){.search-page .search{display:none}}@media screen and (max-width:1190px){.columns-area__panels__pane--right{display:none}}.icon-with-badge{position:relative}.icon-with-badge__badge{position:absolute;box-sizing:border-box;left:-10px;top:1px;min-width:16px;height:16px;padding:1px 3px 0;border-radius:8px;text-align:center;font-family:Montserrat,Arial,sans-serif!important;font-size:14px;font-size:1.4rem;line-height:14px;line-height:1.4rem;color:#fff;background:#cc6643}.column-link--transparent .icon-with-badge__badge{border-color:#1f1f1f}.promo-panel{margin-top:10px;background-color:transparent!important;overflow:hidden}.promo-panel-item{display:block;height:42px;line-height:42px;border-bottom:1px solid #474747;background:#222}body.theme-gabsocial-light .promo-panel-item{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.promo-panel-item--highlighted{background-color:#30ce7d;border-radius:10px;font-weight:600;margin-bottom:10px}.promo-panel-item--top-rounded{border-top-right-radius:10px;border-top-left-radius:10px}.promo-panel-item:last-of-type{border-bottom:none}.promo-panel-item__btn{display:block;text-align:left;color:#fff;text-decoration:none;font-size:15px;padding:0 20px}.promo-panel-item__btn--special i{color:#30ce7d}.promo-panel-item__btn:hover{color:#dbdbdb}.promo-panel-item__btn:hover span{text-decoration:underline}.promo-panel-item__icon{margin-right:12px}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{top:0;left:0;background:#545454;flex-direction:column;overflow-y:auto;width:100%;height:100%}.drawer__inner.darker{background:#333}.drawer__inner__gabsocial{background:#545454 url('data:image/svg+xml;utf8,') no-repeat bottom/100% auto;flex:1;min-height:47px;display:none}.drawer__inner__gabsocial>img{display:block;-o-object-fit:contain;font-family:"object-fit:contain;object-position:bottom left";object-fit:contain;-o-object-position:bottom left;object-position:bottom left;width:100%;height:100%;pointer-events:none;user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (min-height:640px){.drawer__inner__gabsocial{display:block}}.pseudo-drawer{background:#545454;font-size:13px;text-align:left}.drawer__header{flex:0 0 auto;font-size:16px;background:#474747;margin-bottom:10px;display:flex;flex-direction:row}.drawer__header a{transition:background .1s ease-in}.drawer__header a:hover{background:#3b3b3b;transition:background .2s ease-out}.slist--flex{display:flex;flex-direction:column}.slist__append{flex:1 1 auto;position:relative;min-height:120px}.column-back-button{background:#3d3d3d;color:#21cf7a;cursor:pointer;flex:0 0 auto;font-size:16px;line-height:inherit;border:0;text-align:unset;padding:15px;margin:0;z-index:3;outline:0}.column-back-button:hover{text-decoration:underline}.column-header__back-button{background:#3d3d3d;border:0;font-family:inherit;color:#21cf7a;cursor:pointer;white-space:nowrap;font-size:16px;padding:0 5px 0 0;z-index:3}.column-header__back-button:hover{text-decoration:underline}.column-header__back-button:last-child{padding:0 15px 0 0}.column-back-button__icon{display:inline-block;margin-right:5px}.column-back-button--slim{position:relative}.column-back-button--slim-button{cursor:pointer;flex:0 0 auto;font-size:16px;padding:15px;position:absolute;right:0;top:-48px}.react-toggle{display:inline-block;position:relative;cursor:pointer;background-color:transparent;border:0;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}.react-toggle-screenreader-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.react-toggle--disabled{cursor:not-allowed;opacity:.5;transition:opacity .25s}.react-toggle-track{width:50px;height:24px;padding:0;border-radius:30px;background-color:#333;transition:background-color .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#1a1a1a}.react-toggle--checked .react-toggle-track{background-color:#21cf7a}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#42e193}.react-toggle-track-check{position:absolute;width:14px;height:10px;top:0;bottom:0;margin-top:auto;margin-bottom:auto;line-height:0;left:8px;opacity:0;transition:opacity .25s ease}.react-toggle--checked .react-toggle-track-check,.react-toggle-track-x{opacity:1;transition:opacity .25s ease}.react-toggle-track-x{position:absolute;width:10px;height:10px;top:0;bottom:0;margin-top:auto;margin-bottom:auto;line-height:0;right:10px}.react-toggle--checked .react-toggle-track-x{opacity:0}.react-toggle-thumb{position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #333;border-radius:50%;background-color:#fafafa;box-sizing:border-box;transition:all .25s ease;transition-property:border-color,left}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#21cf7a}.column-link{background:#474747;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:active,.column-link:focus,.column-link:hover{background:#4f4f4f}.column-link:focus{outline:0}.column-link--transparent{background:0 0;color:#666}.column-link--transparent:active,.column-link--transparent:focus,.column-link--transparent:hover{background:0 0;color:#fff}.column-link--transparent.active{color:#21cf7a}.column-link__icon{display:inline-block;margin-right:5px}.column-link__badge{display:inline-block;border-radius:4px;line-height:19px;padding:4px 8px;margin:-6px 10px}.column-link__badge,.column-subheading{font-size:12px;font-weight:500;background:#333}.column-subheading{color:#757575;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#333}.getting-started__wrapper{flex:0 0 auto}.flex-spacer{flex:1 1 auto}.getting-started{color:#757575;overflow:auto}.getting-started__footer{flex:0 0 auto;padding:20px 10px 10px}.getting-started__footer ul{margin-bottom:10px}.getting-started__footer ul li{display:inline}.getting-started__footer p{color:#757575;font-size:13px;margin-bottom:20px}.getting-started__footer p a{color:#999;text-decoration:underline}.getting-started__footer a{text-decoration:none;color:#999}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover{text-decoration:underline}.getting-started__trends{background:#333;flex:0 1 auto}@media screen and (max-height:810px){.getting-started__trends .trends__item:nth-child(3){display:none}}@media screen and (max-height:720px){.getting-started__trends .trends__item:nth-child(2){display:none}}@media screen and (max-height:670px){.getting-started__trends{display:none}}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px}@media screen and (max-width:960px){.keyboard-shortcuts{height:90vh}}.keyboard-shortcuts__header{display:block;position:relative;border-bottom:1px solid #474747;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.keyboard-shortcuts__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#fff;text-align:center}.keyboard-shortcuts__close{position:absolute;right:10px;top:10px}.keyboard-shortcuts__content{display:flex;flex-direction:row;padding:15px}@media screen and (max-width:960px){.keyboard-shortcuts__content{flex-direction:column;overflow:hidden;overflow-y:scroll;height:calc(100% - 80px);-webkit-overflow-scrolling:touch}}.keyboard-shortcuts table thead{display:block;padding-left:10px;margin-bottom:10px;color:#fff;font-size:16px;font-weight:600}.keyboard-shortcuts table tr{font-size:12px}.keyboard-shortcuts table td{padding:0 10px 8px}.keyboard-shortcuts table kbd{display:inline-block;padding:2px 8px;background-color:#474747;border:1px solid #292929;border-radius:4px}.setting-text{color:#999;background:0 0;border:none;border-bottom:2px solid #333;box-sizing:border-box;display:block;font-family:inherit;margin-bottom:10px;padding:7px 0;width:100%}.setting-text:active,.setting-text:focus{color:#fff;border-bottom-color:#21cf7a}@media screen and (max-width:600px){.setting-text{font-size:16px}}.no-reduce-motion button.icon-button i.fa-retweet{background-position:0 0;height:19px;transition:background-position .9s steps(10);transition-duration:0s;vertical-align:middle;width:22px}.no-reduce-motion button.icon-button i.fa-retweet:before{display:none!important}.no-reduce-motion button.icon-button.active i.fa-retweet{transition-duration:.9s;background-position:0 100%}.status-card{display:flex;font-size:15px;border:1px solid #525252;border-radius:4px;color:#757575;margin-top:14px;text-decoration:none;overflow:hidden;flex-direction:column}.status-card__actions{bottom:0;left:0;position:absolute;right:0;top:0}.status-card__actions,.status-card__actions>div{display:flex;justify-content:center;align-items:center}.status-card__actions>div{background:rgba(0,0,0,.6);border-radius:8px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:0 0;border:0;padding:0 8px;text-decoration:none;font-size:18px;line-height:18px}.status-card__actions a:active,.status-card__actions a:focus,.status-card__actions a:hover,.status-card__actions button:active,.status-card__actions button:focus,.status-card__actions button:hover{color:#fff}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#474747}.status-card-photo{cursor:zoom-in;display:block;text-decoration:none;width:100%;height:auto;margin:0}.status-card-video iframe{width:100%;height:100%}.status-card__title{display:block;font-weight:500;margin-bottom:5px;color:#fff;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:12px 10px;border-top:1px solid #525252}.status-card__description{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:40px;overflow:hidden;color:#999}.status-card__host{display:block;margin-top:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#999}.status-card__image{display:block;padding-bottom:52.25%;position:relative;background:#474747}.status-card__image>.fa{font-size:21px;position:absolute;transform-origin:50% 50%;top:50%;left:50%;transform:translate(-50%,-50%)}.status-card.horizontal{display:block}.status-card.horizontal .status-card__image{width:100%}.status-card.horizontal .status-card__image-image{border-radius:4px 4px 0 0}.status-card.horizontal .status-card__title{white-space:inherit}.status-card.compact{flex-direction:row}.status-card.compact.interactive{border:0}.status-card.compact .status-card__content{padding:10px 8px 8px}.status-card.compact .status-card__title{white-space:nowrap}.status-card.compact .status-card__image{flex:0 0 94px;padding-bottom:0}a.status-card.compact:hover{background-color:#3d3d3d}.status-card__image-image{display:block;position:absolute;right:0;left:0;top:0;bottom:0;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#757575;background-color:transparent;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;box-sizing:border-box;width:100%;clear:both;text-decoration:none}.load-more:hover{background:#383838}.load-gap{border-bottom:1px solid #474747}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#757575;background:#333;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:0 0;padding-top:0}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#757575}.regeneration-indicator__label span{font-size:15px;font-weight:400}.columns-area--mobile .column{border-radius:10px;background:#222}body.theme-gabsocial-light .columns-area--mobile .column{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.column-header__wrapper{position:relative;flex:0 0 auto;overflow:hidden}.column-header__wrapper.active:before{display:block;content:"";position:absolute;top:35px;left:0;right:0;margin:0 auto;width:60%;pointer-events:none;height:28px;z-index:1;background:radial-gradient(ellipse,rgba(33,207,122,.23) 0,rgba(33,207,122,0) 60%)}.column-header{display:flex;font-size:16px;background:#222;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden}body.theme-gabsocial-light .column-header{background:#fff;color:#6c6c6c}.column-header>.btn,.column-header>button{margin:0;border:none;padding:15px;color:inherit;background:0 0;font:inherit;text-align:left;text-decoration:none;white-space:nowrap}.column-header>.btn--sub,.column-header>button--sub{font-size:14px;padding:6px 10px}.column-header>.btn.grouped,.column-header>button.grouped{margin:6px}.column-header>.btn.active,.column-header>button.active{color:#fff;border-radius:10px;background-color:rgba(33,207,122,.1)}@media screen and (max-width:650px){.column-header>.btn,.column-header>button{padding:8px;font-size:14px}.column-header>.btn.grouped,.column-header>button.grouped{margin:6px 2px 6px 6px}.column-header>.btn.active,.column-header>button.active{border-radius:5px}}.column-header>.column-header__back-button{color:#21cf7a}.column-header.active{box-shadow:0 1px 0 rgba(33,207,122,.3)}.column-header.active .column-header__icon{color:#21cf7a;text-shadow:0 0 10px rgba(33,207,122,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:flex;margin-left:auto}.column-header__links .text-btn{margin-right:10px}.column-header__button{cursor:pointer;border:0;padding:0 15px;font-size:16px;color:#fff;background:#222}body.theme-gabsocial-light .column-header__button{color:#6c6c6c;background:#fff}.column-header__button:hover{color:#ababab}.column-header__button.active,.column-header__button.active:hover{color:#fff;background:#474747}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#999;transition:max-height .15s ease-in-out,opacity .3s linear;opacity:1}.column-header__collapsible.collapsed{max-height:0;opacity:.5}.column-header__collapsible.animating{overflow-y:hidden}.column-header__collapsible hr{height:0;background:0 0;border:0;border-top:1px solid #525252;margin:10px 0}.column-header__collapsible-inner{background:#3f3f3f;padding:15px}body.theme-gabsocial-light .column-header__collapsible-inner{background:#e6e6e6}.column-header__setting-btn--link{text-decoration:none}.column-header__setting-btn--link .fa{margin-left:10px}.column-header__setting-btn:hover{color:#999;text-decoration:underline}.column-header__setting-arrows{float:right}.column-header__setting-arrows .column-header__setting-btn{padding:0 10px}.column-header__setting-arrows .column-header__setting-btn:last-child{padding-right:0}.column-header__expansion{overflow-x:scroll;overflow-y:hidden;white-space:nowrap}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:0 0;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#757575;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #757575;border-radius:50%}.no-reduce-motion .loading-indicator span{-webkit-animation:loader-label 1.15s cubic-bezier(.215,.61,.355,1) infinite;animation:loader-label 1.15s cubic-bezier(.215,.61,.355,1) infinite}.no-reduce-motion .loading-indicator__figure{-webkit-animation:loader-figure 1.15s cubic-bezier(.215,.61,.355,1) infinite;animation:loader-figure 1.15s cubic-bezier(.215,.61,.355,1) infinite}@-webkit-keyframes loader-figure{0%{width:0;height:0;background-color:#757575}29%{background-color:#757575}30%{width:42px;height:42px;background-color:transparent;border-width:21px;opacity:1}to{width:42px;height:42px;border-width:0;opacity:0;background-color:transparent}}@keyframes loader-figure{0%{width:0;height:0;background-color:#757575}29%{background-color:#757575}30%{width:42px;height:42px;background-color:transparent;border-width:21px;opacity:1}to{width:42px;height:42px;border-width:0;opacity:0;background-color:transparent}}@-webkit-keyframes loader-label{0%{opacity:.25}30%{opacity:1}to{opacity:.25}}@keyframes loader-label{0%{opacity:.25}30%{opacity:1}to{opacity:.25}}.video-error-cover{align-items:center;background:#000;color:#fff;cursor:pointer;display:flex;flex-direction:column;height:100%;justify-content:center;margin-top:8px;position:relative;text-align:center;z-index:100}.media-spoiler{background:#000;color:#999;border:0;padding:0;width:100%;height:100%;border-radius:4px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.media-spoiler:active,.media-spoiler:focus,.media-spoiler:hover{padding:0;color:#adadad}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{top:0;left:0;width:100%;height:100%;position:absolute;z-index:100}.spoiler-button--minified{display:block;left:4px;top:4px;width:auto;height:auto}.spoiler-button--hidden{display:none}.spoiler-button__overlay{display:block;background:0 0;width:100%;height:100%;border:0}.spoiler-button__overlay__label{display:inline-block;background:rgba(0,0,0,.5);border-radius:8px;padding:8px 12px;color:#fff;font-weight:500;font-size:14px}.spoiler-button__overlay:active .spoiler-button__overlay__label,.spoiler-button__overlay:focus .spoiler-button__overlay__label,.spoiler-button__overlay:hover .spoiler-button__overlay__label{background:rgba(0,0,0,.8)}.modal-container--preloader{background:#474747}.account--panel{background:#3d3d3d;border-top:1px solid #474747;border-bottom:1px solid #474747;display:flex;flex-direction:row;padding:10px 0}.account--panel__button,.detailed-status__button{flex:1 1 auto;text-align:center}.column-settings__outer{background:#474747;padding:15px}.column-settings__section{color:#999;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__hashtags .column-settings__row{margin-bottom:15px}.column-settings__hashtags .column-select__control{outline:0;box-sizing:border-box;width:100%;border:1px solid #666;box-shadow:none;font-family:inherit;background:#222;color:#21cf7a;font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;margin:0;border-radius:4px}.column-settings__hashtags .column-select__control::-webkit-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-moz-placeholder{color:#666}.column-settings__hashtags .column-select__control::placeholder{color:#666}.column-settings__hashtags .column-select__control:-ms-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-ms-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-moz-focus-inner{border:0}.column-settings__hashtags .column-select__control::-moz-focus-inner,.column-settings__hashtags .column-select__control:active,.column-settings__hashtags .column-select__control:focus{outline:0!important}.column-settings__hashtags .column-select__placeholder{color:#757575;padding-left:2px;font-size:12px}.column-settings__hashtags .column-select__value-container{padding-left:6px}.column-settings__hashtags .column-select__multi-value{background:#474747}.column-settings__hashtags .column-select__multi-value__remove{cursor:pointer}.column-settings__hashtags .column-select__multi-value__remove:active,.column-settings__hashtags .column-select__multi-value__remove:focus,.column-settings__hashtags .column-select__multi-value__remove:hover{background:#525252;color:#a3a3a3}.column-settings__hashtags .column-select__input,.column-settings__hashtags .column-select__multi-value__label{color:#999}.column-settings__hashtags .column-select__clear-indicator,.column-settings__hashtags .column-select__dropdown-indicator{cursor:pointer;transition:none;color:#757575}.column-settings__hashtags .column-select__clear-indicator:active,.column-settings__hashtags .column-select__clear-indicator:focus,.column-settings__hashtags .column-select__clear-indicator:hover,.column-settings__hashtags .column-select__dropdown-indicator:active,.column-settings__hashtags .column-select__dropdown-indicator:focus,.column-settings__hashtags .column-select__dropdown-indicator:hover{color:grey}.column-settings__hashtags .column-select__indicator-separator{background-color:#474747}.column-settings__hashtags .column-select__menu{background:#222;border-radius:4px;border:1px solid #666;margin:4px 0 0;font-size:12px;font-size:1.2rem;line-height:14px;line-height:1.4rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5);padding:0;background:#666}.column-settings__hashtags .column-select__menu h4{color:#fff;font-size:14px;font-size:1.4rem;line-height:16px;line-height:1.6rem;font-weight:700}.column-settings__hashtags .column-select__menu ul{margin:6px 0}.column-settings__hashtags .column-select__menu ul li{margin:0 0 2px}.column-settings__hashtags .column-select__menu ul li em{color:#21cf7a}.column-settings__hashtags .column-select__menu-list{padding:6px}.column-settings__hashtags .column-select__option{color:#333;border-radius:4px;font-size:14px}.column-settings__hashtags .column-select__option--is-focused,.column-settings__hashtags .column-select__option--is-selected{background:#4d4d4d}.column-settings__row .text-btn{margin-bottom:15px}.relationship-tag{color:#fff;margin-bottom:4px;display:block;vertical-align:top;background-color:#000;text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px;opacity:.7}.relationship-tag:hover{opacity:1}.setting-toggle{display:block;line-height:24px}.setting-toggle__label{color:#999;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.empty-column-indicator,.error-column{color:#757575;background:#333;text-align:center;padding:40px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;min-height:160px}@supports(display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator>span,.error-column>span{max-width:400px}.empty-column-indicator a,.error-column a{color:#21cf7a;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}@-webkit-keyframes heartbeat{0%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{transform-origin:center center;-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}@-webkit-keyframes shake-bottom{0%,to{transform:rotate(0deg);transform-origin:50% 100%}10%{transform:rotate(2deg)}20%,40%,60%{transform:rotate(-4deg)}30%,50%,70%{transform:rotate(4deg)}80%{transform:rotate(-2deg)}90%{transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{transform:rotate(0deg);transform-origin:50% 100%}10%{transform:rotate(2deg)}20%,40%,60%{transform:rotate(-4deg)}30%,50%,70%{transform:rotate(4deg)}80%{transform:rotate(-2deg)}90%{transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{transform-origin:50% 100%;-webkit-animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) 2s 2 both;animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) 2s 2 both}.emoji-picker-dropdown__menu{background:#fff;position:absolute;box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px;z-index:20000}.emoji-picker-dropdown__menu .emoji-mart-scroll{transition:opacity .2s ease}.emoji-picker-dropdown__menu.selecting .emoji-mart-scroll{opacity:.5}.emoji-picker-dropdown__modifiers{position:absolute;top:60px;right:11px;cursor:pointer}.emoji-picker-dropdown__modifiers__menu{position:absolute;z-index:4;top:-4px;left:-8px;background:#fff;border-radius:4px;box-shadow:1px 2px 6px rgba(0,0,0,.2);overflow:hidden}.emoji-picker-dropdown__modifiers__menu button{display:block;cursor:pointer;border:0;padding:4px 8px;background:0 0}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:hsla(0,0%,40%,.4)}.emoji-picker-dropdown__modifiers__menu .emoji-mart-emoji{height:22px}.emoji-mart-emoji span{background-repeat:no-repeat}.upload-area{align-items:center;background:rgba(0,0,0,.8);display:flex;height:100%;justify-content:center;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:2000}.upload-area *{pointer-events:none}.upload-area__drop{width:320px;height:160px;display:flex;box-sizing:border-box;position:relative;padding:8px}.upload-area__background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;border-radius:4px;background:#333;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#666;font-size:18px;font-weight:500;border:2px dashed #757575;border-radius:4px}.upload-progress{padding:10px;color:#757575;overflow:hidden;display:flex}.upload-progress .fa{font-size:34px;margin-right:10px}.upload-progress span{font-size:12px;text-transform:uppercase;font-weight:500;display:block}.upload-progess__message{flex:1 1 auto}.upload-progress__backdrop{width:100%;height:6px;border-radius:6px;background:#757575;position:relative;margin-top:5px}.upload-progress__tracker{position:absolute;left:0;top:0;height:6px;background:#21cf7a;border-radius:6px}.emoji-button{display:block;font-size:24px;line-height:24px;margin-left:2px;width:24px;outline:0;cursor:pointer}.emoji-button:active,.emoji-button:focus{outline:0!important}.emoji-button img{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8;display:block;width:22px;height:22px;margin:2px 0 0}.dropdown--active .emoji-button img,.emoji-button:active img,.emoji-button:focus img,.emoji-button:hover img{opacity:1;-webkit-filter:none;filter:none}.privacy-dropdown__dropdown{position:absolute;background:#fff;box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:4px;margin-left:40px;overflow:hidden;z-index:10000}.privacy-dropdown__dropdown.top{transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{transform-origin:50% 0}.privacy-dropdown__option{color:#333;padding:10px;cursor:pointer;display:flex}.privacy-dropdown__option.active,.privacy-dropdown__option:hover{background:#21cf7a;color:#fff;outline:0}.privacy-dropdown__option.active .privacy-dropdown__option__content,.privacy-dropdown__option.active .privacy-dropdown__option__content strong,.privacy-dropdown__option:hover .privacy-dropdown__option__content,.privacy-dropdown__option:hover .privacy-dropdown__option__content strong{color:#fff}.privacy-dropdown__option.active:hover{background:#28dd84}.privacy-dropdown__option__icon{display:flex;align-items:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{flex:1 1 auto;color:#757575}.privacy-dropdown__option__content strong{font-weight:500;display:block;color:#333}.privacy-dropdown__option__content strong:lang(ja),.privacy-dropdown__option__content strong:lang(ko),.privacy-dropdown__option__content strong:lang(zh-cn),.privacy-dropdown__option__content strong:lang(zh-hk),.privacy-dropdown__option__content strong:lang(zh-tw){font-weight:700}.privacy-dropdown.active .privacy-dropdown__value{background:#fff;border-radius:4px 4px 0 0;box-shadow:0 -4px 4px rgba(0,0,0,.1)}.privacy-dropdown.active .privacy-dropdown__value .icon-button{transition:none}.privacy-dropdown.active .privacy-dropdown__value.active{background:#21cf7a}.privacy-dropdown.active .privacy-dropdown__value.active .icon-button{color:#fff}.privacy-dropdown.active.top .privacy-dropdown__value{border-radius:0 0 4px 4px}.privacy-dropdown.active .privacy-dropdown__dropdown{display:block;box-shadow:2px 4px 6px rgba(0,0,0,.1)}.search{position:relative}.search__input{display:block;padding:7px 30px 6px 10px;outline:0;box-sizing:border-box;width:100%;border:1px solid #666;box-shadow:none;font-family:inherit;background:#222;color:#21cf7a;font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;margin:0;border-radius:4px}.search__input::-webkit-input-placeholder{color:#666}.search__input::-moz-placeholder{color:#666}.search__input::placeholder{color:#666}.search__input:-ms-input-placeholder{color:#666}.search__input::-ms-input-placeholder{color:#666}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{cursor:default;display:inline-block;position:absolute;top:8px;right:6px;z-index:2;width:18px;height:18px;font-size:16px;font-size:1.6rem;color:#666;opacity:0;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:1}.search__icon .fa-search.active{pointer-events:none}.search__icon .fa-times-circle{cursor:pointer;font-size:17px;font-size:1.7rem;color:#cc6643}.search__icon .fa-times-circle:hover{color:#d47d5f}.search-results__header{color:#757575;background:#383838;padding:15px;font-weight:500;font-size:16px;cursor:default}.search-results__header .fa{display:inline-block;margin-right:5px}.search-results__section{margin-bottom:5px}.search-results__section h5{background:#292929;border-bottom:1px solid #474747;cursor:default;display:flex;padding:15px;font-weight:500;font-size:16px;color:#757575}.search-results__section h5 .fa{display:inline-block;margin-right:5px}.search-results__section .account:last-child,.search-results__section>div:last-child .status{border-bottom:0}.search-results__hashtag{display:block;padding:10px;color:#666;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#707070;text-decoration:underline}.loading-bar{background-color:#21cf7a;height:3px;position:absolute;top:0;left:0}.media-gallery__gifv__label{display:block;position:absolute;color:#fff;background:rgba(0,0,0,.5);bottom:6px;left:6px;padding:2px 6px;border-radius:2px;font-size:11px;font-weight:600;z-index:1;pointer-events:none;opacity:.9;transition:opacity .1s ease;line-height:18px}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.attachment-list{display:flex;font-size:14px;border:1px solid #474747;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#757575;padding:8px 18px;cursor:default;border-right:1px solid #474747;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:26px}.attachment-list__icon .fa{display:block}.attachment-list__list{list-style:none;padding:4px 0 4px 8px;display:flex;flex-direction:column;justify-content:center}.attachment-list__list li{display:block;padding:4px 0}.attachment-list__list a{text-decoration:none;color:#757575;font-weight:500}.attachment-list__list a:hover{text-decoration:underline}.attachment-list.compact{border:0;margin-top:4px}.attachment-list.compact .attachment-list__list{padding:0;display:block}.attachment-list.compact .fa{color:#757575}.media-gallery{margin-top:8px;border-radius:4px;width:100%}.media-gallery,.media-gallery__item{box-sizing:border-box;overflow:hidden;position:relative}.media-gallery__item{border:none;display:block;float:left;border-radius:4px}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#666;line-height:0;position:relative;z-index:1}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img,.media-gallery__preview{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.media-gallery__preview{width:100%;height:100%;position:absolute;top:0;left:0;z-index:0;background:#000}.media-gallery__preview--hidden{display:none}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%}.media-gallery__item-gifv-thumbnail{cursor:zoom-in;height:100%;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;position:relative;width:100%;z-index:1;transform:none;top:0}.media-gallery__item-thumbnail-label{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute}.status__video-player{background:#000;box-sizing:border-box;cursor:default;margin-top:8px;overflow:hidden;position:relative}.status__video-player-video{height:100%;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;position:relative;top:50%;transform:translateY(-50%);width:100%;z-index:1}.status__video-player-expand,.status__video-player-mute{color:#fff;opacity:.8;position:absolute;right:4px;text-shadow:0 1px 1px #000,1px 0 1px #000}.status__video-player-spoiler{display:none;color:#fff;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.status__video-player-spoiler.status__video-player-spoiler--visible{display:block}.status__video-player-expand{bottom:4px;z-index:100}.status__video-player-mute{top:4px;z-index:5}.detailed .video-player__volume:before,.detailed .video-player__volume__current,.fullscreen .video-player__volume:before,.fullscreen .video-player__volume__current{bottom:27px}.detailed .video-player__volume__handle,.fullscreen .video-player__volume__handle{bottom:23px}.video-player{overflow:hidden;position:relative;background:#000;max-width:100%;border-radius:4px}.video-player:focus{outline:0}.video-player video{max-width:100vw;max-height:80vh;z-index:1}.video-player.fullscreen{width:100%!important;height:100%!important;margin:0}.video-player.fullscreen video{max-width:100%!important;max-height:100%!important;width:100%!important;height:100%!important}.video-player.inline video{-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain;position:relative;top:50%;transform:translateY(-50%)}.video-player__controls{position:absolute;z-index:2;bottom:0;left:0;right:0;box-sizing:border-box;background:linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.45) 60%,transparent);padding:0 15px;opacity:0;transition:opacity .1s ease}.video-player__controls.active{opacity:1}.video-player.inactive .video-player__controls,.video-player.inactive video{visibility:hidden}.video-player__spoiler{display:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:4;border:0;background:#000;color:#999;transition:none;pointer-events:none}.video-player__spoiler.active{display:block;pointer-events:auto}.video-player__spoiler.active:active,.video-player__spoiler.active:focus,.video-player__spoiler.active:hover{color:#ababab}.video-player__spoiler__title{display:block;font-size:14px}.video-player__spoiler__subtitle{display:block;font-size:11px;font-weight:500}.video-player__buttons-bar{display:flex;justify-content:space-between;padding-bottom:10px}.video-player__buttons{font-size:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.video-player__buttons.left button{padding-left:0}.video-player__buttons.right button{padding-right:0}.video-player__buttons button{background:0 0;padding:2px 10px;font-size:16px;border:0;color:hsla(0,0%,100%,.75)}.video-player__buttons button:active,.video-player__buttons button:focus,.video-player__buttons button:hover{color:#fff}.video-player__time-current,.video-player__time-sep,.video-player__time-total{font-size:14px;font-weight:500}.video-player__time-current{color:#fff;margin-left:60px}.video-player__time-sep{display:inline-block;margin:0 6px}.video-player__time-sep,.video-player__time-total{color:#fff}.video-player__volume{cursor:pointer;height:24px;display:inline}.video-player__volume:before{content:"";width:50px;background:hsla(0,0%,100%,.35)}.video-player__volume:before,.video-player__volume__current{border-radius:4px;display:block;position:absolute;height:4px;left:70px;bottom:20px}.video-player__volume__current{background:#39df8e}.video-player__volume__handle{position:absolute;z-index:3;border-radius:50%;width:12px;height:12px;bottom:16px;left:70px;transition:opacity .1s ease;background:#39df8e;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.video-player__link{padding:2px 10px}.video-player__link a{text-decoration:none;font-size:14px;font-weight:500;color:#fff}.video-player__link a:active,.video-player__link a:focus,.video-player__link a:hover{text-decoration:underline}.video-player__seek{cursor:pointer;height:24px;position:relative}.video-player__seek:before{content:"";width:100%;background:hsla(0,0%,100%,.35);border-radius:4px;display:block;position:absolute;height:4px;top:10px}.video-player__seek__buffer,.video-player__seek__progress{display:block;position:absolute;height:4px;border-radius:4px;top:10px;background:#39df8e}.video-player__seek__buffer{background:hsla(0,0%,100%,.2)}.video-player__seek__handle{position:absolute;z-index:3;opacity:0;border-radius:50%;width:12px;height:12px;top:6px;margin-left:-6px;transition:opacity .1s ease;background:#39df8e;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.video-player__seek:hover .video-player__seek__handle,.video-player__seek__handle.active{opacity:1}.video-player.detailed .video-player__buttons button,.video-player.fullscreen .video-player__buttons button{padding-top:10px;padding-bottom:10px}.media-spoiler-video{background-size:cover;background-repeat:no-repeat;background-position:50%;cursor:pointer;margin-top:8px;position:relative;border:0;display:block}.media-spoiler-video-play-icon{border-radius:100px;color:hsla(0,0%,100%,.8);font-size:36px;left:50%;padding:5px;position:absolute;top:50%;transform:translate(-50%,-50%)}.account-gallery__container{display:flex;flex-wrap:wrap;padding:4px 2px}.account-gallery__item{border:none;box-sizing:border-box;display:block;position:relative;border-radius:4px;overflow:hidden;margin:2px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#292929;border-bottom:1px solid #474747;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#292929;border:0;margin:0}.account__section-headline a,.account__section-headline button,.notification__filter-bar a,.notification__filter-bar button{display:block;flex:1 1 auto;color:#666;padding:15px 0;font-size:14px;font-weight:500;text-align:center;text-decoration:none;position:relative}.account__section-headline a.active,.account__section-headline button.active,.notification__filter-bar a.active,.notification__filter-bar button.active{color:#fff}.account__section-headline a.active:after,.account__section-headline a.active:before,.account__section-headline button.active:after,.account__section-headline button.active:before,.notification__filter-bar a.active:after,.notification__filter-bar a.active:before,.notification__filter-bar button.active:after,.notification__filter-bar button.active:before{display:block;content:"";position:absolute;bottom:0;left:50%;width:0;height:0;transform:translateX(-50%);border-color:transparent transparent #474747;border-style:solid;border-width:0 10px 10px}.account__section-headline a.active:after,.account__section-headline button.active:after,.notification__filter-bar a.active:after,.notification__filter-bar button.active:after{bottom:-1px;border-color:transparent transparent #333}.account__section-headline a,.account__section-headline button{flex:none;padding:18px 15px;font-size:16px;font-weight:600}::-webkit-scrollbar-thumb{border-radius:0}.search-popout-container{width:251px}@media screen and (max-width:650px){.search-popout-container{width:100%}}.search-popout{background:#222;border-radius:4px;border:1px solid #666;padding:8px 10px 17px;margin:4px 0 0;font-size:12px;font-size:1.2rem;line-height:14px;line-height:1.4rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.search-popout h4{color:#fff;font-size:14px;font-size:1.4rem;line-height:16px;line-height:1.6rem;font-weight:700}.search-popout ul{margin:6px 0}.search-popout ul li{margin:0 0 2px}.search-popout ul li em{color:#21cf7a}noscript{text-align:center}noscript img{width:200px;opacity:.5;-webkit-animation:flicker 4s infinite;animation:flicker 4s infinite}noscript div{font-size:14px;margin:30px auto;color:#666;max-width:400px}noscript div a{color:#21cf7a;text-decoration:underline}noscript div a:hover{text-decoration:none}@-webkit-keyframes flicker{0%{opacity:1}30%{opacity:.75}to{opacity:1}}@keyframes flicker{0%{opacity:1}30%{opacity:.75}to{opacity:1}}@media screen and (max-width:630px)and (max-height:400px){.search,.tabs-bar{will-change:margin-top;transition:margin-top .4s .1s}.navigation-bar{will-change:padding-bottom;transition:padding-bottom .4s .1s}.navigation-bar>a:first-child{will-change:margin-top,margin-left,margin-right,width;transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s}.navigation-bar>.navigation-bar__profile-edit{will-change:margin-top;transition:margin-top .4s .1s}.navigation-bar .navigation-bar__actions>.icon-button.close{will-change:opacity transform;transition:opacity .2s .1s,transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;transition:opacity .2s .3s,transform .4s .1s}.is-composing .search,.is-composing .tabs-bar{margin-top:-50px}.is-composing .navigation-bar{padding-bottom:0}.is-composing .navigation-bar>a:first-child{margin:-100px 10px 0 -50px}.is-composing .navigation-bar .navigation-bar__profile{padding-top:2px}.is-composing .navigation-bar .navigation-bar__profile-edit{position:absolute;margin-top:-60px}.is-composing .navigation-bar .navigation-bar__actions .icon-button.close{pointer-events:auto;opacity:1;transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;transform:scaleX(0) translate(100%)}}.embed-modal{max-width:80vw;max-height:80vh}.embed-modal h4{padding:30px;font-weight:500;font-size:16px;text-align:center}.embed-modal .embed-modal__container{padding:10px}.embed-modal .embed-modal__container .hint{margin-bottom:15px}.embed-modal .embed-modal__container .embed-modal__html{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:gabsocial-font-monospace,monospace;background:#333;color:#fff;font-size:14px;margin:0 0 15px}.embed-modal .embed-modal__container .embed-modal__html::-moz-focus-inner{border:0}.embed-modal .embed-modal__container .embed-modal__html::-moz-focus-inner,.embed-modal .embed-modal__container .embed-modal__html:active,.embed-modal .embed-modal__container .embed-modal__html:focus{outline:0!important}.embed-modal .embed-modal__container .embed-modal__html:focus{background:#3d3d3d}@media screen and (max-width:600px){.embed-modal .embed-modal__container .embed-modal__html{font-size:16px}}.embed-modal .embed-modal__container .embed-modal__iframe{width:400px;max-width:100%;overflow:hidden;border:0}.account__moved-note{padding:14px 10px 16px;background:#3d3d3d;border-top:1px solid #474747;border-bottom:1px solid #474747}.account__moved-note__message{position:relative;margin-left:58px;color:#757575;padding:0 0 4px;font-size:14px}.account__moved-note__message>span{display:block;overflow:hidden;text-overflow:ellipsis}.account__moved-note__icon-wrapper{left:-26px;position:absolute}.account__moved-note .detailed-status__display-avatar{position:relative}.account__moved-note .detailed-status__display-name{margin-bottom:0}.column-inline-form{padding:7px 5px 7px 15px;display:flex;justify-content:flex-start;align-items:center;background:#3d3d3d}.column-inline-form label{flex:1 1 auto}.column-inline-form label input{width:100%;margin-bottom:6px}.column-inline-form label input:focus{outline:0}.column-inline-form .icon-button{flex:0 0 auto;margin:0 5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.list-editor{flex-direction:column;width:100%;overflow:hidden;height:100%;overflow-y:scroll}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#545454;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__inner{border-radius:0 0 8px 8px}.list-editor .drawer__inner.backdrop{width:calc(100% - 60px);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:0 0 0 8px}.list-editor__accounts{background:#545454;overflow-y:auto;max-height:200px}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{display:flex;flex-direction:row;margin:10px 0}.list-editor .search>label{flex:1 1}.list-editor .search>.search__icon .fa{right:102px!important}.list-editor .search>.button{width:80px;margin-left:10px}.list-adder{flex-direction:column;width:100%;overflow:hidden;height:100%;overflow-y:scroll}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#545454;border-radius:4px}.list-adder__lists{background:#545454}.list-adder .list{padding:4px;border-bottom:1px solid #474747}.list-adder .list__wrapper{display:flex}.list-adder .list__wrapper .account__relationship{padding:8px 5px 0}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.edit-list-form__btn,.new-list-form__btn{margin-left:6px;width:112px}.edit-list-form__input,.new-list-form__input{height:36px}.focal-point-modal{max-width:80vw;max-height:80vh;position:relative}.focal-point{position:relative;cursor:pointer;overflow:hidden}.focal-point.dragging{cursor:move}.focal-point img{max-width:80vw;max-height:80vh;width:auto;height:auto;margin:auto}.focal-point__reticle{position:absolute;width:100px;height:100px;transform:translate(-50%,-50%);background:url(/packs/media/images/reticle-6490ecbb61185e86e62dca0845cf2dcf.png) no-repeat 0 0;border-radius:50%;box-shadow:0 0 0 9999em rgba(0,0,0,.35)}.focal-point__overlay{position:absolute;width:100%;height:100%;top:0;left:0}.account__header__content{color:#999;font-size:14px;font-weight:400;overflow:hidden;word-break:normal;word-wrap:break-word}.account__header__content p{margin-bottom:20px}.account__header__content p:last-child{margin-bottom:0}.account__header__content a{color:inherit;text-decoration:underline}.account__header__content a:hover{text-decoration:none}.trends__header{color:#757575;background:#383838;border-bottom:1px solid #292929;font-weight:500;padding:15px;font-size:16px;cursor:default}.trends__header .fa{display:inline-block;margin-right:5px}.trends__item{display:flex;align-items:center;padding:15px;border-bottom:1px solid #474747}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#757575;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name span{text-decoration:none}.trends__item__name strong{color:#fff;font-weight:600;text-decoration:none}.trends__item__name a{color:#999;text-decoration:none;font-size:16px;font-weight:500;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name a:active span,.trends__item__name a:focus span,.trends__item__name a:hover span{text-decoration:underline}.trends__item__current{flex:0 0 auto;width:100px;font-size:24px;line-height:36px;font-weight:500;text-align:center;color:#666}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#31de89!important}.layout-toggle{display:flex;padding:5px}.layout-toggle button{box-sizing:border-box;flex:0 0 50%;background:0 0;padding:5px;border:0;position:relative}.layout-toggle button:active svg path:first-child,.layout-toggle button:focus svg path:first-child,.layout-toggle button:hover svg path:first-child{fill:#5c5c5c}.layout-toggle svg{width:100%;height:auto}.layout-toggle svg path:first-child{fill:#525252}.layout-toggle svg path:last-child{fill:#0f0f0f}.layout-toggle__active{color:#21cf7a;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:#525252;border-radius:50%;padding:.35rem}.wtf-panel{display:flex;width:100%;border-radius:10px;flex-direction:column;height:auto;box-sizing:border-box;background:#222}body.theme-gabsocial-light .wtf-panel{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.wtf-panel:not(:last-of-type){margin-bottom:10px}.wtf-panel .wtf-panel-header{display:flex;align-items:baseline;margin-bottom:10px;padding:15px 15px 0}.wtf-panel .wtf-panel-header__icon{margin-right:10px}.wtf-panel .wtf-panel-header__label{flex:1 1;color:#fff;font-size:16px;font-weight:700;line-height:19px}.wtf-panel__content{width:100%;padding-top:8px}.wtf-panel__list{padding:0 5px}.wtf-panel__subtitle{display:block;padding:0 15px;color:#666}.wtf-panel__form{display:block;padding:15px}.wtf-panel__form.button{width:100%}.wtf-panel .wtf-panel-list-item{display:block;padding-bottom:10px}.wtf-panel .wtf-panel-list-item:not(:first-of-type){margin-top:12px}.wtf-panel .wtf-panel-list-item:not(:last-of-type){border-bottom:1px solid #474747}.wtf-panel .wtf-panel-list-item__content{display:flex;flex-direction:row;min-height:46px;margin-left:58px}.wtf-panel .wtf-panel-list-item__account-block{display:flex;position:relative;align-items:baseline;padding-right:10px}.wtf-panel .wtf-panel-list-item__account-block__avatar{height:46px;width:46px;background-color:red;left:-58px;position:absolute}.wtf-panel .wtf-panel-list-item__account-block__name{display:flex;flex-wrap:wrap;flex-direction:column;margin-top:6px}.wtf-panel .wtf-panel-list-item__account-block__name__name{color:#fff;font-size:14px;font-weight:700;line-height:16px;margin-bottom:2px;max-height:32px;overflow:hidden}.wtf-panel .wtf-panel-list-item__account-block__name__username{color:#757575;font-size:12px;line-height:14px}.wtf-panel .wtf-panel-list-item__follow-block{margin-left:auto;padding-top:6px}.wtf-panel .wtf-panel-list-item__follow-block__button{display:flex}.wtf-panel .wtf-panel-list-item__follow-block__icon{color:#fff}.verified-icon{display:inline-block;margin:0 4px 0 1px;vertical-align:top;position:relative;width:15px;height:15px}.verified-icon:before{display:block;content:"";position:absolute;background-color:#00a3ed;top:0;right:0;left:0;bottom:0;border-radius:50%}.verified-icon:after{display:block;position:absolute;content:"";font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#fff;font-size:.6em;line-height:15px;width:15px;height:15px;text-align:center}.compose-modal{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px;flex-direction:column;width:600px;margin:10px 0}.compose-modal__header{display:block;position:relative;border-bottom:1px solid #474747;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.compose-modal__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#f2f3f6;text-align:center}.compose-modal__close{position:absolute;right:10px;top:10px}.compose-modal__content{display:flex;flex-direction:row;flex:1;padding:10px;overflow-y:hidden}.compose-modal__content--scroll{display:block;overflow-y:scroll}.compose-modal__content .timeline-compose-block{background:0 0!important;width:100%;padding:10px 5px;margin-bottom:0}.compose-modal__content .timeline-compose-block .compose-form{max-height:100%;display:flex;flex-direction:column;padding:0!important}.compose-modal__content .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{max-height:160px!important}.compose-modal__content .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper:before{content:none!important}@media screen and (max-width:895px){.compose-modal{margin:0;border-radius:0;height:100vh;width:100vw}}.account-timeline__header{display:block;width:100%}.profile-info-panel{display:flex;position:relative}.profile-info-panel__content{display:flex;flex-direction:column;flex:1 1}@media(min-width:895px){.profile-info-panel__content{padding-top:60px}}.profile-info-panel .profile-info-panel-content{display:flex}.profile-info-panel .profile-info-panel-content__badges{display:flex;margin:5px 0;flex-direction:row;flex-wrap:wrap}.profile-info-panel .profile-info-panel-content__badges__join-date{display:block;margin-top:5px}.profile-info-panel .profile-info-panel-content__badges__join-date .fa{margin-right:8px}.profile-info-panel .profile-info-panel-content__badges__join-date span{color:#fff;font-size:15px;line-height:1.25}body.theme-gabsocial-light .profile-info-panel .profile-info-panel-content__badges__join-date span{color:#6c6c6c}.profile-info-panel .profile-info-panel-content__name{display:block}.profile-info-panel .profile-info-panel-content__name .account-role{vertical-align:top}.profile-info-panel .profile-info-panel-content__name .emojione{width:22px;height:22px}.profile-info-panel .profile-info-panel-content__name .emojione[alt=":verified:"]{display:none}.profile-info-panel .profile-info-panel-content__name h1 span:first-of-type{font-size:20px!important;line-height:1.25;color:#fff;font-weight:600!important;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}body.theme-gabsocial-light .profile-info-panel .profile-info-panel-content__name h1 span:first-of-type{color:#6c6c6c}.profile-info-panel .profile-info-panel-content__name h1 small{display:block;font-size:16px;line-height:1.5;color:#666;font-weight:400;overflow:hidden;text-overflow:ellipsis}.profile-info-panel .profile-info-panel-content__bio{display:block;flex:1 1;color:#fff;margin:15px 0;font-size:15px;line-height:1.25}.profile-info-panel .profile-info-panel-content__bio a{color:#39df8e}.profile-info-panel .profile-info-panel-content__fields{display:flex;flex-direction:column;border-top:1px solid #525252;padding:10px 0;margin:5px 0}@media screen and (max-width:895px){.profile-info-panel .profile-info-panel-content__fields{border-bottom:1px solid #525252}}.profile-info-panel .profile-info-panel-content__fields a{color:#39df8e}.profile-info-panel .profile-info-panel-content__fields dl:first-child .verified{border-radius:0 4px 0 0}.profile-info-panel .profile-info-panel-content__fields .verified a{color:#79bd9a}.profile-info-panel .profile-info-panel-content__fields__item{display:flex;padding:2px 0;margin:2px 0;flex:1 1}.profile-info-panel .profile-info-panel-content__fields__item *{font-size:15px;line-height:24px}.profile-info-panel .profile-info-panel-content__fields__item dt{min-width:26px}.profile-info-panel .profile-info-panel-content__fields__item dd{padding-left:4px}.unauthorized-modal{width:440px!important}.unauthorized-modal__content{display:flex;width:100%;height:150px;justify-content:center;align-items:center;flex-direction:column}.unauthorized-modal .unauthorized-modal-content__text{display:block;margin-bottom:18px;color:#fff;font-size:14px}.unauthorized-modal .unauthorized-modal-content__button{width:200px}.unauthorized-modal__footer{display:flex;border-top:1px solid #666;padding:10px;justify-content:center;align-items:center}.unauthorized-modal__footer>span{font-size:14px;color:#666}.unauthorized-modal__footer>span a{color:#21cf7a!important}@media screen and (max-width:895px){.unauthorized-modal{height:270px!important;width:330px!important}}.error-boundary>div{margin:auto}.error-boundary>div span{display:block;text-align:center;color:#666}.error-boundary>div a{display:block;margin:15px auto;text-align:center;color:#21cf7a}.search-header{display:block;width:100%}.search-header__text-container{display:none;padding:25px 0;background-color:#424242}@media(min-width:895px){.search-header__text-container{display:block}}.search-header__title-text{color:#fff;font-size:27px;font-weight:700;line-height:32px;overflow:hidden;padding-left:20px;text-overflow:ellipsis;white-space:nowrap;max-width:1200px;margin:0 auto;height:32px}.search-header__type-filters-tabs{display:flex;width:100%;max-width:1200px;margin:0 auto}@media screen and (max-width:895px){.search-header__type-filters-tabs{max-width:580px}}@media(min-width:895px)and (max-width:1190px){.search-header__title-text,.search-header__type-filters-tabs{max-width:900px}}.timeline-queue-header{display:block;width:100%;max-height:46px;position:relative;background-color:#1f1f1f;border-bottom:1px solid #292929;border-color:#292929 currentcolor;border-top:1px solid #292929;transition:max-height .15s ease;overflow:hidden}.timeline-queue-header.hidden{max-height:0}.timeline-queue-header__btn{display:block;width:100%;height:100%;text-align:center;line-height:46px;font-size:14px;cursor:pointer;color:#666}.timeline-queue-header__btn span{height:46px}.badge{font-size:12px;text-transform:uppercase;padding:2px 6px;border-radius:2px;margin:0 5px 5px 0}.badge--pro{background-color:#8a2be2;color:#fff}.badge--investor{background-color:gold;color:#000}.badge--donor{background-color:#90ee90;color:#000}.schedule-post-dropdown{display:flex;align-items:center}.schedule-post-dropdown .react-datepicker-popper{z-index:1000}.schedule-post-dropdown .react-datepicker__day--selected,.schedule-post-dropdown li.react-datepicker__time-list-item--selected{background-color:#21cf7a!important}.pro-upgrade-modal__content{overflow-y:scroll!important}.pro-upgrade-modal__text{display:flex;text-align:center;padding:10px 0 15px;flex-direction:column;margin-bottom:10px}.pro-upgrade-modal__list{display:block;margin-bottom:25px;width:100%;background-color:#4d4d4d;text-align:center;padding:20px 0}.pro-upgrade-modal__button{width:100%}.pro-upgrade-modal__button .fa{margin-right:10px}.schedule-post-dropdown-wrapper{margin-left:4px;border-radius:4px;border:1px solid #ccc;line-height:22px;padding-left:6px;text-align:left;width:145px;height:26px;font-size:11px;color:#333;background:#fff}@media(max-width:580px){.schedule-post-dropdown-wrapper{width:124px;font-size:10px;padding-left:2px;margin-left:2px}}.sidebar-menu .progress-panel{padding-left:12px;padding-right:12px}.progress-panel{background:0 0!important;background-color:transparent!important;box-shadow:none!important;margin-top:15px}.progress-panel .progress-panel-header{padding:5px;margin-bottom:0}.progress-panel__content{display:block;padding:0 5px;box-sizing:border-box}.progress-panel__text{display:block;margin-bottom:5px;font-size:14px;color:#999}.progress-panel__bar-container{border-radius:12px;overflow:hidden;position:relative;background-color:#555;margin-top:15px;margin-bottom:15px}.progress-panel__bar,.progress-panel__bar-container{display:block;width:100%;box-sizing:border-box;height:22px}.progress-panel__bar{background-color:#32a269;border-radius:10px;margin:-1px}.progress-panel__bar__text{display:block;position:absolute;top:0;left:0;right:0;text-align:center;font-size:14px;line-height:22px;font-weight:600;color:#fff}.chat-button{width:36px!important;height:36px!important;padding:0!important;box-sizing:border-box;color:#fff}a.button.standard-small,button.standard-small{height:20px;padding:5px 15px;border:none;border-radius:4px;font-size:11px;font-size:1.1rem;line-height:11px;line-height:1.1rem;font-weight:700;text-transform:uppercase;color:#fff;background:#607cf5}input[type=text].standard,textarea.standard{box-sizing:border-box;padding:7px 10px;border-radius:4px;font-size:16px;font-size:1.6rem;line-height:18px;line-height:1.8rem;color:#21cf7a;border:1px solid #666;background:#222}input[type=text].standard::-webkit-input-placeholder,textarea.standard::-webkit-input-placeholder{color:#666}input[type=text].standard::-moz-placeholder,textarea.standard::-moz-placeholder{color:#666}input[type=text].standard:-ms-input-placeholder,textarea.standard:-ms-input-placeholder{color:#666}input[type=text].standard:-moz-placeholder,textarea.standard:-moz-placeholder{color:#666}body.theme-gabsocial-light input[type=text].standard,body.theme-gabsocial-light textarea.standard{color:#666;border-color:#999;background:#f2f3f6}body.theme-gabsocial-light input[type=text].standard::-webkit-input-placeholder,body.theme-gabsocial-light textarea.standard::-webkit-input-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard::-moz-placeholder,body.theme-gabsocial-light textarea.standard::-moz-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard:-ms-input-placeholder,body.theme-gabsocial-light textarea.standard:-ms-input-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard:-moz-placeholder,body.theme-gabsocial-light textarea.standard:-moz-placeholder{color:#999}input[type=text].standard:focus,textarea.standard:focus{outline:none}textarea.standard{resize:vertical}.tabs-bar{display:flex;box-sizing:border-box;background:#000;flex:0 0 auto;overflow-y:auto;height:50px;position:-webkit-sticky;position:sticky;top:0;z-index:1000;transition:transform .2s ease;overflow:hidden}@media screen and (max-width:895px){.tabs-bar--collapsed{margin-top:-50px;transform:translateY(-50px)}}.tabs-bar__container{display:flex;box-sizing:border-box;width:100%;max-width:1200px;margin:0 auto;padding:0 15px}@media screen and (max-width:375px){.tabs-bar__container{padding:0 10px}}.tabs-bar__split{display:flex;width:auto}.tabs-bar__split--left{margin-right:auto}.tabs-bar__split--right{margin-left:auto;padding-top:8px}@media screen and (max-width:450px){.tabs-bar__split--right{padding-top:4px}}.tabs-bar__search-container{display:block;width:251px}@media screen and (max-width:1024px){.tabs-bar__search-container{display:none}}.tabs-bar__profile{position:relative;overflow:hidden;margin:0 0 0 20px;height:34px;width:34px}@media screen and (max-width:450px){.tabs-bar__profile{height:42px;width:42px;margin:0}}.tabs-bar__profile .account__avatar{width:34px;height:34px;background-size:34px 34px}@media screen and (max-width:450px){.tabs-bar__profile .account__avatar{width:42px;height:42px;background-size:42px 42px}}@media screen and (max-width:895px){.tabs-bar__profile,.tabs-bar__profile .account__avatar{width:30px;height:30px;background-size:30px 30px}}.tabs-bar__profile .compose__action-bar{display:block;position:absolute;top:0;right:0;left:-5px;bottom:0}.tabs-bar__profile .compose__action-bar i{display:none}@media screen and (max-width:895px){.tabs-bar__profile .compose__action-bar{display:none}}.tabs-bar__sidebar-btn{display:block;position:absolute;top:0;right:0;left:0;bottom:0;width:30px;opacity:0}@media(min-width:895px){.tabs-bar__sidebar-btn{display:none}}.tabs-bar__page-name{display:block;margin-left:18px;line-height:30px;font-weight:600;font-size:18px;color:#fff}@media(min-width:895px){.tabs-bar__page-name{display:none}}.tabs-bar__button-compose{display:block;width:70px;height:34px;margin-left:20px;border-radius:4px;background-image:url(/packs/media/images/sprite-main-navigation-adf3dd71f4d17d0c548676ef4da8544c.png);background-color:#21cf7a!important;background-repeat:no-repeat;background-size:161px 152px;background-position:18px 2px}@media screen and (max-width:450px){.tabs-bar__button-compose{display:none}}.tabs-bar__button-compose:hover{background-color:#2cdd87!important;background-position:18px -98px;box-shadow:inset 0 0 6px #1aa360}.tabs-bar__button-compose span{display:none}.tabs-bar__button{margin-left:12px;height:34px}.tabs-bar .flex{display:flex}.tabs-bar__search-btn{display:none;margin-left:auto}.tabs-bar__search-btn .tabs-bar__link__icon--search{display:block;height:32px;width:32px;background-position:-995px 5px!important}.tabs-bar__search-btn>span{display:none}@media(max-width:895px){.tabs-bar__button-compose,.tabs-bar__search-container{display:none}.tabs-bar__profile{margin:0}.tabs-bar__split{flex-direction:row;align-items:stretch}.tabs-bar__split--left{margin:0;width:80px}.tabs-bar__split--right{padding:8px 0 6px 20px}.tabs-bar__link{display:none!important}.tabs-bar__link--logo{display:flex!important}.tabs-bar.logged-in .tabs-bar__split--left{display:none!important}.tabs-bar.logged-in .tabs-bar__split--right{padding-top:10px;margin-left:0!important;width:100%!important}.tabs-bar.logged-in .tabs-bar__split--right .flex{width:100%}.tabs-bar.logged-in .tabs-bar__search-btn{display:block}}.tabs-bar__link{display:flex;flex:1 1 auto;margin:0 20px 0 0;color:#fff;text-decoration:none}@media screen and (max-width:895px){.tabs-bar__link{width:36px;height:42px;margin:4px 4px 0 0;justify-content:center}.tabs-bar__link.active{border-bottom:2px solid #21cf7a}.tabs-bar__link>span{display:none}}.tabs-bar__link>span{font-size:15px;line-height:50px;margin-left:4px}@media(min-width:1024px){.tabs-bar__link--search{display:none}}@media screen and (max-width:895px){.tabs-bar__link.apps{display:none}}.tabs-bar__link__icon{width:20px;background-repeat:no-repeat;background-image:url(/packs/media/images/sprite-main-navigation-links-c3f303b6d9dc7a3ba479c40563a707ae.png);background-size:auto 84px}.tabs-bar__link__icon.chat{font-size:25px;padding-top:7px;width:24px;color:#c8c8c8;background-image:none!important}.tabs-bar__link__icon.chat--sm{font-size:20px!important;width:24px!important;padding-top:14px!important}@media screen and (max-width:895px){.tabs-bar__link__icon{width:32px;background-size:auto 120px}}.tabs-bar__link__icon.home{background-position:0 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.home{background-position:1px 11px}}.tabs-bar__link__icon.notifications{background-position:-140px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.notifications{background-position:-195px 11px}}.tabs-bar__link__icon.groups{background-position:-280px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.groups{background-position:-400px 11px}}.tabs-bar__link__icon.apps{background-position:-825px 18px}.tabs-bar__link__icon.trends{background-position:-850px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.trends{background-position:-1208px 8px}}.tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-697px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-995px 11px}}.tabs-bar__link.active{color:#21cf7a;font-weight:700}.tabs-bar__link.active .tabs-bar__link__icon.home{background-position:0 -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.home{background-position:1px -89px}}.tabs-bar__link.active .tabs-bar__link__icon.notifications{background-position:-140px -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.notifications{background-position:-195px -89px}}.tabs-bar__link.active .tabs-bar__link__icon.groups{background-position:-280px -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.groups{background-position:-400px -89px}}@media(min-width:895px)and (max-width:1024px){.tabs-bar__link.active .tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-697px -52px}}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-995px -89px}}.tabs-bar__link--logo{display:block;width:50px;height:50px;margin-right:28px;border:none;background-image:url(/packs/media/images/gab_logo-27b9e62c4655322034140e1f84e13df1.svg);background-repeat:no-repeat;background-position:0 10px;background-size:50px 30px}@media screen and (max-width:895px){.tabs-bar__link--logo{display:none}}.tabs-bar__link--logo span{display:none!important}.tabs-bar__link--logo:hover{background-color:#000!important;border:none!important}.tabs-bar__link--no-highlight,.tabs-bar__link--no-highlight.active,.tabs-bar__link--no-highlight:active,.tabs-bar__link--no-highlight:focus,.tabs-bar__link--no-highlight:hover{background:0 0!important;border-bottom-color:transparent!important}.dropdown-menu{z-index:9999;position:absolute;background:#222;border-radius:4px;border:1px solid #666;padding:4px 0;font-size:13px;font-size:1.3rem;line-height:26px;line-height:2.6rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.dropdown-menu.left{transform-origin:100% 50%}.dropdown-menu.top{transform-origin:50% 100%}.dropdown-menu.bottom{transform-origin:50% 0}.dropdown-menu.right{transform-origin:0 50%}.dropdown-menu__arrow{position:absolute;width:0;height:0;border:0 solid transparent}.dropdown-menu__arrow.left{right:-5px;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#666}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-5px;border-width:5px 5px 0;border-top-color:#666}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#666}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#666}.dropdown-menu ul{overflow:hidden;padding:6px 0}.dropdown-menu__item a{display:block;box-sizing:border-box;overflow:hidden;padding:3px 10px 1px;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;text-transform:capitalize;color:#999}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{outline:0;color:#21cf7a;background:#333!important;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.dropdown-menu__separator{display:block;margin:10px!important;height:1px;background:#333}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown--active .dropdown__content{display:block;line-height:18px;max-width:311px;right:0;text-align:left;z-index:9999}.dropdown--active .dropdown__content>ul{list-style:none;background:#666;padding:4px 0;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.4);min-width:140px;position:relative}.dropdown--active .dropdown__content.dropdown__right{right:0}.dropdown--active .dropdown__content.dropdown__left>ul{left:-98px}.dropdown--active .dropdown__content>ul>li>a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#666;color:#333;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown--active .dropdown__content>ul>li>a:focus{outline:0}.dropdown--active .dropdown__content>ul>li>a:hover{background:#21cf7a;color:#666}.dropdown__icon{vertical-align:middle}.modal-root{position:relative;transition:opacity .3s linear;will-change:opacity;z-index:9999}.modal-root__overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.7)}.modal-root__container{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;align-content:space-around;z-index:9999;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.modal-root__modal{pointer-events:auto;display:flex;z-index:9999;max-height:100%;overflow-y:hidden}.video-modal{max-width:100vw;max-height:100vh;position:relative}.media-modal{width:100%;height:100%;position:relative}.media-modal .extended-video-player{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.media-modal .extended-video-player video{max-width:100%;max-height:80%}.media-modal__closer,.media-modal__navigation{position:absolute;top:0;left:0;right:0;bottom:0}.media-modal__navigation{pointer-events:none;transition:opacity .3s linear;will-change:opacity}.media-modal__navigation *{pointer-events:auto}.media-modal__navigation.media-modal__navigation--hidden{opacity:0}.media-modal__navigation.media-modal__navigation--hidden *{pointer-events:none}.media-modal__nav{background:rgba(0,0,0,.5);box-sizing:border-box;border:0;color:#fff;cursor:pointer;display:flex;align-items:center;font-size:24px;height:20vmax;margin:auto 0;padding:30px 15px;position:absolute;top:0;bottom:0}.media-modal__nav--left{left:0}.media-modal__nav--right{right:0}.media-modal__meta,.media-modal__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.media-modal__meta--shifted{bottom:62px}.media-modal__meta a{text-decoration:none;font-weight:500;color:#666}.media-modal__meta a:active,.media-modal__meta a:focus,.media-modal__meta a:hover{text-decoration:underline}.media-modal__page-dot{display:inline-block}.media-modal__button{background-color:#fff;height:12px;width:12px;border-radius:6px;margin:10px;padding:0;border:0;font-size:0}.media-modal__button--active{background-color:#21cf7a}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#666;color:#333;border-radius:8px;overflow:hidden;display:flex;flex-direction:column}.error-modal__body{height:80vh;width:80vw;max-width:520px;max-height:420px;position:relative}.error-modal__body>div{position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;padding:25px;display:none;display:flex;opacity:0;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.error-modal__body,.error-modal__body>div{flex-direction:column;align-items:center;justify-content:center}.error-modal__body{display:flex;text-align:center}.error-modal__footer,.onboarding-modal__paginator{flex:0 0 auto;background:#525252;display:flex;padding:25px}.error-modal__footer>div,.onboarding-modal__paginator>div{min-width:33px}.error-modal__footer .error-modal__nav,.error-modal__footer .onboarding-modal__nav,.onboarding-modal__paginator .error-modal__nav,.onboarding-modal__paginator .onboarding-modal__nav{color:#757575;border:0;font-size:14px;font-weight:500;padding:10px 25px;line-height:inherit;height:auto;margin:-10px;border-radius:4px;background-color:transparent}.error-modal__footer .error-modal__nav:active,.error-modal__footer .error-modal__nav:focus,.error-modal__footer .error-modal__nav:hover,.error-modal__footer .onboarding-modal__nav:active,.error-modal__footer .onboarding-modal__nav:focus,.error-modal__footer .onboarding-modal__nav:hover,.onboarding-modal__paginator .error-modal__nav:active,.onboarding-modal__paginator .error-modal__nav:focus,.onboarding-modal__paginator .error-modal__nav:hover,.onboarding-modal__paginator .onboarding-modal__nav:active,.onboarding-modal__paginator .onboarding-modal__nav:focus,.onboarding-modal__paginator .onboarding-modal__nav:hover{color:#6b6b6b;background-color:#3d3d3d}.error-modal__footer .error-modal__nav.onboarding-modal__done,.error-modal__footer .error-modal__nav.onboarding-modal__next,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next{color:#333}.error-modal__footer .error-modal__nav.onboarding-modal__done:active,.error-modal__footer .error-modal__nav.onboarding-modal__done:focus,.error-modal__footer .error-modal__nav.onboarding-modal__done:hover,.error-modal__footer .error-modal__nav.onboarding-modal__next:active,.error-modal__footer .error-modal__nav.onboarding-modal__next:focus,.error-modal__footer .error-modal__nav.onboarding-modal__next:hover,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:active,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:focus,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:hover,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:active,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:focus,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:hover,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:active,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:focus,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:hover,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:active,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:focus,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:hover,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:active,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:focus,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:hover,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:active,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:focus,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:hover{color:#3d3d3d}.error-modal__footer{justify-content:center}.display-case{text-align:center;font-size:15px;margin-bottom:15px}.display-case__label{font-weight:500;color:#333;margin-bottom:5px;text-transform:uppercase;font-size:12px}.display-case__case{background:#333;color:#666;font-weight:500;padding:10px;border-radius:4px}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.mute-modal,.report-modal{position:relative;flex-direction:column;overflow:hidden;width:480px;max-width:90vw;border-radius:4px;border:1px solid #666;color:#999;background:#222}body.theme-gabsocial-light .actions-modal,body.theme-gabsocial-light .boost-modal,body.theme-gabsocial-light .confirmation-modal,body.theme-gabsocial-light .mute-modal,body.theme-gabsocial-light .report-modal{color:#6c6c6c}.actions-modal .status__display-name,.boost-modal .status__display-name,.confirmation-modal .status__display-name,.mute-modal .status__display-name,.report-modal .status__display-name{display:block;max-width:100%;padding-right:25px}.actions-modal .status__avatar,.boost-modal .status__avatar,.confirmation-modal .status__avatar,.mute-modal .status__avatar,.report-modal .status__avatar{height:28px;left:10px;position:absolute;top:10px;width:48px}.actions-modal .status__content__spoiler-link,.boost-modal .status__content__spoiler-link,.confirmation-modal .status__content__spoiler-link,.mute-modal .status__content__spoiler-link,.report-modal .status__content__spoiler-link{color:#7a7a7a}.actions-modal .status{background:#fff;border-bottom-color:#666;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator{display:block;margin:10px;height:1px;background:#333}.boost-modal__container{overflow-x:scroll;padding:10px}.boost-modal__container .status{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;border-bottom:0}.boost-modal__action-bar,.confirmation-modal__action-bar,.mute-modal__action-bar{display:flex;justify-content:space-between;background:#666;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div,.mute-modal__action-bar>div{flex:1 1 auto;text-align:right;color:#757575;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button,.mute-modal__action-bar .button{flex:0 0 auto}.boost-modal__status-header{font-size:15px}.boost-modal__status-time{float:right;font-size:14px}.mute-modal{line-height:24px}.mute-modal .react-toggle{vertical-align:middle}.report-modal{width:90vw;max-width:700px}.report-modal__container{display:flex;border-top:1px solid #666}@media screen and (max-width:480px){.report-modal__container{flex-wrap:wrap;overflow-y:auto}}.report-modal__comment,.report-modal__statuses{box-sizing:border-box;width:50%}@media screen and (max-width:480px){.report-modal__comment,.report-modal__statuses{width:100%}}.report-modal__statuses{flex:1 1 auto;min-height:20vh;max-height:80vh;overflow-y:auto;overflow-x:hidden}.report-modal__statuses .status__content a{color:#21cf7a}.report-modal__statuses .status__content,.report-modal__statuses .status__content p{color:#999}body.theme-gabsocial-light .report-modal__statuses .status__content,body.theme-gabsocial-light .report-modal__statuses .status__content p{color:#6c6c6c}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #666;max-width:320px}.report-modal__comment p{font-size:14px;line-height:20px;margin-bottom:20px}.report-modal__comment .setting-text{display:block;box-sizing:border-box;width:100%;color:#333;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;outline:0;border-radius:4px;border:1px solid #666;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #525252}.report-modal__comment .setting-toggle{margin-top:20px;margin-bottom:24px}.report-modal__comment .setting-toggle__label{color:#333;font-size:14px}@media screen and (max-width:480px){.report-modal__comment{padding:10px;max-width:100%;order:2}.report-modal__comment .setting-toggle{margin-bottom:4px}}.actions-modal{width:calc(100% - 72px);margin:35px}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;flex-shrink:0;max-height:calc(100vh - 147px)}.actions-modal ul.with-status{max-height:calc(80vh - 75px)}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty):first-of-type{margin:10px 0 0}.actions-modal ul li:not(:empty):last-of-type{margin:0 0 10px}.actions-modal ul li:not(:empty) a{display:flex;align-items:center;padding:13px 10px 12px;@inclide font-size(14);color:#999;text-decoration:none}.actions-modal ul li:not(:empty) a,.actions-modal ul li:not(:empty) a button{transition:none}.actions-modal ul li:not(:empty) a.active,.actions-modal ul li:not(:empty) a.active button,.actions-modal ul li:not(:empty) a:active,.actions-modal ul li:not(:empty) a:active button,.actions-modal ul li:not(:empty) a:focus,.actions-modal ul li:not(:empty) a:focus button,.actions-modal ul li:not(:empty) a:hover,.actions-modal ul li:not(:empty) a:hover button{background:#333;color:#21cf7a;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.actions-modal ul li:not(:empty) a button:first-child{margin-right:10px}.confirmation-modal__action-bar .confirmation-modal__cancel-button,.confirmation-modal__action-bar .confirmation-modal__secondary-button,.confirmation-modal__action-bar .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__secondary-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#757575;font-size:14px;font-weight:500}.confirmation-modal__action-bar .confirmation-modal__cancel-button:active,.confirmation-modal__action-bar .confirmation-modal__cancel-button:focus,.confirmation-modal__action-bar .confirmation-modal__cancel-button:hover,.confirmation-modal__action-bar .confirmation-modal__secondary-button:active,.confirmation-modal__action-bar .confirmation-modal__secondary-button:focus,.confirmation-modal__action-bar .confirmation-modal__secondary-button:hover,.confirmation-modal__action-bar .mute-modal__cancel-button:active,.confirmation-modal__action-bar .mute-modal__cancel-button:focus,.confirmation-modal__action-bar .mute-modal__cancel-button:hover,.mute-modal__action-bar .confirmation-modal__cancel-button:active,.mute-modal__action-bar .confirmation-modal__cancel-button:focus,.mute-modal__action-bar .confirmation-modal__cancel-button:hover,.mute-modal__action-bar .confirmation-modal__secondary-button:active,.mute-modal__action-bar .confirmation-modal__secondary-button:focus,.mute-modal__action-bar .confirmation-modal__secondary-button:hover,.mute-modal__action-bar .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#6b6b6b}.confirmation-modal__action-bar .confirmation-modal__secondary-button,.mute-modal__action-bar .confirmation-modal__secondary-button{flex-shrink:1}.confirmation-modal__container,.mute-modal__container,.report-modal__target{padding:30px;font-size:16px;text-align:center}.confirmation-modal__container strong,.mute-modal__container strong,.report-modal__target strong{font-weight:500}.confirmation-modal__container strong:lang(ja),.confirmation-modal__container strong:lang(ko),.confirmation-modal__container strong:lang(zh-cn),.confirmation-modal__container strong:lang(zh-hk),.confirmation-modal__container strong:lang(zh-tw),.mute-modal__container strong:lang(ja),.mute-modal__container strong:lang(ko),.mute-modal__container strong:lang(zh-cn),.mute-modal__container strong:lang(zh-hk),.mute-modal__container strong:lang(zh-tw),.report-modal__target strong:lang(ja),.report-modal__target strong:lang(ko),.report-modal__target strong:lang(zh-cn),.report-modal__target strong:lang(zh-hk),.report-modal__target strong:lang(zh-tw){font-weight:700}.report-modal__target{padding:20px}.report-modal__target .media-modal__close{top:19px;right:15px}.modal-layout{background:#333 url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMzQuODAwNzggMzEuNzU3ODEzIiB3aWR0aD0iMjM0LjgwMDc4IiBoZWlnaHQ9IjMxLjc1NzgxMiI+PHBhdGggZD0iTTE5LjU5OTYwOSAwYy0xLjA1IDAtMi4xMDAzOS4zNzUtMi45MDAzOSAxLjEyNUwwIDE2LjkyNTc4MXYxNC44MzIwMzFoMjM0LjgwMDc4VjE3LjAyNTM5MWwtMTYuNS0xNS45MDAzOTFjLTEuNi0xLjUtNC4yMDA3OC0xLjUtNS44MDA3OCAwbC0xMy44MDA3OCAxMy4wOTk2MDljLTEuNiAxLjUtNC4xOTg4MyAxLjUtNS43OTg4MyAwTDE3OS4wOTk2MSAxLjEyNWMtMS42LTEuNS00LjE5ODgzLTEuNS01Ljc5ODgzIDBMMTU5LjUgMTQuMjI0NjA5Yy0xLjYgMS41LTQuMjAwNzggMS41LTUuODAwNzggMEwxMzkuOTAwMzkgMS4xMjVjLTEuNi0xLjUtNC4yMDA3OC0xLjUtNS44MDA3OCAwbC0xMy43OTg4MyAxMy4wOTk2MDljLTEuNiAxLjUtNC4yMDA3OCAxLjUtNS44MDA3OCAwTDEwMC42OTkyMiAxLjEyNWMtMS42MDAwMDEtMS41LTQuMTk4ODI5LTEuNS01Ljc5ODgyOSAwbC0xMy41OTk2MSAxMy4wOTk2MDljLTEuNiAxLjUtNC4yMDA3ODEgMS41LTUuODAwNzgxIDBMNjEuNjk5MjE5IDEuMTI1Yy0xLjYtMS41LTQuMTk4ODI4LTEuNS01Ljc5ODgyOCAwTDQyLjA5OTYwOSAxNC4yMjQ2MDljLTEuNiAxLjUtNC4xOTg4MjggMS41LTUuNzk4ODI4IDBMMjIuNSAxLjEyNUMyMS43LjM3NSAyMC42NDk2MDkgMCAxOS41OTk2MDkgMHoiIGZpbGw9IiM3NTc1NzUiLz48L3N2Zz4=) repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}@media screen and (max-width:600px){.account-header{margin-top:0}}.account__header.inactive{opacity:.5}.account__header.inactive .account__avatar,.account__header.inactive .account__header__image{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header__info{position:absolute;top:10px;left:10px}.account__header__image{overflow:hidden;height:350px;position:relative;background:#292929}@media screen and (max-width:895px){.account__header__image{height:225px}}.account__header__image--none{height:125px}.account__header__image img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0}.account__header__bar{display:block;min-height:74px;width:100%;position:relative;background:#3d3d3d}@media(min-width:895px){.account__header__bar{height:74px}}.account__header__avatar{display:block;position:absolute;border:5px solid #3d3d3d;left:0;top:-90px;border-radius:50%;height:200px;width:200px;background-color:#1f1f1f}.account__header__avatar .account__avatar{width:200px;height:200px;background-size:200px 200px}@media screen and (max-width:895px){.account__header__avatar{top:-45px;left:10px;height:90px;width:90px}.account__header__avatar .account__avatar{width:90px;height:90px;background-size:90px 90px}}.account__header__extra{display:flex;flex-direction:row;height:100%;margin:0 auto;padding-left:310px;width:100%;max-width:1200px;box-sizing:border-box;position:relative}@media(min-width:895px)and (max-width:1190px){.account__header__extra{max-width:900px;padding-left:300px}}@media screen and (max-width:895px){.account__header__extra{max-width:900px;padding:10px 10px 0;flex-direction:column-reverse;min-height:50px}}.account__header__extra__buttons{display:flex;align-items:center;margin-left:auto}.account__header__extra__buttons .icon-button{border:1px solid #525252;border-radius:4px;box-sizing:content-box;padding:2px}.account__header__extra__buttons .button{margin-right:10px}.account__header__extra__links{display:flex;font-size:14px;color:#999}@media screen and (max-width:895px){.account__header__extra__links{justify-content:center;flex-wrap:wrap}}.account__header__extra__links a{display:inline-block;text-decoration:none;padding:16px 22px;text-align:center}@media screen and (max-width:1190px){.account__header__extra__links a{padding:16px}}.account__header__extra__links a>span{display:block}.account__header__extra__links a>span:first-of-type{color:#fff;font-size:20px;font-weight:800;line-height:24px}@media screen and (max-width:895px){.account__header__extra__links a>span:first-of-type{font-size:16px;line-height:20px}}.account__header__extra__links a>span:last-of-type{color:#666;font-size:12px;line-height:14px;padding-top:2px}.account__header__extra__links a.active,.account__header__extra__links a:hover{border-bottom:2px solid #fff}.account__header__extra__links a.score{border-bottom:none!important}@media screen and (max-width:895px){.account__header .account-mobile-container{display:block;background:#3d3d3d;margin-top:10px;position:relative;padding:10px 10px 0}.account__header .account-mobile-container--nonuser{padding:10px 10px 15px}}.user-panel{display:flex;width:265px;flex-direction:column;overflow-y:hidden;border-radius:10px;background:#222}body.theme-gabsocial-light .user-panel{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.user-panel__header{display:block;height:112px;width:100%;background:#2c2c2c}body.theme-gabsocial-light .user-panel__header{background:#f5f5f5}.user-panel__header img{display:block;height:100%;width:100%;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.user-panel__profile{display:flex;align-items:flex-start;padding:0 10px;margin-top:-53px}.user-panel__profile .account__avatar{display:block;width:82px;height:82px;border:6px solid #333;background-size:cover}body.theme-gabsocial-light .user-panel__profile .account__avatar{border:6px solid #f2f3f6}.user-panel__meta{display:block;padding:6px 20px 17px}.user-panel__account a{text-decoration:none;color:#fff}.user-panel__account__name{display:block;font-size:20px;font-weight:700;line-height:24px;color:#fff}body.theme-gabsocial-light .user-panel__account__name{color:#6c6c6c}.user-panel__account:hover .user-panel__account__name{text-decoration:underline}.user-panel__account__username{display:block;font-size:14px;line-height:16px;color:#999;text-decoration:none!important}.user-panel__stats-block{display:flex;justify-content:space-between;padding-top:12px}.user-panel .user-panel-stats-item{display:flex;align-items:start;justify-content:left;flex-wrap:wrap;flex-direction:column}.user-panel .user-panel-stats-item a{text-decoration:none;color:#fff}.user-panel .user-panel-stats-item a:hover{opacity:.8}.user-panel .user-panel-stats-item__value{display:block;width:100%;color:#fff;font-size:20px;font-weight:800;line-height:24px}body.theme-gabsocial-light .user-panel .user-panel-stats-item__value{color:#6c6c6c}.user-panel .user-panel-stats-item__label{display:block;width:100%;color:#999;font-size:12px;line-height:14px}.compose-form{padding:10px}.compose-form__sensitive-button{padding:0 10px 10px;font-size:14px;font-weight:500}.compose-form__sensitive-button.active{color:#21cf7a}.compose-form__sensitive-button input[type=checkbox]{display:none}.compose-form__sensitive-button .checkbox{display:inline-block;position:relative;border:1px solid #333;box-sizing:border-box;width:18px;height:18px;flex:0 0 auto;margin-right:10px;top:-1px;border-radius:4px;vertical-align:middle}.compose-form__sensitive-button .checkbox.active{border-color:#21cf7a;background:#21cf7a}.compose-form .compose-form__warning{color:#333;margin-bottom:10px;background:#333;box-shadow:0 2px 6px rgba(0,0,0,.3);padding:8px 10px;border-radius:4px;font-size:13px;font-weight:400}.compose-form .compose-form__warning strong{color:#333;font-weight:500}.compose-form .compose-form__warning strong:lang(ja),.compose-form .compose-form__warning strong:lang(ko),.compose-form .compose-form__warning strong:lang(zh-cn),.compose-form .compose-form__warning strong:lang(zh-hk),.compose-form .compose-form__warning strong:lang(zh-tw){font-weight:700}.compose-form .compose-form__warning a{color:#757575;font-weight:500;text-decoration:underline}.compose-form .compose-form__warning a:active,.compose-form .compose-form__warning a:focus,.compose-form .compose-form__warning a:hover{text-decoration:none}.compose-form .emoji-picker-dropdown{position:absolute;top:5px;right:5px;z-index:1}.compose-form .autosuggest-input,.compose-form .autosuggest-textarea,.compose-form .compose-form__autosuggest-wrapper,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:36px;margin-bottom:11px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;box-sizing:border-box;width:100%;margin:0;color:#333;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;border:0;outline:0}.compose-form .autosuggest-textarea__textarea:focus,.compose-form .spoiler-input__input:focus{outline:0}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{font-size:16px}}.compose-form .spoiler-input__input{border-radius:4px}.compose-form .autosuggest-textarea__textarea{min-height:100px;border-radius:5px 5px 0 0;padding-bottom:0;padding-right:32px;resize:none;scrollbar-color:auto}.compose-form .autosuggest-textarea__textarea::-webkit-scrollbar{all:unset}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{max-height:100px!important;resize:vertical}}.compose-form.condensed .autosuggest-textarea__textarea{min-height:46px;border-radius:5px}.compose-form .autosuggest-textarea__suggestions-wrapper,.compose-form .emoji-picker-wrapper{position:relative;height:0}.compose-form .autosuggest-textarea__suggestions{box-sizing:border-box;display:none;position:absolute;top:100%;width:100%;z-index:99;box-shadow:4px 4px 6px rgba(0,0,0,.4);background:#666;border-radius:0 0 4px 4px;color:#333;font-size:14px;padding:6px}.compose-form .autosuggest-textarea__suggestions.autosuggest-textarea__suggestions--visible{display:block}.compose-form .autosuggest-textarea__suggestions__item{padding:10px;cursor:pointer;border-radius:4px}.compose-form .autosuggest-textarea__suggestions__item.selected,.compose-form .autosuggest-textarea__suggestions__item:active,.compose-form .autosuggest-textarea__suggestions__item:focus,.compose-form .autosuggest-textarea__suggestions__item:hover{background:#4d4d4d}.compose-form .autosuggest-account,.compose-form .autosuggest-emoji{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;line-height:18px;font-size:14px}.compose-form .autosuggest-account-icon,.compose-form .autosuggest-emoji img{display:block;margin-right:8px;width:16px;height:16px}.compose-form .autosuggest-account .display-name__account{color:#757575}.compose-form .compose-form__modifiers{color:#333;font-family:inherit;font-size:14px;background:#fff}.compose-form .compose-form__modifiers .compose-form__upload-wrapper{overflow:hidden}.compose-form .compose-form__modifiers .compose-form__uploads-wrapper{display:flex;flex-direction:row;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__uploads-wrapper.contains-media{padding:5px;border-top:1px solid #ebebeb}.compose-form .compose-form__modifiers .compose-form__upload{margin:5px;width:calc(50% - 10px);height:135px}@media(min-width:895px){.compose-form .compose-form__modifiers .compose-form__upload{width:222px;height:180px}}@media(min-width:607px)and (max-width:895px){.compose-form .compose-form__modifiers .compose-form__upload{width:210px;height:210px}}.compose-form .compose-form__modifiers .compose-form__upload__actions{background:linear-gradient(180deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);display:flex;align-items:flex-start;justify-content:space-between;opacity:0;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{flex:0 1 auto;color:#999;font-size:14px;font-weight:500;padding:10px;font-family:inherit}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:active,.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:focus,.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:hover{color:#21cf7a}.compose-form .compose-form__modifiers .compose-form__upload__actions.active{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description{position:absolute;z-index:2;bottom:0;left:0;right:0;box-sizing:border-box;background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);padding:10px;opacity:0;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload-description textarea{background:rgba(0,0,0,.3);box-sizing:border-box;background:0 0;color:#999;border:1px solid #999;outline:none;padding:10px;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description textarea:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-webkit-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-moz-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea:-ms-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-ms-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description.active{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-thumbnail{border-radius:4px;background-position:50%;background-size:cover;background-repeat:no-repeat;height:100%;width:100%;overflow:hidden}.compose-form .compose-form__buttons-wrapper{padding:10px;background:#ebebeb;border-radius:0 0 4px 4px;display:flex;justify-content:space-between;flex:0 0 auto}.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:flex;flex-wrap:wrap}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__upload-button-icon{line-height:27px}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button{display:none}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button.compose-form__sensitive-button--visible{display:block}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button .compose-form__sensitive-button__icon{line-height:27px}.compose-form .compose-form__buttons-wrapper .icon-button{box-sizing:content-box;padding:0 3px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper{align-self:center;margin-right:4px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter{cursor:default;font-family:gabsocial-font-sans-serif,sans-serif;font-size:14px;font-weight:600;color:#999}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter.character-counter--over{color:#ff5050}.compose-form .compose-form__publish{display:flex;justify-content:flex-end;min-width:0;flex:0 0 auto}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.compose-form__quote-preview{font-size:14px;padding:5px 10px 0;background:#ebebeb;border-bottom:1px solid #c7c7c7;color:#555}.compose-form__quote-preview .status__content{font-size:.9em;color:#555;max-height:100px;overflow-y:auto}.group-column-header{overflow:hidden;border-radius:10px;background:#222}body.theme-gabsocial-light .group-column-header{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-column-header .group-column-header__title{padding:15px;font-size:20px;font-weight:700}.group-column-header .group-column-header__cta{float:right;padding:15px;font-size:17px}.group-column-header .group-column-header__cta a{color:#fff}.group-card-list{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;width:100%;margin-top:20px}.group-card{display:block;flex:0 0 calc(50% - 10px);border-radius:10px;background:#222;margin-bottom:20px;text-decoration:none;overflow:hidden}body.theme-gabsocial-light .group-card{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-card .group-card__header{overflow:hidden}.group-card .group-card__header img{pointer-events:none;width:100%;background:#222}body.theme-gabsocial-light .group-card .group-card__header img{background:#fff}.group-card .group-card__content{padding:15px}.group-card .group-card__content .group-card__title{color:#fff;font-size:16px;font-weight:700}.group-card .group-card__content .group-card__meta{color:#999;font-size:14px;margin-top:5px;margin-bottom:10px}.group-card .group-card__content .group-card__description{color:#fff;font-size:14px}.group-card:hover .group-card__title{text-decoration:underline}.group .group__header-container{width:100%;display:flex;justify-content:center;flex-direction:row}.group .group__header{width:100%;max-width:1150px;background:#222;border-radius:10px;overflow:hidden;margin:20px 0}body.theme-gabsocial-light .group .group__header{background:#fff}.group .group__header .group__cover img{width:100%}.group .group__header .group__tabs .group__tabs__tab{display:inline-block;text-decoration:none;padding:16px 22px;text-align:center;color:#fff}.group .group__header .group__tabs .group__tabs__tab--active,.group .group__header .group__tabs .group__tabs__tab:hover{border-bottom:2px solid #fff}.group .group__header .group__tabs:after{content:"";clear:both;display:table}.group .group__header .group__tabs button{float:right;margin:7px}.group .group__header .group__tabs div{float:right;margin:4px}.group .group__panel{padding:10px 10px 20px}.group .group__panel h1{font-size:22px;font-weight:700;margin-bottom:10px}.group .group__panel .group__panel__description{font-size:14px}.group .group__panel .group__panel__label{display:inline-block;margin-bottom:10px;border-radius:4px;background:#222;font-size:13px;padding:4px 8px}body.theme-gabsocial-light .group .group__panel .group__panel__label{background:#fff}.group .group__feed{background:#222;border-top-left-radius:10px;border-top-right-radius:10px;overflow:hidden}body.theme-gabsocial-light .group .group__feed{background:#fff}.group-account-wrapper{position:relative}.group-account-wrapper>div>.icon-button{position:absolute;right:5px;top:50%;transform:translateY(-50%)}.group-form{padding:20px;border-radius:10px;background:#222}body.theme-gabsocial-light .group-form{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-form,.group-form div{box-sizing:border-box;float:left;width:100%}.group-form input[type=text].standard,.group-form textarea.standard{width:100%;margin:0 0 10px}.group-form textarea{float:left;height:88px}.group-form .group-form__file-label{cursor:pointer;display:block;box-sizing:border-box;float:left;height:20px;padding:3px 0 0 33px;font-size:12px;font-size:1.2rem;font-weight:300;color:#999;background-repeat:no-repeat;background-image:url(/packs/media/images/sprite-post-functions-ae530086a5c56d4fa6efd5603a2df828.png);background-size:100px 1200px}.group-form .group-form__file-label.group-form__file-label--selected,.group-form .group-form__file-label:hover{color:#21cf7a;background-position:0 -100px}.group-form .group-form__file{width:1px;height:1px;overflow:hidden;opacity:0;position:absolute;pointer-events:none}.group-form button{float:right}.group-sidebar-panel__items{padding:0 15px 15px}.group-sidebar-panel__items__show-all{color:#fff}.group-sidebar-panel__item{display:block;color:#fff;text-decoration:none;margin-bottom:15px}.group-sidebar-panel__item:last-child{margin-bottom:0}.group-sidebar-panel__item__title{font-weight:700}.group-sidebar-panel__item__meta{font-size:.8em;color:#999}.group-sidebar-panel__item__meta__unread{color:#21cf7a}.sidebar-menu{display:flex;position:fixed;flex-direction:column;width:275px;height:100vh;top:0;bottom:0;left:0;background:#222;transform:translateX(-275px);transition:all .15s linear;z-index:10001}body.theme-gabsocial-light .sidebar-menu{background:#fff}.sidebar-menu__root{display:none}.sidebar-menu__wrapper{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;background-color:transparent;transition:background-color .2s linear;transition-delay:.1s}.sidebar-menu__content{display:flex;flex:1 1;flex-direction:column;padding-bottom:40px;overflow:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.sidebar-menu__section{display:block;margin:4px 0;border-top:1px solid #3d3d3d}.sidebar-menu__section--borderless{margin:0;border-top:none}@media(max-width:400px){.sidebar-menu{width:90vw}}.sidebar-menu__root--visible{display:block}.sidebar-menu__root--visible .sidebar-menu{transform:translateX(0)}.sidebar-menu__root--visible .sidebar-menu__wrapper{background-color:rgba(0,0,0,.3)}.sidebar-menu-header{display:flex;height:46px;padding:12px 14px;border-bottom:1px solid #3d3d3d;box-sizing:border-box;align-items:center}.sidebar-menu-header__title{display:block;font-size:18px;font-weight:600;color:#fff}.sidebar-menu-header__btn{margin-left:auto}.sidebar-menu-profile{display:block;padding:14px 18px}.sidebar-menu-profile__avatar{display:block;width:56px;height:56px}.sidebar-menu-profile__name{display:block;margin-top:10px}.sidebar-menu-profile__name .display-name__account{display:block;margin-top:2px}.sidebar-menu-profile__stats{display:flex;margin-top:12px}.sidebar-menu-profile-stat{display:flex;font-size:14px;text-decoration:none}.sidebar-menu-profile-stat:not(:first-of-type){margin-left:18px}.sidebar-menu-profile-stat__value{display:flex;margin-right:3px;font-weight:700;color:#fff}.sidebar-menu-profile-stat__label{display:flex;color:#fff}.sidebar-menu-profile-stat:hover{text-decoration:underline}.sidebar-menu-item{display:flex;padding:16px 18px;cursor:pointer;text-decoration:none;color:#fff;font-size:15px;font-weight:400;height:50px;box-sizing:border-box}.sidebar-menu-item:hover{background-color:rgba(33,207,122,.1)}.sidebar-menu-item:hover .fa{color:#fff}.sidebar-menu-item .fa{margin-right:10px}.sidebar-menu-item:hover__title{color:#fff}@media screen and (max-width:960px){.status-revisions-root{width:100%}}.status-revisions{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px}@media screen and (max-width:960px){.status-revisions{height:90vh}}.status-revisions__header{display:block;position:relative;border-bottom:1px solid #474747;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.status-revisions__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#fff;text-align:center}.status-revisions__close{position:absolute;right:10px;top:10px}.status-revisions__content{display:flex;flex-direction:row;width:500px;flex-direction:column;overflow:hidden;overflow-y:scroll;height:calc(100% - 80px);-webkit-overflow-scrolling:touch;widows:90%}@media screen and (max-width:960px){.status-revisions{width:100%}}.status-revisions-list{width:100%}.status-revisions-list__error{padding:15px;text-align:center;font-weight:700}.status-revisions-list__item{padding:15px;border-bottom:1px solid #474747}.status-revisions-list__item__timestamp{opacity:.5;font-size:13px}.status-revisions-list__item__text{font-size:15px}.footer-bar{display:block;position:fixed;background:#000;height:58px;bottom:0;left:0;right:0;z-index:1000;transition:transform .2s ease;overflow:hidden;padding-bottom:env(safe-area-inset-bottom)}@media screen and (min-width:895px){.footer-bar{display:none!important}}.footer-bar__container{display:flex;flex-direction:row;align-items:stretch}.footer-bar__link{display:flex;flex:1 1 auto;margin:0;min-width:36px;height:58px;padding-top:4px;justify-content:center;color:#fff;text-decoration:none;border-top:2px solid transparent}.footer-bar__link.active{border-top-color:#21cf7a}.footer-bar__link>span{display:none}.poll{margin-top:16px;font-size:14px}.poll li{margin-bottom:10px;position:relative;height:30px}.poll__chart{position:absolute;top:0;left:0;height:100%;display:inline-block;border-radius:4px;background:hsla(0,0%,40%,.3)}.poll__chart.leading{background:hsla(0,0%,40%,.6)}.poll__text{position:relative;display:inline-block;padding:6px 0;line-height:18px;cursor:default;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff}body.theme-gabsocial-light .poll__text{color:#6c6c6c}.poll__text input[type=checkbox],.poll__text input[type=radio]{display:none}.poll__text .autossugest-input{flex:1 1 auto}.poll__text input[type=text]{box-sizing:border-box;width:100%;font-size:14px;color:#333;display:block;outline:0;font-family:inherit;background:#fff;border:1px solid #dbdbdb;border-radius:4px;padding:6px 10px}.poll__text input[type=text]:focus{border-color:#21cf7a}.poll__text.selectable{cursor:pointer}.poll__text.editable{display:flex;align-items:center;overflow:visible}.poll__input{display:inline-block;position:relative;border:1px solid #333;box-sizing:border-box;width:18px;height:18px;flex:0 0 auto;margin-right:10px;top:-1px;border-radius:50%;vertical-align:middle}.poll__input.checkbox{border-radius:4px}.poll__input.active{border-color:#79bd9a;background:#79bd9a}.poll__number{display:inline-block;width:36px;font-weight:700;padding:0 10px;text-align:right}.poll__footer{padding-top:6px;padding-bottom:5px;color:#757575}.poll__link{display:inline;background:0 0;padding:0;margin:0;border:0;color:#757575;text-decoration:underline;font-size:inherit}.poll__link:hover{text-decoration:none}.poll__link:active,.poll__link:focus{background-color:hsla(0,0%,45.9%,.1)}.poll .button{height:36px;padding:0 16px;margin-right:10px;font-size:14px}.compose-form__poll-wrapper{border-top:1px solid #ebebeb}.compose-form__poll-wrapper ul{padding:10px}.compose-form__poll-wrapper .poll__footer{border-top:1px solid #ebebeb;padding:10px;display:flex;align-items:center}.compose-form__poll-wrapper .poll__footer button,.compose-form__poll-wrapper .poll__footer select{flex:1 1 50%}.compose-form__poll-wrapper .button.button-secondary{font-size:14px;font-weight:400;padding:6px 10px;height:auto;line-height:inherit;color:#757575;border-color:#757575;margin-right:5px}.compose-form__poll-wrapper li{display:flex;align-items:center}.compose-form__poll-wrapper li .poll__text{flex:0 0 auto;width:calc(100% - 29px);margin-right:6px}.compose-form__poll-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;font-size:14px;color:#333;display:inline-block;width:auto;outline:0;font-family:inherit;background:#fff url("data:image/svg+xml;utf8,") no-repeat right 8px center/auto 16px;border:1px solid #dbdbdb;border-radius:4px;padding:6px 30px 6px 10px}.compose-form__poll-wrapper .icon-button.disabled{color:#dbdbdb}.muted .poll{color:#757575}.muted .poll__chart{background:rgba(15,15,15,.2)}.muted .poll__chart.leading{background:rgba(33,207,122,.2)}.introduction{display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:center!important}@media screen and (max-width:920px){.introduction{background:#1f1f1f;display:block!important}}.introduction__pager{background:#1f1f1f;box-shadow:0 0 15px rgba(0,0,0,.2);overflow:hidden}.introduction__frame,.introduction__pager{border-radius:10px;width:50vw;min-width:920px}@media screen and (max-width:920px){.introduction__frame,.introduction__pager{min-width:0;width:100%;border-radius:0;box-shadow:none}}.introduction__frame-wrapper{opacity:0;transition:opacity .5s linear}.introduction__frame-wrapper.active{opacity:1;transition:opacity 50ms linear}.introduction__frame{overflow:hidden}.introduction__illustration{height:50vh}@media screen and (max-width:630px){.introduction__illustration{height:auto}}.introduction__illustration img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;margin:0;width:100%;height:100%}.introduction__text--columnized{display:flex}.introduction__text--columnized>div{flex:1 1 33.33%;text-align:center;padding:25px 25px 30px}@media screen and (max-width:630px){.introduction__text--columnized{display:block;padding:15px 0 20px}.introduction__text--columnized>div{padding:10px 25px}}.introduction__text h3{font-size:24px;line-height:1.5;font-weight:700;margin-bottom:10px}.introduction__text p{font-size:16px;line-height:24px;font-weight:400;color:#999}.introduction__text p code{display:inline-block;background:#1f1f1f;font-size:15px;border:1px solid #474747;border-radius:2px;padding:1px 3px}.introduction__text--centered{padding:25px 25px 30px;text-align:center}.introduction__dots{display:flex;align-items:center;justify-content:center;padding:25px}@media screen and (max-width:630px){.introduction__dots{display:none}}.introduction__dot{width:14px;height:14px;border-radius:14px;border:1px solid #21cf7a;background:0 0;margin:0 3px;cursor:pointer}.introduction__dot:hover{background:#474747}.introduction__dot.active{cursor:default;background:#21cf7a}.introduction__action{padding:0 25px 25px;display:flex;align-items:center;justify-content:center}.emoji-mart{font-size:13px;display:inline-block;color:#333}.emoji-mart,.emoji-mart *{box-sizing:border-box;line-height:1.15}.emoji-mart .emoji-mart-emoji{padding:6px}.emoji-mart-bar{border:0 solid #525252}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#666}.emoji-mart-bar:last-child{border-top-width:1px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;display:none}.emoji-mart-anchors{display:flex;justify-content:space-between;padding:0 6px;color:#757575;line-height:0}.emoji-mart-anchor{position:relative;flex:1;text-align:center;padding:12px 4px;overflow:hidden;transition:color .1s ease-out;cursor:pointer}.emoji-mart-anchor:hover{color:#6b6b6b}.emoji-mart-anchor-selected{color:#21cf7a}.emoji-mart-anchor-selected:hover{color:#1ebd70}.emoji-mart-anchor-selected .emoji-mart-anchor-bar{bottom:-1px}.emoji-mart-anchor-bar{position:absolute;bottom:-5px;left:0;width:100%;height:4px;background-color:#21cf7a}.emoji-mart-anchors i{display:inline-block;width:100%;max-width:22px}.emoji-mart-anchors svg{fill:currentColor;max-height:18px}.emoji-mart-scroll{overflow-y:scroll;height:270px;max-height:35vh;padding:0 6px 6px;background:#fff;will-change:transform}.emoji-mart-scroll::-webkit-scrollbar-track:active,.emoji-mart-scroll::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.3)}.emoji-mart-search{padding:10px 45px 10px 10px;background:#fff}.emoji-mart-search input{font-size:14px;font-weight:400;padding:7px 9px;font-family:inherit;display:block;width:100%;background:hsla(0,0%,40%,.3);color:#333;border:1px solid #666;border-radius:4px}.emoji-mart-search input::-moz-focus-inner{border:0}.emoji-mart-search input::-moz-focus-inner,.emoji-mart-search input:active,.emoji-mart-search input:focus{outline:0!important}.emoji-mart-category .emoji-mart-emoji{cursor:pointer}.emoji-mart-category .emoji-mart-emoji span{z-index:1;position:relative;text-align:center}.emoji-mart-category .emoji-mart-emoji:hover:before{z-index:0;content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:hsla(0,0%,40%,.7);border-radius:100%}.emoji-mart-category-label{z-index:2;position:relative;position:-webkit-sticky;position:sticky;top:0}.emoji-mart-category-label span{display:block;width:100%;font-weight:500;padding:5px 6px;background:#fff}.emoji-mart-emoji{position:relative;display:inline-block;font-size:0}.emoji-mart-emoji span{width:22px;height:22px}.emoji-mart-no-results{font-size:14px;text-align:center;padding-top:70px;color:#333}.emoji-mart-no-results .emoji-mart-category-label{display:none}.emoji-mart-no-results .emoji-mart-no-results-label{margin-top:.2em}.emoji-mart-no-results .emoji-mart-emoji:hover:before{content:none}.emoji-mart-preview{display:none}.container{box-sizing:border-box;max-width:1235px;margin:0 auto;position:relative}@media screen and (max-width:1255px){.container{width:100%;padding:0 10px}}.rich-formatting{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#999;padding-right:10px}.rich-formatting a{color:#21cf7a;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#999}.rich-formatting li a,.rich-formatting p a{color:#21cf7a;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em,.rich-formatting strong{font-weight:700;color:#b3b3b3}.rich-formatting h1{font-family:gabsocial-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h1 small{font-family:gabsocial-font-sans-serif,sans-serif;display:block;font-size:18px;font-weight:400;color:#b3b3b3}.rich-formatting h2{font-family:gabsocial-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.rich-formatting h6{font-size:12px}.rich-formatting ol,.rich-formatting ul{margin-left:20px}.rich-formatting ol[type=a],.rich-formatting ul[type=a]{list-style-type:lower-alpha}.rich-formatting ol[type=i],.rich-formatting ul[type=i]{list-style-type:lower-roman}.rich-formatting ul{list-style:disc}.rich-formatting ol{list-style:decimal}.rich-formatting li>ol,.rich-formatting li>ul{margin-top:6px}.rich-formatting hr{width:100%;height:0;border:0;border-bottom:1px solid hsla(0,0%,45.9%,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#292929;padding:20px 0}.information-board .container-alt{position:relative;padding-right:295px}.information-board__sections{display:flex;justify-content:space-between;flex-wrap:wrap}.information-board__section{flex:1 0 0;font-family:gabsocial-font-sans-serif,sans-serif;font-size:16px;line-height:28px;color:#fff;text-align:right;padding:10px 15px}.information-board__section span,.information-board__section strong{display:block}.information-board__section span:last-child{color:#666}.information-board__section strong{font-family:gabsocial-font-display,sans-serif;font-weight:500;font-size:32px;line-height:48px}@media screen and (max-width:700px){.information-board__section{text-align:center}}.information-board .panel{position:absolute;width:280px;box-sizing:border-box;background:#1f1f1f;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:gabsocial-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#999;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #3d3d3d;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:grey}.information-board .panel .panel-header a{text-decoration:none}.information-board .owner{text-align:center}.information-board .owner .avatar{width:80px;height:80px;margin:0 auto 15px}.information-board .owner .avatar img{display:block;width:80px;height:80px;border-radius:48px}.information-board .owner .name{font-size:14px}.information-board .owner .name a{display:block;color:#fff;text-decoration:none}.information-board .owner .name a:hover .display_name{text-decoration:underline}.information-board .owner .name .username{display:block;color:#999}.landing-page li,.landing-page p{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#999}.landing-page li a,.landing-page p a{color:#21cf7a;text-decoration:underline}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:0 0;font-family:inherit;font-size:inherit;line-height:inherit;color:#b3b3b3}.landing-page h1{font-family:gabsocial-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h1 small{font-family:gabsocial-font-sans-serif,sans-serif;display:block;font-size:18px;font-weight:400;color:#b3b3b3}.landing-page h2{font-family:gabsocial-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#666}.landing-page h6{font-size:12px}.landing-page ol,.landing-page ul{margin-left:20px}.landing-page ol[type=a],.landing-page ul[type=a]{list-style-type:lower-alpha}.landing-page ol[type=i],.landing-page ul[type=i]{list-style-type:lower-roman}.landing-page ul{list-style:disc}.landing-page ol{list-style:decimal}.landing-page li>ol,.landing-page li>ul{margin-top:6px}.landing-page hr{width:100%;height:0;border:0;border-bottom:1px solid hsla(0,0%,45.9%,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#292929;border-radius:4px;padding:25px 40px;overflow:hidden;box-sizing:border-box}.landing-page__call-to-action .row{width:100%;display:flex;flex-direction:row-reverse;flex-wrap:nowrap;justify-content:space-between;align-items:center}.landing-page__call-to-action .row__information-board{display:flex;justify-content:flex-end;align-items:flex-end}.landing-page__call-to-action .row__information-board .information-board__section{flex:1 0 auto;padding:0 10px}@media screen and (max-width:415px){.landing-page__call-to-action .row__information-board{width:100%;justify-content:space-between}}.landing-page__call-to-action .row__mascot{flex:1;margin:10px -50px 0 0}@media screen and (max-width:415px){.landing-page__call-to-action .row__mascot{display:none}}.landing-page__logo{margin-right:20px}.landing-page__logo img{height:50px;width:auto;mix-blend-mode:lighten}.landing-page__information{padding:45px 40px;margin-bottom:10px}.landing-page__information:last-child{margin-bottom:0}.landing-page__information strong{font-weight:500;color:#b3b3b3}.landing-page__information .account{border-bottom:0;padding:0}.landing-page__information .account__display-name{align-items:center;display:flex;margin-right:5px}.landing-page__information .account div.account__display-name:hover .display-name strong{text-decoration:none}.landing-page__information .account div.account__display-name .account__avatar{cursor:default}.landing-page__information .account__avatar-wrapper{margin-left:0;flex:0 0 auto}.landing-page__information .account__avatar{width:44px;height:44px;background-size:44px 44px}.landing-page__information .account .display-name{font-size:15px}.landing-page__information .account .display-name__account{font-size:14px}@media screen and (max-width:960px){.landing-page__information .contact{margin-top:30px}}@media screen and (max-width:700px){.landing-page__information{padding:25px 20px}}.landing-page #gabsocial-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#333;border-radius:4px;box-shadow:0 0 6px rgba(0,0,0,.1)}.landing-page__mascot{height:104px;position:relative;left:-40px;bottom:25px}.landing-page__mascot img{height:190px;width:auto}.landing-page__short-description .row{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:40px}@media screen and (max-width:700px){.landing-page__short-description .row{margin-bottom:20px}}.landing-page__short-description p a{color:#666}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#999}.landing-page__short-description h1 small span{color:#666}.landing-page__short-description p:last-child{margin-bottom:0}.landing-page__hero{margin-bottom:10px}.landing-page__hero img{display:block;margin:0;max-width:100%;height:auto;border-radius:4px}@media screen and (max-width:840px){.landing-page .information-board .container-alt{padding-right:20px}.landing-page .information-board .panel{position:static;margin-top:20px;width:100%;border-radius:4px}.landing-page .information-board .panel .panel-header{text-align:center}}@media screen and (max-width:675px){.landing-page .header-wrapper{padding-top:0}.landing-page .header-wrapper.compact{padding-bottom:0}.landing-page .header-wrapper.compact .hero .heading{text-align:initial}.landing-page .features .container-alt,.landing-page .header .container-alt{display:block}}.landing-page .cta{margin:20px}.landing{height:auto;min-height:80vh}@media(min-width:767px){.landing{height:100vh;height:calc(100vh - 180px);min-height:580px}}.landing .landing-columns{display:flex;flex-direction:row;padding:40px 0 20px}.landing .landing-columns--left{margin-right:80px}.landing .landing-columns--right{margin-left:auto;width:395px}@media(min-width:767px)and (max-width:1024px){.landing .landing-columns{padding:40px 20px 20px}.landing .landing-columns--left{margin-right:40px}.landing .landing-columns--right{width:425px}}@media screen and (max-width:767px){.landing .landing-columns{height:auto;padding:20px 10px 30px;flex-direction:column;align-items:center}.landing .landing-columns--left{margin-right:0}.landing .landing-columns--right{width:100%;margin-left:0;margin-top:30px}}.landing__brand{display:flex;justify-content:start;align-items:center;flex-direction:column}.landing__brand .brand{margin-right:auto!important}.landing__brand img{height:130px}@media(min-width:767px)and (max-width:1024px){.landing__brand img{height:90px}}@media screen and (max-width:767px){.landing__brand img{display:none}}.landing .directory{margin-top:30px;background:0 0;box-shadow:none;border-radius:0}.landing .hero-widget{margin-top:30px;margin-bottom:0}.landing .hero-widget h4{padding:10px;text-transform:uppercase;font-weight:700;font-size:13px;color:#999}.landing .hero-widget__text{border-radius:0;padding-bottom:0}.landing .hero-widget__footer{background:#333;padding:10px;border-radius:0 0 4px 4px;display:flex}.landing .hero-widget__footer__column{flex:1 1 50%}.landing .hero-widget .account{padding:10px 0;border-bottom:0}.landing .hero-widget .account .account__display-name{display:flex;align-items:center}.landing .hero-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.landing .hero-widget__counter{padding:10px}.landing .hero-widget__counter strong{font-family:gabsocial-font-display,sans-serif;font-size:15px;font-weight:700;display:block}.landing .hero-widget__counter span{font-size:14px;color:#999}.landing .simple_form .user_agreement .label_input>label{font-weight:400;color:#999}.landing .simple_form p.lead{color:#999;font-size:15px;line-height:20px;font-weight:400;margin-bottom:25px}.landing__grid{max-width:960px;margin:0 auto;display:grid;grid-template-columns:minmax(0,50%) minmax(0,50%);grid-gap:30px}@media screen and (max-width:738px){.landing__grid{grid-template-columns:minmax(0,100%);grid-gap:10px}.landing__grid__column-login{grid-row:1;display:flex;flex-direction:column}.landing__grid__column-login .box-widget{order:2;flex:0 0 auto}.landing__grid__column-login .hero-widget{margin-top:0;margin-bottom:10px;order:1;flex:0 0 auto}.landing__grid__column-registration{grid-row:2}.landing__grid .directory{margin-top:10px}}@media screen and (max-width:415px){.landing__grid{grid-gap:0}.landing__grid .hero-widget{display:block;margin-bottom:0;box-shadow:none}.landing__grid .hero-widget__footer,.landing__grid .hero-widget__img,.landing__grid .hero-widget__img img{border-radius:0}.landing__grid .box-widget,.landing__grid .directory__tag,.landing__grid .hero-widget{border-bottom:1px solid #474747}.landing__grid .directory{margin-top:0}.landing__grid .directory__tag{margin-bottom:0}.landing__grid .directory__tag>a,.landing__grid .directory__tag>div{border-radius:0;box-shadow:none}.landing__grid .directory__tag:last-child{border-bottom:0}}.brand{position:relative;text-decoration:none;margin-right:15px}.brand__tagline{display:block;width:470px;color:#fff;font-size:30px;line-height:1.4;margin-top:25px;font-weight:400}@media(min-width:767px)and (max-width:1024px){.brand__tagline{width:320px;font-size:20px}}@media screen and (max-width:767px){.brand__tagline{width:100%;font-size:22px;margin-top:0}}@media(min-width:767px){.hidden-sm{display:block}.visible-sm{display:none}}@media screen and (max-width:767px){.hidden-sm{display:none!important}.visible-sm{display:block!important}}.table{width:100%;max-width:100%;border-spacing:0;border-collapse:collapse}.table td,.table th{padding:8px;line-height:18px;vertical-align:top;border-top:1px solid #333;text-align:left;background:#292929}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #333;border-top:0;font-weight:500}.table>tbody>tr>th{font-weight:500}.table>tbody>tr:nth-child(odd)>td,.table>tbody>tr:nth-child(odd)>th{background:#333}.table a{color:#21cf7a;text-decoration:underline}.table a:hover{text-decoration:none}.table strong{font-weight:500}.table strong:lang(ja),.table strong:lang(ko),.table strong:lang(zh-cn),.table strong:lang(zh-hk),.table strong:lang(zh-tw){font-weight:700}.table.inline-table>tbody>tr:nth-child(odd)>td,.table.inline-table>tbody>tr:nth-child(odd)>th{background:0 0}.table.inline-table>tbody>tr:first-child>td,.table.inline-table>tbody>tr:first-child>th{border-top:0}.table.batch-table>thead>tr>th{background:#333;border-top:1px solid #1f1f1f;border-bottom:1px solid #1f1f1f}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #1f1f1f}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #1f1f1f}.table--invites tbody td{vertical-align:middle}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:gabsocial-font-monospace,monospace}button.table-action-link{background:0 0;border:0;font:inherit}a.table-action-link,button.table-action-link{text-decoration:none;display:inline-block;margin-right:5px;padding:0 10px;color:#999;font-weight:500}a.table-action-link:hover,button.table-action-link:hover{color:#fff}a.table-action-link i.fa,button.table-action-link i.fa{font-weight:400;margin-right:5px}a.table-action-link:first-child,button.table-action-link:first-child{padding-left:0}.batch-table__row,.batch-table__toolbar{display:flex}.batch-table__row__select,.batch-table__toolbar__select{box-sizing:border-box;padding:8px 16px;cursor:pointer;min-height:100%}.batch-table__row__select input,.batch-table__toolbar__select input{margin-top:8px}.batch-table__row__select--aligned,.batch-table__toolbar__select--aligned{display:flex;align-items:center}.batch-table__row__select--aligned input,.batch-table__toolbar__select--aligned input{margin-top:0}@media screen and (max-width:415px){.batch-table__row__select,.batch-table__toolbar__select{display:none}}.batch-table__row__actions,.batch-table__row__content,.batch-table__toolbar__actions,.batch-table__toolbar__content{padding:8px 16px 8px 0;flex:1 1 auto}.batch-table__toolbar{border:1px solid #1f1f1f;background:#333;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}@media screen and (max-width:415px){.batch-table__toolbar{display:none}}.batch-table__row{border:1px solid #1f1f1f;border-top:0;background:#292929}@media screen and (max-width:415px){.batch-table__row:first-child{border-top:1px solid #1f1f1f}}.batch-table__row:hover{background:#2e2e2e}.batch-table__row:nth-child(2n){background:#333}.batch-table__row:nth-child(2n):hover{background:#383838}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table__row__content--unpadded{padding:0}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.batch-table .nothing-here{border:1px solid #1f1f1f;border-top:0;box-shadow:none}@media screen and (max-width:415px){.batch-table .nothing-here{border-top:1px solid #1f1f1f}}@media screen and (max-width:870px){.batch-table .accounts-table tbody td.optional{display:none}}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#333;display:flex;justify-content:flex-end}.admin-wrapper .sidebar{width:240px;height:100%;padding:0;overflow-y:auto}.admin-wrapper .sidebar .logo{display:block;margin:40px auto;width:100px;height:100px}@media screen and (max-width:600px){.admin-wrapper .sidebar>a:first-child{display:none}}.admin-wrapper .sidebar ul{list-style:none;border-radius:4px 0 0 4px;overflow:hidden;margin-bottom:20px}@media screen and (max-width:600px){.admin-wrapper .sidebar ul{margin-bottom:0}}.admin-wrapper .sidebar ul a{display:block;padding:15px;color:#999;text-decoration:none;transition:all .2s linear;transition-property:color,background-color;border-radius:4px 0 0 4px}.admin-wrapper .sidebar ul a i.fa{margin-right:5px}.admin-wrapper .sidebar ul a:hover{color:#fff;background-color:#333;transition:all .1s linear;transition-property:color,background-color}.admin-wrapper .sidebar ul a.selected{background:#2e2e2e;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#292929;border-radius:0 0 0 4px;margin:0}.admin-wrapper .sidebar ul ul a{border:0;padding:15px 35px}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a{color:#fff;background-color:#21cf7a;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#2cdd87}.admin-wrapper .sidebar>ul>.simple-navigation-active-leaf a{border-radius:4px 0 0 4px}.admin-wrapper .content-wrapper{flex:2 1 840px;overflow:auto}.admin-wrapper .content{max-width:840px;padding:60px 15px 20px 25px}@media screen and (max-width:600px){.admin-wrapper .content{max-width:none;padding:30px 15px 15px}}.admin-wrapper .content h2{color:#666;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #474747;margin-bottom:40px}.admin-wrapper .content h3{color:#666;font-size:20px;line-height:28px;font-weight:400;margin-bottom:30px}.admin-wrapper .content h4{text-transform:uppercase;font-size:13px;font-weight:700;color:#999;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #474747}.admin-wrapper .content h6{font-size:16px;color:#666;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#fff;font-weight:500}.admin-wrapper .content .directory__tag>a,.admin-wrapper .content .directory__tag>div{box-shadow:none}.admin-wrapper .content .directory__tag .table-action-link .fa{color:inherit}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#999;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#999;margin-bottom:20px}.admin-wrapper .content>p strong{color:#999;font-weight:500}.admin-wrapper .content>p strong:lang(ja),.admin-wrapper .content>p strong:lang(ko),.admin-wrapper .content>p strong:lang(zh-cn),.admin-wrapper .content>p strong:lang(zh-hk),.admin-wrapper .content>p strong:lang(zh-tw){font-weight:700}.admin-wrapper .content hr{width:100%;height:0;border:0;border-bottom:1px solid hsla(0,0%,45.9%,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#999}.admin-wrapper .content .muted-hint a{color:#21cf7a}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;font-weight:500}.admin-wrapper .content .neutral-hint{color:#757575;font-weight:500}@media screen and (max-width:600px){.admin-wrapper{display:block;overflow-y:auto;-webkit-overflow-scrolling:touch}.admin-wrapper .content-wrapper,.admin-wrapper .sidebar-wrapper{flex:0 0 auto;height:auto;overflow:initial}.admin-wrapper .sidebar{width:100%;padding:0;height:auto}}.filters{display:flex;flex-wrap:wrap}.filters .filter-subset{flex:0 0 auto;margin:0 40px 10px 0}.filters .filter-subset:last-child{margin-bottom:20px}.filters .filter-subset ul{margin-top:5px;list-style:none}.filters .filter-subset ul li{display:inline-block;margin-right:5px}.filters .filter-subset strong{font-weight:500;text-transform:uppercase;font-size:12px}.filters .filter-subset strong:lang(ja),.filters .filter-subset strong:lang(ko),.filters .filter-subset strong:lang(zh-cn),.filters .filter-subset strong:lang(zh-hk),.filters .filter-subset strong:lang(zh-tw){font-weight:700}.filters .filter-subset a{display:inline-block;color:#999;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #999}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #a6a6a6}.filters .filter-subset a.selected{color:#21cf7a;border-bottom:2px solid #21cf7a}.report-accounts{display:flex;flex-wrap:wrap;margin-bottom:20px}.report-accounts__item{display:flex;flex:250px;flex-direction:column;margin:0 5px}.report-accounts__item>strong{display:block;margin:0 0 10px -5px;font-weight:500;font-size:14px;line-height:18px;color:#666}.report-accounts__item>strong:lang(ja),.report-accounts__item>strong:lang(ko),.report-accounts__item>strong:lang(zh-cn),.report-accounts__item>strong:lang(zh-hk),.report-accounts__item>strong:lang(zh-tw){font-weight:700}.report-accounts__item .account-card{flex:1 1 auto}.account-status,.report-status{display:flex;margin-bottom:10px}.account-status .activity-stream,.report-status .activity-stream{flex:2 0 0;margin-right:20px;max-width:calc(100% - 60px)}.account-status .activity-stream .entry,.report-status .activity-stream .entry{border-radius:4px}.account-status__actions,.report-status__actions{flex:0 0 auto;display:flex;flex-direction:column}.account-status__actions .icon-button,.report-status__actions .icon-button{font-size:24px;width:24px;text-align:center;margin-bottom:10px}.simple_form.new_account_moderation_note,.simple_form.new_report_note{max-width:100%}.batch-form-box{display:flex;flex-wrap:wrap;margin-bottom:5px}.batch-form-box #form_status_batch_action{margin:0 5px 5px 0;font-size:14px}.batch-form-box input.button{margin:0 5px 5px 0}.batch-form-box .media-spoiler-toggle-buttons{margin-left:auto}.batch-form-box .media-spoiler-toggle-buttons .button{overflow:visible;margin:0 0 5px 5px;float:right}.back-link{margin-bottom:10px;font-size:14px}.back-link a{color:#21cf7a;text-decoration:none}.back-link a:hover{text-decoration:underline}.spacer{flex:1 1 auto}.log-entry{margin-bottom:20px;line-height:20px}.log-entry__header{display:flex;justify-content:flex-start;align-items:center;padding:10px;background:#333;color:#999;border-radius:4px 4px 0 0;font-size:14px;position:relative}.log-entry__avatar{margin-right:10px}.log-entry__avatar .avatar{display:block;margin:0;border-radius:50%;width:40px;height:40px}.log-entry__content{max-width:calc(100% - 90px)}.log-entry__title{word-wrap:break-word}.log-entry__timestamp{color:#757575}.log-entry__extras{background:#424242;border-radius:0 0 4px 4px;padding:10px;color:#999;font-family:gabsocial-font-monospace,monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#757575}.log-entry__icon__overlay{position:absolute;top:10px;right:10px;width:10px;height:10px;border-radius:50%}.log-entry__icon__overlay.positive{background:#79bd9a}.log-entry__icon__overlay.negative{background:#e87487}.log-entry__icon__overlay.neutral{background:#21cf7a}.log-entry .target,.log-entry .username,.log-entry a{color:#666;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#666}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#666}.inline-name-tag .username,.name-tag .username,a.inline-name-tag .username,a.name-tag .username{font-weight:500}.inline-name-tag.suspended .username,.name-tag.suspended .username,a.inline-name-tag.suspended .username,a.name-tag.suspended .username{text-decoration:line-through;color:#e87487}.inline-name-tag.suspended .avatar,.name-tag.suspended .avatar,a.inline-name-tag.suspended .avatar,a.name-tag.suspended .avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8}.name-tag,a.name-tag{display:flex;align-items:center}.name-tag .avatar,a.name-tag .avatar{display:block;margin:0 5px 0 0;border-radius:50%}.name-tag.suspended .avatar,a.name-tag.suspended .avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8}.speech-bubble{margin-bottom:20px;border-left:4px solid #21cf7a}.speech-bubble.positive{border-left-color:#79bd9a}.speech-bubble.negative{border-left-color:#e87487}.speech-bubble.warning{border-left-color:#ca8f04}.speech-bubble__bubble{padding:16px 16px 16px 14px;font-size:15px;line-height:20px;border-radius:4px 4px 4px 0;position:relative;font-weight:500}.speech-bubble__bubble a{color:#999}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#757575}.report-card{background:#333;border-radius:4px;margin-bottom:20px}.report-card__profile{display:flex;justify-content:space-between;align-items:center;padding:15px}.report-card__profile .account{padding:0;border:0}.report-card__profile .account__avatar-wrapper{margin-left:0}.report-card__profile__stats{flex:0 0 auto;font-weight:500;color:#999;text-transform:uppercase;text-align:right}.report-card__profile__stats a{color:inherit;text-decoration:none}.report-card__profile__stats a:active,.report-card__profile__stats a:focus,.report-card__profile__stats a:hover{color:#adadad}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #292929}.report-card__summary__item:hover{background:#383838}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#999}.report-card__summary__item__assigned,.report-card__summary__item__assigned .username,.report-card__summary__item__reported-by,.report-card__summary__item__reported-by .username{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.report-card__summary__item__content{flex:1 1 auto;max-width:calc(100% - 300px)}.report-card__summary__item__content__icon{color:#757575;margin-right:4px;font-weight:500}.report-card__summary__item__content a{display:block;box-sizing:border-box;width:100%;padding:15px;text-decoration:none;color:#999}.one-line{white-space:nowrap}.ellipsized-ip,.one-line{overflow:hidden;text-overflow:ellipsis}.ellipsized-ip{display:inline-block;max-width:120px;vertical-align:middle}.dashboard__counters{display:flex;flex-wrap:wrap;margin:0 -5px 20px}.dashboard__counters>div{box-sizing:border-box;flex:0 0 33.333%;padding:0 5px;margin-bottom:10px}.dashboard__counters>div>a,.dashboard__counters>div>div{padding:20px;background:#3d3d3d;border-radius:4px}.dashboard__counters>div>a{text-decoration:none;color:inherit;display:block}.dashboard__counters>div>a:active,.dashboard__counters>div>a:focus,.dashboard__counters>div>a:hover{background:#474747}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#fff;font-family:gabsocial-font-display,sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#999;text-align:center;font-weight:500}.dashboard__widgets{display:flex;flex-wrap:wrap;margin:0 -5px}.dashboard__widgets>div{flex:0 0 33.333%;margin-bottom:20px}.dashboard__widgets>div>div{padding:0 5px}.dashboard__widgets a:not(.name-tag){color:#666;font-weight:500;text-decoration:none}body.rtl{direction:rtl}body.rtl .column-header>button{text-align:right;padding-left:0;padding-right:15px}body.rtl .landing-page__logo{margin-right:0;margin-left:20px}body.rtl .landing-page .features-list .features-list__row .visual{margin-left:0;margin-right:15px}body.rtl .column-header__icon,body.rtl .column-link__icon{margin-right:0;margin-left:5px}body.rtl .compose-form .compose-form__buttons-wrapper .character-counter__wrapper{margin-right:0;margin-left:4px}body.rtl .navigation-bar__profile{margin-left:0;margin-right:8px}body.rtl .search__input{padding-right:10px;padding-left:30px}body.rtl .search__icon .fa{right:auto;left:10px}body.rtl .column-header__buttons{left:0;right:auto;margin-left:0;margin-right:-15px}body.rtl .column-inline-form .icon-button{margin-left:0;margin-right:5px}body.rtl .column-header__links .text-btn{margin-left:10px;margin-right:0}body.rtl .account__avatar-wrapper{float:right}body.rtl .column-header__back-button{padding-left:5px;padding-right:0}body.rtl .column-header__setting-arrows{float:left}body.rtl .setting-toggle__label{margin-left:0;margin-right:8px}body.rtl .status__avatar{left:auto;right:10px}body.rtl .activity-stream .status.light,body.rtl .status{padding-left:10px;padding-right:68px}body.rtl .activity-stream .status.light .status__display-name,body.rtl .status__info .status__display-name{padding-left:25px;padding-right:0}body.rtl .activity-stream .pre-header{padding-right:68px;padding-left:0}body.rtl .status__prepend{margin-left:0;margin-right:68px}body.rtl .status__prepend-icon-wrapper{left:auto;right:-26px}body.rtl .activity-stream .pre-header .pre-header__icon{left:auto;right:42px}body.rtl .account__avatar-overlay-overlay,body.rtl .column-back-button--slim-button{right:auto;left:0}body.rtl .activity-stream .status.light .status__header .status__meta,body.rtl .status__relative-time{float:left}body.rtl .status__action-bar__counter{margin-right:0;margin-left:11px}body.rtl .status__action-bar__counter .status__action-bar-button{margin-right:0;margin-left:4px}body.rtl .status__action-bar-button{float:right;margin-right:0;margin-left:18px}body.rtl .status__action-bar-dropdown{float:right}body.rtl .privacy-dropdown__dropdown{margin-left:0;margin-right:40px}body.rtl .privacy-dropdown__option__icon{margin-left:10px;margin-right:0}body.rtl .detailed-status__display-name .display-name{text-align:right}body.rtl .detailed-status__display-avatar{margin-right:0;margin-left:10px;float:right}body.rtl .detailed-status__favorites,body.rtl .detailed-status__reblogs{margin-left:0;margin-right:6px}body.rtl .fa-ul{margin-left:2.14285714em}body.rtl .fa-li{left:auto;right:-2.14285714em}body.rtl .admin-wrapper{direction:rtl}body.rtl .admin-wrapper .sidebar ul a i.fa,body.rtl a.table-action-link i.fa{margin-right:0;margin-left:5px}body.rtl .simple_form .check_boxes .checkbox label{padding-left:0;padding-right:25px}body.rtl .simple_form .input.with_label.boolean label.checkbox{padding-left:25px;padding-right:0}body.rtl .simple_form .check_boxes .checkbox input[type=checkbox],body.rtl .simple_form .input.boolean input[type=checkbox],body.rtl .simple_form .input.radio_buttons .radio{left:auto;right:0}body.rtl .simple_form .input.radio_buttons .radio>label{padding-right:28px;padding-left:0}body.rtl .simple_form .input-with-append .input input{padding-left:142px;padding-right:0}body.rtl .simple_form .input.boolean label.checkbox{left:auto;right:0}body.rtl .simple_form .input.boolean .hint,body.rtl .simple_form .input.boolean .label_input{padding-left:0;padding-right:28px}body.rtl .simple_form .label_input__append{right:auto;left:3px}body.rtl .simple_form .label_input__append:after{right:auto;left:0;background-image:linear-gradient(270deg,rgba(26,26,26,0),#1a1a1a)}body.rtl .simple_form select{background:#1a1a1a url("data:image/svg+xml;utf8,") no-repeat left 8px center/auto 16px}body.rtl .table td,body.rtl .table th{text-align:right}body.rtl .filters .filter-subset{margin-right:0;margin-left:45px}body.rtl .landing-page .header-wrapper .mascot{right:60px;left:auto}body.rtl .landing-page__call-to-action .row__information-board{direction:rtl}body.rtl .landing-page .header .hero .floats .float-1{left:-120px;right:auto}body.rtl .landing-page .header .hero .floats .float-2{left:210px;right:auto}body.rtl .landing-page .header .hero .floats .float-3{left:110px;right:auto}body.rtl .landing-page .header .links .brand img{left:0}body.rtl .landing-page .fa-external-link{padding-right:5px;padding-left:0!important}body.rtl .landing-page .features #gabsocial-timeline{margin-right:0;margin-left:30px}@media screen and (min-width:631px){body.rtl .column,body.rtl .drawer{padding-left:5px;padding-right:5px}body.rtl .column:first-child,body.rtl .drawer:first-child{padding-left:5px;padding-right:10px}body.rtl .columns-area>div .column,body.rtl .columns-area>div .drawer{padding-left:5px;padding-right:5px}}body.rtl .public-layout .header .nav-button{margin-left:8px;margin-right:0}body.rtl .public-layout .public-account-header__tabs{margin-left:0;margin-right:20px}body.rtl .landing-page__information .account__display-name{margin-right:0;margin-left:5px}body.rtl .landing-page__information .account__avatar-wrapper{margin-left:12px;margin-right:0}body.rtl .card__bar .display-name{margin-left:0;margin-right:15px;text-align:right}body.rtl .fa-chevron-left:before{content:""}body.rtl .fa-chevron-right:before{content:""}body.rtl .column-back-button__icon{margin-right:0;margin-left:5px}body.rtl .column-header__setting-arrows .column-header__setting-btn:last-child{padding-left:0;padding-right:10px}body.rtl .simple_form .input.radio_buttons .radio>label input{left:auto;right:0}.emojione[title=":8ball:"],.emojione[title=":ant:"],.emojione[title=":back:"],.emojione[title=":black_circle:"],.emojione[title=":black_heart:"],.emojione[title=":black_large_square:"],.emojione[title=":black_medium_small_square:"],.emojione[title=":black_medium_square:"],.emojione[title=":black_nib:"],.emojione[title=":black_small_square:"],.emojione[title=":bomb:"],.emojione[title=":bowling:"],.emojione[title=":bust_in_silhouette:"],.emojione[title=":busts_in_silhouette:"],.emojione[title=":camera:"],.emojione[title=":camera_with_flash:"],.emojione[title=":clubs:"],.emojione[title=":copyright:"],.emojione[title=":curly_loop:"],.emojione[title=":currency_exchange:"],.emojione[title=":dark_sunglasses:"],.emojione[title=":eight_pointed_black_star:"],.emojione[title=":electric_plug:"],.emojione[title=":end:"],.emojione[title=":female-guard:"],.emojione[title=":film_projector:"],.emojione[title=":fried_egg:"],.emojione[title=":gorilla:"],.emojione[title=":guardsman:"],.emojione[title=":heavy_check_mark:"],.emojione[title=":heavy_division_sign:"],.emojione[title=":heavy_dollar_sign:"],.emojione[title=":heavy_minus_sign:"],.emojione[title=":heavy_multiplication_x:"],.emojione[title=":heavy_plus_sign:"],.emojione[title=":hocho:"],.emojione[title=":hole:"],.emojione[title=":joystick:"],.emojione[title=":kaaba:"],.emojione[title=":lower_left_ballpoint_pen:"],.emojione[title=":lower_left_fountain_pen:"],.emojione[title=":male-guard:"],.emojione[title=":microphone:"],.emojione[title=":mortar_board:"],.emojione[title=":movie_camera:"],.emojione[title=":musical_score:"],.emojione[title=":on:"],.emojione[title=":registered:"],.emojione[title=":soon:"],.emojione[title=":spades:"],.emojione[title=":speaking_head_in_silhouette:"],.emojione[title=":spider:"],.emojione[title=":telephone_receiver:"],.emojione[title=":tm:"],.emojione[title=":top:"],.emojione[title=":tophat:"],.emojione[title=":turkey:"],.emojione[title=":vhs:"],.emojione[title=":video_camera:"],.emojione[title=":video_game:"],.emojione[title=":water_buffalo:"],.emojione[title=":waving_black_flag:"],.emojione[title=":wavy_dash:"]{-webkit-filter:drop-shadow(1px 1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff) drop-shadow(-1px -1px 0 #fff);filter:drop-shadow(1px 1px 0 #ffffff) drop-shadow(-1px 1px 0 #ffffff) drop-shadow(1px -1px 0 #ffffff) drop-shadow(-1px -1px 0 #ffffff);transform:scale(.71)} \ No newline at end of file diff --git a/public/legacy/fonts/fontawesome-webfont-b06871f2.ttf b/public/legacy/fonts/fontawesome-webfont.ttf similarity index 100% rename from public/legacy/fonts/fontawesome-webfont-b06871f2.ttf rename to public/legacy/fonts/fontawesome-webfont.ttf diff --git a/public/legacy/fonts/fontawesome-webfont-fee66e71.woff b/public/legacy/fonts/fontawesome-webfont.woff similarity index 100% rename from public/legacy/fonts/fontawesome-webfont-fee66e71.woff rename to public/legacy/fonts/fontawesome-webfont.woff diff --git a/public/legacy/fonts/fontawesome-webfont-af7ae505.woff2 b/public/legacy/fonts/fontawesome-webfont.woff2 similarity index 100% rename from public/legacy/fonts/fontawesome-webfont-af7ae505.woff2 rename to public/legacy/fonts/fontawesome-webfont.woff2 diff --git a/public/legacy/fonts/roboto/roboto-bold-700.eot b/public/legacy/fonts/roboto/roboto-bold-700.eot new file mode 100644 index 00000000..f2307657 Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-bold-700.eot differ diff --git a/public/legacy/fonts/roboto/roboto-bold-700.svg b/public/legacy/fonts/roboto/roboto-bold-700.svg new file mode 100644 index 00000000..11db87dd --- /dev/null +++ b/public/legacy/fonts/roboto/roboto-bold-700.svg @@ -0,0 +1,309 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/legacy/fonts/roboto/roboto-bold-700.ttf b/public/legacy/fonts/roboto/roboto-bold-700.ttf new file mode 100644 index 00000000..333022da Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-bold-700.ttf differ diff --git a/public/legacy/fonts/roboto/roboto-bold-700.woff b/public/legacy/fonts/roboto/roboto-bold-700.woff new file mode 100644 index 00000000..8c9b0241 Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-bold-700.woff differ diff --git a/public/legacy/fonts/roboto/roboto-bold-700.woff2 b/public/legacy/fonts/roboto/roboto-bold-700.woff2 new file mode 100644 index 00000000..3768f018 Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-bold-700.woff2 differ diff --git a/public/legacy/fonts/roboto/roboto-light-300.eot b/public/legacy/fonts/roboto/roboto-light-300.eot new file mode 100644 index 00000000..efa76958 Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-light-300.eot differ diff --git a/public/legacy/fonts/roboto/roboto-light-300.svg b/public/legacy/fonts/roboto/roboto-light-300.svg new file mode 100644 index 00000000..4ded944a --- /dev/null +++ b/public/legacy/fonts/roboto/roboto-light-300.svg @@ -0,0 +1,312 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/legacy/fonts/roboto/roboto-light-300.ttf b/public/legacy/fonts/roboto/roboto-light-300.ttf new file mode 100644 index 00000000..89f0e462 Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-light-300.ttf differ diff --git a/public/legacy/fonts/roboto/roboto-light-300.woff b/public/legacy/fonts/roboto/roboto-light-300.woff new file mode 100644 index 00000000..983083c7 Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-light-300.woff differ diff --git a/public/legacy/fonts/roboto/roboto-light-300.woff2 b/public/legacy/fonts/roboto/roboto-light-300.woff2 new file mode 100644 index 00000000..7438daeb Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-light-300.woff2 differ diff --git a/public/legacy/fonts/roboto/roboto-regular-400.eot b/public/legacy/fonts/roboto/roboto-regular-400.eot new file mode 100644 index 00000000..cdf3f007 Binary files /dev/null and b/public/legacy/fonts/roboto/roboto-regular-400.eot differ diff --git a/public/legacy/fonts/roboto/roboto-regular-400.svg b/public/legacy/fonts/roboto/roboto-regular-400.svg new file mode 100644 index 00000000..627f5a36 --- /dev/null +++ b/public/legacy/fonts/roboto/roboto-regular-400.svg @@ -0,0 +1,308 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/public/legacy/fonts/roboto/roboto-regular-400-0d984acaec916c225c012f27d0c56a91.ttf b/public/legacy/fonts/roboto/roboto-regular-400.ttf similarity index 100% rename from public/legacy/fonts/roboto/roboto-regular-400-0d984acaec916c225c012f27d0c56a91.ttf rename to public/legacy/fonts/roboto/roboto-regular-400.ttf diff --git a/public/legacy/fonts/roboto/roboto-regular-400-a91ad097d24828af724d4fee36a063ed.woff b/public/legacy/fonts/roboto/roboto-regular-400.woff similarity index 100% rename from public/legacy/fonts/roboto/roboto-regular-400-a91ad097d24828af724d4fee36a063ed.woff rename to public/legacy/fonts/roboto/roboto-regular-400.woff diff --git a/public/legacy/fonts/roboto/roboto-regular-400-9549360090baf2eb8b25d3a9708fc19d.woff2 b/public/legacy/fonts/roboto/roboto-regular-400.woff2 similarity index 100% rename from public/legacy/fonts/roboto/roboto-regular-400-9549360090baf2eb8b25d3a9708fc19d.woff2 rename to public/legacy/fonts/roboto/roboto-regular-400.woff2 diff --git a/public/legacy/gabsocial-light-e6f94f23.chunk.css b/public/legacy/gabsocial-light-e6f94f23.chunk.css deleted file mode 100644 index db2fec31..00000000 --- a/public/legacy/gabsocial-light-e6f94f23.chunk.css +++ /dev/null @@ -1 +0,0 @@ -@font-face{font-family:Roboto;font-weight:400;font-style:normal;src:url(/legacy/fonts/roboto/roboto-regular-400-5ea308130680132126f4f73c0d7b73f9.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-regular-400-5ea308130680132126f4f73c0d7b73f9.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-regular-400-9549360090baf2eb8b25d3a9708fc19d.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-regular-400-a91ad097d24828af724d4fee36a063ed.woff) format("woff"),url(/legacy/fonts/roboto/roboto-regular-400-0d984acaec916c225c012f27d0c56a91.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-regular-400-8681f434273fd6a267b1a16a035c5f79.svg) format("svg")}@font-face{font-family:Roboto;font-weight:400;font-style:italic;src:url(/legacy/fonts/roboto/roboto-regular-italic-400-b917f34ead501d28529f8f164cea00f8.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-regular-italic-400-b917f34ead501d28529f8f164cea00f8.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-regular-italic-400-d1f23769ca583437f310764146ec7fbc.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-regular-italic-400-c762d850e2e8d0e29047608715196736.woff) format("woff"),url(/legacy/fonts/roboto/roboto-regular-italic-400-807abe1555908dc0cd41a0d8b02d667d.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-regular-italic-400-39c358e4c78546f0f49e624bcbdc8e63.svg) format("svg")}@font-face{font-family:Roboto;font-weight:300;font-style:normal;src:url(/legacy/fonts/roboto/roboto-light-300-ed8245a91777d0b0c123eca00e03447c.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-light-300-ed8245a91777d0b0c123eca00e03447c.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-light-300-390b76012235541ede113bd336282b26.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-light-300-c46434d46a72919eb141228dd0144b6c.woff) format("woff"),url(/legacy/fonts/roboto/roboto-light-300-96e5fbad8c2f5b81165ede8b2f08a14b.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-light-300-dd0bea1f9a808d633492fa573039ca1d.svg) format("svg")}@font-face{font-family:Roboto;font-weight:300;font-style:italic;src:url(/legacy/fonts/roboto/roboto-light-italic-300-b7ab07d65e00bb581ab4ddf2450c1e42.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-light-italic-300-b7ab07d65e00bb581ab4ddf2450c1e42.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-light-italic-300-806989f337b8d4609fd705284b861e69.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-light-italic-300-cf6e2d8c73bd32ecb3a47759f73b45e2.woff) format("woff"),url(/legacy/fonts/roboto/roboto-light-italic-300-29d3974473a21d5e285a441ee83cef68.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-light-italic-300-f8b0d5a9ac4006ad3031052476de8a24.svg) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:normal;src:url(/legacy/fonts/roboto/roboto-bold-700-7dfb39b7b728dd6cfaa2d4b27ea389d6.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-bold-700-7dfb39b7b728dd6cfaa2d4b27ea389d6.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-bold-700-f3501dc6e4b56028379328ddd8f0129f.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-bold-700-cf654de4c5d988526828f731f299d30a.woff) format("woff"),url(/legacy/fonts/roboto/roboto-bold-700-74bc6165dc68714ccaa88f5c64656b1c.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-bold-700-57888be7f3e68a7050452ea3157cf4de.svg) format("svg")}@font-face{font-family:Roboto;font-weight:700;font-style:italic;src:url(/legacy/fonts/roboto/roboto-bold-italic-700-62ff4ee765254983c5b563762bc2308a.eot?#iefix);src:url(/legacy/fonts/roboto/roboto-bold-italic-700-62ff4ee765254983c5b563762bc2308a.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/roboto/roboto-bold-italic-700-658033002d0658ce75d2b8ef43f1a2cd.woff2) format("woff2"),url(/legacy/fonts/roboto/roboto-bold-italic-700-b637cf3c25928c417ca5d3959418e208.woff) format("woff"),url(/legacy/fonts/roboto/roboto-bold-italic-700-0265542c048f7c43e09666b5d6340448.ttf) format("truetype"),url(/legacy/fonts/roboto/roboto-bold-italic-700-4466317341560ee2759326c4723cae25.svg) format("svg")}@font-face{font-family:Montserrat;font-weight:800;font-style:normal;src:url(/legacy/fonts/montserrat/montserrat-extra-bold-800-9fc91569b3056144781c54138f768ec5.eot?#iefix);src:url(/legacy/fonts/montserrat/montserrat-extra-bold-800-9fc91569b3056144781c54138f768ec5.eot?#iefix) format("embedded-opentype"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-5b99e95293e90d07247882a74d64b1d3.woff2) format("woff2"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-189bfdc04fd790dd68e1de69a890c279.woff) format("woff"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-5085a1794f394b9d700cb99c5c659c3b.ttf) format("truetype"),url(/legacy/fonts/montserrat/montserrat-extra-bold-800-3f167b47ccbc00d60ce08497cd1a4623.svg) format("svg")}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}table{border-collapse:collapse;border-spacing:0}html{scrollbar-color:#181818 #222}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{border:none;background:hsla(0,0%,40%,.5)}body.theme-gabsocial-light::-webkit-scrollbar-thumb{background:hsla(0,0%,100%,.3)}::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,40%,.75)}body.theme-gabsocial-light::-webkit-scrollbar-thumb:hover{background:hsla(0,0%,100%,.4)}::-webkit-scrollbar-thumb:active{background:#666}body.theme-gabsocial-light::-webkit-scrollbar-thumb:active{background:hsla(0,0%,100%,.5)}::-webkit-scrollbar-track{border:none;background:rgba(34,34,34,.5)}body.theme-gabsocial-light::-webkit-scrollbar-track{background:rgba(51,51,51,.3)}::-webkit-scrollbar-track:hover{background:rgba(34,34,34,.75)}body.theme-gabsocial-light::-webkit-scrollbar-track:hover{background:rgba(51,51,51,.4)}::-webkit-scrollbar-track:active{background:#222}body.theme-gabsocial-light::-webkit-scrollbar-track:active{background:rgba(51,51,51,.5)}::-webkit-scrollbar-corner{background:0 0}html{font-family:Roboto,Arial,sans-serif!important;font-weight:400;font-size:62.5%;-moz-text-size-adjust:100%;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;text-rendering:optimizelegibility;font-feature-settings:"kern";-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent;color:#fff;background:#333}body.theme-gabsocial-light{color:#6c6c6c;background:#f2f3f6}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,gabsocial-font-sans-serif,sans-serif}body.app-body{position:absolute;width:100%;padding:0;overflow:hidden;overflow-y:scroll}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#d9e1e8}body.with-modals{overflow-x:hidden;overflow-y:scroll}body.with-modals--active{overflow-y:hidden;margin-right:13px}body.player{text-align:center}body.embed{background:#ccd7e0;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#e6ebf0;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#282c37;background:#d9e1e8;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog__illustration img{display:block;max-width:470px;width:100%;height:auto;margin-top:-120px}body.error .dialog h1{font-size:20px;line-height:28px;font-weight:400}button{font-family:inherit;cursor:pointer}button:focus{outline:none}.app-holder,.app-holder>div{display:flex;width:100%;height:100%;align-items:start;justify-content:center;outline:0!important}.visuallyhidden{border:0!important;clip:rect(1px,1px,1px,1px)!important;font-size:1px!important;height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.container-alt{width:700px;margin:40px auto 0}@media screen and (max-width:740px){.container-alt{width:100%;margin:0}}.logo-container{margin:100px auto 50px}@media screen and (max-width:500px){.logo-container{margin:40px auto 0}}.logo-container h1{display:flex;justify-content:center;align-items:center}.logo-container h1 img{height:42px;margin-right:10px}.logo-container h1 a{display:flex;justify-content:center;align-items:center;color:#000;text-decoration:none;outline:0;padding:12px 16px;line-height:32px;font-family:gabsocial-font-display,sans-serif;font-weight:500;font-size:14px}.compose-standalone .compose-form{width:400px;padding:20px 0;margin:40px auto 0;box-sizing:border-box}@media screen and (max-width:400px){.compose-standalone .compose-form{width:100%;margin-top:0;padding:20px}}.account-header{width:400px;display:flex;font-size:13px;line-height:18px;box-sizing:border-box;padding:20px 0 0;margin:40px auto -30px}@media screen and (max-width:440px){.account-header{width:100%;margin:0 0 10px;padding:20px 20px 0}}.account-header .avatar{width:40px;height:40px;margin-right:8px}.account-header .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px}.account-header .name{flex:1 1 auto;color:#282c37;width:calc(100% - 88px)}.account-header .name .username{display:block;font-weight:500;text-overflow:ellipsis;overflow:hidden}.account-header .logout-link{display:block;font-size:32px;line-height:40px;margin-left:8px}.grid-3{display:grid;grid-gap:10px;grid-template-columns:3fr 1fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.grid-3 .column-0{grid-column:1/3;grid-row:1}.grid-3 .column-1{grid-column:1;grid-row:2}.grid-3 .column-2{grid-column:2;grid-row:2}.grid-3 .column-3{grid-column:1/3;grid-row:3}.grid-3 .landing-page__call-to-action{min-height:100%}@media screen and (max-width:738px){.grid-3{grid-template-columns:minmax(0,50%) minmax(0,50%)}.grid-3 .landing-page__call-to-action{padding:20px;display:flex;align-items:center;justify-content:center}.grid-3 .row__information-board{width:100%;justify-content:center;align-items:center}.grid-3 .row__mascot{display:none}}@media screen and (max-width:415px){.grid-3{grid-gap:0;grid-template-columns:minmax(0,100%)}.grid-3 .column-0{grid-column:1}.grid-3 .column-1{grid-column:1;grid-row:3}.grid-3 .column-2{grid-column:1;grid-row:2}.grid-3 .column-3{grid-column:1;grid-row:4}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .content{display:block;margin:40px 0}.public-layout .background-svg{display:block;position:absolute;height:100%;width:100%;min-height:580px;z-index:-1;background-image:url(/landing/wave.svg);background-repeat:no-repeat;background-position:bottom;background-size:cover}.public-layout .header{height:80px;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;padding:14px 0;box-sizing:border-box}@media screen and (max-width:1024px){.public-layout .header{padding:14px 20px}}.public-layout .header .header-container{display:flex;width:960px;align-items:stretch;justify-content:center;flex-wrap:nowrap}.public-layout .header .header-container>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:center;justify-content:flex-start;flex-wrap:nowrap}.public-layout .header .nav-center{display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap}.public-layout .header .nav-right{display:flex;align-items:center;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .nav-right .simple_form.new_user{display:flex;flex-direction:row;align-items:center}.public-layout .header .nav-right .simple_form.new_user .fields-group{display:flex;flex-direction:row;margin-bottom:0;position:relative}.public-layout .header .nav-right .simple_form.new_user .fields-group p.hint.subtle-hint{position:absolute;top:30px;left:160px}.public-layout .header .nav-right .simple_form.new_user .fields-group p.hint.subtle-hint a{padding:4px;border-radius:4px;background-color:#d9e1e8}.public-layout .header .nav-right .simple_form.new_user .fields-group .input{margin-bottom:0;margin-right:10px}.public-layout .header .nav-right .simple_form.new_user .fields-group .input input{min-width:150px;font-size:14px}.public-layout .header .nav-right .simple_form.new_user .actions{display:flex;margin-top:0}.public-layout .header .nav-right .simple_form.new_user .actions .button{margin-bottom:0!important;line-height:38px!important;border:1px solid #333!important;height:38px!important;box-sizing:border-box!important;padding:0 18px!important;text-transform:none!important}.public-layout .header .brand{display:block}.public-layout .header .brand img{display:block;height:30px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .nav-link{display:flex;align-items:center;padding:12px 22px;font-size:14px;font-weight:600;text-decoration:none;color:#000;white-space:nowrap;text-align:center}.public-layout .header .nav-link:active,.public-layout .header .nav-link:focus,.public-layout .header .nav-link:hover{text-decoration:underline;color:#000}.public-layout .header .nav-link--hollow{background-color:#d9e1e8}.public-layout .header .nav-link--hollow:active,.public-layout .header .nav-link--hollow:focus,.public-layout .header .nav-link--hollow:hover{color:#21cf7a}@media screen and (max-width:550px){.public-layout .header .nav-link{font-size:12px;padding:12px 10px}.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#21cf7a;margin:8px 8px 8px 0;border-radius:4px}.public-layout .header .nav-button:active,.public-layout .header .nav-button:focus,.public-layout .header .nav-button:hover{text-decoration:none;background:#42e193}.public-layout .header .nav-button--hollow{background:0 0}.public-layout .header .nav-button--hollow:active,.public-layout .header .nav-button--hollow:focus,.public-layout .header .nav-button--hollow:hover{background:rgba(33,207,122,.2)}.public-layout .grid{display:grid;grid-gap:10px;grid-template-columns:minmax(300px,3fr) minmax(298px,1fr);grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.public-layout .grid .column-0{grid-row:1;grid-column:1}.public-layout .grid .column-1{grid-row:1;grid-column:2}@media screen and (max-width:600px){.public-layout .grid{grid-template-columns:100%;grid-gap:0}.public-layout .grid .column-1{display:none}}.public-layout .public-account-header{overflow:hidden;margin-bottom:10px;box-shadow:0 0 15px rgba(0,0,0,.2)}.public-layout .public-account-header.inactive{opacity:.5}.public-layout .public-account-header.inactive .avatar,.public-layout .public-account-header.inactive .public-account-header__image{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.public-layout .public-account-header.inactive .logo-button{background-color:#282c37}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#fff}.public-layout .public-account-header__image:after{content:"";display:block;position:absolute;width:100%;height:100%;box-shadow:inset 0 -1px 1px 1px rgba(0,0,0,.15);top:0;left:0}.public-layout .public-account-header__image img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0;border-radius:4px 4px 0 0}@media screen and (max-width:600px){.public-layout .public-account-header__image{height:200px}}.public-layout .public-account-header--no-bar{margin-bottom:0}.public-layout .public-account-header--no-bar .public-account-header__image,.public-layout .public-account-header--no-bar .public-account-header__image img{border-radius:4px}@media screen and (max-width:415px){.public-layout .public-account-header--no-bar .public-account-header__image,.public-layout .public-account-header--no-bar .public-account-header__image img{border-radius:0}}@media screen and (max-width:415px){.public-layout .public-account-header{margin-bottom:0;box-shadow:none}.public-layout .public-account-header__image:after{display:none}.public-layout .public-account-header__image,.public-layout .public-account-header__image img{border-radius:0}}.public-layout .public-account-header__bar{position:relative;margin-top:-80px;display:flex;justify-content:flex-start}.public-layout .public-account-header__bar:before{content:"";display:block;background:#ccd7e0;position:absolute;bottom:0;left:0;right:0;height:60px;border-radius:0 0 4px 4px;z-index:-1}.public-layout .public-account-header__bar .avatar{display:block;width:120px;height:120px;padding-left:16px;flex:0 0 auto}.public-layout .public-account-header__bar .avatar img{display:block;width:100%;height:100%;margin:0;border-radius:50%;border:4px solid #ccd7e0;background:#f2f5f7}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#ccd7e0;border-radius:0 0 4px 4px;padding:5px}.public-layout .public-account-header__bar:before{display:none}.public-layout .public-account-header__bar .avatar{width:48px;height:48px;padding:7px 0 7px 10px}.public-layout .public-account-header__bar .avatar img{border:0;border-radius:4px}}@media screen and (max-width:600px)and (max-width:360px){.public-layout .public-account-header__bar .avatar{display:none}}@media screen and (max-width:415px){.public-layout .public-account-header__bar{border-radius:0}}@media screen and (max-width:600px){.public-layout .public-account-header__bar{flex-wrap:wrap}}.public-layout .public-account-header__tabs{flex:1 1 auto;margin-left:20px}.public-layout .public-account-header__tabs__name{padding-top:20px;padding-bottom:8px}.public-layout .public-account-header__tabs__name h1{font-size:20px;line-height:27px;color:#000;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-shadow:1px 1px 1px #000}.public-layout .public-account-header__tabs__name h1 small{display:block;font-size:14px;color:#000;font-weight:400;overflow:hidden;text-overflow:ellipsis}@media screen and (max-width:600px){.public-layout .public-account-header__tabs{margin-left:15px;display:flex;justify-content:space-between;align-items:center}.public-layout .public-account-header__tabs__name{padding-top:0;padding-bottom:0}.public-layout .public-account-header__tabs__name h1{font-size:16px;line-height:24px;text-shadow:none}.public-layout .public-account-header__tabs__name h1 small{color:#282c37}}.public-layout .public-account-header__tabs__tabs{display:flex;justify-content:flex-start;align-items:stretch;height:58px}.public-layout .public-account-header__tabs__tabs .details-counters{display:flex;flex-direction:row;min-width:300px}@media screen and (max-width:600px){.public-layout .public-account-header__tabs__tabs .details-counters{display:none}}.public-layout .public-account-header__tabs__tabs .counter{width:33.3%;box-sizing:border-box;flex:0 0 auto;color:#282c37;padding:10px;border-right:1px solid #ccd7e0;cursor:default;text-align:center;position:relative}.public-layout .public-account-header__tabs__tabs .counter a{display:block}.public-layout .public-account-header__tabs__tabs .counter:last-child{border-right:0}.public-layout .public-account-header__tabs__tabs .counter:after{display:block;content:"";position:absolute;bottom:0;left:0;width:100%;border-bottom:4px solid #9bcbed;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #2b5fd9;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#282c37}.public-layout .public-account-header__tabs__tabs .counter:hover:after{opacity:1;transition-duration:.1s}.public-layout .public-account-header__tabs__tabs .counter a{text-decoration:none;color:inherit}.public-layout .public-account-header__tabs__tabs .counter .counter-label{font-size:12px;display:block}.public-layout .public-account-header__tabs__tabs .counter .counter-number{font-weight:500;font-size:18px;margin-bottom:5px;color:#000;font-family:gabsocial-font-display,sans-serif}.public-layout .public-account-header__tabs__tabs .spacer{flex:1 1 auto;height:1px}.public-layout .public-account-header__tabs__tabs__buttons{padding:7px 8px}.public-layout .public-account-header__extra{display:none;margin-top:4px}.public-layout .public-account-header__extra .public-account-bio{border-radius:0;box-shadow:none;background:0 0;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #b3c3d1}.public-layout .public-account-header__extra .public-account-bio .roles{display:none}.public-layout .public-account-header__extra__links{margin-top:-15px;font-size:14px;color:#282c37}.public-layout .public-account-header__extra__links a{display:inline-block;color:#282c37;text-decoration:none;padding:15px;font-weight:500}.public-layout .public-account-header__extra__links a strong{font-weight:700;color:#000}@media screen and (max-width:600px){.public-layout .public-account-header__extra{display:block;flex:100%}}.public-layout .account__section-headline{border-radius:4px 4px 0 0}@media screen and (max-width:415px){.public-layout .account__section-headline{border-radius:0}}.public-layout .detailed-status__meta{margin-top:25px}.public-layout .public-account-bio{background:#c0cdd9;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px}@media screen and (max-width:415px){.public-layout .public-account-bio{box-shadow:none;margin-bottom:0;border-radius:0}}.public-layout .public-account-bio .account__header__fields{margin:0;border-top:0}.public-layout .public-account-bio .account__header__fields a{color:#214fba}.public-layout .public-account-bio .account__header__fields dl:first-child .verified{border-radius:0 4px 0 0}.public-layout .public-account-bio .account__header__fields .verified a{color:#3c754d}.public-layout .public-account-bio .account__header__content{padding:20px 20px 0;color:#000}.public-layout .public-account-bio .roles,.public-layout .public-account-bio__extra{padding:20px;font-size:14px;color:#282c37}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#606984;font-size:18px}.public-layout .static-icon-button>span{font-size:14px;font-weight:500}.public-layout .card-grid{display:flex;flex-wrap:wrap;min-width:100%;margin:0 -5px}.public-layout .card-grid>div{box-sizing:border-box;flex:1 0 auto;width:300px;padding:0 5px;margin-bottom:10px;max-width:33.333%}@media screen and (max-width:900px){.public-layout .card-grid>div{max-width:50%}}@media screen and (max-width:600px){.public-layout .card-grid>div{max-width:100%}}@media screen and (max-width:415px){.public-layout .card-grid{margin:0;border-top:1px solid #c0cdd9}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #c0cdd9}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#d9e1e8}.public-layout .card-grid>div .card__bar:active,.public-layout .card-grid>div .card__bar:focus,.public-layout .card-grid>div .card__bar:hover{background:#ccd7e0}}.no-list{list-style:none}.no-list li{display:inline-block;margin:0 5px}.recovery-codes{list-style:none;margin:0 auto}.recovery-codes li{font-size:125%;line-height:1.5;letter-spacing:1px}.public-layout .footer{display:flex;padding:40px 0;font-size:12px;justify-content:center;align-items:center;background-color:#c9d4de;border-top:#f9fafb}@media screen and (max-width:1024px){.public-layout .footer{padding:40px 20px}}.public-layout .footer .footer-container{display:flex;width:960px;flex-direction:row;flex-wrap:wrap;align-items:center}@media screen and (max-width:1024px){.public-layout .footer .footer-container{width:100%}}@media screen and (max-width:767px){.public-layout .footer .footer-container{flex-direction:column-reverse;justify-content:center}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#282c37;font-size:1.6rem;line-height:1.5}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer .copyright{margin-right:auto}.public-layout .footer .copyright span{color:#000;font-size:1.3rem;font-weight:500;line-height:1.5}.public-layout .footer .copyright span:last-of-type{color:#333}.public-layout .footer ul{display:flex;flex-wrap:wrap;margin-left:auto}.public-layout .footer ul li a{text-decoration:none;color:#6d8ca7;font-size:1.3rem;font-weight:500;line-height:1.5;padding:10px 4px;margin-left:10px}.public-layout .footer ul li a:active,.public-layout .footer ul li a:focus,.public-layout .footer ul li a:hover{text-decoration:underline}@media screen and (max-width:767px){.public-layout .footer .copyright{margin:0 auto auto;text-align:center}.public-layout .footer ul{margin:0 auto 20px}}.compact-header h1{font-size:24px;line-height:28px;color:#282c37;font-weight:500;margin-bottom:20px;padding:0 10px;word-wrap:break-word}@media screen and (max-width:740px){.compact-header h1{text-align:center;padding:20px 10px 0}}.compact-header h1 a{color:inherit;text-decoration:none}.compact-header h1 small{font-weight:400;color:#282c37}.compact-header h1 img{display:inline-block;margin-bottom:-5px;margin-right:15px;width:36px;height:36px}.hero-widget{margin-bottom:10px;box-shadow:0 0 15px rgba(0,0,0,.2)}.hero-widget__img{width:100%;position:relative;overflow:hidden;border-radius:4px 4px 0 0;background:#000}.hero-widget__img img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0;border-radius:4px 4px 0 0}.hero-widget__text{background:#d9e1e8;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#282c37;line-height:20px;word-wrap:break-word;font-weight:400}.hero-widget__text .emojione{width:20px;height:20px;margin:-3px 0 0}.hero-widget__text p{margin-bottom:20px}.hero-widget__text p:last-child{margin-bottom:0}.hero-widget__text em{display:inline;margin:0;padding:0;font-weight:700;background:0 0;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.hero-widget__text a{color:#282c37;text-decoration:none}.hero-widget__text a:hover{text-decoration:underline}@media screen and (max-width:415px){.hero-widget{display:none}}.endorsements-widget{margin-bottom:10px;padding-bottom:10px}.endorsements-widget h4{padding:10px;text-transform:uppercase;font-weight:700;font-size:13px;color:#282c37}.endorsements-widget .account{padding:10px 0}.endorsements-widget .account:last-child{border-bottom:0}.endorsements-widget .account .account__display-name{display:flex;align-items:center}.endorsements-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.box-widget{padding:20px;border-radius:4px;background:#d1dbe3;box-shadow:0 0 1px 1px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;padding:20px;min-height:100%;border-radius:4px;background:#d9e1e8;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget{font-size:15px;color:#282c37;line-height:20px;word-wrap:break-word;font-weight:400}.contact-widget strong{font-weight:500}.contact-widget p{margin-bottom:10px}.contact-widget p:last-child{margin-bottom:0}.contact-widget__mail{margin-top:10px}.contact-widget__mail a{color:#000;text-decoration:none}.moved-account-widget{padding:15px 15px 20px;border-radius:4px;background:#d9e1e8;box-shadow:0 0 15px rgba(0,0,0,.2);color:#282c37;font-weight:400;margin-bottom:10px}.moved-account-widget a,.moved-account-widget strong{font-weight:500}.moved-account-widget a:lang(ja),.moved-account-widget a:lang(ko),.moved-account-widget a:lang(zh-cn),.moved-account-widget a:lang(zh-hk),.moved-account-widget a:lang(zh-tw),.moved-account-widget strong:lang(ja),.moved-account-widget strong:lang(ko),.moved-account-widget strong:lang(zh-cn),.moved-account-widget strong:lang(zh-hk),.moved-account-widget strong:lang(zh-tw){font-weight:700}.moved-account-widget a{color:inherit;text-decoration:underline}.moved-account-widget a.mention,.moved-account-widget a.mention:active,.moved-account-widget a.mention:focus,.moved-account-widget a.mention:hover,.moved-account-widget a.mention span{text-decoration:none}.moved-account-widget a.mention:active span,.moved-account-widget a.mention:focus span,.moved-account-widget a.mention:hover span{text-decoration:underline}.moved-account-widget__message{margin-bottom:15px}.moved-account-widget__message .fa{margin-right:5px;color:#282c37}.moved-account-widget__card .detailed-status__display-avatar{position:relative;cursor:pointer}.moved-account-widget__card .detailed-status__display-name{margin-bottom:0;text-decoration:none}.moved-account-widget__card .detailed-status__display-name span{font-weight:400}.memoriam-widget{padding:20px;background:#000;font-size:14px;color:#282c37;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#c0cdd9;padding:60px 15px;text-align:center;margin:10px 0}.page-header h1{color:#000;font-size:36px;line-height:1.1;font-weight:700;margin-bottom:10px}.page-header p{font-size:15px;color:#282c37}@media screen and (max-width:415px){.page-header{margin-top:0;background:#ccd7e0}.page-header h1{font-size:24px}}.directory{background:#d9e1e8;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.directory__tag{box-sizing:border-box;margin-bottom:10px}.directory__tag>a,.directory__tag>div{display:flex;align-items:center;justify-content:space-between;background:#d9e1e8;border-radius:4px;padding:15px;text-decoration:none;color:inherit;box-shadow:0 0 15px rgba(0,0,0,.2)}.directory__tag>a:active,.directory__tag>a:focus,.directory__tag>a:hover{background:#c0cdd9}.directory__tag.active>a{background:#2b5fd9;cursor:default}.directory__tag.disabled>div{opacity:.5;cursor:default}.directory__tag h4{flex:1 1 auto;font-size:18px;font-weight:700;color:#000;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.directory__tag h4 .fa{color:#282c37}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#282c37}.directory__tag.active h4,.directory__tag.active h4 .fa,.directory__tag.active h4 small{color:#000}.directory__tag .avatar-stack{flex:0 0 auto;width:120px}.directory__tag.active .avatar-stack .account__avatar{border-color:#2b5fd9}.avatar-stack{display:flex;justify-content:flex-end}.avatar-stack .account__avatar{flex:0 0 auto;width:36px;height:36px;border-radius:50%;position:relative;margin-left:-10px;background:#f2f5f7;border:2px solid #d9e1e8}.avatar-stack .account__avatar:first-child{z-index:1}.avatar-stack .account__avatar:nth-child(2){z-index:2}.avatar-stack .account__avatar:nth-child(3){z-index:3}.accounts-table{width:100%}.accounts-table .account{padding:0;border:0}.accounts-table strong{font-weight:700}.accounts-table thead th{text-align:center;text-transform:uppercase;color:#282c37;font-weight:700;padding:10px}.accounts-table thead th:first-child{text-align:left}.accounts-table tbody td{padding:15px 0;vertical-align:middle;border-bottom:1px solid #c0cdd9}.accounts-table tbody tr:last-child td{border-bottom:0}.accounts-table__count{width:120px;text-align:center;font-size:15px;font-weight:500;color:#000}.accounts-table__count small{display:block;color:#282c37;font-weight:400;font-size:14px}.accounts-table__comment{width:50%;vertical-align:initial!important}@media screen and (max-width:415px){.accounts-table tbody td.optional{display:none}}@media screen and (max-width:415px){.box-widget,.contact-widget,.directory,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget,.page-header{margin-bottom:0;box-shadow:none;border-radius:0}}.statuses-grid{min-height:600px}@media screen and (max-width:640px){.statuses-grid{width:100%!important}}.statuses-grid__item{width:313.3333333333px}@media screen and (max-width:1255px){.statuses-grid__item{width:306.6666666667px}}@media screen and (max-width:640px){.statuses-grid__item{width:100%}}@media screen and (max-width:415px){.statuses-grid__item{width:100vw}}.statuses-grid .detailed-status{border-radius:4px}@media screen and (max-width:415px){.statuses-grid .detailed-status{border-top:1px solid #a6b9c9}}.statuses-grid .detailed-status.compact .detailed-status__meta{margin-top:15px}.statuses-grid .detailed-status.compact .status__content{font-size:15px;line-height:20px}.statuses-grid .detailed-status.compact .status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.statuses-grid .detailed-status.compact .status__content .status__content__spoiler-link{line-height:20px;margin:0}.statuses-grid .detailed-status.compact .media-gallery,.statuses-grid .detailed-status.compact .status-card,.statuses-grid .detailed-status.compact .video-player{margin-top:15px}.notice-widget{color:#282c37}.notice-widget,.notice-widget p{margin-bottom:10px}.notice-widget p:last-child{margin-bottom:0}.notice-widget a{font-size:14px;line-height:20px;text-decoration:none;font-weight:500;color:#2b5fd9}.notice-widget a:active,.notice-widget a:focus,.notice-widget a:hover{text-decoration:underline}code{font-family:gabsocial-font-monospace,monospace;font-weight:400}.form-container{max-width:400px;padding:20px;margin:0 auto}.simple_form .input{margin-bottom:15px;overflow:hidden}.simple_form .input.hidden{margin:0}.simple_form .input.radio_buttons .radio{margin-bottom:15px}.simple_form .input.radio_buttons .radio:last-child{margin-bottom:0}.simple_form .input.radio_buttons .radio>label{position:relative;padding-left:28px}.simple_form .input.radio_buttons .radio>label input{position:absolute;top:-2px;left:0}.simple_form .input.boolean{position:relative;margin-bottom:0}.simple_form .input.boolean .label_input>label{font-family:inherit;font-size:14px;padding-top:5px;color:#000;display:block;width:auto}.simple_form .input.boolean .hint,.simple_form .input.boolean .label_input{padding-left:28px}.simple_form .input.boolean .label_input__wrapper{position:static}.simple_form .input.boolean label.checkbox{position:absolute;top:2px;left:0}.simple_form .input.boolean label a{color:#2b5fd9;text-decoration:underline}.simple_form .input.boolean label a:active,.simple_form .input.boolean label a:focus,.simple_form .input.boolean label a:hover{text-decoration:none}.simple_form .row{display:flex;margin:0 -5px}.simple_form .row .input{box-sizing:border-box;flex:1 1 auto;width:50%;padding:0 5px}.simple_form .hint{color:#999}.simple_form .hint a{color:#2b5fd9}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#fff}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#999}.simple_form p.hint.subtle-hint{text-align:center;font-size:12px;line-height:18px;margin-top:15px;margin-bottom:0}.simple_form .card{margin-bottom:15px}.simple_form strong{font-weight:500}.simple_form strong:lang(ja),.simple_form strong:lang(ko),.simple_form strong:lang(zh-cn),.simple_form strong:lang(zh-hk),.simple_form strong:lang(zh-tw){font-weight:700}.simple_form .input.with_floating_label .label_input{display:flex}.simple_form .input.with_floating_label .label_input>label{font-family:inherit;font-size:14px;color:#000;font-weight:500;min-width:150px;flex:0 0 auto}.simple_form .input.with_floating_label .label_input input,.simple_form .input.with_floating_label .label_input select{flex:1 1 auto}.simple_form .input.with_floating_label.select .hint{margin-top:6px;margin-left:150px}.simple_form .input.with_label .label_input>label{font-family:inherit;font-size:14px;color:#000;display:block;margin-bottom:8px;word-wrap:break-word;font-weight:500}.simple_form .input.with_label .hint{margin-top:6px}.simple_form .input.with_label ul{flex:390px}.simple_form .input.with_block_label{max-width:none}.simple_form .input.with_block_label>label{font-family:inherit;font-size:16px;color:#000;display:block;font-weight:500;padding-top:5px}.simple_form .input.with_block_label .hint{margin-bottom:15px}.simple_form .input.with_block_label ul{-moz-columns:2;column-count:2}.simple_form .required abbr{text-decoration:none;color:#c1203b}.simple_form .fields-group{margin-bottom:25px}.simple_form .fields-group .input:last-child{margin-bottom:0}.simple_form .fields-row{display:flex;padding-top:5px;margin:0 -10px 25px}.simple_form .fields-row .input{max-width:none}.simple_form .fields-row__column{box-sizing:border-box;padding:0 10px;flex:1 1 auto;min-height:1px}.simple_form .fields-row__column-6{max-width:50%}.simple_form .fields-row .fields-group:last-child,.simple_form .fields-row .fields-row__column.fields-group{margin-bottom:0}@media screen and (max-width:600px){.simple_form .fields-row{display:block;margin-bottom:0}.simple_form .fields-row__column{max-width:none}.simple_form .fields-row .fields-group:last-child,.simple_form .fields-row .fields-row__column,.simple_form .fields-row .fields-row__column.fields-group{margin-bottom:25px}}.simple_form .input.radio_buttons .radio label{margin-bottom:5px;font-family:inherit;font-size:14px;color:#000;display:block;width:auto}.simple_form .check_boxes .checkbox label{font-family:inherit;font-size:14px;color:#000;display:inline-block;width:auto;position:relative;padding-top:5px;padding-left:25px;flex:1 1 auto}.simple_form .check_boxes .checkbox input[type=checkbox]{position:absolute;left:0;top:5px;margin:0}.simple_form input[type=email],.simple_form input[type=number],.simple_form input[type=password],.simple_form input[type=text],.simple_form textarea{box-sizing:border-box;font-size:16px;color:#000;display:block;width:100%;outline:0;font-family:inherit;resize:vertical;background:#f9fafb;border:1px solid #fff;border-radius:4px;padding:10px}.simple_form input[type=email]:invalid,.simple_form input[type=number]:invalid,.simple_form input[type=password]:invalid,.simple_form input[type=text]:invalid,.simple_form textarea:invalid{box-shadow:none}.simple_form input[type=email]:focus:invalid:not(:placeholder-shown),.simple_form input[type=number]:focus:invalid:not(:placeholder-shown),.simple_form input[type=password]:focus:invalid:not(:placeholder-shown),.simple_form input[type=text]:focus:invalid:not(:placeholder-shown),.simple_form textarea:focus:invalid:not(:placeholder-shown){border-color:#c1203b}.simple_form input[type=email]:required:valid,.simple_form input[type=number]:required:valid,.simple_form input[type=password]:required:valid,.simple_form input[type=text]:required:valid,.simple_form textarea:required:valid{border-color:#3c754d}.simple_form input[type=email]:hover,.simple_form input[type=number]:hover,.simple_form input[type=password]:hover,.simple_form input[type=text]:hover,.simple_form textarea:hover{border-color:#fff}.simple_form input[type=email]:active,.simple_form input[type=email]:focus,.simple_form input[type=number]:active,.simple_form input[type=number]:focus,.simple_form input[type=password]:active,.simple_form input[type=password]:focus,.simple_form input[type=text]:active,.simple_form input[type=text]:focus,.simple_form textarea:active,.simple_form textarea:focus{border-color:#2b5fd9;background:#f2f5f7}.simple_form .input.field_with_errors label{color:#c1203b}.simple_form .input.field_with_errors input[type=email],.simple_form .input.field_with_errors input[type=number],.simple_form .input.field_with_errors input[type=password],.simple_form .input.field_with_errors input[type=text],.simple_form .input.field_with_errors select,.simple_form .input.field_with_errors textarea{border-color:#c1203b}.simple_form .input.field_with_errors .error{display:block;font-weight:500;color:#c1203b;margin-top:4px}.simple_form .input.disabled{opacity:.5}.simple_form .actions{margin-top:30px;display:flex}.simple_form .actions.actions--top{margin-top:0;margin-bottom:30px}.simple_form .block-button,.simple_form .button,.simple_form button{display:block;width:100%;border:0;border-radius:4px;background:#2b5fd9;color:#000;font-size:18px;line-height:inherit;height:auto;padding:10px;text-transform:uppercase;text-decoration:none;text-align:center;box-sizing:border-box;cursor:pointer;font-weight:500;outline:0;margin-bottom:10px;margin-right:10px}.simple_form .block-button:last-child,.simple_form .button:last-child,.simple_form button:last-child{margin-right:0}.simple_form .block-button:hover,.simple_form .button:hover,.simple_form button:hover{background-color:#2454c7}.simple_form .block-button:active,.simple_form .block-button:focus,.simple_form .button:active,.simple_form .button:focus,.simple_form button:active,.simple_form button:focus{background-color:#416fdd}.simple_form .block-button:disabled:hover,.simple_form .button:disabled:hover,.simple_form button:disabled:hover{background-color:#9bcbed}.simple_form .block-button.negative,.simple_form .button.negative,.simple_form button.negative{background:#df405a}.simple_form .block-button.negative:hover,.simple_form .button.negative:hover,.simple_form button.negative:hover{background-color:#db2a47}.simple_form .block-button.negative:active,.simple_form .block-button.negative:focus,.simple_form .button.negative:active,.simple_form .button.negative:focus,.simple_form button.negative:active,.simple_form button.negative:focus{background-color:#e3566d}.simple_form select{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;font-size:16px;color:#000;display:block;width:100%;outline:0;font-family:inherit;resize:vertical;background:#f9fafb url("data:image/svg+xml;utf8,") no-repeat right 8px center/auto 16px;border:1px solid #fff;border-radius:4px;padding-left:10px;padding-right:30px;height:41px}.simple_form .label_input__wrapper{position:relative}.simple_form .label_input__append{position:absolute;right:3px;top:1px;padding:10px 10px 9px;font-size:16px;color:#444b5d;font-family:inherit;pointer-events:none;cursor:default;max-width:140px;white-space:nowrap;overflow:hidden}.simple_form .label_input__append:after{content:"";display:block;position:absolute;top:0;right:0;bottom:1px;width:5px;background-image:linear-gradient(90deg,rgba(249,250,251,0),#f9fafb)}.simple_form__overlay-area{position:relative}.simple_form__overlay-area__overlay{position:absolute;top:0;left:0;width:100%;height:100%;display:flex;justify-content:center;align-items:center;background:rgba(217,225,232,.65);-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);border-radius:4px}.simple_form__overlay-area__overlay__content{text-align:center}.simple_form__overlay-area__overlay__content.rich-formatting,.simple_form__overlay-area__overlay__content.rich-formatting p{color:#000}.block-icon{display:block;margin:0 auto 10px;font-size:24px}.flash-message{background:#c0cdd9;color:#282c37;border-radius:4px;padding:15px 10px;margin-bottom:30px;text-align:center}.flash-message.notice{border:1px solid rgba(60,117,77,.5);background:rgba(60,117,77,.25);color:#3c754d}.flash-message.alert{border:1px solid rgba(223,64,90,.5);background:rgba(223,64,90,.25);color:#df405a}.flash-message a{display:inline-block;color:#282c37;text-decoration:none}.flash-message a:hover{color:#000;text-decoration:underline}.flash-message p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:gabsocial-font-monospace,monospace;background:#d9e1e8;color:#000;font-size:14px;margin:0}.flash-message .oauth-code::-moz-focus-inner{border:0}.flash-message .oauth-code::-moz-focus-inner,.flash-message .oauth-code:active,.flash-message .oauth-code:focus{outline:0!important}.flash-message .oauth-code:focus{background:#ccd7e0}.flash-message strong{font-weight:500}.flash-message strong:lang(ja),.flash-message strong:lang(ko),.flash-message strong:lang(zh-cn),.flash-message strong:lang(zh-hk),.flash-message strong:lang(zh-tw){font-weight:700}@media screen and (max-width:740px)and (min-width:441px){.flash-message{margin-top:40px}}.form-footer{margin-top:30px;text-align:center}.form-footer a{color:#282c37;text-decoration:none}.form-footer a:hover{text-decoration:underline}.quick-nav{list-style:none;margin-bottom:25px;font-size:14px}.quick-nav li{display:inline-block;margin-right:10px}.quick-nav a{color:#2b5fd9;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#214fba}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#282c37}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#282c37;font-weight:500}.follow-prompt strong:lang(ja),.follow-prompt strong:lang(ko),.follow-prompt strong:lang(zh-cn),.follow-prompt strong:lang(zh-hk),.follow-prompt strong:lang(zh-tw),.oauth-prompt strong:lang(ja),.oauth-prompt strong:lang(ko),.oauth-prompt strong:lang(zh-cn),.oauth-prompt strong:lang(zh-hk),.oauth-prompt strong:lang(zh-tw){font-weight:700}@media screen and (max-width:740px)and (min-width:441px){.follow-prompt,.oauth-prompt{margin-top:40px}}.qr-wrapper{display:flex;flex-wrap:wrap;align-items:flex-start}.qr-code{flex:0 0 auto;background:#fff;padding:4px;margin:0 10px 20px 0;box-shadow:0 0 15px rgba(0,0,0,.2);display:inline-block}.qr-code svg{display:block;margin:0}.qr-alternative{margin-bottom:20px;color:#282c37;flex:150px}.qr-alternative samp{display:block;font-size:14px}.table-form p{margin-bottom:15px}.table-form p strong{font-weight:500}.table-form p strong:lang(ja),.table-form p strong:lang(ko),.table-form p strong:lang(zh-cn),.table-form p strong:lang(zh-hk),.table-form p strong:lang(zh-tw){font-weight:700}.simple_form .warning,.table-form .warning{box-sizing:border-box;color:#000;text-shadow:1px 1px 0 rgba(0,0,0,.3);box-shadow:0 2px 6px rgba(0,0,0,.4);border-radius:4px;padding:10px;margin-bottom:15px}.simple_form .warning a,.table-form .warning a{color:#000;text-decoration:underline}.simple_form .warning a:active,.simple_form .warning a:focus,.simple_form .warning a:hover,.table-form .warning a:active,.table-form .warning a:focus,.table-form .warning a:hover{text-decoration:none}.simple_form .warning strong,.table-form .warning strong{font-weight:600;display:block;margin-bottom:5px}.simple_form .warning strong:lang(ja),.simple_form .warning strong:lang(ko),.simple_form .warning strong:lang(zh-cn),.simple_form .warning strong:lang(zh-hk),.simple_form .warning strong:lang(zh-tw),.table-form .warning strong:lang(ja),.table-form .warning strong:lang(ko),.table-form .warning strong:lang(zh-cn),.table-form .warning strong:lang(zh-hk),.table-form .warning strong:lang(zh-tw){font-weight:700}.simple_form .warning strong .fa,.table-form .warning strong .fa{font-weight:400}.action-pagination{display:flex;flex-wrap:wrap;align-items:center}.action-pagination .actions,.action-pagination .pagination{flex:1 1 auto}.action-pagination .actions{padding:30px 20px 30px 0;flex:0 0 auto}.post-follow-actions{text-align:center;color:#282c37}.post-follow-actions div{margin-bottom:4px}.alternative-login{margin-top:20px;margin-bottom:20px}.alternative-login h4{font-size:16px;color:#000;text-align:center;margin-bottom:20px;border:0;padding:0}.alternative-login .button{display:block}.scope-danger{color:#ff5050}.form_admin_settings_closed_registrations_message textarea,.form_admin_settings_custom_css textarea,.form_admin_settings_site_description textarea,.form_admin_settings_site_extended_description textarea,.form_admin_settings_site_short_description textarea,.form_admin_settings_site_terms textarea{font-family:gabsocial-font-monospace,monospace}.input-copy{background:#f9fafb;border:1px solid #fff;border-radius:4px;display:flex;align-items:center;padding-right:4px;position:relative;top:1px;transition:border-color .3s linear}.input-copy__wrapper{flex:1 1 auto}.input-copy input[type=text]{background:0 0;border:0;padding:10px;font-size:14px;font-family:gabsocial-font-monospace,monospace}.input-copy button{flex:0 0 auto;margin:4px;text-transform:none;font-weight:400;font-size:14px;padding:7px 18px 6px;width:auto;transition:background .3s linear}.input-copy.copied{border-color:#3c754d;transition:none}.input-copy.copied button{background:#3c754d;transition:none}.connection-prompt{margin-bottom:25px}.connection-prompt .fa-link{background-color:#e6ebf0;border-radius:100%;font-size:24px;padding:10px}.connection-prompt__column{align-items:center;display:flex;flex:1;flex-direction:column;flex-shrink:1;max-width:50%}.connection-prompt__column-sep{align-self:center;flex-grow:0;overflow:visible;position:relative;z-index:1}.connection-prompt__column p{word-break:break-word}.connection-prompt .account__avatar{margin-bottom:20px}.connection-prompt__connection{background-color:#c0cdd9;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;padding:25px 10px;position:relative;text-align:center}.connection-prompt__connection:after{background-color:#e6ebf0;content:"";display:block;height:100%;left:50%;position:absolute;top:0;width:1px}.connection-prompt__row{align-items:flex-start;display:flex;flex-direction:row}.card>a{display:block;text-decoration:none;color:inherit;box-shadow:0 0 15px rgba(0,0,0,.2)}@media screen and (max-width:415px){.card>a{box-shadow:none}}.card>a:active .card__bar,.card>a:focus .card__bar,.card>a:hover .card__bar{background:#c0cdd9}.card__img{height:130px;position:relative;background:#fff;border-radius:4px 4px 0 0}.card__img img{display:block;width:100%;height:100%;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;border-radius:4px 4px 0 0}@media screen and (max-width:600px){.card__img{height:200px}}@media screen and (max-width:415px){.card__img{display:none}}.card__bar{position:relative;padding:15px;display:flex;justify-content:flex-start;align-items:center;background:#ccd7e0;border-radius:0 0 4px 4px}@media screen and (max-width:415px){.card__bar{border-radius:0}}.card__bar .avatar{flex:0 0 auto;width:48px;height:48px;padding-top:2px}.card__bar .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;background:#f2f5f7;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.card__bar .display-name{margin-left:15px;text-align:left}.card__bar .display-name strong{font-size:15px;color:#000;font-weight:500;overflow:hidden;text-overflow:ellipsis}.card__bar .display-name span{display:block;font-size:14px;color:#999;font-weight:400;overflow:hidden;text-overflow:ellipsis}.pagination{padding:30px 0;text-align:center;overflow:hidden}.pagination .current,.pagination .gap,.pagination .newer,.pagination .older,.pagination .page,.pagination a{font-size:14px;color:#000;font-weight:500;display:inline-block;padding:6px 10px;text-decoration:none}.pagination .current{background:#fff;border-radius:100px;color:#000;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#282c37}.pagination .older{float:left;padding-left:0}.pagination .older .fa{display:inline-block;margin-right:5px}.pagination .newer{float:right;padding-right:0}.pagination .newer .fa{display:inline-block;margin-left:5px}.pagination .disabled{cursor:default;color:#000}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#d9e1e8;box-shadow:0 0 15px rgba(0,0,0,.2);color:#999;font-size:14px;font-weight:500;text-align:center;display:flex;justify-content:center;align-items:center;cursor:default;border-radius:4px;padding:20px;min-height:30vh}.nothing-here--under-tabs{border-radius:0 0 4px 4px}.nothing-here--flexible{box-sizing:border-box;min-height:100%}.account-role{display:inline-block;padding:4px 6px;cursor:default;border-radius:3px;font-size:12px;line-height:12px;font-weight:500;color:#282c37;background-color:rgba(40,44,55,.1);border:1px solid rgba(40,44,55,.5)}.account-role.moderator{color:#3c754d;background-color:rgba(60,117,77,.1);border-color:rgba(60,117,77,.5)}.account-role.admin{color:#c1203b;background-color:rgba(193,32,59,.1);border-color:rgba(193,32,59,.5)}.account__header__fields{padding:0;margin:15px -15px -15px;border-bottom:0;border-top:0;border-color:#b3c3d1 currentcolor;border-style:solid none;border-width:1px 0;font-size:14px;line-height:20px}.account__header__fields dl{display:flex;border-bottom:1px solid #b3c3d1}.account__header__fields dd,.account__header__fields dt{box-sizing:border-box;padding:14px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header__fields dt{font-weight:500;width:120px;flex:0 0 auto;color:#282c37;background:rgba(242,245,247,.5)}.account__header__fields dd{flex:1 1 auto;color:#282c37}.account__header__fields a{color:#2b5fd9;text-decoration:none}.account__header__fields a:active,.account__header__fields a:focus,.account__header__fields a:hover{text-decoration:underline}.account__header__fields .verified{border:1px solid rgba(60,117,77,.5);background:rgba(60,117,77,.25)}.account__header__fields .verified a{color:#3c754d;font-weight:500}.account__header__fields .verified__mark{color:#3c754d}.account__header__fields dl:last-child{border-bottom:0}.directory__tag .trends__item__current{width:auto}.pending-account__header{color:#282c37}.pending-account__header a{color:#282c37;text-decoration:none}.pending-account__header a:active,.pending-account__header a:focus,.pending-account__header a:hover{text-decoration:underline}.pending-account__header strong{color:#000;font-weight:700}.pending-account__body{margin-top:10px}.activity-stream{box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px}@media screen and (max-width:415px){.activity-stream{margin-bottom:0;border-radius:0;box-shadow:none}}.activity-stream--headless{border-radius:0;margin:0;box-shadow:none}.activity-stream--headless .detailed-status,.activity-stream--headless .status{border-radius:0!important}.activity-stream div[data-component]{width:100%}.activity-stream .entry{background:#d9e1e8}.activity-stream .entry .detailed-status,.activity-stream .entry .load-more,.activity-stream .entry .status{-webkit-animation:none;animation:none}.activity-stream .entry:last-child .detailed-status,.activity-stream .entry:last-child .load-more,.activity-stream .entry:last-child .status{border-bottom:0;border-radius:0 0 4px 4px}.activity-stream .entry:first-child .detailed-status,.activity-stream .entry:first-child .load-more,.activity-stream .entry:first-child .status{border-radius:4px 4px 0 0}.activity-stream .entry:first-child:last-child .detailed-status,.activity-stream .entry:first-child:last-child .load-more,.activity-stream .entry:first-child:last-child .status{border-radius:4px}@media screen and (max-width:740px){.activity-stream .entry .detailed-status,.activity-stream .entry .load-more,.activity-stream .entry .status{border-radius:0!important}}.activity-stream--highlighted .entry{background:#c0cdd9}.button.logo-button{flex:0 auto;font-size:14px;background:#2b5fd9;color:#000;text-transform:none;line-height:36px;height:auto;padding:3px 15px;border:0}.button.logo-button svg{width:20px;height:auto;vertical-align:middle;margin-right:5px;fill:#000}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#204bb1}.button.logo-button.disabled:active,.button.logo-button.disabled:focus,.button.logo-button.disabled:hover,.button.logo-button:disabled:active,.button.logo-button:disabled:focus,.button.logo-button:disabled:hover{background:#9bcbed}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}@media screen and (max-width:415px){.button.logo-button svg{display:none}}.embed .detailed-status,.public-layout .detailed-status{padding:15px}.embed .status,.public-layout .status{padding:15px 15px 15px 78px;min-height:50px}.embed .status__avatar,.public-layout .status__avatar{left:15px;top:17px}.embed .status__content,.public-layout .status__content{padding-top:5px}.embed .status__prepend,.public-layout .status__prepend{margin-left:78px;padding-top:15px}.embed .status__prepend-icon-wrapper,.public-layout .status__prepend-icon-wrapper{left:-32px}.embed .status .media-gallery,.embed .status .video-player,.embed .status__action-bar,.public-layout .status .media-gallery,.public-layout .status .video-player,.public-layout .status__action-bar{margin-top:10px}button.icon-button i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}button.icon-button i.fa-retweet:hover{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjNTE1OTZGJyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjNEQ1NDY5JyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}button.icon-button.disabled i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjODI4QkE0JyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjOTk5OTk5JyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}.icon-button.active i.fa-retweet{background-image:url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMicgaGVpZ2h0PScyMDknPjxwYXRoIGQ9J000Ljk3IDMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOEwuOCA4LjI0Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2Mi42OGMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNjZsLTIuMy0yLjg0Yy0uMDMtLjAyLS4wMy0uMDQtLjA1LS4wNkg3LjI3Yy0uNDQgMC0uNzItLjMtLjcyLS43MnYtMi43aDIuNWMuMzcuMDMuNjMtLjQ4LjQtLjc3TDUuNSAzLjM1Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAyLTIuNC4wMkg3LjFsMi4zMiAyLjg1LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjMjFjZjdhJyBzdHJva2Utd2lkdGg9JzAnLz48cGF0aCBkPSdNNy43OCAxOS42NmMtLjI0LjAyLS40NC4yNS0uNDQuNXYyLjQ2aC0uMDZjLTEuMDggMC0xLjg2LS4wMy0yLjQtLjAzLTEuNjQgMC0xLjI1LjQzLTEuMjUgMy42NXY0LjQ3YzAgNC4yNi0uNTYgMy42MiAzLjY1IDMuNjJIOC41bC0xLjMtMS4wNmMtLjEtLjA4LS4xOC0uMi0uMi0uMy0uMDItLjE3LjA2LS4zNS4yLS40NWwxLjMzLTEuMUg3LjI4Yy0uNDQgMC0uNzItLjMtLjcyLS43di00LjQ4YzAtLjQ0LjI4LS43Mi43Mi0uNzJoLjA2djIuNWMwIC4zOC41NC42My44Mi4zOGw0LjktMy45M2MuMjUtLjE4LjI1LS42IDAtLjc4bC00LjktMy45MmMtLjEtLjEtLjI0LS4xNC0uMzgtLjEyem05LjM0IDIuOTNjLS41NC0uMDItMS4zLjAyLTIuNC4wMmgtMS4yNWwxLjMgMS4wN2MuMS4wNy4xOC4yLjIuMzMuMDIuMTYtLjA2LjMtLjIuNGwtMS4zMyAxLjFoMS4yOGMuNDIgMCAuNzIuMjguNzIuNzJ2NC40N2MwIC40Mi0uMy43Mi0uNzIuNzJoLS4xdi0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDcgMC0uMTQuMDUtLjIuMWwtNC45IDMuOTNjLS4yNi4xOC0uMjYuNiAwIC43OGw0LjkgMy45MmMuMjcuMjUuODIgMCAuOC0uMzh2LTIuNWguMWM0LjI3IDAgMy42NS42NyAzLjY1LTMuNjJ2LTQuNDdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6TTEwLjM0IDM4LjY2Yy0uMjQuMDItLjQ0LjI1LS40My41djIuNDdINy4zYy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC40N2MwIDMuNjYtLjIzIDMuNyAyLjM0IDMuNjZsLTEuMzQtMS4xYy0uMS0uMDgtLjE4LS4yLS4yLS4zIDAtLjE3LjA3LS4zNS4yLS40NWwxLjk2LTEuNmMtLjAzLS4wNi0uMDQtLjEzLS4wNC0uMnYtNC40OGMwLS40NC4yOC0uNzIuNzItLjcySDkuOXYyLjVjMCAuMzYuNS42LjguMzhsNC45My0zLjkzYy4yNC0uMTguMjQtLjYgMC0uNzhsLTQuOTQtMy45MmMtLjEtLjA4LS4yMy0uMTMtLjM2LS4xMnptNS42MyAyLjkzbDEuMzQgMS4xYy4xLjA3LjE4LjIuMi4zMy4wMi4xNi0uMDMuMy0uMTYuNGwtMS45NiAxLjZjLjAyLjA3LjA2LjEzLjA2LjIydjQuNDdjMCAuNDItLjMuNzItLjcyLjcyaC0yLjY2di0yLjQ3YzAtLjMtLjMtLjUzLS42LS40Ny0uMDYuMDItLjEyLjA1LS4xOC4xbC00Ljk0IDMuOTNjLS4yNC4xOC0uMjQuNiAwIC43OGw0Ljk0IDMuOTJjLjI4LjIyLjc4LS4wMi43OC0uMzh2LTIuNWgyLjY2YzQuMjcgMCAzLjY1LjY3IDMuNjUtMy42MnYtNC40N2MwLTMuNjYuMzQtMy43LTIuNC0zLjY2ek0xMy4wNiA1Ny42NmMtLjIzLjAzLS40LjI2LS40LjV2Mi40N0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDQtMi40LS4wNC0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2NC44N2wyLjkzLTIuMzd2LTIuNWMwLS40NC4yOC0uNzIuNzItLjcyaDUuMzh2Mi41YzAgLjM2LjUuNi43OC4zOGw0Ljk0LTMuOTNjLjI0LS4xOC4yNC0uNiAwLS43OGwtNC45NC0zLjkyYy0uMS0uMS0uMjQtLjE0LS4zOC0uMTJ6bTUuMyA2LjE1bC0yLjkyIDIuNHYyLjUyYzAgLjQyLS4zLjcyLS43Mi43MmgtNS40di0yLjQ3YzAtLjMtLjMyLS41My0uNi0uNDctLjA3LjAyLS4xMy4wNS0uMi4xTDMuNiA3MC41MmMtLjI1LjE4LS4yNS42IDAgLjc4bDQuOTMgMy45MmMuMjguMjIuNzgtLjAyLjc4LS4zOHYtMi41aDUuNDJjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi00LjQ3LS40NHpNMTkuMjUgNzguOGMtLjEuMDMtLjIuMS0uMjguMTdsLS45LjljLS40NC0uMy0xLjM2LS4yNS0zLjM1LS4yNUg3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wMy0xLjY0IDAtMS4yNS40My0xLjI1IDMuNjV2LjdsMi45My4zdi0xYzAtLjQ0LjI4LS43Mi43Mi0uNzJoNy40NGMuMiAwIC4zNy4wOC41LjJsLTEuOCAxLjhjLS4yNS4yNi0uMDguNzYuMjcuOGw2LjI3LjdjLjI4LjAzLjU2LS4yNS41My0uNTNsLS43LTYuMjVjMC0uMjctLjMtLjQ4LS41NS0uNDR6bS0xNy4yIDYuMWMtLjIuMDctLjM2LjMtLjMzLjU0bC43IDYuMjVjLjAyLjM2LjU4LjU1LjgzLjI3bC44LS44Yy4wMiAwIC4wNC0uMDIuMDQgMCAuNDYuMjQgMS4zNy4xNyAzLjE4LjE3aDcuNDRjNC4yNyAwIDMuNjUuNjcgMy42NS0zLjYydi0uNzVsLTIuOTMtLjN2MS4wNWMwIC40Mi0uMy43Mi0uNzIuNzJINy4yOGMtLjE1IDAtLjMtLjAzLS40LS4xTDguOCA4Ni40Yy4zLS4yNC4xLS44LS4yNy0uODRsLTYuMjgtLjY1aC0uMnpNNC44OCA5OC42Yy0xLjMzIDAtMS4zNC40OC0xLjMgMi4zbDEuMTQtMS4zN2MuMDgtLjEuMjItLjE3LjM0LS4yLjE2IDAgLjM0LjA4LjQ0LjJsMS42NiAyLjAzYy4wNCAwIC4wNy0uMDMuMTItLjAzaDcuNDRjLjM0IDAgLjU3LjIuNjUuNWgtMi40M2MtLjM0LjA1LS41My41Mi0uMy43OGwzLjkyIDQuOTVjLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOTRjLjIyLS4yNy0uMDItLjc2LS4zNy0uNzdIMTguNGMuMDItMy45LjYtMy40LTMuNjYtMy40SDcuMjhjLTEuMDggMC0xLjg2LS4wNC0yLjQtLjA0em0uMTUgMi40NmMtLjEuMDMtLjIuMS0uMjguMmwtMy45NCA0LjljLS4yLjI4LjAzLjc3LjQuNzhIMy42Yy0uMDIgMy45NC0uNDUgMy40IDMuNjYgMy40aDcuNDRjMy42NSAwIDMuNzQuMyAzLjctMi4yNWwtMS4xIDEuMzRjLS4xLjEtLjIuMTctLjMyLjItLjE2IDAtLjM0LS4wOC0uNDQtLjJsLTEuNjUtMi4wM2MtLjA2LjAyLS4xLjA0LS4xOC4wNEg3LjI4Yy0uMzUgMC0uNTctLjItLjY2LS41aDIuNDRjLjM3IDAgLjYzLS41LjQtLjc4bC0zLjk2LTQuOWMtLjEtLjE1LS4zLS4yMy0uNDctLjJ6TTQuODggMTE3LjZjLTEuMTYgMC0xLjMuMy0xLjMgMS41NmwxLjE0LTEuMzhjLjA4LS4xLjIyLS4xNC4zNC0uMTYuMTYgMCAuMzQuMDQuNDQuMTZsMi4yMiAyLjc1aDdjLjQyIDAgLjcyLjI4LjcyLjcydi41M2gtMi42Yy0uMy4xLS40My41NC0uMi43OGwzLjkyIDQuOWMuMTguMjUuNi4yNS43OCAwbDMuOTQtNC45Yy4yMi0uMjgtLjAyLS43Ny0uMzctLjc4SDE4LjR2LS41M2MwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0xLjA4IDAtMS44Ni0uMDMtMi40LS4wM3ptLjEgMS43NGMtLjEuMDMtLjE3LjEtLjIzLjE2TC44IDEyNC40NGMtLjIuMjguMDMuNzcuNC43OEgzLjZ2LjVjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3LjQ0YzEuMDMgMCAxLjc0LjAyIDIuMjggMC0uMTYuMDItLjM0LS4wMy0uNDQtLjE1bC0yLjIyLTIuNzZINy4yOGMtLjQ0IDAtLjcyLS4zLS43Mi0uNzJ2LS41aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhMNS41IDExOS41Yy0uMTItLjE1LS4zNC0uMjItLjUzLS4xNnptMTIuMDIgMTBjMS4yLS4wMiAxLjQtLjI1IDEuNC0xLjUzbC0xLjEgMS4zNmMtLjA3LjEtLjE3LjE3LS4zLjE4ek01Ljk0IDEzNi42bDIuMzcgMi45M2g2LjQyYy40MiAwIC43Mi4yOC43Mi43MnYxLjI1aC0yLjZjLS4zLjEtLjQzLjU0LS4yLjc4bDMuOTIgNC45Yy4xOC4yNS42LjI1Ljc4IDBsMy45NC00LjljLjIyLS4yOC0uMDItLjc3LS4zNy0uNzhIMTguNHYtMS4yNWMwLTQuMi43Mi0zLjYzLTMuNjYtMy42M0g3LjI4Yy0uNiAwLS45Mi0uMDItMS4zNC0uMDN6bS0xLjcyLjA2Yy0uNC4wOC0uNTQuMy0uNi43NWwuNi0uNzR6bS44NC45M2MtLjEyIDAtLjI0LjA4LS4zLjE4bC0zLjk1IDQuOWMtLjI0LjMgMCAuODMuNC44MkgzLjZ2MS4yMmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDcuNDRjLjYzIDAgLjk3LjAyIDEuNC4wM2wtMi4zNy0yLjkzSDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjIyaDIuNWMuNC4wNC42Ny0uNTMuNC0uOGwtMy45Ni00LjkyYy0uMS0uMTMtLjI3LS4yLS40NC0uMnptMTMuMjggMTAuMDNsLS41Ni43Yy4zNi0uMDcuNS0uMy41Ni0uN3pNMTcuMTMgMTU1LjZjLS41NS0uMDItMS4zMi4wMy0yLjQuMDNoLTguMmwyLjM4IDIuOWg1LjgyYy40MiAwIC43Mi4yOC43Mi43MnYxLjk3SDEyLjljLS4zMi4wNi0uNDguNTItLjI4Ljc4bDMuOTQgNC45NGMuMi4yMy42LjIyLjc4LS4wM2wzLjk0LTQuOWMuMjItLjI4LS4wMi0uNzctLjM3LS43OEgxOC40di0xLjk3YzAtMy4xNS40LTMuNjItMS4yNS0zLjY2em0tMTIuMS4yOGMtLjEuMDItLjIuMS0uMjguMThsLTMuOTQgNC45Yy0uMi4zLjAzLjc4LjQuOEgzLjZ2MS45NmMwIDQuMjYtLjU1IDMuNjIgMy42NiAzLjYyaDguMjRsLTIuMzYtMi45SDcuMjhjLS40NCAwLS43Mi0uMy0uNzItLjcydi0xLjk3aDIuNWMuMzcuMDIuNjMtLjUuNC0uNzhsLTMuOTYtNC45Yy0uMS0uMTUtLjMtLjIyLS40Ny0uMnpNNS4xMyAxNzQuNWMtLjE1IDAtLjMuMDctLjM4LjJMLjggMTc5LjZjLS4yNC4yNyAwIC44Mi40LjhIMy42djIuMzJjMCA0LjI2LS41NSAzLjYyIDMuNjYgMy42Mmg3Ljk0bC0yLjM1LTIuOWgtNS42Yy0uNDMgMC0uNy0uMy0uNy0uNzJ2LTIuM2gyLjVjLjM4LjAzLjY2LS41NC40LS44M2wtMy45Ny00LjljLS4xLS4xMy0uMjMtLjItLjM4LS4yem0xMiAuMWMtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g2LjgzbDIuMzUgMi45aDUuNTJjLjQyIDAgLjcyLjI4LjcyLjcydjIuMzRoLTIuNmMtLjMuMS0uNDMuNTMtLjIuNzhsMy45MiA0LjljLjE4LjI0LjYuMjQuNzggMGwzLjk0LTQuOWMuMjItLjMtLjAyLS43OC0uMzctLjhIMTguNHYtMi4zM2MwLTMuMTUuNC0zLjYyLTEuMjUtMy42NnpNNC45NyAxOTMuMTZjLS4xLjAzLS4xNy4xLS4yMi4xOGwtMy45NCA0LjljLS4yLjMuMDMuNzguNC44SDMuNnYyLjY4YzAgNC4yNi0uNTUgMy42MiAzLjY2IDMuNjJoNy42NmwtMi4zLTIuODRjLS4wMy0uMDItLjAzLS4wNC0uMDUtLjA2SDcuMjdjLS40NCAwLS43Mi0uMy0uNzItLjcydi0yLjdoMi41Yy4zNy4wMy42My0uNDguNC0uNzdsLTMuOTYtNC45Yy0uMTItLjE3LS4zNC0uMjUtLjUzLS4yem0xMi4xNi40M2MtLjU1LS4wMi0xLjMyLjAzLTIuNC4wM0g3LjFsMi4zMiAyLjg0LjAzLjA2aDUuMjVjLjQyIDAgLjcyLjI4LjcyLjcydjIuN2gtMi41Yy0uMzYuMDItLjU2LjU0LS4zLjhsMy45MiA0LjljLjE4LjI1LjYuMjUuNzggMGwzLjk0LTQuOWMuMjYtLjI4IDAtLjgzLS4zNy0uOEgxOC40di0yLjdjMC0zLjE1LjQtMy42Mi0xLjI1LTMuNjZ6JyBmaWxsPScjMjFjZjdhJyBzdHJva2Utd2lkdGg9JzAnLz48L3N2Zz4=)}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#2b5fd9;border:10px;border-radius:4px;box-sizing:border-box;color:#000;cursor:pointer;display:inline-block;font-family:inherit;font-size:14px;font-weight:500;height:36px;letter-spacing:0;line-height:36px;overflow:hidden;padding:0 16px;position:relative;text-align:center;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#204bb1}.button--destructive{transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;transition:none}.button.disabled,.button:disabled{background-color:#9bcbed;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative{color:#000;background:#9bcbed}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#8ac2ea}.button.button-alternative-2{background:#b0c0cf}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#a3b6c7}.button.button-secondary{color:#282c37;background:0 0;padding:3px 15px;border:1px solid #9bcbed}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#8ac2ea;color:#1f232b}.button.button-secondary:disabled{opacity:.5}.button.button--block{display:block;width:100%}.column__wrapper{display:flex;flex:1 1 auto;position:relative}.icon-button{display:inline-block;padding:0;color:#999;border:none;background:0 0;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#51596f;transition:color .2s ease-out}.icon-button.disabled{color:#828ba4;cursor:default}.icon-button.active{color:#2b5fd9}.icon-button::-moz-focus-inner{border:0}.icon-button::-moz-focus-inner,.icon-button:active,.icon-button:focus{outline:0!important}.icon-button.inverted{color:#999}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#373d4c}.icon-button.inverted.disabled{color:#191b22}.icon-button.inverted.active{color:#2b5fd9}.icon-button.inverted.active.disabled{color:#1d46a4}.icon-button.overlayed{box-sizing:content-box;background:hsla(0,0%,100%,.6);color:rgba(0,0,0,.7);border-radius:4px;padding:2px}.icon-button.overlayed:hover{background:hsla(0,0%,100%,.9)}.text-icon-button{color:#999;border:none;background:0 0;cursor:pointer;font-weight:600;font-size:11px;padding:0 3px;line-height:27px;outline:0;transition:color .1s ease-in}.text-icon-button:active,.text-icon-button:focus,.text-icon-button:hover{color:#373d4c;transition:color .2s ease-out}.text-icon-button.disabled{color:#000;cursor:default}.text-icon-button.active{color:#2b5fd9}.text-icon-button::-moz-focus-inner{border:0}.text-icon-button::-moz-focus-inner,.text-icon-button:active,.text-icon-button:focus{outline:0!important}.invisible{font-size:0!important;line-height:0!important;display:inline-block;width:0;height:0;position:absolute}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:"…"}.timeline-compose-block{display:flex;align-items:flex-start;padding:20px;margin-bottom:20px;border-radius:10px;background:#222}body.theme-gabsocial-light .timeline-compose-block{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.timeline-compose-block .emoji-picker-wrapper .emoji-picker-dropdown{top:10px}.timeline-compose-block .compose-form{flex:1 1;padding:0 0 0 20px!important;position:relative}.timeline-compose-block .compose-form .compose-form__autosuggest-wrapper:before{content:"";display:block;position:absolute;height:0;width:0;border:11px solid transparent;border-right:12px solid #fff;left:-22px;top:13px}.timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{padding:14px 32px 13px 10px!important}body.theme-gabsocial-light .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{background:#f2f3f6}.no-reduce-motion .spoiler-input{transition:height .4s ease,opacity .4s ease}.emojione{font-family:"object-fit:contain",inherit;vertical-align:middle;-o-object-fit:contain;object-fit:contain;margin:-.2ex .15em .2ex;width:16px;height:16px}.emojione img{width:auto}.reply-indicator{border-radius:4px;margin-bottom:10px;background:#f2f3f6;padding:10px;min-height:23px;overflow-y:auto;flex:0 2 auto;max-height:500px}@media screen and (min-width:320px)and (max-width:375px){.reply-indicator{max-height:220px}}@media screen and (max-width:320px){.reply-indicator{max-height:130px}}.reply-indicator__header{margin-bottom:5px;overflow:hidden}.reply-indicator__cancel{float:right;line-height:24px}.reply-indicator__display-name{color:#000;display:block;max-width:100%;line-height:24px;overflow:hidden;padding-right:25px;text-decoration:none}.reply-indicator__display-avatar{float:left;margin-right:5px}.status__content--with-action{cursor:pointer}.reply-indicator__content,.status__content{position:relative;font-size:15px;line-height:20px;word-wrap:break-word;font-weight:400;overflow:hidden;text-overflow:ellipsis;padding-top:2px;color:#000}.reply-indicator__content:focus,.status__content:focus{outline:0}.reply-indicator__content.status__content--with-spoiler,.status__content.status__content--with-spoiler{white-space:normal}.reply-indicator__content.status__content--with-spoiler .status__content__text,.status__content.status__content--with-spoiler .status__content__text{white-space:pre-wrap}.reply-indicator__content .emojione,.status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.reply-indicator__content p,.status__content p{margin-bottom:20px;white-space:pre-wrap}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:2px}.reply-indicator__content a,.status__content a{color:#21cf7a;text-decoration:none}.reply-indicator__content a:hover,.status__content a:hover{text-decoration:underline}.reply-indicator__content a:hover .fa,.status__content a:hover .fa{color:#353a48}.reply-indicator__content a.mention:hover,.status__content a.mention:hover{text-decoration:none}.reply-indicator__content a.mention:hover span,.status__content a.mention:hover span{text-decoration:underline}.reply-indicator__content a .fa,.status__content a .fa{color:#444b5d}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#606984}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#51596f;text-decoration:none}.reply-indicator__content .status__content__spoiler-link::-moz-focus-inner,.status__content .status__content__spoiler-link::-moz-focus-inner{border:0}.reply-indicator__content .status__content__spoiler-link::-moz-focus-inner,.reply-indicator__content .status__content__spoiler-link:active,.reply-indicator__content .status__content__spoiler-link:focus,.status__content .status__content__spoiler-link::-moz-focus-inner,.status__content .status__content__spoiler-link:active,.status__content .status__content__spoiler-link:focus{outline:0!important}.reply-indicator__content .status__content__text,.status__content .status__content__text{display:none}.reply-indicator__content .status__content__text.status__content__text--visible,.status__content .status__content__text.status__content__text--visible{display:block}.status__content.status__content--collapsed{max-height:200px}.status__content__read-more-button{display:block;font-size:15px;line-height:20px;color:#21cf7a;border:0;background:0 0;padding:8px 0 0}.status__content__read-more-button:active,.status__content__read-more-button:hover{text-decoration:underline}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:0 0;border:0;color:#000;font-weight:700;font-size:11px;padding:0 6px;text-transform:uppercase;line-height:20px;cursor:pointer;vertical-align:middle}.status__wrapper--filtered{color:#444b5d;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;box-sizing:border-box;width:100%;clear:both;border-bottom:1px solid #c0cdd9}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#ccd7e0}.focusable:focus .status.status-direct{background:#b3c3d1}.focusable:focus .status.status-direct.muted{background:0 0}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#c0cdd9}.status{padding:8px 10px 8px 68px;position:relative;min-height:54px;border-bottom:1px solid #c0cdd9;cursor:default;opacity:1;-webkit-animation:fade .15s linear;animation:fade .15s linear}@supports(-ms-overflow-style:-ms-autohiding-scrollbar){.status{padding-right:26px}}@-webkit-keyframes fade{0%{opacity:0}to{opacity:1}}@keyframes fade{0%{opacity:0}to{opacity:1}}.status .video-player{margin-top:8px}.status.status-direct:not(.read){background:#c0cdd9;border-bottom-color:#b3c3d1}.status.light .status__relative-time{color:#444b5d}.status.light .display-name strong,.status.light .status__display-name{color:#000}.status.light .display-name span{color:#444b5d}.status.light .status__content{color:#000}.status.light .status__content a{color:#2b5fd9}.status.light .status__content a.status__content__spoiler-link{color:#000;background:#9bcbed}.status.light .status__content a.status__content__spoiler-link:hover{background:#78b9e7}.status__quote{display:block;color:#000;text-decoration:none;border:1px solid #282c37;border-radius:10px;padding:10px 15px;margin-top:15px}.status__meta{font-size:14px;color:#999}.status__meta a{color:#21cf7a;font-weight:700;text-decoration:none}.status__meta a:hover{text-decoration:underline}.notification-favourite .status.status-direct{background:0 0}.notification-favourite .status.status-direct .icon-button.disabled{color:#444a5e}.notification__relative_time,.status__relative-time{color:#444b5d;float:right;font-size:14px}.status__display-name{color:#444b5d}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px;z-index:4}.status-check-box{border-bottom:1px solid #282c37;display:flex}.status-check-box .status-check-box__status{margin:10px 0 10px 10px;flex:1}.status-check-box .status-check-box__status .media-gallery{max-width:250px}.status-check-box .status-check-box__status .status__content{padding:0;white-space:normal}.status-check-box .status-check-box__status .video-player{margin-top:8px;max-width:250px}.status-check-box .status-check-box__status .media-gallery__item-thumbnail{cursor:default}.status-check-box-toggle{align-items:center;display:flex;flex:0 0 auto;justify-content:center;padding:10px}.status__prepend{margin-left:68px;color:#444b5d;padding:8px 0 2px;font-size:14px;position:relative}.status__prepend--promoted{border:0!important;background:0 0!important;background-color:transparent!important}.status__prepend .status__display-name strong{color:#444b5d}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:25px;z-index:4}.status__action-bar__counter{display:inline-flex;margin-right:22px;align-items:center}.status__action-bar__counter .status__action-bar-button{margin-right:4px}.status__action-bar__counter__label{display:inline-block;width:14px;font-size:12px;font-weight:500;color:#606984}.status__action-bar-button{margin-right:18px}.status__action-bar-dropdown{height:23.15px;width:23.15px}.detailed-status__action-bar-dropdown{flex:1 1 auto;display:flex;align-items:center;justify-content:center;position:relative}.detailed-status{background:#ccd7e0;padding:14px 10px}.detailed-status--flex{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start}.detailed-status--flex .detailed-status__meta,.detailed-status--flex .status__content{flex:100%}.detailed-status .status__content{font-size:19px;line-height:24px}.detailed-status .status__content .emojione{width:24px;height:24px;margin:-1px 0 0}.detailed-status .status__content .status__content__spoiler-link{line-height:24px;margin:-1px 0 0}.detailed-status .video-player{margin-top:8px}.detailed-status__meta{margin-top:15px;color:#444b5d;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#ccd7e0;border-top:1px solid #c0cdd9;border-bottom:1px solid #c0cdd9;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:#606984;cursor:pointer;text-decoration:none;font-size:13px}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#6c6c6c;font-size:14px}.reply-indicator__content a{color:#282c37}.domain{padding:10px;border-bottom:1px solid #c0cdd9}.domain .domain__domain-name{flex:1 1 auto;display:block;color:#000;text-decoration:none;font-size:14px;font-weight:500}.domain__wrapper{display:flex}.domain_buttons{height:18px;padding:10px;white-space:nowrap}.account{padding:10px}.account:not(:last-of-type){border-bottom:1px solid #c0cdd9}.account.compact{padding:0;border-bottom:0}.account.compact .account__avatar-wrapper{margin-left:0}.account .account__display-name{flex:1 1 auto;display:block;color:#282c37;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-right:12px}.account__avatar{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative;background-color:#d9e1e8}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}.account__avatar-composite{overflow:hidden}.account__avatar-composite,.account__avatar-composite>div{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.account__avatar-composite>div{float:left;position:relative;box-sizing:border-box}a .account__avatar{cursor:pointer}.account__avatar-overlay{width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:36px;height:36px;background-size:36px 36px}.account__avatar-overlay-overlay{border-radius:50%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:24px;height:24px;background-size:24px 24px;position:absolute;bottom:0;right:0;z-index:1}.account__relationship{height:auto;padding:0 0 0 5px;position:relative}.account__relationship .dismiss-account-btn{display:block;margin-bottom:5px}.account__disclaimer{padding:10px;border-top:1px solid #c0cdd9;color:#444b5d}.account__disclaimer strong{font-weight:500}.account__disclaimer strong:lang(ja),.account__disclaimer strong:lang(ko),.account__disclaimer strong:lang(zh-cn),.account__disclaimer strong:lang(zh-hk),.account__disclaimer strong:lang(zh-tw){font-weight:700}.account__disclaimer a{font-weight:500;color:inherit;text-decoration:underline}.account__disclaimer a:active,.account__disclaimer a:focus,.account__disclaimer a:hover{text-decoration:none}.account__action-bar{border-top:1px solid #c0cdd9;border-bottom:1px solid #c0cdd9;line-height:36px;overflow:hidden;flex:0 0 auto;display:flex}.account__action-bar-dropdown{padding:10px}.account__action-bar-dropdown .icon-button{vertical-align:middle}.account__action-bar-dropdown .dropdown--active .dropdown__content.dropdown__right{left:6px;right:auto}.account__action-bar-dropdown .dropdown--active:after{bottom:auto;margin-left:11px;margin-top:-7px;right:auto}.account__action-bar-links{display:flex;flex:1 1 auto;line-height:18px;text-align:center}.account__action-bar__tab{text-decoration:none;overflow:hidden;flex:0 1 100%;border-right:1px solid #c0cdd9;padding:10px 0;border-bottom:4px solid transparent}.account__action-bar__tab.active{border-bottom:4px solid #2b5fd9}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#282c37}.account__action-bar__tab strong{display:block;font-size:15px;font-weight:500;color:#000}.account__action-bar__tab strong:lang(ja),.account__action-bar__tab strong:lang(ko),.account__action-bar__tab strong:lang(zh-cn),.account__action-bar__tab strong:lang(zh-hk),.account__action-bar__tab strong:lang(zh-tw){font-weight:700}.account-authorize{padding:14px 10px}.account-authorize .detailed-status__display-name{display:block;margin-bottom:15px;overflow:hidden}.account-authorize__avatar{float:left;margin-right:10px}.account__display-name,.detailed-status__application,.detailed-status__datetime,.detailed-status__display-name,.status__display-name,.status__relative-time{text-decoration:none}.account__display-name strong,.status__display-name strong{color:#000}.muted .emojione{opacity:.5}.detailed-status__display-name:hover strong,.reply-indicator__display-name:hover strong,.status__display-name:hover strong,a.account__display-name:hover strong{text-decoration:underline}.account__display-name strong{display:block;overflow:hidden;text-overflow:ellipsis}.detailed-status__application,.detailed-status__datetime{color:inherit}.detailed-status__display-name{color:#282c37;display:block;line-height:24px;margin-bottom:15px;overflow:hidden}.detailed-status__display-name span,.detailed-status__display-name strong{display:block;text-overflow:ellipsis;overflow:hidden}.detailed-status__display-name strong{font-size:16px;color:#000}.detailed-status__display-avatar{float:left;margin-right:10px}.status__avatar{height:48px;left:10px;position:absolute;top:10px;width:48px}.status__expand{width:68px;position:absolute;left:0;top:0;height:100%;cursor:pointer}.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#444b5d}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#b0c0cf;color:#000}.muted a.status__content__spoiler-link:hover{background:#9aaec2;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#999;font-size:15px;line-height:22px;position:relative}.notification__message .fa{color:#2b5fd9}.notification__message>span{display:inline;overflow:hidden;text-overflow:ellipsis}.notification__favourite-icon-wrapper{left:-26px;position:absolute}.notification__favourite-icon-wrapper .star-icon,.star-icon.active{color:#ca8f04}.notification__display-name{color:inherit;font-weight:500;text-decoration:none}.notification__display-name:hover{color:#000;text-decoration:underline}.notification__relative_time{float:right}.display-name{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.display-name__html{font-weight:600;padding-right:4px}.display-name__account{font-size:14px}.display-name .emojione[alt=":verified:"]{display:none}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.image-loader{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column}.image-loader .image-loader__preview-canvas{max-width:100%;max-height:80%;background:url(/legacy/images/void-4c8270c17facce6d53726a2ebb9745f2.png) repeat;-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain}.image-loader .loading-bar{position:relative}.image-loader.image-loader--amorphous .image-loader__preview-canvas{display:none}.zoomable-image{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center}.zoomable-image img{max-width:100%;max-height:80%;width:auto;height:auto;-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain}.navigation-bar{padding:10px;display:flex;align-items:center;flex-shrink:0;cursor:default;color:#282c37}.navigation-bar strong{color:#282c37}.navigation-bar a{color:inherit}.navigation-bar .permalink{text-decoration:none}.navigation-bar .navigation-bar__actions{position:relative}.navigation-bar .navigation-bar__actions .icon-button.close{position:absolute;pointer-events:none;transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;transform:scale(1) translate(0);opacity:1}.navigation-bar__profile{flex:1 1 auto;margin-left:8px;line-height:20px;margin-top:-1px;overflow:hidden}.navigation-bar__profile-account{display:block;font-weight:500;overflow:hidden;text-overflow:ellipsis}.navigation-bar__profile-edit{color:inherit;text-decoration:none}.columns-area{display:flex;flex:1 1 auto;flex-direction:row;justify-content:flex-start;position:relative}.columns-area__panels{display:flex;justify-content:center;width:100%;height:100%}.columns-area__panels__pane{height:100%;pointer-events:none;display:flex;justify-content:flex-end;padding-top:15px}.columns-area__panels__pane--start{justify-content:flex-start}.columns-area__panels__pane__inner{width:265px;pointer-events:auto;height:100%}.columns-area__panels__main{display:flex;flex-direction:column;box-sizing:border-box;width:100%;max-width:600px;padding:0 20px}@media screen and (max-width:375px){.columns-area__panels__main{padding:0 10px}}@media screen and (min-width:895px){.columns-area__panels__main{margin:0 20px;padding:0}}.react-swipeable-view-container,.react-swipeable-view-container .column,.react-swipeable-view-container .columns-area,.react-swipeable-view-container .drawer{height:100%}.react-swipeable-view-container>*{display:flex;align-items:center;justify-content:center;height:100%}.column{width:350px;position:relative;box-sizing:border-box;display:flex;flex-direction:column}.column article{background:#222}.ui{display:block;width:100%;padding:0 0 100px}.ui .page{display:flex;flex-direction:column;width:100%}.ui .page__top{display:flex;width:100%;height:auto;z-index:105}@media(min-width:895px){.ui .page__top{top:-290px;position:-webkit-sticky;position:sticky}}.ui .page__columns{width:100%;height:100%}.drawer,.ui .page__columns{display:flex;flex-direction:column}.drawer{width:300px;box-sizing:border-box;overflow-y:hidden}.drawer__tab{display:block;flex:1 1 auto;padding:15px 5px 13px;color:#282c37;text-decoration:none;text-align:center;font-size:16px;border-bottom:2px solid transparent}.column,.drawer{flex:1 1 100%;overflow:hidden}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{flex:0 0 auto;padding:10px 5px}.column:first-child,.drawer:first-child{padding-left:10px}.column:last-child,.drawer:last-child{padding-right:10px}.columns-area>div .column,.columns-area>div .drawer{padding-left:5px;padding-right:5px}}.account__avatar{width:56px;height:56px;background-size:cover}.columns-area--mobile{display:block;flex-direction:column;width:100%;margin:0 auto}.columns-area--mobile .column,.columns-area--mobile .drawer{width:100%;height:100%;padding:0}.columns-area--mobile .autosuggest-textarea__textarea{font-size:16px}.columns-area--mobile .search__input{line-height:18px;font-size:16px;padding:15px 30px 15px 15px}.columns-area--mobile .search__icon .fa{top:15px}@media screen and (min-width:360px){.columns-area--mobile{padding:15px 0}}@media screen and (min-width:630px){.columns-area--mobile .detailed-status{padding:15px}.columns-area--mobile .detailed-status .media-gallery,.columns-area--mobile .detailed-status .video-player{margin-top:15px}.columns-area--mobile .account__header__bar{padding:5px 10px}.columns-area--mobile .compose-form,.columns-area--mobile .navigation-bar{padding:15px}.columns-area--mobile .compose-form .compose-form__publish .compose-form__publish-button-wrapper{padding-top:15px}.columns-area--mobile .status{padding:15px 15px 15px 78px;min-height:50px}.columns-area--mobile .status__avatar{left:15px;top:17px}.columns-area--mobile .status__content{padding-top:5px}.columns-area--mobile .status__prepend{margin-left:78px;padding-top:15px}.columns-area--mobile .status__prepend-icon-wrapper{left:-32px}.columns-area--mobile .status .media-gallery,.columns-area--mobile .status .video-player{margin-top:10px}.columns-area--mobile .account{padding:15px 10px}.columns-area--mobile .notification__message{margin-left:78px;padding-top:15px}.columns-area--mobile .notification__favourite-icon-wrapper{left:-32px}.columns-area--mobile .notification .account,.columns-area--mobile .notification .status{padding-top:8px}.columns-area--mobile .notification .account__avatar-wrapper{margin-left:17px;margin-right:15px}}.floating-action-button{z-index:1000;display:none;position:fixed;bottom:82px;right:14px;width:61px;height:52px;background-image:url(/legacy/images/sprite-main-navigation-adf3dd71f4d17d0c548676ef4da8544c.png);background-repeat:no-repeat;background-size:161px 152px;background-position:-100px 0;background-color:transparent;border:none}@media screen and (max-width:895px){.floating-action-button{display:flex}}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background-position:-100px -100px}@media screen and (min-width:360px){.getting-started__trends,.getting-started__wrapper,.search{margin-bottom:10px}}@media screen and (max-width:895px){.columns-area__panels__pane--left{display:none}}@media screen and (min-width:895px){.search-page .search{display:none}}@media screen and (max-width:1190px){.columns-area__panels__pane--right{display:none}}.icon-with-badge{position:relative}.icon-with-badge__badge{position:absolute;box-sizing:border-box;left:-10px;top:1px;min-width:16px;height:16px;padding:1px 3px 0;border-radius:8px;text-align:center;font-family:Montserrat,Arial,sans-serif!important;font-size:14px;font-size:1.4rem;line-height:14px;line-height:1.4rem;color:#fff;background:#cc6643}.column-link--transparent .icon-with-badge__badge{border-color:#f2f5f7}.promo-panel{margin-top:10px;background-color:transparent!important;overflow:hidden}.promo-panel-item{display:block;height:42px;line-height:42px;border-bottom:1px solid #c0cdd9;background:#222}body.theme-gabsocial-light .promo-panel-item{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.promo-panel-item--highlighted{background-color:#30ce7d;border-radius:10px;font-weight:600;margin-bottom:10px}.promo-panel-item--top-rounded{border-top-right-radius:10px;border-top-left-radius:10px}.promo-panel-item:last-of-type{border-bottom:none}.promo-panel-item__btn{display:block;text-align:left;color:#000;text-decoration:none;font-size:15px;padding:0 20px}.promo-panel-item__btn--special i{color:#30ce7d}.promo-panel-item__btn:hover{color:#242424}.promo-panel-item__btn:hover span{text-decoration:underline}.promo-panel-item__icon{margin-right:12px}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{top:0;left:0;background:#b0c0cf;flex-direction:column;overflow-y:auto;width:100%;height:100%}.drawer__inner.darker{background:#d9e1e8}.drawer__inner__gabsocial{background:#b0c0cf url('data:image/svg+xml;utf8,') no-repeat bottom/100% auto;flex:1;min-height:47px;display:none}.drawer__inner__gabsocial>img{display:block;-o-object-fit:contain;font-family:"object-fit:contain;object-position:bottom left";object-fit:contain;-o-object-position:bottom left;object-position:bottom left;width:100%;height:100%;pointer-events:none;user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}@media screen and (min-height:640px){.drawer__inner__gabsocial{display:block}}.pseudo-drawer{background:#b0c0cf;font-size:13px;text-align:left}.drawer__header{flex:0 0 auto;font-size:16px;background:#c0cdd9;margin-bottom:10px;display:flex;flex-direction:row}.drawer__header a{transition:background .1s ease-in}.drawer__header a:hover{background:#cfd9e2;transition:background .2s ease-out}.slist--flex{display:flex;flex-direction:column}.slist__append{flex:1 1 auto;position:relative;min-height:120px}.column-back-button{background:#ccd7e0;color:#2b5fd9;cursor:pointer;flex:0 0 auto;font-size:16px;line-height:inherit;border:0;text-align:unset;padding:15px;margin:0;z-index:3;outline:0}.column-back-button:hover{text-decoration:underline}.column-header__back-button{background:#ccd7e0;border:0;font-family:inherit;color:#2b5fd9;cursor:pointer;white-space:nowrap;font-size:16px;padding:0 5px 0 0;z-index:3}.column-header__back-button:hover{text-decoration:underline}.column-header__back-button:last-child{padding:0 15px 0 0}.column-back-button__icon{display:inline-block;margin-right:5px}.column-back-button--slim{position:relative}.column-back-button--slim-button{cursor:pointer;flex:0 0 auto;font-size:16px;padding:15px;position:absolute;right:0;top:-48px}.react-toggle{display:inline-block;position:relative;cursor:pointer;background-color:transparent;border:0;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-tap-highlight-color:transparent}.react-toggle-screenreader-only{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.react-toggle--disabled{cursor:not-allowed;opacity:.5;transition:opacity .25s}.react-toggle-track{width:50px;height:24px;padding:0;border-radius:30px;background-color:#d9e1e8;transition:background-color .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#f9fafb}.react-toggle--checked .react-toggle-track{background-color:#21cf7a}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#1aa360}.react-toggle-track-check{position:absolute;width:14px;height:10px;top:0;bottom:0;margin-top:auto;margin-bottom:auto;line-height:0;left:8px;opacity:0;transition:opacity .25s ease}.react-toggle--checked .react-toggle-track-check,.react-toggle-track-x{opacity:1;transition:opacity .25s ease}.react-toggle-track-x{position:absolute;width:10px;height:10px;top:0;bottom:0;margin-top:auto;margin-bottom:auto;line-height:0;right:10px}.react-toggle--checked .react-toggle-track-x{opacity:0}.react-toggle-thumb{position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #d9e1e8;border-radius:50%;background-color:#fff;box-sizing:border-box;transition:all .25s ease;transition-property:border-color,left}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#21cf7a}.column-link{background:#c0cdd9;color:#000;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:active,.column-link:focus,.column-link:hover{background:#b6c5d3}.column-link:focus{outline:0}.column-link--transparent{background:0 0;color:#282c37}.column-link--transparent:active,.column-link--transparent:focus,.column-link--transparent:hover{background:0 0;color:#000}.column-link--transparent.active{color:#2b5fd9}.column-link__icon{display:inline-block;margin-right:5px}.column-link__badge{display:inline-block;border-radius:4px;line-height:19px;padding:4px 8px;margin:-6px 10px}.column-link__badge,.column-subheading{font-size:12px;font-weight:500;background:#d9e1e8}.column-subheading{color:#444b5d;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#d9e1e8}.getting-started__wrapper{flex:0 0 auto}.flex-spacer{flex:1 1 auto}.getting-started{color:#444b5d;overflow:auto}.getting-started__footer{flex:0 0 auto;padding:20px 10px 10px}.getting-started__footer ul{margin-bottom:10px}.getting-started__footer ul li{display:inline}.getting-started__footer p{color:#444b5d;font-size:13px;margin-bottom:20px}.getting-started__footer p a{color:#999;text-decoration:underline}.getting-started__footer a{text-decoration:none;color:#999}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover{text-decoration:underline}.getting-started__trends{background:#d9e1e8;flex:0 1 auto}@media screen and (max-height:810px){.getting-started__trends .trends__item:nth-child(3){display:none}}@media screen and (max-height:720px){.getting-started__trends .trends__item:nth-child(2){display:none}}@media screen and (max-height:670px){.getting-started__trends{display:none}}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px}@media screen and (max-width:960px){.keyboard-shortcuts{height:90vh}}.keyboard-shortcuts__header{display:block;position:relative;border-bottom:1px solid #1f1f1f;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.keyboard-shortcuts__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#000;text-align:center}.keyboard-shortcuts__close{position:absolute;right:10px;top:10px}.keyboard-shortcuts__content{display:flex;flex-direction:row;padding:15px}@media screen and (max-width:960px){.keyboard-shortcuts__content{flex-direction:column;overflow:hidden;overflow-y:scroll;height:calc(100% - 80px);-webkit-overflow-scrolling:touch}}.keyboard-shortcuts table thead{display:block;padding-left:10px;margin-bottom:10px;color:#000;font-size:16px;font-weight:600}.keyboard-shortcuts table tr{font-size:12px}.keyboard-shortcuts table td{padding:0 10px 8px}.keyboard-shortcuts table kbd{display:inline-block;padding:2px 8px;background-color:#c0cdd9;border:1px solid #e6ebf0;border-radius:4px}.setting-text{color:#282c37;background:0 0;border:none;border-bottom:2px solid #9bcbed;box-sizing:border-box;display:block;font-family:inherit;margin-bottom:10px;padding:7px 0;width:100%}.setting-text:active,.setting-text:focus{color:#000;border-bottom-color:#2b5fd9}@media screen and (max-width:600px){.setting-text{font-size:16px}}.no-reduce-motion button.icon-button i.fa-retweet{background-position:0 0;height:19px;transition:background-position .9s steps(10);transition-duration:0s;vertical-align:middle;width:22px}.no-reduce-motion button.icon-button i.fa-retweet:before{display:none!important}.no-reduce-motion button.icon-button.active i.fa-retweet{transition-duration:.9s;background-position:0 100%}.status-card{display:flex;font-size:15px;border:1px solid #b3c3d1;border-radius:4px;color:#444b5d;margin-top:14px;text-decoration:none;overflow:hidden;flex-direction:column}.status-card__actions{bottom:0;left:0;position:absolute;right:0;top:0}.status-card__actions,.status-card__actions>div{display:flex;justify-content:center;align-items:center}.status-card__actions>div{background:rgba(0,0,0,.6);border-radius:8px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#000;background:0 0;border:0;padding:0 8px;text-decoration:none;font-size:18px;line-height:18px}.status-card__actions a:active,.status-card__actions a:focus,.status-card__actions a:hover,.status-card__actions button:active,.status-card__actions button:focus,.status-card__actions button:hover{color:#000}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#c0cdd9}.status-card-photo{cursor:zoom-in;display:block;text-decoration:none;width:100%;height:auto;margin:0}.status-card-video iframe{width:100%;height:100%}.status-card__title{display:block;font-weight:500;margin-bottom:5px;color:#000;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:12px 10px;border-top:1px solid #b3c3d1}.status-card__description{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:40px;overflow:hidden;color:#282c37}.status-card__host{display:block;margin-top:5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#282c37}.status-card__image{display:block;padding-bottom:52.25%;position:relative;background:#c0cdd9}.status-card__image>.fa{font-size:21px;position:absolute;transform-origin:50% 50%;top:50%;left:50%;transform:translate(-50%,-50%)}.status-card.horizontal{display:block}.status-card.horizontal .status-card__image{width:100%}.status-card.horizontal .status-card__image-image{border-radius:4px 4px 0 0}.status-card.horizontal .status-card__title{white-space:inherit}.status-card.compact{flex-direction:row}.status-card.compact.interactive{border:0}.status-card.compact .status-card__content{padding:10px 8px 8px}.status-card.compact .status-card__title{white-space:nowrap}.status-card.compact .status-card__image{flex:0 0 94px;padding-bottom:0}a.status-card.compact:hover{background-color:#ccd7e0}.status-card__image-image{display:block;position:absolute;right:0;left:0;top:0;bottom:0;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#444b5d;background-color:transparent;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;box-sizing:border-box;width:100%;clear:both;text-decoration:none}.load-more:hover{background:#d3dce4}.load-gap{border-bottom:1px solid #c0cdd9}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#444b5d;background:#d9e1e8;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:0 0;padding-top:0}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#444b5d}.regeneration-indicator__label span{font-size:15px;font-weight:400}.columns-area--mobile .column{border-radius:10px;background:#222}body.theme-gabsocial-light .columns-area--mobile .column{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.column-header__wrapper{position:relative;flex:0 0 auto;overflow:hidden}.column-header__wrapper.active:before{display:block;content:"";position:absolute;top:35px;left:0;right:0;margin:0 auto;width:60%;pointer-events:none;height:28px;z-index:1;background:radial-gradient(ellipse,rgba(43,95,217,.23) 0,rgba(43,95,217,0) 60%)}.column-header{display:flex;font-size:16px;background:#222;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden}body.theme-gabsocial-light .column-header{background:#fff;color:#6c6c6c}.column-header>.btn,.column-header>button{margin:0;border:none;padding:15px;color:inherit;background:0 0;font:inherit;text-align:left;text-decoration:none;white-space:nowrap}.column-header>.btn--sub,.column-header>button--sub{font-size:14px;padding:6px 10px}.column-header>.btn.grouped,.column-header>button.grouped{margin:6px}.column-header>.btn.active,.column-header>button.active{color:#000;border-radius:10px;background-color:rgba(43,95,217,.1)}@media screen and (max-width:650px){.column-header>.btn,.column-header>button{padding:8px;font-size:14px}.column-header>.btn.grouped,.column-header>button.grouped{margin:6px 2px 6px 6px}.column-header>.btn.active,.column-header>button.active{border-radius:5px}}.column-header>.column-header__back-button{color:#2b5fd9}.column-header.active{box-shadow:0 1px 0 rgba(43,95,217,.3)}.column-header.active .column-header__icon{color:#2b5fd9;text-shadow:0 0 10px rgba(43,95,217,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:flex;margin-left:auto}.column-header__links .text-btn{margin-right:10px}.column-header__button{cursor:pointer;border:0;padding:0 15px;font-size:16px;color:#fff;background:#222}body.theme-gabsocial-light .column-header__button{color:#6c6c6c;background:#fff}.column-header__button:hover{color:#191b22}.column-header__button.active,.column-header__button.active:hover{color:#000;background:#c0cdd9}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#282c37;transition:max-height .15s ease-in-out,opacity .3s linear;opacity:1}.column-header__collapsible.collapsed{max-height:0;opacity:.5}.column-header__collapsible.animating{overflow-y:hidden}.column-header__collapsible hr{height:0;background:0 0;border:0;border-top:1px solid #b3c3d1;margin:10px 0}.column-header__collapsible-inner{background:#3f3f3f;padding:15px}body.theme-gabsocial-light .column-header__collapsible-inner{background:#e6e6e6}.column-header__setting-btn--link{text-decoration:none}.column-header__setting-btn--link .fa{margin-left:10px}.column-header__setting-btn:hover{color:#282c37;text-decoration:underline}.column-header__setting-arrows{float:right}.column-header__setting-arrows .column-header__setting-btn{padding:0 10px}.column-header__setting-arrows .column-header__setting-btn:last-child{padding-right:0}.column-header__expansion{overflow-x:scroll;overflow-y:hidden;white-space:nowrap}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:0 0;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#444b5d;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #86a0b6;border-radius:50%}.no-reduce-motion .loading-indicator span{-webkit-animation:loader-label 1.15s cubic-bezier(.215,.61,.355,1) infinite;animation:loader-label 1.15s cubic-bezier(.215,.61,.355,1) infinite}.no-reduce-motion .loading-indicator__figure{-webkit-animation:loader-figure 1.15s cubic-bezier(.215,.61,.355,1) infinite;animation:loader-figure 1.15s cubic-bezier(.215,.61,.355,1) infinite}@-webkit-keyframes loader-figure{0%{width:0;height:0;background-color:#86a0b6}29%{background-color:#86a0b6}30%{width:42px;height:42px;background-color:transparent;border-width:21px;opacity:1}to{width:42px;height:42px;border-width:0;opacity:0;background-color:transparent}}@keyframes loader-figure{0%{width:0;height:0;background-color:#86a0b6}29%{background-color:#86a0b6}30%{width:42px;height:42px;background-color:transparent;border-width:21px;opacity:1}to{width:42px;height:42px;border-width:0;opacity:0;background-color:transparent}}@-webkit-keyframes loader-label{0%{opacity:.25}30%{opacity:1}to{opacity:.25}}@keyframes loader-label{0%{opacity:.25}30%{opacity:1}to{opacity:.25}}.video-error-cover{align-items:center;background:#fff;color:#000;cursor:pointer;display:flex;flex-direction:column;height:100%;justify-content:center;margin-top:8px;position:relative;text-align:center;z-index:100}.media-spoiler{background:#fff;color:#282c37;border:0;padding:0;width:100%;height:100%;border-radius:4px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.media-spoiler:active,.media-spoiler:focus,.media-spoiler:hover{padding:0;color:#17191f}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{top:0;left:0;width:100%;height:100%;position:absolute;z-index:100}.spoiler-button--minified{display:block;left:4px;top:4px;width:auto;height:auto}.spoiler-button--hidden{display:none}.spoiler-button__overlay{display:block;background:0 0;width:100%;height:100%;border:0}.spoiler-button__overlay__label{display:inline-block;background:hsla(0,0%,100%,.5);border-radius:8px;padding:8px 12px;color:#000;font-weight:500;font-size:14px}.spoiler-button__overlay:active .spoiler-button__overlay__label,.spoiler-button__overlay:focus .spoiler-button__overlay__label,.spoiler-button__overlay:hover .spoiler-button__overlay__label{background:hsla(0,0%,100%,.8)}.modal-container--preloader{background:#c0cdd9}.account--panel{background:#ccd7e0;border-top:1px solid #c0cdd9;border-bottom:1px solid #c0cdd9;display:flex;flex-direction:row;padding:10px 0}.account--panel__button,.detailed-status__button{flex:1 1 auto;text-align:center}.column-settings__outer{background:#c0cdd9;padding:15px}.column-settings__section{color:#282c37;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__hashtags .column-settings__row{margin-bottom:15px}.column-settings__hashtags .column-select__control{outline:0;box-sizing:border-box;width:100%;border:1px solid #666;box-shadow:none;font-family:inherit;background:#222;color:#21cf7a;font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;margin:0;border-radius:4px}.column-settings__hashtags .column-select__control::-webkit-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-moz-placeholder{color:#666}.column-settings__hashtags .column-select__control::placeholder{color:#666}.column-settings__hashtags .column-select__control:-ms-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-ms-input-placeholder{color:#666}.column-settings__hashtags .column-select__control::-moz-focus-inner{border:0}.column-settings__hashtags .column-select__control::-moz-focus-inner,.column-settings__hashtags .column-select__control:active,.column-settings__hashtags .column-select__control:focus{outline:0!important}.column-settings__hashtags .column-select__placeholder{color:#444b5d;padding-left:2px;font-size:12px}.column-settings__hashtags .column-select__value-container{padding-left:6px}.column-settings__hashtags .column-select__multi-value{background:#c0cdd9}.column-settings__hashtags .column-select__multi-value__remove{cursor:pointer}.column-settings__hashtags .column-select__multi-value__remove:active,.column-settings__hashtags .column-select__multi-value__remove:focus,.column-settings__hashtags .column-select__multi-value__remove:hover{background:#b3c3d1;color:#1f232b}.column-settings__hashtags .column-select__input,.column-settings__hashtags .column-select__multi-value__label{color:#282c37}.column-settings__hashtags .column-select__clear-indicator,.column-settings__hashtags .column-select__dropdown-indicator{cursor:pointer;transition:none;color:#444b5d}.column-settings__hashtags .column-select__clear-indicator:active,.column-settings__hashtags .column-select__clear-indicator:focus,.column-settings__hashtags .column-select__clear-indicator:hover,.column-settings__hashtags .column-select__dropdown-indicator:active,.column-settings__hashtags .column-select__dropdown-indicator:focus,.column-settings__hashtags .column-select__dropdown-indicator:hover{color:#3b4151}.column-settings__hashtags .column-select__indicator-separator{background-color:#c0cdd9}.column-settings__hashtags .column-select__menu{background:#222;border-radius:4px;border:1px solid #666;margin:4px 0 0;font-size:12px;font-size:1.2rem;line-height:14px;line-height:1.4rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5);padding:0;background:#282c37}.column-settings__hashtags .column-select__menu h4{color:#fff;font-size:14px;font-size:1.4rem;line-height:16px;line-height:1.6rem;font-weight:700}.column-settings__hashtags .column-select__menu ul{margin:6px 0}.column-settings__hashtags .column-select__menu ul li{margin:0 0 2px}.column-settings__hashtags .column-select__menu ul li em{color:#21cf7a}.column-settings__hashtags .column-select__menu-list{padding:6px}.column-settings__hashtags .column-select__option{color:#000;border-radius:4px;font-size:14px}.column-settings__hashtags .column-select__option--is-focused,.column-settings__hashtags .column-select__option--is-selected{background:#3d4455}.column-settings__row .text-btn{margin-bottom:15px}.relationship-tag{color:#000;margin-bottom:4px;display:block;vertical-align:top;background-color:#fff;text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px;opacity:.7}.relationship-tag:hover{opacity:1}.setting-toggle{display:block;line-height:24px}.setting-toggle__label{color:#282c37;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.empty-column-indicator,.error-column{color:#444b5d;background:#d9e1e8;text-align:center;padding:40px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;min-height:160px}@supports(display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator>span,.error-column>span{max-width:400px}.empty-column-indicator a,.error-column a{color:#2b5fd9;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}@-webkit-keyframes heartbeat{0%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{transform-origin:center center;-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}@-webkit-keyframes shake-bottom{0%,to{transform:rotate(0deg);transform-origin:50% 100%}10%{transform:rotate(2deg)}20%,40%,60%{transform:rotate(-4deg)}30%,50%,70%{transform:rotate(4deg)}80%{transform:rotate(-2deg)}90%{transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{transform:rotate(0deg);transform-origin:50% 100%}10%{transform:rotate(2deg)}20%,40%,60%{transform:rotate(-4deg)}30%,50%,70%{transform:rotate(4deg)}80%{transform:rotate(-2deg)}90%{transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{transform-origin:50% 100%;-webkit-animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) 2s 2 both;animation:shake-bottom .8s cubic-bezier(.455,.03,.515,.955) 2s 2 both}.emoji-picker-dropdown__menu{background:#fff;position:absolute;box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px;z-index:20000}.emoji-picker-dropdown__menu .emoji-mart-scroll{transition:opacity .2s ease}.emoji-picker-dropdown__menu.selecting .emoji-mart-scroll{opacity:.5}.emoji-picker-dropdown__modifiers{position:absolute;top:60px;right:11px;cursor:pointer}.emoji-picker-dropdown__modifiers__menu{position:absolute;z-index:4;top:-4px;left:-8px;background:#fff;border-radius:4px;box-shadow:1px 2px 6px rgba(0,0,0,.2);overflow:hidden}.emoji-picker-dropdown__modifiers__menu button{display:block;cursor:pointer;border:0;padding:4px 8px;background:0 0}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(40,44,55,.4)}.emoji-picker-dropdown__modifiers__menu .emoji-mart-emoji{height:22px}.emoji-mart-emoji span{background-repeat:no-repeat}.upload-area{align-items:center;background:hsla(0,0%,100%,.8);display:flex;height:100%;justify-content:center;left:0;opacity:0;position:absolute;top:0;visibility:hidden;width:100%;z-index:2000}.upload-area *{pointer-events:none}.upload-area__drop{width:320px;height:160px;display:flex;box-sizing:border-box;position:relative;padding:8px}.upload-area__background{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;border-radius:4px;background:#d9e1e8;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#282c37;font-size:18px;font-weight:500;border:2px dashed #b0c0cf;border-radius:4px}.upload-progress{padding:10px;color:#282c37;overflow:hidden;display:flex}.upload-progress .fa{font-size:34px;margin-right:10px}.upload-progress span{font-size:12px;text-transform:uppercase;font-weight:500;display:block}.upload-progess__message{flex:1 1 auto}.upload-progress__backdrop{width:100%;height:6px;border-radius:6px;background:#b0c0cf;position:relative;margin-top:5px}.upload-progress__tracker{position:absolute;left:0;top:0;height:6px;background:#2b5fd9;border-radius:6px}.emoji-button{display:block;font-size:24px;line-height:24px;margin-left:2px;width:24px;outline:0;cursor:pointer}.emoji-button:active,.emoji-button:focus{outline:0!important}.emoji-button img{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8;display:block;width:22px;height:22px;margin:2px 0 0}.dropdown--active .emoji-button img,.emoji-button:active img,.emoji-button:focus img,.emoji-button:hover img{opacity:1;-webkit-filter:none;filter:none}.privacy-dropdown__dropdown{position:absolute;background:#fff;box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:4px;margin-left:40px;overflow:hidden;z-index:10000}.privacy-dropdown__dropdown.top{transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{transform-origin:50% 0}.privacy-dropdown__option{color:#000;padding:10px;cursor:pointer;display:flex}.privacy-dropdown__option.active,.privacy-dropdown__option:hover{background:#2b5fd9;color:#000;outline:0}.privacy-dropdown__option.active .privacy-dropdown__option__content,.privacy-dropdown__option.active .privacy-dropdown__option__content strong,.privacy-dropdown__option:hover .privacy-dropdown__option__content,.privacy-dropdown__option:hover .privacy-dropdown__option__content strong{color:#000}.privacy-dropdown__option.active:hover{background:#2456cb}.privacy-dropdown__option__icon{display:flex;align-items:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{flex:1 1 auto;color:#282c37}.privacy-dropdown__option__content strong{font-weight:500;display:block;color:#000}.privacy-dropdown__option__content strong:lang(ja),.privacy-dropdown__option__content strong:lang(ko),.privacy-dropdown__option__content strong:lang(zh-cn),.privacy-dropdown__option__content strong:lang(zh-hk),.privacy-dropdown__option__content strong:lang(zh-tw){font-weight:700}.privacy-dropdown.active .privacy-dropdown__value{background:#fff;border-radius:4px 4px 0 0;box-shadow:0 -4px 4px rgba(0,0,0,.1)}.privacy-dropdown.active .privacy-dropdown__value .icon-button{transition:none}.privacy-dropdown.active .privacy-dropdown__value.active{background:#2b5fd9}.privacy-dropdown.active .privacy-dropdown__value.active .icon-button{color:#000}.privacy-dropdown.active.top .privacy-dropdown__value{border-radius:0 0 4px 4px}.privacy-dropdown.active .privacy-dropdown__dropdown{display:block;box-shadow:2px 4px 6px rgba(0,0,0,.1)}.search{position:relative}.search__input{display:block;padding:7px 30px 6px 10px;outline:0;box-sizing:border-box;width:100%;border:1px solid #666;box-shadow:none;font-family:inherit;background:#222;color:#21cf7a;font-size:16px;font-size:1.6rem;line-height:19px;line-height:1.9rem;margin:0;border-radius:4px}.search__input::-webkit-input-placeholder{color:#666}.search__input::-moz-placeholder{color:#666}.search__input::placeholder{color:#666}.search__input:-ms-input-placeholder{color:#666}.search__input::-ms-input-placeholder{color:#666}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{cursor:default;display:inline-block;position:absolute;top:8px;right:6px;z-index:2;width:18px;height:18px;font-size:16px;font-size:1.6rem;color:#666;opacity:0;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:1}.search__icon .fa-search.active{pointer-events:none}.search__icon .fa-times-circle{cursor:pointer;font-size:17px;font-size:1.7rem;color:#cc6643}.search__icon .fa-times-circle:hover{color:#b95532}.search-results__header{color:#444b5d;background:#d3dce4;padding:15px;font-weight:500;font-size:16px;cursor:default}.search-results__header .fa{display:inline-block;margin-right:5px}.search-results__section{margin-bottom:5px}.search-results__section h5{background:#e6ebf0;border-bottom:1px solid #c0cdd9;cursor:default;display:flex;padding:15px;font-weight:500;font-size:16px;color:#444b5d}.search-results__section h5 .fa{display:inline-block;margin-right:5px}.search-results__section .account:last-child,.search-results__section>div:last-child .status{border-bottom:0}.search-results__hashtag{display:block;padding:10px;color:#282c37;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#1f232b;text-decoration:underline}.loading-bar{background-color:#2b5fd9;height:3px;position:absolute;top:0;left:0}.media-gallery__gifv__label{display:block;position:absolute;color:#000;background:hsla(0,0%,100%,.5);bottom:6px;left:6px;padding:2px 6px;border-radius:2px;font-size:11px;font-weight:600;z-index:1;pointer-events:none;opacity:.9;transition:opacity .1s ease;line-height:18px}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.attachment-list{display:flex;font-size:14px;border:1px solid #c0cdd9;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#444b5d;padding:8px 18px;cursor:default;border-right:1px solid #c0cdd9;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:26px}.attachment-list__icon .fa{display:block}.attachment-list__list{list-style:none;padding:4px 0 4px 8px;display:flex;flex-direction:column;justify-content:center}.attachment-list__list li{display:block;padding:4px 0}.attachment-list__list a{text-decoration:none;color:#444b5d;font-weight:500}.attachment-list__list a:hover{text-decoration:underline}.attachment-list.compact{border:0;margin-top:4px}.attachment-list.compact .attachment-list__list{padding:0;display:block}.attachment-list.compact .fa{color:#444b5d}.media-gallery{margin-top:8px;border-radius:4px;width:100%}.media-gallery,.media-gallery__item{box-sizing:border-box;overflow:hidden;position:relative}.media-gallery__item{border:none;display:block;float:left;border-radius:4px}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#282c37;line-height:0;position:relative;z-index:1}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img,.media-gallery__preview{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.media-gallery__preview{width:100%;height:100%;position:absolute;top:0;left:0;z-index:0;background:#fff}.media-gallery__preview--hidden{display:none}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%}.media-gallery__item-gifv-thumbnail{cursor:zoom-in;height:100%;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;position:relative;width:100%;z-index:1;transform:none;top:0}.media-gallery__item-thumbnail-label{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute}.status__video-player{background:#fff;box-sizing:border-box;cursor:default;margin-top:8px;overflow:hidden;position:relative}.status__video-player-video{height:100%;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;position:relative;top:50%;transform:translateY(-50%);width:100%;z-index:1}.status__video-player-expand,.status__video-player-mute{color:#000;opacity:.8;position:absolute;right:4px;text-shadow:0 1px 1px #000,1px 0 1px #000}.status__video-player-spoiler{display:none;color:#000;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.status__video-player-spoiler.status__video-player-spoiler--visible{display:block}.status__video-player-expand{bottom:4px;z-index:100}.status__video-player-mute{top:4px;z-index:5}.detailed .video-player__volume:before,.detailed .video-player__volume__current,.fullscreen .video-player__volume:before,.fullscreen .video-player__volume__current{bottom:27px}.detailed .video-player__volume__handle,.fullscreen .video-player__volume__handle{bottom:23px}.video-player{overflow:hidden;position:relative;background:#000;max-width:100%;border-radius:4px}.video-player:focus{outline:0}.video-player video{max-width:100vw;max-height:80vh;z-index:1}.video-player.fullscreen{width:100%!important;height:100%!important;margin:0}.video-player.fullscreen video{max-width:100%!important;max-height:100%!important;width:100%!important;height:100%!important}.video-player.inline video{-o-object-fit:contain;font-family:"object-fit:contain";object-fit:contain;position:relative;top:50%;transform:translateY(-50%)}.video-player__controls{position:absolute;z-index:2;bottom:0;left:0;right:0;box-sizing:border-box;background:linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.45) 60%,transparent);padding:0 15px;opacity:0;transition:opacity .1s ease}.video-player__controls.active{opacity:1}.video-player.inactive .video-player__controls,.video-player.inactive video{visibility:hidden}.video-player__spoiler{display:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:4;border:0;background:#fff;color:#282c37;transition:none;pointer-events:none}.video-player__spoiler.active{display:block;pointer-events:auto}.video-player__spoiler.active:active,.video-player__spoiler.active:focus,.video-player__spoiler.active:hover{color:#191b22}.video-player__spoiler__title{display:block;font-size:14px}.video-player__spoiler__subtitle{display:block;font-size:11px;font-weight:500}.video-player__buttons-bar{display:flex;justify-content:space-between;padding-bottom:10px}.video-player__buttons{font-size:16px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.video-player__buttons.left button{padding-left:0}.video-player__buttons.right button{padding-right:0}.video-player__buttons button{background:0 0;padding:2px 10px;font-size:16px;border:0;color:hsla(0,0%,100%,.75)}.video-player__buttons button:active,.video-player__buttons button:focus,.video-player__buttons button:hover{color:#fff}.video-player__time-current,.video-player__time-sep,.video-player__time-total{font-size:14px;font-weight:500}.video-player__time-current{color:#fff;margin-left:60px}.video-player__time-sep{display:inline-block;margin:0 6px}.video-player__time-sep,.video-player__time-total{color:#fff}.video-player__volume{cursor:pointer;height:24px;display:inline}.video-player__volume:before{content:"";width:50px;background:hsla(0,0%,100%,.35)}.video-player__volume:before,.video-player__volume__current{border-radius:4px;display:block;position:absolute;height:4px;left:70px;bottom:20px}.video-player__volume__current{background:#214fba}.video-player__volume__handle{position:absolute;z-index:3;border-radius:50%;width:12px;height:12px;bottom:16px;left:70px;transition:opacity .1s ease;background:#214fba;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.video-player__link{padding:2px 10px}.video-player__link a{text-decoration:none;font-size:14px;font-weight:500;color:#fff}.video-player__link a:active,.video-player__link a:focus,.video-player__link a:hover{text-decoration:underline}.video-player__seek{cursor:pointer;height:24px;position:relative}.video-player__seek:before{content:"";width:100%;background:hsla(0,0%,100%,.35);border-radius:4px;display:block;position:absolute;height:4px;top:10px}.video-player__seek__buffer,.video-player__seek__progress{display:block;position:absolute;height:4px;border-radius:4px;top:10px;background:#214fba}.video-player__seek__buffer{background:hsla(0,0%,100%,.2)}.video-player__seek__handle{position:absolute;z-index:3;opacity:0;border-radius:50%;width:12px;height:12px;top:6px;margin-left:-6px;transition:opacity .1s ease;background:#214fba;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.video-player__seek:hover .video-player__seek__handle,.video-player__seek__handle.active{opacity:1}.video-player.detailed .video-player__buttons button,.video-player.fullscreen .video-player__buttons button{padding-top:10px;padding-bottom:10px}.media-spoiler-video{background-size:cover;background-repeat:no-repeat;background-position:50%;cursor:pointer;margin-top:8px;position:relative;border:0;display:block}.media-spoiler-video-play-icon{border-radius:100px;color:rgba(0,0,0,.8);font-size:36px;left:50%;padding:5px;position:absolute;top:50%;transform:translate(-50%,-50%)}.account-gallery__container{display:flex;flex-wrap:wrap;padding:4px 2px}.account-gallery__item{border:none;box-sizing:border-box;display:block;position:relative;border-radius:4px;overflow:hidden;margin:2px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#e6ebf0;border-bottom:1px solid #c0cdd9;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#e6ebf0;border:0;margin:0}.account__section-headline a,.account__section-headline button,.notification__filter-bar a,.notification__filter-bar button{display:block;flex:1 1 auto;color:#282c37;padding:15px 0;font-size:14px;font-weight:500;text-align:center;text-decoration:none;position:relative}.account__section-headline a.active,.account__section-headline button.active,.notification__filter-bar a.active,.notification__filter-bar button.active{color:#000}.account__section-headline a.active:after,.account__section-headline a.active:before,.account__section-headline button.active:after,.account__section-headline button.active:before,.notification__filter-bar a.active:after,.notification__filter-bar a.active:before,.notification__filter-bar button.active:after,.notification__filter-bar button.active:before{display:block;content:"";position:absolute;bottom:0;left:50%;width:0;height:0;transform:translateX(-50%);border-color:transparent transparent #c0cdd9;border-style:solid;border-width:0 10px 10px}.account__section-headline a.active:after,.account__section-headline button.active:after,.notification__filter-bar a.active:after,.notification__filter-bar button.active:after{bottom:-1px;border-color:transparent transparent #d9e1e8}.account__section-headline a,.account__section-headline button{flex:none;padding:18px 15px;font-size:16px;font-weight:600}::-webkit-scrollbar-thumb{border-radius:0}.search-popout-container{width:251px}@media screen and (max-width:650px){.search-popout-container{width:100%}}.search-popout{background:#222;border-radius:4px;border:1px solid #666;padding:8px 10px 17px;margin:4px 0 0;font-size:12px;font-size:1.2rem;line-height:14px;line-height:1.4rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.search-popout h4{color:#fff;font-size:14px;font-size:1.4rem;line-height:16px;line-height:1.6rem;font-weight:700}.search-popout ul{margin:6px 0}.search-popout ul li{margin:0 0 2px}.search-popout ul li em{color:#21cf7a}noscript{text-align:center}noscript img{width:200px;opacity:.5;-webkit-animation:flicker 4s infinite;animation:flicker 4s infinite}noscript div{font-size:14px;margin:30px auto;color:#282c37;max-width:400px}noscript div a{color:#2b5fd9;text-decoration:underline}noscript div a:hover{text-decoration:none}@-webkit-keyframes flicker{0%{opacity:1}30%{opacity:.75}to{opacity:1}}@keyframes flicker{0%{opacity:1}30%{opacity:.75}to{opacity:1}}@media screen and (max-width:630px)and (max-height:400px){.search,.tabs-bar{will-change:margin-top;transition:margin-top .4s .1s}.navigation-bar{will-change:padding-bottom;transition:padding-bottom .4s .1s}.navigation-bar>a:first-child{will-change:margin-top,margin-left,margin-right,width;transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s}.navigation-bar>.navigation-bar__profile-edit{will-change:margin-top;transition:margin-top .4s .1s}.navigation-bar .navigation-bar__actions>.icon-button.close{will-change:opacity transform;transition:opacity .2s .1s,transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;transition:opacity .2s .3s,transform .4s .1s}.is-composing .search,.is-composing .tabs-bar{margin-top:-50px}.is-composing .navigation-bar{padding-bottom:0}.is-composing .navigation-bar>a:first-child{margin:-100px 10px 0 -50px}.is-composing .navigation-bar .navigation-bar__profile{padding-top:2px}.is-composing .navigation-bar .navigation-bar__profile-edit{position:absolute;margin-top:-60px}.is-composing .navigation-bar .navigation-bar__actions .icon-button.close{pointer-events:auto;opacity:1;transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;transform:scaleX(0) translate(100%)}}.embed-modal{max-width:80vw;max-height:80vh}.embed-modal h4{padding:30px;font-weight:500;font-size:16px;text-align:center}.embed-modal .embed-modal__container{padding:10px}.embed-modal .embed-modal__container .hint{margin-bottom:15px}.embed-modal .embed-modal__container .embed-modal__html{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:gabsocial-font-monospace,monospace;background:#d9e1e8;color:#000;font-size:14px;margin:0 0 15px}.embed-modal .embed-modal__container .embed-modal__html::-moz-focus-inner{border:0}.embed-modal .embed-modal__container .embed-modal__html::-moz-focus-inner,.embed-modal .embed-modal__container .embed-modal__html:active,.embed-modal .embed-modal__container .embed-modal__html:focus{outline:0!important}.embed-modal .embed-modal__container .embed-modal__html:focus{background:#ccd7e0}@media screen and (max-width:600px){.embed-modal .embed-modal__container .embed-modal__html{font-size:16px}}.embed-modal .embed-modal__container .embed-modal__iframe{width:400px;max-width:100%;overflow:hidden;border:0}.account__moved-note{padding:14px 10px 16px;background:#ccd7e0;border-top:1px solid #c0cdd9;border-bottom:1px solid #c0cdd9}.account__moved-note__message{position:relative;margin-left:58px;color:#444b5d;padding:0 0 4px;font-size:14px}.account__moved-note__message>span{display:block;overflow:hidden;text-overflow:ellipsis}.account__moved-note__icon-wrapper{left:-26px;position:absolute}.account__moved-note .detailed-status__display-avatar{position:relative}.account__moved-note .detailed-status__display-name{margin-bottom:0}.column-inline-form{padding:7px 5px 7px 15px;display:flex;justify-content:flex-start;align-items:center;background:#ccd7e0}.column-inline-form label{flex:1 1 auto}.column-inline-form label input{width:100%;margin-bottom:6px}.column-inline-form label input:focus{outline:0}.column-inline-form .icon-button{flex:0 0 auto;margin:0 5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:hsla(0,0%,100%,.5)}.list-editor{flex-direction:column;width:100%;overflow:hidden;height:100%;overflow-y:scroll}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#b0c0cf;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__inner{border-radius:0 0 8px 8px}.list-editor .drawer__inner.backdrop{width:calc(100% - 60px);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:0 0 0 8px}.list-editor__accounts{background:#b0c0cf;overflow-y:auto;max-height:200px}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{display:flex;flex-direction:row;margin:10px 0}.list-editor .search>label{flex:1 1}.list-editor .search>.search__icon .fa{right:102px!important}.list-editor .search>.button{width:80px;margin-left:10px}.list-adder{flex-direction:column;width:100%;overflow:hidden;height:100%;overflow-y:scroll}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#b0c0cf;border-radius:4px}.list-adder__lists{background:#b0c0cf}.list-adder .list{padding:4px;border-bottom:1px solid #c0cdd9}.list-adder .list__wrapper{display:flex}.list-adder .list__wrapper .account__relationship{padding:8px 5px 0}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.edit-list-form__btn,.new-list-form__btn{margin-left:6px;width:112px}.edit-list-form__input,.new-list-form__input{height:36px}.focal-point-modal{max-width:80vw;max-height:80vh;position:relative}.focal-point{position:relative;cursor:pointer;overflow:hidden}.focal-point.dragging{cursor:move}.focal-point img{max-width:80vw;max-height:80vh;width:auto;height:auto;margin:auto}.focal-point__reticle{position:absolute;width:100px;height:100px;transform:translate(-50%,-50%);background:url(/legacy/images/reticle-6490ecbb61185e86e62dca0845cf2dcf.png) no-repeat 0 0;border-radius:50%;box-shadow:0 0 0 9999em rgba(0,0,0,.35)}.focal-point__overlay{position:absolute;width:100%;height:100%;top:0;left:0}.account__header__content{color:#282c37;font-size:14px;font-weight:400;overflow:hidden;word-break:normal;word-wrap:break-word}.account__header__content p{margin-bottom:20px}.account__header__content p:last-child{margin-bottom:0}.account__header__content a{color:inherit;text-decoration:underline}.account__header__content a:hover{text-decoration:none}.trends__header{color:#444b5d;background:#d3dce4;border-bottom:1px solid #e6ebf0;font-weight:500;padding:15px;font-size:16px;cursor:default}.trends__header .fa{display:inline-block;margin-right:5px}.trends__item{display:flex;align-items:center;padding:15px;border-bottom:1px solid #c0cdd9}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#444b5d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name span{text-decoration:none}.trends__item__name strong{color:#000;font-weight:600;text-decoration:none}.trends__item__name a{color:#282c37;text-decoration:none;font-size:16px;font-weight:500;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name a:active span,.trends__item__name a:focus span,.trends__item__name a:hover span{text-decoration:underline}.trends__item__current{flex:0 0 auto;width:100px;font-size:24px;line-height:36px;font-weight:500;text-align:center;color:#282c37}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#2353c3!important}.layout-toggle{display:flex;padding:5px}.layout-toggle button{box-sizing:border-box;flex:0 0 50%;background:0 0;padding:5px;border:0;position:relative}.layout-toggle button:active svg path:first-child,.layout-toggle button:focus svg path:first-child,.layout-toggle button:hover svg path:first-child{fill:#a6b9c9}.layout-toggle svg{width:100%;height:auto}.layout-toggle svg path:first-child{fill:#b3c3d1}.layout-toggle svg path:last-child{fill:#fff}.layout-toggle__active{color:#2b5fd9;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background:#b3c3d1;border-radius:50%;padding:.35rem}.wtf-panel{display:flex;width:100%;border-radius:10px;flex-direction:column;height:auto;box-sizing:border-box;background:#222}body.theme-gabsocial-light .wtf-panel{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.wtf-panel:not(:last-of-type){margin-bottom:10px}.wtf-panel .wtf-panel-header{display:flex;align-items:baseline;margin-bottom:10px;padding:15px 15px 0}.wtf-panel .wtf-panel-header__icon{margin-right:10px}.wtf-panel .wtf-panel-header__label{flex:1 1;color:#000;font-size:16px;font-weight:700;line-height:19px}.wtf-panel__content{width:100%;padding-top:8px}.wtf-panel__list{padding:0 5px}.wtf-panel__subtitle{display:block;padding:0 15px;color:#282c37}.wtf-panel__form{display:block;padding:15px}.wtf-panel__form.button{width:100%}.wtf-panel .wtf-panel-list-item{display:block;padding-bottom:10px}.wtf-panel .wtf-panel-list-item:not(:first-of-type){margin-top:12px}.wtf-panel .wtf-panel-list-item:not(:last-of-type){border-bottom:1px solid #c0cdd9}.wtf-panel .wtf-panel-list-item__content{display:flex;flex-direction:row;min-height:46px;margin-left:58px}.wtf-panel .wtf-panel-list-item__account-block{display:flex;position:relative;align-items:baseline;padding-right:10px}.wtf-panel .wtf-panel-list-item__account-block__avatar{height:46px;width:46px;background-color:red;left:-58px;position:absolute}.wtf-panel .wtf-panel-list-item__account-block__name{display:flex;flex-wrap:wrap;flex-direction:column;margin-top:6px}.wtf-panel .wtf-panel-list-item__account-block__name__name{color:#000;font-size:14px;font-weight:700;line-height:16px;margin-bottom:2px;max-height:32px;overflow:hidden}.wtf-panel .wtf-panel-list-item__account-block__name__username{color:#282c37;font-size:12px;line-height:14px}.wtf-panel .wtf-panel-list-item__follow-block{margin-left:auto;padding-top:6px}.wtf-panel .wtf-panel-list-item__follow-block__button{display:flex}.wtf-panel .wtf-panel-list-item__follow-block__icon{color:#000}.verified-icon{display:inline-block;margin:0 4px 0 1px;vertical-align:top;position:relative;width:15px;height:15px}.verified-icon:before{display:block;content:"";position:absolute;background-color:#00a3ed;top:0;right:0;left:0;bottom:0;border-radius:50%}.verified-icon:after{display:block;position:absolute;content:"";font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;color:#fff;font-size:.6em;line-height:15px;width:15px;height:15px;text-align:center}.compose-modal{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px;flex-direction:column;width:600px;margin:10px 0}.compose-modal__header{display:block;position:relative;border-bottom:1px solid #1f1f1f;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.compose-modal__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#f2f3f6;text-align:center}.compose-modal__close{position:absolute;right:10px;top:10px}.compose-modal__content{display:flex;flex-direction:row;flex:1;padding:10px;overflow-y:hidden}.compose-modal__content--scroll{display:block;overflow-y:scroll}.compose-modal__content .timeline-compose-block{background:0 0!important;width:100%;padding:10px 5px;margin-bottom:0}.compose-modal__content .timeline-compose-block .compose-form{max-height:100%;display:flex;flex-direction:column;padding:0!important}.compose-modal__content .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper .autosuggest-textarea__textarea{max-height:160px!important}.compose-modal__content .timeline-compose-block .compose-form .compose-form__autosuggest-wrapper:before{content:none!important}@media screen and (max-width:895px){.compose-modal{margin:0;border-radius:0;height:100vh;width:100vw}}.account-timeline__header{display:block;width:100%}.profile-info-panel{display:flex;position:relative}.profile-info-panel__content{display:flex;flex-direction:column;flex:1 1}@media(min-width:895px){.profile-info-panel__content{padding-top:60px}}.profile-info-panel .profile-info-panel-content{display:flex}.profile-info-panel .profile-info-panel-content__badges{display:flex;margin:5px 0;flex-direction:row;flex-wrap:wrap}.profile-info-panel .profile-info-panel-content__badges__join-date{display:block;margin-top:5px}.profile-info-panel .profile-info-panel-content__badges__join-date .fa{margin-right:8px}.profile-info-panel .profile-info-panel-content__badges__join-date span{color:#000;font-size:15px;line-height:1.25}body.theme-gabsocial-light .profile-info-panel .profile-info-panel-content__badges__join-date span{color:#6c6c6c}.profile-info-panel .profile-info-panel-content__name{display:block}.profile-info-panel .profile-info-panel-content__name .account-role{vertical-align:top}.profile-info-panel .profile-info-panel-content__name .emojione{width:22px;height:22px}.profile-info-panel .profile-info-panel-content__name .emojione[alt=":verified:"]{display:none}.profile-info-panel .profile-info-panel-content__name h1 span:first-of-type{font-size:20px!important;line-height:1.25;color:#fff;font-weight:600!important;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}body.theme-gabsocial-light .profile-info-panel .profile-info-panel-content__name h1 span:first-of-type{color:#6c6c6c}.profile-info-panel .profile-info-panel-content__name h1 small{display:block;font-size:16px;line-height:1.5;color:#282c37;font-weight:400;overflow:hidden;text-overflow:ellipsis}.profile-info-panel .profile-info-panel-content__bio{display:block;flex:1 1;color:#000;margin:15px 0;font-size:15px;line-height:1.25}.profile-info-panel .profile-info-panel-content__bio a{color:#214fba}.profile-info-panel .profile-info-panel-content__fields{display:flex;flex-direction:column;border-top:1px solid #b3c3d1;padding:10px 0;margin:5px 0}@media screen and (max-width:895px){.profile-info-panel .profile-info-panel-content__fields{border-bottom:1px solid #b3c3d1}}.profile-info-panel .profile-info-panel-content__fields a{color:#214fba}.profile-info-panel .profile-info-panel-content__fields dl:first-child .verified{border-radius:0 4px 0 0}.profile-info-panel .profile-info-panel-content__fields .verified a{color:#3c754d}.profile-info-panel .profile-info-panel-content__fields__item{display:flex;padding:2px 0;margin:2px 0;flex:1 1}.profile-info-panel .profile-info-panel-content__fields__item *{font-size:15px;line-height:24px}.profile-info-panel .profile-info-panel-content__fields__item dt{min-width:26px}.profile-info-panel .profile-info-panel-content__fields__item dd{padding-left:4px}.unauthorized-modal{width:440px!important}.unauthorized-modal__content{display:flex;width:100%;height:150px;justify-content:center;align-items:center;flex-direction:column}.unauthorized-modal .unauthorized-modal-content__text{display:block;margin-bottom:18px;color:#fff;font-size:14px}.unauthorized-modal .unauthorized-modal-content__button{width:200px}.unauthorized-modal__footer{display:flex;border-top:1px solid #666;padding:10px;justify-content:center;align-items:center}.unauthorized-modal__footer>span{font-size:14px;color:#282c37}.unauthorized-modal__footer>span a{color:#21cf7a!important}@media screen and (max-width:895px){.unauthorized-modal{height:270px!important;width:330px!important}}.error-boundary>div{margin:auto}.error-boundary>div span{display:block;text-align:center;color:#282c37}.error-boundary>div a{display:block;margin:15px auto;text-align:center;color:#21cf7a}.search-header{display:block;width:100%}.search-header__text-container{display:none;padding:25px 0;background-color:#c6d2dc}@media(min-width:895px){.search-header__text-container{display:block}}.search-header__title-text{color:#000;font-size:27px;font-weight:700;line-height:32px;overflow:hidden;padding-left:20px;text-overflow:ellipsis;white-space:nowrap;max-width:1200px;margin:0 auto;height:32px}.search-header__type-filters-tabs{display:flex;width:100%;max-width:1200px;margin:0 auto}@media screen and (max-width:895px){.search-header__type-filters-tabs{max-width:580px}}@media(min-width:895px)and (max-width:1190px){.search-header__title-text,.search-header__type-filters-tabs{max-width:900px}}.timeline-queue-header{display:block;width:100%;max-height:46px;position:relative;background-color:#f2f5f7;border-bottom:1px solid #e6ebf0;border-color:#e6ebf0 currentcolor;border-top:1px solid #e6ebf0;transition:max-height .15s ease;overflow:hidden}.timeline-queue-header.hidden{max-height:0}.timeline-queue-header__btn{display:block;width:100%;height:100%;text-align:center;line-height:46px;font-size:14px;cursor:pointer;color:#282c37}.timeline-queue-header__btn span{height:46px}.badge{font-size:12px;text-transform:uppercase;padding:2px 6px;border-radius:2px;margin:0 5px 5px 0}.badge--pro{background-color:#8a2be2;color:#fff}.badge--investor{background-color:gold;color:#000}.badge--donor{background-color:#90ee90;color:#000}.schedule-post-dropdown{display:flex;align-items:center}.schedule-post-dropdown .react-datepicker-popper{z-index:1000}.schedule-post-dropdown .react-datepicker__day--selected,.schedule-post-dropdown li.react-datepicker__time-list-item--selected{background-color:#21cf7a!important}.pro-upgrade-modal__content{overflow-y:scroll!important}.pro-upgrade-modal__text{display:flex;text-align:center;padding:10px 0 15px;flex-direction:column;margin-bottom:10px}.pro-upgrade-modal__list{display:block;margin-bottom:25px;width:100%;background-color:#b9c8d5;text-align:center;padding:20px 0}.pro-upgrade-modal__button{width:100%}.pro-upgrade-modal__button .fa{margin-right:10px}.schedule-post-dropdown-wrapper{margin-left:4px;border-radius:4px;border:1px solid #fff;line-height:22px;padding-left:6px;text-align:left;width:145px;height:26px;font-size:11px;color:#000;background:#fff}@media(max-width:580px){.schedule-post-dropdown-wrapper{width:124px;font-size:10px;padding-left:2px;margin-left:2px}}.sidebar-menu .progress-panel{padding-left:12px;padding-right:12px}.progress-panel{background:0 0!important;background-color:transparent!important;box-shadow:none!important;margin-top:15px}.progress-panel .progress-panel-header{padding:5px;margin-bottom:0}.progress-panel__content{display:block;padding:0 5px;box-sizing:border-box}.progress-panel__text{display:block;margin-bottom:5px;font-size:14px;color:#282c37}.progress-panel__bar-container{border-radius:12px;overflow:hidden;position:relative;background-color:#555;margin-top:15px;margin-bottom:15px}.progress-panel__bar,.progress-panel__bar-container{display:block;width:100%;box-sizing:border-box;height:22px}.progress-panel__bar{background-color:#32a269;border-radius:10px;margin:-1px}.progress-panel__bar__text{display:block;position:absolute;top:0;left:0;right:0;text-align:center;font-size:14px;line-height:22px;font-weight:600;color:#fff}.chat-button{width:36px!important;height:36px!important;padding:0!important;box-sizing:border-box;color:#fff}a.button.standard-small,button.standard-small{height:20px;padding:5px 15px;border:none;border-radius:4px;font-size:11px;font-size:1.1rem;line-height:11px;line-height:1.1rem;font-weight:700;text-transform:uppercase;color:#fff;background:#607cf5}input[type=text].standard,textarea.standard{box-sizing:border-box;padding:7px 10px;border-radius:4px;font-size:16px;font-size:1.6rem;line-height:18px;line-height:1.8rem;color:#21cf7a;border:1px solid #666;background:#222}input[type=text].standard::-webkit-input-placeholder,textarea.standard::-webkit-input-placeholder{color:#666}input[type=text].standard::-moz-placeholder,textarea.standard::-moz-placeholder{color:#666}input[type=text].standard:-ms-input-placeholder,textarea.standard:-ms-input-placeholder{color:#666}input[type=text].standard:-moz-placeholder,textarea.standard:-moz-placeholder{color:#666}body.theme-gabsocial-light input[type=text].standard,body.theme-gabsocial-light textarea.standard{color:#666;border-color:#999;background:#f2f3f6}body.theme-gabsocial-light input[type=text].standard::-webkit-input-placeholder,body.theme-gabsocial-light textarea.standard::-webkit-input-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard::-moz-placeholder,body.theme-gabsocial-light textarea.standard::-moz-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard:-ms-input-placeholder,body.theme-gabsocial-light textarea.standard:-ms-input-placeholder{color:#999}body.theme-gabsocial-light input[type=text].standard:-moz-placeholder,body.theme-gabsocial-light textarea.standard:-moz-placeholder{color:#999}input[type=text].standard:focus,textarea.standard:focus{outline:none}textarea.standard{resize:vertical}.tabs-bar{display:flex;box-sizing:border-box;background:#000;flex:0 0 auto;overflow-y:auto;height:50px;position:-webkit-sticky;position:sticky;top:0;z-index:1000;transition:transform .2s ease;overflow:hidden}@media screen and (max-width:895px){.tabs-bar--collapsed{margin-top:-50px;transform:translateY(-50px)}}.tabs-bar__container{display:flex;box-sizing:border-box;width:100%;max-width:1200px;margin:0 auto;padding:0 15px}@media screen and (max-width:375px){.tabs-bar__container{padding:0 10px}}.tabs-bar__split{display:flex;width:auto}.tabs-bar__split--left{margin-right:auto}.tabs-bar__split--right{margin-left:auto;padding-top:8px}@media screen and (max-width:450px){.tabs-bar__split--right{padding-top:4px}}.tabs-bar__search-container{display:block;width:251px}@media screen and (max-width:1024px){.tabs-bar__search-container{display:none}}.tabs-bar__profile{position:relative;overflow:hidden;margin:0 0 0 20px;height:34px;width:34px}@media screen and (max-width:450px){.tabs-bar__profile{height:42px;width:42px;margin:0}}.tabs-bar__profile .account__avatar{width:34px;height:34px;background-size:34px 34px}@media screen and (max-width:450px){.tabs-bar__profile .account__avatar{width:42px;height:42px;background-size:42px 42px}}@media screen and (max-width:895px){.tabs-bar__profile,.tabs-bar__profile .account__avatar{width:30px;height:30px;background-size:30px 30px}}.tabs-bar__profile .compose__action-bar{display:block;position:absolute;top:0;right:0;left:-5px;bottom:0}.tabs-bar__profile .compose__action-bar i{display:none}@media screen and (max-width:895px){.tabs-bar__profile .compose__action-bar{display:none}}.tabs-bar__sidebar-btn{display:block;position:absolute;top:0;right:0;left:0;bottom:0;width:30px;opacity:0}@media(min-width:895px){.tabs-bar__sidebar-btn{display:none}}.tabs-bar__page-name{display:block;margin-left:18px;line-height:30px;font-weight:600;font-size:18px;color:#fff}@media(min-width:895px){.tabs-bar__page-name{display:none}}.tabs-bar__button-compose{display:block;width:70px;height:34px;margin-left:20px;border-radius:4px;background-image:url(/legacy/images/sprite-main-navigation-adf3dd71f4d17d0c548676ef4da8544c.png);background-color:#21cf7a!important;background-repeat:no-repeat;background-size:161px 152px;background-position:18px 2px}@media screen and (max-width:450px){.tabs-bar__button-compose{display:none}}.tabs-bar__button-compose:hover{background-color:#1db96d!important;background-position:18px -98px;box-shadow:inset 0 0 6px #42e193}.tabs-bar__button-compose span{display:none}.tabs-bar__button{margin-left:12px;height:34px}.tabs-bar .flex{display:flex}.tabs-bar__search-btn{display:none;margin-left:auto}.tabs-bar__search-btn .tabs-bar__link__icon--search{display:block;height:32px;width:32px;background-position:-995px 5px!important}.tabs-bar__search-btn>span{display:none}@media(max-width:895px){.tabs-bar__button-compose,.tabs-bar__search-container{display:none}.tabs-bar__profile{margin:0}.tabs-bar__split{flex-direction:row;align-items:stretch}.tabs-bar__split--left{margin:0;width:80px}.tabs-bar__split--right{padding:8px 0 6px 20px}.tabs-bar__link{display:none!important}.tabs-bar__link--logo{display:flex!important}.tabs-bar.logged-in .tabs-bar__split--left{display:none!important}.tabs-bar.logged-in .tabs-bar__split--right{padding-top:10px;margin-left:0!important;width:100%!important}.tabs-bar.logged-in .tabs-bar__split--right .flex{width:100%}.tabs-bar.logged-in .tabs-bar__search-btn{display:block}}.tabs-bar__link{display:flex;flex:1 1 auto;margin:0 20px 0 0;color:#fff;text-decoration:none}@media screen and (max-width:895px){.tabs-bar__link{width:36px;height:42px;margin:4px 4px 0 0;justify-content:center}.tabs-bar__link.active{border-bottom:2px solid #21cf7a}.tabs-bar__link>span{display:none}}.tabs-bar__link>span{font-size:15px;line-height:50px;margin-left:4px}@media(min-width:1024px){.tabs-bar__link--search{display:none}}@media screen and (max-width:895px){.tabs-bar__link.apps{display:none}}.tabs-bar__link__icon{width:20px;background-repeat:no-repeat;background-image:url(/legacy/images/sprite-main-navigation-links-c3f303b6d9dc7a3ba479c40563a707ae.png);background-size:auto 84px}.tabs-bar__link__icon.chat{font-size:25px;padding-top:7px;width:24px;color:#c8c8c8;background-image:none!important}.tabs-bar__link__icon.chat--sm{font-size:20px!important;width:24px!important;padding-top:14px!important}@media screen and (max-width:895px){.tabs-bar__link__icon{width:32px;background-size:auto 120px}}.tabs-bar__link__icon.home{background-position:0 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.home{background-position:1px 11px}}.tabs-bar__link__icon.notifications{background-position:-140px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.notifications{background-position:-195px 11px}}.tabs-bar__link__icon.groups{background-position:-280px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.groups{background-position:-400px 11px}}.tabs-bar__link__icon.apps{background-position:-825px 18px}.tabs-bar__link__icon.trends{background-position:-850px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.trends{background-position:-1208px 8px}}.tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-697px 18px}@media screen and (max-width:895px){.tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-995px 11px}}.tabs-bar__link.active{color:#21cf7a;font-weight:700}.tabs-bar__link.active .tabs-bar__link__icon.home{background-position:0 -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.home{background-position:1px -89px}}.tabs-bar__link.active .tabs-bar__link__icon.notifications{background-position:-140px -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.notifications{background-position:-195px -89px}}.tabs-bar__link.active .tabs-bar__link__icon.groups{background-position:-280px -52px}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.groups{background-position:-400px -89px}}@media(min-width:895px)and (max-width:1024px){.tabs-bar__link.active .tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-697px -52px}}@media screen and (max-width:895px){.tabs-bar__link.active .tabs-bar__link__icon.tabs-bar__link__icon--search{background-position:-995px -89px}}.tabs-bar__link--logo{display:block;width:50px;height:50px;margin-right:28px;border:none;background-image:url(/legacy/images/gab_logo-27b9e62c4655322034140e1f84e13df1.svg);background-repeat:no-repeat;background-position:0 10px;background-size:50px 30px}@media screen and (max-width:895px){.tabs-bar__link--logo{display:none}}.tabs-bar__link--logo span{display:none!important}.tabs-bar__link--logo:hover{background-color:#000!important;border:none!important}.tabs-bar__link--no-highlight,.tabs-bar__link--no-highlight.active,.tabs-bar__link--no-highlight:active,.tabs-bar__link--no-highlight:focus,.tabs-bar__link--no-highlight:hover{background:0 0!important;border-bottom-color:transparent!important}.dropdown-menu{z-index:9999;position:absolute;background:#222;border-radius:4px;border:1px solid #666;padding:4px 0;font-size:13px;font-size:1.3rem;line-height:26px;line-height:2.6rem;font-weight:400;color:#999;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.dropdown-menu.left{transform-origin:100% 50%}.dropdown-menu.top{transform-origin:50% 100%}.dropdown-menu.bottom{transform-origin:50% 0}.dropdown-menu.right{transform-origin:0 50%}.dropdown-menu__arrow{position:absolute;width:0;height:0;border:0 solid transparent}.dropdown-menu__arrow.left{right:-5px;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#666}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-5px;border-width:5px 5px 0;border-top-color:#666}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#666}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#666}.dropdown-menu ul{overflow:hidden;padding:6px 0}.dropdown-menu__item a{display:block;box-sizing:border-box;overflow:hidden;padding:3px 10px 1px;text-decoration:none;text-overflow:ellipsis;white-space:nowrap;text-transform:capitalize;color:#999}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{outline:0;color:#21cf7a;background:#333!important;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.dropdown-menu__separator{display:block;margin:10px!important;height:1px;background:#333}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown--active .dropdown__content{display:block;line-height:18px;max-width:311px;right:0;text-align:left;z-index:9999}.dropdown--active .dropdown__content>ul{list-style:none;background:#282c37;padding:4px 0;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.4);min-width:140px;position:relative}.dropdown--active .dropdown__content.dropdown__right{right:0}.dropdown--active .dropdown__content.dropdown__left>ul{left:-98px}.dropdown--active .dropdown__content>ul>li>a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#282c37;color:#000;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown--active .dropdown__content>ul>li>a:focus{outline:0}.dropdown--active .dropdown__content>ul>li>a:hover{background:#2b5fd9;color:#282c37}.dropdown__icon{vertical-align:middle}.modal-root{position:relative;transition:opacity .3s linear;will-change:opacity;z-index:9999}.modal-root__overlay{position:fixed;top:0;left:0;right:0;bottom:0;background:hsla(0,0%,100%,.7)}.modal-root__container{position:fixed;top:0;left:0;width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;align-content:space-around;z-index:9999;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.modal-root__modal{pointer-events:auto;display:flex;z-index:9999;max-height:100%;overflow-y:hidden}.video-modal{max-width:100vw;max-height:100vh;position:relative}.media-modal{width:100%;height:100%;position:relative}.media-modal .extended-video-player{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.media-modal .extended-video-player video{max-width:100%;max-height:80%}.media-modal__closer,.media-modal__navigation{position:absolute;top:0;left:0;right:0;bottom:0}.media-modal__navigation{pointer-events:none;transition:opacity .3s linear;will-change:opacity}.media-modal__navigation *{pointer-events:auto}.media-modal__navigation.media-modal__navigation--hidden{opacity:0}.media-modal__navigation.media-modal__navigation--hidden *{pointer-events:none}.media-modal__nav{background:hsla(0,0%,100%,.5);box-sizing:border-box;border:0;color:#000;cursor:pointer;display:flex;align-items:center;font-size:24px;height:20vmax;margin:auto 0;padding:30px 15px;position:absolute;top:0;bottom:0}.media-modal__nav--left{left:0}.media-modal__nav--right{right:0}.media-modal__meta,.media-modal__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.media-modal__meta--shifted{bottom:62px}.media-modal__meta a{text-decoration:none;font-weight:500;color:#282c37}.media-modal__meta a:active,.media-modal__meta a:focus,.media-modal__meta a:hover{text-decoration:underline}.media-modal__page-dot{display:inline-block}.media-modal__button{background-color:#000;height:12px;width:12px;border-radius:6px;margin:10px;padding:0;border:0;font-size:0}.media-modal__button--active{background-color:#2b5fd9}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#282c37;color:#000;border-radius:8px;overflow:hidden;display:flex;flex-direction:column}.error-modal__body{height:80vh;width:80vw;max-width:520px;max-height:420px;position:relative}.error-modal__body>div{position:absolute;top:0;left:0;width:100%;height:100%;box-sizing:border-box;padding:25px;display:none;display:flex;opacity:0;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.error-modal__body,.error-modal__body>div{flex-direction:column;align-items:center;justify-content:center}.error-modal__body{display:flex;text-align:center}.error-modal__footer,.onboarding-modal__paginator{flex:0 0 auto;background:#393f4f;display:flex;padding:25px}.error-modal__footer>div,.onboarding-modal__paginator>div{min-width:33px}.error-modal__footer .error-modal__nav,.error-modal__footer .onboarding-modal__nav,.onboarding-modal__paginator .error-modal__nav,.onboarding-modal__paginator .onboarding-modal__nav{color:#282c37;border:0;font-size:14px;font-weight:500;padding:10px 25px;line-height:inherit;height:auto;margin:-10px;border-radius:4px;background-color:transparent}.error-modal__footer .error-modal__nav:active,.error-modal__footer .error-modal__nav:focus,.error-modal__footer .error-modal__nav:hover,.error-modal__footer .onboarding-modal__nav:active,.error-modal__footer .onboarding-modal__nav:focus,.error-modal__footer .onboarding-modal__nav:hover,.onboarding-modal__paginator .error-modal__nav:active,.onboarding-modal__paginator .error-modal__nav:focus,.onboarding-modal__paginator .error-modal__nav:hover,.onboarding-modal__paginator .onboarding-modal__nav:active,.onboarding-modal__paginator .onboarding-modal__nav:focus,.onboarding-modal__paginator .onboarding-modal__nav:hover{color:#313543;background-color:#4a5266}.error-modal__footer .error-modal__nav.onboarding-modal__done,.error-modal__footer .error-modal__nav.onboarding-modal__done:active,.error-modal__footer .error-modal__nav.onboarding-modal__done:focus,.error-modal__footer .error-modal__nav.onboarding-modal__done:hover,.error-modal__footer .error-modal__nav.onboarding-modal__next,.error-modal__footer .error-modal__nav.onboarding-modal__next:active,.error-modal__footer .error-modal__nav.onboarding-modal__next:focus,.error-modal__footer .error-modal__nav.onboarding-modal__next:hover,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:active,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:focus,.error-modal__footer .onboarding-modal__nav.onboarding-modal__done:hover,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:active,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:focus,.error-modal__footer .onboarding-modal__nav.onboarding-modal__next:hover,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:active,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:focus,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__done:hover,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:active,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:focus,.onboarding-modal__paginator .error-modal__nav.onboarding-modal__next:hover,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:active,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:focus,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__done:hover,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:active,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:focus,.onboarding-modal__paginator .onboarding-modal__nav.onboarding-modal__next:hover{color:#000}.error-modal__footer{justify-content:center}.display-case{text-align:center;font-size:15px;margin-bottom:15px}.display-case__label{font-weight:500;color:#000;margin-bottom:5px;text-transform:uppercase;font-size:12px}.display-case__case{background:#d9e1e8;color:#282c37;font-weight:500;padding:10px;border-radius:4px}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.mute-modal,.report-modal{position:relative;flex-direction:column;overflow:hidden;width:480px;max-width:90vw;border-radius:4px;border:1px solid #666;color:#999;background:#222}body.theme-gabsocial-light .actions-modal,body.theme-gabsocial-light .boost-modal,body.theme-gabsocial-light .confirmation-modal,body.theme-gabsocial-light .mute-modal,body.theme-gabsocial-light .report-modal{color:#6c6c6c}.actions-modal .status__display-name,.boost-modal .status__display-name,.confirmation-modal .status__display-name,.mute-modal .status__display-name,.report-modal .status__display-name{display:block;max-width:100%;padding-right:25px}.actions-modal .status__avatar,.boost-modal .status__avatar,.confirmation-modal .status__avatar,.mute-modal .status__avatar,.report-modal .status__avatar{height:28px;left:10px;position:absolute;top:10px;width:48px}.actions-modal .status__content__spoiler-link,.boost-modal .status__content__spoiler-link,.confirmation-modal .status__content__spoiler-link,.mute-modal .status__content__spoiler-link,.report-modal .status__content__spoiler-link{color:#17191f}.actions-modal .status{background:#fff;border-bottom-color:#282c37;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator{display:block;margin:10px;height:1px;background:#333}.boost-modal__container{overflow-x:scroll;padding:10px}.boost-modal__container .status{-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text;border-bottom:0}.boost-modal__action-bar,.confirmation-modal__action-bar,.mute-modal__action-bar{display:flex;justify-content:space-between;background:#282c37;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div,.mute-modal__action-bar>div{flex:1 1 auto;text-align:right;color:#282c37;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button,.mute-modal__action-bar .button{flex:0 0 auto}.boost-modal__status-header{font-size:15px}.boost-modal__status-time{float:right;font-size:14px}.mute-modal{line-height:24px}.mute-modal .react-toggle{vertical-align:middle}.report-modal{width:90vw;max-width:700px}.report-modal__container{display:flex;border-top:1px solid #282c37}@media screen and (max-width:480px){.report-modal__container{flex-wrap:wrap;overflow-y:auto}}.report-modal__comment,.report-modal__statuses{box-sizing:border-box;width:50%}@media screen and (max-width:480px){.report-modal__comment,.report-modal__statuses{width:100%}}.report-modal__statuses{flex:1 1 auto;min-height:20vh;max-height:80vh;overflow-y:auto;overflow-x:hidden}.report-modal__statuses .status__content a{color:#2b5fd9}.report-modal__statuses .status__content,.report-modal__statuses .status__content p{color:#999}body.theme-gabsocial-light .report-modal__statuses .status__content,body.theme-gabsocial-light .report-modal__statuses .status__content p{color:#6c6c6c}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #282c37;max-width:320px}.report-modal__comment p{font-size:14px;line-height:20px;margin-bottom:20px}.report-modal__comment .setting-text{display:block;box-sizing:border-box;width:100%;color:#000;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;outline:0;border-radius:4px;border:1px solid #282c37;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #393f4f}.report-modal__comment .setting-toggle{margin-top:20px;margin-bottom:24px}.report-modal__comment .setting-toggle__label{color:#000;font-size:14px}@media screen and (max-width:480px){.report-modal__comment{padding:10px;max-width:100%;order:2}.report-modal__comment .setting-toggle{margin-bottom:4px}}.actions-modal{width:calc(100% - 72px);margin:35px}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;flex-shrink:0;max-height:calc(100vh - 147px)}.actions-modal ul.with-status{max-height:calc(80vh - 75px)}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty):first-of-type{margin:10px 0 0}.actions-modal ul li:not(:empty):last-of-type{margin:0 0 10px}.actions-modal ul li:not(:empty) a{display:flex;align-items:center;padding:13px 10px 12px;@inclide font-size(14);color:#999;text-decoration:none}.actions-modal ul li:not(:empty) a,.actions-modal ul li:not(:empty) a button{transition:none}.actions-modal ul li:not(:empty) a.active,.actions-modal ul li:not(:empty) a.active button,.actions-modal ul li:not(:empty) a:active,.actions-modal ul li:not(:empty) a:active button,.actions-modal ul li:not(:empty) a:focus,.actions-modal ul li:not(:empty) a:focus button,.actions-modal ul li:not(:empty) a:hover,.actions-modal ul li:not(:empty) a:hover button{background:#333;color:#21cf7a;box-shadow:0 0 6px 0 rgba(0,0,0,.5)}.actions-modal ul li:not(:empty) a button:first-child{margin-right:10px}.confirmation-modal__action-bar .confirmation-modal__cancel-button,.confirmation-modal__action-bar .confirmation-modal__secondary-button,.confirmation-modal__action-bar .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__secondary-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#282c37;font-size:14px;font-weight:500}.confirmation-modal__action-bar .confirmation-modal__cancel-button:active,.confirmation-modal__action-bar .confirmation-modal__cancel-button:focus,.confirmation-modal__action-bar .confirmation-modal__cancel-button:hover,.confirmation-modal__action-bar .confirmation-modal__secondary-button:active,.confirmation-modal__action-bar .confirmation-modal__secondary-button:focus,.confirmation-modal__action-bar .confirmation-modal__secondary-button:hover,.confirmation-modal__action-bar .mute-modal__cancel-button:active,.confirmation-modal__action-bar .mute-modal__cancel-button:focus,.confirmation-modal__action-bar .mute-modal__cancel-button:hover,.mute-modal__action-bar .confirmation-modal__cancel-button:active,.mute-modal__action-bar .confirmation-modal__cancel-button:focus,.mute-modal__action-bar .confirmation-modal__cancel-button:hover,.mute-modal__action-bar .confirmation-modal__secondary-button:active,.mute-modal__action-bar .confirmation-modal__secondary-button:focus,.mute-modal__action-bar .confirmation-modal__secondary-button:hover,.mute-modal__action-bar .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#313543}.confirmation-modal__action-bar .confirmation-modal__secondary-button,.mute-modal__action-bar .confirmation-modal__secondary-button{flex-shrink:1}.confirmation-modal__container,.mute-modal__container,.report-modal__target{padding:30px;font-size:16px;text-align:center}.confirmation-modal__container strong,.mute-modal__container strong,.report-modal__target strong{font-weight:500}.confirmation-modal__container strong:lang(ja),.confirmation-modal__container strong:lang(ko),.confirmation-modal__container strong:lang(zh-cn),.confirmation-modal__container strong:lang(zh-hk),.confirmation-modal__container strong:lang(zh-tw),.mute-modal__container strong:lang(ja),.mute-modal__container strong:lang(ko),.mute-modal__container strong:lang(zh-cn),.mute-modal__container strong:lang(zh-hk),.mute-modal__container strong:lang(zh-tw),.report-modal__target strong:lang(ja),.report-modal__target strong:lang(ko),.report-modal__target strong:lang(zh-cn),.report-modal__target strong:lang(zh-hk),.report-modal__target strong:lang(zh-tw){font-weight:700}.report-modal__target{padding:20px}.report-modal__target .media-modal__close{top:19px;right:15px}.modal-layout{background:#d9e1e8 url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMzQuODAwNzggMzEuNzU3ODEzIiB3aWR0aD0iMjM0LjgwMDc4IiBoZWlnaHQ9IjMxLjc1NzgxMiI+PHBhdGggZD0iTTE5LjU5OTYwOSAwYy0xLjA1IDAtMi4xMDAzOS4zNzUtMi45MDAzOSAxLjEyNUwwIDE2LjkyNTc4MXYxNC44MzIwMzFoMjM0LjgwMDc4VjE3LjAyNTM5MWwtMTYuNS0xNS45MDAzOTFjLTEuNi0xLjUtNC4yMDA3OC0xLjUtNS44MDA3OCAwbC0xMy44MDA3OCAxMy4wOTk2MDljLTEuNiAxLjUtNC4xOTg4MyAxLjUtNS43OTg4MyAwTDE3OS4wOTk2MSAxLjEyNWMtMS42LTEuNS00LjE5ODgzLTEuNS01Ljc5ODgzIDBMMTU5LjUgMTQuMjI0NjA5Yy0xLjYgMS41LTQuMjAwNzggMS41LTUuODAwNzggMEwxMzkuOTAwMzkgMS4xMjVjLTEuNi0xLjUtNC4yMDA3OC0xLjUtNS44MDA3OCAwbC0xMy43OTg4MyAxMy4wOTk2MDljLTEuNiAxLjUtNC4yMDA3OCAxLjUtNS44MDA3OCAwTDEwMC42OTkyMiAxLjEyNWMtMS42MDAwMDEtMS41LTQuMTk4ODI5LTEuNS01Ljc5ODgyOSAwbC0xMy41OTk2MSAxMy4wOTk2MDljLTEuNiAxLjUtNC4yMDA3ODEgMS41LTUuODAwNzgxIDBMNjEuNjk5MjE5IDEuMTI1Yy0xLjYtMS41LTQuMTk4ODI4LTEuNS01Ljc5ODgyOCAwTDQyLjA5OTYwOSAxNC4yMjQ2MDljLTEuNiAxLjUtNC4xOTg4MjggMS41LTUuNzk4ODI4IDBMMjIuNSAxLjEyNUMyMS43LjM3NSAyMC42NDk2MDkgMCAxOS41OTk2MDkgMHoiIGZpbGw9IiNCMEMwQ0YiLz48L3N2Zz4=) repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}@media screen and (max-width:600px){.account-header{margin-top:0}}.account__header.inactive{opacity:.5}.account__header.inactive .account__avatar,.account__header.inactive .account__header__image{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header__info{position:absolute;top:10px;left:10px}.account__header__image{overflow:hidden;height:350px;position:relative;background:#e6ebf0}@media screen and (max-width:895px){.account__header__image{height:225px}}.account__header__image--none{height:125px}.account__header__image img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;width:100%;height:100%;margin:0}.account__header__bar{display:block;min-height:74px;width:100%;position:relative;background:#ccd7e0}@media(min-width:895px){.account__header__bar{height:74px}}.account__header__avatar{display:block;position:absolute;border:5px solid #ccd7e0;left:0;top:-90px;border-radius:50%;height:200px;width:200px;background-color:#f2f5f7}.account__header__avatar .account__avatar{width:200px;height:200px;background-size:200px 200px}@media screen and (max-width:895px){.account__header__avatar{top:-45px;left:10px;height:90px;width:90px}.account__header__avatar .account__avatar{width:90px;height:90px;background-size:90px 90px}}.account__header__extra{display:flex;flex-direction:row;height:100%;margin:0 auto;padding-left:310px;width:100%;max-width:1200px;box-sizing:border-box;position:relative}@media(min-width:895px)and (max-width:1190px){.account__header__extra{max-width:900px;padding-left:300px}}@media screen and (max-width:895px){.account__header__extra{max-width:900px;padding:10px 10px 0;flex-direction:column-reverse;min-height:50px}}.account__header__extra__buttons{display:flex;align-items:center;margin-left:auto}.account__header__extra__buttons .icon-button{border:1px solid #b3c3d1;border-radius:4px;box-sizing:content-box;padding:2px}.account__header__extra__buttons .button{margin-right:10px}.account__header__extra__links{display:flex;font-size:14px;color:#282c37}@media screen and (max-width:895px){.account__header__extra__links{justify-content:center;flex-wrap:wrap}}.account__header__extra__links a{display:inline-block;text-decoration:none;padding:16px 22px;text-align:center}@media screen and (max-width:1190px){.account__header__extra__links a{padding:16px}}.account__header__extra__links a>span{display:block}.account__header__extra__links a>span:first-of-type{color:#000;font-size:20px;font-weight:800;line-height:24px}@media screen and (max-width:895px){.account__header__extra__links a>span:first-of-type{font-size:16px;line-height:20px}}.account__header__extra__links a>span:last-of-type{color:#282c37;font-size:12px;line-height:14px;padding-top:2px}.account__header__extra__links a.active,.account__header__extra__links a:hover{border-bottom:2px solid #000}.account__header__extra__links a.score{border-bottom:none!important}@media screen and (max-width:895px){.account__header .account-mobile-container{display:block;background:#ccd7e0;margin-top:10px;position:relative;padding:10px 10px 0}.account__header .account-mobile-container--nonuser{padding:10px 10px 15px}}.user-panel{display:flex;width:265px;flex-direction:column;overflow-y:hidden;border-radius:10px;background:#222}body.theme-gabsocial-light .user-panel{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.user-panel__header{display:block;height:112px;width:100%;background:#181818}body.theme-gabsocial-light .user-panel__header{background:#fff}.user-panel__header img{display:block;height:100%;width:100%;margin:0;-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover}.user-panel__profile{display:flex;align-items:flex-start;padding:0 10px;margin-top:-53px}.user-panel__profile .account__avatar{display:block;width:82px;height:82px;border:6px solid #333;background-size:cover}body.theme-gabsocial-light .user-panel__profile .account__avatar{border:6px solid #f2f3f6}.user-panel__meta{display:block;padding:6px 20px 17px}.user-panel__account a{text-decoration:none;color:#000}.user-panel__account__name{display:block;font-size:20px;font-weight:700;line-height:24px;color:#fff}body.theme-gabsocial-light .user-panel__account__name{color:#6c6c6c}.user-panel__account:hover .user-panel__account__name{text-decoration:underline}.user-panel__account__username{display:block;font-size:14px;line-height:16px;color:#999;text-decoration:none!important}.user-panel__stats-block{display:flex;justify-content:space-between;padding-top:12px}.user-panel .user-panel-stats-item{display:flex;align-items:start;justify-content:left;flex-wrap:wrap;flex-direction:column}.user-panel .user-panel-stats-item a{text-decoration:none;color:#000}.user-panel .user-panel-stats-item a:hover{opacity:.8}.user-panel .user-panel-stats-item__value{display:block;width:100%;color:#fff;font-size:20px;font-weight:800;line-height:24px}body.theme-gabsocial-light .user-panel .user-panel-stats-item__value{color:#6c6c6c}.user-panel .user-panel-stats-item__label{display:block;width:100%;color:#999;font-size:12px;line-height:14px}.compose-form{padding:10px}.compose-form__sensitive-button{padding:0 10px 10px;font-size:14px;font-weight:500}.compose-form__sensitive-button.active{color:#2b5fd9}.compose-form__sensitive-button input[type=checkbox]{display:none}.compose-form__sensitive-button .checkbox{display:inline-block;position:relative;border:1px solid #9bcbed;box-sizing:border-box;width:18px;height:18px;flex:0 0 auto;margin-right:10px;top:-1px;border-radius:4px;vertical-align:middle}.compose-form__sensitive-button .checkbox.active{border-color:#2b5fd9;background:#2b5fd9}.compose-form .compose-form__warning{color:#000;margin-bottom:10px;background:#9bcbed;box-shadow:0 2px 6px rgba(0,0,0,.3);padding:8px 10px;border-radius:4px;font-size:13px;font-weight:400}.compose-form .compose-form__warning strong{color:#000;font-weight:500}.compose-form .compose-form__warning strong:lang(ja),.compose-form .compose-form__warning strong:lang(ko),.compose-form .compose-form__warning strong:lang(zh-cn),.compose-form .compose-form__warning strong:lang(zh-hk),.compose-form .compose-form__warning strong:lang(zh-tw){font-weight:700}.compose-form .compose-form__warning a{color:#282c37;font-weight:500;text-decoration:underline}.compose-form .compose-form__warning a:active,.compose-form .compose-form__warning a:focus,.compose-form .compose-form__warning a:hover{text-decoration:none}.compose-form .emoji-picker-dropdown{position:absolute;top:5px;right:5px;z-index:1}.compose-form .autosuggest-input,.compose-form .autosuggest-textarea,.compose-form .compose-form__autosuggest-wrapper,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:36px;margin-bottom:11px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;box-sizing:border-box;width:100%;margin:0;color:#000;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;border:0;outline:0}.compose-form .autosuggest-textarea__textarea:focus,.compose-form .spoiler-input__input:focus{outline:0}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{font-size:16px}}.compose-form .spoiler-input__input{border-radius:4px}.compose-form .autosuggest-textarea__textarea{min-height:100px;border-radius:5px 5px 0 0;padding-bottom:0;padding-right:32px;resize:none;scrollbar-color:auto}.compose-form .autosuggest-textarea__textarea::-webkit-scrollbar{all:unset}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{max-height:100px!important;resize:vertical}}.compose-form.condensed .autosuggest-textarea__textarea{min-height:46px;border-radius:5px}.compose-form .autosuggest-textarea__suggestions-wrapper,.compose-form .emoji-picker-wrapper{position:relative;height:0}.compose-form .autosuggest-textarea__suggestions{box-sizing:border-box;display:none;position:absolute;top:100%;width:100%;z-index:99;box-shadow:4px 4px 6px rgba(0,0,0,.4);background:#282c37;border-radius:0 0 4px 4px;color:#000;font-size:14px;padding:6px}.compose-form .autosuggest-textarea__suggestions.autosuggest-textarea__suggestions--visible{display:block}.compose-form .autosuggest-textarea__suggestions__item{padding:10px;cursor:pointer;border-radius:4px}.compose-form .autosuggest-textarea__suggestions__item.selected,.compose-form .autosuggest-textarea__suggestions__item:active,.compose-form .autosuggest-textarea__suggestions__item:focus,.compose-form .autosuggest-textarea__suggestions__item:hover{background:#3d4455}.compose-form .autosuggest-account,.compose-form .autosuggest-emoji{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;line-height:18px;font-size:14px}.compose-form .autosuggest-account-icon,.compose-form .autosuggest-emoji img{display:block;margin-right:8px;width:16px;height:16px}.compose-form .autosuggest-account .display-name__account{color:#282c37}.compose-form .compose-form__modifiers{color:#000;font-family:inherit;font-size:14px;background:#fff}.compose-form .compose-form__modifiers .compose-form__upload-wrapper{overflow:hidden}.compose-form .compose-form__modifiers .compose-form__uploads-wrapper{display:flex;flex-direction:row;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__uploads-wrapper.contains-media{padding:5px;border-top:1px solid #fff}.compose-form .compose-form__modifiers .compose-form__upload{margin:5px;width:calc(50% - 10px);height:135px}@media(min-width:895px){.compose-form .compose-form__modifiers .compose-form__upload{width:222px;height:180px}}@media(min-width:607px)and (max-width:895px){.compose-form .compose-form__modifiers .compose-form__upload{width:210px;height:210px}}.compose-form .compose-form__modifiers .compose-form__upload__actions{background:linear-gradient(180deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);display:flex;align-items:flex-start;justify-content:space-between;opacity:0;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{flex:0 1 auto;color:#999;font-size:14px;font-weight:500;padding:10px;font-family:inherit}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:active,.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:focus,.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button:hover{color:#21cf7a}.compose-form .compose-form__modifiers .compose-form__upload__actions.active{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description{position:absolute;z-index:2;bottom:0;left:0;right:0;box-sizing:border-box;background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);padding:10px;opacity:0;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload-description textarea{background:rgba(0,0,0,.3);box-sizing:border-box;background:0 0;color:#999;border:1px solid #999;outline:none;padding:10px;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description textarea:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-webkit-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-moz-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea:-ms-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::-ms-input-placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description textarea::placeholder{color:#999}.compose-form .compose-form__modifiers .compose-form__upload-description.active{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-thumbnail{border-radius:4px;background-position:50%;background-size:cover;background-repeat:no-repeat;height:100%;width:100%;overflow:hidden}.compose-form .compose-form__buttons-wrapper{padding:10px;background:#fff;border-radius:0 0 4px 4px;display:flex;justify-content:space-between;flex:0 0 auto}.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:flex;flex-wrap:wrap}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__upload-button-icon{line-height:27px}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button{display:none}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button.compose-form__sensitive-button--visible{display:block}.compose-form .compose-form__buttons-wrapper .compose-form__buttons .compose-form__sensitive-button .compose-form__sensitive-button__icon{line-height:27px}.compose-form .compose-form__buttons-wrapper .icon-button{box-sizing:content-box;padding:0 3px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper{align-self:center;margin-right:4px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter{cursor:default;font-family:gabsocial-font-sans-serif,sans-serif;font-size:14px;font-weight:600;color:#999}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter.character-counter--over{color:#ff5050}.compose-form .compose-form__publish{display:flex;justify-content:flex-end;min-width:0;flex:0 0 auto}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.compose-form__quote-preview{font-size:14px;padding:5px 10px 0;background:#fff;border-bottom:1px solid #fff;color:#555}.compose-form__quote-preview .status__content{font-size:.9em;color:#555;max-height:100px;overflow-y:auto}.group-column-header{overflow:hidden;border-radius:10px;background:#222}body.theme-gabsocial-light .group-column-header{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-column-header .group-column-header__title{padding:15px;font-size:20px;font-weight:700}.group-column-header .group-column-header__cta{float:right;padding:15px;font-size:17px}.group-column-header .group-column-header__cta a{color:#fff}.group-card-list{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;width:100%;margin-top:20px}.group-card{display:block;flex:0 0 calc(50% - 10px);border-radius:10px;background:#222;margin-bottom:20px;text-decoration:none;overflow:hidden}body.theme-gabsocial-light .group-card{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-card .group-card__header{overflow:hidden}.group-card .group-card__header img{pointer-events:none;width:100%;background:#222}body.theme-gabsocial-light .group-card .group-card__header img{background:#fff}.group-card .group-card__content{padding:15px}.group-card .group-card__content .group-card__title{color:#000;font-size:16px;font-weight:700}.group-card .group-card__content .group-card__meta{color:#999;font-size:14px;margin-top:5px;margin-bottom:10px}.group-card .group-card__content .group-card__description{color:#000;font-size:14px}.group-card:hover .group-card__title{text-decoration:underline}.group .group__header-container{width:100%;display:flex;justify-content:center;flex-direction:row}.group .group__header{width:100%;max-width:1150px;background:#222;border-radius:10px;overflow:hidden;margin:20px 0}body.theme-gabsocial-light .group .group__header{background:#fff}.group .group__header .group__cover img{width:100%}.group .group__header .group__tabs .group__tabs__tab{display:inline-block;text-decoration:none;padding:16px 22px;text-align:center;color:#000}.group .group__header .group__tabs .group__tabs__tab--active,.group .group__header .group__tabs .group__tabs__tab:hover{border-bottom:2px solid #000}.group .group__header .group__tabs:after{content:"";clear:both;display:table}.group .group__header .group__tabs button{float:right;margin:7px}.group .group__header .group__tabs div{float:right;margin:4px}.group .group__panel{padding:10px 10px 20px}.group .group__panel h1{font-size:22px;font-weight:700;margin-bottom:10px}.group .group__panel .group__panel__description{font-size:14px}.group .group__panel .group__panel__label{display:inline-block;margin-bottom:10px;border-radius:4px;background:#222;font-size:13px;padding:4px 8px}body.theme-gabsocial-light .group .group__panel .group__panel__label{background:#fff}.group .group__feed{background:#222;border-top-left-radius:10px;border-top-right-radius:10px;overflow:hidden}body.theme-gabsocial-light .group .group__feed{background:#fff}.group-account-wrapper{position:relative}.group-account-wrapper>div>.icon-button{position:absolute;right:5px;top:50%;transform:translateY(-50%)}.group-form{padding:20px;border-radius:10px;background:#222}body.theme-gabsocial-light .group-form{box-shadow:0 0 6px 0 rgba(0,0,0,.1);background:#fff}.group-form,.group-form div{box-sizing:border-box;float:left;width:100%}.group-form input[type=text].standard,.group-form textarea.standard{width:100%;margin:0 0 10px}.group-form textarea{float:left;height:88px}.group-form .group-form__file-label{cursor:pointer;display:block;box-sizing:border-box;float:left;height:20px;padding:3px 0 0 33px;font-size:12px;font-size:1.2rem;font-weight:300;color:#999;background-repeat:no-repeat;background-image:url(/legacy/images/sprite-post-functions-ae530086a5c56d4fa6efd5603a2df828.png);background-size:100px 1200px}.group-form .group-form__file-label.group-form__file-label--selected,.group-form .group-form__file-label:hover{color:#21cf7a;background-position:0 -100px}.group-form .group-form__file{width:1px;height:1px;overflow:hidden;opacity:0;position:absolute;pointer-events:none}.group-form button{float:right}.group-sidebar-panel__items{padding:0 15px 15px}.group-sidebar-panel__items__show-all{color:#000}.group-sidebar-panel__item{display:block;color:#000;text-decoration:none;margin-bottom:15px}.group-sidebar-panel__item:last-child{margin-bottom:0}.group-sidebar-panel__item__title{font-weight:700}.group-sidebar-panel__item__meta{font-size:.8em;color:#999}.group-sidebar-panel__item__meta__unread{color:#21cf7a}.sidebar-menu{display:flex;position:fixed;flex-direction:column;width:275px;height:100vh;top:0;bottom:0;left:0;background:#222;transform:translateX(-275px);transition:all .15s linear;z-index:10001}body.theme-gabsocial-light .sidebar-menu{background:#fff}.sidebar-menu__root{display:none}.sidebar-menu__wrapper{display:block;position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000;background-color:transparent;transition:background-color .2s linear;transition-delay:.1s}.sidebar-menu__content{display:flex;flex:1 1;flex-direction:column;padding-bottom:40px;overflow:hidden;overflow-y:scroll;-webkit-overflow-scrolling:touch}.sidebar-menu__section{display:block;margin:4px 0;border-top:1px solid #ccd7e0}.sidebar-menu__section--borderless{margin:0;border-top:none}@media(max-width:400px){.sidebar-menu{width:90vw}}.sidebar-menu__root--visible{display:block}.sidebar-menu__root--visible .sidebar-menu{transform:translateX(0)}.sidebar-menu__root--visible .sidebar-menu__wrapper{background-color:rgba(0,0,0,.3)}.sidebar-menu-header{display:flex;height:46px;padding:12px 14px;border-bottom:1px solid #ccd7e0;box-sizing:border-box;align-items:center}.sidebar-menu-header__title{display:block;font-size:18px;font-weight:600;color:#000}.sidebar-menu-header__btn{margin-left:auto}.sidebar-menu-profile{display:block;padding:14px 18px}.sidebar-menu-profile__avatar{display:block;width:56px;height:56px}.sidebar-menu-profile__name{display:block;margin-top:10px}.sidebar-menu-profile__name .display-name__account{display:block;margin-top:2px}.sidebar-menu-profile__stats{display:flex;margin-top:12px}.sidebar-menu-profile-stat{display:flex;font-size:14px;text-decoration:none}.sidebar-menu-profile-stat:not(:first-of-type){margin-left:18px}.sidebar-menu-profile-stat__value{display:flex;margin-right:3px;font-weight:700;color:#000}.sidebar-menu-profile-stat__label{display:flex;color:#000}.sidebar-menu-profile-stat:hover{text-decoration:underline}.sidebar-menu-item{display:flex;padding:16px 18px;cursor:pointer;text-decoration:none;color:#000;font-size:15px;font-weight:400;height:50px;box-sizing:border-box}.sidebar-menu-item:hover{background-color:rgba(33,207,122,.1)}.sidebar-menu-item:hover .fa{color:#000}.sidebar-menu-item .fa{margin-right:10px}.sidebar-menu-item:hover__title{color:#000}@media screen and (max-width:960px){.status-revisions-root{width:100%}}.status-revisions{padding:8px 0 0;overflow:hidden;background-color:#333;border-radius:6px}@media screen and (max-width:960px){.status-revisions{height:90vh}}.status-revisions__header{display:block;position:relative;border-bottom:1px solid #1f1f1f;border-radius:6px 6px 0 0;padding-top:12px;padding-bottom:12px}.status-revisions__header__title{display:block;width:80%;margin:0 auto;font-size:18px;font-weight:700;line-height:24px;color:#000;text-align:center}.status-revisions__close{position:absolute;right:10px;top:10px}.status-revisions__content{display:flex;flex-direction:row;width:500px;flex-direction:column;overflow:hidden;overflow-y:scroll;height:calc(100% - 80px);-webkit-overflow-scrolling:touch;widows:90%}@media screen and (max-width:960px){.status-revisions{width:100%}}.status-revisions-list{width:100%}.status-revisions-list__error{padding:15px;text-align:center;font-weight:700}.status-revisions-list__item{padding:15px;border-bottom:1px solid #1f1f1f}.status-revisions-list__item__timestamp{opacity:.5;font-size:13px}.status-revisions-list__item__text{font-size:15px}.footer-bar{display:block;position:fixed;background:#000;height:58px;bottom:0;left:0;right:0;z-index:1000;transition:transform .2s ease;overflow:hidden;padding-bottom:env(safe-area-inset-bottom)}@media screen and (min-width:895px){.footer-bar{display:none!important}}.footer-bar__container{display:flex;flex-direction:row;align-items:stretch}.footer-bar__link{display:flex;flex:1 1 auto;margin:0;min-width:36px;height:58px;padding-top:4px;justify-content:center;color:#fff;text-decoration:none;border-top:2px solid transparent}.footer-bar__link.active{border-top-color:#21cf7a}.footer-bar__link>span{display:none}.poll{margin-top:16px;font-size:14px}.poll li{margin-bottom:10px;position:relative;height:30px}.poll__chart{position:absolute;top:0;left:0;height:100%;display:inline-block;border-radius:4px;background:hsla(0,0%,40%,.3)}.poll__chart.leading{background:hsla(0,0%,40%,.6)}.poll__text{position:relative;display:inline-block;padding:6px 0;line-height:18px;cursor:default;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:#fff}body.theme-gabsocial-light .poll__text{color:#6c6c6c}.poll__text input[type=checkbox],.poll__text input[type=radio]{display:none}.poll__text .autossugest-input{flex:1 1 auto}.poll__text input[type=text]{box-sizing:border-box;width:100%;font-size:14px;color:#000;display:block;outline:0;font-family:inherit;background:#fff;border:1px solid #fff;border-radius:4px;padding:6px 10px}.poll__text input[type=text]:focus{border-color:#2b5fd9}.poll__text.selectable{cursor:pointer}.poll__text.editable{display:flex;align-items:center;overflow:visible}.poll__input{display:inline-block;position:relative;border:1px solid #9bcbed;box-sizing:border-box;width:18px;height:18px;flex:0 0 auto;margin-right:10px;top:-1px;border-radius:50%;vertical-align:middle}.poll__input.checkbox{border-radius:4px}.poll__input.active{border-color:#3c754d;background:#3c754d}.poll__number{display:inline-block;width:36px;font-weight:700;padding:0 10px;text-align:right}.poll__footer{padding-top:6px;padding-bottom:5px;color:#444b5d}.poll__link{display:inline;background:0 0;padding:0;margin:0;border:0;color:#444b5d;text-decoration:underline;font-size:inherit}.poll__link:hover{text-decoration:none}.poll__link:active,.poll__link:focus{background-color:rgba(68,75,93,.1)}.poll .button{height:36px;padding:0 16px;margin-right:10px;font-size:14px}.compose-form__poll-wrapper{border-top:1px solid #fff}.compose-form__poll-wrapper ul{padding:10px}.compose-form__poll-wrapper .poll__footer{border-top:1px solid #fff;padding:10px;display:flex;align-items:center}.compose-form__poll-wrapper .poll__footer button,.compose-form__poll-wrapper .poll__footer select{flex:1 1 50%}.compose-form__poll-wrapper .button.button-secondary{font-size:14px;font-weight:400;padding:6px 10px;height:auto;line-height:inherit;color:#606984;border-color:#606984;margin-right:5px}.compose-form__poll-wrapper li{display:flex;align-items:center}.compose-form__poll-wrapper li .poll__text{flex:0 0 auto;width:calc(100% - 29px);margin-right:6px}.compose-form__poll-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;box-sizing:border-box;font-size:14px;color:#000;display:inline-block;width:auto;outline:0;font-family:inherit;background:#fff url("data:image/svg+xml;utf8,") no-repeat right 8px center/auto 16px;border:1px solid #fff;border-radius:4px;padding:6px 30px 6px 10px}.compose-form__poll-wrapper .icon-button.disabled{color:#fff}.muted .poll{color:#444b5d}.muted .poll__chart{background:rgba(216,234,248,.2)}.muted .poll__chart.leading{background:rgba(43,95,217,.2)}.introduction{display:flex!important;flex-direction:column!important;justify-content:center!important;align-items:center!important}@media screen and (max-width:920px){.introduction{background:#f2f5f7;display:block!important}}.introduction__pager{background:#f2f5f7;box-shadow:0 0 15px rgba(0,0,0,.2);overflow:hidden}.introduction__frame,.introduction__pager{border-radius:10px;width:50vw;min-width:920px}@media screen and (max-width:920px){.introduction__frame,.introduction__pager{min-width:0;width:100%;border-radius:0;box-shadow:none}}.introduction__frame-wrapper{opacity:0;transition:opacity .5s linear}.introduction__frame-wrapper.active{opacity:1;transition:opacity 50ms linear}.introduction__frame{overflow:hidden}.introduction__illustration{height:50vh}@media screen and (max-width:630px){.introduction__illustration{height:auto}}.introduction__illustration img{-o-object-fit:cover;font-family:"object-fit:cover";object-fit:cover;display:block;margin:0;width:100%;height:100%}.introduction__text--columnized{display:flex}.introduction__text--columnized>div{flex:1 1 33.33%;text-align:center;padding:25px 25px 30px}@media screen and (max-width:630px){.introduction__text--columnized{display:block;padding:15px 0 20px}.introduction__text--columnized>div{padding:10px 25px}}.introduction__text h3{font-size:24px;line-height:1.5;font-weight:700;margin-bottom:10px}.introduction__text p{font-size:16px;line-height:24px;font-weight:400;color:#282c37}.introduction__text p code{display:inline-block;background:#f2f5f7;font-size:15px;border:1px solid #c0cdd9;border-radius:2px;padding:1px 3px}.introduction__text--centered{padding:25px 25px 30px;text-align:center}.introduction__dots{display:flex;align-items:center;justify-content:center;padding:25px}@media screen and (max-width:630px){.introduction__dots{display:none}}.introduction__dot{width:14px;height:14px;border-radius:14px;border:1px solid #2b5fd9;background:0 0;margin:0 3px;cursor:pointer}.introduction__dot:hover{background:#c0cdd9}.introduction__dot.active{cursor:default;background:#2b5fd9}.introduction__action{padding:0 25px 25px;display:flex;align-items:center;justify-content:center}.emoji-mart{font-size:13px;display:inline-block;color:#000}.emoji-mart,.emoji-mart *{box-sizing:border-box;line-height:1.15}.emoji-mart .emoji-mart-emoji{padding:6px}.emoji-mart-bar{border:0 solid #393f4f}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#282c37}.emoji-mart-bar:last-child{border-top-width:1px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;display:none}.emoji-mart-anchors{display:flex;justify-content:space-between;padding:0 6px;color:#282c37;line-height:0}.emoji-mart-anchor{position:relative;flex:1;text-align:center;padding:12px 4px;overflow:hidden;transition:color .1s ease-out;cursor:pointer}.emoji-mart-anchor:hover{color:#313543}.emoji-mart-anchor-selected{color:#2b5fd9}.emoji-mart-anchor-selected:hover{color:#3c6cdc}.emoji-mart-anchor-selected .emoji-mart-anchor-bar{bottom:-1px}.emoji-mart-anchor-bar{position:absolute;bottom:-5px;left:0;width:100%;height:4px;background-color:#2b5fd9}.emoji-mart-anchors i{display:inline-block;width:100%;max-width:22px}.emoji-mart-anchors svg{fill:currentColor;max-height:18px}.emoji-mart-scroll{overflow-y:scroll;height:270px;max-height:35vh;padding:0 6px 6px;background:#fff;will-change:transform}.emoji-mart-scroll::-webkit-scrollbar-track:active,.emoji-mart-scroll::-webkit-scrollbar-track:hover{background-color:hsla(0,0%,100%,.3)}.emoji-mart-search{padding:10px 45px 10px 10px;background:#fff}.emoji-mart-search input{font-size:14px;font-weight:400;padding:7px 9px;font-family:inherit;display:block;width:100%;background:rgba(40,44,55,.3);color:#000;border:1px solid #282c37;border-radius:4px}.emoji-mart-search input::-moz-focus-inner{border:0}.emoji-mart-search input::-moz-focus-inner,.emoji-mart-search input:active,.emoji-mart-search input:focus{outline:0!important}.emoji-mart-category .emoji-mart-emoji{cursor:pointer}.emoji-mart-category .emoji-mart-emoji span{z-index:1;position:relative;text-align:center}.emoji-mart-category .emoji-mart-emoji:hover:before{z-index:0;content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:rgba(40,44,55,.7);border-radius:100%}.emoji-mart-category-label{z-index:2;position:relative;position:-webkit-sticky;position:sticky;top:0}.emoji-mart-category-label span{display:block;width:100%;font-weight:500;padding:5px 6px;background:#fff}.emoji-mart-emoji{position:relative;display:inline-block;font-size:0}.emoji-mart-emoji span{width:22px;height:22px}.emoji-mart-no-results{font-size:14px;text-align:center;padding-top:70px;color:#444b5d}.emoji-mart-no-results .emoji-mart-category-label{display:none}.emoji-mart-no-results .emoji-mart-no-results-label{margin-top:.2em}.emoji-mart-no-results .emoji-mart-emoji:hover:before{content:none}.emoji-mart-preview{display:none}.container{box-sizing:border-box;max-width:1235px;margin:0 auto;position:relative}@media screen and (max-width:1255px){.container{width:100%;padding:0 10px}}.rich-formatting{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37;padding-right:10px}.rich-formatting a{color:#2b5fd9;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#282c37}.rich-formatting li a,.rich-formatting p a{color:#2b5fd9;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em,.rich-formatting strong{font-weight:700;color:#131419}.rich-formatting h1{font-family:gabsocial-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h1 small{font-family:gabsocial-font-sans-serif,sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.rich-formatting h2{font-family:gabsocial-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h6{font-size:12px}.rich-formatting ol,.rich-formatting ul{margin-left:20px}.rich-formatting ol[type=a],.rich-formatting ul[type=a]{list-style-type:lower-alpha}.rich-formatting ol[type=i],.rich-formatting ul[type=i]{list-style-type:lower-roman}.rich-formatting ul{list-style:disc}.rich-formatting ol{list-style:decimal}.rich-formatting li>ol,.rich-formatting li>ul{margin-top:6px}.rich-formatting hr{width:100%;height:0;border:0;border-bottom:1px solid rgba(176,192,207,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#e6ebf0;padding:20px 0}.information-board .container-alt{position:relative;padding-right:295px}.information-board__sections{display:flex;justify-content:space-between;flex-wrap:wrap}.information-board__section{flex:1 0 0;font-family:gabsocial-font-sans-serif,sans-serif;font-size:16px;line-height:28px;color:#000;text-align:right;padding:10px 15px}.information-board__section span,.information-board__section strong{display:block}.information-board__section span:last-child{color:#282c37}.information-board__section strong{font-family:gabsocial-font-display,sans-serif;font-weight:500;font-size:32px;line-height:48px}@media screen and (max-width:700px){.information-board__section{text-align:center}}.information-board .panel{position:absolute;width:280px;box-sizing:border-box;background:#f2f5f7;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:gabsocial-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#282c37;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #ccd7e0;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#3d4455}.information-board .panel .panel-header a{text-decoration:none}.information-board .owner{text-align:center}.information-board .owner .avatar{width:80px;height:80px;margin:0 auto 15px}.information-board .owner .avatar img{display:block;width:80px;height:80px;border-radius:48px}.information-board .owner .name{font-size:14px}.information-board .owner .name a{display:block;color:#000;text-decoration:none}.information-board .owner .name a:hover .display_name{text-decoration:underline}.information-board .owner .name .username{display:block;color:#282c37}.landing-page li,.landing-page p{font-family:gabsocial-font-sans-serif,sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#282c37}.landing-page li a,.landing-page p a{color:#2b5fd9;text-decoration:underline}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:0 0;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.landing-page h1{font-family:gabsocial-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h1 small{font-family:gabsocial-font-sans-serif,sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.landing-page h2{font-family:gabsocial-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:gabsocial-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h6{font-size:12px}.landing-page ol,.landing-page ul{margin-left:20px}.landing-page ol[type=a],.landing-page ul[type=a]{list-style-type:lower-alpha}.landing-page ol[type=i],.landing-page ul[type=i]{list-style-type:lower-roman}.landing-page ul{list-style:disc}.landing-page ol{list-style:decimal}.landing-page li>ol,.landing-page li>ul{margin-top:6px}.landing-page hr{width:100%;height:0;border:0;border-bottom:1px solid rgba(176,192,207,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#e6ebf0;border-radius:4px;padding:25px 40px;overflow:hidden;box-sizing:border-box}.landing-page__call-to-action .row{width:100%;display:flex;flex-direction:row-reverse;flex-wrap:nowrap;justify-content:space-between;align-items:center}.landing-page__call-to-action .row__information-board{display:flex;justify-content:flex-end;align-items:flex-end}.landing-page__call-to-action .row__information-board .information-board__section{flex:1 0 auto;padding:0 10px}@media screen and (max-width:415px){.landing-page__call-to-action .row__information-board{width:100%;justify-content:space-between}}.landing-page__call-to-action .row__mascot{flex:1;margin:10px -50px 0 0}@media screen and (max-width:415px){.landing-page__call-to-action .row__mascot{display:none}}.landing-page__logo{margin-right:20px}.landing-page__logo img{height:50px;width:auto;mix-blend-mode:lighten}.landing-page__information{padding:45px 40px;margin-bottom:10px}.landing-page__information:last-child{margin-bottom:0}.landing-page__information strong{font-weight:500;color:#131419}.landing-page__information .account{border-bottom:0;padding:0}.landing-page__information .account__display-name{align-items:center;display:flex;margin-right:5px}.landing-page__information .account div.account__display-name:hover .display-name strong{text-decoration:none}.landing-page__information .account div.account__display-name .account__avatar{cursor:default}.landing-page__information .account__avatar-wrapper{margin-left:0;flex:0 0 auto}.landing-page__information .account__avatar{width:44px;height:44px;background-size:44px 44px}.landing-page__information .account .display-name{font-size:15px}.landing-page__information .account .display-name__account{font-size:14px}@media screen and (max-width:960px){.landing-page__information .contact{margin-top:30px}}@media screen and (max-width:700px){.landing-page__information{padding:25px 20px}}.landing-page #gabsocial-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#d9e1e8;border-radius:4px;box-shadow:0 0 6px rgba(0,0,0,.1)}.landing-page__mascot{height:104px;position:relative;left:-40px;bottom:25px}.landing-page__mascot img{height:190px;width:auto}.landing-page__short-description .row{display:flex;flex-wrap:wrap;align-items:center;margin-bottom:40px}@media screen and (max-width:700px){.landing-page__short-description .row{margin-bottom:20px}}.landing-page__short-description p a{color:#282c37}.landing-page__short-description h1{font-weight:500;color:#000;margin-bottom:0}.landing-page__short-description h1 small,.landing-page__short-description h1 small span{color:#282c37}.landing-page__short-description p:last-child{margin-bottom:0}.landing-page__hero{margin-bottom:10px}.landing-page__hero img{display:block;margin:0;max-width:100%;height:auto;border-radius:4px}@media screen and (max-width:840px){.landing-page .information-board .container-alt{padding-right:20px}.landing-page .information-board .panel{position:static;margin-top:20px;width:100%;border-radius:4px}.landing-page .information-board .panel .panel-header{text-align:center}}@media screen and (max-width:675px){.landing-page .header-wrapper{padding-top:0}.landing-page .header-wrapper.compact{padding-bottom:0}.landing-page .header-wrapper.compact .hero .heading{text-align:initial}.landing-page .features .container-alt,.landing-page .header .container-alt{display:block}}.landing-page .cta{margin:20px}.landing{height:auto;min-height:80vh}@media(min-width:767px){.landing{height:100vh;height:calc(100vh - 180px);min-height:580px}}.landing .landing-columns{display:flex;flex-direction:row;padding:40px 0 20px}.landing .landing-columns--left{margin-right:80px}.landing .landing-columns--right{margin-left:auto;width:395px}@media(min-width:767px)and (max-width:1024px){.landing .landing-columns{padding:40px 20px 20px}.landing .landing-columns--left{margin-right:40px}.landing .landing-columns--right{width:425px}}@media screen and (max-width:767px){.landing .landing-columns{height:auto;padding:20px 10px 30px;flex-direction:column;align-items:center}.landing .landing-columns--left{margin-right:0}.landing .landing-columns--right{width:100%;margin-left:0;margin-top:30px}}.landing__brand{display:flex;justify-content:start;align-items:center;flex-direction:column}.landing__brand .brand{margin-right:auto!important}.landing__brand img{height:130px}@media(min-width:767px)and (max-width:1024px){.landing__brand img{height:90px}}@media screen and (max-width:767px){.landing__brand img{display:none}}.landing .directory{margin-top:30px;background:0 0;box-shadow:none;border-radius:0}.landing .hero-widget{margin-top:30px;margin-bottom:0}.landing .hero-widget h4{padding:10px;text-transform:uppercase;font-weight:700;font-size:13px;color:#282c37}.landing .hero-widget__text{border-radius:0;padding-bottom:0}.landing .hero-widget__footer{background:#d9e1e8;padding:10px;border-radius:0 0 4px 4px;display:flex}.landing .hero-widget__footer__column{flex:1 1 50%}.landing .hero-widget .account{padding:10px 0;border-bottom:0}.landing .hero-widget .account .account__display-name{display:flex;align-items:center}.landing .hero-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.landing .hero-widget__counter{padding:10px}.landing .hero-widget__counter strong{font-family:gabsocial-font-display,sans-serif;font-size:15px;font-weight:700;display:block}.landing .hero-widget__counter span{font-size:14px;color:#282c37}.landing .simple_form .user_agreement .label_input>label,.landing .simple_form p.lead{font-weight:400;color:#282c37}.landing .simple_form p.lead{font-size:15px;line-height:20px;margin-bottom:25px}.landing__grid{max-width:960px;margin:0 auto;display:grid;grid-template-columns:minmax(0,50%) minmax(0,50%);grid-gap:30px}@media screen and (max-width:738px){.landing__grid{grid-template-columns:minmax(0,100%);grid-gap:10px}.landing__grid__column-login{grid-row:1;display:flex;flex-direction:column}.landing__grid__column-login .box-widget{order:2;flex:0 0 auto}.landing__grid__column-login .hero-widget{margin-top:0;margin-bottom:10px;order:1;flex:0 0 auto}.landing__grid__column-registration{grid-row:2}.landing__grid .directory{margin-top:10px}}@media screen and (max-width:415px){.landing__grid{grid-gap:0}.landing__grid .hero-widget{display:block;margin-bottom:0;box-shadow:none}.landing__grid .hero-widget__footer,.landing__grid .hero-widget__img,.landing__grid .hero-widget__img img{border-radius:0}.landing__grid .box-widget,.landing__grid .directory__tag,.landing__grid .hero-widget{border-bottom:1px solid #c0cdd9}.landing__grid .directory{margin-top:0}.landing__grid .directory__tag{margin-bottom:0}.landing__grid .directory__tag>a,.landing__grid .directory__tag>div{border-radius:0;box-shadow:none}.landing__grid .directory__tag:last-child{border-bottom:0}}.brand{position:relative;text-decoration:none;margin-right:15px}.brand__tagline{display:block;width:470px;color:#000;font-size:30px;line-height:1.4;margin-top:25px;font-weight:400}@media(min-width:767px)and (max-width:1024px){.brand__tagline{width:320px;font-size:20px}}@media screen and (max-width:767px){.brand__tagline{width:100%;font-size:22px;margin-top:0}}@media(min-width:767px){.hidden-sm{display:block}.visible-sm{display:none}}@media screen and (max-width:767px){.hidden-sm{display:none!important}.visible-sm{display:block!important}}.table{width:100%;max-width:100%;border-spacing:0;border-collapse:collapse}.table td,.table th{padding:8px;line-height:18px;vertical-align:top;border-top:1px solid #d9e1e8;text-align:left;background:#e6ebf0}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #d9e1e8;border-top:0;font-weight:500}.table>tbody>tr>th{font-weight:500}.table>tbody>tr:nth-child(odd)>td,.table>tbody>tr:nth-child(odd)>th{background:#d9e1e8}.table a{color:#2b5fd9;text-decoration:underline}.table a:hover{text-decoration:none}.table strong{font-weight:500}.table strong:lang(ja),.table strong:lang(ko),.table strong:lang(zh-cn),.table strong:lang(zh-hk),.table strong:lang(zh-tw){font-weight:700}.table.inline-table>tbody>tr:nth-child(odd)>td,.table.inline-table>tbody>tr:nth-child(odd)>th{background:0 0}.table.inline-table>tbody>tr:first-child>td,.table.inline-table>tbody>tr:first-child>th{border-top:0}.table.batch-table>thead>tr>th{background:#d9e1e8;border-top:1px solid #f2f5f7;border-bottom:1px solid #f2f5f7}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #f2f5f7}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #f2f5f7}.table--invites tbody td{vertical-align:middle}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:gabsocial-font-monospace,monospace}button.table-action-link{background:0 0;border:0;font:inherit}a.table-action-link,button.table-action-link{text-decoration:none;display:inline-block;margin-right:5px;padding:0 10px;color:#999;font-weight:500}a.table-action-link:hover,button.table-action-link:hover{color:#000}a.table-action-link i.fa,button.table-action-link i.fa{font-weight:400;margin-right:5px}a.table-action-link:first-child,button.table-action-link:first-child{padding-left:0}.batch-table__row,.batch-table__toolbar{display:flex}.batch-table__row__select,.batch-table__toolbar__select{box-sizing:border-box;padding:8px 16px;cursor:pointer;min-height:100%}.batch-table__row__select input,.batch-table__toolbar__select input{margin-top:8px}.batch-table__row__select--aligned,.batch-table__toolbar__select--aligned{display:flex;align-items:center}.batch-table__row__select--aligned input,.batch-table__toolbar__select--aligned input{margin-top:0}@media screen and (max-width:415px){.batch-table__row__select,.batch-table__toolbar__select{display:none}}.batch-table__row__actions,.batch-table__row__content,.batch-table__toolbar__actions,.batch-table__toolbar__content{padding:8px 16px 8px 0;flex:1 1 auto}.batch-table__toolbar{border:1px solid #f2f5f7;background:#d9e1e8;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}@media screen and (max-width:415px){.batch-table__toolbar{display:none}}.batch-table__row{border:1px solid #f2f5f7;border-top:0;background:#e6ebf0}@media screen and (max-width:415px){.batch-table__row:first-child{border-top:1px solid #f2f5f7}}.batch-table__row:hover{background:#dfe6ec}.batch-table__row:nth-child(2n){background:#d9e1e8}.batch-table__row:nth-child(2n):hover{background:#d3dce4}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table__row__content--unpadded{padding:0}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.batch-table .nothing-here{border:1px solid #f2f5f7;border-top:0;box-shadow:none}@media screen and (max-width:415px){.batch-table .nothing-here{border-top:1px solid #f2f5f7}}@media screen and (max-width:870px){.batch-table .accounts-table tbody td.optional{display:none}}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#d9e1e8;display:flex;justify-content:flex-end}.admin-wrapper .sidebar{width:240px;height:100%;padding:0;overflow-y:auto}.admin-wrapper .sidebar .logo{display:block;margin:40px auto;width:100px;height:100px}@media screen and (max-width:600px){.admin-wrapper .sidebar>a:first-child{display:none}}.admin-wrapper .sidebar ul{list-style:none;border-radius:4px 0 0 4px;overflow:hidden;margin-bottom:20px}@media screen and (max-width:600px){.admin-wrapper .sidebar ul{margin-bottom:0}}.admin-wrapper .sidebar ul a{display:block;padding:15px;color:#999;text-decoration:none;transition:all .2s linear;transition-property:color,background-color;border-radius:4px 0 0 4px}.admin-wrapper .sidebar ul a i.fa{margin-right:5px}.admin-wrapper .sidebar ul a:hover{color:#fff;background-color:#333;transition:all .1s linear;transition-property:color,background-color}.admin-wrapper .sidebar ul a.selected{background:#dfe6ec;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#e6ebf0;border-radius:0 0 0 4px;margin:0}.admin-wrapper .sidebar ul ul a{border:0;padding:15px 35px}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a{color:#000;background-color:#2b5fd9;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#2454c7}.admin-wrapper .sidebar>ul>.simple-navigation-active-leaf a{border-radius:4px 0 0 4px}.admin-wrapper .content-wrapper{flex:2 1 840px;overflow:auto}.admin-wrapper .content{max-width:840px;padding:60px 15px 20px 25px}@media screen and (max-width:600px){.admin-wrapper .content{max-width:none;padding:30px 15px 15px}}.admin-wrapper .content h2{color:#282c37;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #c0cdd9;margin-bottom:40px}.admin-wrapper .content h3{color:#282c37;font-size:20px;line-height:28px;font-weight:400;margin-bottom:30px}.admin-wrapper .content h4{text-transform:uppercase;font-size:13px;font-weight:700;color:#999;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #c0cdd9}.admin-wrapper .content h6{font-size:16px;color:#282c37;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#000;font-weight:500}.admin-wrapper .content .directory__tag>a,.admin-wrapper .content .directory__tag>div{box-shadow:none}.admin-wrapper .content .directory__tag .table-action-link .fa{color:inherit}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#999;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#999;margin-bottom:20px}.admin-wrapper .content>p strong{color:#999;font-weight:500}.admin-wrapper .content>p strong:lang(ja),.admin-wrapper .content>p strong:lang(ko),.admin-wrapper .content>p strong:lang(zh-cn),.admin-wrapper .content>p strong:lang(zh-hk),.admin-wrapper .content>p strong:lang(zh-tw){font-weight:700}.admin-wrapper .content hr{width:100%;height:0;border:0;border-bottom:1px solid rgba(176,192,207,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#999}.admin-wrapper .content .muted-hint a{color:#2b5fd9}.admin-wrapper .content .positive-hint{color:#3c754d;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;font-weight:500}.admin-wrapper .content .neutral-hint{color:#444b5d;font-weight:500}@media screen and (max-width:600px){.admin-wrapper{display:block;overflow-y:auto;-webkit-overflow-scrolling:touch}.admin-wrapper .content-wrapper,.admin-wrapper .sidebar-wrapper{flex:0 0 auto;height:auto;overflow:initial}.admin-wrapper .sidebar{width:100%;padding:0;height:auto}}.filters{display:flex;flex-wrap:wrap}.filters .filter-subset{flex:0 0 auto;margin:0 40px 10px 0}.filters .filter-subset:last-child{margin-bottom:20px}.filters .filter-subset ul{margin-top:5px;list-style:none}.filters .filter-subset ul li{display:inline-block;margin-right:5px}.filters .filter-subset strong{font-weight:500;text-transform:uppercase;font-size:12px}.filters .filter-subset strong:lang(ja),.filters .filter-subset strong:lang(ko),.filters .filter-subset strong:lang(zh-cn),.filters .filter-subset strong:lang(zh-hk),.filters .filter-subset strong:lang(zh-tw){font-weight:700}.filters .filter-subset a{display:inline-block;color:#999;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #999}.filters .filter-subset a:hover{color:#000;border-bottom:2px solid #8c8c8c}.filters .filter-subset a.selected{color:#2b5fd9;border-bottom:2px solid #2b5fd9}.report-accounts{display:flex;flex-wrap:wrap;margin-bottom:20px}.report-accounts__item{display:flex;flex:250px;flex-direction:column;margin:0 5px}.report-accounts__item>strong{display:block;margin:0 0 10px -5px;font-weight:500;font-size:14px;line-height:18px;color:#282c37}.report-accounts__item>strong:lang(ja),.report-accounts__item>strong:lang(ko),.report-accounts__item>strong:lang(zh-cn),.report-accounts__item>strong:lang(zh-hk),.report-accounts__item>strong:lang(zh-tw){font-weight:700}.report-accounts__item .account-card{flex:1 1 auto}.account-status,.report-status{display:flex;margin-bottom:10px}.account-status .activity-stream,.report-status .activity-stream{flex:2 0 0;margin-right:20px;max-width:calc(100% - 60px)}.account-status .activity-stream .entry,.report-status .activity-stream .entry{border-radius:4px}.account-status__actions,.report-status__actions{flex:0 0 auto;display:flex;flex-direction:column}.account-status__actions .icon-button,.report-status__actions .icon-button{font-size:24px;width:24px;text-align:center;margin-bottom:10px}.simple_form.new_account_moderation_note,.simple_form.new_report_note{max-width:100%}.batch-form-box{display:flex;flex-wrap:wrap;margin-bottom:5px}.batch-form-box #form_status_batch_action{margin:0 5px 5px 0;font-size:14px}.batch-form-box input.button{margin:0 5px 5px 0}.batch-form-box .media-spoiler-toggle-buttons{margin-left:auto}.batch-form-box .media-spoiler-toggle-buttons .button{overflow:visible;margin:0 0 5px 5px;float:right}.back-link{margin-bottom:10px;font-size:14px}.back-link a{color:#2b5fd9;text-decoration:none}.back-link a:hover{text-decoration:underline}.spacer{flex:1 1 auto}.log-entry{margin-bottom:20px;line-height:20px}.log-entry__header{display:flex;justify-content:flex-start;align-items:center;padding:10px;background:#d9e1e8;color:#282c37;border-radius:4px 4px 0 0;font-size:14px;position:relative}.log-entry__avatar{margin-right:10px}.log-entry__avatar .avatar{display:block;margin:0;border-radius:50%;width:40px;height:40px}.log-entry__content{max-width:calc(100% - 90px)}.log-entry__title{word-wrap:break-word}.log-entry__timestamp{color:#444b5d}.log-entry__extras{background:#c6d2dc;border-radius:0 0 4px 4px;padding:10px;color:#282c37;font-family:gabsocial-font-monospace,monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#444b5d}.log-entry__icon__overlay{position:absolute;top:10px;right:10px;width:10px;height:10px;border-radius:50%}.log-entry__icon__overlay.positive{background:#3c754d}.log-entry__icon__overlay.negative{background:#c1203b}.log-entry__icon__overlay.neutral{background:#2b5fd9}.log-entry .target,.log-entry .username,.log-entry a{color:#282c37;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#c1203b}.log-entry .diff-neutral{color:#282c37}.log-entry .diff-new{color:#3c754d}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#282c37}.inline-name-tag .username,.name-tag .username,a.inline-name-tag .username,a.name-tag .username{font-weight:500}.inline-name-tag.suspended .username,.name-tag.suspended .username,a.inline-name-tag.suspended .username,a.name-tag.suspended .username{text-decoration:line-through;color:#c1203b}.inline-name-tag.suspended .avatar,.name-tag.suspended .avatar,a.inline-name-tag.suspended .avatar,a.name-tag.suspended .avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8}.name-tag,a.name-tag{display:flex;align-items:center}.name-tag .avatar,a.name-tag .avatar{display:block;margin:0 5px 0 0;border-radius:50%}.name-tag.suspended .avatar,a.name-tag.suspended .avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%);opacity:.8}.speech-bubble{margin-bottom:20px;border-left:4px solid #2b5fd9}.speech-bubble.positive{border-left-color:#3c754d}.speech-bubble.negative{border-left-color:#c1203b}.speech-bubble.warning{border-left-color:#ca8f04}.speech-bubble__bubble{padding:16px 16px 16px 14px;font-size:15px;line-height:20px;border-radius:4px 4px 4px 0;position:relative;font-weight:500}.speech-bubble__bubble a{color:#282c37}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#444b5d}.report-card{background:#d9e1e8;border-radius:4px;margin-bottom:20px}.report-card__profile{display:flex;justify-content:space-between;align-items:center;padding:15px}.report-card__profile .account{padding:0;border:0}.report-card__profile .account__avatar-wrapper{margin-left:0}.report-card__profile__stats{flex:0 0 auto;font-weight:500;color:#282c37;text-transform:uppercase;text-align:right}.report-card__profile__stats a{color:inherit;text-decoration:none}.report-card__profile__stats a:active,.report-card__profile__stats a:focus,.report-card__profile__stats a:hover{color:#17191f}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #e6ebf0}.report-card__summary__item:hover{background:#d3dce4}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#282c37}.report-card__summary__item__assigned,.report-card__summary__item__assigned .username,.report-card__summary__item__reported-by,.report-card__summary__item__reported-by .username{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.report-card__summary__item__content{flex:1 1 auto;max-width:calc(100% - 300px)}.report-card__summary__item__content__icon{color:#444b5d;margin-right:4px;font-weight:500}.report-card__summary__item__content a{display:block;box-sizing:border-box;width:100%;padding:15px;text-decoration:none;color:#282c37}.one-line{white-space:nowrap}.ellipsized-ip,.one-line{overflow:hidden;text-overflow:ellipsis}.ellipsized-ip{display:inline-block;max-width:120px;vertical-align:middle}.dashboard__counters{display:flex;flex-wrap:wrap;margin:0 -5px 20px}.dashboard__counters>div{box-sizing:border-box;flex:0 0 33.333%;padding:0 5px;margin-bottom:10px}.dashboard__counters>div>a,.dashboard__counters>div>div{padding:20px;background:#ccd7e0;border-radius:4px}.dashboard__counters>div>a{text-decoration:none;color:inherit;display:block}.dashboard__counters>div>a:active,.dashboard__counters>div>a:focus,.dashboard__counters>div>a:hover{background:#c0cdd9}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#000;font-family:gabsocial-font-display,sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#999;text-align:center;font-weight:500}.dashboard__widgets{display:flex;flex-wrap:wrap;margin:0 -5px}.dashboard__widgets>div{flex:0 0 33.333%;margin-bottom:20px}.dashboard__widgets>div>div{padding:0 5px}.dashboard__widgets a:not(.name-tag){color:#282c37;font-weight:500;text-decoration:none}body.rtl{direction:rtl}body.rtl .column-header>button{text-align:right;padding-left:0;padding-right:15px}body.rtl .landing-page__logo{margin-right:0;margin-left:20px}body.rtl .landing-page .features-list .features-list__row .visual{margin-left:0;margin-right:15px}body.rtl .column-header__icon,body.rtl .column-link__icon{margin-right:0;margin-left:5px}body.rtl .compose-form .compose-form__buttons-wrapper .character-counter__wrapper{margin-right:0;margin-left:4px}body.rtl .navigation-bar__profile{margin-left:0;margin-right:8px}body.rtl .search__input{padding-right:10px;padding-left:30px}body.rtl .search__icon .fa{right:auto;left:10px}body.rtl .column-header__buttons{left:0;right:auto;margin-left:0;margin-right:-15px}body.rtl .column-inline-form .icon-button{margin-left:0;margin-right:5px}body.rtl .column-header__links .text-btn{margin-left:10px;margin-right:0}body.rtl .account__avatar-wrapper{float:right}body.rtl .column-header__back-button{padding-left:5px;padding-right:0}body.rtl .column-header__setting-arrows{float:left}body.rtl .setting-toggle__label{margin-left:0;margin-right:8px}body.rtl .status__avatar{left:auto;right:10px}body.rtl .activity-stream .status.light,body.rtl .status{padding-left:10px;padding-right:68px}body.rtl .activity-stream .status.light .status__display-name,body.rtl .status__info .status__display-name{padding-left:25px;padding-right:0}body.rtl .activity-stream .pre-header{padding-right:68px;padding-left:0}body.rtl .status__prepend{margin-left:0;margin-right:68px}body.rtl .status__prepend-icon-wrapper{left:auto;right:-26px}body.rtl .activity-stream .pre-header .pre-header__icon{left:auto;right:42px}body.rtl .account__avatar-overlay-overlay,body.rtl .column-back-button--slim-button{right:auto;left:0}body.rtl .activity-stream .status.light .status__header .status__meta,body.rtl .status__relative-time{float:left}body.rtl .status__action-bar__counter{margin-right:0;margin-left:11px}body.rtl .status__action-bar__counter .status__action-bar-button{margin-right:0;margin-left:4px}body.rtl .status__action-bar-button{float:right;margin-right:0;margin-left:18px}body.rtl .status__action-bar-dropdown{float:right}body.rtl .privacy-dropdown__dropdown{margin-left:0;margin-right:40px}body.rtl .privacy-dropdown__option__icon{margin-left:10px;margin-right:0}body.rtl .detailed-status__display-name .display-name{text-align:right}body.rtl .detailed-status__display-avatar{margin-right:0;margin-left:10px;float:right}body.rtl .detailed-status__favorites,body.rtl .detailed-status__reblogs{margin-left:0;margin-right:6px}body.rtl .fa-ul{margin-left:2.14285714em}body.rtl .fa-li{left:auto;right:-2.14285714em}body.rtl .admin-wrapper{direction:rtl}body.rtl .admin-wrapper .sidebar ul a i.fa,body.rtl a.table-action-link i.fa{margin-right:0;margin-left:5px}body.rtl .simple_form .check_boxes .checkbox label{padding-left:0;padding-right:25px}body.rtl .simple_form .input.with_label.boolean label.checkbox{padding-left:25px;padding-right:0}body.rtl .simple_form .check_boxes .checkbox input[type=checkbox],body.rtl .simple_form .input.boolean input[type=checkbox],body.rtl .simple_form .input.radio_buttons .radio{left:auto;right:0}body.rtl .simple_form .input.radio_buttons .radio>label{padding-right:28px;padding-left:0}body.rtl .simple_form .input-with-append .input input{padding-left:142px;padding-right:0}body.rtl .simple_form .input.boolean label.checkbox{left:auto;right:0}body.rtl .simple_form .input.boolean .hint,body.rtl .simple_form .input.boolean .label_input{padding-left:0;padding-right:28px}body.rtl .simple_form .label_input__append{right:auto;left:3px}body.rtl .simple_form .label_input__append:after{right:auto;left:0;background-image:linear-gradient(270deg,rgba(249,250,251,0),#f9fafb)}body.rtl .simple_form select{background:#f9fafb url("data:image/svg+xml;utf8,") no-repeat left 8px center/auto 16px}body.rtl .table td,body.rtl .table th{text-align:right}body.rtl .filters .filter-subset{margin-right:0;margin-left:45px}body.rtl .landing-page .header-wrapper .mascot{right:60px;left:auto}body.rtl .landing-page__call-to-action .row__information-board{direction:rtl}body.rtl .landing-page .header .hero .floats .float-1{left:-120px;right:auto}body.rtl .landing-page .header .hero .floats .float-2{left:210px;right:auto}body.rtl .landing-page .header .hero .floats .float-3{left:110px;right:auto}body.rtl .landing-page .header .links .brand img{left:0}body.rtl .landing-page .fa-external-link{padding-right:5px;padding-left:0!important}body.rtl .landing-page .features #gabsocial-timeline{margin-right:0;margin-left:30px}@media screen and (min-width:631px){body.rtl .column,body.rtl .drawer{padding-left:5px;padding-right:5px}body.rtl .column:first-child,body.rtl .drawer:first-child{padding-left:5px;padding-right:10px}body.rtl .columns-area>div .column,body.rtl .columns-area>div .drawer{padding-left:5px;padding-right:5px}}body.rtl .public-layout .header .nav-button{margin-left:8px;margin-right:0}body.rtl .public-layout .public-account-header__tabs{margin-left:0;margin-right:20px}body.rtl .landing-page__information .account__display-name{margin-right:0;margin-left:5px}body.rtl .landing-page__information .account__avatar-wrapper{margin-left:12px;margin-right:0}body.rtl .card__bar .display-name{margin-left:0;margin-right:15px;text-align:right}body.rtl .fa-chevron-left:before{content:""}body.rtl .fa-chevron-right:before{content:""}body.rtl .column-back-button__icon{margin-right:0;margin-left:5px}body.rtl .column-header__setting-arrows .column-header__setting-btn:last-child{padding-left:0;padding-right:10px}body.rtl .simple_form .input.radio_buttons .radio>label input{left:auto;right:0}.emojione[title=":8ball:"],.emojione[title=":ant:"],.emojione[title=":back:"],.emojione[title=":black_circle:"],.emojione[title=":black_heart:"],.emojione[title=":black_large_square:"],.emojione[title=":black_medium_small_square:"],.emojione[title=":black_medium_square:"],.emojione[title=":black_nib:"],.emojione[title=":black_small_square:"],.emojione[title=":bomb:"],.emojione[title=":bowling:"],.emojione[title=":bust_in_silhouette:"],.emojione[title=":busts_in_silhouette:"],.emojione[title=":camera:"],.emojione[title=":camera_with_flash:"],.emojione[title=":clubs:"],.emojione[title=":copyright:"],.emojione[title=":curly_loop:"],.emojione[title=":currency_exchange:"],.emojione[title=":dark_sunglasses:"],.emojione[title=":eight_pointed_black_star:"],.emojione[title=":electric_plug:"],.emojione[title=":end:"],.emojione[title=":female-guard:"],.emojione[title=":film_projector:"],.emojione[title=":fried_egg:"],.emojione[title=":gorilla:"],.emojione[title=":guardsman:"],.emojione[title=":heavy_check_mark:"],.emojione[title=":heavy_division_sign:"],.emojione[title=":heavy_dollar_sign:"],.emojione[title=":heavy_minus_sign:"],.emojione[title=":heavy_multiplication_x:"],.emojione[title=":heavy_plus_sign:"],.emojione[title=":hocho:"],.emojione[title=":hole:"],.emojione[title=":joystick:"],.emojione[title=":kaaba:"],.emojione[title=":lower_left_ballpoint_pen:"],.emojione[title=":lower_left_fountain_pen:"],.emojione[title=":male-guard:"],.emojione[title=":microphone:"],.emojione[title=":mortar_board:"],.emojione[title=":movie_camera:"],.emojione[title=":musical_score:"],.emojione[title=":on:"],.emojione[title=":registered:"],.emojione[title=":soon:"],.emojione[title=":spades:"],.emojione[title=":speaking_head_in_silhouette:"],.emojione[title=":spider:"],.emojione[title=":telephone_receiver:"],.emojione[title=":tm:"],.emojione[title=":top:"],.emojione[title=":tophat:"],.emojione[title=":turkey:"],.emojione[title=":vhs:"],.emojione[title=":video_camera:"],.emojione[title=":video_game:"],.emojione[title=":water_buffalo:"],.emojione[title=":waving_black_flag:"],.emojione[title=":wavy_dash:"]{-webkit-filter:drop-shadow(1px 1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff) drop-shadow(-1px -1px 0 #fff);filter:drop-shadow(1px 1px 0 #ffffff) drop-shadow(-1px 1px 0 #ffffff) drop-shadow(1px -1px 0 #ffffff) drop-shadow(-1px -1px 0 #ffffff);transform:scale(.71)}.button,.button.button-alternative-2{color:#fff}.column article{background:#fff}.drawer__inner{background:#d9e1e8}.drawer__inner__gabsocial{background:#d9e1e8 url('data:image/svg+xml;utf8,') no-repeat bottom/100% auto}.compose-form .compose-form__modifiers .compose-form__upload-description input{color:#ededed}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{color:#ededed}.compose-form .compose-form__modifiers .compose-form__upload-description input::-moz-placeholder{color:#ededed}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder{color:#ededed}.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{color:#ededed}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{color:#ededed}.compose-form .autosuggest-textarea__suggestions,.compose-form .compose-form__buttons-wrapper{background:#ecf0f4}.compose-form .autosuggest-textarea__suggestions__item.selected,.compose-form .autosuggest-textarea__suggestions__item:active,.compose-form .autosuggest-textarea__suggestions__item:focus,.compose-form .autosuggest-textarea__suggestions__item:hover{background:#ccd7e0}.emoji-mart-bar{border-color:#ccd7e0}.emoji-mart-bar:first-child{background:#ecf0f4}.emoji-mart-search input{background:rgba(217,225,232,.3);border-color:#d9e1e8}.focusable:focus{background:#d9e1e8}.status.status-direct{background:#ccd7e0}.focusable:focus .status.status-direct{background:#c0cdd9}.detailed-status,.detailed-status__action-bar{background:#ecf0f4}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#b0c0cf}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#9db1c3}.media-spoiler,.video-player__spoiler{background:#d9e1e8}.account-gallery__item a{background-color:#d9e1e8}.dropdown-menu{background:#d9e1e8}.dropdown-menu__arrow.left{border-left-color:#d9e1e8}.dropdown-menu__arrow.top{border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{border-right-color:#d9e1e8}.dropdown-menu__item a{background:#d9e1e8;color:#282c37}.actions-modal ul li:not(:empty) a.active,.actions-modal ul li:not(:empty) a.active button,.actions-modal ul li:not(:empty) a:active,.actions-modal ul li:not(:empty) a:active button,.actions-modal ul li:not(:empty) a:focus,.actions-modal ul li:not(:empty) a:focus button,.actions-modal ul li:not(:empty) a:hover,.actions-modal ul li:not(:empty) a:hover button,.admin-wrapper .sidebar ul li a.selected,.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover,.privacy-dropdown__option.active .privacy-dropdown__option__content,.privacy-dropdown__option.active .privacy-dropdown__option__content strong,.privacy-dropdown__option:hover .privacy-dropdown__option__content,.privacy-dropdown__option:hover .privacy-dropdown__option__content strong,.simple_form .block-button,.simple_form .button,.simple_form button{color:#fff}.dropdown-menu__separator{border-bottom-color:#b3c3d1}.actions-modal,.boost-modal,.confirmation-modal,.embed-modal,.error-modal,.mute-modal,.onboarding-modal,.report-modal{background:#d9e1e8}.boost-modal__action-bar,.confirmation-modal__action-bar,.error-modal__footer,.mute-modal__action-bar,.onboarding-modal__paginator{background:#ecf0f4}.boost-modal__action-bar .error-modal__nav:active,.boost-modal__action-bar .error-modal__nav:focus,.boost-modal__action-bar .error-modal__nav:hover,.boost-modal__action-bar .onboarding-modal__nav:active,.boost-modal__action-bar .onboarding-modal__nav:focus,.boost-modal__action-bar .onboarding-modal__nav:hover,.confirmation-modal__action-bar .error-modal__nav:active,.confirmation-modal__action-bar .error-modal__nav:focus,.confirmation-modal__action-bar .error-modal__nav:hover,.confirmation-modal__action-bar .onboarding-modal__nav:active,.confirmation-modal__action-bar .onboarding-modal__nav:focus,.confirmation-modal__action-bar .onboarding-modal__nav:hover,.error-modal__footer .error-modal__nav:active,.error-modal__footer .error-modal__nav:focus,.error-modal__footer .error-modal__nav:hover,.error-modal__footer .onboarding-modal__nav:active,.error-modal__footer .onboarding-modal__nav:focus,.error-modal__footer .onboarding-modal__nav:hover,.mute-modal__action-bar .error-modal__nav:active,.mute-modal__action-bar .error-modal__nav:focus,.mute-modal__action-bar .error-modal__nav:hover,.mute-modal__action-bar .onboarding-modal__nav:active,.mute-modal__action-bar .onboarding-modal__nav:focus,.mute-modal__action-bar .onboarding-modal__nav:hover,.onboarding-modal__paginator .error-modal__nav:active,.onboarding-modal__paginator .error-modal__nav:focus,.onboarding-modal__paginator .error-modal__nav:hover,.onboarding-modal__paginator .onboarding-modal__nav:active,.onboarding-modal__paginator .onboarding-modal__nav:focus,.onboarding-modal__paginator .onboarding-modal__nav:hover{background-color:#fff}.display-case__case,.embed-modal .embed-modal__container .embed-modal__html{background:#fff}.embed-modal .embed-modal__container .embed-modal__html:focus{background:#ecf0f4}.react-toggle-track{background:#282c37}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background:#3d4455}.react-toggle.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background:#1aa360}.empty-column-indicator,.error-column{color:#000;background:#fff}.activity-stream-tabs{background:#fff;border-bottom-color:#c0cdd9}.activity-stream .entry{background:#fff}.activity-stream .entry .detailed-status.light,.activity-stream .entry .more.light,.activity-stream .entry .status.light{border-bottom-color:#c0cdd9}.accounts-grid .account-grid-card .name a,.activity-stream .status.light .display-name strong,.activity-stream .status.light .status__content{color:#000}.accounts-grid .account-grid-card .username{color:#282c37}.accounts-grid .account-grid-card .account__header__content{color:#000}.simple_form .warning,.table-form .warning{box-shadow:none;background:rgba(223,64,90,.5);text-shadow:none}.button.logo-button{color:#fff}.button.logo-button svg{fill:#fff}.public-layout .header,.public-layout .public-account-bio,.public-layout .public-account-header{box-shadow:none}.public-layout .header,.public-layout .public-account-header__image{background:#b3c3d1}.public-layout .public-account-header__image:after{box-shadow:none}.public-layout .public-account-header__tabs__name h1,.public-layout .public-account-header__tabs__name h1 small{color:#fff}.account__section-headline a.active:after{border-color:transparent transparent #fff}.activity-stream,.box-widget,.contact-widget,.directory__tag>a,.directory__tag>div,.hero-widget,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget,.nothing-here{box-shadow:none}