diff --git a/config/config.exs b/config/config.exs
index f623dc9f4..0db940fdc 100644
--- a/config/config.exs
+++ b/config/config.exs
@@ -146,6 +146,7 @@
banner_upload_limit: 4_000_000,
registrations_open: true,
federating: true,
+ federation_reachability_timeout_days: 7,
allow_relay: true,
rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
public: true,
@@ -226,7 +227,9 @@
allow_followersonly: false,
allow_direct: false
-config :pleroma, :mrf_hellthread, threshold: 10
+config :pleroma, :mrf_hellthread,
+ delist_threshold: 5,
+ reject_threshold: 10
config :pleroma, :mrf_simple,
media_removal: [],
@@ -235,6 +238,8 @@
reject: [],
accept: []
+config :pleroma, :rich_media, enabled: true
+
config :pleroma, :media_proxy,
enabled: false,
proxy_opts: [
diff --git a/config/test.exs b/config/test.exs
index 7e833fbb3..fbeba0919 100644
--- a/config/test.exs
+++ b/config/test.exs
@@ -36,6 +36,7 @@
config :pleroma, :websub, Pleroma.Web.WebsubMock
config :pleroma, :ostatus, Pleroma.Web.OStatusMock
config :tesla, adapter: Tesla.Mock
+config :pleroma, :rich_media, enabled: false
config :web_push_encryption, :vapid_details,
subject: "mailto:administrator@example.com",
diff --git a/docs/Pleroma-API.md b/docs/Pleroma-API.md
index 3ebea565c..e1448d3f0 100644
--- a/docs/Pleroma-API.md
+++ b/docs/Pleroma-API.md
@@ -52,6 +52,7 @@ Request parameters can be passed via [query strings](https://en.wikipedia.org/wi
* `confirm`
* `captcha_solution`: optional, contains provider-specific captcha solution,
* `captcha_token`: optional, contains provider-specific captcha token
+ * `token`: invite token required when the registerations aren't public.
* Response: JSON. Returns a user object on success, otherwise returns `{"error": "error_msg"}`
* Example response:
```
diff --git a/docs/config.md b/docs/config.md
index 8989664b7..5a32f9425 100644
--- a/docs/config.md
+++ b/docs/config.md
@@ -17,7 +17,7 @@ Note: `strip_exif` has been replaced by `Pleroma.Upload.Filter.Mogrify`.
## Pleroma.Upload.Filter.Mogrify
-* `args`: List of actions for the `mogrify` command like `"strip"` or `["strip", {"impode", "1"}]`.
+* `args`: List of actions for the `mogrify` command like `"strip"` or `["strip", "auto-orient", {"impode", "1"}]`.
## Pleroma.Upload.Filter.Dedupe
@@ -73,6 +73,7 @@ config :pleroma, Pleroma.Mailer,
* `invites_enabled`: Enable user invitations for admins (depends on `registrations_open: false`).
* `account_activation_required`: Require users to confirm their emails before signing in.
* `federating`: Enable federation with other instances
+* `federation_reachability_timeout_days`: Timeout (in days) of each external federation target being unreachable prior to pausing federating to it.
* `allow_relay`: Enable Pleroma’s Relay, which makes it possible to follow a whole instance
* `rewrite_policy`: Message Rewrite Policy, either one or a list. Here are the ones available by default:
* `Pleroma.Web.ActivityPub.MRF.NoOpPolicy`: Doesn’t modify activities (default)
@@ -124,7 +125,7 @@ This section is used to configure Pleroma-FE, unless ``:managed_config`` in ``:i
* `theme`: Which theme to use, they are defined in ``styles.json``
* `logo`: URL of the logo, defaults to Pleroma’s logo
-* `logo_mask`: Whenether to mask the logo
+* `logo_mask`: Whether to use only the logo's shape as a mask (true) or as a regular image (false)
* `logo_margin`: What margin to use around the logo
* `background`: URL of the background, unless viewing a user profile with a background that is set
* `redirect_root_no_login`: relative URL which indicates where to redirect when a user isn’t logged in.
@@ -148,7 +149,8 @@ This section is used to configure Pleroma-FE, unless ``:managed_config`` in ``:i
* `allow_direct`: whether to allow direct messages
## :mrf_hellthread
-* `threshold`: Number of mentioned users after which the message gets discarded as spam
+* `delist_threshold`: Number of mentioned users after which the message gets delisted (the message can still be seen, but it will not show up in public timelines and mentioned users won't get notifications about it). Set to 0 to disable.
+* `reject_threshold`: Number of mentioned users after which the messaged gets rejected. Set to 0 to disable.
## :media_proxy
* `enabled`: Enables proxying of remote media to the instance’s proxy
@@ -252,6 +254,9 @@ This config contains two queues: `federator_incoming` and `federator_outgoing`.
* Pleroma.Web.Metadata.Providers.TwitterCard
* `unfurl_nsfw`: If set to `true` nsfw attachments will be shown in previews
+## :rich_media
+* `enabled`: if enabled the instance will parse metadata from attached links to generate link previews
+
## :hackney_pools
Advanced. Tweaks Hackney (http client) connections pools.
diff --git a/lib/pleroma/application.ex b/lib/pleroma/application.ex
index e44c48c35..d2523c045 100644
--- a/lib/pleroma/application.ex
+++ b/lib/pleroma/application.ex
@@ -6,11 +6,13 @@ defmodule Pleroma.Application do
use Application
import Supervisor.Spec
- @name "Pleroma"
+ @name Mix.Project.config()[:name]
@version Mix.Project.config()[:version]
+ @repository Mix.Project.config()[:source_url]
def name, do: @name
def version, do: @version
def named_version(), do: @name <> " " <> @version
+ def repository, do: @repository
def user_agent() do
info = "#{Pleroma.Web.base_url()} <#{Pleroma.Config.get([:instance, :email], "")}>"
diff --git a/lib/pleroma/config/deprecation_warnings.ex b/lib/pleroma/config/deprecation_warnings.ex
index dc50682ee..0eb1833aa 100644
--- a/lib/pleroma/config/deprecation_warnings.ex
+++ b/lib/pleroma/config/deprecation_warnings.ex
@@ -12,6 +12,13 @@ def check_frontend_config_mechanism() do
You are using the old configuration mechanism for the frontend. Please check config.md.
""")
end
+
+ if Pleroma.Config.get(:mrf_hellthread, :threshold) do
+ Logger.warn("""
+ !!!DEPRECATION WARNING!!!
+ You are using the old configuration mechanism for the hellthread filter. Please check config.md.
+ """)
+ end
end
def warn do
diff --git a/lib/pleroma/instances.ex b/lib/pleroma/instances.ex
new file mode 100644
index 000000000..5e107f4c9
--- /dev/null
+++ b/lib/pleroma/instances.ex
@@ -0,0 +1,36 @@
+defmodule Pleroma.Instances do
+ @moduledoc "Instances context."
+
+ @adapter Pleroma.Instances.Instance
+
+ defdelegate filter_reachable(urls_or_hosts), to: @adapter
+ defdelegate reachable?(url_or_host), to: @adapter
+ defdelegate set_reachable(url_or_host), to: @adapter
+ defdelegate set_unreachable(url_or_host, unreachable_since \\ nil), to: @adapter
+
+ def set_consistently_unreachable(url_or_host),
+ do: set_unreachable(url_or_host, reachability_datetime_threshold())
+
+ def reachability_datetime_threshold do
+ federation_reachability_timeout_days =
+ Pleroma.Config.get(:instance)[:federation_reachability_timeout_days] || 0
+
+ if federation_reachability_timeout_days > 0 do
+ NaiveDateTime.add(
+ NaiveDateTime.utc_now(),
+ -federation_reachability_timeout_days * 24 * 3600,
+ :second
+ )
+ else
+ ~N[0000-01-01 00:00:00]
+ end
+ end
+
+ def host(url_or_host) when is_binary(url_or_host) do
+ if url_or_host =~ ~r/^http/i do
+ URI.parse(url_or_host).host
+ else
+ url_or_host
+ end
+ end
+end
diff --git a/lib/pleroma/instances/instance.ex b/lib/pleroma/instances/instance.ex
new file mode 100644
index 000000000..4a4ca26dd
--- /dev/null
+++ b/lib/pleroma/instances/instance.ex
@@ -0,0 +1,113 @@
+defmodule Pleroma.Instances.Instance do
+ @moduledoc "Instance."
+
+ alias Pleroma.Instances
+ alias Pleroma.Instances.Instance
+
+ use Ecto.Schema
+
+ import Ecto.{Query, Changeset}
+
+ alias Pleroma.Repo
+
+ schema "instances" do
+ field(:host, :string)
+ field(:unreachable_since, :naive_datetime)
+
+ timestamps()
+ end
+
+ defdelegate host(url_or_host), to: Instances
+
+ def changeset(struct, params \\ %{}) do
+ struct
+ |> cast(params, [:host, :unreachable_since])
+ |> validate_required([:host])
+ |> unique_constraint(:host)
+ end
+
+ def filter_reachable([]), do: %{}
+
+ def filter_reachable(urls_or_hosts) when is_list(urls_or_hosts) do
+ hosts =
+ urls_or_hosts
+ |> Enum.map(&(&1 && host(&1)))
+ |> Enum.filter(&(to_string(&1) != ""))
+
+ unreachable_since_by_host =
+ Repo.all(
+ from(i in Instance,
+ where: i.host in ^hosts,
+ select: {i.host, i.unreachable_since}
+ )
+ )
+ |> Map.new(& &1)
+
+ reachability_datetime_threshold = Instances.reachability_datetime_threshold()
+
+ for entry <- Enum.filter(urls_or_hosts, &is_binary/1) do
+ host = host(entry)
+ unreachable_since = unreachable_since_by_host[host]
+
+ if !unreachable_since ||
+ NaiveDateTime.compare(unreachable_since, reachability_datetime_threshold) == :gt do
+ {entry, unreachable_since}
+ end
+ end
+ |> Enum.filter(& &1)
+ |> Map.new(& &1)
+ end
+
+ def reachable?(url_or_host) when is_binary(url_or_host) do
+ !Repo.one(
+ from(i in Instance,
+ where:
+ i.host == ^host(url_or_host) and
+ i.unreachable_since <= ^Instances.reachability_datetime_threshold(),
+ select: true
+ )
+ )
+ end
+
+ def reachable?(_), do: true
+
+ def set_reachable(url_or_host) when is_binary(url_or_host) do
+ with host <- host(url_or_host),
+ %Instance{} = existing_record <- Repo.get_by(Instance, %{host: host}) do
+ {:ok, _instance} =
+ existing_record
+ |> changeset(%{unreachable_since: nil})
+ |> Repo.update()
+ end
+ end
+
+ def set_reachable(_), do: {:error, nil}
+
+ def set_unreachable(url_or_host, unreachable_since \\ nil)
+
+ def set_unreachable(url_or_host, unreachable_since) when is_binary(url_or_host) do
+ unreachable_since = unreachable_since || DateTime.utc_now()
+ host = host(url_or_host)
+ existing_record = Repo.get_by(Instance, %{host: host})
+
+ changes = %{unreachable_since: unreachable_since}
+
+ cond do
+ is_nil(existing_record) ->
+ %Instance{}
+ |> changeset(Map.put(changes, :host, host))
+ |> Repo.insert()
+
+ existing_record.unreachable_since &&
+ NaiveDateTime.compare(existing_record.unreachable_since, unreachable_since) != :gt ->
+ {:ok, existing_record}
+
+ true ->
+ existing_record
+ |> changeset(changes)
+ |> Repo.update()
+ end
+ end
+
+ def set_unreachable(_, _), do: {:error, nil}
+end
diff --git a/lib/pleroma/object.ex b/lib/pleroma/object.ex
index 707a61f14..7b46a3b05 100644
--- a/lib/pleroma/object.ex
+++ b/lib/pleroma/object.ex
@@ -31,8 +31,8 @@ def get_by_ap_id(ap_id) do
Repo.one(from(object in Object, where: fragment("(?)->>'id' = ?", object.data, ^ap_id)))
end
- def normalize(obj) when is_map(obj), do: Object.get_by_ap_id(obj["id"])
- def normalize(ap_id) when is_binary(ap_id), do: Object.get_by_ap_id(ap_id)
+ def normalize(%{"id" => ap_id}), do: normalize(ap_id)
+ def normalize(ap_id) when is_binary(ap_id), do: get_cached_by_ap_id(ap_id)
def normalize(_), do: nil
# Owned objects can only be mutated by their owner
@@ -42,24 +42,18 @@ def authorize_mutation(%Object{data: %{"actor" => actor}}, %User{ap_id: ap_id}),
# Legacy objects can be mutated by anybody
def authorize_mutation(%Object{}, %User{}), do: true
- if Mix.env() == :test do
- def get_cached_by_ap_id(ap_id) do
- get_by_ap_id(ap_id)
- end
- else
- def get_cached_by_ap_id(ap_id) do
- key = "object:#{ap_id}"
+ def get_cached_by_ap_id(ap_id) do
+ key = "object:#{ap_id}"
- Cachex.fetch!(:object_cache, key, fn _ ->
- object = get_by_ap_id(ap_id)
+ Cachex.fetch!(:object_cache, key, fn _ ->
+ object = get_by_ap_id(ap_id)
- if object do
- {:commit, object}
- else
- {:ignore, object}
- end
- end)
- end
+ if object do
+ {:commit, object}
+ else
+ {:ignore, object}
+ end
+ end)
end
def context_mapping(context) do
@@ -90,4 +84,17 @@ def delete(%Object{data: %{"id" => id}} = object) do
{:ok, object}
end
end
+
+ def set_cache(%Object{data: %{"id" => ap_id}} = object) do
+ Cachex.put(:object_cache, "object:#{ap_id}", object)
+ {:ok, object}
+ end
+
+ def update_and_set_cache(changeset) do
+ with {:ok, object} <- Repo.update(changeset) do
+ set_cache(object)
+ else
+ e -> e
+ end
+ end
end
diff --git a/lib/pleroma/plugs/instance_static.ex b/lib/pleroma/plugs/instance_static.ex
index af2f6f331..11f108de7 100644
--- a/lib/pleroma/plugs/instance_static.ex
+++ b/lib/pleroma/plugs/instance_static.ex
@@ -21,7 +21,7 @@ def file_path(path) do
end
end
- @only ~w(index.html static emoji packs sounds images instance favicon.png)
+ @only ~w(index.html static emoji packs sounds images instance favicon.png sw.js sw-pleroma.js)
def init(opts) do
opts
diff --git a/lib/pleroma/upload.ex b/lib/pleroma/upload.ex
index 0a19e737b..ce2a1b696 100644
--- a/lib/pleroma/upload.ex
+++ b/lib/pleroma/upload.ex
@@ -124,10 +124,10 @@ defp get_opts(opts) do
:pleroma, Pleroma.Upload, [filters: [Pleroma.Upload.Filter.Mogrify]]
- :pleroma, Pleroma.Upload.Filter.Mogrify, args: "strip"
+ :pleroma, Pleroma.Upload.Filter.Mogrify, args: ["strip", "auto-orient"]
""")
- Pleroma.Config.put([Pleroma.Upload.Filter.Mogrify], args: "strip")
+ Pleroma.Config.put([Pleroma.Upload.Filter.Mogrify], args: ["strip", "auto-orient"])
Map.put(opts, :filters, opts.filters ++ [Pleroma.Upload.Filter.Mogrify])
else
opts
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex
index bd797db40..33630ac7c 100644
--- a/lib/pleroma/user.ex
+++ b/lib/pleroma/user.ex
@@ -39,6 +39,7 @@ defmodule Pleroma.User do
field(:follower_address, :string)
field(:search_rank, :float, virtual: true)
field(:tags, {:array, :string}, default: [])
+ field(:bookmarks, {:array, :string}, default: [])
field(:last_refreshed_at, :naive_datetime)
has_many(:notifications, Notification)
embeds_one(:info, Pleroma.User.Info)
@@ -314,7 +315,16 @@ def follow_all(follower, followeds) do
q =
from(u in User,
where: u.id == ^follower.id,
- update: [set: [following: fragment("array_cat(?, ?)", u.following, ^followed_addresses)]]
+ update: [
+ set: [
+ following:
+ fragment(
+ "array(select distinct unnest (array_cat(?, ?)))",
+ u.following,
+ ^followed_addresses
+ )
+ ]
+ ]
)
{1, [follower]} = Repo.update_all(q, [], returning: true)
@@ -1161,6 +1171,22 @@ defp update_tags(%User{} = user, new_tags) do
updated_user
end
+ def bookmark(%User{} = user, status_id) do
+ bookmarks = Enum.uniq(user.bookmarks ++ [status_id])
+ update_bookmarks(user, bookmarks)
+ end
+
+ def unbookmark(%User{} = user, status_id) do
+ bookmarks = Enum.uniq(user.bookmarks -- [status_id])
+ update_bookmarks(user, bookmarks)
+ end
+
+ def update_bookmarks(%User{} = user, bookmarks) do
+ user
+ |> change(%{bookmarks: bookmarks})
+ |> update_and_set_cache
+ end
+
defp normalize_tags(tags) do
[tags]
|> List.flatten()
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex
index 6d784717e..bdc9456dd 100644
--- a/lib/pleroma/web/activity_pub/activity_pub.ex
+++ b/lib/pleroma/web/activity_pub/activity_pub.ex
@@ -3,7 +3,7 @@
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ActivityPub.ActivityPub do
- alias Pleroma.{Activity, Repo, Object, Upload, User, Notification}
+ alias Pleroma.{Activity, Repo, Object, Upload, User, Notification, Instances}
alias Pleroma.Web.ActivityPub.{Transmogrifier, MRF}
alias Pleroma.Web.WebFinger
alias Pleroma.Web.Federator
@@ -734,7 +734,7 @@ def should_federate?(inbox, public) do
end
def publish(actor, activity) do
- followers =
+ remote_followers =
if actor.follower_address in activity.recipients do
{:ok, followers} = User.get_followers(actor)
followers |> Enum.filter(&(!&1.local))
@@ -747,24 +747,26 @@ def publish(actor, activity) do
{:ok, data} = Transmogrifier.prepare_outgoing(activity.data)
json = Jason.encode!(data)
- (Pleroma.Web.Salmon.remote_users(activity) ++ followers)
+ (Pleroma.Web.Salmon.remote_users(activity) ++ remote_followers)
|> Enum.filter(fn user -> User.ap_enabled?(user) end)
|> Enum.map(fn %{info: %{source_data: data}} ->
(is_map(data["endpoints"]) && Map.get(data["endpoints"], "sharedInbox")) || data["inbox"]
end)
|> Enum.uniq()
|> Enum.filter(fn inbox -> should_federate?(inbox, public) end)
- |> Enum.each(fn inbox ->
+ |> Instances.filter_reachable()
+ |> Enum.each(fn {inbox, unreachable_since} ->
Federator.publish_single_ap(%{
inbox: inbox,
json: json,
actor: actor,
- id: activity.data["id"]
+ id: activity.data["id"],
+ unreachable_since: unreachable_since
})
end)
end
- def publish_one(%{inbox: inbox, json: json, actor: actor, id: id}) do
+ def publish_one(%{inbox: inbox, json: json, actor: actor, id: id} = params) do
Logger.info("Federating #{id} to #{inbox}")
host = URI.parse(inbox).host
@@ -777,15 +779,26 @@ def publish_one(%{inbox: inbox, json: json, actor: actor, id: id}) do
digest: digest
})
- @httpoison.post(
- inbox,
- json,
- [
- {"Content-Type", "application/activity+json"},
- {"signature", signature},
- {"digest", digest}
- ]
- )
+ with {:ok, %{status: code}} when code in 200..299 <-
+ result =
+ @httpoison.post(
+ inbox,
+ json,
+ [
+ {"Content-Type", "application/activity+json"},
+ {"signature", signature},
+ {"digest", digest}
+ ]
+ ) do
+ if !Map.has_key?(params, :unreachable_since) || params[:unreachable_since],
+ do: Instances.set_reachable(inbox)
+
+ result
+ else
+ {_post_result, response} ->
+ unless params[:unreachable_since], do: Instances.set_unreachable(inbox)
+ {:error, response}
+ end
end
# TODO:
diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex
index 04c6fef3f..96ac51862 100644
--- a/lib/pleroma/web/activity_pub/activity_pub_controller.ex
+++ b/lib/pleroma/web/activity_pub/activity_pub_controller.ex
@@ -4,6 +4,7 @@
defmodule Pleroma.Web.ActivityPub.ActivityPubController do
use Pleroma.Web, :controller
+
alias Pleroma.{Activity, User, Object}
alias Pleroma.Web.ActivityPub.{ObjectView, UserView}
alias Pleroma.Web.ActivityPub.ActivityPub
@@ -17,6 +18,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do
action_fallback(:errors)
plug(Pleroma.Web.FederatingPlug when action in [:inbox, :relay])
+ plug(:set_requester_reachable when action in [:inbox])
plug(:relay_active? when action in [:relay])
def relay_active?(conn, _) do
@@ -289,4 +291,13 @@ def errors(conn, _e) do
|> put_status(500)
|> json("error")
end
+
+ defp set_requester_reachable(%Plug.Conn{} = conn, _) do
+ with actor <- conn.params["actor"],
+ true <- is_binary(actor) do
+ Pleroma.Instances.set_reachable(actor)
+ end
+
+ conn
+ end
end
diff --git a/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex b/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex
index a3f516ae7..4c6e612b2 100644
--- a/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex
+++ b/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex
@@ -3,20 +3,46 @@
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
+ alias Pleroma.User
@behaviour Pleroma.Web.ActivityPub.MRF
- @impl true
- def filter(%{"type" => "Create"} = object) do
- threshold = Pleroma.Config.get([:mrf_hellthread, :threshold])
- recipients = (object["to"] || []) ++ (object["cc"] || [])
+ defp delist_message(message) do
+ follower_collection = User.get_cached_by_ap_id(message["actor"]).follower_address
- if length(recipients) > threshold do
- {:reject, nil}
- else
- {:ok, object}
+ message
+ |> Map.put("to", [follower_collection])
+ |> Map.put("cc", ["https://www.w3.org/ns/activitystreams#Public"])
+ end
+
+ @impl true
+ def filter(%{"type" => "Create"} = message) do
+ delist_threshold = Pleroma.Config.get([:mrf_hellthread, :delist_threshold])
+
+ reject_threshold =
+ Pleroma.Config.get(
+ [:mrf_hellthread, :reject_threshold],
+ Pleroma.Config.get([:mrf_hellthread, :threshold])
+ )
+
+ recipients = (message["to"] || []) ++ (message["cc"] || [])
+
+ cond do
+ length(recipients) > reject_threshold and reject_threshold > 0 ->
+ {:reject, nil}
+
+ length(recipients) > delist_threshold and delist_threshold > 0 ->
+ if Enum.member?(message["to"], "https://www.w3.org/ns/activitystreams#Public") or
+ Enum.member?(message["cc"], "https://www.w3.org/ns/activitystreams#Public") do
+ {:ok, delist_message(message)}
+ else
+ {:ok, message}
+ end
+
+ true ->
+ {:ok, message}
end
end
@impl true
- def filter(object), do: {:ok, object}
+ def filter(message), do: {:ok, message}
end
diff --git a/lib/pleroma/web/activity_pub/utils.ex b/lib/pleroma/web/activity_pub/utils.ex
index 3d254498c..83086dcec 100644
--- a/lib/pleroma/web/activity_pub/utils.ex
+++ b/lib/pleroma/web/activity_pub/utils.ex
@@ -285,7 +285,7 @@ def update_element_in_object(property, element, object) do
|> Map.put("#{property}_count", length(element))
|> Map.put("#{property}s", element),
changeset <- Changeset.change(object, data: new_data),
- {:ok, object} <- Repo.update(changeset),
+ {:ok, object} <- Object.update_and_set_cache(changeset),
_ <- update_object_in_activities(object) do
{:ok, object}
end
diff --git a/lib/pleroma/web/endpoint.ex b/lib/pleroma/web/endpoint.ex
index 0b4ce9cc4..3eed047ca 100644
--- a/lib/pleroma/web/endpoint.ex
+++ b/lib/pleroma/web/endpoint.ex
@@ -25,7 +25,7 @@ defmodule Pleroma.Web.Endpoint do
at: "/",
from: :pleroma,
only:
- ~w(index.html static finmoji emoji packs sounds images instance sw.js favicon.png schemas doc)
+ ~w(index.html static finmoji emoji packs sounds images instance sw.js sw-pleroma.js favicon.png schemas doc)
)
# Code reloading can be explicitly enabled under the
@@ -82,4 +82,8 @@ def load_from_system_env(config) do
port = System.get_env("PORT") || raise "expected the PORT environment variable to be set"
{:ok, Keyword.put(config, :http, [:inet6, port: port])}
end
+
+ def websocket_url do
+ String.replace_leading(url(), "http", "ws")
+ end
end
diff --git a/lib/pleroma/web/federator/federator.ex b/lib/pleroma/web/federator/federator.ex
index 4d03b4622..37100c9e6 100644
--- a/lib/pleroma/web/federator/federator.ex
+++ b/lib/pleroma/web/federator/federator.ex
@@ -6,7 +6,7 @@ defmodule Pleroma.Web.Federator do
alias Pleroma.User
alias Pleroma.Activity
alias Pleroma.Jobs
- alias Pleroma.Web.{WebFinger, Websub}
+ alias Pleroma.Web.{WebFinger, Websub, Salmon}
alias Pleroma.Web.Federator.RetryQueue
alias Pleroma.Web.ActivityPub.ActivityPub
alias Pleroma.Web.ActivityPub.Relay
@@ -58,6 +58,10 @@ def refresh_subscriptions() do
Jobs.enqueue(:federator_out, __MODULE__, [:refresh_subscriptions])
end
+ def publish_single_salmon(params) do
+ Jobs.enqueue(:federator_out, __MODULE__, [:publish_single_salmon, params])
+ end
+
# Job Worker Callbacks
def perform(:refresh_subscriptions) do
@@ -145,6 +149,10 @@ def perform(:incoming_ap_doc, params) do
end
end
+ def perform(:publish_single_salmon, params) do
+ Salmon.send_to_user(params)
+ end
+
def perform(:publish_single_ap, params) do
case ActivityPub.publish_one(params) do
{:ok, _} ->
diff --git a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
index a92645ca3..7f3fbff4a 100644
--- a/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
+++ b/lib/pleroma/web/mastodon_api/mastodon_api_controller.ex
@@ -138,7 +138,7 @@ def masto_instance(conn, _params) do
version: "#{@mastodon_api_level} (compatible; #{Pleroma.Application.named_version()})",
email: Keyword.get(instance, :email),
urls: %{
- streaming_api: String.replace(Pleroma.Web.Endpoint.static_url(), "http", "ws")
+ streaming_api: Pleroma.Web.Endpoint.websocket_url()
},
stats: Stats.get_stats(),
thumbnail: Web.base_url() <> "/instance/thumbnail.jpeg",
@@ -423,6 +423,28 @@ def unpin_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
end
end
+ def bookmark_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
+ with %Activity{} = activity <- Repo.get(Activity, id),
+ %User{} = user <- User.get_by_nickname(user.nickname),
+ true <- ActivityPub.visible_for_user?(activity, user),
+ {:ok, user} <- User.bookmark(user, activity.data["object"]["id"]) do
+ conn
+ |> put_view(StatusView)
+ |> try_render("status.json", %{activity: activity, for: user, as: :activity})
+ end
+ end
+
+ def unbookmark_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
+ with %Activity{} = activity <- Repo.get(Activity, id),
+ %User{} = user <- User.get_by_nickname(user.nickname),
+ true <- ActivityPub.visible_for_user?(activity, user),
+ {:ok, user} <- User.unbookmark(user, activity.data["object"]["id"]) do
+ conn
+ |> put_view(StatusView)
+ |> try_render("status.json", %{activity: activity, for: user, as: :activity})
+ end
+ end
+
def notifications(%{assigns: %{user: user}} = conn, params) do
notifications = Notification.for_user(user, params)
@@ -859,6 +881,19 @@ def favourites(%{assigns: %{user: user}} = conn, params) do
|> render("index.json", %{activities: activities, for: user, as: :activity})
end
+ def bookmarks(%{assigns: %{user: user}} = conn, _) do
+ user = Repo.get(User, user.id)
+
+ activities =
+ user.bookmarks
+ |> Enum.map(fn id -> Activity.get_create_by_object_ap_id(id) end)
+ |> Enum.reverse()
+
+ conn
+ |> put_view(StatusView)
+ |> render("index.json", %{activities: activities, for: user, as: :activity})
+ end
+
def get_lists(%{assigns: %{user: user}} = conn, opts) do
lists = Pleroma.List.for_user(user, opts)
res = ListView.render("lists.json", lists: lists)
@@ -870,7 +905,10 @@ def get_list(%{assigns: %{user: user}} = conn, %{"id" => id}) do
res = ListView.render("list.json", list: list)
json(conn, res)
else
- _e -> json(conn, "error")
+ _e ->
+ conn
+ |> put_status(404)
+ |> json(%{error: "Record not found"})
end
end
diff --git a/lib/pleroma/web/mastodon_api/views/status_view.ex b/lib/pleroma/web/mastodon_api/views/status_view.ex
index b14ca9f5d..d5b7e68c7 100644
--- a/lib/pleroma/web/mastodon_api/views/status_view.ex
+++ b/lib/pleroma/web/mastodon_api/views/status_view.ex
@@ -87,6 +87,7 @@ def render(
favourites_count: 0,
reblogged: false,
favourited: false,
+ bookmarked: false,
muted: false,
pinned: pinned?(activity, user),
sensitive: false,
@@ -121,6 +122,7 @@ def render("status.json", %{activity: %{data: %{"object" => object}} = activity}
repeated = opts[:for] && opts[:for].ap_id in (object["announcements"] || [])
favorited = opts[:for] && opts[:for].ap_id in (object["likes"] || [])
+ bookmarked = opts[:for] && object["id"] in opts[:for].bookmarks
attachment_data = object["attachment"] || []
attachments = render_many(attachment_data, StatusView, "attachment.json", as: :attachment)
@@ -157,6 +159,7 @@ def render("status.json", %{activity: %{data: %{"object" => object}} = activity}
favourites_count: like_count,
reblogged: present?(repeated),
favourited: present?(favorited),
+ bookmarked: present?(bookmarked),
muted: false,
pinned: pinned?(activity, user),
sensitive: sensitive,
diff --git a/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex b/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex
index 11b97164d..21694a5ee 100644
--- a/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex
+++ b/lib/pleroma/web/nodeinfo/nodeinfo_controller.ex
@@ -19,6 +19,10 @@ def schemas(conn, _params) do
%{
rel: "http://nodeinfo.diaspora.software/ns/schema/2.0",
href: Web.base_url() <> "/nodeinfo/2.0.json"
+ },
+ %{
+ rel: "http://nodeinfo.diaspora.software/ns/schema/2.1",
+ href: Web.base_url() <> "/nodeinfo/2.1.json"
}
]
}
@@ -26,8 +30,9 @@ def schemas(conn, _params) do
json(conn, response)
end
- # Schema definition: https://github.com/jhass/nodeinfo/blob/master/schemas/2.0/schema.json
- def nodeinfo(conn, %{"version" => "2.0"}) do
+ # returns a nodeinfo 2.0 map, since 2.1 just adds a repository field
+ # under software.
+ def raw_nodeinfo() do
instance = Application.get_env(:pleroma, :instance)
media_proxy = Application.get_env(:pleroma, :media_proxy)
suggestions = Application.get_env(:pleroma, :suggestions)
@@ -98,10 +103,10 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
]
|> Enum.filter(& &1)
- response = %{
+ %{
version: "2.0",
software: %{
- name: Pleroma.Application.name(),
+ name: Pleroma.Application.name() |> String.downcase(),
version: Pleroma.Application.version()
},
protocols: ["ostatus", "activitypub"],
@@ -142,12 +147,37 @@ def nodeinfo(conn, %{"version" => "2.0"}) do
restrictedNicknames: Pleroma.Config.get([Pleroma.User, :restricted_nicknames])
}
}
+ end
+ # Schema definition: https://github.com/jhass/nodeinfo/blob/master/schemas/2.0/schema.json
+ # and https://github.com/jhass/nodeinfo/blob/master/schemas/2.1/schema.json
+ def nodeinfo(conn, %{"version" => "2.0"}) do
conn
|> put_resp_header(
"content-type",
"application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.0#; charset=utf-8"
)
+ |> json(raw_nodeinfo())
+ end
+
+ def nodeinfo(conn, %{"version" => "2.1"}) do
+ raw_response = raw_nodeinfo()
+
+ updated_software =
+ raw_response
+ |> Map.get(:software)
+ |> Map.put(:repository, Pleroma.Application.repository())
+
+ response =
+ raw_response
+ |> Map.put(:software, updated_software)
+ |> Map.put(:version, "2.1")
+
+ conn
+ |> put_resp_header(
+ "content-type",
+ "application/json; profile=http://nodeinfo.diaspora.software/ns/schema/2.1#; charset=utf-8"
+ )
|> json(response)
end
diff --git a/lib/pleroma/web/ostatus/ostatus.ex b/lib/pleroma/web/ostatus/ostatus.ex
index a3155b79d..a20ca17bb 100644
--- a/lib/pleroma/web/ostatus/ostatus.ex
+++ b/lib/pleroma/web/ostatus/ostatus.ex
@@ -48,6 +48,9 @@ def remote_follow_path do
def handle_incoming(xml_string) do
with doc when doc != :error <- parse_document(xml_string) do
+ with {:ok, actor_user} <- find_make_or_update_user(doc),
+ do: Pleroma.Instances.set_reachable(actor_user.ap_id)
+
entries = :xmerl_xpath.string('//entry', doc)
activities =
diff --git a/lib/pleroma/web/ostatus/ostatus_controller.ex b/lib/pleroma/web/ostatus/ostatus_controller.ex
index ffd3a24dc..9ad3d3bd1 100644
--- a/lib/pleroma/web/ostatus/ostatus_controller.ex
+++ b/lib/pleroma/web/ostatus/ostatus_controller.ex
@@ -14,6 +14,7 @@ defmodule Pleroma.Web.OStatus.OStatusController do
alias Pleroma.Web.ActivityPub.ActivityPub
plug(Pleroma.Web.FederatingPlug when action in [:salmon_incoming])
+
action_fallback(:errors)
def feed_redirect(conn, %{"nickname" => nickname}) do
diff --git a/lib/pleroma/web/rich_media/helpers.ex b/lib/pleroma/web/rich_media/helpers.ex
index 71fdddef9..521fa7ee0 100644
--- a/lib/pleroma/web/rich_media/helpers.ex
+++ b/lib/pleroma/web/rich_media/helpers.ex
@@ -7,7 +7,8 @@ defmodule Pleroma.Web.RichMedia.Helpers do
alias Pleroma.Web.RichMedia.Parser
def fetch_data_for_activity(%Activity{} = activity) do
- with %Object{} = object <- Object.normalize(activity.data["object"]),
+ with true <- Pleroma.Config.get([:rich_media, :enabled]),
+ %Object{} = object <- Object.normalize(activity.data["object"]),
{:ok, page_url} <- HTML.extract_first_external_url(object, object.data["content"]),
{:ok, rich_media} <- Parser.parse(page_url) do
%{page_url: page_url, rich_media: rich_media}
diff --git a/lib/pleroma/web/rich_media/parser.ex b/lib/pleroma/web/rich_media/parser.ex
index e67ecc47d..32dec9887 100644
--- a/lib/pleroma/web/rich_media/parser.ex
+++ b/lib/pleroma/web/rich_media/parser.ex
@@ -30,7 +30,7 @@ defp parse_url(url) do
try do
{:ok, %Tesla.Env{body: html}} = Pleroma.HTTP.get(url, [], adapter: [pool: :media])
- html |> maybe_parse() |> get_parsed_data()
+ html |> maybe_parse() |> clean_parsed_data() |> check_parsed_data()
rescue
e ->
{:error, "Parsing error: #{inspect(e)}"}
@@ -46,11 +46,33 @@ defp maybe_parse(html) do
end)
end
- defp get_parsed_data(%{title: title} = data) when is_binary(title) and byte_size(title) > 0 do
+ defp check_parsed_data(%{title: title} = data) when is_binary(title) and byte_size(title) > 0 do
{:ok, data}
end
- defp get_parsed_data(data) do
+ defp check_parsed_data(data) do
{:error, "Found metadata was invalid or incomplete: #{inspect(data)}"}
end
+
+ defp string_is_valid_unicode(data) when is_binary(data) do
+ data
+ |> :unicode.characters_to_binary()
+ |> clean_string()
+ end
+
+ defp string_is_valid_unicode(data), do: {:ok, data}
+
+ defp clean_string({:error, _, _}), do: {:error, "Invalid data"}
+ defp clean_string(data), do: {:ok, data}
+
+ defp clean_parsed_data(data) do
+ data
+ |> Enum.reject(fn {_, val} ->
+ case string_is_valid_unicode(val) do
+ {:ok, _} -> false
+ _ -> true
+ end
+ end)
+ |> Map.new()
+ end
end
diff --git a/lib/pleroma/web/router.ex b/lib/pleroma/web/router.ex
index bfa10451a..c6b4d37ab 100644
--- a/lib/pleroma/web/router.ex
+++ b/lib/pleroma/web/router.ex
@@ -185,6 +185,7 @@ defmodule Pleroma.Web.Router do
get("/timelines/direct", MastodonAPIController, :dm_timeline)
get("/favourites", MastodonAPIController, :favourites)
+ get("/bookmarks", MastodonAPIController, :bookmarks)
post("/statuses", MastodonAPIController, :post_status)
delete("/statuses/:id", MastodonAPIController, :delete_status)
@@ -195,6 +196,8 @@ defmodule Pleroma.Web.Router do
post("/statuses/:id/unfavourite", MastodonAPIController, :unfav_status)
post("/statuses/:id/pin", MastodonAPIController, :pin_status)
post("/statuses/:id/unpin", MastodonAPIController, :unpin_status)
+ post("/statuses/:id/bookmark", MastodonAPIController, :bookmark_status)
+ post("/statuses/:id/unbookmark", MastodonAPIController, :unbookmark_status)
post("/notifications/clear", MastodonAPIController, :clear_notifications)
post("/notifications/dismiss", MastodonAPIController, :dismiss_notification)
diff --git a/lib/pleroma/web/salmon/salmon.ex b/lib/pleroma/web/salmon/salmon.ex
index e41657da1..3db0c07fd 100644
--- a/lib/pleroma/web/salmon/salmon.ex
+++ b/lib/pleroma/web/salmon/salmon.ex
@@ -6,6 +6,7 @@ defmodule Pleroma.Web.Salmon do
@httpoison Application.get_env(:pleroma, :httpoison)
use Bitwise
+ alias Pleroma.Instances
alias Pleroma.Web.XML
alias Pleroma.Web.OStatus.ActivityRepresenter
alias Pleroma.User
@@ -161,25 +162,31 @@ def remote_users(%{data: %{"to" => to} = data}) do
|> Enum.filter(fn user -> user && !user.local end)
end
- # push an activity to remote accounts
- #
- defp send_to_user(%{info: %{salmon: salmon}}, feed, poster),
- do: send_to_user(salmon, feed, poster)
+ @doc "Pushes an activity to remote account."
+ def send_to_user(%{recipient: %{info: %{salmon: salmon}}} = params),
+ do: send_to_user(Map.put(params, :recipient, salmon))
- defp send_to_user(url, feed, poster) when is_binary(url) do
- with {:ok, %{status: code}} <-
+ def send_to_user(%{recipient: url, feed: feed, poster: poster} = params) when is_binary(url) do
+ with {:ok, %{status: code}} when code in 200..299 <-
poster.(
url,
feed,
[{"Content-Type", "application/magic-envelope+xml"}]
) do
+ if !Map.has_key?(params, :unreachable_since) || params[:unreachable_since],
+ do: Instances.set_reachable(url)
+
Logger.debug(fn -> "Pushed to #{url}, code #{code}" end)
+ :ok
else
- e -> Logger.debug(fn -> "Pushing Salmon to #{url} failed, #{inspect(e)}" end)
+ e ->
+ unless params[:unreachable_since], do: Instances.set_reachable(url)
+ Logger.debug(fn -> "Pushing Salmon to #{url} failed, #{inspect(e)}" end)
+ :error
end
end
- defp send_to_user(_, _, _), do: nil
+ def send_to_user(_), do: :noop
@supported_activities [
"Create",
@@ -209,12 +216,23 @@ def publish(%{info: %{keys: keys}} = user, %{data: %{"type" => type}} = activity
{:ok, private, _} = keys_from_pem(keys)
{:ok, feed} = encode(private, feed)
- remote_users(activity)
+ remote_users = remote_users(activity)
+
+ salmon_urls = Enum.map(remote_users, & &1.info.salmon)
+ reachable_urls_metadata = Instances.filter_reachable(salmon_urls)
+ reachable_urls = Map.keys(reachable_urls_metadata)
+
+ remote_users
+ |> Enum.filter(&(&1.info.salmon in reachable_urls))
|> Enum.each(fn remote_user ->
- Task.start(fn ->
- Logger.debug(fn -> "Sending Salmon to #{remote_user.ap_id}" end)
- send_to_user(remote_user, feed, poster)
- end)
+ Logger.debug(fn -> "Sending Salmon to #{remote_user.ap_id}" end)
+
+ Pleroma.Web.Federator.publish_single_salmon(%{
+ recipient: remote_user,
+ feed: feed,
+ poster: poster,
+ unreachable_since: reachable_urls_metadata[remote_user.info.salmon]
+ })
end)
end
end
diff --git a/lib/pleroma/web/templates/layout/app.html.eex b/lib/pleroma/web/templates/layout/app.html.eex
index 2e96c1509..8dd3284d6 100644
--- a/lib/pleroma/web/templates/layout/app.html.eex
+++ b/lib/pleroma/web/templates/layout/app.html.eex
@@ -1,7 +1,8 @@
-
diff --git a/lib/pleroma/web/websub/websub.ex b/lib/pleroma/web/websub/websub.ex
index 652ffd92c..82845f13d 100644
--- a/lib/pleroma/web/websub/websub.ex
+++ b/lib/pleroma/web/websub/websub.ex
@@ -5,6 +5,7 @@
defmodule Pleroma.Web.Websub do
alias Ecto.Changeset
alias Pleroma.Repo
+ alias Pleroma.Instances
alias Pleroma.Web.Websub.{WebsubServerSubscription, WebsubClientSubscription}
alias Pleroma.Web.OStatus.FeedRepresenter
alias Pleroma.Web.{XML, Endpoint, OStatus, Federator}
@@ -53,28 +54,34 @@ def verify(subscription, getter \\ &@httpoison.get/3) do
]
def publish(topic, user, %{data: %{"type" => type}} = activity)
when type in @supported_activities do
- # TODO: Only send to still valid subscriptions.
+ response =
+ user
+ |> FeedRepresenter.to_simple_form([activity], [user])
+ |> :xmerl.export_simple(:xmerl_xml)
+ |> to_string
+
query =
from(
sub in WebsubServerSubscription,
where: sub.topic == ^topic and sub.state == "active",
- where: fragment("? > NOW()", sub.valid_until)
+ where: fragment("? > (NOW() at time zone 'UTC')", sub.valid_until)
)
subscriptions = Repo.all(query)
- Enum.each(subscriptions, fn sub ->
- response =
- user
- |> FeedRepresenter.to_simple_form([activity], [user])
- |> :xmerl.export_simple(:xmerl_xml)
- |> to_string
+ callbacks = Enum.map(subscriptions, & &1.callback)
+ reachable_callbacks_metadata = Instances.filter_reachable(callbacks)
+ reachable_callbacks = Map.keys(reachable_callbacks_metadata)
+ subscriptions
+ |> Enum.filter(&(&1.callback in reachable_callbacks))
+ |> Enum.each(fn sub ->
data = %{
xml: response,
topic: topic,
callback: sub.callback,
- secret: sub.secret
+ secret: sub.secret,
+ unreachable_since: reachable_callbacks_metadata[sub.callback]
}
Federator.publish_single_websub(data)
@@ -263,11 +270,11 @@ def refresh_subscriptions(delta \\ 60 * 60 * 24) do
end)
end
- def publish_one(%{xml: xml, topic: topic, callback: callback, secret: secret}) do
+ def publish_one(%{xml: xml, topic: topic, callback: callback, secret: secret} = params) do
signature = sign(secret || "", xml)
Logger.info(fn -> "Pushing #{topic} to #{callback}" end)
- with {:ok, %{status: code}} <-
+ with {:ok, %{status: code}} when code in 200..299 <-
@httpoison.post(
callback,
xml,
@@ -276,12 +283,16 @@ def publish_one(%{xml: xml, topic: topic, callback: callback, secret: secret}) d
{"X-Hub-Signature", "sha1=#{signature}"}
]
) do
+ if !Map.has_key?(params, :unreachable_since) || params[:unreachable_since],
+ do: Instances.set_reachable(callback)
+
Logger.info(fn -> "Pushed to #{callback}, code #{code}" end)
{:ok, code}
else
- e ->
- Logger.debug(fn -> "Couldn't push to #{callback}, #{inspect(e)}" end)
- {:error, e}
+ {_post_result, response} ->
+ unless params[:unreachable_since], do: Instances.set_reachable(callback)
+ Logger.debug(fn -> "Couldn't push to #{callback}, #{inspect(response)}" end)
+ {:error, response}
end
end
end
diff --git a/lib/pleroma/web/websub/websub_controller.ex b/lib/pleroma/web/websub/websub_controller.ex
index eb10227cb..41bbc0369 100644
--- a/lib/pleroma/web/websub/websub_controller.ex
+++ b/lib/pleroma/web/websub/websub_controller.ex
@@ -4,9 +4,11 @@
defmodule Pleroma.Web.Websub.WebsubController do
use Pleroma.Web, :controller
+
alias Pleroma.{Repo, User}
alias Pleroma.Web.{Websub, Federator}
alias Pleroma.Web.Websub.WebsubClientSubscription
+
require Logger
plug(
diff --git a/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs b/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
new file mode 100644
index 000000000..55e97ae0e
--- /dev/null
+++ b/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
@@ -0,0 +1,9 @@
+defmodule Pleroma.Repo.Migrations.AddBookmarksToUsers do
+ use Ecto.Migration
+
+ def change do
+ alter table(:users) do
+ add :bookmarks, {:array, :string}, null: false, default: []
+ end
+ end
+end
diff --git a/priv/repo/migrations/20190123125546_create_instances.exs b/priv/repo/migrations/20190123125546_create_instances.exs
new file mode 100644
index 000000000..b527ad7ec
--- /dev/null
+++ b/priv/repo/migrations/20190123125546_create_instances.exs
@@ -0,0 +1,15 @@
+defmodule Pleroma.Repo.Migrations.CreateInstances do
+ use Ecto.Migration
+
+ def change do
+ create table(:instances) do
+ add :host, :string
+ add :unreachable_since, :naive_datetime
+
+ timestamps()
+ end
+
+ create unique_index(:instances, [:host])
+ create index(:instances, [:unreachable_since])
+ end
+end
diff --git a/priv/static/packs/MSSansSerif-a678e38bb3e20736cbed7a6925f24666.ttf b/priv/static/packs/MSSansSerif-a678e38bb3e20736cbed7a6925f24666.ttf
new file mode 100644
index 000000000..3afd76ff2
Binary files /dev/null and b/priv/static/packs/MSSansSerif-a678e38bb3e20736cbed7a6925f24666.ttf differ
diff --git a/priv/static/packs/about.js b/priv/static/packs/about.js
deleted file mode 100644
index 3a893b43d..000000000
Binary files a/priv/static/packs/about.js and /dev/null differ
diff --git a/priv/static/packs/about.js.map b/priv/static/packs/about.js.map
deleted file mode 100644
index f77ecc040..000000000
Binary files a/priv/static/packs/about.js.map and /dev/null differ
diff --git a/priv/static/packs/admin.js b/priv/static/packs/admin.js
deleted file mode 100644
index 8feed819e..000000000
Binary files a/priv/static/packs/admin.js and /dev/null differ
diff --git a/priv/static/packs/admin.js.map b/priv/static/packs/admin.js.map
deleted file mode 100644
index 62a749095..000000000
Binary files a/priv/static/packs/admin.js.map and /dev/null differ
diff --git a/priv/static/packs/application.js b/priv/static/packs/application.js
deleted file mode 100644
index d107877c7..000000000
Binary files a/priv/static/packs/application.js and /dev/null differ
diff --git a/priv/static/packs/application.js.map b/priv/static/packs/application.js.map
deleted file mode 100644
index 78a6f24e8..000000000
Binary files a/priv/static/packs/application.js.map and /dev/null differ
diff --git a/priv/static/packs/base_polyfills.js b/priv/static/packs/base_polyfills.js
index f773ae6ed..f737c92e0 100644
Binary files a/priv/static/packs/base_polyfills.js and b/priv/static/packs/base_polyfills.js differ
diff --git a/priv/static/packs/base_polyfills.js.map b/priv/static/packs/base_polyfills.js.map
index e3ab18c5d..24e7b15b7 100644
Binary files a/priv/static/packs/base_polyfills.js.map and b/priv/static/packs/base_polyfills.js.map differ
diff --git a/priv/static/packs/clippy_frame-3446d4d28d72aef2f64f7fabae30eb4a.png b/priv/static/packs/clippy_frame-3446d4d28d72aef2f64f7fabae30eb4a.png
new file mode 100644
index 000000000..7f2cd6a59
Binary files /dev/null and b/priv/static/packs/clippy_frame-3446d4d28d72aef2f64f7fabae30eb4a.png differ
diff --git a/priv/static/packs/clippy_wave-afb828463da264adbce26a3f17731f6c.gif b/priv/static/packs/clippy_wave-afb828463da264adbce26a3f17731f6c.gif
new file mode 100644
index 000000000..4d2e38a3d
Binary files /dev/null and b/priv/static/packs/clippy_wave-afb828463da264adbce26a3f17731f6c.gif differ
diff --git a/priv/static/packs/common.css b/priv/static/packs/common.css
deleted file mode 100644
index 30a23870d..000000000
Binary files a/priv/static/packs/common.css and /dev/null differ
diff --git a/priv/static/packs/common.css.map b/priv/static/packs/common.css.map
deleted file mode 100644
index a4d52e31d..000000000
--- a/priv/static/packs/common.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"common.css","sourcesContent":["/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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 infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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:\"\\F000\"}.fa-music:before{content:\"\\F001\"}.fa-search:before{content:\"\\F002\"}.fa-envelope-o:before{content:\"\\F003\"}.fa-heart:before{content:\"\\F004\"}.fa-star:before{content:\"\\F005\"}.fa-star-o:before{content:\"\\F006\"}.fa-user:before{content:\"\\F007\"}.fa-film:before{content:\"\\F008\"}.fa-th-large:before{content:\"\\F009\"}.fa-th:before{content:\"\\F00A\"}.fa-th-list:before{content:\"\\F00B\"}.fa-check:before{content:\"\\F00C\"}.fa-close:before,.fa-remove:before,.fa-times:before{content:\"\\F00D\"}.fa-search-plus:before{content:\"\\F00E\"}.fa-search-minus:before{content:\"\\F010\"}.fa-power-off:before{content:\"\\F011\"}.fa-signal:before{content:\"\\F012\"}.fa-cog:before,.fa-gear:before{content:\"\\F013\"}.fa-trash-o:before{content:\"\\F014\"}.fa-home:before{content:\"\\F015\"}.fa-file-o:before{content:\"\\F016\"}.fa-clock-o:before{content:\"\\F017\"}.fa-road:before{content:\"\\F018\"}.fa-download:before{content:\"\\F019\"}.fa-arrow-circle-o-down:before{content:\"\\F01A\"}.fa-arrow-circle-o-up:before{content:\"\\F01B\"}.fa-inbox:before{content:\"\\F01C\"}.fa-play-circle-o:before{content:\"\\F01D\"}.fa-repeat:before,.fa-rotate-right:before{content:\"\\F01E\"}.fa-refresh:before{content:\"\\F021\"}.fa-list-alt:before{content:\"\\F022\"}.fa-lock:before{content:\"\\F023\"}.fa-flag:before{content:\"\\F024\"}.fa-headphones:before{content:\"\\F025\"}.fa-volume-off:before{content:\"\\F026\"}.fa-volume-down:before{content:\"\\F027\"}.fa-volume-up:before{content:\"\\F028\"}.fa-qrcode:before{content:\"\\F029\"}.fa-barcode:before{content:\"\\F02A\"}.fa-tag:before{content:\"\\F02B\"}.fa-tags:before{content:\"\\F02C\"}.fa-book:before{content:\"\\F02D\"}.fa-bookmark:before{content:\"\\F02E\"}.fa-print:before{content:\"\\F02F\"}.fa-camera:before{content:\"\\F030\"}.fa-font:before{content:\"\\F031\"}.fa-bold:before{content:\"\\F032\"}.fa-italic:before{content:\"\\F033\"}.fa-text-height:before{content:\"\\F034\"}.fa-text-width:before{content:\"\\F035\"}.fa-align-left:before{content:\"\\F036\"}.fa-align-center:before{content:\"\\F037\"}.fa-align-right:before{content:\"\\F038\"}.fa-align-justify:before{content:\"\\F039\"}.fa-list:before{content:\"\\F03A\"}.fa-dedent:before,.fa-outdent:before{content:\"\\F03B\"}.fa-indent:before{content:\"\\F03C\"}.fa-video-camera:before{content:\"\\F03D\"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:\"\\F03E\"}.fa-pencil:before{content:\"\\F040\"}.fa-map-marker:before{content:\"\\F041\"}.fa-adjust:before{content:\"\\F042\"}.fa-tint:before{content:\"\\F043\"}.fa-edit:before,.fa-pencil-square-o:before{content:\"\\F044\"}.fa-share-square-o:before{content:\"\\F045\"}.fa-check-square-o:before{content:\"\\F046\"}.fa-arrows:before{content:\"\\F047\"}.fa-step-backward:before{content:\"\\F048\"}.fa-fast-backward:before{content:\"\\F049\"}.fa-backward:before{content:\"\\F04A\"}.fa-play:before{content:\"\\F04B\"}.fa-pause:before{content:\"\\F04C\"}.fa-stop:before{content:\"\\F04D\"}.fa-forward:before{content:\"\\F04E\"}.fa-fast-forward:before{content:\"\\F050\"}.fa-step-forward:before{content:\"\\F051\"}.fa-eject:before{content:\"\\F052\"}.fa-chevron-left:before{content:\"\\F053\"}.fa-chevron-right:before{content:\"\\F054\"}.fa-plus-circle:before{content:\"\\F055\"}.fa-minus-circle:before{content:\"\\F056\"}.fa-times-circle:before{content:\"\\F057\"}.fa-check-circle:before{content:\"\\F058\"}.fa-question-circle:before{content:\"\\F059\"}.fa-info-circle:before{content:\"\\F05A\"}.fa-crosshairs:before{content:\"\\F05B\"}.fa-times-circle-o:before{content:\"\\F05C\"}.fa-check-circle-o:before{content:\"\\F05D\"}.fa-ban:before{content:\"\\F05E\"}.fa-arrow-left:before{content:\"\\F060\"}.fa-arrow-right:before{content:\"\\F061\"}.fa-arrow-up:before{content:\"\\F062\"}.fa-arrow-down:before{content:\"\\F063\"}.fa-mail-forward:before,.fa-share:before{content:\"\\F064\"}.fa-expand:before{content:\"\\F065\"}.fa-compress:before{content:\"\\F066\"}.fa-plus:before{content:\"\\F067\"}.fa-minus:before{content:\"\\F068\"}.fa-asterisk:before{content:\"\\F069\"}.fa-exclamation-circle:before{content:\"\\F06A\"}.fa-gift:before{content:\"\\F06B\"}.fa-leaf:before{content:\"\\F06C\"}.fa-fire:before{content:\"\\F06D\"}.fa-eye:before{content:\"\\F06E\"}.fa-eye-slash:before{content:\"\\F070\"}.fa-exclamation-triangle:before,.fa-warning:before{content:\"\\F071\"}.fa-plane:before{content:\"\\F072\"}.fa-calendar:before{content:\"\\F073\"}.fa-random:before{content:\"\\F074\"}.fa-comment:before{content:\"\\F075\"}.fa-magnet:before{content:\"\\F076\"}.fa-chevron-up:before{content:\"\\F077\"}.fa-chevron-down:before{content:\"\\F078\"}.fa-retweet:before{content:\"\\F079\"}.fa-shopping-cart:before{content:\"\\F07A\"}.fa-folder:before{content:\"\\F07B\"}.fa-folder-open:before{content:\"\\F07C\"}.fa-arrows-v:before{content:\"\\F07D\"}.fa-arrows-h:before{content:\"\\F07E\"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:\"\\F080\"}.fa-twitter-square:before{content:\"\\F081\"}.fa-facebook-square:before{content:\"\\F082\"}.fa-camera-retro:before{content:\"\\F083\"}.fa-key:before{content:\"\\F084\"}.fa-cogs:before,.fa-gears:before{content:\"\\F085\"}.fa-comments:before{content:\"\\F086\"}.fa-thumbs-o-up:before{content:\"\\F087\"}.fa-thumbs-o-down:before{content:\"\\F088\"}.fa-star-half:before{content:\"\\F089\"}.fa-heart-o:before{content:\"\\F08A\"}.fa-sign-out:before{content:\"\\F08B\"}.fa-linkedin-square:before{content:\"\\F08C\"}.fa-thumb-tack:before{content:\"\\F08D\"}.fa-external-link:before{content:\"\\F08E\"}.fa-sign-in:before{content:\"\\F090\"}.fa-trophy:before{content:\"\\F091\"}.fa-github-square:before{content:\"\\F092\"}.fa-upload:before{content:\"\\F093\"}.fa-lemon-o:before{content:\"\\F094\"}.fa-phone:before{content:\"\\F095\"}.fa-square-o:before{content:\"\\F096\"}.fa-bookmark-o:before{content:\"\\F097\"}.fa-phone-square:before{content:\"\\F098\"}.fa-twitter:before{content:\"\\F099\"}.fa-facebook-f:before,.fa-facebook:before{content:\"\\F09A\"}.fa-github:before{content:\"\\F09B\"}.fa-unlock:before{content:\"\\F09C\"}.fa-credit-card:before{content:\"\\F09D\"}.fa-feed:before,.fa-rss:before{content:\"\\F09E\"}.fa-hdd-o:before{content:\"\\F0A0\"}.fa-bullhorn:before{content:\"\\F0A1\"}.fa-bell:before{content:\"\\F0F3\"}.fa-certificate:before{content:\"\\F0A3\"}.fa-hand-o-right:before{content:\"\\F0A4\"}.fa-hand-o-left:before{content:\"\\F0A5\"}.fa-hand-o-up:before{content:\"\\F0A6\"}.fa-hand-o-down:before{content:\"\\F0A7\"}.fa-arrow-circle-left:before{content:\"\\F0A8\"}.fa-arrow-circle-right:before{content:\"\\F0A9\"}.fa-arrow-circle-up:before{content:\"\\F0AA\"}.fa-arrow-circle-down:before{content:\"\\F0AB\"}.fa-globe:before{content:\"\\F0AC\"}.fa-wrench:before{content:\"\\F0AD\"}.fa-tasks:before{content:\"\\F0AE\"}.fa-filter:before{content:\"\\F0B0\"}.fa-briefcase:before{content:\"\\F0B1\"}.fa-arrows-alt:before{content:\"\\F0B2\"}.fa-group:before,.fa-users:before{content:\"\\F0C0\"}.fa-chain:before,.fa-link:before{content:\"\\F0C1\"}.fa-cloud:before{content:\"\\F0C2\"}.fa-flask:before{content:\"\\F0C3\"}.fa-cut:before,.fa-scissors:before{content:\"\\F0C4\"}.fa-copy:before,.fa-files-o:before{content:\"\\F0C5\"}.fa-paperclip:before{content:\"\\F0C6\"}.fa-floppy-o:before,.fa-save:before{content:\"\\F0C7\"}.fa-square:before{content:\"\\F0C8\"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:\"\\F0C9\"}.fa-list-ul:before{content:\"\\F0CA\"}.fa-list-ol:before{content:\"\\F0CB\"}.fa-strikethrough:before{content:\"\\F0CC\"}.fa-underline:before{content:\"\\F0CD\"}.fa-table:before{content:\"\\F0CE\"}.fa-magic:before{content:\"\\F0D0\"}.fa-truck:before{content:\"\\F0D1\"}.fa-pinterest:before{content:\"\\F0D2\"}.fa-pinterest-square:before{content:\"\\F0D3\"}.fa-google-plus-square:before{content:\"\\F0D4\"}.fa-google-plus:before{content:\"\\F0D5\"}.fa-money:before{content:\"\\F0D6\"}.fa-caret-down:before{content:\"\\F0D7\"}.fa-caret-up:before{content:\"\\F0D8\"}.fa-caret-left:before{content:\"\\F0D9\"}.fa-caret-right:before{content:\"\\F0DA\"}.fa-columns:before{content:\"\\F0DB\"}.fa-sort:before,.fa-unsorted:before{content:\"\\F0DC\"}.fa-sort-desc:before,.fa-sort-down:before{content:\"\\F0DD\"}.fa-sort-asc:before,.fa-sort-up:before{content:\"\\F0DE\"}.fa-envelope:before{content:\"\\F0E0\"}.fa-linkedin:before{content:\"\\F0E1\"}.fa-rotate-left:before,.fa-undo:before{content:\"\\F0E2\"}.fa-gavel:before,.fa-legal:before{content:\"\\F0E3\"}.fa-dashboard:before,.fa-tachometer:before{content:\"\\F0E4\"}.fa-comment-o:before{content:\"\\F0E5\"}.fa-comments-o:before{content:\"\\F0E6\"}.fa-bolt:before,.fa-flash:before{content:\"\\F0E7\"}.fa-sitemap:before{content:\"\\F0E8\"}.fa-umbrella:before{content:\"\\F0E9\"}.fa-clipboard:before,.fa-paste:before{content:\"\\F0EA\"}.fa-lightbulb-o:before{content:\"\\F0EB\"}.fa-exchange:before{content:\"\\F0EC\"}.fa-cloud-download:before{content:\"\\F0ED\"}.fa-cloud-upload:before{content:\"\\F0EE\"}.fa-user-md:before{content:\"\\F0F0\"}.fa-stethoscope:before{content:\"\\F0F1\"}.fa-suitcase:before{content:\"\\F0F2\"}.fa-bell-o:before{content:\"\\F0A2\"}.fa-coffee:before{content:\"\\F0F4\"}.fa-cutlery:before{content:\"\\F0F5\"}.fa-file-text-o:before{content:\"\\F0F6\"}.fa-building-o:before{content:\"\\F0F7\"}.fa-hospital-o:before{content:\"\\F0F8\"}.fa-ambulance:before{content:\"\\F0F9\"}.fa-medkit:before{content:\"\\F0FA\"}.fa-fighter-jet:before{content:\"\\F0FB\"}.fa-beer:before{content:\"\\F0FC\"}.fa-h-square:before{content:\"\\F0FD\"}.fa-plus-square:before{content:\"\\F0FE\"}.fa-angle-double-left:before{content:\"\\F100\"}.fa-angle-double-right:before{content:\"\\F101\"}.fa-angle-double-up:before{content:\"\\F102\"}.fa-angle-double-down:before{content:\"\\F103\"}.fa-angle-left:before{content:\"\\F104\"}.fa-angle-right:before{content:\"\\F105\"}.fa-angle-up:before{content:\"\\F106\"}.fa-angle-down:before{content:\"\\F107\"}.fa-desktop:before{content:\"\\F108\"}.fa-laptop:before{content:\"\\F109\"}.fa-tablet:before{content:\"\\F10A\"}.fa-mobile-phone:before,.fa-mobile:before{content:\"\\F10B\"}.fa-circle-o:before{content:\"\\F10C\"}.fa-quote-left:before{content:\"\\F10D\"}.fa-quote-right:before{content:\"\\F10E\"}.fa-spinner:before{content:\"\\F110\"}.fa-circle:before{content:\"\\F111\"}.fa-mail-reply:before,.fa-reply:before{content:\"\\F112\"}.fa-github-alt:before{content:\"\\F113\"}.fa-folder-o:before{content:\"\\F114\"}.fa-folder-open-o:before{content:\"\\F115\"}.fa-smile-o:before{content:\"\\F118\"}.fa-frown-o:before{content:\"\\F119\"}.fa-meh-o:before{content:\"\\F11A\"}.fa-gamepad:before{content:\"\\F11B\"}.fa-keyboard-o:before{content:\"\\F11C\"}.fa-flag-o:before{content:\"\\F11D\"}.fa-flag-checkered:before{content:\"\\F11E\"}.fa-terminal:before{content:\"\\F120\"}.fa-code:before{content:\"\\F121\"}.fa-mail-reply-all:before,.fa-reply-all:before{content:\"\\F122\"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:\"\\F123\"}.fa-location-arrow:before{content:\"\\F124\"}.fa-crop:before{content:\"\\F125\"}.fa-code-fork:before{content:\"\\F126\"}.fa-chain-broken:before,.fa-unlink:before{content:\"\\F127\"}.fa-question:before{content:\"\\F128\"}.fa-info:before{content:\"\\F129\"}.fa-exclamation:before{content:\"\\F12A\"}.fa-superscript:before{content:\"\\F12B\"}.fa-subscript:before{content:\"\\F12C\"}.fa-eraser:before{content:\"\\F12D\"}.fa-puzzle-piece:before{content:\"\\F12E\"}.fa-microphone:before{content:\"\\F130\"}.fa-microphone-slash:before{content:\"\\F131\"}.fa-shield:before{content:\"\\F132\"}.fa-calendar-o:before{content:\"\\F133\"}.fa-fire-extinguisher:before{content:\"\\F134\"}.fa-rocket:before{content:\"\\F135\"}.fa-maxcdn:before{content:\"\\F136\"}.fa-chevron-circle-left:before{content:\"\\F137\"}.fa-chevron-circle-right:before{content:\"\\F138\"}.fa-chevron-circle-up:before{content:\"\\F139\"}.fa-chevron-circle-down:before{content:\"\\F13A\"}.fa-html5:before{content:\"\\F13B\"}.fa-css3:before{content:\"\\F13C\"}.fa-anchor:before{content:\"\\F13D\"}.fa-unlock-alt:before{content:\"\\F13E\"}.fa-bullseye:before{content:\"\\F140\"}.fa-ellipsis-h:before{content:\"\\F141\"}.fa-ellipsis-v:before{content:\"\\F142\"}.fa-rss-square:before{content:\"\\F143\"}.fa-play-circle:before{content:\"\\F144\"}.fa-ticket:before{content:\"\\F145\"}.fa-minus-square:before{content:\"\\F146\"}.fa-minus-square-o:before{content:\"\\F147\"}.fa-level-up:before{content:\"\\F148\"}.fa-level-down:before{content:\"\\F149\"}.fa-check-square:before{content:\"\\F14A\"}.fa-pencil-square:before{content:\"\\F14B\"}.fa-external-link-square:before{content:\"\\F14C\"}.fa-share-square:before{content:\"\\F14D\"}.fa-compass:before{content:\"\\F14E\"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:\"\\F150\"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:\"\\F151\"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:\"\\F152\"}.fa-eur:before,.fa-euro:before{content:\"\\F153\"}.fa-gbp:before{content:\"\\F154\"}.fa-dollar:before,.fa-usd:before{content:\"\\F155\"}.fa-inr:before,.fa-rupee:before{content:\"\\F156\"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:\"\\F157\"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:\"\\F158\"}.fa-krw:before,.fa-won:before{content:\"\\F159\"}.fa-bitcoin:before,.fa-btc:before{content:\"\\F15A\"}.fa-file:before{content:\"\\F15B\"}.fa-file-text:before{content:\"\\F15C\"}.fa-sort-alpha-asc:before{content:\"\\F15D\"}.fa-sort-alpha-desc:before{content:\"\\F15E\"}.fa-sort-amount-asc:before{content:\"\\F160\"}.fa-sort-amount-desc:before{content:\"\\F161\"}.fa-sort-numeric-asc:before{content:\"\\F162\"}.fa-sort-numeric-desc:before{content:\"\\F163\"}.fa-thumbs-up:before{content:\"\\F164\"}.fa-thumbs-down:before{content:\"\\F165\"}.fa-youtube-square:before{content:\"\\F166\"}.fa-youtube:before{content:\"\\F167\"}.fa-xing:before{content:\"\\F168\"}.fa-xing-square:before{content:\"\\F169\"}.fa-youtube-play:before{content:\"\\F16A\"}.fa-dropbox:before{content:\"\\F16B\"}.fa-stack-overflow:before{content:\"\\F16C\"}.fa-instagram:before{content:\"\\F16D\"}.fa-flickr:before{content:\"\\F16E\"}.fa-adn:before{content:\"\\F170\"}.fa-bitbucket:before{content:\"\\F171\"}.fa-bitbucket-square:before{content:\"\\F172\"}.fa-tumblr:before{content:\"\\F173\"}.fa-tumblr-square:before{content:\"\\F174\"}.fa-long-arrow-down:before{content:\"\\F175\"}.fa-long-arrow-up:before{content:\"\\F176\"}.fa-long-arrow-left:before{content:\"\\F177\"}.fa-long-arrow-right:before{content:\"\\F178\"}.fa-apple:before{content:\"\\F179\"}.fa-windows:before{content:\"\\F17A\"}.fa-android:before{content:\"\\F17B\"}.fa-linux:before{content:\"\\F17C\"}.fa-dribbble:before{content:\"\\F17D\"}.fa-skype:before{content:\"\\F17E\"}.fa-foursquare:before{content:\"\\F180\"}.fa-trello:before{content:\"\\F181\"}.fa-female:before{content:\"\\F182\"}.fa-male:before{content:\"\\F183\"}.fa-gittip:before,.fa-gratipay:before{content:\"\\F184\"}.fa-sun-o:before{content:\"\\F185\"}.fa-moon-o:before{content:\"\\F186\"}.fa-archive:before{content:\"\\F187\"}.fa-bug:before{content:\"\\F188\"}.fa-vk:before{content:\"\\F189\"}.fa-weibo:before{content:\"\\F18A\"}.fa-renren:before{content:\"\\F18B\"}.fa-pagelines:before{content:\"\\F18C\"}.fa-stack-exchange:before{content:\"\\F18D\"}.fa-arrow-circle-o-right:before{content:\"\\F18E\"}.fa-arrow-circle-o-left:before{content:\"\\F190\"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:\"\\F191\"}.fa-dot-circle-o:before{content:\"\\F192\"}.fa-wheelchair:before{content:\"\\F193\"}.fa-vimeo-square:before{content:\"\\F194\"}.fa-try:before,.fa-turkish-lira:before{content:\"\\F195\"}.fa-plus-square-o:before{content:\"\\F196\"}.fa-space-shuttle:before{content:\"\\F197\"}.fa-slack:before{content:\"\\F198\"}.fa-envelope-square:before{content:\"\\F199\"}.fa-wordpress:before{content:\"\\F19A\"}.fa-openid:before{content:\"\\F19B\"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:\"\\F19C\"}.fa-graduation-cap:before,.fa-mortar-board:before{content:\"\\F19D\"}.fa-yahoo:before{content:\"\\F19E\"}.fa-google:before{content:\"\\F1A0\"}.fa-reddit:before{content:\"\\F1A1\"}.fa-reddit-square:before{content:\"\\F1A2\"}.fa-stumbleupon-circle:before{content:\"\\F1A3\"}.fa-stumbleupon:before{content:\"\\F1A4\"}.fa-delicious:before{content:\"\\F1A5\"}.fa-digg:before{content:\"\\F1A6\"}.fa-pied-piper-pp:before{content:\"\\F1A7\"}.fa-pied-piper-alt:before{content:\"\\F1A8\"}.fa-drupal:before{content:\"\\F1A9\"}.fa-joomla:before{content:\"\\F1AA\"}.fa-language:before{content:\"\\F1AB\"}.fa-fax:before{content:\"\\F1AC\"}.fa-building:before{content:\"\\F1AD\"}.fa-child:before{content:\"\\F1AE\"}.fa-paw:before{content:\"\\F1B0\"}.fa-spoon:before{content:\"\\F1B1\"}.fa-cube:before{content:\"\\F1B2\"}.fa-cubes:before{content:\"\\F1B3\"}.fa-behance:before{content:\"\\F1B4\"}.fa-behance-square:before{content:\"\\F1B5\"}.fa-steam:before{content:\"\\F1B6\"}.fa-steam-square:before{content:\"\\F1B7\"}.fa-recycle:before{content:\"\\F1B8\"}.fa-automobile:before,.fa-car:before{content:\"\\F1B9\"}.fa-cab:before,.fa-taxi:before{content:\"\\F1BA\"}.fa-tree:before{content:\"\\F1BB\"}.fa-spotify:before{content:\"\\F1BC\"}.fa-deviantart:before{content:\"\\F1BD\"}.fa-soundcloud:before{content:\"\\F1BE\"}.fa-database:before{content:\"\\F1C0\"}.fa-file-pdf-o:before{content:\"\\F1C1\"}.fa-file-word-o:before{content:\"\\F1C2\"}.fa-file-excel-o:before{content:\"\\F1C3\"}.fa-file-powerpoint-o:before{content:\"\\F1C4\"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:\"\\F1C5\"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:\"\\F1C6\"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:\"\\F1C7\"}.fa-file-movie-o:before,.fa-file-video-o:before{content:\"\\F1C8\"}.fa-file-code-o:before{content:\"\\F1C9\"}.fa-vine:before{content:\"\\F1CA\"}.fa-codepen:before{content:\"\\F1CB\"}.fa-jsfiddle:before{content:\"\\F1CC\"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:\"\\F1CD\"}.fa-circle-o-notch:before{content:\"\\F1CE\"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:\"\\F1D0\"}.fa-empire:before,.fa-ge:before{content:\"\\F1D1\"}.fa-git-square:before{content:\"\\F1D2\"}.fa-git:before{content:\"\\F1D3\"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:\"\\F1D4\"}.fa-tencent-weibo:before{content:\"\\F1D5\"}.fa-qq:before{content:\"\\F1D6\"}.fa-wechat:before,.fa-weixin:before{content:\"\\F1D7\"}.fa-paper-plane:before,.fa-send:before{content:\"\\F1D8\"}.fa-paper-plane-o:before,.fa-send-o:before{content:\"\\F1D9\"}.fa-history:before{content:\"\\F1DA\"}.fa-circle-thin:before{content:\"\\F1DB\"}.fa-header:before{content:\"\\F1DC\"}.fa-paragraph:before{content:\"\\F1DD\"}.fa-sliders:before{content:\"\\F1DE\"}.fa-share-alt:before{content:\"\\F1E0\"}.fa-share-alt-square:before{content:\"\\F1E1\"}.fa-bomb:before{content:\"\\F1E2\"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:\"\\F1E3\"}.fa-tty:before{content:\"\\F1E4\"}.fa-binoculars:before{content:\"\\F1E5\"}.fa-plug:before{content:\"\\F1E6\"}.fa-slideshare:before{content:\"\\F1E7\"}.fa-twitch:before{content:\"\\F1E8\"}.fa-yelp:before{content:\"\\F1E9\"}.fa-newspaper-o:before{content:\"\\F1EA\"}.fa-wifi:before{content:\"\\F1EB\"}.fa-calculator:before{content:\"\\F1EC\"}.fa-paypal:before{content:\"\\F1ED\"}.fa-google-wallet:before{content:\"\\F1EE\"}.fa-cc-visa:before{content:\"\\F1F0\"}.fa-cc-mastercard:before{content:\"\\F1F1\"}.fa-cc-discover:before{content:\"\\F1F2\"}.fa-cc-amex:before{content:\"\\F1F3\"}.fa-cc-paypal:before{content:\"\\F1F4\"}.fa-cc-stripe:before{content:\"\\F1F5\"}.fa-bell-slash:before{content:\"\\F1F6\"}.fa-bell-slash-o:before{content:\"\\F1F7\"}.fa-trash:before{content:\"\\F1F8\"}.fa-copyright:before{content:\"\\F1F9\"}.fa-at:before{content:\"\\F1FA\"}.fa-eyedropper:before{content:\"\\F1FB\"}.fa-paint-brush:before{content:\"\\F1FC\"}.fa-birthday-cake:before{content:\"\\F1FD\"}.fa-area-chart:before{content:\"\\F1FE\"}.fa-pie-chart:before{content:\"\\F200\"}.fa-line-chart:before{content:\"\\F201\"}.fa-lastfm:before{content:\"\\F202\"}.fa-lastfm-square:before{content:\"\\F203\"}.fa-toggle-off:before{content:\"\\F204\"}.fa-toggle-on:before{content:\"\\F205\"}.fa-bicycle:before{content:\"\\F206\"}.fa-bus:before{content:\"\\F207\"}.fa-ioxhost:before{content:\"\\F208\"}.fa-angellist:before{content:\"\\F209\"}.fa-cc:before{content:\"\\F20A\"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:\"\\F20B\"}.fa-meanpath:before{content:\"\\F20C\"}.fa-buysellads:before{content:\"\\F20D\"}.fa-connectdevelop:before{content:\"\\F20E\"}.fa-dashcube:before{content:\"\\F210\"}.fa-forumbee:before{content:\"\\F211\"}.fa-leanpub:before{content:\"\\F212\"}.fa-sellsy:before{content:\"\\F213\"}.fa-shirtsinbulk:before{content:\"\\F214\"}.fa-simplybuilt:before{content:\"\\F215\"}.fa-skyatlas:before{content:\"\\F216\"}.fa-cart-plus:before{content:\"\\F217\"}.fa-cart-arrow-down:before{content:\"\\F218\"}.fa-diamond:before{content:\"\\F219\"}.fa-ship:before{content:\"\\F21A\"}.fa-user-secret:before{content:\"\\F21B\"}.fa-motorcycle:before{content:\"\\F21C\"}.fa-street-view:before{content:\"\\F21D\"}.fa-heartbeat:before{content:\"\\F21E\"}.fa-venus:before{content:\"\\F221\"}.fa-mars:before{content:\"\\F222\"}.fa-mercury:before{content:\"\\F223\"}.fa-intersex:before,.fa-transgender:before{content:\"\\F224\"}.fa-transgender-alt:before{content:\"\\F225\"}.fa-venus-double:before{content:\"\\F226\"}.fa-mars-double:before{content:\"\\F227\"}.fa-venus-mars:before{content:\"\\F228\"}.fa-mars-stroke:before{content:\"\\F229\"}.fa-mars-stroke-v:before{content:\"\\F22A\"}.fa-mars-stroke-h:before{content:\"\\F22B\"}.fa-neuter:before{content:\"\\F22C\"}.fa-genderless:before{content:\"\\F22D\"}.fa-facebook-official:before{content:\"\\F230\"}.fa-pinterest-p:before{content:\"\\F231\"}.fa-whatsapp:before{content:\"\\F232\"}.fa-server:before{content:\"\\F233\"}.fa-user-plus:before{content:\"\\F234\"}.fa-user-times:before{content:\"\\F235\"}.fa-bed:before,.fa-hotel:before{content:\"\\F236\"}.fa-viacoin:before{content:\"\\F237\"}.fa-train:before{content:\"\\F238\"}.fa-subway:before{content:\"\\F239\"}.fa-medium:before{content:\"\\F23A\"}.fa-y-combinator:before,.fa-yc:before{content:\"\\F23B\"}.fa-optin-monster:before{content:\"\\F23C\"}.fa-opencart:before{content:\"\\F23D\"}.fa-expeditedssl:before{content:\"\\F23E\"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:\"\\F240\"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:\"\\F241\"}.fa-battery-2:before,.fa-battery-half:before{content:\"\\F242\"}.fa-battery-1:before,.fa-battery-quarter:before{content:\"\\F243\"}.fa-battery-0:before,.fa-battery-empty:before{content:\"\\F244\"}.fa-mouse-pointer:before{content:\"\\F245\"}.fa-i-cursor:before{content:\"\\F246\"}.fa-object-group:before{content:\"\\F247\"}.fa-object-ungroup:before{content:\"\\F248\"}.fa-sticky-note:before{content:\"\\F249\"}.fa-sticky-note-o:before{content:\"\\F24A\"}.fa-cc-jcb:before{content:\"\\F24B\"}.fa-cc-diners-club:before{content:\"\\F24C\"}.fa-clone:before{content:\"\\F24D\"}.fa-balance-scale:before{content:\"\\F24E\"}.fa-hourglass-o:before{content:\"\\F250\"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:\"\\F251\"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:\"\\F252\"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:\"\\F253\"}.fa-hourglass:before{content:\"\\F254\"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:\"\\F255\"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:\"\\F256\"}.fa-hand-scissors-o:before{content:\"\\F257\"}.fa-hand-lizard-o:before{content:\"\\F258\"}.fa-hand-spock-o:before{content:\"\\F259\"}.fa-hand-pointer-o:before{content:\"\\F25A\"}.fa-hand-peace-o:before{content:\"\\F25B\"}.fa-trademark:before{content:\"\\F25C\"}.fa-registered:before{content:\"\\F25D\"}.fa-creative-commons:before{content:\"\\F25E\"}.fa-gg:before{content:\"\\F260\"}.fa-gg-circle:before{content:\"\\F261\"}.fa-tripadvisor:before{content:\"\\F262\"}.fa-odnoklassniki:before{content:\"\\F263\"}.fa-odnoklassniki-square:before{content:\"\\F264\"}.fa-get-pocket:before{content:\"\\F265\"}.fa-wikipedia-w:before{content:\"\\F266\"}.fa-safari:before{content:\"\\F267\"}.fa-chrome:before{content:\"\\F268\"}.fa-firefox:before{content:\"\\F269\"}.fa-opera:before{content:\"\\F26A\"}.fa-internet-explorer:before{content:\"\\F26B\"}.fa-television:before,.fa-tv:before{content:\"\\F26C\"}.fa-contao:before{content:\"\\F26D\"}.fa-500px:before{content:\"\\F26E\"}.fa-amazon:before{content:\"\\F270\"}.fa-calendar-plus-o:before{content:\"\\F271\"}.fa-calendar-minus-o:before{content:\"\\F272\"}.fa-calendar-times-o:before{content:\"\\F273\"}.fa-calendar-check-o:before{content:\"\\F274\"}.fa-industry:before{content:\"\\F275\"}.fa-map-pin:before{content:\"\\F276\"}.fa-map-signs:before{content:\"\\F277\"}.fa-map-o:before{content:\"\\F278\"}.fa-map:before{content:\"\\F279\"}.fa-commenting:before{content:\"\\F27A\"}.fa-commenting-o:before{content:\"\\F27B\"}.fa-houzz:before{content:\"\\F27C\"}.fa-vimeo:before{content:\"\\F27D\"}.fa-black-tie:before{content:\"\\F27E\"}.fa-fonticons:before{content:\"\\F280\"}.fa-reddit-alien:before{content:\"\\F281\"}.fa-edge:before{content:\"\\F282\"}.fa-credit-card-alt:before{content:\"\\F283\"}.fa-codiepie:before{content:\"\\F284\"}.fa-modx:before{content:\"\\F285\"}.fa-fort-awesome:before{content:\"\\F286\"}.fa-usb:before{content:\"\\F287\"}.fa-product-hunt:before{content:\"\\F288\"}.fa-mixcloud:before{content:\"\\F289\"}.fa-scribd:before{content:\"\\F28A\"}.fa-pause-circle:before{content:\"\\F28B\"}.fa-pause-circle-o:before{content:\"\\F28C\"}.fa-stop-circle:before{content:\"\\F28D\"}.fa-stop-circle-o:before{content:\"\\F28E\"}.fa-shopping-bag:before{content:\"\\F290\"}.fa-shopping-basket:before{content:\"\\F291\"}.fa-hashtag:before{content:\"\\F292\"}.fa-bluetooth:before{content:\"\\F293\"}.fa-bluetooth-b:before{content:\"\\F294\"}.fa-percent:before{content:\"\\F295\"}.fa-gitlab:before{content:\"\\F296\"}.fa-wpbeginner:before{content:\"\\F297\"}.fa-wpforms:before{content:\"\\F298\"}.fa-envira:before{content:\"\\F299\"}.fa-universal-access:before{content:\"\\F29A\"}.fa-wheelchair-alt:before{content:\"\\F29B\"}.fa-question-circle-o:before{content:\"\\F29C\"}.fa-blind:before{content:\"\\F29D\"}.fa-audio-description:before{content:\"\\F29E\"}.fa-volume-control-phone:before{content:\"\\F2A0\"}.fa-braille:before{content:\"\\F2A1\"}.fa-assistive-listening-systems:before{content:\"\\F2A2\"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:\"\\F2A3\"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:\"\\F2A4\"}.fa-glide:before{content:\"\\F2A5\"}.fa-glide-g:before{content:\"\\F2A6\"}.fa-sign-language:before,.fa-signing:before{content:\"\\F2A7\"}.fa-low-vision:before{content:\"\\F2A8\"}.fa-viadeo:before{content:\"\\F2A9\"}.fa-viadeo-square:before{content:\"\\F2AA\"}.fa-snapchat:before{content:\"\\F2AB\"}.fa-snapchat-ghost:before{content:\"\\F2AC\"}.fa-snapchat-square:before{content:\"\\F2AD\"}.fa-pied-piper:before{content:\"\\F2AE\"}.fa-first-order:before{content:\"\\F2B0\"}.fa-yoast:before{content:\"\\F2B1\"}.fa-themeisle:before{content:\"\\F2B2\"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:\"\\F2B3\"}.fa-fa:before,.fa-font-awesome:before{content:\"\\F2B4\"}.fa-handshake-o:before{content:\"\\F2B5\"}.fa-envelope-open:before{content:\"\\F2B6\"}.fa-envelope-open-o:before{content:\"\\F2B7\"}.fa-linode:before{content:\"\\F2B8\"}.fa-address-book:before{content:\"\\F2B9\"}.fa-address-book-o:before{content:\"\\F2BA\"}.fa-address-card:before,.fa-vcard:before{content:\"\\F2BB\"}.fa-address-card-o:before,.fa-vcard-o:before{content:\"\\F2BC\"}.fa-user-circle:before{content:\"\\F2BD\"}.fa-user-circle-o:before{content:\"\\F2BE\"}.fa-user-o:before{content:\"\\F2C0\"}.fa-id-badge:before{content:\"\\F2C1\"}.fa-drivers-license:before,.fa-id-card:before{content:\"\\F2C2\"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:\"\\F2C3\"}.fa-quora:before{content:\"\\F2C4\"}.fa-free-code-camp:before{content:\"\\F2C5\"}.fa-telegram:before{content:\"\\F2C6\"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:\"\\F2C7\"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:\"\\F2C8\"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:\"\\F2C9\"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:\"\\F2CA\"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:\"\\F2CB\"}.fa-shower:before{content:\"\\F2CC\"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:\"\\F2CD\"}.fa-podcast:before{content:\"\\F2CE\"}.fa-window-maximize:before{content:\"\\F2D0\"}.fa-window-minimize:before{content:\"\\F2D1\"}.fa-window-restore:before{content:\"\\F2D2\"}.fa-times-rectangle:before,.fa-window-close:before{content:\"\\F2D3\"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:\"\\F2D4\"}.fa-bandcamp:before{content:\"\\F2D5\"}.fa-grav:before{content:\"\\F2D6\"}.fa-etsy:before{content:\"\\F2D7\"}.fa-imdb:before{content:\"\\F2D8\"}.fa-ravelry:before{content:\"\\F2D9\"}.fa-eercast:before{content:\"\\F2DA\"}.fa-microchip:before{content:\"\\F2DB\"}.fa-snowflake-o:before{content:\"\\F2DC\"}.fa-superpowers:before{content:\"\\F2DD\"}.fa-wpexplorer:before{content:\"\\F2DE\"}.fa-meetup:before{content:\"\\F2E0\"}.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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/common.js b/priv/static/packs/common.js
index 7336066ae..2bf5bc374 100644
Binary files a/priv/static/packs/common.js and b/priv/static/packs/common.js differ
diff --git a/priv/static/packs/common.js.map b/priv/static/packs/common.js.map
index 8e60a04d9..d3a9dd7c8 100644
Binary files a/priv/static/packs/common.js.map and b/priv/static/packs/common.js.map differ
diff --git a/priv/static/packs/containers/media_container.js b/priv/static/packs/containers/media_container.js
index 6496e81ca..7538e07b6 100644
Binary files a/priv/static/packs/containers/media_container.js and b/priv/static/packs/containers/media_container.js differ
diff --git a/priv/static/packs/containers/media_container.js.map b/priv/static/packs/containers/media_container.js.map
index 2f926a305..3beb7d460 100644
Binary files a/priv/static/packs/containers/media_container.js.map and b/priv/static/packs/containers/media_container.js.map differ
diff --git a/priv/static/packs/contrast.css b/priv/static/packs/contrast.css
deleted file mode 100644
index c3f37f103..000000000
Binary files a/priv/static/packs/contrast.css and /dev/null differ
diff --git a/priv/static/packs/contrast.css.map b/priv/static/packs/contrast.css.map
deleted file mode 100644
index 8ef36840d..000000000
--- a/priv/static/packs/contrast.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///./app/javascript/styles/contrast.scss"],"names":[],"mappings":"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","file":"contrast.css","sourcesContent":["@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-monospace;src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#313543;border:0 none #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#353a49}::-webkit-scrollbar-thumb:active{background:#313543}::-webkit-scrollbar-track{border:0 none #fff;border-radius:0;background:rgba(0,0,0,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#282c37}::-webkit-scrollbar-corner{background:transparent}body{font-family:\"mastodon-font-sans-serif\",sans-serif;background:#17191f;font-size:13px;line-height:18px;font-weight:400;color:#fff;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Droid Sans,Helvetica Neue,Fira Sans,mastodon-font-sans-serif,sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#282c37}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#282c37}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:#313543;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#1f232b;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#dde3ec;background:#282c37;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;outline:0!important}.container-alt{width:700px;margin:0 auto;margin-top:40px}@media screen and (max-width:740px){.container-alt{width:100%;margin:0}}.logo-container{margin:100px auto;margin-bottom:50px}@media screen and (max-width:400px){.logo-container{margin:30px auto;margin-bottom:20px}}.logo-container h1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.logo-container h1 img{height:42px;margin-right:10px}.logo-container h1 a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;text-decoration:none;outline:0;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.compose-standalone .compose-form{width:400px;margin:0 auto;padding:20px 0;margin-top:40px;-webkit-box-sizing:border-box;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;margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;line-height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:20px 0;padding-bottom:0;margin-bottom:-30px;margin-top:40px}@media screen and (max-width:440px){.account-header{width:100%;margin:0;margin-bottom:10px;padding:20px;padding-bottom: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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#ecf0f4;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:-webkit-box;display:-ms-flexbox;display:flex}.grid-3 .landing-page__call-to-action,.grid-3 .row__information-board{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.grid-3 .row__information-board{width:100%}.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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#393f4f;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;z-index:110}}.public-layout .header>div{-webkit-box-flex:1;-ms-flex:1 1 33.3%;flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.public-layout .header .nav-center,.public-layout .header .nav-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.public-layout .header .nav-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.public-layout .header .nav-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#42485a}.public-layout .header .nav-link{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#dde3ec;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-button{background:#4a5266;margin:8px;margin-left: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:#535b72}.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;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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:#ecf0f4}.public-layout .public-account-header.inactive .logo-button svg path:last-child{fill:#ecf0f4}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#0e1014}.public-layout .public-account-header__image:after{content:\"\";display:block;position:absolute;width:100%;height:100%;-webkit-box-shadow:inset 0 -1px 1px 1px rgba(0,0,0,.15);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;-webkit-box-shadow:none;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.public-layout .public-account-header__bar:before{content:\"\";display:block;background:#313543;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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 #313543;background:#17191f}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#313543;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;padding-left: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{-ms-flex-wrap:wrap;flex-wrap:wrap}}.public-layout .public-account-header__tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;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:#dde3ec}}.public-layout .public-account-header__tabs__tabs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;height:58px}.public-layout .public-account-header__tabs__tabs .details-counters{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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%;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#dde3ec;padding:10px;border-right:1px solid #313543;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 #9baec8;opacity:.5;-webkit-transition:all .4s ease;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #2b90d9;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#ecf0f4}.public-layout .public-account-header__tabs__tabs .counter:hover:after{opacity:1;-webkit-transition-duration:.1s;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:mastodon-font-display,sans-serif}.public-layout .public-account-header__tabs__tabs .spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;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;-webkit-box-shadow:none;box-shadow:none;background:transparent;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #42485a}.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:#dde3ec}.public-layout .public-account-header__extra__links a{display:inline-block;color:#dde3ec;text-decoration:none;padding:15px}.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;-webkit-box-flex:100%;-ms-flex:100%;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:#393f4f;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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{-webkit-box-shadow:none;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:#4e79df}.public-layout .public-account-bio .account__header__content{padding:20px;padding-bottom:0;color:#fff}.public-layout .public-account-bio .roles,.public-layout .public-account-bio__extra{padding:20px;font-size:14px;color:#dde3ec}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#8d9ac2;font-size:18px}.public-layout .static-icon-button>span{font-size:14px;font-weight:500}.public-layout .card-grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:100%;margin:0 -5px}.public-layout .card-grid>div{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;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 #393f4f}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #393f4f}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#282c37}.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:#313543}}.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{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#737d99}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#737d99}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#dde3ec}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#737d99}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#737d99}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#7f88a2}.compact-header h1{font-size:24px;line-height:28px;color:#dde3ec;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:#ecf0f4}.compact-header h1 img{display:inline-block;margin-bottom:-5px;margin-right:15px;width:36px;height:36px}.hero-widget{margin-bottom:10px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}.hero-widget__img{width:100%;height:167px;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:#282c37;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#dde3ec;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:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.hero-widget__text a{color:#ecf0f4;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:#dde3ec}.endorsements-widget .account{padding:10px 0}.endorsements-widget .account:last-child{border-bottom:0}.endorsements-widget .account .account__display-name{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.endorsements-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.box-widget,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#282c37;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100%}.contact-widget{font-size:15px;color:#dde3ec;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;padding-bottom:20px;border-radius:4px;background:#282c37;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);color:#ecf0f4;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:#dde3ec}.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;border-radius:4px;background:#000;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);font-size:14px;color:#dde3ec;margin-bottom:10px}@media screen and (max-width:415px){.box-widget,.contact-widget,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget{margin-bottom:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0}}code{font-family:mastodon-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 .row{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 -5px}.simple_form .row .input{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:50%;padding:0 5px}.simple_form span.hint{display:block;color:#dde3ec;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#dde3ec}.simple_form p.hint.subtle-hint{text-align:center;font-size:12px;line-height:18px;margin-top:15px;margin-bottom:0;color:#dde3ec}.simple_form p.hint.subtle-hint a{color:#2b90d9}.simple_form p.hint code{border-radius:3px;padding:.2em .4em;background:#0e1014}.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 .label_input{display:-webkit-box;display:-ms-flexbox;display:flex}.simple_form .label_input label{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.simple_form .label_input input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.with_label{padding:15px 0;margin-bottom:0}.simple_form .input.with_label .label_input{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.simple_form .input.with_label.file .label_input{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.simple_form .input.with_label.select .label_input{-webkit-box-align:initial;-ms-flex-align:initial;align-items:initial}.simple_form .input.with_label .label_input>label{font-family:inherit;font-size:16px;color:#fff;display:block;padding-top:5px;margin-bottom:5px;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:150px;word-wrap:break-word}.simple_form .input.with_label .label_input>label.select{-webkit-box-flex:0;-ms-flex:0;flex:0}.simple_form .input.with_label .label_input>label~*{margin-left:10px}.simple_form .input.with_label ul{-webkit-box-flex:390px;-ms-flex:390px;flex:390px}.simple_form .input.with_label.boolean{padding:0;padding:initial;margin-bottom:0}.simple_form .input.with_label.boolean .label_input>label{font-family:inherit;font-size:14px;color:#fff;display:block;width:auto}.simple_form .input.with_label.boolean label.checkbox{position:relative;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.with_block_label{padding-top:15px}.simple_form .input.with_block_label>label{font-family:inherit;font-size:16px;color:#fff;display:block;padding-top:5px}.simple_form .input.with_block_label .hint{margin-bottom:15px}.simple_form .input.with_block_label ul{-webkit-columns:2;columns:2}.simple_form .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 .input.boolean{margin-bottom:5px}.simple_form .input.boolean label{font-family:inherit;font-size:14px;color:#fff;display:block;width:auto}.simple_form .input.boolean label.checkbox{position:relative;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.boolean input[type=checkbox]{position:absolute;left:0;top:5px;margin:0}.simple_form .input.boolean .hint{padding-left:25px;margin-left:0}.simple_form .check_boxes .checkbox label{font-family:inherit;font-size:14px;color:#fff;display:block;width:auto;position:relative;padding-top:5px;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;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{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;border:0;border-bottom:2px solid #9baec8;border-radius:2px 2px 0 0;padding:7px 4px;font-size:16px;color:#fff;display:block;width:100%;outline:0;font-family:inherit;resize:vertical}.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{-webkit-box-shadow:none;box-shadow:none}.simple_form input[type=email]:focus:invalid,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{border-bottom-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-bottom-color:#79bd9a}.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-bottom-color:#2b90d9;background:rgba(0,0,0,.1)}.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=password],.simple_form .input.field_with_errors input[type=text]{border-bottom-color:#79bd9a}.simple_form .input.field_with_errors .error{display:block;font-weight:500;color:#e87487;margin-top:4px}.simple_form .actions{margin-top:30px;display:-webkit-box;display:-ms-flexbox;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:#fff;font-size:18px;line-height:inherit;height:auto;padding:10px;text-transform:uppercase;text-decoration:none;text-align:center;-webkit-box-sizing:border-box;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:#416fdd}.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:#2454c7}.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{font-size:16px;max-height:29px}.simple_form .input-with-append{position:relative}.simple_form .input-with-append .input input{padding-right:142px}.simple_form .input-with-append .append{position:absolute;right:0;top:0;padding:7px 4px;padding-bottom:9px;font-size:16px;color:#c2cede;font-family:inherit;pointer-events:none;cursor:default;max-width:140px;white-space:nowrap;overflow:hidden}.simple_form .input-with-append .append:after{content:\"\";display:block;position:absolute;top:0;right:0;bottom:1px;width:5px;background-image:-webkit-gradient(linear,left top,right top,from(rgba(40,44,55,0)),to(#282c37));background-image:linear-gradient(90deg,rgba(40,44,55,0),#282c37)}.flash-message{background:#393f4f;color:#dde3ec;border-radius:4px;padding:15px 10px;margin-bottom:30px;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2);text-align:center}.flash-message p{margin-bottom:15px}.flash-message .oauth-code{outline:0;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:mastodon-font-monospace,monospace;background:#282c37;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:#313543}.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:#dde3ec;text-decoration:none}.form-footer a:hover{text-decoration:underline}.follow-prompt,.oauth-prompt{margin-bottom:30px;text-align:center;color:#dde3ec}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px}.follow-prompt strong,.oauth-prompt strong{color:#ecf0f4;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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.qr-code{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#fff;padding:4px;margin:0 10px 20px 0;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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:#ecf0f4;-webkit-box-flex:150px;-ms-flex:150px;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{-webkit-box-sizing:border-box;box-sizing:border-box;background:rgba(223,64,90,.5);color:#fff;text-shadow:1px 1px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 2px 6px rgba(0,0,0,.4);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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.action-pagination .actions,.action-pagination .pagination{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.action-pagination .actions{padding:30px 0;padding-right:20px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.post-follow-actions{text-align:center;color:#dde3ec}.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:mastodon-font-monospace,monospace}.card>a{display:block;text-decoration:none;color:inherit;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}@media screen and (max-width:415px){.card>a{-webkit-box-shadow:none;box-shadow:none}}.card>a:active .card__bar,.card>a:focus .card__bar,.card>a:hover .card__bar{background:#393f4f}.card__img{height:130px;position:relative;background:#0e1014;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#313543;border-radius:0 0 4px 4px}@media screen and (max-width:415px){.card__bar{border-radius:0}}.card__bar .avatar{-webkit-box-flex:0;-ms-flex:0 0 auto;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:#17191f}.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:#dde3ec;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:#000;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#ecf0f4}.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:#1a1a1a}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#282c37;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);color:#364861;font-size:14px;font-weight:500;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;border-radius:4px;padding:20px;min-height:30vh}.nothing-here--under-tabs{border-radius:0 0 4px 4px}.account-role{display:inline-block;padding:4px 6px;cursor:default;border-radius:3px;font-size:12px;line-height:12px;font-weight:500;color:#d9e1e8;background-color:rgba(217,225,232,.1);border:1px solid rgba(217,225,232,.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:0 none;border-top:1px solid #42485a;border-bottom:1px solid #42485a;font-size:14px;line-height:20px}.account__header__fields dl{display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:1px solid #42485a}.account__header__fields dd,.account__header__fields dt{-webkit-box-sizing:border-box;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;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#ecf0f4;background:rgba(23,25,31,.5)}.account__header__fields dd{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#dde3ec}.account__header__fields a{color:#2b90d9;text-decoration:none}.account__header__fields a:active,.account__header__fields a:focus,.account__header__fields a:hover{text-decoration:underline}.account__header__fields dl:last-child{border-bottom:0}.activity-stream{-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px;text-align:left}@media screen and (max-width:415px){.activity-stream{margin-bottom:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}}.activity-stream--headless{border-radius:0;margin:0;-webkit-box-shadow:none;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:#282c37}.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:#393f4f}.button.logo-button{-webkit-box-flex:0;-ms-flex:0 auto;flex:0 auto;font-size:14px;background:#2b5fd9;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}.button.logo-button svg path:first-child{fill:#fff}.button.logo-button svg path:last-child{fill:#2b5fd9}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#5680e1}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#5680e1}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button.disabled i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#2b5fd9;border:10px none;border-radius:4px;-webkit-box-sizing:border-box;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;-webkit-transition:all .1s ease-in;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#5680e1;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.button--destructive{-webkit-transition:none;transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;-webkit-transition:none;transition:none}.button:disabled{background-color:#9baec8;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#000;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#a8b9cf}.button.button-alternative-2{background:#606984}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#687390}.button.button-secondary{color:#dde3ec;background:transparent;padding:3px 15px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#a8b9cf;color:#eaeef3}.button.button--block{display:block;width:100%}.column__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.icon-button{display:inline-block;padding:0;color:#8d9ac2;border:none;background:transparent;cursor:pointer;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#a4afce;-webkit-transition:color .2s ease-out;transition:color .2s ease-out}.icon-button.disabled{color:#6274ab;cursor:default}.icon-button.active{color:#2b90d9}.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:#1b1e25}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#0c0d11}.icon-button.inverted.disabled{color:#2a2e3a}.icon-button.inverted.active{color:#2b90d9}.icon-button.inverted.active.disabled{color:#63ade3}.icon-button.overlayed{-webkit-box-sizing:content-box;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:#1b1e25;border:none;background:transparent;cursor:pointer;font-weight:600;font-size:11px;padding:0 3px;line-height:27px;outline:0;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.text-icon-button:active,.text-icon-button:focus,.text-icon-button:hover{color:#0c0d11;-webkit-transition:color .2s ease-out;transition:color .2s ease-out}.text-icon-button.disabled{color:#464d60;cursor:default}.text-icon-button.active{color:#2b90d9}.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}.dropdown-menu,.invisible{position:absolute}.invisible{font-size:0;line-height:0;display:inline-block;width:0;height:0}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:\"\\2026\"}.compose-form{padding:10px}.compose-form .compose-form__warning{color:#000;margin-bottom:10px;background:#9baec8;-webkit-box-shadow:0 2px 6px rgba(0,0,0,.3);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:#1b1e25;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 .compose-form__autosuggest-wrapper{position:relative}.compose-form .compose-form__autosuggest-wrapper .emoji-picker-dropdown{position:absolute;right:5px;top:5px}.compose-form .autosuggest-textarea,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:47px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;-webkit-box-sizing:border-box;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:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{height:100px!important;resize:vertical}}.compose-form .autosuggest-textarea__suggestions{-webkit-box-sizing:border-box;box-sizing:border-box;display:none;position:absolute;top:100%;width:100%;z-index:99;-webkit-box-shadow:4px 4px 6px rgba(0,0,0,.4);box-shadow:4px 4px 6px rgba(0,0,0,.4);background:#d9e1e8;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:#b9c8d5}.compose-form .autosuggest-account,.compose-form .autosuggest-emoji{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;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:#1b1e25}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:5px;-ms-flex-wrap:wrap;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__upload{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;min-width:40%;margin:5px}.compose-form .compose-form__modifiers .compose-form__upload__actions{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.8)),color-stop(80%,rgba(0,0,0,.35)),to(transparent));background:linear-gradient(180deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;opacity:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;color:#ecf0f4;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:#fff}.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;-webkit-box-sizing:border-box;box-sizing:border-box;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.8)),color-stop(80%,rgba(0,0,0,.35)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);padding:10px;opacity:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload-description input{background:transparent;color:#ecf0f4;border:0;padding:0;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description input:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:.75;color:#ecf0f4}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder,.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:.75;color:#ecf0f4}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:.75;color:#ecf0f4}.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:140px;width:100%;overflow:hidden}.compose-form .compose-form__buttons-wrapper{padding:10px;background:#ebebeb;border-radius:0 0 4px 4px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.compose-form .compose-form__buttons-wrapper,.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:-webkit-box;display:-ms-flexbox;display:flex}.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{-webkit-box-sizing:content-box;box-sizing:content-box;padding:0 3px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper{-ms-flex-item-align:center;align-self:center;margin-right:4px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter{cursor:default;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:14px;font-weight:600;color:#1b1e25}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter.character-counter--over{color:#ff5050}.compose-form .compose-form__publish{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;min-width:0}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.no-reduce-motion .spoiler-input{-webkit-transition:height .4s ease,opacity .4s ease;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:#9baec8;padding:10px}.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;overflow:hidden;text-overflow:ellipsis;white-space:pre-wrap;padding-top:2px;color:#fff}.reply-indicator__content strong,.status__content strong{font-weight:700}.reply-indicator__content em,.status__content em{font-style:italic}.reply-indicator__content blockquote,.status__content blockquote{margin:.2em 0 .2em 2em;font-style:italic}.reply-indicator__content ul,.status__content ul{list-style:disc}.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}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:0}.reply-indicator__content a,.status__content a{color:#d8a070;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:#dae1ea}.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:#c2cede}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#8d9ac2}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#a4afce;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{padding-bottom:25px;max-height:200px}.status__content.status__content--collapsed i{-webkit-transform:rotateX(0);transform:rotateX(0)}.status__content.status__content--expanded{padding-bottom:25px;height:auto}.status__content.status__content--expanded i{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.status__content__collapse-button{display:block;position:absolute;bottom:0;left:0;right:0;width:100%;height:25px;font-size:18px;line-height:25px;color:#000;text-align:center;background:#8d9ac2;-webkit-transition:background .2s ease-in-out,color .2s ease-in-out;transition:background .2s ease-in-out,color .2s ease-in-out;border:0;border-radius:2px}.status__content__collapse-button:hover{background:#a4afce}.status__content__collapse-button i{-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.status__content__collapse-button i,.status__content__collapse-button i:hover{color:#000!important}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:transparent;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:#c2cede;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;clear:both;border-bottom:1px solid #393f4f}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#313543}.focusable:focus .status.status-direct{background:#42485a}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#393f4f}.status{padding:8px 10px;padding-left:68px;position:relative;min-height:48px;border-bottom:1px solid #393f4f;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{background:#393f4f}.status.light .status__relative-time{color:#364861}.status.light .display-name strong,.status.light .status__display-name{color:#000}.status.light .display-name span{color:#364861}.status.light .status__content{color:#000}.status.light .status__content a{color:#2b90d9}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#b8c0d9}.status__relative-time{color:#c2cede;float:right;font-size:14px}.status__display-name{color:#c2cede}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px}.status-check-box{border-bottom:1px solid #d9e1e8;display:-webkit-box;display:-ms-flexbox;display:flex}.status-check-box .status-check-box__status{margin:10px 0 10px 10px;-webkit-box-flex:1;-ms-flex:1;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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px}.status__prepend{margin-left:68px;color:#c2cede;padding:8px 0;padding-bottom:2px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#c2cede}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:8px}.status__action-bar-button{float:left;margin-right:18px}.status__action-bar-dropdown{float:left;height:23.15px;width:23.15px}.detailed-status__action-bar-dropdown{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative}.detailed-status{background:#313543;padding:14px 10px}.detailed-status--flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.detailed-status--flex .detailed-status__meta,.detailed-status--flex .status__content{-webkit-box-flex:100%;-ms-flex:100%;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:#c2cede;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#000;font-size:14px}.reply-indicator__content a{color:#1b1e25}.domain{padding:10px;border-bottom:1px solid #393f4f}.domain .domain__domain-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;color:#fff;text-decoration:none;font-size:14px;font-weight:500}.domain__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.domain_buttons{height:18px;padding:10px;white-space:nowrap}.account{padding:10px;border-bottom:1px solid #393f4f}.account.compact{padding:0;border-bottom:0}.account.compact .account__avatar-wrapper{margin-left:0}.account .account__display-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;color:#dde3ec;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}a .account__avatar{cursor:pointer}.account__avatar-overlay{width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:4px;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:4px;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:18px;padding:10px;white-space:nowrap}.account__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#313543;text-align:center;background-size:cover;background-position:50%;position:relative}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#ecf0f4}.account__header>div{background:rgba(49,53,67,.9);padding:20px 10px}.account__header .account__header__content{color:#ecf0f4}.account__header .account__header__display-name{color:#fff;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#2b90d9;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.account__disclaimer{padding:10px;border-top:1px solid #393f4f;color:#c2cede}.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__header__content{color:#dde3ec;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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;line-height:36px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px;text-align:center}.account__action-bar__tab{text-decoration:none;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;border-right:1px solid #393f4f;padding:10px 0}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#dde3ec}.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__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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:#ecf0f4;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}.muted .status__content,.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#c2cede}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#606984;color:#000}.muted a.status__content__spoiler-link:hover{background:#707b97;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#dde3ec;font-size:15px;position:relative}.notification__message .fa{color:#2b90d9}.notification__message>span{display:block;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}.display-name{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.image-loader{position:relative;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.image-loader .image-loader__preview-canvas{max-width:100%;max-height:80%;background:url(/packs/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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-negative:0;flex-shrink:0;cursor:default;color:#dde3ec}.navigation-bar strong{color:#ecf0f4}.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;-webkit-transform:scaleX(0) translate(-100%);transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);opacity:1}.navigation-bar__profile{-webkit-box-flex:1;-ms-flex:1 1 auto;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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;height:0}.dropdown-menu{background:#d9e1e8;padding:4px 0;border-radius:4px;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4)}.dropdown-menu ul{list-style:none}.dropdown-menu.left{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.dropdown-menu.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.dropdown-menu.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.dropdown-menu.right{-webkit-transform-origin:0 50%;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:#d9e1e8}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-13px;border-width:5px 7px 0;border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-13px;border-width:0 7px 5px;border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#d9e1e8}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;-webkit-box-sizing:border-box;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#000;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#2b5fd9;color:#ecf0f4;outline:0}.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:#d9e1e8;padding:4px 0;border-radius:4px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.4);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;-webkit-box-sizing:border-box;box-sizing:border-box;text-decoration:none;background:#d9e1e8;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:#ecf0f4}.dropdown__icon{vertical-align:middle}.columns-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;overflow-x:auto;position:relative}.columns-area.unscrollable{overflow-x:hidden}@media screen and (min-width:360px){.columns-area{padding:10px}.react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.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>*{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.column,.react-swipeable-view-container>*{display:-webkit-box;display:-ms-flexbox;display:flex}.column{width:330px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.column>.scrollable{background:#282c37;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.ui{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;flex-direction:column;width:100%;height:100%;background:#191b22}.drawer,.ui{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column}.drawer{width:330px;-webkit-box-sizing:border-box;box-sizing:border-box;flex-direction:column;overflow-y:hidden}.drawer__tab{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px 5px 13px;color:#dde3ec;text-decoration:none;text-align:center;font-size:16px;border-bottom:2px solid transparent}.column,.drawer{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;overflow:hidden}@media screen and (min-width:360px){.tabs-bar{margin:10px;margin-bottom:0}.getting-started__trends,.search{margin-bottom:10px}.getting-started__panel{margin:10px 0}.column,.drawer{min-width:330px}}@media screen and (max-width:630px){.column,.drawer{width:100%;padding:0}.columns-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.autosuggest-textarea__textarea,.search__input{font-size:16px}}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:10px;padding-left:5px;padding-right: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}}.drawer__pager{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}.drawer__inner,.drawer__pager{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#444b5d;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:auto;width:100%;height:100%;border-radius:2px}.drawer__inner.darker{background:#282c37}.drawer__inner__mastodon{background:#444b5d url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;-webkit-box-flex:1;-ms-flex:1;flex:1;min-height:47px}.drawer__inner__mastodon>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}.pseudo-drawer{background:#444b5d;font-size:13px;text-align:left}.drawer__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:16px;background:#393f4f;margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;border-radius:2px}.drawer__header a{-webkit-transition:background .1s ease-in;transition:background .1s ease-in}.drawer__header a:hover{background:#2e3340;-webkit-transition:background .2s ease-out;transition:background .2s ease-out}.tabs-bar{display:-webkit-box;display:-ms-flexbox;display:flex;background:#393f4f;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px 10px;color:#fff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #393f4f;-webkit-transition:all 50ms linear;transition:all 50ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #2b90d9;color:#2b90d9}@media screen and (min-width:631px){.tabs-bar__link:active,.tabs-bar__link:focus,.tabs-bar__link:hover{background:#464d60}}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width:600px){.tabs-bar__link span{display:inline}}@media screen and (min-width:631px){.tabs-bar{display:none}}.scrollable{overflow-y:scroll;overflow-x:hidden;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}@supports (display:grid){.scrollable.fullscreen{contain:none}}.column-back-button{background:#313543;color:#2b90d9;cursor:pointer;-webkit-box-flex:0;-ms-flex:0 0 auto;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:#313543;border:0;font-family:inherit;color:#2b90d9;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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:rgba(0,0,0,0);-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;-webkit-transition:opacity .25s;transition:opacity .25s}.react-toggle-track{width:50px;height:24px;padding:0;border-radius:30px;background-color:#282c37;-webkit-transition:all .2s ease;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#131419}.react-toggle--checked .react-toggle-track{background-color:#2b5fd9}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#5680e1}.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;-webkit-transition:opacity .25s ease;transition:opacity .25s ease}.react-toggle--checked .react-toggle-track-check,.react-toggle-track-x{opacity:1;-webkit-transition:opacity .25s ease;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{-webkit-transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #282c37;border-radius:50%;background-color:#fafafa;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .25s ease;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#2b5fd9}.column-link{background:#393f4f;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#404657}.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:#282c37}.column-subheading{color:#c2cede;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#282c37}.flex-spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.getting-started{color:#c2cede;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.getting-started__footer,.getting-started__panel,.getting-started__wrapper{height:-webkit-min-content;height:-moz-min-content;height:min-content}.getting-started__footer,.getting-started__panel{padding:10px;padding-top:20px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.getting-started__footer ul,.getting-started__panel ul{margin-bottom:10px}.getting-started__footer ul li,.getting-started__panel ul li{display:inline}.getting-started__footer p,.getting-started__panel p{font-size:13px}.getting-started__footer p a,.getting-started__panel p a{color:#c2cede;text-decoration:underline}.getting-started__footer a,.getting-started__panel a{text-decoration:none;color:#dde3ec}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover,.getting-started__panel a:active,.getting-started__panel a:focus,.getting-started__panel a:hover{text-decoration:underline}.getting-started__footer,.getting-started__wrapper{color:#c2cede}.getting-started__trends{background:#282c37;-webkit-box-flex:0;-ms-flex:0 1 auto;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}}.getting-started__scrollable{max-height:100%;overflow-y:auto}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#393f4f;border:1px solid #1f232b}.setting-text{color:#dde3ec;background:transparent;border:none;border-bottom:2px solid #9baec8;-webkit-box-sizing:border-box;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:#2b90d9}@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;-webkit-transition:background-position .9s steps(10);transition:background-position .9s steps(10);-webkit-transition-duration:0s;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{-webkit-transition-duration:.9s;transition-duration:.9s;background-position:0 100%}.reduce-motion button.icon-button i.fa-retweet{color:#8d9ac2;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#2b90d9}.status-card{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;border:1px solid #393f4f;border-radius:4px;color:#c2cede;margin-top:14px;text-decoration:none;overflow:hidden}.status-card__actions{bottom:0;left:0;position:absolute;right:0;top:0;-ms-flex-pack:center;-ms-flex-align:center}.status-card__actions,.status-card__actions>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}.status-card__actions>div{background:rgba(0,0,0,.6);border-radius:4px;padding:12px 9px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-pack:center;-ms-flex-align:center}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#393f4f}.status-card-photo{cursor:-webkit-zoom-in;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:#dde3ec;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#dde3ec}.status-card__host{display:block;margin-top:5px;font-size:13px}.status-card__image{-webkit-box-flex:0;-ms-flex:0 0 100px;flex:0 0 100px;background:#393f4f;position:relative}.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__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#c2cede;background-color:transparent;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;clear:both;text-decoration:none}.load-more:hover{background:#2c313d}.load-gap{border-bottom:1px solid #393f4f}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#c2cede;background:#282c37;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#c2cede}.regeneration-indicator__label span{font-size:15px;font-weight:400}.column-header__wrapper{position:relative;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.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:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;background:#313543;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden;border-top-left-radius:2px;border-top-right-radius:2px}.column-header>button{margin:0;border:none;padding:15px 0 15px 15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;-webkit-box-flex:1;-ms-flex:1;flex:1}.column-header>.column-header__back-button{color:#2b90d9}.column-header.active{-webkit-box-shadow:0 1px 0 rgba(43,144,217,.3);box-shadow:0 1px 0 rgba(43,144,217,.3)}.column-header.active .column-header__icon{color:#2b90d9;text-shadow:0 0 10px rgba(43,144,217,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:-webkit-box;display:-ms-flexbox;display:flex}.column-header__links .text-btn{margin-right:10px}.column-header__button{background:#313543;border:0;color:#dde3ec;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover{color:#f4f6f9}.column-header__button.active,.column-header__button.active:hover{color:#fff;background:#393f4f}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#dde3ec;-webkit-transition:max-height .15s ease-in-out,opacity .3s linear;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:transparent;border:0;border-top:1px solid #42485a;margin:10px 0}.column-header__collapsible-inner{background:#393f4f;padding:15px}.column-header__setting-btn:hover{color:#dde3ec;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}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#c2cede;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap;-webkit-animation:loader-label 1.15s infinite cubic-bezier(.215,.61,.355,1);animation:loader-label 1.15s infinite cubic-bezier(.215,.61,.355,1)}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:0;height:0;-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #606984;border-radius:50%;-webkit-animation:loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1);animation:loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1)}@-webkit-keyframes loader-figure{0%{width:0;height:0;background-color:#606984}29%{background-color:#606984}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:#606984}29%{background-color:#606984}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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#000;color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:8px;position:relative;text-align:center;z-index:100}.media-spoiler{background:#000;color:#dde3ec;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:#f7f9fb}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.modal-container--preloader{background:#393f4f}.account--panel{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0}.account--panel__button,.detailed-status__button{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.column-settings__outer{background:#393f4f;padding:15px}.column-settings__section{color:#dde3ec;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#fff;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:rgba(0,0,0,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.setting-toggle{display:block;line-height:24px}.setting-meta__label,.setting-toggle__label{color:#dde3ec;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.setting-meta__label{float:right}.empty-column-indicator,.error-column{color:#c2cede;background:#282c37;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#2b90d9;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{-webkit-transform-origin:center center;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{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{-webkit-transform-origin:50% 100%;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;-webkit-box-shadow:4px 4px 6px rgba(0,0,0,.4);box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px}.emoji-picker-dropdown__menu .emoji-mart-scroll{-webkit-transition:opacity .2s ease;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;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.2);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:transparent}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(217,225,232,.4)}.emoji-picker-dropdown__modifiers__menu .emoji-mart-emoji{height:22px}.emoji-mart-emoji span{background-repeat:no-repeat}.upload-area{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:rgba(0,0,0,.8);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;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:#282c37;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#ecf0f4;font-size:18px;font-weight:500;border:2px dashed #606984;border-radius:4px}.upload-area__content,.upload-progress{display:-webkit-box;display:-ms-flexbox;display:flex}.upload-progress{padding:10px;color:#1b1e25;overflow:hidden}.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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.upload-progress__backdrop{width:100%;height:6px;border-radius:6px;background:#606984;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;margin:0;width:22px;height:22px;margin-top:2px}.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;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:4px;margin-left:40px;overflow:hidden}.privacy-dropdown__dropdown.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.privacy-dropdown__option{color:#000;padding:10px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex}.privacy-dropdown__option.active,.privacy-dropdown__option:hover{background:#2b5fd9;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:#3c6cdc}.privacy-dropdown__option__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#1b1e25}.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;-webkit-box-shadow:0 -4px 4px rgba(0,0,0,.1);box-shadow:0 -4px 4px rgba(0,0,0,.1)}.privacy-dropdown.active .privacy-dropdown__value .icon-button{-webkit-transition:none;transition:none}.privacy-dropdown.active .privacy-dropdown__value.active{background:#2b5fd9}.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;-webkit-box-shadow:2px 4px 6px rgba(0,0,0,.1);box-shadow:2px 4px 6px rgba(0,0,0,.1)}.search{position:relative}.search__input{outline:0;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;padding-right:30px;font-family:inherit;background:#282c37;color:#dde3ec;font-size:14px;margin:0;border-radius:2px}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#313543}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;-webkit-transition:all .1s linear;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#ecf0f4;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);color:#8d9ac2;cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#a4afce}.search-results__header{color:#c2cede;background:#2c313d;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:#1f232b;border-bottom:1px solid #393f4f;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;padding:15px;font-weight:500;font-size:16px;color:#c2cede}.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:#ecf0f4;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#f9fafb;text-decoration:underline}.modal-root{position:relative;-webkit-transition:opacity .3s linear;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%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:distribute;align-content:space-around;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.modal-root__container,.modal-root__modal{display:-webkit-box;display:-ms-flexbox;display:flex;z-index:9999}.modal-root__modal{pointer-events:auto}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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;-webkit-transition:opacity .3s linear;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);-webkit-box-sizing:border-box;box-sizing:border-box;border:0;color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#2b90d9}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#d9e1e8;color:#000;border-radius:8px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.onboarding-modal__pager{height:80vh;width:80vw;max-width:520px;max-height:470px}.onboarding-modal__pager .react-swipeable-view-container>div{width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.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%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:25px;display:none;display:-webkit-box;display:-ms-flexbox;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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.error-modal__body{display:-webkit-box;display:-ms-flexbox;display:flex;text-align:center}@media screen and (max-width:550px){.onboarding-modal{width:100%;height:100%;border-radius:0}.onboarding-modal__pager{width:100%;height:auto;max-width:none;max-height:none;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}}.error-modal__footer,.onboarding-modal__paginator{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#c0cdd9;display:-webkit-box;display:-ms-flexbox;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:#1b1e25;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:#131419;background-color:#a6b9c9}.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:#000}.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:#0a0a0a}.error-modal__footer{-ms-flex-pack:center}.error-modal__footer,.onboarding-modal__dots{-webkit-box-pack:center;justify-content:center}.onboarding-modal__dots{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:center}.onboarding-modal__dot{width:14px;height:14px;border-radius:14px;background:#a6b9c9;margin:0 3px;cursor:pointer}.onboarding-modal__dot:hover{background:#a0b4c5}.onboarding-modal__dot.active{cursor:default;background:#8da5ba}.onboarding-modal__page__wrapper{pointer-events:none;padding:25px;padding-bottom:0}.onboarding-modal__page__wrapper.onboarding-modal__page__wrapper--active{pointer-events:auto}.onboarding-modal__page{cursor:default;line-height:21px}.onboarding-modal__page h1{font-size:18px;font-weight:500;color:#000;margin-bottom:20px}.onboarding-modal__page a{color:#2b90d9}.onboarding-modal__page a:active,.onboarding-modal__page a:focus,.onboarding-modal__page a:hover{color:#3c99dc}.onboarding-modal__page .navigation-bar a{color:inherit}.onboarding-modal__page p{font-size:16px;color:#1b1e25;margin-top:10px;margin-bottom:10px}.onboarding-modal__page p:last-child{margin-bottom:0}.onboarding-modal__page p strong{font-weight:500;background:#282c37;color:#ecf0f4;border-radius:4px;font-size:14px;padding:3px 6px}.onboarding-modal__page p strong:lang(ja),.onboarding-modal__page p strong:lang(ko),.onboarding-modal__page p strong:lang(zh-CN),.onboarding-modal__page p strong:lang(zh-HK),.onboarding-modal__page p strong:lang(zh-TW){font-weight:700}.onboarding-modal__page__wrapper-0{height:100%;padding:0}.onboarding-modal__page-one__lead{padding:65px;padding-top:45px;padding-bottom:0;margin-bottom:10px}.onboarding-modal__page-one__lead h1{font-size:26px;line-height:36px;margin-bottom:8px}.onboarding-modal__page-one__lead p{margin-bottom:0}.onboarding-modal__page-one__extra{padding-right:65px;padding-left:185px;text-align: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:#282c37;color:#ecf0f4;font-weight:500;padding:10px;border-radius:4px}.onboarding-modal__page-five p,.onboarding-modal__page-four p,.onboarding-modal__page-three p,.onboarding-modal__page-two p{text-align:left}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{background:#17191f;color:#ecf0f4;margin-bottom:20px;border-radius:4px;padding:10px;text-align:center;font-size:14px;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.3);box-shadow:1px 2px 6px rgba(0,0,0,.3)}.onboarding-modal__page-five .figure .onboarding-modal__image,.onboarding-modal__page-four .figure .onboarding-modal__image,.onboarding-modal__page-three .figure .onboarding-modal__image,.onboarding-modal__page-two .figure .onboarding-modal__image{border-radius:4px;margin-bottom:10px}.onboarding-modal__page-five .figure.non-interactive,.onboarding-modal__page-four .figure.non-interactive,.onboarding-modal__page-three .figure.non-interactive,.onboarding-modal__page-two .figure.non-interactive{pointer-events:none;text-align:left}.onboarding-modal__page-four__columns .row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.onboarding-modal__page-four__columns .row>div{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;margin:0 10px}.onboarding-modal__page-four__columns .row>div:first-child{margin-left:0}.onboarding-modal__page-four__columns .row>div:last-child{margin-right:0}.onboarding-modal__page-four__columns .row>div p{text-align:center}.onboarding-modal__page-four__columns .row:last-child{margin-bottom:0}.onboarding-modal__page-four__columns .column-header{color:#fff}@media screen and (max-width:320px) and (max-height:600px){.onboarding-modal__page p{font-size:14px;line-height:20px}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{font-size:12px;margin-bottom:10px}.onboarding-modal__page-four__columns .row{margin-bottom:10px}.onboarding-modal__page-four__columns .column-header{padding:5px;font-size:12px}}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.mute-modal,.report-modal{background:#f2f5f7;color:#000;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.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:#fff}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#d9e1e8}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background:#d9e1e8;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div,.mute-modal__action-bar>div{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:right;color:#1b1e25;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button,.mute-modal__action-bar .button{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.boost-modal__status-header{font-size:15px}.boost-modal__status-time{float:right;font-size:14px}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.mute-modal{line-height:24px}.mute-modal .react-toggle{vertical-align:middle}.report-modal{width:90vw;max-width:700px}.report-modal__container{display:-webkit-box;display:-ms-flexbox;display:flex;border-top:1px solid #d9e1e8}@media screen and (max-width:480px){.report-modal__container{-ms-flex-wrap:wrap;flex-wrap:wrap;overflow-y:auto}}.report-modal__comment,.report-modal__statuses{-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}@media screen and (max-width:480px){.report-modal__comment,.report-modal__statuses{width:100%}}.report-modal__statuses{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-height:20vh;max-height:80vh;overflow-y:auto;overflow-x:hidden}.report-modal__statuses .status__content a{color:#2b90d9}.report-modal__statuses .status__content p{color:#000}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #d9e1e8;max-width:320px}.report-modal__comment p{font-size:14px;line-height:20px;margin-bottom:20px}.report-modal__comment .setting-text{display:block;-webkit-box-sizing:border-box;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;border-radius:4px;border:1px solid #d9e1e8;margin-bottom:20px}.report-modal__comment .setting-text:focus{border:1px solid #c0cdd9}.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%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.report-modal__comment .setting-toggle{margin-bottom:4px}}.actions-modal{max-height:80vh;max-width:80vw}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;-ms-flex-negative:0;flex-shrink:0}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#000;display:-webkit-box;display:-ms-flexbox;display:flex;padding:12px 16px;font-size:15px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-decoration:none}.actions-modal ul li:not(:empty) a,.actions-modal ul li:not(:empty) a button{-webkit-transition:none;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:#2b5fd9;color:#fff}.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#1b1e25;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 .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 .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#131419}.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}.loading-bar{background-color:#2b90d9;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;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{margin-top:32px}.media-gallery__audio audio{width:100%}.attachment-list{font-size:14px;border:1px solid #393f4f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list,.attachment-list__icon{display:-webkit-box;display:-ms-flexbox;display:flex}.attachment-list__icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#c2cede;padding:8px 18px;cursor:default;border-right:1px solid #393f4f;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:26px}.attachment-list__icon .fa{display:block}.attachment-list__list{list-style:none;padding:4px 0;padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.attachment-list__list li{display:block;padding:4px 0}.attachment-list__list a{text-decoration:none;color:#c2cede;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:#c2cede}.media-gallery{margin-top:8px;border-radius:4px;width:100%}.media-gallery,.media-gallery__item{-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.media-gallery__item{border:none;display:block;float:left;border-radius:4px}.media-gallery__item.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item-thumbnail{cursor:-webkit-zoom-in;cursor:zoom-in;display:block;text-decoration:none;color:#ecf0f4;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img{-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%}.media-gallery__item-gifv-thumbnail{cursor:-webkit-zoom-in;cursor:zoom-in;height:100%;-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.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;-webkit-box-sizing:border-box;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%;-webkit-transform:translateY(-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}.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%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.video-player__controls{position:absolute;z-index:2;bottom:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.85)),color-stop(60%,rgba(0,0,0,.45)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.45) 60%,transparent);padding:0 15px;opacity:0;-webkit-transition:opacity .1s ease;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:#dde3ec;-webkit-transition:none;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:#f4f6f9}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;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:transparent;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:10px}.video-player__time-sep{display:inline-block;margin:0 6px}.video-player__time-sep,.video-player__time-total{color:#fff}.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:#4e79df}.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;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;background:#4e79df;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.2);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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.account-gallery__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:2px}.account-gallery__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#000;background-size:cover;background-position:50%;position:absolute;color:#dde3ec;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#ecf0f4}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:rgba(0,0,0,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline{background:#1f232b;border-bottom:1px solid #393f4f;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex}.account__section-headline a{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#dde3ec;padding:15px 0;font-size:14px;font-weight:500;text-align:center;text-decoration:none;position:relative}.account__section-headline a.active{color:#ecf0f4}.account__section-headline a.active:after,.account__section-headline a.active:before{display:block;content:\"\";position:absolute;bottom:0;left:50%;width:0;height:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-style:solid;border-width:0 10px 10px;border-color:transparent transparent #393f4f}.account__section-headline a.active:after{bottom:-1px;border-color:transparent transparent #282c37}::-webkit-scrollbar-thumb{border-radius:0}.search-popout{background:#fff;border-radius:4px;padding:10px 14px;padding-bottom:14px;margin-top:10px;color:#364861;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4)}.search-popout h4{text-transform:uppercase;color:#364861;font-size:13px;font-weight:500;margin-bottom:10px}.search-popout li{padding:4px 0}.search-popout ul{margin-bottom:10px}.search-popout em{font-weight:500;color:#000}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:#ecf0f4;max-width:400px}noscript div a{color:#2b90d9;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;-webkit-transition:margin-top .4s .1s;transition:margin-top .4s .1s}.navigation-bar{will-change:padding-bottom;-webkit-transition:padding-bottom .4s .1s;transition:padding-bottom .4s .1s}.navigation-bar>a:first-child{will-change:margin-top,margin-left,margin-right,width;-webkit-transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s;transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s}.navigation-bar>.navigation-bar__profile-edit{will-change:margin-top;-webkit-transition:margin-top .4s .1s;transition:margin-top .4s .1s}.navigation-bar .navigation-bar__actions>.icon-button.close{will-change:opacity transform;-webkit-transition:opacity .2s .1s,-webkit-transform .4s .1s;transition:opacity .2s .1s,-webkit-transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s,-webkit-transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;-webkit-transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s,-webkit-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;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;-webkit-transform:scaleX(0) translate(100%);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;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:mastodon-font-monospace,monospace;background:#282c37;color:#fff;font-size:14px;margin:0;margin-bottom: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:#313543}@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;padding-bottom:16px;background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f}.account__moved-note__message{position:relative;margin-left:58px;color:#c2cede;padding:8px 0;padding-top:0;padding-bottom: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 15px;padding-right:5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#313543}.column-inline-form label{-webkit-box-flex:1;-ms-flex:1 1 auto;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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.list-editor{background:#282c37;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-radius:8px;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#444b5d;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__pager{height:50vh}.list-editor .drawer__inner{border-radius:0 0 8px 8px}.list-editor .drawer__inner.backdrop{width:calc(100% - 60px);-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:0 0 0 8px}.list-editor__accounts{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/reticle-6490ecbb61185e86e62dca0845cf2dcf.png) no-repeat 0 0;border-radius:50%;-webkit-box-shadow:0 0 0 9999em rgba(0,0,0,.35);box-shadow:0 0 0 9999em rgba(0,0,0,.35)}.focal-point__overlay{position:absolute;width:100%;height:100%;top:0;left:0}.floating-action-button{position:fixed;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#2558d0;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;-webkit-box-shadow:2px 3px 9px rgba(0,0,0,.4);box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#4976de}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.account__header .account__header__fields{font-size:14px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0}.account__header .account__header__fields dl{border-top:1px solid #393f4f;display:-webkit-box;display:-ms-flexbox;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{-webkit-box-sizing:border-box;box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#dde3ec;background:#1f232b;width:120px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#fff;background:#282c37}.trends__header{color:#c2cede;background:#2c313d;border-bottom:1px solid #1f232b;font-weight:500;padding:15px;font-size:16px;cursor:default}.trends__header .fa{display:inline-block;margin-right:5px}.trends__item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:15px;border-bottom:1px solid #393f4f}.trends__item:last-child{border-bottom:0}.trends__item__name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#c2cede;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#dde3ec;text-decoration:none;font-size:14px;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{width:100px;font-size:24px;line-height:36px;font-weight:500;text-align:center;color:#ecf0f4}.trends__item__current,.trends__item__sparkline{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.trends__item__sparkline{width:50px}.trends__item__sparkline path{stroke:#459ede!important}.modal-layout{background:#282c37 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;-ms-flex-direction:column;flex-direction:column;height:100vh;padding:0}.modal-layout,.modal-layout__mastodon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal}.modal-layout__mastodon{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.modal-layout__mastodon>*{-webkit-box-flex:1;-ms-flex:1;flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.emoji-mart{font-size:13px;display:inline-block;color:#000}.emoji-mart,.emoji-mart *{-webkit-box-sizing:border-box;box-sizing:border-box;line-height:1.15}.emoji-mart .emoji-mart-emoji{padding:6px}.emoji-mart-bar{border:0 solid #c0cdd9}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#d9e1e8}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 6px;color:#1b1e25;line-height:0}.emoji-mart-anchor{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;padding:12px 4px;overflow:hidden;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;cursor:pointer}.emoji-mart-anchor:hover{color:#131419}.emoji-mart-anchor-selected{color:#2b90d9}.emoji-mart-anchor-selected:hover{color:#2485cb}.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:#2b90d9}.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;padding-right:45px;background:#fff}.emoji-mart-search input{font-size:14px;font-weight:400;padding:7px 9px;font-family:inherit;display:block;width:100%;background:rgba(217,225,232,.3);color:#000;border:1px solid #d9e1e8;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(217,225,232,.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:#364861}.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{-webkit-box-sizing:border-box;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:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec;padding-right:10px}.rich-formatting a{color:#2b90d9;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#dde3ec}.rich-formatting li a,.rich-formatting p a{color:#2b90d9;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.rich-formatting h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#fefefe}.rich-formatting h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.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(96,105,132,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#1f232b;padding:20px 0}.information-board .container-alt{position:relative;padding-right:295px}.information-board__sections{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.information-board__section{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;font-family:\"mastodon-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:#ecf0f4}.information-board__section strong{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;-webkit-box-sizing:border-box;box-sizing:border-box;background:#17191f;padding:20px;padding-top:10px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:mastodon-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#dde3ec;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #313543;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#bcc9da}.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;margin-bottom: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:#dde3ec}.landing-page .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:auto}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(96,105,132,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#282c37;font-size:12px;font-weight:500;color:#dde3ec;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#dde3ec}.landing-page li a,.landing-page p a{color:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#dde3ec;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.landing-page h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#fefefe}.landing-page h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.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(96,105,132,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#282c37;background:linear-gradient(150deg,#393f4f,#282c37);position:relative}.landing-page .header-wrapper.compact{background:#282c37;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec}.landing-page .header-wrapper.compact .hero .heading a{color:#2b90d9;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#dde3ec;text-decoration:none;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#ecf0f4}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#1f232b;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .about-short{background:#1f232b;padding:50px 0 30px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec}.landing-page .about-short a{color:#2b90d9;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#1f232b;border-radius:4px;padding:25px 40px;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}.landing-page__call-to-action .row{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.landing-page__call-to-action .row__information-board{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.landing-page__call-to-action .row__information-board .information-board__section{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:0 10px}@media screen and (max-width:415px){.landing-page__call-to-action .row__information-board{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.landing-page__call-to-action .row__mascot{-webkit-box-flex:1;-ms-flex:1;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 .account{border-bottom:0;padding:0}.landing-page__information .account__display-name{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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 #mastodon-timeline,.landing-page__forms,.landing-page__information{-webkit-box-sizing:border-box;box-sizing:border-box;background:#282c37;border-radius:4px;-webkit-box-shadow:0 0 6px rgba(0,0,0,.1);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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;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:#ecf0f4}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#dde3ec}.landing-page__short-description h1 small span{color:#ecf0f4}.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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;-webkit-box-shadow:none;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#17191f}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#fff;width:100%;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#fff;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#ecf0f4;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#c2cede;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:40px 0;margin-top:30px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .features-list .features-list__row .visual{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#dde3ec;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#dde3ec}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#c2cede}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#c2cede}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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:left;text-align:initial}.landing-page .features .container-alt,.landing-page .header .container-alt{display:block}.landing-page .header .links{padding-top:15px;background:#1f232b}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-pack:distribute;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#17191f;width:100%;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:block;width:100vw;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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 #282c37;text-align:left;background:#1f232b}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #282c37;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:#282c37}.table a{color:#2b90d9;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:transparent}.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:#282c37;border-top:1px solid #17191f;border-bottom:1px solid #17191f}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #17191f}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #17191f}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:mastodon-font-monospace,monospace}button.table-action-link{background:transparent;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:#dde3ec;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:-webkit-box;display:-ms-flexbox;display:flex}.batch-table__row__select,.batch-table__toolbar__select{-webkit-box-sizing:border-box;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__actions,.batch-table__row__content,.batch-table__toolbar__actions,.batch-table__toolbar__content{padding:8px 0;padding-right:16px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.batch-table__toolbar{border:1px solid #17191f;background:#282c37;border-radius:4px 0 0;height:47px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #17191f;border-top:0;background:#1f232b}.batch-table__row:hover{background:#242731}.batch-table__row:nth-child(2n){background:#282c37}.batch-table__row:nth-child(2n):hover{background:#2c313d}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.admin-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.admin-wrapper,.admin-wrapper .sidebar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.admin-wrapper .sidebar-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;background:#282c37;-webkit-box-pack:end;-ms-flex-pack:end;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}.admin-wrapper .sidebar ul{list-style:none;border-radius:4px 0 0 4px;overflow:hidden;margin-bottom:20px}.admin-wrapper .sidebar ul a{display:block;padding:15px;color:#dde3ec;text-decoration:none;-webkit-transition:all .2s linear;transition:all .2s linear;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:#1d2028;-webkit-transition:all .1s linear;transition:all .1s linear}.admin-wrapper .sidebar ul a.selected{background:#242731;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#1f232b;border-radius:0 0 0 4px;margin:0}.admin-wrapper .sidebar ul ul a{border:0;padding:15px 35px}.admin-wrapper .sidebar ul ul a.selected{color:#fff;background-color:#2b5fd9;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul ul a.selected:hover{background-color:#416fdd}.admin-wrapper .content-wrapper{-webkit-box-flex:2;-ms-flex:2;flex:2;overflow:auto}.admin-wrapper .content{max-width:700px;padding:20px 15px;padding-top:60px;padding-left:25px}.admin-wrapper .content h2{color:#ecf0f4;font-size:24px;line-height:28px;font-weight:400;margin-bottom:40px}.admin-wrapper .content h3{color:#ecf0f4;font-size:20px;line-height:28px;font-weight:400;margin-bottom:30px}.admin-wrapper .content h4{text-transform:uppercase;font-size:13px;font-weight:500;color:#dde3ec;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #393f4f}.admin-wrapper .content h6{font-size:16px;color:#ecf0f4;line-height:28px;font-weight:400}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#ecf0f4;margin-bottom:20px}.admin-wrapper .content>p strong{color:#fff;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(96,105,132,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#dde3ec}.admin-wrapper .content .muted-hint a{color:#2b90d9}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;font-weight:500}.admin-wrapper .simple_form{max-width:400px}.admin-wrapper .simple_form.edit_domain_block,.admin-wrapper .simple_form.edit_user,.admin-wrapper .simple_form.new_domain_block,.admin-wrapper .simple_form.new_form_admin_settings,.admin-wrapper .simple_form.new_form_delete_confirmation,.admin-wrapper .simple_form.new_form_two_factor_confirmation,.admin-wrapper .simple_form.new_import{max-width:none}.admin-wrapper .simple_form .actions,.admin-wrapper .simple_form .form_delete_confirmation_password,.admin-wrapper .simple_form .form_two_factor_confirmation_code{max-width:400px}@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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;overflow:visible;overflow:initial}.admin-wrapper .sidebar{width:100%;padding:10px 0;height:auto}.admin-wrapper .sidebar .logo{margin:20px auto}.admin-wrapper .content{padding-top:20px}}.filters{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.filters .filter-subset{-webkit-box-flex:0;-ms-flex:0 0 auto;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:#dde3ec;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #282c37}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #333846}.filters .filter-subset a.selected{color:#2b90d9;border-bottom:2px solid #2b5fd9}.report-accounts{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:20px}.report-accounts,.report-accounts__item{display:-webkit-box;display:-ms-flexbox;display:flex}.report-accounts__item{-webkit-box-flex:250px;-ms-flex:250px;flex:250px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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:#ecf0f4}.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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.account-status,.report-status{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:10px}.account-status .activity-stream,.report-status .activity-stream{-webkit-box-flex:2;-ms-flex:2 0 0px;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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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:#2b90d9;text-decoration:none}.back-link a:hover{text-decoration:underline}.spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.log-entry{margin-bottom:20px;line-height:20px}.log-entry__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px;background:#282c37;color:#dde3ec;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:#c2cede}.log-entry__extras{background:#353a49;border-radius:0 0 4px 4px;padding:10px;color:#dde3ec;font-family:mastodon-font-monospace,monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#c2cede}.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:#2b5fd9}.log-entry .target,.log-entry .username,.log-entry a{color:#ecf0f4;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#ecf0f4}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#ecf0f4}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.name-tag .avatar,a.name-tag .avatar{display:block;margin:0;margin-right:5px;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:#79bd9a}.speech-bubble.negative{border-left-color:#e87487}.speech-bubble__bubble{padding:16px;padding-left:14px;font-size:15px;line-height:20px;border-radius:4px 4px 4px 0;position:relative;font-weight:500}.speech-bubble__bubble a{color:#dde3ec}.speech-bubble__owner{padding:8px;padding-left:12px}.speech-bubble time{color:#c2cede}.dashboard__counters{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -5px;margin-bottom:20px}.dashboard__counters>div{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 33.333%;flex:0 0 33.333%;padding:0 5px;margin-bottom:10px}.dashboard__counters>div>a,.dashboard__counters>div>div{padding:20px;background:#313543;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:#393f4f}.dashboard__counters__num{text-align:center;font-weight:500;font-size:24px;color:#fff;font-family:mastodon-font-display,sans-serif;margin-bottom:20px}.dashboard__counters__label{font-size:14px;color:#dde3ec;text-align:center;font-weight:500}.dashboard__widgets{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -5px}.dashboard__widgets>div{-webkit-box-flex:0;-ms-flex:0 0 33.333%;flex:0 0 33.333%;margin-bottom:20px}.dashboard__widgets>div>div{padding:0 5px}.dashboard__widgets a:not(.name-tag){color:#d9e1e8;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:-15px;margin-right:0}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{margin-left:0;margin-right:8px}body.rtl .setting-meta__label{float:left}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 .activity-stream .detailed-status.light .detailed-status__display-name>div{float:right;margin-right:0;margin-left:10px}body.rtl .activity-stream .detailed-status.light .detailed-status__meta span>span{margin-left:0;margin-right:6px}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-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:0;margin-left:2.14285714em}body.rtl .fa-li{left:auto;right:-2.14285714em}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,body.rtl .simple_form .input.with_label.boolean label.checkbox{padding-left:0;padding-right:25px}body.rtl .simple_form .check_boxes .checkbox input[type=checkbox],body.rtl .simple_form .input.boolean input[type=checkbox]{left:auto;right:0}body.rtl .simple_form .input-with-append .input input{padding-left:142px;padding-right:0}body.rtl .simple_form .input-with-append .append{right:auto;left:0}body.rtl .simple_form .input-with-append .append:after{right:auto;left:0;background-image:-webkit-gradient(linear,right top,left top,from(rgba(40,44,55,0)),to(#282c37));background-image:linear-gradient(270deg,rgba(40,44,55,0),#282c37)}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 .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 #mastodon-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}}.emojione[title=\":8ball:\"],.emojione[title=\":ant:\"],.emojione[title=\":back:\"],.emojione[title=\":black_circle:\"],.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=\":bust_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=\":end:\"],.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=\":lower_left_fountain_pen:\"],.emojione[title=\":on:\"],.emojione[title=\":registered:\"],.emojione[title=\":soon:\"],.emojione[title=\":spades:\"],.emojione[title=\":spider:\"],.emojione[title=\":tm:\"],.emojione[title=\":top:\"],.emojione[title=\":video_game:\"],.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);-webkit-transform:scale(.71);transform:scale(.71)}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder,.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:1}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/contrast.js b/priv/static/packs/contrast.js
deleted file mode 100644
index 8013af562..000000000
Binary files a/priv/static/packs/contrast.js and /dev/null differ
diff --git a/priv/static/packs/contrast.js.map b/priv/static/packs/contrast.js.map
deleted file mode 100644
index 0eb9d69cd..000000000
Binary files a/priv/static/packs/contrast.js.map and /dev/null differ
diff --git a/priv/static/packs/core/admin.js b/priv/static/packs/core/admin.js
new file mode 100644
index 000000000..28e0c2d97
Binary files /dev/null and b/priv/static/packs/core/admin.js differ
diff --git a/priv/static/packs/core/admin.js.map b/priv/static/packs/core/admin.js.map
new file mode 100644
index 000000000..4491e8298
Binary files /dev/null and b/priv/static/packs/core/admin.js.map differ
diff --git a/priv/static/packs/core/common.css b/priv/static/packs/core/common.css
new file mode 100644
index 000000000..89a93cc00
Binary files /dev/null and b/priv/static/packs/core/common.css differ
diff --git a/priv/static/packs/core/common.css.map b/priv/static/packs/core/common.css.map
new file mode 100644
index 000000000..7dc3a5001
--- /dev/null
+++ b/priv/static/packs/core/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"core/common.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/core/common.js b/priv/static/packs/core/common.js
new file mode 100644
index 000000000..cefe900fd
Binary files /dev/null and b/priv/static/packs/core/common.js differ
diff --git a/priv/static/packs/core/common.js.map b/priv/static/packs/core/common.js.map
new file mode 100644
index 000000000..8b53f1933
Binary files /dev/null and b/priv/static/packs/core/common.js.map differ
diff --git a/priv/static/packs/core/embed.js b/priv/static/packs/core/embed.js
new file mode 100644
index 000000000..6e09deef6
Binary files /dev/null and b/priv/static/packs/core/embed.js differ
diff --git a/priv/static/packs/core/embed.js.map b/priv/static/packs/core/embed.js.map
new file mode 100644
index 000000000..2121d5e07
Binary files /dev/null and b/priv/static/packs/core/embed.js.map differ
diff --git a/priv/static/packs/core/mailer.css b/priv/static/packs/core/mailer.css
new file mode 100644
index 000000000..39d8e9d50
Binary files /dev/null and b/priv/static/packs/core/mailer.css differ
diff --git a/priv/static/packs/core/mailer.css.map b/priv/static/packs/core/mailer.css.map
new file mode 100644
index 000000000..bda228d26
--- /dev/null
+++ b/priv/static/packs/core/mailer.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/styles/mailer.scss"],"names":[],"mappings":"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","file":"core/mailer.css","sourcesContent":["@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}div,table,td{box-sizing:border-box}body,html{width:100%!important;min-width:100%;margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}.email-body a,.email-body div,.email-body span,.email-body td{line-height:inherit}a,a:visited,a span{text-decoration:none;color:#d8a070}#outlook a{padding:0}img{outline:none;border:0;text-decoration:none;-ms-interpolation-mode:bicubic;clear:both;line-height:100%}table{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}td{vertical-align:top}.column,.column-cell,.content-section,.email-table{width:100%;min-width:100%}.email-body{font-size:0!important;line-height:100%;text-align:center;padding-left:16px;padding-right:16px}.email-start{padding-top:32px}.email-end{padding-bottom:32px}.email-body,body,html{background-color:#192432}.col-0,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.email-container,.email-row{font-size:0;display:inline-block;width:100%;min-width:100%;min-width:0!important;vertical-align:top}.content-cell{width:100%;min-width:100%;min-width:0!important}.column-cell{padding-top:16px;padding-bottom:16px;vertical-align:top}.column-cell.button-cell{padding-top:0}.email-container{max-width:632px}.email-container,.email-row{margin:0 auto;text-align:center}.email-row{display:block;max-width:600px!important;clear:both}.col-0{max-width:50px}.col-1{max-width:100px}.col-2{max-width:200px}.col-3{max-width:300px}.col-4{max-width:400px}.col-5{max-width:500px}.col-6{max-width:600px}.column-cell,.column-cell td,p{font-family:Helvetica,Arial,sans-serif}@media only screen{.column-cell,.column-cell td,p{font-family:\"mastodon-font-sans-serif\",sans-serif!important}}.column-cell,.email-body .column-cell,p{font-size:15px;line-height:23px;color:#9baec8;mso-line-height-rule:exactly;text-rendering:optimizelegibility}p{display:block;margin-top:0;margin-bottom:16px}p.small{font-size:13px}p.lead{font-size:19px;line-height:27px}h1,h2,h3,h4,h5,h6{color:#d9e1e8;margin:20px 0 8px;padding:0;font-weight:500}h1{font-size:26px;line-height:36px}h2{font-size:23px;line-height:30px}h3{font-size:19px;line-height:25px}h5{font-size:16px;line-height:21px;font-weight:700;color:#4c6d98}.input-cell h5{margin-top:4px}.input td{background:#040609;padding:16px;line-height:20px;mso-line-height-rule:exactly;border-radius:4px;text-align:center;font-weight:500;font-size:17px}.blank-cell,.content-cell{width:100%;font-size:0;text-align:center;vertical-align:top;padding-left:16px;padding-right:16px}.content-cell{background-color:#0b1016}.content-cell.darker{background-color:#040609}.hero{background-color:#121a24;padding-top:20px}.hero-with-button{padding-bottom:16px}.hero-with-button h1{margin-bottom:4px}.hero-with-button p.lead{margin-bottom:32px}.header{border-radius:5px 5px 0 0;background-color:#040609}.header .column-cell{text-align:center;padding-top:20px;padding-bottom:8px}.content-start{padding-top:32px}.content-end{border-radius:0 0 5px 5px;padding-top:16px}.footer .column-cell,.footer p{color:#4c6d98}.footer p{font-size:13px}.footer p,.footer p.small{margin-bottom:0}.footer a{color:#4c6d98;text-decoration:underline}.footer img{opacity:.3}.logo{position:relative;left:-4px}.button{display:table;margin-left:auto;margin-right:auto}.button td{line-height:20px;mso-line-height-rule:exactly;border-radius:4px;text-align:center;font-weight:500;font-size:17px;padding:0!important}.button td a,.button td a span{color:#fff;display:block!important;text-align:center!important;vertical-align:top!important;line-height:inherit!important}.button td a{padding:10px 22px!important;line-height:26px!important;font-weight:500!important}.button.button-small td{border-radius:4px;font-size:14px;padding:8px 16px}.button.button-small td a{padding:5px 16px!important;line-height:26px!important}.button-default{background-color:#040609}.button-primary{background-color:#d59864}.text-center{text-align:center}.text-right{text-align:right}.padded{padding-left:16px;padding-right:16px}.padded-bottom{padding-bottom:32px}.margin-bottom{margin-bottom:20px}.hero-icon{width:64px}.hero-icon td{text-align:center;vertical-align:middle;line-height:100%;mso-line-height-rule:exactly;padding:16px;border-radius:80px;background:#79bd9a}.hero-icon.alert-icon td{background:#df405a}.hero-icon img{max-width:32px;width:32px;height:32px;display:block;line-height:100%}.hr{width:100%}.hr td{font-size:0;line-height:1px;mso-line-height-rule:exactly;min-height:1px;overflow:hidden;height:2px;background-color:transparent!important;border-top:1px solid #202e3f}.status{padding-bottom:32px}.status .status-header td{font-size:14px;padding-bottom:15px}.status .status-header bdi{color:#fff;font-size:16px;display:block;font-weight:500}.status .status-header td:first-child{padding-right:10px}.status .status-header img{width:48px;height:48px;border-radius:4px}.status p{font-size:19px;margin-bottom:20px}.status p.status-footer{color:#3e5a7c;font-size:14px;margin-bottom:0}.status p.status-footer a{color:#3e5a7c}.border-top{border-top:1px solid #202e3f}ul{padding-left:15px;margin-top:0;margin-bottom:0;padding-top:16px}ul li{margin-bottom:16px;color:#3e5a7c}ul li span{color:#9baec8}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){body{min-height:1024px!important}}@media (max-width:697px){.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.email-container{width:100%!important;max-width:none!important}.email-start{padding-top:16px!important}.email-end{padding-bottom:16px!important}.padded{padding-left:0!important;padding-right:0!important}}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/core/mailer.js b/priv/static/packs/core/mailer.js
new file mode 100644
index 000000000..1003e1bd9
Binary files /dev/null and b/priv/static/packs/core/mailer.js differ
diff --git a/priv/static/packs/core/mailer.js.map b/priv/static/packs/core/mailer.js.map
new file mode 100644
index 000000000..2b23293a4
Binary files /dev/null and b/priv/static/packs/core/mailer.js.map differ
diff --git a/priv/static/packs/core/public.js b/priv/static/packs/core/public.js
new file mode 100644
index 000000000..c5ef0a121
Binary files /dev/null and b/priv/static/packs/core/public.js differ
diff --git a/priv/static/packs/core/public.js.map b/priv/static/packs/core/public.js.map
new file mode 100644
index 000000000..b32988bdb
Binary files /dev/null and b/priv/static/packs/core/public.js.map differ
diff --git a/priv/static/packs/core/settings.js b/priv/static/packs/core/settings.js
new file mode 100644
index 000000000..18a48ad17
Binary files /dev/null and b/priv/static/packs/core/settings.js differ
diff --git a/priv/static/packs/core/settings.js.map b/priv/static/packs/core/settings.js.map
new file mode 100644
index 000000000..43a141574
Binary files /dev/null and b/priv/static/packs/core/settings.js.map differ
diff --git a/priv/static/packs/default.css b/priv/static/packs/default.css
deleted file mode 100644
index 86cecd141..000000000
Binary files a/priv/static/packs/default.css and /dev/null differ
diff --git a/priv/static/packs/default.css.map b/priv/static/packs/default.css.map
deleted file mode 100644
index c4114b07a..000000000
--- a/priv/static/packs/default.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///./app/javascript/styles/application.scss"],"names":[],"mappings":"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","file":"default.css","sourcesContent":["@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-monospace;src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#192432;border:0 none #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#1c2938}::-webkit-scrollbar-thumb:active{background:#192432}::-webkit-scrollbar-track{border:0 none #fff;border-radius:0;background:rgba(0,0,0,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#121a24}::-webkit-scrollbar-corner{background:transparent}body{font-family:\"mastodon-font-sans-serif\",sans-serif;background:#040609;font-size:13px;line-height:18px;font-weight:400;color:#fff;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Droid Sans,Helvetica Neue,Fira Sans,mastodon-font-sans-serif,sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#121a24}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#121a24}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:#192432;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#0b1016;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#9baec8;background:#121a24;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;outline:0!important}.container-alt{width:700px;margin:0 auto;margin-top:40px}@media screen and (max-width:740px){.container-alt{width:100%;margin:0}}.logo-container{margin:100px auto;margin-bottom:50px}@media screen and (max-width:400px){.logo-container{margin:30px auto;margin-bottom:20px}}.logo-container h1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.logo-container h1 img{height:42px;margin-right:10px}.logo-container h1 a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;text-decoration:none;outline:0;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.compose-standalone .compose-form{width:400px;margin:0 auto;padding:20px 0;margin-top:40px;-webkit-box-sizing:border-box;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;margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;line-height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:20px 0;padding-bottom:0;margin-bottom:-30px;margin-top:40px}@media screen and (max-width:440px){.account-header{width:100%;margin:0;margin-bottom:10px;padding:20px;padding-bottom: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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#d9e1e8;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:-webkit-box;display:-ms-flexbox;display:flex}.grid-3 .landing-page__call-to-action,.grid-3 .row__information-board{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.grid-3 .row__information-board{width:100%}.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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#202e3f;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;z-index:110}}.public-layout .header>div{-webkit-box-flex:1;-ms-flex:1 1 33.3%;flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.public-layout .header .nav-center,.public-layout .header .nav-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.public-layout .header .nav-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.public-layout .header .nav-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#26374d}.public-layout .header .nav-link{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#9baec8;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-button{background:#2d415a;margin:8px;margin-left: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:#344b68}.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;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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:#d9e1e8}.public-layout .public-account-header.inactive .logo-button svg path:last-child{fill:#d9e1e8}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#000}.public-layout .public-account-header__image:after{content:\"\";display:block;position:absolute;width:100%;height:100%;-webkit-box-shadow:inset 0 -1px 1px 1px rgba(0,0,0,.15);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;-webkit-box-shadow:none;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.public-layout .public-account-header__bar:before{content:\"\";display:block;background:#192432;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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 #192432;background:#040609}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#192432;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;padding-left: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{-ms-flex-wrap:wrap;flex-wrap:wrap}}.public-layout .public-account-header__tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;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:#9baec8}}.public-layout .public-account-header__tabs__tabs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;height:58px}.public-layout .public-account-header__tabs__tabs .details-counters{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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%;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#9baec8;padding:10px;border-right:1px solid #192432;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 #9baec8;opacity:.5;-webkit-transition:all .4s ease;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #d8a070;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#d9e1e8}.public-layout .public-account-header__tabs__tabs .counter:hover:after{opacity:1;-webkit-transition-duration:.1s;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:mastodon-font-display,sans-serif}.public-layout .public-account-header__tabs__tabs .spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;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;-webkit-box-shadow:none;box-shadow:none;background:transparent;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #26374d}.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:#9baec8}.public-layout .public-account-header__extra__links a{display:inline-block;color:#9baec8;text-decoration:none;padding:15px}.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;-webkit-box-flex:100%;-ms-flex:100%;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:#202e3f;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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{-webkit-box-shadow:none;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:#e1b590}.public-layout .public-account-bio .account__header__content{padding:20px;padding-bottom:0;color:#fff}.public-layout .public-account-bio .roles,.public-layout .public-account-bio__extra{padding:20px;font-size:14px;color:#9baec8}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#3e5a7c;font-size:18px}.public-layout .static-icon-button>span{font-size:14px;font-weight:500}.public-layout .card-grid{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:100%;margin:0 -5px}.public-layout .card-grid>div{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;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 #202e3f}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #202e3f}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#121a24}.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:#192432}}.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{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#4c6d98}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#4c6d98}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#9baec8}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#4c6d98}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#4c6d98}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#5377a5}.compact-header h1{font-size:24px;line-height:28px;color:#9baec8;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:#d9e1e8}.compact-header h1 img{display:inline-block;margin-bottom:-5px;margin-right:15px;width:36px;height:36px}.hero-widget{margin-bottom:10px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}.hero-widget__img{width:100%;height:167px;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:#121a24;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#9baec8;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:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.hero-widget__text a{color:#d9e1e8;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:#9baec8}.endorsements-widget .account{padding:10px 0}.endorsements-widget .account:last-child{border-bottom:0}.endorsements-widget .account .account__display-name{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.endorsements-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.box-widget,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#121a24;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100%}.contact-widget{font-size:15px;color:#9baec8;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;padding-bottom:20px;border-radius:4px;background:#121a24;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);color:#d9e1e8;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:#9baec8}.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;border-radius:4px;background:#000;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);font-size:14px;color:#9baec8;margin-bottom:10px}@media screen and (max-width:415px){.box-widget,.contact-widget,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget{margin-bottom:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0}}code{font-family:mastodon-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 .row{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 -5px}.simple_form .row .input{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:50%;padding:0 5px}.simple_form span.hint{display:block;color:#9baec8;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#9baec8}.simple_form p.hint.subtle-hint{text-align:center;font-size:12px;line-height:18px;margin-top:15px;margin-bottom:0;color:#9baec8}.simple_form p.hint.subtle-hint a{color:#d8a070}.simple_form p.hint code{border-radius:3px;padding:.2em .4em;background:#000}.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 .label_input{display:-webkit-box;display:-ms-flexbox;display:flex}.simple_form .label_input label{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.simple_form .label_input input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.with_label{padding:15px 0;margin-bottom:0}.simple_form .input.with_label .label_input{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.simple_form .input.with_label.file .label_input{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.simple_form .input.with_label.select .label_input{-webkit-box-align:initial;-ms-flex-align:initial;align-items:initial}.simple_form .input.with_label .label_input>label{font-family:inherit;font-size:16px;color:#fff;display:block;padding-top:5px;margin-bottom:5px;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:150px;word-wrap:break-word}.simple_form .input.with_label .label_input>label.select{-webkit-box-flex:0;-ms-flex:0;flex:0}.simple_form .input.with_label .label_input>label~*{margin-left:10px}.simple_form .input.with_label ul{-webkit-box-flex:390px;-ms-flex:390px;flex:390px}.simple_form .input.with_label.boolean{padding:0;padding:initial;margin-bottom:0}.simple_form .input.with_label.boolean .label_input>label{font-family:inherit;font-size:14px;color:#fff;display:block;width:auto}.simple_form .input.with_label.boolean label.checkbox{position:relative;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.with_block_label{padding-top:15px}.simple_form .input.with_block_label>label{font-family:inherit;font-size:16px;color:#fff;display:block;padding-top:5px}.simple_form .input.with_block_label .hint{margin-bottom:15px}.simple_form .input.with_block_label ul{-webkit-columns:2;columns:2}.simple_form .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 .input.boolean{margin-bottom:5px}.simple_form .input.boolean label{font-family:inherit;font-size:14px;color:#fff;display:block;width:auto}.simple_form .input.boolean label.checkbox{position:relative;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.boolean input[type=checkbox]{position:absolute;left:0;top:5px;margin:0}.simple_form .input.boolean .hint{padding-left:25px;margin-left:0}.simple_form .check_boxes .checkbox label{font-family:inherit;font-size:14px;color:#fff;display:block;width:auto;position:relative;padding-top:5px;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;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{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;border:0;border-bottom:2px solid #9baec8;border-radius:2px 2px 0 0;padding:7px 4px;font-size:16px;color:#fff;display:block;width:100%;outline:0;font-family:inherit;resize:vertical}.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{-webkit-box-shadow:none;box-shadow:none}.simple_form input[type=email]:focus:invalid,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{border-bottom-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-bottom-color:#79bd9a}.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-bottom-color:#d8a070;background:rgba(0,0,0,.1)}.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=password],.simple_form .input.field_with_errors input[type=text]{border-bottom-color:#79bd9a}.simple_form .input.field_with_errors .error{display:block;font-weight:500;color:#e87487;margin-top:4px}.simple_form .actions{margin-top:30px;display:-webkit-box;display:-ms-flexbox;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:#d8a070;color:#fff;font-size:18px;line-height:inherit;height:auto;padding:10px;text-transform:uppercase;text-decoration:none;text-align:center;-webkit-box-sizing:border-box;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:#ddad84}.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:#d3935c}.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{font-size:16px;max-height:29px}.simple_form .input-with-append{position:relative}.simple_form .input-with-append .input input{padding-right:142px}.simple_form .input-with-append .append{position:absolute;right:0;top:0;padding:7px 4px;padding-bottom:9px;font-size:16px;color:#3e5a7c;font-family:inherit;pointer-events:none;cursor:default;max-width:140px;white-space:nowrap;overflow:hidden}.simple_form .input-with-append .append:after{content:\"\";display:block;position:absolute;top:0;right:0;bottom:1px;width:5px;background-image:-webkit-gradient(linear,left top,right top,from(rgba(18,26,36,0)),to(#121a24));background-image:linear-gradient(90deg,rgba(18,26,36,0),#121a24)}.flash-message{background:#202e3f;color:#9baec8;border-radius:4px;padding:15px 10px;margin-bottom:30px;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2);text-align:center}.flash-message p{margin-bottom:15px}.flash-message .oauth-code{outline:0;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:mastodon-font-monospace,monospace;background:#121a24;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:#192432}.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:#9baec8;text-decoration:none}.form-footer a:hover{text-decoration:underline}.follow-prompt,.oauth-prompt{margin-bottom:30px;text-align:center;color:#9baec8}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px}.follow-prompt strong,.oauth-prompt strong{color:#d9e1e8;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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.qr-code{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#fff;padding:4px;margin:0 10px 20px 0;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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:#d9e1e8;-webkit-box-flex:150px;-ms-flex:150px;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{-webkit-box-sizing:border-box;box-sizing:border-box;background:rgba(223,64,90,.5);color:#fff;text-shadow:1px 1px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 2px 6px rgba(0,0,0,.4);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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.action-pagination .actions,.action-pagination .pagination{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.action-pagination .actions{padding:30px 0;padding-right:20px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.post-follow-actions{text-align:center;color:#9baec8}.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:mastodon-font-monospace,monospace}.card>a{display:block;text-decoration:none;color:inherit;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}@media screen and (max-width:415px){.card>a{-webkit-box-shadow:none;box-shadow:none}}.card>a:active .card__bar,.card>a:focus .card__bar,.card>a:hover .card__bar{background:#202e3f}.card__img{height:130px;position:relative;background:#000;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#192432;border-radius:0 0 4px 4px}@media screen and (max-width:415px){.card__bar{border-radius:0}}.card__bar .avatar{-webkit-box-flex:0;-ms-flex:0 0 auto;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:#040609}.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:#9baec8;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:#121a24;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#d9e1e8}.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:#233346}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#121a24;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);color:#9baec8;font-size:14px;font-weight:500;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;border-radius:4px;padding:20px;min-height:30vh}.nothing-here--under-tabs{border-radius:0 0 4px 4px}.account-role{display:inline-block;padding:4px 6px;cursor:default;border-radius:3px;font-size:12px;line-height:12px;font-weight:500;color:#d9e1e8;background-color:rgba(217,225,232,.1);border:1px solid rgba(217,225,232,.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:0 none;border-top:1px solid #26374d;border-bottom:1px solid #26374d;font-size:14px;line-height:20px}.account__header__fields dl{display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:1px solid #26374d}.account__header__fields dd,.account__header__fields dt{-webkit-box-sizing:border-box;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;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#d9e1e8;background:rgba(4,6,9,.5)}.account__header__fields dd{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#9baec8}.account__header__fields a{color:#d8a070;text-decoration:none}.account__header__fields a:active,.account__header__fields a:focus,.account__header__fields a:hover{text-decoration:underline}.account__header__fields dl:last-child{border-bottom:0}.activity-stream{-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px;text-align:left}@media screen and (max-width:415px){.activity-stream{margin-bottom:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}}.activity-stream--headless{border-radius:0;margin:0;-webkit-box-shadow:none;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:#121a24}.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:#202e3f}.button.logo-button{-webkit-box-flex:0;-ms-flex:0 auto;flex:0 auto;font-size:14px;background:#d8a070;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}.button.logo-button svg path:first-child{fill:#fff}.button.logo-button svg path:last-child{fill:#d8a070}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#e3bb98}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#e3bb98}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button.disabled i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#d8a070;border:10px none;border-radius:4px;-webkit-box-sizing:border-box;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;-webkit-transition:all .1s ease-in;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#e3bb98;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.button--destructive{-webkit-transition:none;transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;-webkit-transition:none;transition:none}.button:disabled{background-color:#9baec8;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#121a24;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#a8b9cf}.button.button-alternative-2{background:#3e5a7c}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#45648a}.button.button-secondary{color:#9baec8;background:transparent;padding:3px 15px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#a8b9cf;color:#a8b9cf}.button.button--block{display:block;width:100%}.column__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.icon-button{display:inline-block;padding:0;color:#3e5a7c;border:none;background:transparent;cursor:pointer;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#4a6b94;-webkit-transition:color .2s ease-out;transition:color .2s ease-out}.icon-button.disabled{color:#283a50;cursor:default}.icon-button.active{color:#d8a070}.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:#3e5a7c}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#324965}.icon-button.inverted.disabled{color:#4a6b94}.icon-button.inverted.active{color:#d8a070}.icon-button.inverted.active.disabled{color:#e6c3a4}.icon-button.overlayed{-webkit-box-sizing:content-box;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:#3e5a7c;border:none;background:transparent;cursor:pointer;font-weight:600;font-size:11px;padding:0 3px;line-height:27px;outline:0;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.text-icon-button:active,.text-icon-button:focus,.text-icon-button:hover{color:#324965;-webkit-transition:color .2s ease-out;transition:color .2s ease-out}.text-icon-button.disabled{color:#6b8cb5;cursor:default}.text-icon-button.active{color:#d8a070}.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}.dropdown-menu,.invisible{position:absolute}.invisible{font-size:0;line-height:0;display:inline-block;width:0;height:0}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:\"\\2026\"}.compose-form{padding:10px}.compose-form .compose-form__warning{color:#121a24;margin-bottom:10px;background:#9baec8;-webkit-box-shadow:0 2px 6px rgba(0,0,0,.3);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:#121a24;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:#3e5a7c;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 .compose-form__autosuggest-wrapper{position:relative}.compose-form .compose-form__autosuggest-wrapper .emoji-picker-dropdown{position:absolute;right:5px;top:5px}.compose-form .autosuggest-textarea,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:47px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;margin:0;color:#121a24;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:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{height:100px!important;resize:vertical}}.compose-form .autosuggest-textarea__suggestions{-webkit-box-sizing:border-box;box-sizing:border-box;display:none;position:absolute;top:100%;width:100%;z-index:99;-webkit-box-shadow:4px 4px 6px rgba(0,0,0,.4);box-shadow:4px 4px 6px rgba(0,0,0,.4);background:#d9e1e8;border-radius:0 0 4px 4px;color:#121a24;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:#b9c8d5}.compose-form .autosuggest-account,.compose-form .autosuggest-emoji{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;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:#3e5a7c}.compose-form .compose-form__modifiers{color:#121a24;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:5px;-ms-flex-wrap:wrap;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__upload{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;min-width:40%;margin:5px}.compose-form .compose-form__modifiers .compose-form__upload__actions{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.8)),color-stop(80%,rgba(0,0,0,.35)),to(transparent));background:linear-gradient(180deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;opacity:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;color:#d9e1e8;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:#eff3f5}.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;-webkit-box-sizing:border-box;box-sizing:border-box;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.8)),color-stop(80%,rgba(0,0,0,.35)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);padding:10px;opacity:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload-description input{background:transparent;color:#d9e1e8;border:0;padding:0;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description input:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder,.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:.75;color:#d9e1e8}.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:140px;width:100%;overflow:hidden}.compose-form .compose-form__buttons-wrapper{padding:10px;background:#ebebeb;border-radius:0 0 4px 4px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.compose-form .compose-form__buttons-wrapper,.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:-webkit-box;display:-ms-flexbox;display:flex}.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{-webkit-box-sizing:content-box;box-sizing:content-box;padding:0 3px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper{-ms-flex-item-align:center;align-self:center;margin-right:4px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter{cursor:default;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:14px;font-weight:600;color:#3e5a7c}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter.character-counter--over{color:#ff5050}.compose-form .compose-form__publish{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;min-width:0}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.no-reduce-motion .spoiler-input{-webkit-transition:height .4s ease,opacity .4s ease;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:#9baec8;padding:10px}.reply-indicator__header{margin-bottom:5px;overflow:hidden}.reply-indicator__cancel{float:right;line-height:24px}.reply-indicator__display-name{color:#121a24;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;overflow:hidden;text-overflow:ellipsis;white-space:pre-wrap;padding-top:2px;color:#fff}.reply-indicator__content strong,.status__content strong{font-weight:700}.reply-indicator__content em,.status__content em{font-style:italic}.reply-indicator__content blockquote,.status__content blockquote{margin:.2em 0 .2em 2em;font-style:italic}.reply-indicator__content ul,.status__content ul{list-style:disc}.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}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:0}.reply-indicator__content a,.status__content a{color:#d8a070;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:#4a6b94}.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:#3e5a7c}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#3e5a7c}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#4a6b94;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{padding-bottom:25px;max-height:200px}.status__content.status__content--collapsed i{-webkit-transform:rotateX(0);transform:rotateX(0)}.status__content.status__content--expanded{padding-bottom:25px;height:auto}.status__content.status__content--expanded i{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.status__content__collapse-button{display:block;position:absolute;bottom:0;left:0;right:0;width:100%;height:25px;font-size:18px;line-height:25px;color:#121a24;text-align:center;background:#3e5a7c;-webkit-transition:background .2s ease-in-out,color .2s ease-in-out;transition:background .2s ease-in-out,color .2s ease-in-out;border:0;border-radius:2px}.status__content__collapse-button:hover{background:#4a6b94}.status__content__collapse-button i{-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.status__content__collapse-button i,.status__content__collapse-button i:hover{color:#121a24!important}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:transparent;border:0;color:#121a24;font-weight:700;font-size:11px;padding:0 6px;text-transform:uppercase;line-height:20px;cursor:pointer;vertical-align:middle}.status__wrapper--filtered{color:#3e5a7c;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;clear:both;border-bottom:1px solid #202e3f}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#192432}.focusable:focus .status.status-direct{background:#26374d}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#202e3f}.status{padding:8px 10px;padding-left:68px;position:relative;min-height:48px;border-bottom:1px solid #202e3f;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{background:#202e3f}.status.light .status__relative-time{color:#9baec8}.status.light .display-name strong,.status.light .status__display-name{color:#121a24}.status.light .display-name span{color:#9baec8}.status.light .status__content{color:#121a24}.status.light .status__content a{color:#d8a070}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#547aa9}.status__relative-time{color:#3e5a7c;float:right;font-size:14px}.status__display-name{color:#3e5a7c}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px}.status-check-box{border-bottom:1px solid #d9e1e8;display:-webkit-box;display:-ms-flexbox;display:flex}.status-check-box .status-check-box__status{margin:10px 0 10px 10px;-webkit-box-flex:1;-ms-flex:1;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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px}.status__prepend{margin-left:68px;color:#3e5a7c;padding:8px 0;padding-bottom:2px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#3e5a7c}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:8px}.status__action-bar-button{float:left;margin-right:18px}.status__action-bar-dropdown{float:left;height:23.15px;width:23.15px}.detailed-status__action-bar-dropdown{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative}.detailed-status{background:#192432;padding:14px 10px}.detailed-status--flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.detailed-status--flex .detailed-status__meta,.detailed-status--flex .status__content{-webkit-box-flex:100%;-ms-flex:100%;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:#3e5a7c;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#121a24;font-size:14px}.reply-indicator__content a{color:#3e5a7c}.domain{padding:10px;border-bottom:1px solid #202e3f}.domain .domain__domain-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;color:#fff;text-decoration:none;font-size:14px;font-weight:500}.domain__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.domain_buttons{height:18px;padding:10px;white-space:nowrap}.account{padding:10px;border-bottom:1px solid #202e3f}.account.compact{padding:0;border-bottom:0}.account.compact .account__avatar-wrapper{margin-left:0}.account .account__display-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;color:#9baec8;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}a .account__avatar{cursor:pointer}.account__avatar-overlay{width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:4px;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:4px;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:18px;padding:10px;white-space:nowrap}.account__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#192432;text-align:center;background-size:cover;background-position:50%;position:relative}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#d9e1e8}.account__header>div{background:rgba(25,36,50,.9);padding:20px 10px}.account__header .account__header__content{color:#d9e1e8}.account__header .account__header__display-name{color:#fff;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#d8a070;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.account__disclaimer{padding:10px;border-top:1px solid #202e3f;color:#3e5a7c}.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__header__content{color:#9baec8;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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;line-height:36px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px;text-align:center}.account__action-bar__tab{text-decoration:none;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;border-right:1px solid #202e3f;padding:10px 0}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#9baec8}.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__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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:#d9e1e8;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}.muted .status__content,.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#3e5a7c}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#3e5a7c;color:#121a24}.muted a.status__content__spoiler-link:hover{background:#4a6b94;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#9baec8;font-size:15px;position:relative}.notification__message .fa{color:#d8a070}.notification__message>span{display:block;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}.display-name{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.image-loader{position:relative;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.image-loader .image-loader__preview-canvas{max-width:100%;max-height:80%;background:url(/packs/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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-negative:0;flex-shrink:0;cursor:default;color:#9baec8}.navigation-bar strong{color:#d9e1e8}.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;-webkit-transform:scaleX(0) translate(-100%);transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);opacity:1}.navigation-bar__profile{-webkit-box-flex:1;-ms-flex:1 1 auto;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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;height:0}.dropdown-menu{background:#d9e1e8;padding:4px 0;border-radius:4px;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4)}.dropdown-menu ul{list-style:none}.dropdown-menu.left{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.dropdown-menu.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.dropdown-menu.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.dropdown-menu.right{-webkit-transform-origin:0 50%;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:#d9e1e8}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-13px;border-width:5px 7px 0;border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-13px;border-width:0 7px 5px;border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#d9e1e8}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;-webkit-box-sizing:border-box;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#121a24;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#d8a070;color:#d9e1e8;outline:0}.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:#d9e1e8;padding:4px 0;border-radius:4px;-webkit-box-shadow:0 0 15px rgba(0,0,0,.4);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;-webkit-box-sizing:border-box;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#121a24;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:#d8a070;color:#d9e1e8}.dropdown__icon{vertical-align:middle}.columns-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;overflow-x:auto;position:relative}.columns-area.unscrollable{overflow-x:hidden}@media screen and (min-width:360px){.columns-area{padding:10px}.react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.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>*{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.column,.react-swipeable-view-container>*{display:-webkit-box;display:-ms-flexbox;display:flex}.column{width:330px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.column>.scrollable{background:#121a24;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.ui{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;flex-direction:column;width:100%;height:100%;background:#06090c}.drawer,.ui{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column}.drawer{width:330px;-webkit-box-sizing:border-box;box-sizing:border-box;flex-direction:column;overflow-y:hidden}.drawer__tab{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px 5px 13px;color:#9baec8;text-decoration:none;text-align:center;font-size:16px;border-bottom:2px solid transparent}.column,.drawer{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;overflow:hidden}@media screen and (min-width:360px){.tabs-bar{margin:10px;margin-bottom:0}.getting-started__trends,.search{margin-bottom:10px}.getting-started__panel{margin:10px 0}.column,.drawer{min-width:330px}}@media screen and (max-width:630px){.column,.drawer{width:100%;padding:0}.columns-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.autosuggest-textarea__textarea,.search__input{font-size:16px}}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:10px;padding-left:5px;padding-right: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}}.drawer__pager{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}.drawer__inner,.drawer__pager{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#283a50;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:auto;width:100%;height:100%;border-radius:2px}.drawer__inner.darker{background:#121a24}.drawer__inner__mastodon{background:#283a50 url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;-webkit-box-flex:1;-ms-flex:1;flex:1;min-height:47px}.drawer__inner__mastodon>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}.pseudo-drawer{background:#283a50;font-size:13px;text-align:left}.drawer__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:16px;background:#202e3f;margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;border-radius:2px}.drawer__header a{-webkit-transition:background .1s ease-in;transition:background .1s ease-in}.drawer__header a:hover{background:#17212e;-webkit-transition:background .2s ease-out;transition:background .2s ease-out}.tabs-bar{display:-webkit-box;display:-ms-flexbox;display:flex;background:#202e3f;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px 10px;color:#fff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #202e3f;-webkit-transition:all 50ms linear;transition:all 50ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #d8a070;color:#d8a070}@media screen and (min-width:631px){.tabs-bar__link:active,.tabs-bar__link:focus,.tabs-bar__link:hover{background:#2a3c54}}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width:600px){.tabs-bar__link span{display:inline}}@media screen and (min-width:631px){.tabs-bar{display:none}}.scrollable{overflow-y:scroll;overflow-x:hidden;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}@supports (display:grid){.scrollable.fullscreen{contain:none}}.column-back-button{background:#192432;color:#d8a070;cursor:pointer;-webkit-box-flex:0;-ms-flex:0 0 auto;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:#192432;border:0;font-family:inherit;color:#d8a070;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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:rgba(0,0,0,0);-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;-webkit-transition:opacity .25s;transition:opacity .25s}.react-toggle-track{width:50px;height:24px;padding:0;border-radius:30px;background-color:#121a24;-webkit-transition:all .2s ease;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#010102}.react-toggle--checked .react-toggle-track{background-color:#d8a070}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#e3bb98}.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;-webkit-transition:opacity .25s ease;transition:opacity .25s ease}.react-toggle--checked .react-toggle-track-check,.react-toggle-track-x{opacity:1;-webkit-transition:opacity .25s ease;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{-webkit-transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #121a24;border-radius:50%;background-color:#fafafa;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .25s ease;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#d8a070}.column-link{background:#202e3f;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#253549}.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:#121a24}.column-subheading{color:#3e5a7c;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#121a24}.flex-spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.getting-started{color:#3e5a7c;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.getting-started__footer,.getting-started__panel,.getting-started__wrapper{height:-webkit-min-content;height:-moz-min-content;height:min-content}.getting-started__footer,.getting-started__panel{padding:10px;padding-top:20px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.getting-started__footer ul,.getting-started__panel ul{margin-bottom:10px}.getting-started__footer ul li,.getting-started__panel ul li{display:inline}.getting-started__footer p,.getting-started__panel p{font-size:13px}.getting-started__footer p a,.getting-started__panel p a{color:#3e5a7c;text-decoration:underline}.getting-started__footer a,.getting-started__panel a{text-decoration:none;color:#9baec8}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover,.getting-started__panel a:active,.getting-started__panel a:focus,.getting-started__panel a:hover{text-decoration:underline}.getting-started__footer,.getting-started__wrapper{color:#3e5a7c}.getting-started__trends{background:#121a24;-webkit-box-flex:0;-ms-flex:0 1 auto;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}}.getting-started__scrollable{max-height:100%;overflow-y:auto}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#202e3f;border:1px solid #0b1016}.setting-text{color:#9baec8;background:transparent;border:none;border-bottom:2px solid #9baec8;-webkit-box-sizing:border-box;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:#d8a070}@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;-webkit-transition:background-position .9s steps(10);transition:background-position .9s steps(10);-webkit-transition-duration:0s;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{-webkit-transition-duration:.9s;transition-duration:.9s;background-position:0 100%}.reduce-motion button.icon-button i.fa-retweet{color:#3e5a7c;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#d8a070}.status-card{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;border:1px solid #202e3f;border-radius:4px;color:#3e5a7c;margin-top:14px;text-decoration:none;overflow:hidden}.status-card__actions{bottom:0;left:0;position:absolute;right:0;top:0;-ms-flex-pack:center;-ms-flex-align:center}.status-card__actions,.status-card__actions>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}.status-card__actions>div{background:rgba(0,0,0,.6);border-radius:4px;padding:12px 9px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-pack:center;-ms-flex-align:center}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#202e3f}.status-card-photo{cursor:-webkit-zoom-in;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:#9baec8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#9baec8}.status-card__host{display:block;margin-top:5px;font-size:13px}.status-card__image{-webkit-box-flex:0;-ms-flex:0 0 100px;flex:0 0 100px;background:#202e3f;position:relative}.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__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#3e5a7c;background-color:transparent;border:0;font-size:inherit;text-align:center;line-height:inherit;margin:0;padding:15px;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;clear:both;text-decoration:none}.load-more:hover{background:#151f2b}.load-gap{border-bottom:1px solid #202e3f}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#3e5a7c;background:#121a24;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#3e5a7c}.regeneration-indicator__label span{font-size:15px;font-weight:400}.column-header__wrapper{position:relative;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.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,hsla(28,57%,64%,.23) 0,hsla(28,57%,64%,0) 60%)}.column-header{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;background:#192432;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden;border-top-left-radius:2px;border-top-right-radius:2px}.column-header>button{margin:0;border:none;padding:15px 0 15px 15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;-webkit-box-flex:1;-ms-flex:1;flex:1}.column-header>.column-header__back-button{color:#d8a070}.column-header.active{-webkit-box-shadow:0 1px 0 hsla(28,57%,64%,.3);box-shadow:0 1px 0 hsla(28,57%,64%,.3)}.column-header.active .column-header__icon{color:#d8a070;text-shadow:0 0 10px hsla(28,57%,64%,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:-webkit-box;display:-ms-flexbox;display:flex}.column-header__links .text-btn{margin-right:10px}.column-header__button{background:#192432;border:0;color:#9baec8;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover{color:#b2c1d5}.column-header__button.active,.column-header__button.active:hover{color:#fff;background:#202e3f}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#9baec8;-webkit-transition:max-height .15s ease-in-out,opacity .3s linear;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:transparent;border:0;border-top:1px solid #26374d;margin:10px 0}.column-header__collapsible-inner{background:#202e3f;padding:15px}.column-header__setting-btn:hover{color:#9baec8;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}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#3e5a7c;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap;-webkit-animation:loader-label 1.15s infinite cubic-bezier(.215,.61,.355,1);animation:loader-label 1.15s infinite cubic-bezier(.215,.61,.355,1)}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:0;height:0;-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #3e5a7c;border-radius:50%;-webkit-animation:loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1);animation:loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1)}@-webkit-keyframes loader-figure{0%{width:0;height:0;background-color:#3e5a7c}29%{background-color:#3e5a7c}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:#3e5a7c}29%{background-color:#3e5a7c}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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#000;color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:8px;position:relative;text-align:center;z-index:100}.media-spoiler{background:#000;color:#9baec8;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:#b5c3d6}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.modal-container--preloader{background:#202e3f}.account--panel{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0}.account--panel__button,.detailed-status__button{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:center}.column-settings__outer{background:#202e3f;padding:15px}.column-settings__section{color:#9baec8;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#fff;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:rgba(0,0,0,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.setting-toggle{display:block;line-height:24px}.setting-meta__label,.setting-toggle__label{color:#9baec8;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.setting-meta__label{float:right}.empty-column-indicator,.error-column{color:#3e5a7c;background:#121a24;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#d8a070;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{-webkit-transform-origin:center center;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{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{-webkit-transform-origin:50% 100%;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;-webkit-box-shadow:4px 4px 6px rgba(0,0,0,.4);box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px}.emoji-picker-dropdown__menu .emoji-mart-scroll{-webkit-transition:opacity .2s ease;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;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.2);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:transparent}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(217,225,232,.4)}.emoji-picker-dropdown__modifiers__menu .emoji-mart-emoji{height:22px}.emoji-mart-emoji span{background-repeat:no-repeat}.upload-area{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:rgba(0,0,0,.8);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;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:#121a24;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#d9e1e8;font-size:18px;font-weight:500;border:2px dashed #3e5a7c;border-radius:4px}.upload-area__content,.upload-progress{display:-webkit-box;display:-ms-flexbox;display:flex}.upload-progress{padding:10px;color:#3e5a7c;overflow:hidden}.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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.upload-progress__backdrop{width:100%;height:6px;border-radius:6px;background:#3e5a7c;position:relative;margin-top:5px}.upload-progress__tracker{position:absolute;left:0;top:0;height:6px;background:#d8a070;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;margin:0;width:22px;height:22px;margin-top:2px}.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;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:4px;margin-left:40px;overflow:hidden}.privacy-dropdown__dropdown.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.privacy-dropdown__option{color:#121a24;padding:10px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex}.privacy-dropdown__option.active,.privacy-dropdown__option:hover{background:#d8a070;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:#dcab80}.privacy-dropdown__option__icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#3e5a7c}.privacy-dropdown__option__content strong{font-weight:500;display:block;color:#121a24}.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;-webkit-box-shadow:0 -4px 4px rgba(0,0,0,.1);box-shadow:0 -4px 4px rgba(0,0,0,.1)}.privacy-dropdown.active .privacy-dropdown__value .icon-button{-webkit-transition:none;transition:none}.privacy-dropdown.active .privacy-dropdown__value.active{background:#d8a070}.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;-webkit-box-shadow:2px 4px 6px rgba(0,0,0,.1);box-shadow:2px 4px 6px rgba(0,0,0,.1)}.search{position:relative}.search__input{outline:0;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;padding-right:30px;font-family:inherit;background:#121a24;color:#9baec8;font-size:14px;margin:0;border-radius:2px}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#192432}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;-webkit-transition:all .1s linear;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#d9e1e8;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);color:#3e5a7c;cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#4a6b94}.search-results__header{color:#3e5a7c;background:#151f2b;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:#0b1016;border-bottom:1px solid #202e3f;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;padding:15px;font-weight:500;font-size:16px;color:#3e5a7c}.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:#d9e1e8;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#e6ebf0;text-decoration:underline}.modal-root{position:relative;-webkit-transition:opacity .3s linear;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%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:distribute;align-content:space-around;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.modal-root__container,.modal-root__modal{display:-webkit-box;display:-ms-flexbox;display:flex;z-index:9999}.modal-root__modal{pointer-events:auto}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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;-webkit-transition:opacity .3s linear;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);-webkit-box-sizing:border-box;box-sizing:border-box;border:0;color:#fff;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#d8a070}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#d9e1e8;color:#121a24;border-radius:8px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.onboarding-modal__pager{height:80vh;width:80vw;max-width:520px;max-height:470px}.onboarding-modal__pager .react-swipeable-view-container>div{width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.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%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:25px;display:none;display:-webkit-box;display:-ms-flexbox;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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.error-modal__body{display:-webkit-box;display:-ms-flexbox;display:flex;text-align:center}@media screen and (max-width:550px){.onboarding-modal{width:100%;height:100%;border-radius:0}.onboarding-modal__pager{width:100%;height:auto;max-width:none;max-height:none;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}}.error-modal__footer,.onboarding-modal__paginator{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#c0cdd9;display:-webkit-box;display:-ms-flexbox;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:#3e5a7c;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:#37506f;background-color:#a6b9c9}.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:#121a24}.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:#192432}.error-modal__footer{-ms-flex-pack:center}.error-modal__footer,.onboarding-modal__dots{-webkit-box-pack:center;justify-content:center}.onboarding-modal__dots{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:center}.onboarding-modal__dot{width:14px;height:14px;border-radius:14px;background:#a6b9c9;margin:0 3px;cursor:pointer}.onboarding-modal__dot:hover{background:#a0b4c5}.onboarding-modal__dot.active{cursor:default;background:#8da5ba}.onboarding-modal__page__wrapper{pointer-events:none;padding:25px;padding-bottom:0}.onboarding-modal__page__wrapper.onboarding-modal__page__wrapper--active{pointer-events:auto}.onboarding-modal__page{cursor:default;line-height:21px}.onboarding-modal__page h1{font-size:18px;font-weight:500;color:#121a24;margin-bottom:20px}.onboarding-modal__page a{color:#d8a070}.onboarding-modal__page a:active,.onboarding-modal__page a:focus,.onboarding-modal__page a:hover{color:#dcab80}.onboarding-modal__page .navigation-bar a{color:inherit}.onboarding-modal__page p{font-size:16px;color:#3e5a7c;margin-top:10px;margin-bottom:10px}.onboarding-modal__page p:last-child{margin-bottom:0}.onboarding-modal__page p strong{font-weight:500;background:#121a24;color:#d9e1e8;border-radius:4px;font-size:14px;padding:3px 6px}.onboarding-modal__page p strong:lang(ja),.onboarding-modal__page p strong:lang(ko),.onboarding-modal__page p strong:lang(zh-CN),.onboarding-modal__page p strong:lang(zh-HK),.onboarding-modal__page p strong:lang(zh-TW){font-weight:700}.onboarding-modal__page__wrapper-0{height:100%;padding:0}.onboarding-modal__page-one__lead{padding:65px;padding-top:45px;padding-bottom:0;margin-bottom:10px}.onboarding-modal__page-one__lead h1{font-size:26px;line-height:36px;margin-bottom:8px}.onboarding-modal__page-one__lead p{margin-bottom:0}.onboarding-modal__page-one__extra{padding-right:65px;padding-left:185px;text-align:center}.display-case{text-align:center;font-size:15px;margin-bottom:15px}.display-case__label{font-weight:500;color:#121a24;margin-bottom:5px;text-transform:uppercase;font-size:12px}.display-case__case{background:#121a24;color:#d9e1e8;font-weight:500;padding:10px;border-radius:4px}.onboarding-modal__page-five p,.onboarding-modal__page-four p,.onboarding-modal__page-three p,.onboarding-modal__page-two p{text-align:left}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{background:#040609;color:#d9e1e8;margin-bottom:20px;border-radius:4px;padding:10px;text-align:center;font-size:14px;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.3);box-shadow:1px 2px 6px rgba(0,0,0,.3)}.onboarding-modal__page-five .figure .onboarding-modal__image,.onboarding-modal__page-four .figure .onboarding-modal__image,.onboarding-modal__page-three .figure .onboarding-modal__image,.onboarding-modal__page-two .figure .onboarding-modal__image{border-radius:4px;margin-bottom:10px}.onboarding-modal__page-five .figure.non-interactive,.onboarding-modal__page-four .figure.non-interactive,.onboarding-modal__page-three .figure.non-interactive,.onboarding-modal__page-two .figure.non-interactive{pointer-events:none;text-align:left}.onboarding-modal__page-four__columns .row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.onboarding-modal__page-four__columns .row>div{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;margin:0 10px}.onboarding-modal__page-four__columns .row>div:first-child{margin-left:0}.onboarding-modal__page-four__columns .row>div:last-child{margin-right:0}.onboarding-modal__page-four__columns .row>div p{text-align:center}.onboarding-modal__page-four__columns .row:last-child{margin-bottom:0}.onboarding-modal__page-four__columns .column-header{color:#fff}@media screen and (max-width:320px) and (max-height:600px){.onboarding-modal__page p{font-size:14px;line-height:20px}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{font-size:12px;margin-bottom:10px}.onboarding-modal__page-four__columns .row{margin-bottom:10px}.onboarding-modal__page-four__columns .column-header{padding:5px;font-size:12px}}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.mute-modal,.report-modal{background:#f2f5f7;color:#121a24;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.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:#f2f5f7}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#d9e1e8}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background:#d9e1e8;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div,.mute-modal__action-bar>div{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-align:right;color:#3e5a7c;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button,.mute-modal__action-bar .button{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.boost-modal__status-header{font-size:15px}.boost-modal__status-time{float:right;font-size:14px}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.mute-modal{line-height:24px}.mute-modal .react-toggle{vertical-align:middle}.report-modal{width:90vw;max-width:700px}.report-modal__container{display:-webkit-box;display:-ms-flexbox;display:flex;border-top:1px solid #d9e1e8}@media screen and (max-width:480px){.report-modal__container{-ms-flex-wrap:wrap;flex-wrap:wrap;overflow-y:auto}}.report-modal__comment,.report-modal__statuses{-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}@media screen and (max-width:480px){.report-modal__comment,.report-modal__statuses{width:100%}}.report-modal__statuses{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-height:20vh;max-height:80vh;overflow-y:auto;overflow-x:hidden}.report-modal__statuses .status__content a{color:#d8a070}.report-modal__statuses .status__content p{color:#121a24}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #d9e1e8;max-width:320px}.report-modal__comment p{font-size:14px;line-height:20px;margin-bottom:20px}.report-modal__comment .setting-text{display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;margin:0;color:#121a24;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;border:0;outline:0;border-radius:4px;border:1px solid #d9e1e8;margin-bottom:20px}.report-modal__comment .setting-text:focus{border:1px solid #c0cdd9}.report-modal__comment .setting-toggle{margin-top:20px;margin-bottom:24px}.report-modal__comment .setting-toggle__label{color:#121a24;font-size:14px}@media screen and (max-width:480px){.report-modal__comment{padding:10px;max-width:100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.report-modal__comment .setting-toggle{margin-bottom:4px}}.actions-modal{max-height:80vh;max-width:80vw}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;-ms-flex-negative:0;flex-shrink:0}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#121a24;display:-webkit-box;display:-ms-flexbox;display:flex;padding:12px 16px;font-size:15px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-decoration:none}.actions-modal ul li:not(:empty) a,.actions-modal ul li:not(:empty) a button{-webkit-transition:none;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:#d8a070;color:#fff}.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#3e5a7c;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 .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 .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#37506f}.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}.loading-bar{background-color:#d8a070;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;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{margin-top:32px}.media-gallery__audio audio{width:100%}.attachment-list{font-size:14px;border:1px solid #202e3f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list,.attachment-list__icon{display:-webkit-box;display:-ms-flexbox;display:flex}.attachment-list__icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#3e5a7c;padding:8px 18px;cursor:default;border-right:1px solid #202e3f;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:26px}.attachment-list__icon .fa{display:block}.attachment-list__list{list-style:none;padding:4px 0;padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.attachment-list__list li{display:block;padding:4px 0}.attachment-list__list a{text-decoration:none;color:#3e5a7c;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:#3e5a7c}.media-gallery{margin-top:8px;border-radius:4px;width:100%}.media-gallery,.media-gallery__item{-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.media-gallery__item{border:none;display:block;float:left;border-radius:4px}.media-gallery__item.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item-thumbnail{cursor:-webkit-zoom-in;cursor:zoom-in;display:block;text-decoration:none;color:#d9e1e8;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img{-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%}.media-gallery__item-gifv-thumbnail{cursor:-webkit-zoom-in;cursor:zoom-in;height:100%;-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.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;-webkit-box-sizing:border-box;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%;-webkit-transform:translateY(-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}.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%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.video-player__controls{position:absolute;z-index:2;bottom:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.85)),color-stop(60%,rgba(0,0,0,.45)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.45) 60%,transparent);padding:0 15px;opacity:0;-webkit-transition:opacity .1s ease;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:#9baec8;-webkit-transition:none;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:#b2c1d5}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;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:transparent;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:10px}.video-player__time-sep{display:inline-block;margin:0 6px}.video-player__time-sep,.video-player__time-total{color:#fff}.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:#e1b590}.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;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;background:#e1b590;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.2);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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.account-gallery__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:2px}.account-gallery__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#000;background-size:cover;background-position:50%;position:absolute;color:#9baec8;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#d9e1e8}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:rgba(0,0,0,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline{background:#0b1016;border-bottom:1px solid #202e3f;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex}.account__section-headline a{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#9baec8;padding:15px 0;font-size:14px;font-weight:500;text-align:center;text-decoration:none;position:relative}.account__section-headline a.active{color:#d9e1e8}.account__section-headline a.active:after,.account__section-headline a.active:before{display:block;content:\"\";position:absolute;bottom:0;left:50%;width:0;height:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-style:solid;border-width:0 10px 10px;border-color:transparent transparent #202e3f}.account__section-headline a.active:after{bottom:-1px;border-color:transparent transparent #121a24}::-webkit-scrollbar-thumb{border-radius:0}.search-popout{background:#fff;border-radius:4px;padding:10px 14px;padding-bottom:14px;margin-top:10px;color:#9baec8;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4)}.search-popout h4{text-transform:uppercase;color:#9baec8;font-size:13px;font-weight:500;margin-bottom:10px}.search-popout li{padding:4px 0}.search-popout ul{margin-bottom:10px}.search-popout em{font-weight:500;color:#121a24}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:#d9e1e8;max-width:400px}noscript div a{color:#d8a070;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;-webkit-transition:margin-top .4s .1s;transition:margin-top .4s .1s}.navigation-bar{will-change:padding-bottom;-webkit-transition:padding-bottom .4s .1s;transition:padding-bottom .4s .1s}.navigation-bar>a:first-child{will-change:margin-top,margin-left,margin-right,width;-webkit-transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s;transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s}.navigation-bar>.navigation-bar__profile-edit{will-change:margin-top;-webkit-transition:margin-top .4s .1s;transition:margin-top .4s .1s}.navigation-bar .navigation-bar__actions>.icon-button.close{will-change:opacity transform;-webkit-transition:opacity .2s .1s,-webkit-transform .4s .1s;transition:opacity .2s .1s,-webkit-transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s,-webkit-transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;-webkit-transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s,-webkit-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;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;-webkit-transform:scaleX(0) translate(100%);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;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:mastodon-font-monospace,monospace;background:#121a24;color:#fff;font-size:14px;margin:0;margin-bottom: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:#192432}@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;padding-bottom:16px;background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f}.account__moved-note__message{position:relative;margin-left:58px;color:#3e5a7c;padding:8px 0;padding-top:0;padding-bottom: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 15px;padding-right:5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#192432}.column-inline-form label{-webkit-box-flex:1;-ms-flex:1 1 auto;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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.list-editor{background:#121a24;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-radius:8px;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#283a50;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__pager{height:50vh}.list-editor .drawer__inner{border-radius:0 0 8px 8px}.list-editor .drawer__inner.backdrop{width:calc(100% - 60px);-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:0 0 0 8px}.list-editor__accounts{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/reticle-6490ecbb61185e86e62dca0845cf2dcf.png) no-repeat 0 0;border-radius:50%;-webkit-box-shadow:0 0 0 9999em rgba(0,0,0,.35);box-shadow:0 0 0 9999em rgba(0,0,0,.35)}.focal-point__overlay{position:absolute;width:100%;height:100%;top:0;left:0}.floating-action-button{position:fixed;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#d59864;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;-webkit-box-shadow:2px 3px 9px rgba(0,0,0,.4);box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#e0b38c}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.account__header .account__header__fields{font-size:14px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0}.account__header .account__header__fields dl{border-top:1px solid #202e3f;display:-webkit-box;display:-ms-flexbox;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{-webkit-box-sizing:border-box;box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#9baec8;background:#0b1016;width:120px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#fff;background:#121a24}.trends__header{color:#3e5a7c;background:#151f2b;border-bottom:1px solid #0b1016;font-weight:500;padding:15px;font-size:16px;cursor:default}.trends__header .fa{display:inline-block;margin-right:5px}.trends__item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:15px;border-bottom:1px solid #202e3f}.trends__item:last-child{border-bottom:0}.trends__item__name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#3e5a7c;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#9baec8;text-decoration:none;font-size:14px;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{width:100px;font-size:24px;line-height:36px;font-weight:500;text-align:center;color:#d9e1e8}.trends__item__current,.trends__item__sparkline{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.trends__item__sparkline{width:50px}.trends__item__sparkline path{stroke:#dfb088!important}.modal-layout{background:#121a24 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;-ms-flex-direction:column;flex-direction:column;height:100vh;padding:0}.modal-layout,.modal-layout__mastodon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal}.modal-layout__mastodon{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.modal-layout__mastodon>*{-webkit-box-flex:1;-ms-flex:1;flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.emoji-mart{font-size:13px;display:inline-block;color:#121a24}.emoji-mart,.emoji-mart *{-webkit-box-sizing:border-box;box-sizing:border-box;line-height:1.15}.emoji-mart .emoji-mart-emoji{padding:6px}.emoji-mart-bar{border:0 solid #c0cdd9}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#d9e1e8}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 6px;color:#3e5a7c;line-height:0}.emoji-mart-anchor{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;padding:12px 4px;overflow:hidden;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;cursor:pointer}.emoji-mart-anchor:hover{color:#37506f}.emoji-mart-anchor-selected{color:#d8a070}.emoji-mart-anchor-selected:hover{color:#d49560}.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:#d8a070}.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;padding-right:45px;background:#fff}.emoji-mart-search input{font-size:14px;font-weight:400;padding:7px 9px;font-family:inherit;display:block;width:100%;background:rgba(217,225,232,.3);color:#121a24;border:1px solid #d9e1e8;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(217,225,232,.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:#9baec8}.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{-webkit-box-sizing:border-box;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:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8;padding-right:10px}.rich-formatting a{color:#d8a070;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.rich-formatting li a,.rich-formatting p a{color:#d8a070;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.rich-formatting h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.rich-formatting h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(62,90,124,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#0b1016;padding:20px 0}.information-board .container-alt{position:relative;padding-right:295px}.information-board__sections{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.information-board__section{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;font-family:\"mastodon-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:#d9e1e8}.information-board__section strong{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;-webkit-box-sizing:border-box;box-sizing:border-box;background:#040609;padding:20px;padding-top:10px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:mastodon-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#9baec8;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #192432;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#7a93b6}.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;margin-bottom: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:#9baec8}.landing-page .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:auto}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(62,90,124,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#121a24;font-size:12px;font-weight:500;color:#9baec8;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.landing-page li a,.landing-page p a{color:#d8a070;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#9baec8;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#d8a070;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.landing-page h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.landing-page h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(62,90,124,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#121a24;background:linear-gradient(150deg,#202e3f,#121a24);position:relative}.landing-page .header-wrapper.compact{background:#121a24;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .header-wrapper.compact .hero .heading a{color:#d8a070;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#9baec8;text-decoration:none;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#d9e1e8}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#0b1016;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .about-short{background:#0b1016;padding:50px 0 30px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .about-short a{color:#d8a070;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#0b1016;border-radius:4px;padding:25px 40px;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}.landing-page__call-to-action .row{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.landing-page__call-to-action .row__information-board{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.landing-page__call-to-action .row__information-board .information-board__section{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:0 10px}@media screen and (max-width:415px){.landing-page__call-to-action .row__information-board{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.landing-page__call-to-action .row__mascot{-webkit-box-flex:1;-ms-flex:1;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 .account{border-bottom:0;padding:0}.landing-page__information .account__display-name{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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 #mastodon-timeline,.landing-page__forms,.landing-page__information{-webkit-box-sizing:border-box;box-sizing:border-box;background:#121a24;border-radius:4px;-webkit-box-shadow:0 0 6px rgba(0,0,0,.1);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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;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:#d9e1e8}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#9baec8}.landing-page__short-description h1 small span{color:#d9e1e8}.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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;-webkit-box-shadow:none;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#040609}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#fff;width:100%;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#fff;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#d9e1e8;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#3e5a7c;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:40px 0;margin-top:30px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .features-list .features-list__row .visual{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#9baec8;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#9baec8}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#3e5a7c}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#3e5a7c}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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:left;text-align:initial}.landing-page .features .container-alt,.landing-page .header .container-alt{display:block}.landing-page .header .links{padding-top:15px;background:#0b1016}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-pack:distribute;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#040609;width:100%;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:block;width:100vw;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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 #121a24;text-align:left;background:#0b1016}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #121a24;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:#121a24}.table a{color:#d8a070;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:transparent}.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:#121a24;border-top:1px solid #040609;border-bottom:1px solid #040609}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #040609}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #040609}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:mastodon-font-monospace,monospace}button.table-action-link{background:transparent;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:#9baec8;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:-webkit-box;display:-ms-flexbox;display:flex}.batch-table__row__select,.batch-table__toolbar__select{-webkit-box-sizing:border-box;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__actions,.batch-table__row__content,.batch-table__toolbar__actions,.batch-table__toolbar__content{padding:8px 0;padding-right:16px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.batch-table__toolbar{border:1px solid #040609;background:#121a24;border-radius:4px 0 0;height:47px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #040609;border-top:0;background:#0b1016}.batch-table__row:hover{background:#0f151d}.batch-table__row:nth-child(2n){background:#121a24}.batch-table__row:nth-child(2n):hover{background:#151f2b}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.admin-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.admin-wrapper,.admin-wrapper .sidebar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.admin-wrapper .sidebar-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;background:#121a24;-webkit-box-pack:end;-ms-flex-pack:end;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}.admin-wrapper .sidebar ul{list-style:none;border-radius:4px 0 0 4px;overflow:hidden;margin-bottom:20px}.admin-wrapper .sidebar ul a{display:block;padding:15px;color:#9baec8;text-decoration:none;-webkit-transition:all .2s linear;transition:all .2s linear;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:#0a0e13;-webkit-transition:all .1s linear;transition:all .1s linear}.admin-wrapper .sidebar ul a.selected{background:#0f151d;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#0b1016;border-radius:0 0 0 4px;margin:0}.admin-wrapper .sidebar ul ul a{border:0;padding:15px 35px}.admin-wrapper .sidebar ul ul a.selected{color:#fff;background-color:#d8a070;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul ul a.selected:hover{background-color:#ddad84}.admin-wrapper .content-wrapper{-webkit-box-flex:2;-ms-flex:2;flex:2;overflow:auto}.admin-wrapper .content{max-width:700px;padding:20px 15px;padding-top:60px;padding-left:25px}.admin-wrapper .content h2{color:#d9e1e8;font-size:24px;line-height:28px;font-weight:400;margin-bottom:40px}.admin-wrapper .content h3{color:#d9e1e8;font-size:20px;line-height:28px;font-weight:400;margin-bottom:30px}.admin-wrapper .content h4{text-transform:uppercase;font-size:13px;font-weight:500;color:#9baec8;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #202e3f}.admin-wrapper .content h6{font-size:16px;color:#d9e1e8;line-height:28px;font-weight:400}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#d9e1e8;margin-bottom:20px}.admin-wrapper .content>p strong{color:#fff;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(62,90,124,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#9baec8}.admin-wrapper .content .muted-hint a{color:#d8a070}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;font-weight:500}.admin-wrapper .simple_form{max-width:400px}.admin-wrapper .simple_form.edit_domain_block,.admin-wrapper .simple_form.edit_user,.admin-wrapper .simple_form.new_domain_block,.admin-wrapper .simple_form.new_form_admin_settings,.admin-wrapper .simple_form.new_form_delete_confirmation,.admin-wrapper .simple_form.new_form_two_factor_confirmation,.admin-wrapper .simple_form.new_import{max-width:none}.admin-wrapper .simple_form .actions,.admin-wrapper .simple_form .form_delete_confirmation_password,.admin-wrapper .simple_form .form_two_factor_confirmation_code{max-width:400px}@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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;overflow:visible;overflow:initial}.admin-wrapper .sidebar{width:100%;padding:10px 0;height:auto}.admin-wrapper .sidebar .logo{margin:20px auto}.admin-wrapper .content{padding-top:20px}}.filters{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.filters .filter-subset{-webkit-box-flex:0;-ms-flex:0 0 auto;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:#9baec8;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #121a24}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #1b2635}.filters .filter-subset a.selected{color:#d8a070;border-bottom:2px solid #d8a070}.report-accounts{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:20px}.report-accounts,.report-accounts__item{display:-webkit-box;display:-ms-flexbox;display:flex}.report-accounts__item{-webkit-box-flex:250px;-ms-flex:250px;flex:250px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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:#d9e1e8}.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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.account-status,.report-status{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:10px}.account-status .activity-stream,.report-status .activity-stream{-webkit-box-flex:2;-ms-flex:2 0 0px;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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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:#d8a070;text-decoration:none}.back-link a:hover{text-decoration:underline}.spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.log-entry{margin-bottom:20px;line-height:20px}.log-entry__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px;background:#121a24;color:#9baec8;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:#3e5a7c}.log-entry__extras{background:#1c2938;border-radius:0 0 4px 4px;padding:10px;color:#9baec8;font-family:mastodon-font-monospace,monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#3e5a7c}.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:#d8a070}.log-entry .target,.log-entry .username,.log-entry a{color:#d9e1e8;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#d9e1e8}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#d9e1e8}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.name-tag .avatar,a.name-tag .avatar{display:block;margin:0;margin-right:5px;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 #d8a070}.speech-bubble.positive{border-left-color:#79bd9a}.speech-bubble.negative{border-left-color:#e87487}.speech-bubble__bubble{padding:16px;padding-left:14px;font-size:15px;line-height:20px;border-radius:4px 4px 4px 0;position:relative;font-weight:500}.speech-bubble__bubble a{color:#9baec8}.speech-bubble__owner{padding:8px;padding-left:12px}.speech-bubble time{color:#3e5a7c}.dashboard__counters{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -5px;margin-bottom:20px}.dashboard__counters>div{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 33.333%;flex:0 0 33.333%;padding:0 5px;margin-bottom:10px}.dashboard__counters>div>a,.dashboard__counters>div>div{padding:20px;background:#192432;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:#202e3f}.dashboard__counters__num{text-align:center;font-weight:500;font-size:24px;color:#fff;font-family:mastodon-font-display,sans-serif;margin-bottom:20px}.dashboard__counters__label{font-size:14px;color:#9baec8;text-align:center;font-weight:500}.dashboard__widgets{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -5px}.dashboard__widgets>div{-webkit-box-flex:0;-ms-flex:0 0 33.333%;flex:0 0 33.333%;margin-bottom:20px}.dashboard__widgets>div>div{padding:0 5px}.dashboard__widgets a:not(.name-tag){color:#d9e1e8;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:-15px;margin-right:0}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{margin-left:0;margin-right:8px}body.rtl .setting-meta__label{float:left}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 .activity-stream .detailed-status.light .detailed-status__display-name>div{float:right;margin-right:0;margin-left:10px}body.rtl .activity-stream .detailed-status.light .detailed-status__meta span>span{margin-left:0;margin-right:6px}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-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:0;margin-left:2.14285714em}body.rtl .fa-li{left:auto;right:-2.14285714em}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,body.rtl .simple_form .input.with_label.boolean label.checkbox{padding-left:0;padding-right:25px}body.rtl .simple_form .check_boxes .checkbox input[type=checkbox],body.rtl .simple_form .input.boolean input[type=checkbox]{left:auto;right:0}body.rtl .simple_form .input-with-append .input input{padding-left:142px;padding-right:0}body.rtl .simple_form .input-with-append .append{right:auto;left:0}body.rtl .simple_form .input-with-append .append:after{right:auto;left:0;background-image:-webkit-gradient(linear,right top,left top,from(rgba(18,26,36,0)),to(#121a24));background-image:linear-gradient(270deg,rgba(18,26,36,0),#121a24)}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 .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 #mastodon-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}}.emojione[title=\":8ball:\"],.emojione[title=\":ant:\"],.emojione[title=\":back:\"],.emojione[title=\":black_circle:\"],.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=\":bust_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=\":end:\"],.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=\":lower_left_fountain_pen:\"],.emojione[title=\":on:\"],.emojione[title=\":registered:\"],.emojione[title=\":soon:\"],.emojione[title=\":spades:\"],.emojione[title=\":spider:\"],.emojione[title=\":tm:\"],.emojione[title=\":top:\"],.emojione[title=\":video_game:\"],.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);-webkit-transform:scale(.71);transform:scale(.71)}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/default.js b/priv/static/packs/default.js
deleted file mode 100644
index ff37c7cc9..000000000
Binary files a/priv/static/packs/default.js and /dev/null differ
diff --git a/priv/static/packs/default.js.map b/priv/static/packs/default.js.map
deleted file mode 100644
index 053bef703..000000000
Binary files a/priv/static/packs/default.js.map and /dev/null differ
diff --git a/priv/static/packs/emoji_picker.js b/priv/static/packs/emoji_picker.js
index a418ffa0c..f10512e5c 100644
Binary files a/priv/static/packs/emoji_picker.js and b/priv/static/packs/emoji_picker.js differ
diff --git a/priv/static/packs/emoji_picker.js.map b/priv/static/packs/emoji_picker.js.map
index 5b3e258f1..f809d12b4 100644
Binary files a/priv/static/packs/emoji_picker.js.map and b/priv/static/packs/emoji_picker.js.map differ
diff --git a/priv/static/packs/extra_polyfills.js b/priv/static/packs/extra_polyfills.js
index 8a160787c..3ba0114c2 100644
Binary files a/priv/static/packs/extra_polyfills.js and b/priv/static/packs/extra_polyfills.js differ
diff --git a/priv/static/packs/extra_polyfills.js.map b/priv/static/packs/extra_polyfills.js.map
index edc0bf01c..885e7bc30 100644
Binary files a/priv/static/packs/extra_polyfills.js.map and b/priv/static/packs/extra_polyfills.js.map differ
diff --git a/priv/static/packs/features/account_gallery.js b/priv/static/packs/features/account_gallery.js
index b6fcf1a43..f65ac8383 100644
Binary files a/priv/static/packs/features/account_gallery.js and b/priv/static/packs/features/account_gallery.js differ
diff --git a/priv/static/packs/features/account_gallery.js.map b/priv/static/packs/features/account_gallery.js.map
index e5e95a8e8..f2a6d1fc2 100644
Binary files a/priv/static/packs/features/account_gallery.js.map and b/priv/static/packs/features/account_gallery.js.map differ
diff --git a/priv/static/packs/features/account_timeline.js b/priv/static/packs/features/account_timeline.js
index 1af685dd4..7a4a075c0 100644
Binary files a/priv/static/packs/features/account_timeline.js and b/priv/static/packs/features/account_timeline.js differ
diff --git a/priv/static/packs/features/account_timeline.js.map b/priv/static/packs/features/account_timeline.js.map
index 204f4f50e..87074ada0 100644
Binary files a/priv/static/packs/features/account_timeline.js.map and b/priv/static/packs/features/account_timeline.js.map differ
diff --git a/priv/static/packs/features/blocks.js b/priv/static/packs/features/blocks.js
index 1e311f256..b0e18c32b 100644
Binary files a/priv/static/packs/features/blocks.js and b/priv/static/packs/features/blocks.js differ
diff --git a/priv/static/packs/features/blocks.js.map b/priv/static/packs/features/blocks.js.map
index d170df7bb..7f89c78b3 100644
Binary files a/priv/static/packs/features/blocks.js.map and b/priv/static/packs/features/blocks.js.map differ
diff --git a/priv/static/packs/features/community_timeline.js b/priv/static/packs/features/community_timeline.js
index 0ac9a0501..dce08c7eb 100644
Binary files a/priv/static/packs/features/community_timeline.js and b/priv/static/packs/features/community_timeline.js differ
diff --git a/priv/static/packs/features/community_timeline.js.map b/priv/static/packs/features/community_timeline.js.map
index 3198c81fe..c8d4d849f 100644
Binary files a/priv/static/packs/features/community_timeline.js.map and b/priv/static/packs/features/community_timeline.js.map differ
diff --git a/priv/static/packs/features/compose.js b/priv/static/packs/features/compose.js
index a51b0bc8b..0c0db1338 100644
Binary files a/priv/static/packs/features/compose.js and b/priv/static/packs/features/compose.js differ
diff --git a/priv/static/packs/features/compose.js.map b/priv/static/packs/features/compose.js.map
index d70c16491..4bfd2b52d 100644
Binary files a/priv/static/packs/features/compose.js.map and b/priv/static/packs/features/compose.js.map differ
diff --git a/priv/static/packs/features/direct_timeline.js b/priv/static/packs/features/direct_timeline.js
index 04fcfafa7..494d9fb1f 100644
Binary files a/priv/static/packs/features/direct_timeline.js and b/priv/static/packs/features/direct_timeline.js differ
diff --git a/priv/static/packs/features/direct_timeline.js.map b/priv/static/packs/features/direct_timeline.js.map
index 69e01a7b8..66b8fe69b 100644
Binary files a/priv/static/packs/features/direct_timeline.js.map and b/priv/static/packs/features/direct_timeline.js.map differ
diff --git a/priv/static/packs/features/domain_blocks.js b/priv/static/packs/features/domain_blocks.js
index 9ac790100..d62bced9b 100644
Binary files a/priv/static/packs/features/domain_blocks.js and b/priv/static/packs/features/domain_blocks.js differ
diff --git a/priv/static/packs/features/domain_blocks.js.map b/priv/static/packs/features/domain_blocks.js.map
index f0552035b..d51613014 100644
Binary files a/priv/static/packs/features/domain_blocks.js.map and b/priv/static/packs/features/domain_blocks.js.map differ
diff --git a/priv/static/packs/features/favourited_statuses.js b/priv/static/packs/features/favourited_statuses.js
index d1e3f3758..4329b736d 100644
Binary files a/priv/static/packs/features/favourited_statuses.js and b/priv/static/packs/features/favourited_statuses.js differ
diff --git a/priv/static/packs/features/favourited_statuses.js.map b/priv/static/packs/features/favourited_statuses.js.map
index c064be4b7..76ee1ca14 100644
Binary files a/priv/static/packs/features/favourited_statuses.js.map and b/priv/static/packs/features/favourited_statuses.js.map differ
diff --git a/priv/static/packs/features/favourites.js b/priv/static/packs/features/favourites.js
index 81e0fabe8..41b43345e 100644
Binary files a/priv/static/packs/features/favourites.js and b/priv/static/packs/features/favourites.js differ
diff --git a/priv/static/packs/features/favourites.js.map b/priv/static/packs/features/favourites.js.map
index 55c761ca4..3e477a8bf 100644
Binary files a/priv/static/packs/features/favourites.js.map and b/priv/static/packs/features/favourites.js.map differ
diff --git a/priv/static/packs/features/follow_requests.js b/priv/static/packs/features/follow_requests.js
index a95f92ce4..7f1ff59a0 100644
Binary files a/priv/static/packs/features/follow_requests.js and b/priv/static/packs/features/follow_requests.js differ
diff --git a/priv/static/packs/features/follow_requests.js.map b/priv/static/packs/features/follow_requests.js.map
index 043636a37..6e73a89dc 100644
Binary files a/priv/static/packs/features/follow_requests.js.map and b/priv/static/packs/features/follow_requests.js.map differ
diff --git a/priv/static/packs/features/followers.js b/priv/static/packs/features/followers.js
index f61c5e4ca..6256ad6f8 100644
Binary files a/priv/static/packs/features/followers.js and b/priv/static/packs/features/followers.js differ
diff --git a/priv/static/packs/features/followers.js.map b/priv/static/packs/features/followers.js.map
index 227b734c6..c8449b6c7 100644
Binary files a/priv/static/packs/features/followers.js.map and b/priv/static/packs/features/followers.js.map differ
diff --git a/priv/static/packs/features/following.js b/priv/static/packs/features/following.js
index a1f36e379..311da9cdd 100644
Binary files a/priv/static/packs/features/following.js and b/priv/static/packs/features/following.js differ
diff --git a/priv/static/packs/features/following.js.map b/priv/static/packs/features/following.js.map
index 4fa3867ae..bf55a0ba6 100644
Binary files a/priv/static/packs/features/following.js.map and b/priv/static/packs/features/following.js.map differ
diff --git a/priv/static/packs/features/generic_not_found.js b/priv/static/packs/features/generic_not_found.js
index 00be57aa4..417a0f609 100644
Binary files a/priv/static/packs/features/generic_not_found.js and b/priv/static/packs/features/generic_not_found.js differ
diff --git a/priv/static/packs/features/generic_not_found.js.map b/priv/static/packs/features/generic_not_found.js.map
index c57850256..7278bde70 100644
Binary files a/priv/static/packs/features/generic_not_found.js.map and b/priv/static/packs/features/generic_not_found.js.map differ
diff --git a/priv/static/packs/features/getting_started.js b/priv/static/packs/features/getting_started.js
index 26db7858e..4876331b9 100644
Binary files a/priv/static/packs/features/getting_started.js and b/priv/static/packs/features/getting_started.js differ
diff --git a/priv/static/packs/features/getting_started.js.map b/priv/static/packs/features/getting_started.js.map
index 722210036..4cfaf35dc 100644
Binary files a/priv/static/packs/features/getting_started.js.map and b/priv/static/packs/features/getting_started.js.map differ
diff --git a/priv/static/packs/features/glitch/async/list_adder.js b/priv/static/packs/features/glitch/async/list_adder.js
new file mode 100644
index 000000000..25b5a1f15
Binary files /dev/null and b/priv/static/packs/features/glitch/async/list_adder.js differ
diff --git a/priv/static/packs/features/glitch/async/list_adder.js.map b/priv/static/packs/features/glitch/async/list_adder.js.map
new file mode 100644
index 000000000..9f9919ac4
Binary files /dev/null and b/priv/static/packs/features/glitch/async/list_adder.js.map differ
diff --git a/priv/static/packs/features/hashtag_timeline.js b/priv/static/packs/features/hashtag_timeline.js
index e77de4650..70b5ea463 100644
Binary files a/priv/static/packs/features/hashtag_timeline.js and b/priv/static/packs/features/hashtag_timeline.js differ
diff --git a/priv/static/packs/features/hashtag_timeline.js.map b/priv/static/packs/features/hashtag_timeline.js.map
index 23374d0c5..cb7c4900f 100644
Binary files a/priv/static/packs/features/hashtag_timeline.js.map and b/priv/static/packs/features/hashtag_timeline.js.map differ
diff --git a/priv/static/packs/features/home_timeline.js b/priv/static/packs/features/home_timeline.js
index 7a513aaf1..027a389a6 100644
Binary files a/priv/static/packs/features/home_timeline.js and b/priv/static/packs/features/home_timeline.js differ
diff --git a/priv/static/packs/features/home_timeline.js.map b/priv/static/packs/features/home_timeline.js.map
index 1c9f71c34..e6176904a 100644
Binary files a/priv/static/packs/features/home_timeline.js.map and b/priv/static/packs/features/home_timeline.js.map differ
diff --git a/priv/static/packs/features/keyboard_shortcuts.js b/priv/static/packs/features/keyboard_shortcuts.js
index 2e8960f14..bb555183b 100644
Binary files a/priv/static/packs/features/keyboard_shortcuts.js and b/priv/static/packs/features/keyboard_shortcuts.js differ
diff --git a/priv/static/packs/features/keyboard_shortcuts.js.map b/priv/static/packs/features/keyboard_shortcuts.js.map
index 151036877..8041c88de 100644
Binary files a/priv/static/packs/features/keyboard_shortcuts.js.map and b/priv/static/packs/features/keyboard_shortcuts.js.map differ
diff --git a/priv/static/packs/features/list_adder.js b/priv/static/packs/features/list_adder.js
new file mode 100644
index 000000000..20be958cd
Binary files /dev/null and b/priv/static/packs/features/list_adder.js differ
diff --git a/priv/static/packs/features/list_adder.js.map b/priv/static/packs/features/list_adder.js.map
new file mode 100644
index 000000000..e8c5ee758
Binary files /dev/null and b/priv/static/packs/features/list_adder.js.map differ
diff --git a/priv/static/packs/features/list_editor.js b/priv/static/packs/features/list_editor.js
index 190703f3f..34ef7c144 100644
Binary files a/priv/static/packs/features/list_editor.js and b/priv/static/packs/features/list_editor.js differ
diff --git a/priv/static/packs/features/list_editor.js.map b/priv/static/packs/features/list_editor.js.map
index 54fdc6380..8d65e1c3d 100644
Binary files a/priv/static/packs/features/list_editor.js.map and b/priv/static/packs/features/list_editor.js.map differ
diff --git a/priv/static/packs/features/list_timeline.js b/priv/static/packs/features/list_timeline.js
index f5beaec06..61406da71 100644
Binary files a/priv/static/packs/features/list_timeline.js and b/priv/static/packs/features/list_timeline.js differ
diff --git a/priv/static/packs/features/list_timeline.js.map b/priv/static/packs/features/list_timeline.js.map
index 7aa93455a..ef4485d2c 100644
Binary files a/priv/static/packs/features/list_timeline.js.map and b/priv/static/packs/features/list_timeline.js.map differ
diff --git a/priv/static/packs/features/lists.js b/priv/static/packs/features/lists.js
index 560db741b..3b14703f4 100644
Binary files a/priv/static/packs/features/lists.js and b/priv/static/packs/features/lists.js differ
diff --git a/priv/static/packs/features/lists.js.map b/priv/static/packs/features/lists.js.map
index 28e98c1bf..b6b1aa99f 100644
Binary files a/priv/static/packs/features/lists.js.map and b/priv/static/packs/features/lists.js.map differ
diff --git a/priv/static/packs/features/mutes.js b/priv/static/packs/features/mutes.js
index 8f7d3744b..ab005e742 100644
Binary files a/priv/static/packs/features/mutes.js and b/priv/static/packs/features/mutes.js differ
diff --git a/priv/static/packs/features/mutes.js.map b/priv/static/packs/features/mutes.js.map
index 2b1782e7e..ab81df0c8 100644
Binary files a/priv/static/packs/features/mutes.js.map and b/priv/static/packs/features/mutes.js.map differ
diff --git a/priv/static/packs/features/notifications.js b/priv/static/packs/features/notifications.js
index 557dd64c3..f8f0df113 100644
Binary files a/priv/static/packs/features/notifications.js and b/priv/static/packs/features/notifications.js differ
diff --git a/priv/static/packs/features/notifications.js.map b/priv/static/packs/features/notifications.js.map
index d2b07b556..d3efa39b1 100644
Binary files a/priv/static/packs/features/notifications.js.map and b/priv/static/packs/features/notifications.js.map differ
diff --git a/priv/static/packs/features/pinned_statuses.js b/priv/static/packs/features/pinned_statuses.js
index a06d94021..754d5a746 100644
Binary files a/priv/static/packs/features/pinned_statuses.js and b/priv/static/packs/features/pinned_statuses.js differ
diff --git a/priv/static/packs/features/pinned_statuses.js.map b/priv/static/packs/features/pinned_statuses.js.map
index 453b20c6f..d2e7180f2 100644
Binary files a/priv/static/packs/features/pinned_statuses.js.map and b/priv/static/packs/features/pinned_statuses.js.map differ
diff --git a/priv/static/packs/features/public_timeline.js b/priv/static/packs/features/public_timeline.js
index 348ecba53..a166cc324 100644
Binary files a/priv/static/packs/features/public_timeline.js and b/priv/static/packs/features/public_timeline.js differ
diff --git a/priv/static/packs/features/public_timeline.js.map b/priv/static/packs/features/public_timeline.js.map
index 7aa0dfb64..02fadb0ca 100644
Binary files a/priv/static/packs/features/public_timeline.js.map and b/priv/static/packs/features/public_timeline.js.map differ
diff --git a/priv/static/packs/features/reblogs.js b/priv/static/packs/features/reblogs.js
index 650db0914..a2c7559de 100644
Binary files a/priv/static/packs/features/reblogs.js and b/priv/static/packs/features/reblogs.js differ
diff --git a/priv/static/packs/features/reblogs.js.map b/priv/static/packs/features/reblogs.js.map
index 88e692385..0d570987f 100644
Binary files a/priv/static/packs/features/reblogs.js.map and b/priv/static/packs/features/reblogs.js.map differ
diff --git a/priv/static/packs/features/status.js b/priv/static/packs/features/status.js
index 8b04eb8dd..5cdde1ab4 100644
Binary files a/priv/static/packs/features/status.js and b/priv/static/packs/features/status.js differ
diff --git a/priv/static/packs/features/status.js.map b/priv/static/packs/features/status.js.map
index 030c84c42..31705670d 100644
Binary files a/priv/static/packs/features/status.js.map and b/priv/static/packs/features/status.js.map differ
diff --git a/priv/static/packs/flavours/glitch/about.js b/priv/static/packs/flavours/glitch/about.js
new file mode 100644
index 000000000..2fbbdf259
Binary files /dev/null and b/priv/static/packs/flavours/glitch/about.js differ
diff --git a/priv/static/packs/flavours/glitch/about.js.map b/priv/static/packs/flavours/glitch/about.js.map
new file mode 100644
index 000000000..e31c2b0e5
Binary files /dev/null and b/priv/static/packs/flavours/glitch/about.js.map differ
diff --git a/priv/static/packs/flavours/glitch/admin.js b/priv/static/packs/flavours/glitch/admin.js
new file mode 100644
index 000000000..af0d55e44
Binary files /dev/null and b/priv/static/packs/flavours/glitch/admin.js differ
diff --git a/priv/static/packs/flavours/glitch/admin.js.map b/priv/static/packs/flavours/glitch/admin.js.map
new file mode 100644
index 000000000..be2846d0a
Binary files /dev/null and b/priv/static/packs/flavours/glitch/admin.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/account_gallery.js b/priv/static/packs/flavours/glitch/async/account_gallery.js
new file mode 100644
index 000000000..0e01e1b0f
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/account_gallery.js differ
diff --git a/priv/static/packs/flavours/glitch/async/account_gallery.js.map b/priv/static/packs/flavours/glitch/async/account_gallery.js.map
new file mode 100644
index 000000000..396bc8403
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/account_gallery.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/account_timeline.js b/priv/static/packs/flavours/glitch/async/account_timeline.js
new file mode 100644
index 000000000..233bb86e7
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/account_timeline.js differ
diff --git a/priv/static/packs/flavours/glitch/async/account_timeline.js.map b/priv/static/packs/flavours/glitch/async/account_timeline.js.map
new file mode 100644
index 000000000..bf3f23e6f
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/account_timeline.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/blocks.js b/priv/static/packs/flavours/glitch/async/blocks.js
new file mode 100644
index 000000000..e36c866f2
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/blocks.js differ
diff --git a/priv/static/packs/flavours/glitch/async/blocks.js.map b/priv/static/packs/flavours/glitch/async/blocks.js.map
new file mode 100644
index 000000000..8662d4adc
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/blocks.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/bookmarked_statuses.js b/priv/static/packs/flavours/glitch/async/bookmarked_statuses.js
new file mode 100644
index 000000000..b5033eb55
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/bookmarked_statuses.js differ
diff --git a/priv/static/packs/flavours/glitch/async/bookmarked_statuses.js.map b/priv/static/packs/flavours/glitch/async/bookmarked_statuses.js.map
new file mode 100644
index 000000000..393ba6330
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/bookmarked_statuses.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/community_timeline.js b/priv/static/packs/flavours/glitch/async/community_timeline.js
new file mode 100644
index 000000000..ce5109f6f
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/community_timeline.js differ
diff --git a/priv/static/packs/flavours/glitch/async/community_timeline.js.map b/priv/static/packs/flavours/glitch/async/community_timeline.js.map
new file mode 100644
index 000000000..35597e84a
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/community_timeline.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/direct_timeline.js b/priv/static/packs/flavours/glitch/async/direct_timeline.js
new file mode 100644
index 000000000..15e1b5a58
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/direct_timeline.js differ
diff --git a/priv/static/packs/flavours/glitch/async/direct_timeline.js.map b/priv/static/packs/flavours/glitch/async/direct_timeline.js.map
new file mode 100644
index 000000000..d730fc964
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/direct_timeline.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/domain_blocks.js b/priv/static/packs/flavours/glitch/async/domain_blocks.js
new file mode 100644
index 000000000..ca4e1a001
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/domain_blocks.js differ
diff --git a/priv/static/packs/flavours/glitch/async/domain_blocks.js.map b/priv/static/packs/flavours/glitch/async/domain_blocks.js.map
new file mode 100644
index 000000000..a382ad2e3
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/domain_blocks.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/drawer.js b/priv/static/packs/flavours/glitch/async/drawer.js
new file mode 100644
index 000000000..e09473657
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/drawer.js differ
diff --git a/priv/static/packs/flavours/glitch/async/drawer.js.map b/priv/static/packs/flavours/glitch/async/drawer.js.map
new file mode 100644
index 000000000..77f3b9da7
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/drawer.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/embed_modal.js b/priv/static/packs/flavours/glitch/async/embed_modal.js
new file mode 100644
index 000000000..9f18e4f17
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/embed_modal.js differ
diff --git a/priv/static/packs/flavours/glitch/async/embed_modal.js.map b/priv/static/packs/flavours/glitch/async/embed_modal.js.map
new file mode 100644
index 000000000..02efe3c6a
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/embed_modal.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/emoji_picker.js b/priv/static/packs/flavours/glitch/async/emoji_picker.js
new file mode 100644
index 000000000..9d85e5911
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/emoji_picker.js differ
diff --git a/priv/static/packs/flavours/glitch/async/emoji_picker.js.map b/priv/static/packs/flavours/glitch/async/emoji_picker.js.map
new file mode 100644
index 000000000..0805b9929
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/emoji_picker.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/favourited_statuses.js b/priv/static/packs/flavours/glitch/async/favourited_statuses.js
new file mode 100644
index 000000000..af7484730
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/favourited_statuses.js differ
diff --git a/priv/static/packs/flavours/glitch/async/favourited_statuses.js.map b/priv/static/packs/flavours/glitch/async/favourited_statuses.js.map
new file mode 100644
index 000000000..0efaaf89d
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/favourited_statuses.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/favourites.js b/priv/static/packs/flavours/glitch/async/favourites.js
new file mode 100644
index 000000000..3294a1998
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/favourites.js differ
diff --git a/priv/static/packs/flavours/glitch/async/favourites.js.map b/priv/static/packs/flavours/glitch/async/favourites.js.map
new file mode 100644
index 000000000..87c475d06
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/favourites.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/follow_requests.js b/priv/static/packs/flavours/glitch/async/follow_requests.js
new file mode 100644
index 000000000..1fa99e33d
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/follow_requests.js differ
diff --git a/priv/static/packs/flavours/glitch/async/follow_requests.js.map b/priv/static/packs/flavours/glitch/async/follow_requests.js.map
new file mode 100644
index 000000000..3ef12b103
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/follow_requests.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/followers.js b/priv/static/packs/flavours/glitch/async/followers.js
new file mode 100644
index 000000000..cb80693b8
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/followers.js differ
diff --git a/priv/static/packs/flavours/glitch/async/followers.js.map b/priv/static/packs/flavours/glitch/async/followers.js.map
new file mode 100644
index 000000000..ac6c84ae7
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/followers.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/following.js b/priv/static/packs/flavours/glitch/async/following.js
new file mode 100644
index 000000000..7307c8a39
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/following.js differ
diff --git a/priv/static/packs/flavours/glitch/async/following.js.map b/priv/static/packs/flavours/glitch/async/following.js.map
new file mode 100644
index 000000000..310fe4d76
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/following.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/generic_not_found.js b/priv/static/packs/flavours/glitch/async/generic_not_found.js
new file mode 100644
index 000000000..3ddb999ec
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/generic_not_found.js differ
diff --git a/priv/static/packs/flavours/glitch/async/generic_not_found.js.map b/priv/static/packs/flavours/glitch/async/generic_not_found.js.map
new file mode 100644
index 000000000..c0739ad3c
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/generic_not_found.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/getting_started.js b/priv/static/packs/flavours/glitch/async/getting_started.js
new file mode 100644
index 000000000..b37fd6c2a
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/getting_started.js differ
diff --git a/priv/static/packs/flavours/glitch/async/getting_started.js.map b/priv/static/packs/flavours/glitch/async/getting_started.js.map
new file mode 100644
index 000000000..858b70078
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/getting_started.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/getting_started_misc.js b/priv/static/packs/flavours/glitch/async/getting_started_misc.js
new file mode 100644
index 000000000..cbc2d2633
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/getting_started_misc.js differ
diff --git a/priv/static/packs/flavours/glitch/async/getting_started_misc.js.map b/priv/static/packs/flavours/glitch/async/getting_started_misc.js.map
new file mode 100644
index 000000000..483ff311f
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/getting_started_misc.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/hashtag_timeline.js b/priv/static/packs/flavours/glitch/async/hashtag_timeline.js
new file mode 100644
index 000000000..e20e7150a
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/hashtag_timeline.js differ
diff --git a/priv/static/packs/flavours/glitch/async/hashtag_timeline.js.map b/priv/static/packs/flavours/glitch/async/hashtag_timeline.js.map
new file mode 100644
index 000000000..e1f3188ba
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/hashtag_timeline.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/home_timeline.js b/priv/static/packs/flavours/glitch/async/home_timeline.js
new file mode 100644
index 000000000..efec5841f
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/home_timeline.js differ
diff --git a/priv/static/packs/flavours/glitch/async/home_timeline.js.map b/priv/static/packs/flavours/glitch/async/home_timeline.js.map
new file mode 100644
index 000000000..a1fe64700
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/home_timeline.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/keyboard_shortcuts.js b/priv/static/packs/flavours/glitch/async/keyboard_shortcuts.js
new file mode 100644
index 000000000..3afdee4ef
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/keyboard_shortcuts.js differ
diff --git a/priv/static/packs/flavours/glitch/async/keyboard_shortcuts.js.map b/priv/static/packs/flavours/glitch/async/keyboard_shortcuts.js.map
new file mode 100644
index 000000000..21ba34dbc
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/keyboard_shortcuts.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/list_editor.js b/priv/static/packs/flavours/glitch/async/list_editor.js
new file mode 100644
index 000000000..6fb31bfcb
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/list_editor.js differ
diff --git a/priv/static/packs/flavours/glitch/async/list_editor.js.map b/priv/static/packs/flavours/glitch/async/list_editor.js.map
new file mode 100644
index 000000000..029525fba
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/list_editor.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/list_timeline.js b/priv/static/packs/flavours/glitch/async/list_timeline.js
new file mode 100644
index 000000000..fa77ead77
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/list_timeline.js differ
diff --git a/priv/static/packs/flavours/glitch/async/list_timeline.js.map b/priv/static/packs/flavours/glitch/async/list_timeline.js.map
new file mode 100644
index 000000000..f305a5d6c
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/list_timeline.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/lists.js b/priv/static/packs/flavours/glitch/async/lists.js
new file mode 100644
index 000000000..a3d7e7a0a
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/lists.js differ
diff --git a/priv/static/packs/flavours/glitch/async/lists.js.map b/priv/static/packs/flavours/glitch/async/lists.js.map
new file mode 100644
index 000000000..2e31b8d36
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/lists.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/mute_modal.js b/priv/static/packs/flavours/glitch/async/mute_modal.js
new file mode 100644
index 000000000..6626c0e52
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/mute_modal.js differ
diff --git a/priv/static/packs/flavours/glitch/async/mute_modal.js.map b/priv/static/packs/flavours/glitch/async/mute_modal.js.map
new file mode 100644
index 000000000..0fcd80d50
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/mute_modal.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/mutes.js b/priv/static/packs/flavours/glitch/async/mutes.js
new file mode 100644
index 000000000..5e66aa7c2
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/mutes.js differ
diff --git a/priv/static/packs/flavours/glitch/async/mutes.js.map b/priv/static/packs/flavours/glitch/async/mutes.js.map
new file mode 100644
index 000000000..725b1fd0f
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/mutes.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/notifications.js b/priv/static/packs/flavours/glitch/async/notifications.js
new file mode 100644
index 000000000..48c44150a
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/notifications.js differ
diff --git a/priv/static/packs/flavours/glitch/async/notifications.js.map b/priv/static/packs/flavours/glitch/async/notifications.js.map
new file mode 100644
index 000000000..ec155e81e
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/notifications.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/onboarding_modal.js b/priv/static/packs/flavours/glitch/async/onboarding_modal.js
new file mode 100644
index 000000000..6f137f931
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/onboarding_modal.js differ
diff --git a/priv/static/packs/flavours/glitch/async/onboarding_modal.js.map b/priv/static/packs/flavours/glitch/async/onboarding_modal.js.map
new file mode 100644
index 000000000..1b48ae69c
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/onboarding_modal.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/pinned_accounts_editor.js b/priv/static/packs/flavours/glitch/async/pinned_accounts_editor.js
new file mode 100644
index 000000000..73df78afe
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/pinned_accounts_editor.js differ
diff --git a/priv/static/packs/flavours/glitch/async/pinned_accounts_editor.js.map b/priv/static/packs/flavours/glitch/async/pinned_accounts_editor.js.map
new file mode 100644
index 000000000..599dbc97c
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/pinned_accounts_editor.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/pinned_statuses.js b/priv/static/packs/flavours/glitch/async/pinned_statuses.js
new file mode 100644
index 000000000..ee8f6cdf1
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/pinned_statuses.js differ
diff --git a/priv/static/packs/flavours/glitch/async/pinned_statuses.js.map b/priv/static/packs/flavours/glitch/async/pinned_statuses.js.map
new file mode 100644
index 000000000..a2d1b5688
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/pinned_statuses.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/public_timeline.js b/priv/static/packs/flavours/glitch/async/public_timeline.js
new file mode 100644
index 000000000..8480d71c2
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/public_timeline.js differ
diff --git a/priv/static/packs/flavours/glitch/async/public_timeline.js.map b/priv/static/packs/flavours/glitch/async/public_timeline.js.map
new file mode 100644
index 000000000..2dd4c1dad
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/public_timeline.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/reblogs.js b/priv/static/packs/flavours/glitch/async/reblogs.js
new file mode 100644
index 000000000..409383788
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/reblogs.js differ
diff --git a/priv/static/packs/flavours/glitch/async/reblogs.js.map b/priv/static/packs/flavours/glitch/async/reblogs.js.map
new file mode 100644
index 000000000..8f8e13299
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/reblogs.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/report_modal.js b/priv/static/packs/flavours/glitch/async/report_modal.js
new file mode 100644
index 000000000..9fbfb0096
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/report_modal.js differ
diff --git a/priv/static/packs/flavours/glitch/async/report_modal.js.map b/priv/static/packs/flavours/glitch/async/report_modal.js.map
new file mode 100644
index 000000000..1b62a675c
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/report_modal.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/settings_modal.js b/priv/static/packs/flavours/glitch/async/settings_modal.js
new file mode 100644
index 000000000..20b4ab8ad
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/settings_modal.js differ
diff --git a/priv/static/packs/flavours/glitch/async/settings_modal.js.map b/priv/static/packs/flavours/glitch/async/settings_modal.js.map
new file mode 100644
index 000000000..8731f270b
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/settings_modal.js.map differ
diff --git a/priv/static/packs/flavours/glitch/async/status.js b/priv/static/packs/flavours/glitch/async/status.js
new file mode 100644
index 000000000..dee6db838
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/status.js differ
diff --git a/priv/static/packs/flavours/glitch/async/status.js.map b/priv/static/packs/flavours/glitch/async/status.js.map
new file mode 100644
index 000000000..1f54b1ade
Binary files /dev/null and b/priv/static/packs/flavours/glitch/async/status.js.map differ
diff --git a/priv/static/packs/flavours/glitch/common.css b/priv/static/packs/flavours/glitch/common.css
new file mode 100644
index 000000000..b3c855b32
Binary files /dev/null and b/priv/static/packs/flavours/glitch/common.css differ
diff --git a/priv/static/packs/flavours/glitch/common.css.map b/priv/static/packs/flavours/glitch/common.css.map
new file mode 100644
index 000000000..752c870bd
--- /dev/null
+++ b/priv/static/packs/flavours/glitch/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/flavours/glitch/styles/index.scss"],"names":[],"mappings":"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","file":"flavours/glitch/common.css","sourcesContent":["@charset \"UTF-8\";@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:\"mastodon-font-monospace\";src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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:#192432 transparent}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#192432;border:0 #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#1c2938}::-webkit-scrollbar-thumb:active{background:#192432}::-webkit-scrollbar-track{border:0 #fff;border-radius:0;background:rgba(0,0,0,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#121a24}::-webkit-scrollbar-corner{background:transparent}body{font-family:sans-serif;background:#040609;font-size:13px;line-height:18px;font-weight:400;color:#fff;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#121a24}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#121a24}body.with-modals{overflow-x:hidden;overflow-y:scroll}body.with-modals--active{overflow-y:hidden;margin-right:13px}body.embed{background:#192432;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#0b1016;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#9baec8;background:#121a24;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:center;justify-content:center;outline:0!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:400px){.logo-container{margin:30px auto 20px}}.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: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;background-size:40px 40px;margin-right:8px}.account-header .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.account-header .name{flex:1 1 auto;color:#d9e1e8;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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#202e3f;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;box-shadow:none;z-index:110}}.public-layout .header>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:stretch;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:stretch;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#26374d}.public-layout .header .nav-link{display:flex;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#9baec8;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}@media screen and (max-width:550px){.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#2d415a;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:#344b68}.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:#d9e1e8}.public-layout .public-account-header.inactive .logo-button svg path:last-child{fill:#d9e1e8}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#000}.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:#192432;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;background-size:120px 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 #192432;background:#040609;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#192432;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;background-size:48px 48px;padding:7px 0 7px 10px}.public-layout .public-account-header__bar .avatar img{border:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}}@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:#9baec8}}.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:#9baec8;padding:10px;border-right:1px solid #192432;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 #9baec8;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #d8a070;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#d9e1e8}.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: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:transparent;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #26374d}.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:#9baec8}.public-layout .public-account-header__extra__links a{display:inline-block;color:#9baec8;text-decoration:none;padding:15px}.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:#202e3f;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:#e1b590}.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:#9baec8}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#3e5a7c;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 #202e3f}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #202e3f}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#121a24}.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:#192432}}.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}.modal-layout{background:#121a24 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}.modal-layout__mastodon{display:flex;flex:1;flex-direction:column;justify-content:flex-end}.modal-layout__mastodon>*{flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.public-layout .footer{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#4c6d98}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#4c6d98}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#9baec8}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#4c6d98}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#4c6d98}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#5377a5}.compact-header h1{font-size:24px;line-height:28px;color:#9baec8;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:#d9e1e8}.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%;height:167px;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:#121a24;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#9baec8;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:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.hero-widget__text a{color:#d9e1e8;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:#9baec8}.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,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;min-height:100%}.contact-widget{font-size:15px;color:#9baec8;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:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2);color:#d9e1e8;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:#9baec8}.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:#9baec8;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#202e3f;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:#9baec8}@media screen and (max-width:415px){.page-header{margin-top:0;background:#192432}.page-header h1{font-size:24px}}.directory{background:#121a24;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{display:flex;align-items:center;justify-content:space-between;background:#121a24;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:#202e3f}.directory__tag.active a{background:#d8a070;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:#9baec8}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#9baec8}.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:#d8a070}.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;border:2px solid #121a24}.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 thead th{text-align:center;text-transform:uppercase;color:#9baec8;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 #202e3f}.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:#9baec8;font-weight:400;font-size:14px}@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 #2d415a}}.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:#9baec8}.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:#d8a070}.notice-widget a:active,.notice-widget a:focus,.notice-widget a:hover{text-decoration:underline}code{font-family: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 .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:#9baec8}.simple_form .hint a{color:#d8a070}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#000}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#9baec8}.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{-webkit-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:#010102;border:1px solid #000;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,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{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:#d8a070;background:#040609}.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 .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:#d8a070;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:#ddad84}.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:#d3935c}.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:#010102 url(\"data:image/svg+xml;utf8,
\") no-repeat right 8px center/auto 16px;border:1px solid #000;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:#3e5a7c;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(1,1,2,0),#010102)}.flash-message{background:#202e3f;color:#9baec8;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 p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:monospace,monospace;background:#121a24;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:#192432}.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:#9baec8;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:#d8a070;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#e1b590}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#9baec8}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#d9e1e8;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:#d9e1e8;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:#9baec8}.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:monospace,monospace}.input-copy{background:#010102;border:1px solid #000;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:transparent;border:0;padding:10px;font-size:14px;font-family: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}.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:#202e3f}.card__img{height:130px;position:relative;background:#000;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:#192432;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;background-size:48px 48px;padding-top:2px}.card__bar .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;background:#040609}.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:#9baec8;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:#121a24;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#d9e1e8}.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:#233346}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2);color:#9baec8;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:#d9e1e8;background-color:rgba(217,225,232,.1);border:1px solid rgba(217,225,232,.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:#26374d 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 #26374d}.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:#d9e1e8;background:rgba(4,6,9,.5)}.account__header__fields dd{flex:1 1 auto;color:#9baec8}.account__header__fields a{color:#d8a070;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}.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:#121a24}.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:#202e3f}.button.logo-button{flex:0 auto;font-size:14px;background:#d8a070;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}.button.logo-button svg path:first-child{fill:#fff}.button.logo-button svg path:last-child{fill:#d8a070}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#e3bb98}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#e3bb98}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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:initial;margin-left:78px;padding:15px 0 2px}.embed .status__prepend-icon-wrapper,.public-layout .status__prepend-icon-wrapper{position:absolute;margin:initial;float:none;width:auto;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}.embed .status .status__info,.public-layout .status .status__info{font-size:15px;display:initial}.embed .status .status__relative-time,.public-layout .status .status__relative-time{color:#3e5a7c;float:right;font-size:14px;width:auto;margin:initial;padding:initial}.embed .status .status__info .status__display-name,.public-layout .status .status__info .status__display-name{display:block;max-width:100%;padding-right:25px;margin:initial}.embed .status .status__info .status__display-name .display-name strong,.public-layout .status .status__info .status__display-name .display-name strong{display:inline}.embed .status .status__avatar,.public-layout .status .status__avatar{height:48px;position:absolute;width:48px;margin:initial}.rtl .embed .status .status__relative-time,.rtl .public-layout .status .status__relative-time{float:left}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#d59864;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#e0b38c;transition:all .2s ease-out}.button:disabled{background-color:#9baec8;cursor:default}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#121a24;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#a8b9cf}.button.button-alternative-2{background:#3e5a7c}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#45648a}.button.button-secondary{font-size:16px;line-height:36px;height:auto;color:#9baec8;text-transform:none;background:transparent;padding:3px 15px;border-radius:4px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#a8b9cf;color:#a8b9cf}.button.button--block{display:block;width:100%}.icon-button{display:inline-block;padding:0;color:#3e5a7c;border:none;background:transparent;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#4a6b94;transition:color .2s ease-out}.icon-button.disabled{color:#283a50;cursor:default}.icon-button.active{color:#d8a070}.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:#3e5a7c}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#324965}.icon-button.inverted.disabled{color:#4a6b94}.icon-button.inverted.active{color:#d8a070}.icon-button.inverted.active.disabled{color:#e6c3a4}.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:#3e5a7c;border:none;background:transparent;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:#324965;transition:color .2s ease-out}.text-icon-button.disabled{color:#6b8cb5;cursor:default}.text-icon-button.active{color:#d8a070}.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}.dropdown-menu{position:absolute;-webkit-transform-origin:50% 0;transform-origin:50% 0}.invisible{font-size:0;line-height:0;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:\"…\"}.notification__favourite-icon-wrapper{left:0;position:absolute}.notification__favourite-icon-wrapper .fa.star-icon,.star-icon.active{color:#ca8f04}.bookmark-icon.active{color:#ff5050}.notification__display-name{color:inherit;font-weight:500;text-decoration:none}.notification__display-name:hover{color:#fff;text-decoration:underline}.display-name{display:block;padding:6px 0;max-width:100%;height:36px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.display-name strong{font-size:16px;font-weight:500}.display-name span,.display-name strong{display:block;height:18px;line-height:18px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.display-name span{font-size:15px}.display-name:hover strong{text-decoration:underline}.display-name.inline{padding:0;height:18px;font-size:15px;line-height:18px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.display-name.inline span,.display-name.inline strong{display:inline;height:auto;font-size:inherit;line-height:inherit}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.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/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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;height:0}.dropdown-menu{background:#d9e1e8;padding:4px 0;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4)}.dropdown-menu ul{list-style:none}.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:#d9e1e8}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-7px;border-width:5px 7px 0;border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-7px;border-width:0 7px 5px;border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#d9e1e8}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#121a24;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#d8a070;color:#d9e1e8;outline:0}.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:#d9e1e8;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:#d9e1e8;color:#121a24;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:#d8a070;color:#d9e1e8}.dropdown__icon{vertical-align:middle}.static-content{padding:20px 10px 10px;color:#3e5a7c}.static-content h1{font-size:16px;font-weight:500;margin-bottom:40px;text-align:center}.static-content p{font-size:13px;margin-bottom:20px}.tabs-bar{display:flex;background:#202e3f;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;flex:1 1 auto;padding:15px 10px;color:#fff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #202e3f;transition:all .2s linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #d8a070;color:#d8a070}@media screen and (min-width:631px){.auto-columns .tabs-bar__link:active,.auto-columns .tabs-bar__link:focus,.auto-columns .tabs-bar__link:hover{background:#2a3c54;transition:all .1s linear}}.multi-columns .tabs-bar__link:active,.multi-columns .tabs-bar__link:focus,.multi-columns .tabs-bar__link:hover{background:#2a3c54;transition:all .1s linear}.tabs-bar__link span:last-child{margin-left:5px;display:none}@media screen and (min-width:631px){.auto-columns .tabs-bar{display:none}}.multi-columns .tabs-bar{display:none}.scrollable{overflow-y:scroll;overflow-x:hidden;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}.scrollable--flex{display:flex;flex-direction:column}.scrollable__append{flex:1 1 auto;position:relative;min-height:120px}@supports (display:grid){.scrollable.fullscreen{contain:none}}.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:rgba(0,0,0,0);-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:#121a24;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#010102}.react-toggle--checked .react-toggle-track{background-color:#d8a070}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#e3bb98}.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{transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #121a24;border-radius:50%;background-color:#fafafa;box-sizing:border-box;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#d8a070}.getting-started__wrapper,.getting_started{background:#121a24}.getting-started__wrapper{position:relative;overflow-y:auto}.getting-started{background:#121a24;flex:1 0 auto}.getting-started p{color:#d9e1e8}.getting-started a{color:#3e5a7c}.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:#3e5a7c;font-size:13px;margin-bottom:20px}.getting-started__footer p a{color:#3e5a7c;text-decoration:underline}.getting-started__footer a{text-decoration:none;color:#9baec8}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover{text-decoration:underline}.column-link__badge{display:inline-block;border-radius:4px;font-size:12px;line-height:19px;font-weight:500;background:#121a24;padding:4px 8px;margin:-6px 10px}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#202e3f;border:1px solid #0b1016}.setting-text{color:#9baec8;background:transparent;border:none;border-bottom:2px solid #9baec8;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:#d8a070}@media screen and (max-width:600px){.auto-columns .setting-text,.single-column .setting-text{font-size:16px}}.setting-text.light{color:#121a24;border-bottom:2px solid #405c80}.setting-text.light:active,.setting-text.light:focus{color:#121a24;border-bottom-color:#d8a070}.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%}.reduce-motion button.icon-button i.fa-retweet{color:#3e5a7c;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#d8a070}.reduce-motion button.icon-button.disabled i.fa-retweet{color:#283a50}.load-more{display:block;color:#3e5a7c;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:#151f2b}.load-gap{border-bottom:1px solid #202e3f}.missing-indicator{padding-top:68px}.scrollable>div>:first-child .notification__dismiss-overlay>.wrappy{border-top:1px solid #121a24}.notification__dismiss-overlay{overflow:hidden;position:absolute;top:0;right:0;bottom:-1px;padding-left:15px;z-index:999;align-items:center;justify-content:flex-end;cursor:pointer;display:flex}.notification__dismiss-overlay .wrappy{width:4rem;align-self:stretch;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#202e3f;border-left:1px solid #344b68;box-shadow:0 0 5px #000;border-bottom:1px solid #121a24}.notification__dismiss-overlay .ckbox{border:2px solid #9baec8;border-radius:2px;width:30px;height:30px;font-size:20px;color:#9baec8;text-shadow:0 0 5px #000;display:flex;justify-content:center;align-items:center}.notification__dismiss-overlay:focus{outline:0!important}.notification__dismiss-overlay:focus .ckbox{box-shadow:0 0 1px 1px #d8a070}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.loading-indicator{color:#3e5a7c;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #3e5a7c;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:#3e5a7c}29%{background-color:#3e5a7c}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:#3e5a7c}29%{background-color:#3e5a7c}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}}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.setting-toggle{display:block;line-height:24px}.setting-meta__label,.setting-radio__label,.setting-toggle__label{color:#9baec8;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.setting-radio{display:block;line-height:18px}.setting-radio__label{margin-bottom:0}.column-settings__row legend{color:#9baec8;cursor:default;display:block;font-weight:500;margin-top:10px}.setting-radio__input{vertical-align:middle}.setting-meta__label{float:right}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.pulse-loading{-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}.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:#121a24;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#d9e1e8;font-size:18px;font-weight:500;border:2px dashed #3e5a7c;border-radius:4px}.dropdown--active .emoji-button img{opacity:1;-webkit-filter:none;filter:none}.loading-bar{background-color:#d8a070;height:3px;position:absolute;top:0;left:0}.icon-badge-wrapper{position:relative}.icon-badge{position:absolute;display:block;right:-.25em;top:-.25em;background-color:#d8a070;border-radius:50%;font-size:75%;width:1em;height:1em}::-webkit-scrollbar-thumb{border-radius:0}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:#d9e1e8;max-width:400px}noscript div a{color:#d8a070;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}}button.icon-button i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}.status-direct button.icon-button.disabled i.fa-retweet,.status-direct button.icon-button.disabled i.fa-retweet:hover,button.icon-button.disabled i.fa-retweet,button.icon-button.disabled i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}.account{padding:10px;border-bottom:1px solid #202e3f;color:inherit;text-decoration:none}.account .account__display-name{flex:1 1 auto;display:block;color:#9baec8;overflow:hidden;text-decoration:none;font-size:14px}.account.small{border:none;padding:0}.account.small>.account__avatar-wrapper{margin:0 8px 0 0}.account.small>.display-name{height:24px;line-height:24px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative;cursor:pointer}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}.account__avatar-overlay{position:relative;width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:8%;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:8%;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:18px;padding:10px;white-space:nowrap}.account__header,.account__header__wrapper{flex:0 0 auto;background:#192432}.account__header{text-align:center;background-size:cover;background-position:50%;position:relative}.account__header .account__avatar{border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:90px;height:90px;background-size:90px 90px;display:block;margin:0 auto 10px;overflow:hidden}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#d9e1e8}.account__header>div{background:rgba(25,36,50,.9);padding:20px 10px}.account__header .account__header__content{color:#d9e1e8}.account__header .account__header__display-name{color:#fff;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#d8a070;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.account__disclaimer{padding:10px;border-top:1px solid #202e3f;color:#3e5a7c}.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__header__content{color:#9baec8;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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;line-height:36px;overflow:hidden;flex:0 0 auto;display:flex}.account__action-bar-dropdown{padding:10px}.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-left:1px solid #202e3f;padding:10px 0;border-bottom:4px solid transparent}.account__action-bar__tab.active{border-bottom:4px solid #d8a070}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#9baec8}.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__action-bar__tab abbr{color:#d8a070}.account__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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}.notification__message{margin-left:42px;padding:8px 0 0 26px;cursor:default;color:#9baec8;font-size:15px;position:relative}.notification__message .fa{color:#d8a070}.notification__message>span{display:block;overflow:hidden;text-overflow:ellipsis}.account--panel{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;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:#202e3f;padding:15px}.column-settings__section{color:#9baec8;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__section .column-settings__hashtag-select__control{outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#121a24;color:#9baec8;font-size:14px;margin:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner{border:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner,.column-settings__section .column-settings__hashtag-select__control:active,.column-settings__section .column-settings__hashtag-select__control:focus{outline:0!important}.column-settings__section .column-settings__hashtag-select__control:focus{background:#192432}@media screen and (max-width:600px){.column-settings__section .column-settings__hashtag-select__control{font-size:16px}}.column-settings__section .column-settings__hashtag-select__multi-value{background:#202e3f}.column-settings__section .column-settings__hashtag-select__input,.column-settings__section .column-settings__hashtag-select__multi-value__label{color:#9baec8}.column-settings__section .column-settings__hashtag-select__dropdown-indicator,.column-settings__section .column-settings__hashtag-select__indicator-separator{display:none}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#fff;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:rgba(0,0,0,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.account-gallery__container{display:flex;justify-content:center;flex-wrap:wrap;padding:2px}.account-gallery__item{flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#000;background-size:cover;background-position:50%;position:absolute;color:#9baec8;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#d9e1e8}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:rgba(0,0,0,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#0b1016;border-bottom:1px solid #202e3f;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#0b1016;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:#9baec8;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:#d9e1e8}.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;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-color:transparent transparent #202e3f;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 #121a24}.account__moved-note{padding:14px 10px 16px;background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f}.account__moved-note__message{position:relative;margin-left:58px;color:#3e5a7c;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}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.domain{padding:10px;border-bottom:1px solid #202e3f}.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}.status__content--with-action{cursor:pointer}.status__content{position:relative;margin:10px 0;font-size:15px;line-height:20px;word-wrap:break-word;font-weight:400;overflow:visible;padding-top:5px}.status__content:focus{outline:0}.status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.status__content p{margin-bottom:20px;white-space:pre-wrap}.status__content p:last-child{margin-bottom:0}.status__content a{color:#d8a070;text-decoration:none}.status__content a:hover{text-decoration:underline}.status__content a:hover .fa{color:#4a6b94}.status__content a.mention:hover{text-decoration:none}.status__content a.mention:hover span{text-decoration:underline}.status__content a .fa{color:#3e5a7c}.status__content .status__content__spoiler{display:none}.status__content .status__content__spoiler.status__content__spoiler--visible{display:block}.status__content .status__content__spoiler-link{background:#45648a}.status__content .status__content__spoiler-link:hover{background:#4a6b94;text-decoration:none}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:#45648a;border:none;color:#121a24;font-weight:500;font-size:11px;padding:0 5px;text-transform:uppercase;line-height:inherit;cursor:pointer;vertical-align:bottom}.status__content__spoiler-link:hover{background:#4a6b94;text-decoration:none}.status__content__spoiler-link .status__content__spoiler-icon{display:inline-block;margin:0 0 0 5px;border-left:1px solid;padding:0 0 0 4px;font-size:16px;vertical-align:-2px}.notif-cleaning .notification-follow,.notif-cleaning .status{padding-right:4.5rem}.status__wrapper--filtered{color:#3e5a7c;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 #202e3f}.status__prepend-icon-wrapper{float:left;margin:0 10px 0 -58px;width:48px;text-align:right}.notification-follow{position:relative;border-bottom:1px solid #202e3f}.notification-follow .account{border-bottom:0}.focusable:focus{outline:0;background:#192432}.focusable:focus .status.status-direct{background:#26374d}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#202e3f}.status{padding:10px 14px;position:relative;height:auto;border-bottom:1px solid #202e3f;cursor:default;opacity:1;-webkit-animation:fade .15s linear;animation:fade .15s linear}@supports (-ms-overflow-style:-ms-autohiding-scrollbar){.status{padding-right:28px}}@-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{background:#202e3f}.status.light .status__relative-time{color:#3e5a7c}.status.light .display-name strong,.status.light .status__display-name{color:#121a24}.status.light .display-name span{color:#3e5a7c}.status.light .status__content{color:#121a24}.status.light .status__content a{color:#d8a070}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.status.collapsed{background-position:50%;background-size:cover;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.status.collapsed.has-background:before{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background-image:linear-gradient(180deg,rgba(0,0,0,.75),rgba(0,0,0,.65) 24px,rgba(0,0,0,.8));pointer-events:none;content:\"\"}.status.collapsed .display-name:hover .display-name__html{text-decoration:none}.status.collapsed .status__content{height:20px;overflow:hidden;text-overflow:ellipsis;padding-top:0}.status.collapsed .status__content:after{content:\"\";position:absolute;top:0;bottom:0;left:0;right:0;background:linear-gradient(rgba(18,26,36,0),#121a24);pointer-events:none}.status.collapsed .status__content a:hover{text-decoration:none}.status.collapsed:focus>.status__content:after{background:linear-gradient(rgba(25,36,50,0),#192432)}.status.collapsed.status-direct>.status__content:after{background:linear-gradient(rgba(32,46,63,0),#202e3f)}.status.collapsed .notification__message{margin-bottom:0}.status.collapsed .status__info .notification__message>span{white-space:nowrap}.status .notification__message{margin:-10px 0 10px}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#547aa9}.status__relative-time{display:inline-block;margin-left:auto;padding-left:18px;width:120px;color:#3e5a7c;font-size:14px;text-align:right;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.status__display-name{margin:0 auto 0 0;color:#3e5a7c;overflow:hidden}.status__info__account .status__display-name{display:block;max-width:100%}.status__info{display:flex;font-size:15px}.status__info>span{text-overflow:ellipsis;overflow:hidden}.status__info .notification__message>span{word-wrap:break-word}.status__info__icons{margin-left:auto;display:flex;align-items:center;height:1em;color:#3e5a7c}.status__info__icons .status__media-icon{padding-left:6px;padding-right:1px}.status__info__icons .status__visibility-icon{padding-left:4px}.status__info__account{display:flex}.status-check-box{border-bottom:1px solid #d9e1e8;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:-10px -10px 10px;color:#3e5a7c;padding:8px 10px 0 68px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#3e5a7c}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:8px}.status__action-bar__counter{display:inline-flex;margin-right:11px;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:#3e5a7c}.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:#192432;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 .video-player{margin-top:8px}.detailed-status__meta{margin-top:15px;color:#3e5a7c;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.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}.account__display-name:hover strong,.detailed-status__display-name:hover strong,.reply-indicator__display-name:hover strong,.status__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:#d9e1e8;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{flex:none;margin:0 10px 0 0;height:48px;width:48px}.muted .status__content,.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#3e5a7c}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#3e5a7c;color:#121a24}.muted a.status__content__spoiler-link:hover{background:#436187;text-decoration:none}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.status-card{display:flex;font-size:14px;border:1px solid #202e3f;border-radius:4px;color:#3e5a7c;margin-top:14px;text-decoration:none;overflow:hidden}.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:4px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}.status-card__actions a .fa,.status-card__actions a:hover .fa{color:inherit}a.status-card{cursor:pointer}a.status-card:hover{background:#202e3f}.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:#9baec8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#9baec8}.status-card__host{display:block;margin-top:5px;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__image{flex:0 0 100px;background:#202e3f;position:relative}.status-card__image>.fa{font-size:21px;position:absolute;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:50%;left:50%;-webkit-transform:translate(-50%,-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{border-color:#192432}.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 60px}a.status-card.compact:hover{background-color:#192432}.status-card__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover;background-size:cover;background-position:50%}.status__video-player{display:flex;align-items:center;background:#000;box-sizing:border-box;cursor:default;margin-top:8px;overflow:hidden;position:relative}.status__video-player.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.status__video-player-video{height:100%;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.status__video-player-video:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.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}.attachment-list{display:flex;font-size:14px;border:1px solid #202e3f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#3e5a7c;padding:8px 18px;cursor:default;border-right:1px solid #202e3f;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:#3e5a7c;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:#3e5a7c}.modal-container--preloader{background:#202e3f}.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}.embed-modal,.error-modal,.onboarding-modal{background:#d9e1e8;color:#121a24;border-radius:8px;overflow:hidden;display:flex;flex-direction:column}.onboarding-modal__pager{height:80vh;width:80vw;max-width:520px;max-height:470px}.onboarding-modal__pager .react-swipeable-view-container>div{width:100%;height:100%;box-sizing:border-box;display:none;flex-direction:column;align-items:center;justify-content:center;display:flex;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.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}@media screen and (max-width:550px){.onboarding-modal{width:100%;height:100%;border-radius:0}.onboarding-modal__pager{width:100%;height:auto;max-width:none;max-height:none;flex:1 1 auto}}.error-modal__footer,.onboarding-modal__paginator{flex:0 0 auto;background:#c0cdd9;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:#3e5a7c;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:#37506f;background-color:#a6b9c9}.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:#121a24}.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:#192432}.error-modal__footer{justify-content:center}.onboarding-modal__dots{flex:1 1 auto;display:flex;align-items:center;justify-content:center}.onboarding-modal__dot{width:14px;height:14px;border-radius:14px;background:#a6b9c9;margin:0 3px;cursor:pointer}.onboarding-modal__dot:hover{background:#a0b4c5}.onboarding-modal__dot.active{cursor:default;background:#8da5ba}.onboarding-modal__page__wrapper{pointer-events:none;padding:25px 25px 0}.onboarding-modal__page__wrapper.onboarding-modal__page__wrapper--active{pointer-events:auto}.onboarding-modal__page{cursor:default;line-height:21px}.onboarding-modal__page h1{font-size:18px;font-weight:500;color:#121a24;margin-bottom:20px}.onboarding-modal__page a{color:#d8a070}.onboarding-modal__page a:active,.onboarding-modal__page a:focus,.onboarding-modal__page a:hover{color:#dcab80}.onboarding-modal__page .navigation-bar a{color:inherit}.onboarding-modal__page p{font-size:16px;color:#3e5a7c;margin-top:10px;margin-bottom:10px}.onboarding-modal__page p:last-child{margin-bottom:0}.onboarding-modal__page p strong{font-weight:500;background:#121a24;color:#d9e1e8;border-radius:4px;font-size:14px;padding:3px 6px}.onboarding-modal__page p strong:lang(ja),.onboarding-modal__page p strong:lang(ko),.onboarding-modal__page p strong:lang(zh-CN),.onboarding-modal__page p strong:lang(zh-HK),.onboarding-modal__page p strong:lang(zh-TW){font-weight:700}.onboarding-modal__page__wrapper-0{height:100%;padding:0}.onboarding-modal__page-one__lead{padding:45px 65px 0;margin-bottom:10px}.onboarding-modal__page-one__lead h1{font-size:26px;line-height:36px;margin-bottom:8px}.onboarding-modal__page-one__lead p{margin-bottom:0}.onboarding-modal__page-one__extra{padding-right:65px;padding-left:185px;text-align:center}.display-case{text-align:center;font-size:15px;margin-bottom:15px}.display-case__label{font-weight:500;color:#121a24;margin-bottom:5px;text-transform:uppercase;font-size:12px}.display-case__case{background:#121a24;color:#d9e1e8;font-weight:500;padding:10px;border-radius:4px}.onboarding-modal__page-five p,.onboarding-modal__page-four p,.onboarding-modal__page-three p,.onboarding-modal__page-two p{text-align:left}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{background:#040609;color:#d9e1e8;margin-bottom:20px;border-radius:4px;padding:10px;text-align:center;font-size:14px;box-shadow:1px 2px 6px rgba(0,0,0,.3)}.onboarding-modal__page-five .figure .onboarding-modal__image,.onboarding-modal__page-four .figure .onboarding-modal__image,.onboarding-modal__page-three .figure .onboarding-modal__image,.onboarding-modal__page-two .figure .onboarding-modal__image{border-radius:4px;margin-bottom:10px}.onboarding-modal__page-five .figure.non-interactive,.onboarding-modal__page-four .figure.non-interactive,.onboarding-modal__page-three .figure.non-interactive,.onboarding-modal__page-two .figure.non-interactive{pointer-events:none;text-align:left}.onboarding-modal__page-four__columns .row{display:flex;margin-bottom:20px}.onboarding-modal__page-four__columns .row>div{flex:1 1 0;margin:0 10px}.onboarding-modal__page-four__columns .row>div:first-child{margin-left:0}.onboarding-modal__page-four__columns .row>div:last-child{margin-right:0}.onboarding-modal__page-four__columns .row>div p{text-align:center}.onboarding-modal__page-four__columns .row:last-child{margin-bottom:0}.onboarding-modal__page-four__columns .column-header{color:#fff}@media screen and (max-width:320px) and (max-height:600px){.onboarding-modal__page p{font-size:14px;line-height:20px}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{font-size:12px;margin-bottom:10px}.onboarding-modal__page-four__columns .row{margin-bottom:10px}.onboarding-modal__page-four__columns .column-header{padding:5px;font-size:12px}}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.doodle-modal,.favourite-modal,.mute-modal,.report-modal{background:#f2f5f7;color:#121a24;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;flex-direction:column}.actions-modal .status__display-name,.boost-modal .status__display-name,.confirmation-modal .status__display-name,.doodle-modal .status__display-name,.favourite-modal .status__display-name,.mute-modal .status__display-name,.report-modal .status__display-name{display:flex}.actions-modal .status__avatar,.boost-modal .status__avatar,.confirmation-modal .status__avatar,.doodle-modal .status__avatar,.favourite-modal .status__avatar,.mute-modal .status__avatar,.report-modal .status__avatar{height:28px;left:10px;top:10px;width:48px}.actions-modal .status__content__spoiler-link,.boost-modal .status__content__spoiler-link,.confirmation-modal .status__content__spoiler-link,.doodle-modal .status__content__spoiler-link,.favourite-modal .status__content__spoiler-link,.mute-modal .status__content__spoiler-link,.report-modal .status__content__spoiler-link{color:#f2f5f7}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#d9e1e8}.boost-modal__container,.favourite-modal__container{overflow-x:scroll;padding:10px}.boost-modal__container .status,.favourite-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,.doodle-modal__action-bar,.favourite-modal__action-bar,.mute-modal__action-bar{display:flex;justify-content:space-between;background:#d9e1e8;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div,.doodle-modal__action-bar>div,.favourite-modal__action-bar>div,.mute-modal__action-bar>div{flex:1 1 auto;text-align:right;color:#3e5a7c;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button,.doodle-modal__action-bar .button,.favourite-modal__action-bar .button,.mute-modal__action-bar .button{flex:0 0 auto}.boost-modal__status-header,.favourite-modal__status-header{font-size:15px}.boost-modal__status-time,.favourite-modal__status-time{float:right;font-size:14px}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.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 #d9e1e8}@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:#d8a070}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #d9e1e8;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:#121a24;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;outline:0;border-radius:4px;border:1px solid #d9e1e8;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #c0cdd9}.report-modal__comment .setting-toggle{margin-top:20px;margin-bottom:24px}.report-modal__comment .setting-toggle__label{color:#121a24;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}}.report-modal__target{padding:20px}.report-modal__target .media-modal__close{top:19px;right:15px}.actions-modal{max-height:80vh;max-width:80vw}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal strong{display:block;font-weight:500}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;flex-shrink:0}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#121a24;display:flex;padding:12px 16px;font-size:15px;align-items:center;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:#d8a070;color:#fff}.actions-modal ul li:not(:empty) a>.icon,.actions-modal ul li:not(:empty) a>.react-toggle,.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#3e5a7c;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 .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 .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#37506f}.confirmation-modal__do_not_ask_again{padding-left:20px;padding-right:20px;padding-bottom:10px;font-size:14px}.confirmation-modal__do_not_ask_again input,.confirmation-modal__do_not_ask_again label{vertical-align:middle}.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}.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:\"mastodon-font-monospace\",monospace;background:#121a24;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:#192432}@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}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/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 .account__header__fields{font-size:15px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0;border-top:0}.account__header .account__header__fields dl{background:#121a24;border-top:1px solid #192432;border-bottom:0;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#9baec8;background:#283a50;width:120px;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{flex:1 1 auto;color:#fff;background:#121a24}.account__header .account__header__fields dd.verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.composer{padding:10px}.no-reduce-motion .composer--spoiler{transition:height .4s ease,opacity .4s ease}.composer--spoiler{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.composer--spoiler.composer--spoiler--visible{height:47px;opacity:1}.composer--spoiler input{display:block;box-sizing:border-box;margin:0;border:none;border-radius:4px;padding:10px;width:100%;outline:0;color:#121a24;background:#fff;font-size:14px;font-family:inherit;resize:vertical}.composer--spoiler input:focus{outline:0}@media screen and (max-width:630px){.auto-columns .composer--spoiler input{font-size:16px}}.single-column .composer--spoiler input{font-size:16px}.composer--warning{color:#121a24;margin-bottom:15px;background:#9baec8;box-shadow:0 2px 6px rgba(0,0,0,.3);padding:8px 10px;border-radius:4px;font-size:13px;font-weight:400}.composer--warning a{color:#3e5a7c;font-weight:500;text-decoration:underline}.composer--warning a:active,.composer--warning a:focus,.composer--warning a:hover{text-decoration:none}.composer--reply{margin:0 0 10px;border-radius:4px;padding:10px;background:#9baec8}.composer--reply>header{margin-bottom:5px;overflow:hidden}.composer--reply>header>.account.small{color:#121a24}.composer--reply>header>.cancel{float:right;line-height:24px}.composer--reply>.content{position:relative;margin:10px 0;font-size:14px;line-height:20px;color:#121a24;word-wrap:break-word;font-weight:400;overflow:visible;white-space:pre-wrap;padding:5px 12px 0}.composer--reply>.content p{margin-bottom:20px}.composer--reply>.content p:last-child{margin-bottom:0}.composer--reply>.content a{color:#3e5a7c;text-decoration:none}.composer--reply>.content a:hover{text-decoration:underline}.composer--reply>.content a.mention:hover{text-decoration:none}.composer--reply>.content a.mention:hover span{text-decoration:underline}.composer--reply .emojione{width:20px;height:20px;margin:-5px 0 0}.emoji-picker-dropdown{position:absolute;right:5px;top:5px}.emoji-picker-dropdown ::-webkit-scrollbar-track:active,.emoji-picker-dropdown ::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.3)}.composer--textarea{position:relative}.composer--textarea>label .textarea{display:block;box-sizing:border-box;margin:0;border:none;border-radius:4px 4px 0 0;padding:10px 32px 0 10px;width:100%;min-height:100px;outline:0;color:#121a24;background:#fff;font-size:14px;font-family:inherit;resize:none}.composer--textarea>label .textarea:disabled{background:#d9e1e8}.composer--textarea>label .textarea:focus{outline:0}@media screen and (max-width:630px){.auto-columns .composer--textarea>label .textarea{font-size:16px}}.single-column .composer--textarea>label .textarea{font-size:16px}@media screen and (max-width:600px){.auto-columns .composer--textarea>label .textarea,.single-column .composer--textarea>label .textarea{height:100px!important;resize:vertical}}.composer--textarea--icons{display:block;position:absolute;top:29px;right:5px;bottom:5px;overflow:hidden}.composer--textarea--icons>.textarea_icon{display:block;margin:2px 0 0 2px;width:24px;height:24px;color:#3e5a7c;font-size:18px;line-height:24px;text-align:center;opacity:.8}.composer--textarea--suggestions{display:block;position:absolute;box-sizing:border-box;top:100%;border-radius:0 0 4px 4px;padding:6px;width:100%;color:#121a24;background:#d9e1e8;box-shadow:4px 4px 6px rgba(0,0,0,.4);font-size:14px;z-index:99}.composer--textarea--suggestions[hidden]{display:none}.composer--textarea--suggestions--item{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;border-radius:4px;padding:10px;font-size:14px;line-height:18px;overflow:hidden;cursor:pointer}.composer--textarea--suggestions--item.selected,.composer--textarea--suggestions--item:active,.composer--textarea--suggestions--item:focus,.composer--textarea--suggestions--item:hover{background:#b9c8d5}.composer--textarea--suggestions--item>.emoji img{display:block;float:left;margin-right:8px;width:18px;height:18px}.composer--textarea--suggestions--item>.account.small .display-name>span{color:#3e5a7c}.composer--upload_form{padding:5px;color:#121a24;background:#fff;font-size:14px}.composer--upload_form>.content{display:flex;flex-direction:row;flex-wrap:wrap;font-family:inherit;overflow:hidden}.composer--upload_form--item{flex:1 1 0;margin:5px;min-width:40%}.composer--upload_form--item>div{position:relative;border-radius:4px;height:140px;width:100%;background-position:50%;background-size:cover;background-repeat:no-repeat;overflow:hidden}.composer--upload_form--item>div input{display:block;position:absolute;box-sizing:border-box;bottom:0;left:0;margin:0;border:0;padding:10px;width:100%;color:#d9e1e8;background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);font-size:14px;font-family:inherit;font-weight:500;opacity:0;z-index:2;transition:opacity .1s ease}.composer--upload_form--item>div input:focus{color:#fff}.composer--upload_form--item>div input::-webkit-input-placeholder{opacity:.54;color:#d9e1e8}.composer--upload_form--item>div input:-ms-input-placeholder{opacity:.54;color:#d9e1e8}.composer--upload_form--item>div input::-ms-input-placeholder{opacity:.54;color:#d9e1e8}.composer--upload_form--item>div input::placeholder{opacity:.54;color:#d9e1e8}.composer--upload_form--item>div>.close{mix-blend-mode:difference}.composer--upload_form--item.active>div input{opacity:1}.composer--upload_form--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}.composer--upload_form--actions .icon-button{flex:0 1 auto;color:#d9e1e8;font-size:14px;font-weight:500;padding:10px;font-family:inherit}.composer--upload_form--actions .icon-button:active,.composer--upload_form--actions .icon-button:focus,.composer--upload_form--actions .icon-button:hover{color:#e6ebf0}.composer--upload_form--actions.active{opacity:1}.composer--upload_form--progress{display:flex;padding:10px;color:#9baec8;overflow:hidden}.composer--upload_form--progress>.fa{font-size:34px;margin-right:10px}.composer--upload_form--progress>.message{flex:1 1 auto}.composer--upload_form--progress>.message>span{display:block;font-size:12px;font-weight:500;text-transform:uppercase}.composer--upload_form--progress>.message>.backdrop{position:relative;margin-top:5px;border-radius:6px;width:100%;height:6px;background:#3e5a7c}.composer--upload_form--progress>.message>.backdrop>.tracker{position:absolute;top:0;left:0;height:6px;border-radius:6px;background:#d8a070}.composer--options{padding:10px;background:#ebebeb;box-shadow:inset 0 5px 5px rgba(0,0,0,.05);border-radius:0 0 4px 4px;height:27px}.composer--options>*{display:inline-block;box-sizing:content-box;padding:0 3px;height:27px;line-height:27px;vertical-align:bottom}.composer--options>hr{display:inline-block;margin:0 3px;border:0 transparent;border-left:1px solid #c2c2c2;padding:0;width:0;height:27px;background:transparent}.composer--options--dropdown.open>.value{border-radius:4px 4px 0 0;box-shadow:0 -4px 4px rgba(0,0,0,.1);color:#fff;background:#d8a070;transition:none}.composer--options--dropdown.open.top>.value{border-radius:0 0 4px 4px;box-shadow:0 4px 4px rgba(0,0,0,.1)}.composer--options--dropdown--content{position:absolute;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4);background:#fff;overflow:hidden;-webkit-transform-origin:50% 0;transform-origin:50% 0}.composer--options--dropdown--content--item{display:flex;align-items:center;padding:10px;color:#121a24;cursor:pointer}.composer--options--dropdown--content--item>.content{flex:1 1 auto;color:#3e5a7c}.composer--options--dropdown--content--item>.content:not(:first-child){margin-left:10px}.composer--options--dropdown--content--item>.content strong{display:block;color:#121a24;font-weight:500}.composer--options--dropdown--content--item.active,.composer--options--dropdown--content--item:hover{background:#d8a070;color:#fff}.composer--options--dropdown--content--item.active>.content,.composer--options--dropdown--content--item.active>.content strong,.composer--options--dropdown--content--item:hover>.content,.composer--options--dropdown--content--item:hover>.content strong{color:#fff}.composer--options--dropdown--content--item.active:hover{background:#dcab80}.composer--publisher{padding-top:10px;text-align:right;white-space:nowrap;overflow:hidden}.composer--publisher>.count{display:inline-block;margin:0 16px 0 8px;font-size:16px;line-height:36px}.composer--publisher>.primary{display:inline-block;margin:0;padding:0 10px;text-align:center}.composer--publisher>.side_arm{display:inline-block;margin:0 2px 0 0;padding:0;width:36px;text-align:center}.composer--publisher.over>.count{color:#ff5050}.column__wrapper,.columns-area{display:flex;flex:1 1 auto;position:relative}.columns-area{flex-direction:row;justify-content:flex-start;overflow-x:auto}@media screen and (min-width:360px){.auto-columns .columns-area,.single-column .columns-area{padding:10px}.auto-columns .react-swipeable-view-container .columns-area,.single-column .react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.react-swipeable-view-container,.react-swipeable-view-container .column,.react-swipeable-view-container .columns-area{height:100%}.react-swipeable-view-container>*{display:flex;align-items:center;justify-content:center;height:100%}.ui{flex:0 0 auto;display:flex;flex-direction:column;width:100%;height:100%;background:#06090c}@media screen and (min-width:360px){.auto-columns .tabs-bar,.single-column .tabs-bar{margin:10px 10px 0}}@media screen and (max-width:630px){:root .auto-columns .column{flex:auto;width:100%;min-width:0;max-width:none;padding:0}:root .auto-columns .columns-area{flex-direction:column}:root .auto-columns .autosuggest-textarea__textarea,:root .auto-columns .search__input{font-size:16px}}:root .single-column .column{flex:auto;width:100%;min-width:0;max-width:none;padding:0}:root .single-column .columns-area{flex-direction:column}:root .single-column .autosuggest-textarea__textarea,:root .single-column .search__input{font-size:16px}@media screen and (min-width:631px){.auto-columns .columns-area{padding:0}.auto-columns .column{flex:0 0 auto;padding:10px 5px}.auto-columns .column:first-child{padding-left:10px}.auto-columns .column:last-child{padding-right:10px}.auto-columns .columns-area>div .column{padding-left:5px;padding-right:5px}}.multi-columns .columns-area{padding:0}.multi-columns .column{flex:0 0 auto;padding:10px 5px}.multi-columns .column:first-child{padding-left:10px}.multi-columns .column:last-child{padding-right:10px}.multi-columns .columns-area>div .column{padding-left:5px;padding-right:5px}.column-back-button{background:#192432;color:#d8a070;cursor:pointer;flex:0 0 auto;font-size:16px;border:0;text-align:unset;padding:15px;margin:0;z-index:3}.column-back-button:hover{text-decoration:underline}.column-header__back-button{background:#192432;border:0;font-family:inherit;color:#d8a070;cursor:pointer;flex:0 0 auto;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}.column-link{background:#202e3f;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#253549}.column-link__icon{display:inline-block;margin-right:5px}.column-subheading{background:#121a24;color:#3e5a7c;padding:8px 20px;font-size:12px;font-weight:500;text-transform:uppercase;cursor:default}.column-header__wrapper{position:relative;flex:0 0 auto}.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(216,160,112,.23) 0,rgba(216,160,112,0) 60%)}.column-header{display:flex;font-size:16px;background:#192432;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden}.column-header>button{margin:0;border:none;padding:15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header>.column-header__back-button{color:#d8a070}.column-header.active{box-shadow:0 1px 0 rgba(216,160,112,.3)}.column-header.active .column-header__icon{color:#d8a070;text-shadow:0 0 10px rgba(216,160,112,.4)}.column-header:active,.column-header:focus{outline:0}.column{width:330px;position:relative;box-sizing:border-box;display:flex;flex-direction:column;overflow:hidden}.wide .column{flex:auto;min-width:330px;max-width:400px}.column>.scrollable{background:#121a24}.column-header__buttons{height:48px;display:flex;margin-left:0}.column-header__links .text-btn{margin-right:10px}.column-header__button,.column-header__notif-cleaning-buttons button{background:#192432;border:0;color:#9baec8;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover,.column-header__notif-cleaning-buttons button:hover{color:#b2c1d5}.column-header__button.active,.column-header__button.active:hover,.column-header__notif-cleaning-buttons button.active,.column-header__notif-cleaning-buttons button.active:hover{color:#fff;background:#202e3f}.column-header__button:focus,.column-header__notif-cleaning-buttons button:focus{text-shadow:0 0 4px #d3935c}.column-header__notif-cleaning-buttons{display:flex;align-items:stretch;justify-content:space-around}.column-header__notif-cleaning-buttons button{background:transparent;text-align:center;padding:10px 0;white-space:pre-wrap}.column-header__notif-cleaning-buttons b{font-weight:700}.column-header__collapsible-inner.nopad-drawer{padding:0}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#9baec8;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:transparent;border:0;border-top:1px solid #26374d;margin:10px 0}.column-header__collapsible.ncd{transition:none}.column-header__collapsible.ncd.collapsed{max-height:0;opacity:.7}.column-header__collapsible-inner{background:#202e3f;padding:15px}.column-header__setting-btn:hover{color:#9baec8;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__title{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header__icon{display:inline-block;margin-right:5px}.empty-column-indicator,.error-column{color:#3e5a7c;background:#121a24;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#d8a070;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}.single-column.navbar-under .tabs-bar{margin-top:0!important;margin-bottom:-6px!important}@media screen and (max-width:360px){.auto-columns.navbar-under .tabs-bar{margin-top:0!important;margin-bottom:-6px!important}}@media screen and (max-width:360px){.auto-columns.navbar-under .react-swipeable-view-container .columns-area,.single-column.navbar-under .react-swipeable-view-container .columns-area{height:100%!important}}.column-inline-form{padding:7px 5px 7px 15px;display:flex;justify-content:flex-start;align-items:center;background:#192432}.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}.floating-action-button{position:fixed;display:flex;justify-content:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#d59864;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#e0b38c}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#3e5a7c;background:#121a24;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#3e5a7c}.regeneration-indicator__label span{font-size:15px;font-weight:400}.search{position:relative}.search__input{display:block;padding:10px 30px 10px 10px;outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#121a24;color:#9baec8;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#192432}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#d9e1e8;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#fff}.search-results__header{padding:15px 10px;font-size:14px}.search-results__header,.trends__header{color:#3e5a7c;background:#151f2b;border-bottom:1px solid #0b1016;font-weight:500}.trends__header{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 #202e3f}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#3e5a7c;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#9baec8;text-decoration:none;font-size:14px;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:#d9e1e8}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#dfb088!important}.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}.emoji-picker-dropdown__menu{background:#fff;position:absolute;box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px}.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:transparent}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(217,225,232,.4)}.emoji-picker-dropdown__modifiers__menu .emoji-mart-emoji{height:22px}.emoji-mart-emoji span{background-repeat:no-repeat}.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}.emoji-button:active img,.emoji-button:focus img,.emoji-button:hover img{opacity:1;-webkit-filter:none;filter:none}.doodle-modal{width:unset}.doodle-modal__container{background:#d9e1e8;text-align:center;line-height:0}.doodle-modal__container canvas{border:5px solid #d9e1e8}.doodle-modal__action-bar .filler{flex-grow:1;margin:0;padding:0}.doodle-modal__action-bar .doodle-toolbar{line-height:1;display:flex;flex-direction:column;flex-grow:0;justify-content:space-around}.doodle-modal__action-bar .doodle-toolbar.with-inputs label{display:inline-block;width:70px;text-align:right;margin-right:2px}.doodle-modal__action-bar .doodle-toolbar.with-inputs input[type=number],.doodle-modal__action-bar .doodle-toolbar.with-inputs input[type=text]{width:40px}.doodle-modal__action-bar .doodle-toolbar.with-inputs span.val{display:inline-block;text-align:left;width:50px}.doodle-modal__action-bar .doodle-palette{padding-right:0!important;border:1px solid #000;line-height:.2rem;flex-grow:0;background:#fff}.doodle-modal__action-bar .doodle-palette button{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:1rem;height:1rem;margin:0;padding:0;text-align:center;color:#000;text-shadow:0 0 1px #fff;cursor:pointer;box-shadow:inset 0 0 1px hsla(0,0%,100%,.5);border:1px solid #000;outline-offset:-1px}.doodle-modal__action-bar .doodle-palette button.foreground{outline:1px dashed #fff}.doodle-modal__action-bar .doodle-palette button.background{outline:1px dashed red}.doodle-modal__action-bar .doodle-palette button.foreground.background{outline:1px dashed red;border-color:#fff}.drawer{width:300px;box-sizing:border-box;display:flex;flex-direction:column;overflow-y:hidden;padding:10px 5px;flex:none}.drawer:first-child{padding-left:10px}.drawer:last-child{padding-right:10px}@media screen and (max-width:630px){.auto-columns .drawer{flex:auto}}.single-column .drawer{flex:auto}@media screen and (max-width:630px){.auto-columns .drawer,.auto-columns .drawer:first-child,.auto-columns .drawer:last-child,.single-column .drawer,.single-column .drawer:first-child,.single-column .drawer:last-child{padding:0}}.wide .drawer{min-width:300px;max-width:400px;flex:1 1 200px}@media screen and (max-width:630px){:root .auto-columns .drawer{flex:auto;width:100%;min-width:0;max-width:none;padding:0}}:root .single-column .drawer{flex:auto;width:100%;min-width:0;max-width:none;padding:0}.react-swipeable-view-container .drawer{height:100%}.drawer--header{display:flex;flex-direction:row;margin-bottom:10px;flex:none;background:#202e3f;font-size:16px}.drawer--header>*{display:block;box-sizing:border-box;border-bottom:2px solid transparent;padding:15px 5px 13px;height:48px;flex:1 1 auto;color:#9baec8;text-align:center;text-decoration:none;cursor:pointer}.drawer--header a{transition:background .1s ease-in}.drawer--header a:focus,.drawer--header a:hover{outline:none;background:#17212e;transition:background .2s ease-out}.drawer--search{position:relative;margin-bottom:10px;flex:none}@media screen and (max-width:360px){.auto-columns .drawer--search,.single-column .drawer--search{margin-bottom:0}}@media screen and (max-width:630px){.auto-columns .drawer--search{font-size:16px}}.single-column .drawer--search{font-size:16px}.drawer--search input{display:block;box-sizing:border-box;margin:0;border:none;padding:10px 30px 10px 10px;width:100%;height:36px;outline:0;color:#9baec8;background:#121a24;font-size:14px;font-family:inherit;line-height:16px}.drawer--search input:focus{outline:0;background:#192432}.drawer--search>.icon{display:block;position:absolute;top:10px;right:10px;width:18px;height:18px;color:#d9e1e8;font-size:18px;line-height:18px;z-index:2}.drawer--search>.icon .fa{display:inline-block;position:absolute;top:0;bottom:0;left:0;right:0;opacity:0;cursor:default;pointer-events:none;transition:all .1s linear}.drawer--search>.icon .fa-search{opacity:.3;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.drawer--search>.icon .fa-times-circle{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);cursor:pointer}.drawer--search>.icon .fa-times-circle:hover{color:#fff}.drawer--search.active>.icon .fa-search{opacity:0;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.drawer--search.active>.icon .fa-times-circle{opacity:.3;pointer-events:auto;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.drawer--search--popout{box-sizing:border-box;margin-top:10px;border-radius:4px;padding:10px 14px 14px;box-shadow:2px 4px 15px rgba(0,0,0,.4);color:#9baec8;background:#fff}.drawer--search--popout h4{margin-bottom:10px;color:#9baec8;font-size:13px;font-weight:500;text-transform:uppercase}.drawer--search--popout ul{margin-bottom:10px}.drawer--search--popout li{padding:4px 0}.drawer--search--popout em{color:#121a24;font-weight:500}.drawer--account{padding:10px;color:#9baec8}.drawer--account>a{color:inherit;text-decoration:none}.drawer--account>.avatar{float:left;margin-right:10px}.drawer--account>.acct{display:block;color:#d9e1e8;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.drawer--results{position:absolute;top:0;bottom:0;left:0;right:0;padding:0;background:#121a24;overflow-x:hidden;overflow-y:auto}.drawer--results>header{border-bottom:1px solid #0b1016;padding:15px 10px;color:#3e5a7c;background:#151f2b;font-size:14px;font-weight:500}.drawer--results>section{background:#121a24;margin-bottom:20px}.drawer--results>section h5{position:relative}.drawer--results>section h5:before{content:\"\";display:block;position:absolute;left:0;right:0;top:50%;width:100%;height:0;border-top:1px solid #202e3f}.drawer--results>section h5 span{display:inline-block;background:#121a24;color:#9baec8;font-size:14px;font-weight:500;padding:10px;position:relative;z-index:1;cursor:default}.drawer--results>section .account:last-child,.drawer--results>section>div:last-child .status{border-bottom:0}.drawer--results>section>.hashtag{display:block;padding:10px;color:#d9e1e8;text-decoration:none}.drawer--results>section>.hashtag:active,.drawer--results>section>.hashtag:focus,.drawer--results>section>.hashtag:hover{color:#e6ebf0;text-decoration:underline}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#283a50;flex-direction:column;overflow-y:auto;width:100%;height:100%}.drawer__inner.darker{background:#121a24}.drawer__inner__mastodon{background:#283a50 url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;flex:1;min-height:47px}.drawer__inner__mastodon>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}.drawer__inner__mastodon>.mastodon{display:block;width:100%;height:100%;border:none;cursor:inherit}.pseudo-drawer{background:#283a50;font-size:13px;text-align:left}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.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:#9baec8;border:0;width:100%;height:100%}.media-spoiler:active,.media-spoiler:focus,.media-spoiler:hover{color:#b5c3d6}.status__content>.media-spoiler{margin-top:15px}.media-spoiler.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:500}.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}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{height:100%;display:flex;flex-direction:column}.media-gallery__audio span{text-align:center;color:#9baec8;display:flex;height:100%;align-items:center}.media-gallery__audio audio,.media-gallery__audio span p{width:100%}.media-gallery{box-sizing:border-box;margin-top:8px;overflow:hidden;border-radius:4px;position:relative;width:100%;height:110px}.media-gallery.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.media-gallery__item{border:none;box-sizing:border-box;display:block;float:left;position:relative;border-radius:4px;overflow:hidden}.full-width .media-gallery__item{border-radius:0}.media-gallery__item.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item.letterbox{background:#000}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#d9e1e8;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain}.media-gallery__item-thumbnail:not(.letterbox),.media-gallery__item-thumbnail img:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%;display:flex;justify-content:center}.media-gallery__item-gifv-thumbnail{cursor:zoom-in;height:100%;width:100%;position:relative;z-index:1;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain}.media-gallery__item-gifv-thumbnail:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.media-gallery__item-thumbnail-label{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute}.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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#d8a070}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.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%}.video-player:focus{outline:0}.detailed-status .video-player{width:100%;height:100%}.video-player.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.video-player video{max-width:100vw;max-height:80vh;z-index:1;position:relative}.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%;-webkit-transform:translateY(-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:#9baec8;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:#b2c1d5}.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:transparent;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:#e1b590}.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:#e1b590;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.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:#e1b590}.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:#e1b590;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.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.sensitive-info{display:flex;flex-direction:row;align-items:center;position:absolute;top:4px;left:4px;z-index:100}.sensitive-marker{margin:0 3px;border-radius:2px;padding:2px 6px;color:hsla(0,0%,100%,.8);background:rgba(0,0,0,.5);font-size:12px;line-height:15px;text-transform:uppercase;opacity:.9;transition:opacity .1s ease}.media-gallery:hover .sensitive-marker{opacity:1}.list-editor{background:#121a24;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#283a50;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__pager{height:50vh}.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{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.list-adder{background:#121a24;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#283a50}.list-adder__lists{background:#283a50;height:50vh;border-radius:0 0 8px 8px;overflow-y:auto}.list-adder .list{padding:10px;border-bottom:1px solid #202e3f}.list-adder .list__wrapper{display:flex}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.emoji-mart{font-size:13px;display:inline-block;color:#121a24}.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 #c0cdd9}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#d9e1e8}.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:#3e5a7c;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:#37506f}.emoji-mart-anchor-selected{color:#d8a070}.emoji-mart-anchor-selected:hover{color:#d49560}.emoji-mart-anchor-selected .emoji-mart-anchor-bar{bottom:0}.emoji-mart-anchor-bar{position:absolute;bottom:-3px;left:0;width:100%;height:3px;background-color:#d59864}.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:rgba(217,225,232,.3);color:#121a24;border:1px solid #d9e1e8;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(217,225,232,.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:#9baec8}.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}.glitch.local-settings{position:relative;display:flex;flex-direction:row;background:#d9e1e8;color:#121a24;border-radius:8px;height:80vh;width:80vw;max-width:740px;max-height:450px;overflow:hidden}.glitch.local-settings label,.glitch.local-settings legend{display:block;font-size:14px}.glitch.local-settings .boolean label,.glitch.local-settings .radio_buttons label{position:relative;padding-left:28px;padding-top:3px}.glitch.local-settings .boolean label input,.glitch.local-settings .radio_buttons label input{position:absolute;left:0;top:0}.glitch.local-settings span.hint{display:block;color:#3e5a7c}.glitch.local-settings h1{font-size:18px;font-weight:500;line-height:24px;margin-bottom:20px}.glitch.local-settings h2{font-size:15px;font-weight:500;line-height:20px;margin-top:20px;margin-bottom:10px}.glitch.local-settings__navigation__item{display:block;padding:15px 20px;color:inherit;background:#f2f5f7;border-bottom:1px solid #d9e1e8;cursor:pointer;text-decoration:none;outline:none;transition:background .3s}.glitch.local-settings__navigation__item .text-icon-button{color:inherit;transition:unset}.glitch.local-settings__navigation__item:hover{background:#d9e1e8}.glitch.local-settings__navigation__item.active{background:#d8a070;color:#fff}.glitch.local-settings__navigation__item.close,.glitch.local-settings__navigation__item.close:hover{background:#df405a;color:#fff}.glitch.local-settings__navigation{background:#f2f5f7;width:212px;font-size:15px;line-height:20px;overflow-y:auto}.glitch.local-settings__page{display:block;flex:auto;padding:15px 20px;width:360px;overflow-y:auto}.glitch.local-settings__page__item{margin-bottom:2px}.glitch.local-settings__page__item.radio_buttons,.glitch.local-settings__page__item.string{margin-top:10px;margin-bottom:10px}@media screen and (max-width:630px){.glitch.local-settings__navigation{width:40px;flex-shrink:0}.glitch.local-settings__navigation__item{padding:10px}.glitch.local-settings__navigation__item span:last-of-type{display:none}}.error-boundary h1{font-size:26px;line-height:36px;font-weight:400;margin-bottom:8px}.error-boundary p{color:#fff;font-size:15px;line-height:20px}.error-boundary p a{color:#fff;text-decoration:underline}.error-boundary p ul{list-style:disc;margin-left:0;padding-left:1em}.error-boundary p textarea.web_app_crash-stacktrace{width:100%;resize:none;white-space:pre;font-family:monospace,monospace}.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:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8;padding-right:10px}.rich-formatting a{color:#d8a070;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.rich-formatting li a,.rich-formatting p a{color:#d8a070;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.rich-formatting h1{font-family:sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h1 small{font-family:sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.rich-formatting h2{font-size:22px;line-height:26px}.rich-formatting h2,.rich-formatting h3{font-family:sans-serif;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h3{font-size:18px;line-height:24px}.rich-formatting h4{font-size:16px}.rich-formatting h4,.rich-formatting h5{font-family:sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h5{font-size:14px}.rich-formatting h6{font-family:sans-serif;font-size:12px;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(62,90,124,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#0b1016;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: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:#d9e1e8}.information-board__section strong{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:#040609;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#9baec8;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #192432;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#7a93b6}.information-board .panel .panel-header a{text-decoration:none}.information-board .owner{text-align:center}.information-board .owner .avatar{width:80px;height:80px;background-size:80px 80px;margin:0 auto 15px}.information-board .owner .avatar img{display:block;width:80px;height:80px;border-radius:48px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.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:#9baec8}.landing-page .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:100%}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:flex;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(62,90,124,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#121a24;font-size:12px;font-weight:500;color:#9baec8;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.landing-page li a,.landing-page p a{color:#d8a070;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#9baec8;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#d8a070;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.landing-page h1{font-family:sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h1 small{font-family:sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.landing-page h2{font-size:22px;line-height:26px}.landing-page h2,.landing-page h3{font-family:sans-serif;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h3{font-size:18px;line-height:24px}.landing-page h4{font-size:16px}.landing-page h4,.landing-page h5{font-family:sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h5{font-size:14px}.landing-page h6{font-family:sans-serif;font-size:12px;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(62,90,124,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#121a24;background:linear-gradient(150deg,#202e3f,#121a24);position:relative}.landing-page .header-wrapper.compact{background:#121a24;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .header-wrapper.compact .hero .heading a{color:#d8a070;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:flex;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:flex;justify-content:center;align-items:center;color:#9baec8;text-decoration:none;padding:12px 16px;line-height:32px;font-family:sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#d9e1e8}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#0b1016;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:flex;flex-direction:column;justify-content:space-between}.landing-page .about-short{background:#0b1016;padding:50px 0 30px;font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .about-short a{color:#d8a070;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#0b1016;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:wrap;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 .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 #mastodon-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#121a24;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:#d9e1e8}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#9baec8}.landing-page__short-description h1 small span{color:#d9e1e8}.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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#040609}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#fff;width:100%;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#fff;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#d9e1e8;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#3e5a7c;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:30px 0 40px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:flex;padding:10px 0;justify-content:space-between}.landing-page .features-list .features-list__row .visual{flex:0 0 auto;display:flex;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#9baec8;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#9baec8}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#3e5a7c}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#3e5a7c}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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 .header .links{padding-top:15px;background:#0b1016}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:flex;flex-flow:row wrap;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#040609;width:100%;border-radius:0;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:flex;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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 #121a24;text-align:left;background:#0b1016}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #121a24;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:#121a24}.table a{color:#d8a070;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:transparent}.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:#121a24;border-top:1px solid #040609;border-bottom:1px solid #040609}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #040609}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #040609}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:monospace,monospace}button.table-action-link{background:transparent;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:#9baec8;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__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 #040609;background:#121a24;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #040609;border-top:0;background:#0b1016}.batch-table__row:hover{background:#0f151d}.batch-table__row:nth-child(2n){background:#121a24}.batch-table__row:nth-child(2n):hover{background:#151f2b}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table .status__content{padding-top:0}.batch-table .status__content strong{font-weight:700}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#121a24;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:#9baec8;text-decoration:none;transition:all .2s linear;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:#0a0e13;transition:all .1s linear}.admin-wrapper .sidebar ul a.selected{background:#0f151d;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#0b1016;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:#d8a070;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#ddad84}.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:#d9e1e8;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #202e3f;margin-bottom:40px}.admin-wrapper .content h3{color:#d9e1e8;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:#9baec8;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #202e3f}.admin-wrapper .content h6{font-size:16px;color:#d9e1e8;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#fff;font-weight:500}.admin-wrapper .content .directory__tag a{box-shadow:none}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#fff;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#d9e1e8;margin-bottom:20px}.admin-wrapper .content>p strong{color:#fff;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(62,90,124,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#9baec8}.admin-wrapper .content .muted-hint a{color:#d8a070}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;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:#9baec8;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #121a24}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #1b2635}.filters .filter-subset a.selected{color:#d8a070;border-bottom:2px solid #d8a070}.flavour-screen{display:block;margin:10px auto;max-width:100%}.flavour-description{display:block;font-size:16px;margin:10px 0}.flavour-description>p{margin:10px 0}.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:#d9e1e8}.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:#d8a070;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:#121a24;color:#9baec8;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:#3e5a7c}.log-entry__extras{background:#1c2938;border-radius:0 0 4px 4px;padding:10px;color:#9baec8;font-family:monospace,monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#3e5a7c}.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:#d8a070}.log-entry .target,.log-entry .username,.log-entry a{color:#d9e1e8;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#d9e1e8}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#d9e1e8}.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 #d8a070}.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:#9baec8}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#3e5a7c}.report-card{background:#121a24;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:#9baec8;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:#b5c3d6}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #0b1016}.report-card__summary__item:hover{background:#151f2b}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#9baec8}.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:#3e5a7c;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:#9baec8}.one-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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)}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:-15px;margin-right:0}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 .setting-meta__label{float:left}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 .activity-stream .detailed-status.light .detailed-status__display-name>div{float:right;margin-right:0;margin-left:10px}body.rtl .activity-stream .detailed-status.light .detailed-status__meta span>span{margin-left:0;margin-right:6px}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-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(1,1,2,0),#010102)}body.rtl .simple_form select{background:#010102 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 #mastodon-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}.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:#192432;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:#202e3f}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#fff;font-family:sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#9baec8;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:#d9e1e8;font-weight:500;text-decoration:none}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/glitch/common.js b/priv/static/packs/flavours/glitch/common.js
new file mode 100644
index 000000000..5fed8624c
Binary files /dev/null and b/priv/static/packs/flavours/glitch/common.js differ
diff --git a/priv/static/packs/flavours/glitch/common.js.map b/priv/static/packs/flavours/glitch/common.js.map
new file mode 100644
index 000000000..6d8e8a44d
Binary files /dev/null and b/priv/static/packs/flavours/glitch/common.js.map differ
diff --git a/priv/static/packs/flavours/glitch/embed.js b/priv/static/packs/flavours/glitch/embed.js
new file mode 100644
index 000000000..7b34ec5f2
Binary files /dev/null and b/priv/static/packs/flavours/glitch/embed.js differ
diff --git a/priv/static/packs/flavours/glitch/embed.js.map b/priv/static/packs/flavours/glitch/embed.js.map
new file mode 100644
index 000000000..ae93040e8
Binary files /dev/null and b/priv/static/packs/flavours/glitch/embed.js.map differ
diff --git a/priv/static/packs/flavours/glitch/home.js b/priv/static/packs/flavours/glitch/home.js
new file mode 100644
index 000000000..f74125940
Binary files /dev/null and b/priv/static/packs/flavours/glitch/home.js differ
diff --git a/priv/static/packs/flavours/glitch/home.js.map b/priv/static/packs/flavours/glitch/home.js.map
new file mode 100644
index 000000000..0330128a5
Binary files /dev/null and b/priv/static/packs/flavours/glitch/home.js.map differ
diff --git a/priv/static/packs/flavours/glitch/public.js b/priv/static/packs/flavours/glitch/public.js
new file mode 100644
index 000000000..7e00d3f9e
Binary files /dev/null and b/priv/static/packs/flavours/glitch/public.js differ
diff --git a/priv/static/packs/flavours/glitch/public.js.map b/priv/static/packs/flavours/glitch/public.js.map
new file mode 100644
index 000000000..ee548db0e
Binary files /dev/null and b/priv/static/packs/flavours/glitch/public.js.map differ
diff --git a/priv/static/packs/flavours/glitch/share.js b/priv/static/packs/flavours/glitch/share.js
new file mode 100644
index 000000000..fa8e6abe8
Binary files /dev/null and b/priv/static/packs/flavours/glitch/share.js differ
diff --git a/priv/static/packs/flavours/glitch/share.js.map b/priv/static/packs/flavours/glitch/share.js.map
new file mode 100644
index 000000000..3052bdfc8
Binary files /dev/null and b/priv/static/packs/flavours/glitch/share.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/about.css b/priv/static/packs/flavours/vanilla/about.css
new file mode 100644
index 000000000..c48212d74
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/about.css differ
diff --git a/priv/static/packs/flavours/vanilla/about.css.map b/priv/static/packs/flavours/vanilla/about.css.map
new file mode 100644
index 000000000..cddc9aea7
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/about.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"flavours/vanilla/about.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/about.js b/priv/static/packs/flavours/vanilla/about.js
new file mode 100644
index 000000000..7d53966f1
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/about.js differ
diff --git a/priv/static/packs/flavours/vanilla/about.js.map b/priv/static/packs/flavours/vanilla/about.js.map
new file mode 100644
index 000000000..5231d22bb
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/about.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/admin.css b/priv/static/packs/flavours/vanilla/admin.css
new file mode 100644
index 000000000..a9cbb57ec
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/admin.css differ
diff --git a/priv/static/packs/flavours/vanilla/admin.css.map b/priv/static/packs/flavours/vanilla/admin.css.map
new file mode 100644
index 000000000..08e10cc71
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/admin.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"flavours/vanilla/admin.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/admin.js b/priv/static/packs/flavours/vanilla/admin.js
new file mode 100644
index 000000000..98d2e354b
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/admin.js differ
diff --git a/priv/static/packs/flavours/vanilla/admin.js.map b/priv/static/packs/flavours/vanilla/admin.js.map
new file mode 100644
index 000000000..7edf94282
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/admin.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/common.css b/priv/static/packs/flavours/vanilla/common.css
new file mode 100644
index 000000000..16d891c03
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/common.css differ
diff --git a/priv/static/packs/flavours/vanilla/common.css.map b/priv/static/packs/flavours/vanilla/common.css.map
new file mode 100644
index 000000000..700ad474c
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/styles/application.scss"],"names":[],"mappings":"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","file":"flavours/vanilla/common.css","sourcesContent":["@charset \"UTF-8\";@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:\"mastodon-font-monospace\";src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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:#192432 transparent}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#192432;border:0 #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#1c2938}::-webkit-scrollbar-thumb:active{background:#192432}::-webkit-scrollbar-track{border:0 #fff;border-radius:0;background:rgba(0,0,0,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#121a24}::-webkit-scrollbar-corner{background:transparent}body{font-family:\"mastodon-font-sans-serif\",sans-serif;background:#040609;font-size:13px;line-height:18px;font-weight:400;color:#fff;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,\"mastodon-font-sans-serif\",sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#121a24}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#121a24}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:#192432;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#0b1016;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#9baec8;background:#121a24;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:center;justify-content:center;outline:0!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:400px){.logo-container{margin:30px auto 20px}}.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:mastodon-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:#d9e1e8;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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#202e3f;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;box-shadow:none;z-index:110}}.public-layout .header>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:stretch;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:stretch;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#26374d}.public-layout .header .nav-link{display:flex;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#9baec8;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}@media screen and (max-width:550px){.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#2d415a;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:#344b68}.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:#d9e1e8}.public-layout .public-account-header.inactive .logo-button svg path:last-child{fill:#d9e1e8}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#000}.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:#192432;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 #192432;background:#040609}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#192432;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:#9baec8}}.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:#9baec8;padding:10px;border-right:1px solid #192432;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 #9baec8;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #d8a070;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#d9e1e8}.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:mastodon-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:transparent;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #26374d}.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:#9baec8}.public-layout .public-account-header__extra__links a{display:inline-block;color:#9baec8;text-decoration:none;padding:15px}.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:#202e3f;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:#e1b590}.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:#9baec8}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#3e5a7c;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 #202e3f}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #202e3f}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#121a24}.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:#192432}}.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{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#4c6d98}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#4c6d98}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#9baec8}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#4c6d98}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#4c6d98}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#5377a5}.compact-header h1{font-size:24px;line-height:28px;color:#9baec8;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:#d9e1e8}.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%;height:167px;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:#121a24;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#9baec8;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:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.hero-widget__text a{color:#d9e1e8;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:#9baec8}.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,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;min-height:100%}.contact-widget{font-size:15px;color:#9baec8;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:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2);color:#d9e1e8;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:#9baec8}.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:#9baec8;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#202e3f;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:#9baec8}@media screen and (max-width:415px){.page-header{margin-top:0;background:#192432}.page-header h1{font-size:24px}}.directory{background:#121a24;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{display:flex;align-items:center;justify-content:space-between;background:#121a24;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:#202e3f}.directory__tag.active a{background:#d8a070;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:#9baec8}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#9baec8}.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:#d8a070}.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;border:2px solid #121a24}.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 thead th{text-align:center;text-transform:uppercase;color:#9baec8;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 #202e3f}.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:#9baec8;font-weight:400;font-size:14px}@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 #2d415a}}.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:#9baec8}.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:#d8a070}.notice-widget a:active,.notice-widget a:focus,.notice-widget a:hover{text-decoration:underline}code{font-family:\"mastodon-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 .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:#9baec8}.simple_form .hint a{color:#d8a070}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#000}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#9baec8}.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{-webkit-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:#010102;border:1px solid #000;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,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{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:#d8a070;background:#040609}.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 .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:#d8a070;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:#ddad84}.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:#d3935c}.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:#010102 url(\"data:image/svg+xml;utf8,
\") no-repeat right 8px center/auto 16px;border:1px solid #000;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:#3e5a7c;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(1,1,2,0),#010102)}.flash-message{background:#202e3f;color:#9baec8;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 p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:\"mastodon-font-monospace\",monospace;background:#121a24;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:#192432}.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:#9baec8;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:#d8a070;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#e1b590}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#9baec8}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#d9e1e8;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:#d9e1e8;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:#9baec8}.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:\"mastodon-font-monospace\",monospace}.input-copy{background:#010102;border:1px solid #000;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:transparent;border:0;padding:10px;font-size:14px;font-family:\"mastodon-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}.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:#202e3f}.card__img{height:130px;position:relative;background:#000;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:#192432;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:#040609}.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:#9baec8;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:#121a24;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#d9e1e8}.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:#233346}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2);color:#9baec8;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:#d9e1e8;background-color:rgba(217,225,232,.1);border:1px solid rgba(217,225,232,.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:#26374d 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 #26374d}.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:#d9e1e8;background:rgba(4,6,9,.5)}.account__header__fields dd{flex:1 1 auto;color:#9baec8}.account__header__fields a{color:#d8a070;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}.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:#121a24}.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:#202e3f}.button.logo-button{flex:0 auto;font-size:14px;background:#d8a070;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}.button.logo-button svg path:first-child{fill:#fff}.button.logo-button svg path:last-child{fill:#d8a070}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#e3bb98}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#e3bb98}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button.disabled i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#d8a070;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#e3bb98;transition:all .2s ease-out}.button--destructive{transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;transition:none}.button:disabled{background-color:#9baec8;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#121a24;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#a8b9cf}.button.button-alternative-2{background:#3e5a7c}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#45648a}.button.button-secondary{color:#9baec8;background:transparent;padding:3px 15px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#a8b9cf;color:#a8b9cf}.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:#3e5a7c;border:none;background:transparent;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#4a6b94;transition:color .2s ease-out}.icon-button.disabled{color:#283a50;cursor:default}.icon-button.active{color:#d8a070}.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:#3e5a7c}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#324965}.icon-button.inverted.disabled{color:#4a6b94}.icon-button.inverted.active{color:#d8a070}.icon-button.inverted.active.disabled{color:#e6c3a4}.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:#3e5a7c;border:none;background:transparent;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:#324965;transition:color .2s ease-out}.text-icon-button.disabled{color:#6b8cb5;cursor:default}.text-icon-button.active{color:#d8a070}.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}.dropdown-menu,.invisible{position:absolute}.invisible{font-size:0;line-height:0;display:inline-block;width:0;height:0}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:\"…\"}.compose-form{padding:10px}.compose-form .compose-form__warning{color:#121a24;margin-bottom:10px;background:#9baec8;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:#121a24;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:#3e5a7c;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 .compose-form__autosuggest-wrapper{position:relative}.compose-form .compose-form__autosuggest-wrapper .emoji-picker-dropdown{position:absolute;right:5px;top:5px}.compose-form .autosuggest-textarea,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:47px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;box-sizing:border-box;width:100%;margin:0;color:#121a24;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:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{height:100px!important;resize:vertical}}.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:#d9e1e8;border-radius:0 0 4px 4px;color:#121a24;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:#b9c8d5}.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:#3e5a7c}.compose-form .compose-form__modifiers{color:#121a24;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;padding:5px;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__upload{flex:1 1 0;min-width:40%;margin:5px}.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:#d9e1e8;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:#eff3f5}.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 input{background:transparent;color:#d9e1e8;border:0;padding:0;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description input:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:.75;color:#d9e1e8}.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:140px;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}.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:flex}.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:\"mastodon-font-sans-serif\",sans-serif;font-size:14px;font-weight:600;color:#3e5a7c}.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}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.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:#9baec8;padding:10px}.reply-indicator__header{margin-bottom:5px;overflow:hidden}.reply-indicator__cancel{float:right;line-height:24px}.reply-indicator__display-name{color:#121a24;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;white-space:pre-wrap;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}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:0}.reply-indicator__content a,.status__content a{color:#d8a070;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:#4a6b94}.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:#3e5a7c}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#3e5a7c}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#4a6b94;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:300px}.status__content__read-more-button{display:block;font-size:15px;line-height:20px;color:#e1b590;border:0;background:transparent;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:transparent;border:0;color:#121a24;font-weight:700;font-size:11px;padding:0 6px;text-transform:uppercase;line-height:20px;cursor:pointer;vertical-align:middle}.status__wrapper--filtered{color:#3e5a7c;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 #202e3f}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#192432}.focusable:focus .status.status-direct{background:#26374d}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#202e3f}.status{padding:8px 10px 8px 68px;position:relative;min-height:54px;border-bottom:1px solid #202e3f;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:#202e3f;border-bottom-color:#26374d}.status.light .status__relative-time{color:#9baec8}.status.light .display-name strong,.status.light .status__display-name{color:#121a24}.status.light .display-name span{color:#9baec8}.status.light .status__content{color:#121a24}.status.light .status__content a{color:#d8a070}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#547aa9}.notification__relative_time,.status__relative-time{color:#3e5a7c;float:right;font-size:14px}.status__display-name{color:#3e5a7c}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px}.status-check-box{border-bottom:1px solid #d9e1e8;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:#3e5a7c;padding:8px 0 2px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#3e5a7c}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:8px}.status__action-bar__counter{display:inline-flex;margin-right:11px;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:#3e5a7c}.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:#192432;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:#3e5a7c;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#121a24;font-size:14px}.reply-indicator__content a{color:#3e5a7c}.domain{padding:10px;border-bottom:1px solid #202e3f}.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;border-bottom:1px solid #202e3f}.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:#9baec8;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.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:4px;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:4px;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:4px;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:18px;padding:10px;white-space:nowrap}.account__header{flex:0 0 auto;background:#192432;text-align:center;background-size:cover;background-position:50%;position:relative}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#d9e1e8}.account__header>div{background:rgba(25,36,50,.9);padding:20px 10px}.account__header .account__header__content{color:#d9e1e8}.account__header .account__header__display-name{color:#fff;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#d8a070;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.account__disclaimer{padding:10px;border-top:1px solid #202e3f;color:#3e5a7c}.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__header__content{color:#9baec8;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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;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 #202e3f;padding:10px 0;border-bottom:4px solid transparent}.account__action-bar__tab.active{border-bottom:4px solid #d8a070}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#9baec8}.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__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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:#d9e1e8;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}.muted .status__content,.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#3e5a7c}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#3e5a7c;color:#121a24}.muted a.status__content__spoiler-link:hover{background:#4a6b94;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#9baec8;font-size:15px;line-height:22px;position:relative}.notification__message .fa{color:#d8a070}.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;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.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/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:#9baec8}.navigation-bar strong{color:#d9e1e8}.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;-webkit-transform:scaleX(0) translate(-100%);transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;-webkit-transform:scale(1) translate(0);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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;height:0}.dropdown-menu{background:#d9e1e8;padding:4px 0;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4);z-index:9999}.dropdown-menu ul{list-style:none}.dropdown-menu.left{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.dropdown-menu.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.dropdown-menu.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.dropdown-menu.right{-webkit-transform-origin:0 50%;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:#d9e1e8}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-7px;border-width:5px 7px 0;border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-7px;border-width:0 7px 5px;border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#d9e1e8}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#121a24;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#d8a070;color:#d9e1e8;outline:0}.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:#d9e1e8;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:#d9e1e8;color:#121a24;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:#d8a070;color:#d9e1e8}.dropdown__icon{vertical-align:middle}.columns-area{display:flex;flex:1 1 auto;flex-direction:row;justify-content:flex-start;overflow-x:auto;position:relative}.columns-area.unscrollable{overflow-x:hidden}@media screen and (min-width:360px){.columns-area{padding:10px}.react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.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>.scrollable{background:#121a24;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.ui{flex:0 0 auto;flex-direction:column;width:100%;height:100%;background:#06090c}.drawer,.ui{display:flex}.drawer{width:330px;box-sizing:border-box;flex-direction:column;overflow-y:hidden}.drawer__tab{display:block;flex:1 1 auto;padding:15px 5px 13px;color:#9baec8;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:360px){.tabs-bar{margin:10px 10px 0}.getting-started__trends,.search{margin-bottom:10px}.getting-started__panel{margin:10px 0}.column,.drawer{min-width:330px}}@media screen and (max-width:630px){.column,.drawer{width:100%;padding:0}.columns-area{flex-direction:column}.autosuggest-textarea__textarea,.search__input{font-size:16px}}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{flex:1 1 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}}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#283a50;flex-direction:column;overflow-y:auto;width:100%;height:100%;border-radius:2px}.drawer__inner.darker{background:#121a24}.drawer__inner__mastodon{background:#283a50 url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;flex:1;min-height:47px}.drawer__inner__mastodon>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}.pseudo-drawer{background:#283a50;font-size:13px;text-align:left}.drawer__header{flex:0 0 auto;font-size:16px;background:#202e3f;margin-bottom:10px;display:flex;flex-direction:row;border-radius:2px}.drawer__header a{transition:background .1s ease-in}.drawer__header a:hover{background:#17212e;transition:background .2s ease-out}.tabs-bar{display:flex;background:#202e3f;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;flex:1 1 auto;padding:15px 10px;color:#fff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #202e3f;transition:all 50ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #d8a070;color:#d8a070}@media screen and (min-width:631px){.tabs-bar__link:active,.tabs-bar__link:focus,.tabs-bar__link:hover{background:#2a3c54}}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width:600px){.tabs-bar__link span{display:inline}}@media screen and (min-width:631px){.tabs-bar{display:none}}.scrollable{overflow-y:scroll;overflow-x:hidden;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}.scrollable--flex{display:flex;flex-direction:column}.scrollable__append{flex:1 1 auto;position:relative;min-height:120px}@supports (display:grid){.scrollable.fullscreen{contain:none}}.column-back-button{background:#192432;color:#d8a070;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:#192432;border:0;font-family:inherit;color:#d8a070;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:rgba(0,0,0,0);-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:#121a24;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#010102}.react-toggle--checked .react-toggle-track{background-color:#d8a070}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#e3bb98}.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{transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #121a24;border-radius:50%;background-color:#fafafa;box-sizing:border-box;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#d8a070}.column-link{background:#202e3f;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#253549}.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:#121a24}.column-subheading{color:#3e5a7c;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#121a24}.flex-spacer{flex:1 1 auto}.getting-started{color:#3e5a7c;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.getting-started__footer,.getting-started__panel,.getting-started__wrapper{height:-webkit-min-content;height:-moz-min-content;height:min-content}.getting-started__footer,.getting-started__panel{padding:20px 10px 10px;flex-grow:0}.getting-started__footer ul,.getting-started__panel ul{margin-bottom:10px}.getting-started__footer ul li,.getting-started__panel ul li{display:inline}.getting-started__footer p,.getting-started__panel p{font-size:13px}.getting-started__footer p a,.getting-started__panel p a{color:#3e5a7c;text-decoration:underline}.getting-started__footer a,.getting-started__panel a{text-decoration:none;color:#9baec8}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover,.getting-started__panel a:active,.getting-started__panel a:focus,.getting-started__panel a:hover{text-decoration:underline}.getting-started__footer,.getting-started__wrapper{color:#3e5a7c}.getting-started__trends{background:#121a24;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}}.getting-started__scrollable{max-height:100%;overflow-y:auto}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#202e3f;border:1px solid #0b1016}.setting-text{color:#9baec8;background:transparent;border:none;border-bottom:2px solid #9baec8;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:#d8a070}@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%}.reduce-motion button.icon-button i.fa-retweet{color:#3e5a7c;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#d8a070}.status-card{display:flex;font-size:14px;border:1px solid #202e3f;border-radius:4px;color:#3e5a7c;margin-top:14px;text-decoration:none;overflow:hidden}.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:4px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#202e3f}.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:#9baec8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#9baec8}.status-card__host{display:block;margin-top:5px;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__image{flex:0 0 100px;background:#202e3f;position:relative}.status-card__image>.fa{font-size:21px;position:absolute;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:50%;left:50%;-webkit-transform:translate(-50%,-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{border-color:#192432}.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 60px}a.status-card.compact:hover{background-color:#192432}.status-card__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#3e5a7c;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:#151f2b}.load-gap{border-bottom:1px solid #202e3f}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#3e5a7c;background:#121a24;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#3e5a7c}.regeneration-indicator__label span{font-size:15px;font-weight:400}.column-header__wrapper{position:relative;flex:0 0 auto}.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(216,160,112,.23) 0,rgba(216,160,112,0) 60%)}.column-header{display:flex;font-size:16px;background:#192432;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden;border-top-left-radius:2px;border-top-right-radius:2px}.column-header>button{margin:0;border:none;padding:15px 0 15px 15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header>.column-header__back-button{color:#d8a070}.column-header.active{box-shadow:0 1px 0 rgba(216,160,112,.3)}.column-header.active .column-header__icon{color:#d8a070;text-shadow:0 0 10px rgba(216,160,112,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:flex}.column-header__links .text-btn{margin-right:10px}.column-header__button{background:#192432;border:0;color:#9baec8;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover{color:#b2c1d5}.column-header__button.active,.column-header__button.active:hover{color:#fff;background:#202e3f}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#9baec8;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:transparent;border:0;border-top:1px solid #26374d;margin:10px 0}.column-header__collapsible-inner{background:#202e3f;padding:15px}.column-header__setting-btn:hover{color:#9baec8;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}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#3e5a7c;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #3e5a7c;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:#3e5a7c}29%{background-color:#3e5a7c}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:#3e5a7c}29%{background-color:#3e5a7c}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:#9baec8;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:#b5c3d6}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.modal-container--preloader{background:#202e3f}.account--panel{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;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:#202e3f;padding:15px}.column-settings__section{color:#9baec8;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__section .column-settings__hashtag-select__control{outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#121a24;color:#9baec8;font-size:14px;margin:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner{border:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner,.column-settings__section .column-settings__hashtag-select__control:active,.column-settings__section .column-settings__hashtag-select__control:focus{outline:0!important}.column-settings__section .column-settings__hashtag-select__control:focus{background:#192432}@media screen and (max-width:600px){.column-settings__section .column-settings__hashtag-select__control{font-size:16px}}.column-settings__section .column-settings__hashtag-select__multi-value{background:#202e3f}.column-settings__section .column-settings__hashtag-select__input,.column-settings__section .column-settings__hashtag-select__multi-value__label{color:#9baec8}.column-settings__section .column-settings__hashtag-select__dropdown-indicator,.column-settings__section .column-settings__hashtag-select__indicator-separator{display:none}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#fff;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:rgba(0,0,0,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.setting-toggle{display:block;line-height:24px}.setting-toggle__label{color:#9baec8;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.empty-column-indicator,.error-column{color:#3e5a7c;background:#121a24;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#d8a070;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{-webkit-transform-origin:center center;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{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{-webkit-transform-origin:50% 100%;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}.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:transparent}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(217,225,232,.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:#121a24;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#d9e1e8;font-size:18px;font-weight:500;border:2px dashed #3e5a7c;border-radius:4px}.upload-progress{padding:10px;color:#3e5a7c;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:#3e5a7c;position:relative;margin-top:5px}.upload-progress__tracker{position:absolute;left:0;top:0;height:6px;background:#d8a070;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}.privacy-dropdown__dropdown.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.privacy-dropdown__option{color:#121a24;padding:10px;cursor:pointer;display:flex}.privacy-dropdown__option.active,.privacy-dropdown__option:hover{background:#d8a070;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:#dcab80}.privacy-dropdown__option__icon{display:flex;align-items:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{flex:1 1 auto;color:#3e5a7c}.privacy-dropdown__option__content strong{font-weight:500;display:block;color:#121a24}.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:#d8a070}.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:10px 30px 10px 10px;outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#121a24;color:#9baec8;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#192432}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#d9e1e8;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);color:#3e5a7c;cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#4a6b94}.search-results__header{color:#3e5a7c;background:#151f2b;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:#0b1016;border-bottom:1px solid #202e3f;cursor:default;display:flex;padding:15px;font-weight:500;font-size:16px;color:#3e5a7c}.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:#d9e1e8;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#e6ebf0;text-decoration:underline}.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}.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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#d8a070}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#d9e1e8;color:#121a24;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:#c0cdd9;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:#3e5a7c;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:#37506f;background-color:#a6b9c9}.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:#121a24}.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:#192432}.error-modal__footer{justify-content:center}.display-case{text-align:center;font-size:15px;margin-bottom:15px}.display-case__label{font-weight:500;color:#121a24;margin-bottom:5px;text-transform:uppercase;font-size:12px}.display-case__case{background:#121a24;color:#d9e1e8;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{background:#f2f5f7;color:#121a24;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;flex-direction:column}.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:#f2f5f7}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#d9e1e8}.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:#d9e1e8;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:#3e5a7c;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}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.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 #d9e1e8}@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:#d8a070}.report-modal__statuses .status__content,.report-modal__statuses .status__content p{color:#121a24}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #d9e1e8;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:#121a24;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;outline:0;border-radius:4px;border:1px solid #d9e1e8;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #c0cdd9}.report-modal__comment .setting-toggle{margin-top:20px;margin-bottom:24px}.report-modal__comment .setting-toggle__label{color:#121a24;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{max-height:80vh;max-width:80vw}.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}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#121a24;display:flex;padding:12px 16px;font-size:15px;align-items:center;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:#d8a070;color:#fff}.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#3e5a7c;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 .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 .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#37506f}.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}.loading-bar{background-color:#d8a070;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}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{margin-top:32px}.media-gallery__audio audio{width:100%}.attachment-list{display:flex;font-size:14px;border:1px solid #202e3f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#3e5a7c;padding:8px 18px;cursor:default;border-right:1px solid #202e3f;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:#3e5a7c;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:#3e5a7c}.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.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#d9e1e8;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img{-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.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;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.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%;-webkit-transform:translateY(-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%;-webkit-transform:translateY(-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:#9baec8;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:#b2c1d5}.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:transparent;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:#e1b590}.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:#e1b590;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.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:#e1b590}.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:#e1b590;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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.account-gallery__container{display:flex;justify-content:center;flex-wrap:wrap;padding:2px}.account-gallery__item{flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#000;background-size:cover;background-position:50%;position:absolute;color:#9baec8;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#d9e1e8}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:rgba(0,0,0,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#0b1016;border-bottom:1px solid #202e3f;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#0b1016;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:#9baec8;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:#d9e1e8}.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;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-color:transparent transparent #202e3f;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 #121a24}::-webkit-scrollbar-thumb{border-radius:0}.search-popout{background:#fff;border-radius:4px;padding:10px 14px 14px;margin-top:10px;color:#9baec8;box-shadow:2px 4px 15px rgba(0,0,0,.4)}.search-popout h4{text-transform:uppercase;color:#9baec8;font-size:13px;font-weight:500;margin-bottom:10px}.search-popout li{padding:4px 0}.search-popout ul{margin-bottom:10px}.search-popout em{font-weight:500;color:#121a24}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:#d9e1e8;max-width:400px}noscript div a{color:#d8a070;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,-webkit-transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s,-webkit-transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s,-webkit-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;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;-webkit-transform:scaleX(0) translate(100%);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:\"mastodon-font-monospace\",monospace;background:#121a24;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:#192432}@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:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f}.account__moved-note__message{position:relative;margin-left:58px;color:#3e5a7c;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:#192432}.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-left:5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.list-editor{background:#121a24;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#283a50;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__pager{height:50vh}.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{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.list-adder{background:#121a24;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#283a50}.list-adder__lists{background:#283a50;height:50vh;border-radius:0 0 8px 8px;overflow-y:auto}.list-adder .list{padding:10px;border-bottom:1px solid #202e3f}.list-adder .list__wrapper{display:flex}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/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}.floating-action-button{position:fixed;display:flex;justify-content:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#d59864;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#e0b38c}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.account__header .account__header__fields{font-size:14px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0;border-top:0}.account__header .account__header__fields dl{border-top:1px solid #192432;border-bottom:0;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#9baec8;background:#0b1016;width:120px;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{flex:1 1 auto;color:#fff;background:#121a24}.account__header .account__header__fields dd.verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.trends__header{color:#3e5a7c;background:#151f2b;border-bottom:1px solid #0b1016;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 #202e3f}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#3e5a7c;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#9baec8;text-decoration:none;font-size:14px;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:#d9e1e8}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#dfb088!important}.introduction{display:flex;flex-direction:column;justify-content:center;align-items:center}@media screen and (max-width:920px){.introduction{background:#040609;display:block!important}}.introduction__pager{background:#040609;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{border-top:2px solid #d8a070}.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:#9baec8}.introduction__text p code{display:inline-block;background:#040609;font-size:15px;border:1px solid #202e3f;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 #d8a070;background:transparent;margin:0 3px;cursor:pointer}.introduction__dot:hover{background:#202e3f}.introduction__dot.active{cursor:default;background:#d8a070}.introduction__action{padding:0 25px 25px;display:flex;align-items:center;justify-content:center}.modal-layout{background:#121a24 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}.modal-layout__mastodon{display:flex;flex:1;flex-direction:column;justify-content:flex-end}.modal-layout__mastodon>*{flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.emoji-mart{font-size:13px;display:inline-block;color:#121a24}.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 #c0cdd9}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#d9e1e8}.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:#3e5a7c;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:#37506f}.emoji-mart-anchor-selected{color:#d8a070}.emoji-mart-anchor-selected:hover{color:#d49560}.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:#d8a070}.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:rgba(217,225,232,.3);color:#121a24;border:1px solid #d9e1e8;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(217,225,232,.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:#9baec8}.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:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8;padding-right:10px}.rich-formatting a{color:#d8a070;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.rich-formatting li a,.rich-formatting p a{color:#d8a070;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.rich-formatting h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.rich-formatting h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(62,90,124,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#0b1016;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:\"mastodon-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:#d9e1e8}.information-board__section strong{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:#040609;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:mastodon-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#9baec8;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #192432;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#7a93b6}.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:#9baec8}.landing-page .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:100%}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:flex;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(62,90,124,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#121a24;font-size:12px;font-weight:500;color:#9baec8;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.landing-page li a,.landing-page p a{color:#d8a070;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#9baec8;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#d8a070;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.landing-page h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.landing-page h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(62,90,124,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#121a24;background:linear-gradient(150deg,#202e3f,#121a24);position:relative}.landing-page .header-wrapper.compact{background:#121a24;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .header-wrapper.compact .hero .heading a{color:#d8a070;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:flex;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:flex;justify-content:center;align-items:center;color:#9baec8;text-decoration:none;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#d9e1e8}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#0b1016;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:flex;flex-direction:column;justify-content:space-between}.landing-page .about-short{background:#0b1016;padding:50px 0 30px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .about-short a{color:#d8a070;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#0b1016;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:wrap;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 .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 #mastodon-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#121a24;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:#d9e1e8}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#9baec8}.landing-page__short-description h1 small span{color:#d9e1e8}.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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#040609}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#fff;width:100%;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#fff;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#d9e1e8;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#3e5a7c;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:30px 0 40px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:flex;padding:10px 0;justify-content:space-between}.landing-page .features-list .features-list__row .visual{flex:0 0 auto;display:flex;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#9baec8;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#9baec8}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#3e5a7c}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#3e5a7c}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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 .header .links{padding-top:15px;background:#0b1016}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:flex;flex-flow:row wrap;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#040609;width:100%;border-radius:0;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:flex;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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 #121a24;text-align:left;background:#0b1016}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #121a24;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:#121a24}.table a{color:#d8a070;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:transparent}.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:#121a24;border-top:1px solid #040609;border-bottom:1px solid #040609}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #040609}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #040609}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:\"mastodon-font-monospace\",monospace}button.table-action-link{background:transparent;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:#9baec8;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__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 #040609;background:#121a24;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #040609;border-top:0;background:#0b1016}.batch-table__row:hover{background:#0f151d}.batch-table__row:nth-child(2n){background:#121a24}.batch-table__row:nth-child(2n):hover{background:#151f2b}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#121a24;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:#9baec8;text-decoration:none;transition:all .2s linear;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:#0a0e13;transition:all .1s linear}.admin-wrapper .sidebar ul a.selected{background:#0f151d;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#0b1016;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:#d8a070;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#ddad84}.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:#d9e1e8;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #202e3f;margin-bottom:40px}.admin-wrapper .content h3{color:#d9e1e8;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:#9baec8;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #202e3f}.admin-wrapper .content h6{font-size:16px;color:#d9e1e8;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#fff;font-weight:500}.admin-wrapper .content .directory__tag a{box-shadow:none}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#fff;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#d9e1e8;margin-bottom:20px}.admin-wrapper .content>p strong{color:#fff;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(62,90,124,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#9baec8}.admin-wrapper .content .muted-hint a{color:#d8a070}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;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:#9baec8;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #121a24}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #1b2635}.filters .filter-subset a.selected{color:#d8a070;border-bottom:2px solid #d8a070}.flavour-screen{display:block;margin:10px auto;max-width:100%}.flavour-description{display:block;font-size:16px;margin:10px 0}.flavour-description>p{margin:10px 0}.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:#d9e1e8}.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:#d8a070;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:#121a24;color:#9baec8;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:#3e5a7c}.log-entry__extras{background:#1c2938;border-radius:0 0 4px 4px;padding:10px;color:#9baec8;font-family:\"mastodon-font-monospace\",monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#3e5a7c}.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:#d8a070}.log-entry .target,.log-entry .username,.log-entry a{color:#d9e1e8;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#d9e1e8}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#d9e1e8}.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 #d8a070}.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:#9baec8}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#3e5a7c}.report-card{background:#121a24;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:#9baec8;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:#b5c3d6}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #0b1016}.report-card__summary__item:hover{background:#151f2b}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#9baec8}.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:#3e5a7c;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:#9baec8}.one-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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:#192432;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:#202e3f}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#fff;font-family:mastodon-font-display,sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#9baec8;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:#d9e1e8;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(1,1,2,0),#010102)}body.rtl .simple_form select{background:#010102 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 #mastodon-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);-webkit-transform:scale(.71);transform:scale(.71)}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/common.js b/priv/static/packs/flavours/vanilla/common.js
new file mode 100644
index 000000000..f6a5e57cf
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/common.js differ
diff --git a/priv/static/packs/flavours/vanilla/common.js.map b/priv/static/packs/flavours/vanilla/common.js.map
new file mode 100644
index 000000000..8313e94cb
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/common.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/embed.css b/priv/static/packs/flavours/vanilla/embed.css
new file mode 100644
index 000000000..f5843854f
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/embed.css differ
diff --git a/priv/static/packs/flavours/vanilla/embed.css.map b/priv/static/packs/flavours/vanilla/embed.css.map
new file mode 100644
index 000000000..229c41ff9
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/embed.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"flavours/vanilla/embed.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/embed.js b/priv/static/packs/flavours/vanilla/embed.js
new file mode 100644
index 000000000..eec845936
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/embed.js differ
diff --git a/priv/static/packs/flavours/vanilla/embed.js.map b/priv/static/packs/flavours/vanilla/embed.js.map
new file mode 100644
index 000000000..19390b961
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/embed.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/home.css b/priv/static/packs/flavours/vanilla/home.css
new file mode 100644
index 000000000..913251f74
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/home.css differ
diff --git a/priv/static/packs/flavours/vanilla/home.css.map b/priv/static/packs/flavours/vanilla/home.css.map
new file mode 100644
index 000000000..f8a98976a
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/home.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"flavours/vanilla/home.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/home.js b/priv/static/packs/flavours/vanilla/home.js
new file mode 100644
index 000000000..67cc1a281
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/home.js differ
diff --git a/priv/static/packs/flavours/vanilla/home.js.map b/priv/static/packs/flavours/vanilla/home.js.map
new file mode 100644
index 000000000..1aaf2133d
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/home.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/public.css b/priv/static/packs/flavours/vanilla/public.css
new file mode 100644
index 000000000..598e83d9d
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/public.css differ
diff --git a/priv/static/packs/flavours/vanilla/public.css.map b/priv/static/packs/flavours/vanilla/public.css.map
new file mode 100644
index 000000000..b2e41a350
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/public.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"flavours/vanilla/public.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/public.js b/priv/static/packs/flavours/vanilla/public.js
new file mode 100644
index 000000000..5868946d2
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/public.js differ
diff --git a/priv/static/packs/flavours/vanilla/public.js.map b/priv/static/packs/flavours/vanilla/public.js.map
new file mode 100644
index 000000000..8efc17dd4
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/public.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/settings.css b/priv/static/packs/flavours/vanilla/settings.css
new file mode 100644
index 000000000..5b6927121
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/settings.css differ
diff --git a/priv/static/packs/flavours/vanilla/settings.css.map b/priv/static/packs/flavours/vanilla/settings.css.map
new file mode 100644
index 000000000..c5622608d
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/settings.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"flavours/vanilla/settings.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/settings.js b/priv/static/packs/flavours/vanilla/settings.js
new file mode 100644
index 000000000..d57ff3be9
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/settings.js differ
diff --git a/priv/static/packs/flavours/vanilla/settings.js.map b/priv/static/packs/flavours/vanilla/settings.js.map
new file mode 100644
index 000000000..137c92a2c
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/settings.js.map differ
diff --git a/priv/static/packs/flavours/vanilla/share.css b/priv/static/packs/flavours/vanilla/share.css
new file mode 100644
index 000000000..44a8bc232
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/share.css differ
diff --git a/priv/static/packs/flavours/vanilla/share.css.map b/priv/static/packs/flavours/vanilla/share.css.map
new file mode 100644
index 000000000..3632c1e75
--- /dev/null
+++ b/priv/static/packs/flavours/vanilla/share.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./node_modules/font-awesome/css/font-awesome.css"],"names":[],"mappings":"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","file":"flavours/vanilla/share.css","sourcesContent":["@charset \"UTF-8\";\n/*!\n * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */@font-face{font-family:FontAwesome;src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot);src:url(/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot?#iefix&v=4.7.0) format(\"embedded-opentype\"),url(/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2) format(\"woff2\"),url(/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff) format(\"woff\"),url(/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf) format(\"truetype\"),url(/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.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%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";-webkit-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";-webkit-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";-webkit-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";-webkit-transform:scaleX(-1);transform:scaleX(-1)}.fa-flip-vertical{-ms-filter:\"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";-webkit-transform:scaleY(-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}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/flavours/vanilla/share.js b/priv/static/packs/flavours/vanilla/share.js
new file mode 100644
index 000000000..0f683f9a7
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/share.js differ
diff --git a/priv/static/packs/flavours/vanilla/share.js.map b/priv/static/packs/flavours/vanilla/share.js.map
new file mode 100644
index 000000000..795b1b644
Binary files /dev/null and b/priv/static/packs/flavours/vanilla/share.js.map differ
diff --git a/priv/static/packs/glitch-preview-bb9cc15a0102bfaf65712e5cff7e58df.jpg b/priv/static/packs/glitch-preview-bb9cc15a0102bfaf65712e5cff7e58df.jpg
new file mode 100644
index 000000000..fc5c42043
Binary files /dev/null and b/priv/static/packs/glitch-preview-bb9cc15a0102bfaf65712e5cff7e58df.jpg differ
diff --git a/priv/static/packs/icon_about-ffafc67a2e97ca436da6c1bf61a8ab68.png b/priv/static/packs/icon_about-ffafc67a2e97ca436da6c1bf61a8ab68.png
new file mode 100644
index 000000000..08b76dcd9
Binary files /dev/null and b/priv/static/packs/icon_about-ffafc67a2e97ca436da6c1bf61a8ab68.png differ
diff --git a/priv/static/packs/icon_blocks-0b0e54d45ff0177b02e1357ac09c0d51.png b/priv/static/packs/icon_blocks-0b0e54d45ff0177b02e1357ac09c0d51.png
new file mode 100644
index 000000000..8b1490875
Binary files /dev/null and b/priv/static/packs/icon_blocks-0b0e54d45ff0177b02e1357ac09c0d51.png differ
diff --git a/priv/static/packs/icon_flag-6cc7d5ce6f0c35fe10e0f05494b2aba8.svg b/priv/static/packs/icon_flag-6cc7d5ce6f0c35fe10e0f05494b2aba8.svg
new file mode 100644
index 000000000..3939c9d2b
--- /dev/null
+++ b/priv/static/packs/icon_flag-6cc7d5ce6f0c35fe10e0f05494b2aba8.svg
@@ -0,0 +1,4 @@
+
+
+
+
diff --git a/priv/static/packs/icon_follow_requests-32eaf00987b072b2b12f8015d6a6a250.png b/priv/static/packs/icon_follow_requests-32eaf00987b072b2b12f8015d6a6a250.png
new file mode 100644
index 000000000..4123e2a69
Binary files /dev/null and b/priv/static/packs/icon_follow_requests-32eaf00987b072b2b12f8015d6a6a250.png differ
diff --git a/priv/static/packs/icon_home-433b9d93fc1f035ec09330c2512a4879.png b/priv/static/packs/icon_home-433b9d93fc1f035ec09330c2512a4879.png
new file mode 100644
index 000000000..66ce779c0
Binary files /dev/null and b/priv/static/packs/icon_home-433b9d93fc1f035ec09330c2512a4879.png differ
diff --git a/priv/static/packs/icon_keyboard_shortcuts-4b183486762cfcc9f0de7522520a5485.png b/priv/static/packs/icon_keyboard_shortcuts-4b183486762cfcc9f0de7522520a5485.png
new file mode 100644
index 000000000..d66f3939e
Binary files /dev/null and b/priv/static/packs/icon_keyboard_shortcuts-4b183486762cfcc9f0de7522520a5485.png differ
diff --git a/priv/static/packs/icon_likes-27b8551da2d56d81062818c035ed622e.png b/priv/static/packs/icon_likes-27b8551da2d56d81062818c035ed622e.png
new file mode 100644
index 000000000..17d7a9c59
Binary files /dev/null and b/priv/static/packs/icon_likes-27b8551da2d56d81062818c035ed622e.png differ
diff --git a/priv/static/packs/icon_lists-ae69bf4fb26c40d2c9b056c55c9153e2.png b/priv/static/packs/icon_lists-ae69bf4fb26c40d2c9b056c55c9153e2.png
new file mode 100644
index 000000000..3828946e8
Binary files /dev/null and b/priv/static/packs/icon_lists-ae69bf4fb26c40d2c9b056c55c9153e2.png differ
diff --git a/priv/static/packs/icon_local-eade3ebeb7ac50f798cd40ed5fe62232.png b/priv/static/packs/icon_local-eade3ebeb7ac50f798cd40ed5fe62232.png
new file mode 100644
index 000000000..5f82df395
Binary files /dev/null and b/priv/static/packs/icon_local-eade3ebeb7ac50f798cd40ed5fe62232.png differ
diff --git a/priv/static/packs/icon_logout-3abd28c4fc25290e6e4088c50d3352f4.png b/priv/static/packs/icon_logout-3abd28c4fc25290e6e4088c50d3352f4.png
new file mode 100644
index 000000000..7ff806f58
Binary files /dev/null and b/priv/static/packs/icon_logout-3abd28c4fc25290e6e4088c50d3352f4.png differ
diff --git a/priv/static/packs/icon_mutes-5e7612d5c63fedb3fc59558284304cfc.png b/priv/static/packs/icon_mutes-5e7612d5c63fedb3fc59558284304cfc.png
new file mode 100644
index 000000000..c2225e966
Binary files /dev/null and b/priv/static/packs/icon_mutes-5e7612d5c63fedb3fc59558284304cfc.png differ
diff --git a/priv/static/packs/icon_pin-79e04b07bcaa1266eee3164e83f574b4.png b/priv/static/packs/icon_pin-79e04b07bcaa1266eee3164e83f574b4.png
new file mode 100644
index 000000000..2329d8c54
Binary files /dev/null and b/priv/static/packs/icon_pin-79e04b07bcaa1266eee3164e83f574b4.png differ
diff --git a/priv/static/packs/icon_public-2d798a39bb2bd6314e47b00669686556.png b/priv/static/packs/icon_public-2d798a39bb2bd6314e47b00669686556.png
new file mode 100644
index 000000000..3c09460db
Binary files /dev/null and b/priv/static/packs/icon_public-2d798a39bb2bd6314e47b00669686556.png differ
diff --git a/priv/static/packs/icon_settings-e7c53fb8ee137f93827e2db21f507cb1.png b/priv/static/packs/icon_settings-e7c53fb8ee137f93827e2db21f507cb1.png
new file mode 100644
index 000000000..07f5c4519
Binary files /dev/null and b/priv/static/packs/icon_settings-e7c53fb8ee137f93827e2db21f507cb1.png differ
diff --git a/priv/static/packs/icon_warning-af2b38fe580f274ca4c80479bd12141e.png b/priv/static/packs/icon_warning-af2b38fe580f274ca4c80479bd12141e.png
new file mode 100644
index 000000000..7baaac61c
Binary files /dev/null and b/priv/static/packs/icon_warning-af2b38fe580f274ca4c80479bd12141e.png differ
diff --git a/priv/static/packs/locale_ar.js b/priv/static/packs/locale_ar.js
deleted file mode 100644
index 19ddeed18..000000000
Binary files a/priv/static/packs/locale_ar.js and /dev/null differ
diff --git a/priv/static/packs/locale_ar.js.map b/priv/static/packs/locale_ar.js.map
deleted file mode 100644
index d662b8a98..000000000
Binary files a/priv/static/packs/locale_ar.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ast.js b/priv/static/packs/locale_ast.js
deleted file mode 100644
index 818fee337..000000000
Binary files a/priv/static/packs/locale_ast.js and /dev/null differ
diff --git a/priv/static/packs/locale_ast.js.map b/priv/static/packs/locale_ast.js.map
deleted file mode 100644
index 01e1e13b5..000000000
Binary files a/priv/static/packs/locale_ast.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_bg.js b/priv/static/packs/locale_bg.js
deleted file mode 100644
index 837462bfd..000000000
Binary files a/priv/static/packs/locale_bg.js and /dev/null differ
diff --git a/priv/static/packs/locale_bg.js.map b/priv/static/packs/locale_bg.js.map
deleted file mode 100644
index d33b30194..000000000
Binary files a/priv/static/packs/locale_bg.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ca.js b/priv/static/packs/locale_ca.js
deleted file mode 100644
index cb85cecef..000000000
Binary files a/priv/static/packs/locale_ca.js and /dev/null differ
diff --git a/priv/static/packs/locale_ca.js.map b/priv/static/packs/locale_ca.js.map
deleted file mode 100644
index bafa455bc..000000000
Binary files a/priv/static/packs/locale_ca.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_co.js b/priv/static/packs/locale_co.js
deleted file mode 100644
index ee5e470ab..000000000
Binary files a/priv/static/packs/locale_co.js and /dev/null differ
diff --git a/priv/static/packs/locale_co.js.map b/priv/static/packs/locale_co.js.map
deleted file mode 100644
index 6c029e5d9..000000000
Binary files a/priv/static/packs/locale_co.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_cs.js b/priv/static/packs/locale_cs.js
deleted file mode 100644
index f189cba71..000000000
Binary files a/priv/static/packs/locale_cs.js and /dev/null differ
diff --git a/priv/static/packs/locale_cs.js.map b/priv/static/packs/locale_cs.js.map
deleted file mode 100644
index d2dc2f251..000000000
Binary files a/priv/static/packs/locale_cs.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_cy.js b/priv/static/packs/locale_cy.js
deleted file mode 100644
index 17ce99810..000000000
Binary files a/priv/static/packs/locale_cy.js and /dev/null differ
diff --git a/priv/static/packs/locale_cy.js.map b/priv/static/packs/locale_cy.js.map
deleted file mode 100644
index 2c19bbbe3..000000000
Binary files a/priv/static/packs/locale_cy.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_da.js b/priv/static/packs/locale_da.js
deleted file mode 100644
index 4f45fff6c..000000000
Binary files a/priv/static/packs/locale_da.js and /dev/null differ
diff --git a/priv/static/packs/locale_da.js.map b/priv/static/packs/locale_da.js.map
deleted file mode 100644
index 9e67cc4cd..000000000
Binary files a/priv/static/packs/locale_da.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_de.js b/priv/static/packs/locale_de.js
deleted file mode 100644
index 9f55de608..000000000
Binary files a/priv/static/packs/locale_de.js and /dev/null differ
diff --git a/priv/static/packs/locale_de.js.map b/priv/static/packs/locale_de.js.map
deleted file mode 100644
index 899a1637d..000000000
Binary files a/priv/static/packs/locale_de.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_el.js b/priv/static/packs/locale_el.js
deleted file mode 100644
index cb0f7f696..000000000
Binary files a/priv/static/packs/locale_el.js and /dev/null differ
diff --git a/priv/static/packs/locale_el.js.map b/priv/static/packs/locale_el.js.map
deleted file mode 100644
index 665947302..000000000
Binary files a/priv/static/packs/locale_el.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_en.js b/priv/static/packs/locale_en.js
deleted file mode 100644
index 73221adc7..000000000
Binary files a/priv/static/packs/locale_en.js and /dev/null differ
diff --git a/priv/static/packs/locale_en.js.map b/priv/static/packs/locale_en.js.map
deleted file mode 100644
index 0d0360bcb..000000000
Binary files a/priv/static/packs/locale_en.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_eo.js b/priv/static/packs/locale_eo.js
deleted file mode 100644
index bdd181373..000000000
Binary files a/priv/static/packs/locale_eo.js and /dev/null differ
diff --git a/priv/static/packs/locale_eo.js.map b/priv/static/packs/locale_eo.js.map
deleted file mode 100644
index c70943273..000000000
Binary files a/priv/static/packs/locale_eo.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_es.js b/priv/static/packs/locale_es.js
deleted file mode 100644
index f11b33d2e..000000000
Binary files a/priv/static/packs/locale_es.js and /dev/null differ
diff --git a/priv/static/packs/locale_es.js.map b/priv/static/packs/locale_es.js.map
deleted file mode 100644
index fc08d9551..000000000
Binary files a/priv/static/packs/locale_es.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_eu.js b/priv/static/packs/locale_eu.js
deleted file mode 100644
index ca8881010..000000000
Binary files a/priv/static/packs/locale_eu.js and /dev/null differ
diff --git a/priv/static/packs/locale_eu.js.map b/priv/static/packs/locale_eu.js.map
deleted file mode 100644
index 31bd0f7bd..000000000
Binary files a/priv/static/packs/locale_eu.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_fa.js b/priv/static/packs/locale_fa.js
deleted file mode 100644
index 25fb5858d..000000000
Binary files a/priv/static/packs/locale_fa.js and /dev/null differ
diff --git a/priv/static/packs/locale_fa.js.map b/priv/static/packs/locale_fa.js.map
deleted file mode 100644
index 8d9cbaa78..000000000
Binary files a/priv/static/packs/locale_fa.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_fi.js b/priv/static/packs/locale_fi.js
deleted file mode 100644
index c86d4db2a..000000000
Binary files a/priv/static/packs/locale_fi.js and /dev/null differ
diff --git a/priv/static/packs/locale_fi.js.map b/priv/static/packs/locale_fi.js.map
deleted file mode 100644
index edf683506..000000000
Binary files a/priv/static/packs/locale_fi.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_fr.js b/priv/static/packs/locale_fr.js
deleted file mode 100644
index ae946d41d..000000000
Binary files a/priv/static/packs/locale_fr.js and /dev/null differ
diff --git a/priv/static/packs/locale_fr.js.map b/priv/static/packs/locale_fr.js.map
deleted file mode 100644
index a9fae7497..000000000
Binary files a/priv/static/packs/locale_fr.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_gl.js b/priv/static/packs/locale_gl.js
deleted file mode 100644
index e5e039a18..000000000
Binary files a/priv/static/packs/locale_gl.js and /dev/null differ
diff --git a/priv/static/packs/locale_gl.js.map b/priv/static/packs/locale_gl.js.map
deleted file mode 100644
index 89cc872d4..000000000
Binary files a/priv/static/packs/locale_gl.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_he.js b/priv/static/packs/locale_he.js
deleted file mode 100644
index 6802529a6..000000000
Binary files a/priv/static/packs/locale_he.js and /dev/null differ
diff --git a/priv/static/packs/locale_he.js.map b/priv/static/packs/locale_he.js.map
deleted file mode 100644
index 511a6e2be..000000000
Binary files a/priv/static/packs/locale_he.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_hr.js b/priv/static/packs/locale_hr.js
deleted file mode 100644
index aa3974e9d..000000000
Binary files a/priv/static/packs/locale_hr.js and /dev/null differ
diff --git a/priv/static/packs/locale_hr.js.map b/priv/static/packs/locale_hr.js.map
deleted file mode 100644
index 89447665b..000000000
Binary files a/priv/static/packs/locale_hr.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_hu.js b/priv/static/packs/locale_hu.js
deleted file mode 100644
index 7f77cd7ac..000000000
Binary files a/priv/static/packs/locale_hu.js and /dev/null differ
diff --git a/priv/static/packs/locale_hu.js.map b/priv/static/packs/locale_hu.js.map
deleted file mode 100644
index 08245904b..000000000
Binary files a/priv/static/packs/locale_hu.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_hy.js b/priv/static/packs/locale_hy.js
deleted file mode 100644
index 78aad61d6..000000000
Binary files a/priv/static/packs/locale_hy.js and /dev/null differ
diff --git a/priv/static/packs/locale_hy.js.map b/priv/static/packs/locale_hy.js.map
deleted file mode 100644
index 02f19de8f..000000000
Binary files a/priv/static/packs/locale_hy.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_id.js b/priv/static/packs/locale_id.js
deleted file mode 100644
index 78a46ba1a..000000000
Binary files a/priv/static/packs/locale_id.js and /dev/null differ
diff --git a/priv/static/packs/locale_id.js.map b/priv/static/packs/locale_id.js.map
deleted file mode 100644
index 7dfd0bd76..000000000
Binary files a/priv/static/packs/locale_id.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_io.js b/priv/static/packs/locale_io.js
deleted file mode 100644
index ebdffc9e1..000000000
Binary files a/priv/static/packs/locale_io.js and /dev/null differ
diff --git a/priv/static/packs/locale_io.js.map b/priv/static/packs/locale_io.js.map
deleted file mode 100644
index bc31e36c5..000000000
Binary files a/priv/static/packs/locale_io.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_it.js b/priv/static/packs/locale_it.js
deleted file mode 100644
index 111a10a64..000000000
Binary files a/priv/static/packs/locale_it.js and /dev/null differ
diff --git a/priv/static/packs/locale_it.js.map b/priv/static/packs/locale_it.js.map
deleted file mode 100644
index 854ceeca6..000000000
Binary files a/priv/static/packs/locale_it.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ja.js b/priv/static/packs/locale_ja.js
deleted file mode 100644
index 4d756460d..000000000
Binary files a/priv/static/packs/locale_ja.js and /dev/null differ
diff --git a/priv/static/packs/locale_ja.js.map b/priv/static/packs/locale_ja.js.map
deleted file mode 100644
index 9d28e9434..000000000
Binary files a/priv/static/packs/locale_ja.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ka.js b/priv/static/packs/locale_ka.js
deleted file mode 100644
index df428cbd6..000000000
Binary files a/priv/static/packs/locale_ka.js and /dev/null differ
diff --git a/priv/static/packs/locale_ka.js.map b/priv/static/packs/locale_ka.js.map
deleted file mode 100644
index e99d21260..000000000
Binary files a/priv/static/packs/locale_ka.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ko.js b/priv/static/packs/locale_ko.js
deleted file mode 100644
index 7dbbe94ad..000000000
Binary files a/priv/static/packs/locale_ko.js and /dev/null differ
diff --git a/priv/static/packs/locale_ko.js.map b/priv/static/packs/locale_ko.js.map
deleted file mode 100644
index 1b0cea00a..000000000
Binary files a/priv/static/packs/locale_ko.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_nl.js b/priv/static/packs/locale_nl.js
deleted file mode 100644
index e363e8fa3..000000000
Binary files a/priv/static/packs/locale_nl.js and /dev/null differ
diff --git a/priv/static/packs/locale_nl.js.map b/priv/static/packs/locale_nl.js.map
deleted file mode 100644
index 9984c72ad..000000000
Binary files a/priv/static/packs/locale_nl.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_no.js b/priv/static/packs/locale_no.js
deleted file mode 100644
index 2fba7ee19..000000000
Binary files a/priv/static/packs/locale_no.js and /dev/null differ
diff --git a/priv/static/packs/locale_no.js.map b/priv/static/packs/locale_no.js.map
deleted file mode 100644
index 484e3c77c..000000000
Binary files a/priv/static/packs/locale_no.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_oc.js b/priv/static/packs/locale_oc.js
deleted file mode 100644
index 73deab917..000000000
Binary files a/priv/static/packs/locale_oc.js and /dev/null differ
diff --git a/priv/static/packs/locale_oc.js.map b/priv/static/packs/locale_oc.js.map
deleted file mode 100644
index 011490c08..000000000
Binary files a/priv/static/packs/locale_oc.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_pl.js b/priv/static/packs/locale_pl.js
deleted file mode 100644
index 10e7bb083..000000000
Binary files a/priv/static/packs/locale_pl.js and /dev/null differ
diff --git a/priv/static/packs/locale_pl.js.map b/priv/static/packs/locale_pl.js.map
deleted file mode 100644
index a09314830..000000000
Binary files a/priv/static/packs/locale_pl.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_pt-BR.js b/priv/static/packs/locale_pt-BR.js
deleted file mode 100644
index 2f6a9b54d..000000000
Binary files a/priv/static/packs/locale_pt-BR.js and /dev/null differ
diff --git a/priv/static/packs/locale_pt-BR.js.map b/priv/static/packs/locale_pt-BR.js.map
deleted file mode 100644
index b9d0ce4bb..000000000
Binary files a/priv/static/packs/locale_pt-BR.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_pt.js b/priv/static/packs/locale_pt.js
deleted file mode 100644
index aff85150f..000000000
Binary files a/priv/static/packs/locale_pt.js and /dev/null differ
diff --git a/priv/static/packs/locale_pt.js.map b/priv/static/packs/locale_pt.js.map
deleted file mode 100644
index f86bba4be..000000000
Binary files a/priv/static/packs/locale_pt.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ro.js b/priv/static/packs/locale_ro.js
deleted file mode 100644
index 0dd43d0c0..000000000
Binary files a/priv/static/packs/locale_ro.js and /dev/null differ
diff --git a/priv/static/packs/locale_ro.js.map b/priv/static/packs/locale_ro.js.map
deleted file mode 100644
index 954ed9cf7..000000000
Binary files a/priv/static/packs/locale_ro.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ru.js b/priv/static/packs/locale_ru.js
deleted file mode 100644
index befb84b20..000000000
Binary files a/priv/static/packs/locale_ru.js and /dev/null differ
diff --git a/priv/static/packs/locale_ru.js.map b/priv/static/packs/locale_ru.js.map
deleted file mode 100644
index ac27f0e2d..000000000
Binary files a/priv/static/packs/locale_ru.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_sk.js b/priv/static/packs/locale_sk.js
deleted file mode 100644
index 748ccd2e2..000000000
Binary files a/priv/static/packs/locale_sk.js and /dev/null differ
diff --git a/priv/static/packs/locale_sk.js.map b/priv/static/packs/locale_sk.js.map
deleted file mode 100644
index 01933431f..000000000
Binary files a/priv/static/packs/locale_sk.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_sl.js b/priv/static/packs/locale_sl.js
deleted file mode 100644
index cc5f7723a..000000000
Binary files a/priv/static/packs/locale_sl.js and /dev/null differ
diff --git a/priv/static/packs/locale_sl.js.map b/priv/static/packs/locale_sl.js.map
deleted file mode 100644
index ff89c025a..000000000
Binary files a/priv/static/packs/locale_sl.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_sr-Latn.js b/priv/static/packs/locale_sr-Latn.js
deleted file mode 100644
index cc7db59d7..000000000
Binary files a/priv/static/packs/locale_sr-Latn.js and /dev/null differ
diff --git a/priv/static/packs/locale_sr-Latn.js.map b/priv/static/packs/locale_sr-Latn.js.map
deleted file mode 100644
index ee426dcd5..000000000
Binary files a/priv/static/packs/locale_sr-Latn.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_sr.js b/priv/static/packs/locale_sr.js
deleted file mode 100644
index 8081253d9..000000000
Binary files a/priv/static/packs/locale_sr.js and /dev/null differ
diff --git a/priv/static/packs/locale_sr.js.map b/priv/static/packs/locale_sr.js.map
deleted file mode 100644
index af6cc4158..000000000
Binary files a/priv/static/packs/locale_sr.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_sv.js b/priv/static/packs/locale_sv.js
deleted file mode 100644
index 29dbcc00f..000000000
Binary files a/priv/static/packs/locale_sv.js and /dev/null differ
diff --git a/priv/static/packs/locale_sv.js.map b/priv/static/packs/locale_sv.js.map
deleted file mode 100644
index 4f56617ec..000000000
Binary files a/priv/static/packs/locale_sv.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_ta.js b/priv/static/packs/locale_ta.js
deleted file mode 100644
index 39b07bdb3..000000000
Binary files a/priv/static/packs/locale_ta.js and /dev/null differ
diff --git a/priv/static/packs/locale_ta.js.map b/priv/static/packs/locale_ta.js.map
deleted file mode 100644
index b8a72aefc..000000000
Binary files a/priv/static/packs/locale_ta.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_te.js b/priv/static/packs/locale_te.js
deleted file mode 100644
index 02794d050..000000000
Binary files a/priv/static/packs/locale_te.js and /dev/null differ
diff --git a/priv/static/packs/locale_te.js.map b/priv/static/packs/locale_te.js.map
deleted file mode 100644
index b22627a80..000000000
Binary files a/priv/static/packs/locale_te.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_th.js b/priv/static/packs/locale_th.js
deleted file mode 100644
index 2758c0ea2..000000000
Binary files a/priv/static/packs/locale_th.js and /dev/null differ
diff --git a/priv/static/packs/locale_th.js.map b/priv/static/packs/locale_th.js.map
deleted file mode 100644
index 2e736951e..000000000
Binary files a/priv/static/packs/locale_th.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_tr.js b/priv/static/packs/locale_tr.js
deleted file mode 100644
index a9f5d62a6..000000000
Binary files a/priv/static/packs/locale_tr.js and /dev/null differ
diff --git a/priv/static/packs/locale_tr.js.map b/priv/static/packs/locale_tr.js.map
deleted file mode 100644
index 63ce88d66..000000000
Binary files a/priv/static/packs/locale_tr.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_uk.js b/priv/static/packs/locale_uk.js
deleted file mode 100644
index 09ba3aa79..000000000
Binary files a/priv/static/packs/locale_uk.js and /dev/null differ
diff --git a/priv/static/packs/locale_uk.js.map b/priv/static/packs/locale_uk.js.map
deleted file mode 100644
index ae490d719..000000000
Binary files a/priv/static/packs/locale_uk.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_zh-CN.js b/priv/static/packs/locale_zh-CN.js
deleted file mode 100644
index bcd5a6068..000000000
Binary files a/priv/static/packs/locale_zh-CN.js and /dev/null differ
diff --git a/priv/static/packs/locale_zh-CN.js.map b/priv/static/packs/locale_zh-CN.js.map
deleted file mode 100644
index 8b43dd7ce..000000000
Binary files a/priv/static/packs/locale_zh-CN.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_zh-HK.js b/priv/static/packs/locale_zh-HK.js
deleted file mode 100644
index 450450615..000000000
Binary files a/priv/static/packs/locale_zh-HK.js and /dev/null differ
diff --git a/priv/static/packs/locale_zh-HK.js.map b/priv/static/packs/locale_zh-HK.js.map
deleted file mode 100644
index 1268cdc28..000000000
Binary files a/priv/static/packs/locale_zh-HK.js.map and /dev/null differ
diff --git a/priv/static/packs/locale_zh-TW.js b/priv/static/packs/locale_zh-TW.js
deleted file mode 100644
index 82580a02f..000000000
Binary files a/priv/static/packs/locale_zh-TW.js and /dev/null differ
diff --git a/priv/static/packs/locale_zh-TW.js.map b/priv/static/packs/locale_zh-TW.js.map
deleted file mode 100644
index f80684952..000000000
Binary files a/priv/static/packs/locale_zh-TW.js.map and /dev/null differ
diff --git a/priv/static/packs/locales.js b/priv/static/packs/locales.js
new file mode 100644
index 000000000..519e2d0a5
Binary files /dev/null and b/priv/static/packs/locales.js differ
diff --git a/priv/static/packs/locales.js.map b/priv/static/packs/locales.js.map
new file mode 100644
index 000000000..81d1fdb06
Binary files /dev/null and b/priv/static/packs/locales.js.map differ
diff --git a/priv/static/packs/locales/glitch/ar.js b/priv/static/packs/locales/glitch/ar.js
new file mode 100644
index 000000000..d0a42bd86
Binary files /dev/null and b/priv/static/packs/locales/glitch/ar.js differ
diff --git a/priv/static/packs/locales/glitch/ar.js.map b/priv/static/packs/locales/glitch/ar.js.map
new file mode 100644
index 000000000..1a7b3daf4
Binary files /dev/null and b/priv/static/packs/locales/glitch/ar.js.map differ
diff --git a/priv/static/packs/locales/glitch/bg.js b/priv/static/packs/locales/glitch/bg.js
new file mode 100644
index 000000000..b35321439
Binary files /dev/null and b/priv/static/packs/locales/glitch/bg.js differ
diff --git a/priv/static/packs/locales/glitch/bg.js.map b/priv/static/packs/locales/glitch/bg.js.map
new file mode 100644
index 000000000..59bc0704c
Binary files /dev/null and b/priv/static/packs/locales/glitch/bg.js.map differ
diff --git a/priv/static/packs/locales/glitch/ca.js b/priv/static/packs/locales/glitch/ca.js
new file mode 100644
index 000000000..12e40762b
Binary files /dev/null and b/priv/static/packs/locales/glitch/ca.js differ
diff --git a/priv/static/packs/locales/glitch/ca.js.map b/priv/static/packs/locales/glitch/ca.js.map
new file mode 100644
index 000000000..7705f47b9
Binary files /dev/null and b/priv/static/packs/locales/glitch/ca.js.map differ
diff --git a/priv/static/packs/locales/glitch/de.js b/priv/static/packs/locales/glitch/de.js
new file mode 100644
index 000000000..719477b19
Binary files /dev/null and b/priv/static/packs/locales/glitch/de.js differ
diff --git a/priv/static/packs/locales/glitch/de.js.map b/priv/static/packs/locales/glitch/de.js.map
new file mode 100644
index 000000000..dec2cfc74
Binary files /dev/null and b/priv/static/packs/locales/glitch/de.js.map differ
diff --git a/priv/static/packs/locales/glitch/en.js b/priv/static/packs/locales/glitch/en.js
new file mode 100644
index 000000000..218234c32
Binary files /dev/null and b/priv/static/packs/locales/glitch/en.js differ
diff --git a/priv/static/packs/locales/glitch/en.js.map b/priv/static/packs/locales/glitch/en.js.map
new file mode 100644
index 000000000..3e5c8c633
Binary files /dev/null and b/priv/static/packs/locales/glitch/en.js.map differ
diff --git a/priv/static/packs/locales/glitch/eo.js b/priv/static/packs/locales/glitch/eo.js
new file mode 100644
index 000000000..751176dd7
Binary files /dev/null and b/priv/static/packs/locales/glitch/eo.js differ
diff --git a/priv/static/packs/locales/glitch/eo.js.map b/priv/static/packs/locales/glitch/eo.js.map
new file mode 100644
index 000000000..bddf8d5cd
Binary files /dev/null and b/priv/static/packs/locales/glitch/eo.js.map differ
diff --git a/priv/static/packs/locales/glitch/es.js b/priv/static/packs/locales/glitch/es.js
new file mode 100644
index 000000000..3a7b79641
Binary files /dev/null and b/priv/static/packs/locales/glitch/es.js differ
diff --git a/priv/static/packs/locales/glitch/es.js.map b/priv/static/packs/locales/glitch/es.js.map
new file mode 100644
index 000000000..a1941c426
Binary files /dev/null and b/priv/static/packs/locales/glitch/es.js.map differ
diff --git a/priv/static/packs/locales/glitch/fa.js b/priv/static/packs/locales/glitch/fa.js
new file mode 100644
index 000000000..74d96a5ee
Binary files /dev/null and b/priv/static/packs/locales/glitch/fa.js differ
diff --git a/priv/static/packs/locales/glitch/fa.js.map b/priv/static/packs/locales/glitch/fa.js.map
new file mode 100644
index 000000000..f880fddf4
Binary files /dev/null and b/priv/static/packs/locales/glitch/fa.js.map differ
diff --git a/priv/static/packs/locales/glitch/fi.js b/priv/static/packs/locales/glitch/fi.js
new file mode 100644
index 000000000..0f306820a
Binary files /dev/null and b/priv/static/packs/locales/glitch/fi.js differ
diff --git a/priv/static/packs/locales/glitch/fi.js.map b/priv/static/packs/locales/glitch/fi.js.map
new file mode 100644
index 000000000..7a09bfdd8
Binary files /dev/null and b/priv/static/packs/locales/glitch/fi.js.map differ
diff --git a/priv/static/packs/locales/glitch/fr.js b/priv/static/packs/locales/glitch/fr.js
new file mode 100644
index 000000000..baa0e69e8
Binary files /dev/null and b/priv/static/packs/locales/glitch/fr.js differ
diff --git a/priv/static/packs/locales/glitch/fr.js.map b/priv/static/packs/locales/glitch/fr.js.map
new file mode 100644
index 000000000..82568809d
Binary files /dev/null and b/priv/static/packs/locales/glitch/fr.js.map differ
diff --git a/priv/static/packs/locales/glitch/he.js b/priv/static/packs/locales/glitch/he.js
new file mode 100644
index 000000000..dc0dbfe6c
Binary files /dev/null and b/priv/static/packs/locales/glitch/he.js differ
diff --git a/priv/static/packs/locales/glitch/he.js.map b/priv/static/packs/locales/glitch/he.js.map
new file mode 100644
index 000000000..06895076a
Binary files /dev/null and b/priv/static/packs/locales/glitch/he.js.map differ
diff --git a/priv/static/packs/locales/glitch/hr.js b/priv/static/packs/locales/glitch/hr.js
new file mode 100644
index 000000000..48ec8f1d5
Binary files /dev/null and b/priv/static/packs/locales/glitch/hr.js differ
diff --git a/priv/static/packs/locales/glitch/hr.js.map b/priv/static/packs/locales/glitch/hr.js.map
new file mode 100644
index 000000000..eac8d1e6f
Binary files /dev/null and b/priv/static/packs/locales/glitch/hr.js.map differ
diff --git a/priv/static/packs/locales/glitch/hu.js b/priv/static/packs/locales/glitch/hu.js
new file mode 100644
index 000000000..cdf14d2e6
Binary files /dev/null and b/priv/static/packs/locales/glitch/hu.js differ
diff --git a/priv/static/packs/locales/glitch/hu.js.map b/priv/static/packs/locales/glitch/hu.js.map
new file mode 100644
index 000000000..628b9a6a1
Binary files /dev/null and b/priv/static/packs/locales/glitch/hu.js.map differ
diff --git a/priv/static/packs/locales/glitch/id.js b/priv/static/packs/locales/glitch/id.js
new file mode 100644
index 000000000..4526a6540
Binary files /dev/null and b/priv/static/packs/locales/glitch/id.js differ
diff --git a/priv/static/packs/locales/glitch/id.js.map b/priv/static/packs/locales/glitch/id.js.map
new file mode 100644
index 000000000..39dccb5d2
Binary files /dev/null and b/priv/static/packs/locales/glitch/id.js.map differ
diff --git a/priv/static/packs/locales/glitch/io.js b/priv/static/packs/locales/glitch/io.js
new file mode 100644
index 000000000..8762fa122
Binary files /dev/null and b/priv/static/packs/locales/glitch/io.js differ
diff --git a/priv/static/packs/locales/glitch/io.js.map b/priv/static/packs/locales/glitch/io.js.map
new file mode 100644
index 000000000..ea32ed317
Binary files /dev/null and b/priv/static/packs/locales/glitch/io.js.map differ
diff --git a/priv/static/packs/locales/glitch/it.js b/priv/static/packs/locales/glitch/it.js
new file mode 100644
index 000000000..bdda799c7
Binary files /dev/null and b/priv/static/packs/locales/glitch/it.js differ
diff --git a/priv/static/packs/locales/glitch/it.js.map b/priv/static/packs/locales/glitch/it.js.map
new file mode 100644
index 000000000..967cc5ada
Binary files /dev/null and b/priv/static/packs/locales/glitch/it.js.map differ
diff --git a/priv/static/packs/locales/glitch/ja.js b/priv/static/packs/locales/glitch/ja.js
new file mode 100644
index 000000000..40d4190e3
Binary files /dev/null and b/priv/static/packs/locales/glitch/ja.js differ
diff --git a/priv/static/packs/locales/glitch/ja.js.map b/priv/static/packs/locales/glitch/ja.js.map
new file mode 100644
index 000000000..c011d8d18
Binary files /dev/null and b/priv/static/packs/locales/glitch/ja.js.map differ
diff --git a/priv/static/packs/locales/glitch/ko.js b/priv/static/packs/locales/glitch/ko.js
new file mode 100644
index 000000000..eeb7e3124
Binary files /dev/null and b/priv/static/packs/locales/glitch/ko.js differ
diff --git a/priv/static/packs/locales/glitch/ko.js.map b/priv/static/packs/locales/glitch/ko.js.map
new file mode 100644
index 000000000..51bc25d88
Binary files /dev/null and b/priv/static/packs/locales/glitch/ko.js.map differ
diff --git a/priv/static/packs/locales/glitch/nl.js b/priv/static/packs/locales/glitch/nl.js
new file mode 100644
index 000000000..3a7f092b6
Binary files /dev/null and b/priv/static/packs/locales/glitch/nl.js differ
diff --git a/priv/static/packs/locales/glitch/nl.js.map b/priv/static/packs/locales/glitch/nl.js.map
new file mode 100644
index 000000000..52114ab2c
Binary files /dev/null and b/priv/static/packs/locales/glitch/nl.js.map differ
diff --git a/priv/static/packs/locales/glitch/no.js b/priv/static/packs/locales/glitch/no.js
new file mode 100644
index 000000000..7ebace93c
Binary files /dev/null and b/priv/static/packs/locales/glitch/no.js differ
diff --git a/priv/static/packs/locales/glitch/no.js.map b/priv/static/packs/locales/glitch/no.js.map
new file mode 100644
index 000000000..f8301c321
Binary files /dev/null and b/priv/static/packs/locales/glitch/no.js.map differ
diff --git a/priv/static/packs/locales/glitch/oc.js b/priv/static/packs/locales/glitch/oc.js
new file mode 100644
index 000000000..8124d3650
Binary files /dev/null and b/priv/static/packs/locales/glitch/oc.js differ
diff --git a/priv/static/packs/locales/glitch/oc.js.map b/priv/static/packs/locales/glitch/oc.js.map
new file mode 100644
index 000000000..399ecf9c1
Binary files /dev/null and b/priv/static/packs/locales/glitch/oc.js.map differ
diff --git a/priv/static/packs/locales/glitch/pl.js b/priv/static/packs/locales/glitch/pl.js
new file mode 100644
index 000000000..1493cff37
Binary files /dev/null and b/priv/static/packs/locales/glitch/pl.js differ
diff --git a/priv/static/packs/locales/glitch/pl.js.map b/priv/static/packs/locales/glitch/pl.js.map
new file mode 100644
index 000000000..a230bde5d
Binary files /dev/null and b/priv/static/packs/locales/glitch/pl.js.map differ
diff --git a/priv/static/packs/locales/glitch/pt-BR.js b/priv/static/packs/locales/glitch/pt-BR.js
new file mode 100644
index 000000000..e3ff5551b
Binary files /dev/null and b/priv/static/packs/locales/glitch/pt-BR.js differ
diff --git a/priv/static/packs/locales/glitch/pt-BR.js.map b/priv/static/packs/locales/glitch/pt-BR.js.map
new file mode 100644
index 000000000..a82131297
Binary files /dev/null and b/priv/static/packs/locales/glitch/pt-BR.js.map differ
diff --git a/priv/static/packs/locales/glitch/pt.js b/priv/static/packs/locales/glitch/pt.js
new file mode 100644
index 000000000..6c1f74cbe
Binary files /dev/null and b/priv/static/packs/locales/glitch/pt.js differ
diff --git a/priv/static/packs/locales/glitch/pt.js.map b/priv/static/packs/locales/glitch/pt.js.map
new file mode 100644
index 000000000..b54d640d5
Binary files /dev/null and b/priv/static/packs/locales/glitch/pt.js.map differ
diff --git a/priv/static/packs/locales/glitch/ru.js b/priv/static/packs/locales/glitch/ru.js
new file mode 100644
index 000000000..e291822b0
Binary files /dev/null and b/priv/static/packs/locales/glitch/ru.js differ
diff --git a/priv/static/packs/locales/glitch/ru.js.map b/priv/static/packs/locales/glitch/ru.js.map
new file mode 100644
index 000000000..6092530ad
Binary files /dev/null and b/priv/static/packs/locales/glitch/ru.js.map differ
diff --git a/priv/static/packs/locales/glitch/sv.js b/priv/static/packs/locales/glitch/sv.js
new file mode 100644
index 000000000..023817865
Binary files /dev/null and b/priv/static/packs/locales/glitch/sv.js differ
diff --git a/priv/static/packs/locales/glitch/sv.js.map b/priv/static/packs/locales/glitch/sv.js.map
new file mode 100644
index 000000000..6d15c0164
Binary files /dev/null and b/priv/static/packs/locales/glitch/sv.js.map differ
diff --git a/priv/static/packs/locales/glitch/th.js b/priv/static/packs/locales/glitch/th.js
new file mode 100644
index 000000000..c76592aea
Binary files /dev/null and b/priv/static/packs/locales/glitch/th.js differ
diff --git a/priv/static/packs/locales/glitch/th.js.map b/priv/static/packs/locales/glitch/th.js.map
new file mode 100644
index 000000000..fd1011ca1
Binary files /dev/null and b/priv/static/packs/locales/glitch/th.js.map differ
diff --git a/priv/static/packs/locales/glitch/tr.js b/priv/static/packs/locales/glitch/tr.js
new file mode 100644
index 000000000..129832993
Binary files /dev/null and b/priv/static/packs/locales/glitch/tr.js differ
diff --git a/priv/static/packs/locales/glitch/tr.js.map b/priv/static/packs/locales/glitch/tr.js.map
new file mode 100644
index 000000000..1d589048b
Binary files /dev/null and b/priv/static/packs/locales/glitch/tr.js.map differ
diff --git a/priv/static/packs/locales/glitch/uk.js b/priv/static/packs/locales/glitch/uk.js
new file mode 100644
index 000000000..cfc1842c3
Binary files /dev/null and b/priv/static/packs/locales/glitch/uk.js differ
diff --git a/priv/static/packs/locales/glitch/uk.js.map b/priv/static/packs/locales/glitch/uk.js.map
new file mode 100644
index 000000000..17273fca9
Binary files /dev/null and b/priv/static/packs/locales/glitch/uk.js.map differ
diff --git a/priv/static/packs/locales/glitch/zh-CN.js b/priv/static/packs/locales/glitch/zh-CN.js
new file mode 100644
index 000000000..17890dca4
Binary files /dev/null and b/priv/static/packs/locales/glitch/zh-CN.js differ
diff --git a/priv/static/packs/locales/glitch/zh-CN.js.map b/priv/static/packs/locales/glitch/zh-CN.js.map
new file mode 100644
index 000000000..2d882713c
Binary files /dev/null and b/priv/static/packs/locales/glitch/zh-CN.js.map differ
diff --git a/priv/static/packs/locales/glitch/zh-HK.js b/priv/static/packs/locales/glitch/zh-HK.js
new file mode 100644
index 000000000..126ca9adc
Binary files /dev/null and b/priv/static/packs/locales/glitch/zh-HK.js differ
diff --git a/priv/static/packs/locales/glitch/zh-HK.js.map b/priv/static/packs/locales/glitch/zh-HK.js.map
new file mode 100644
index 000000000..035a69df1
Binary files /dev/null and b/priv/static/packs/locales/glitch/zh-HK.js.map differ
diff --git a/priv/static/packs/locales/glitch/zh-TW.js b/priv/static/packs/locales/glitch/zh-TW.js
new file mode 100644
index 000000000..f3906373d
Binary files /dev/null and b/priv/static/packs/locales/glitch/zh-TW.js differ
diff --git a/priv/static/packs/locales/glitch/zh-TW.js.map b/priv/static/packs/locales/glitch/zh-TW.js.map
new file mode 100644
index 000000000..8321edf55
Binary files /dev/null and b/priv/static/packs/locales/glitch/zh-TW.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ar.js b/priv/static/packs/locales/vanilla/ar.js
new file mode 100644
index 000000000..e0283bfdc
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ar.js differ
diff --git a/priv/static/packs/locales/vanilla/ar.js.map b/priv/static/packs/locales/vanilla/ar.js.map
new file mode 100644
index 000000000..ee2db059f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ar.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ast.js b/priv/static/packs/locales/vanilla/ast.js
new file mode 100644
index 000000000..0ccca36fd
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ast.js differ
diff --git a/priv/static/packs/locales/vanilla/ast.js.map b/priv/static/packs/locales/vanilla/ast.js.map
new file mode 100644
index 000000000..09aa4932a
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ast.js.map differ
diff --git a/priv/static/packs/locales/vanilla/bg.js b/priv/static/packs/locales/vanilla/bg.js
new file mode 100644
index 000000000..33cac8f33
Binary files /dev/null and b/priv/static/packs/locales/vanilla/bg.js differ
diff --git a/priv/static/packs/locales/vanilla/bg.js.map b/priv/static/packs/locales/vanilla/bg.js.map
new file mode 100644
index 000000000..b0eb69cc8
Binary files /dev/null and b/priv/static/packs/locales/vanilla/bg.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ca.js b/priv/static/packs/locales/vanilla/ca.js
new file mode 100644
index 000000000..edac231f3
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ca.js differ
diff --git a/priv/static/packs/locales/vanilla/ca.js.map b/priv/static/packs/locales/vanilla/ca.js.map
new file mode 100644
index 000000000..f58564d32
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ca.js.map differ
diff --git a/priv/static/packs/locales/vanilla/co.js b/priv/static/packs/locales/vanilla/co.js
new file mode 100644
index 000000000..129be7ca5
Binary files /dev/null and b/priv/static/packs/locales/vanilla/co.js differ
diff --git a/priv/static/packs/locales/vanilla/co.js.map b/priv/static/packs/locales/vanilla/co.js.map
new file mode 100644
index 000000000..0bbf498c1
Binary files /dev/null and b/priv/static/packs/locales/vanilla/co.js.map differ
diff --git a/priv/static/packs/locales/vanilla/cs.js b/priv/static/packs/locales/vanilla/cs.js
new file mode 100644
index 000000000..7f86c2e62
Binary files /dev/null and b/priv/static/packs/locales/vanilla/cs.js differ
diff --git a/priv/static/packs/locales/vanilla/cs.js.map b/priv/static/packs/locales/vanilla/cs.js.map
new file mode 100644
index 000000000..09fce5065
Binary files /dev/null and b/priv/static/packs/locales/vanilla/cs.js.map differ
diff --git a/priv/static/packs/locales/vanilla/cy.js b/priv/static/packs/locales/vanilla/cy.js
new file mode 100644
index 000000000..cd7c3d2a5
Binary files /dev/null and b/priv/static/packs/locales/vanilla/cy.js differ
diff --git a/priv/static/packs/locales/vanilla/cy.js.map b/priv/static/packs/locales/vanilla/cy.js.map
new file mode 100644
index 000000000..0f183ebc2
Binary files /dev/null and b/priv/static/packs/locales/vanilla/cy.js.map differ
diff --git a/priv/static/packs/locales/vanilla/da.js b/priv/static/packs/locales/vanilla/da.js
new file mode 100644
index 000000000..e61e44a83
Binary files /dev/null and b/priv/static/packs/locales/vanilla/da.js differ
diff --git a/priv/static/packs/locales/vanilla/da.js.map b/priv/static/packs/locales/vanilla/da.js.map
new file mode 100644
index 000000000..c123ec349
Binary files /dev/null and b/priv/static/packs/locales/vanilla/da.js.map differ
diff --git a/priv/static/packs/locales/vanilla/de.js b/priv/static/packs/locales/vanilla/de.js
new file mode 100644
index 000000000..441ceb84b
Binary files /dev/null and b/priv/static/packs/locales/vanilla/de.js differ
diff --git a/priv/static/packs/locales/vanilla/de.js.map b/priv/static/packs/locales/vanilla/de.js.map
new file mode 100644
index 000000000..fe634ef03
Binary files /dev/null and b/priv/static/packs/locales/vanilla/de.js.map differ
diff --git a/priv/static/packs/locales/vanilla/el.js b/priv/static/packs/locales/vanilla/el.js
new file mode 100644
index 000000000..1fdf4f212
Binary files /dev/null and b/priv/static/packs/locales/vanilla/el.js differ
diff --git a/priv/static/packs/locales/vanilla/el.js.map b/priv/static/packs/locales/vanilla/el.js.map
new file mode 100644
index 000000000..e6f09c5c2
Binary files /dev/null and b/priv/static/packs/locales/vanilla/el.js.map differ
diff --git a/priv/static/packs/locales/vanilla/en.js b/priv/static/packs/locales/vanilla/en.js
new file mode 100644
index 000000000..4f578ea84
Binary files /dev/null and b/priv/static/packs/locales/vanilla/en.js differ
diff --git a/priv/static/packs/locales/vanilla/en.js.map b/priv/static/packs/locales/vanilla/en.js.map
new file mode 100644
index 000000000..44e69bfe2
Binary files /dev/null and b/priv/static/packs/locales/vanilla/en.js.map differ
diff --git a/priv/static/packs/locales/vanilla/eo.js b/priv/static/packs/locales/vanilla/eo.js
new file mode 100644
index 000000000..b64c52cf5
Binary files /dev/null and b/priv/static/packs/locales/vanilla/eo.js differ
diff --git a/priv/static/packs/locales/vanilla/eo.js.map b/priv/static/packs/locales/vanilla/eo.js.map
new file mode 100644
index 000000000..4cdfa1e9d
Binary files /dev/null and b/priv/static/packs/locales/vanilla/eo.js.map differ
diff --git a/priv/static/packs/locales/vanilla/es.js b/priv/static/packs/locales/vanilla/es.js
new file mode 100644
index 000000000..ffb1f5d88
Binary files /dev/null and b/priv/static/packs/locales/vanilla/es.js differ
diff --git a/priv/static/packs/locales/vanilla/es.js.map b/priv/static/packs/locales/vanilla/es.js.map
new file mode 100644
index 000000000..85bc184fe
Binary files /dev/null and b/priv/static/packs/locales/vanilla/es.js.map differ
diff --git a/priv/static/packs/locales/vanilla/eu.js b/priv/static/packs/locales/vanilla/eu.js
new file mode 100644
index 000000000..5f99665df
Binary files /dev/null and b/priv/static/packs/locales/vanilla/eu.js differ
diff --git a/priv/static/packs/locales/vanilla/eu.js.map b/priv/static/packs/locales/vanilla/eu.js.map
new file mode 100644
index 000000000..d1d0fa850
Binary files /dev/null and b/priv/static/packs/locales/vanilla/eu.js.map differ
diff --git a/priv/static/packs/locales/vanilla/fa.js b/priv/static/packs/locales/vanilla/fa.js
new file mode 100644
index 000000000..ed7d7802b
Binary files /dev/null and b/priv/static/packs/locales/vanilla/fa.js differ
diff --git a/priv/static/packs/locales/vanilla/fa.js.map b/priv/static/packs/locales/vanilla/fa.js.map
new file mode 100644
index 000000000..1b8661e1f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/fa.js.map differ
diff --git a/priv/static/packs/locales/vanilla/fi.js b/priv/static/packs/locales/vanilla/fi.js
new file mode 100644
index 000000000..1a071930a
Binary files /dev/null and b/priv/static/packs/locales/vanilla/fi.js differ
diff --git a/priv/static/packs/locales/vanilla/fi.js.map b/priv/static/packs/locales/vanilla/fi.js.map
new file mode 100644
index 000000000..b589b80b0
Binary files /dev/null and b/priv/static/packs/locales/vanilla/fi.js.map differ
diff --git a/priv/static/packs/locales/vanilla/fr.js b/priv/static/packs/locales/vanilla/fr.js
new file mode 100644
index 000000000..0ce5e33e1
Binary files /dev/null and b/priv/static/packs/locales/vanilla/fr.js differ
diff --git a/priv/static/packs/locales/vanilla/fr.js.map b/priv/static/packs/locales/vanilla/fr.js.map
new file mode 100644
index 000000000..e47a1fa12
Binary files /dev/null and b/priv/static/packs/locales/vanilla/fr.js.map differ
diff --git a/priv/static/packs/locales/vanilla/gl.js b/priv/static/packs/locales/vanilla/gl.js
new file mode 100644
index 000000000..754631546
Binary files /dev/null and b/priv/static/packs/locales/vanilla/gl.js differ
diff --git a/priv/static/packs/locales/vanilla/gl.js.map b/priv/static/packs/locales/vanilla/gl.js.map
new file mode 100644
index 000000000..8390e2754
Binary files /dev/null and b/priv/static/packs/locales/vanilla/gl.js.map differ
diff --git a/priv/static/packs/locales/vanilla/he.js b/priv/static/packs/locales/vanilla/he.js
new file mode 100644
index 000000000..ad2a7fb27
Binary files /dev/null and b/priv/static/packs/locales/vanilla/he.js differ
diff --git a/priv/static/packs/locales/vanilla/he.js.map b/priv/static/packs/locales/vanilla/he.js.map
new file mode 100644
index 000000000..852d5ea46
Binary files /dev/null and b/priv/static/packs/locales/vanilla/he.js.map differ
diff --git a/priv/static/packs/locales/vanilla/hr.js b/priv/static/packs/locales/vanilla/hr.js
new file mode 100644
index 000000000..0a06cdc86
Binary files /dev/null and b/priv/static/packs/locales/vanilla/hr.js differ
diff --git a/priv/static/packs/locales/vanilla/hr.js.map b/priv/static/packs/locales/vanilla/hr.js.map
new file mode 100644
index 000000000..abe1984d0
Binary files /dev/null and b/priv/static/packs/locales/vanilla/hr.js.map differ
diff --git a/priv/static/packs/locales/vanilla/hu.js b/priv/static/packs/locales/vanilla/hu.js
new file mode 100644
index 000000000..465e3f5d9
Binary files /dev/null and b/priv/static/packs/locales/vanilla/hu.js differ
diff --git a/priv/static/packs/locales/vanilla/hu.js.map b/priv/static/packs/locales/vanilla/hu.js.map
new file mode 100644
index 000000000..0e0bb36e1
Binary files /dev/null and b/priv/static/packs/locales/vanilla/hu.js.map differ
diff --git a/priv/static/packs/locales/vanilla/hy.js b/priv/static/packs/locales/vanilla/hy.js
new file mode 100644
index 000000000..52f57cad9
Binary files /dev/null and b/priv/static/packs/locales/vanilla/hy.js differ
diff --git a/priv/static/packs/locales/vanilla/hy.js.map b/priv/static/packs/locales/vanilla/hy.js.map
new file mode 100644
index 000000000..feea2616b
Binary files /dev/null and b/priv/static/packs/locales/vanilla/hy.js.map differ
diff --git a/priv/static/packs/locales/vanilla/id.js b/priv/static/packs/locales/vanilla/id.js
new file mode 100644
index 000000000..395f054bc
Binary files /dev/null and b/priv/static/packs/locales/vanilla/id.js differ
diff --git a/priv/static/packs/locales/vanilla/id.js.map b/priv/static/packs/locales/vanilla/id.js.map
new file mode 100644
index 000000000..b70eab38c
Binary files /dev/null and b/priv/static/packs/locales/vanilla/id.js.map differ
diff --git a/priv/static/packs/locales/vanilla/io.js b/priv/static/packs/locales/vanilla/io.js
new file mode 100644
index 000000000..08fd05a8b
Binary files /dev/null and b/priv/static/packs/locales/vanilla/io.js differ
diff --git a/priv/static/packs/locales/vanilla/io.js.map b/priv/static/packs/locales/vanilla/io.js.map
new file mode 100644
index 000000000..902185e8f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/io.js.map differ
diff --git a/priv/static/packs/locales/vanilla/it.js b/priv/static/packs/locales/vanilla/it.js
new file mode 100644
index 000000000..81b1c11dc
Binary files /dev/null and b/priv/static/packs/locales/vanilla/it.js differ
diff --git a/priv/static/packs/locales/vanilla/it.js.map b/priv/static/packs/locales/vanilla/it.js.map
new file mode 100644
index 000000000..7760d3bf4
Binary files /dev/null and b/priv/static/packs/locales/vanilla/it.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ja.js b/priv/static/packs/locales/vanilla/ja.js
new file mode 100644
index 000000000..6586f77d8
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ja.js differ
diff --git a/priv/static/packs/locales/vanilla/ja.js.map b/priv/static/packs/locales/vanilla/ja.js.map
new file mode 100644
index 000000000..77174d8c7
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ja.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ka.js b/priv/static/packs/locales/vanilla/ka.js
new file mode 100644
index 000000000..5c1fe5168
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ka.js differ
diff --git a/priv/static/packs/locales/vanilla/ka.js.map b/priv/static/packs/locales/vanilla/ka.js.map
new file mode 100644
index 000000000..6803b182c
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ka.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ko.js b/priv/static/packs/locales/vanilla/ko.js
new file mode 100644
index 000000000..d33ccac91
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ko.js differ
diff --git a/priv/static/packs/locales/vanilla/ko.js.map b/priv/static/packs/locales/vanilla/ko.js.map
new file mode 100644
index 000000000..88265664b
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ko.js.map differ
diff --git a/priv/static/packs/locales/vanilla/lv.js b/priv/static/packs/locales/vanilla/lv.js
new file mode 100644
index 000000000..ec6e7109e
Binary files /dev/null and b/priv/static/packs/locales/vanilla/lv.js differ
diff --git a/priv/static/packs/locales/vanilla/lv.js.map b/priv/static/packs/locales/vanilla/lv.js.map
new file mode 100644
index 000000000..9127b68df
Binary files /dev/null and b/priv/static/packs/locales/vanilla/lv.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ms.js b/priv/static/packs/locales/vanilla/ms.js
new file mode 100644
index 000000000..f3fd0a31e
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ms.js differ
diff --git a/priv/static/packs/locales/vanilla/ms.js.map b/priv/static/packs/locales/vanilla/ms.js.map
new file mode 100644
index 000000000..00f4e1126
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ms.js.map differ
diff --git a/priv/static/packs/locales/vanilla/nl.js b/priv/static/packs/locales/vanilla/nl.js
new file mode 100644
index 000000000..ef2df84f6
Binary files /dev/null and b/priv/static/packs/locales/vanilla/nl.js differ
diff --git a/priv/static/packs/locales/vanilla/nl.js.map b/priv/static/packs/locales/vanilla/nl.js.map
new file mode 100644
index 000000000..8088c32fd
Binary files /dev/null and b/priv/static/packs/locales/vanilla/nl.js.map differ
diff --git a/priv/static/packs/locales/vanilla/no.js b/priv/static/packs/locales/vanilla/no.js
new file mode 100644
index 000000000..d6f5a8d5f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/no.js differ
diff --git a/priv/static/packs/locales/vanilla/no.js.map b/priv/static/packs/locales/vanilla/no.js.map
new file mode 100644
index 000000000..100566095
Binary files /dev/null and b/priv/static/packs/locales/vanilla/no.js.map differ
diff --git a/priv/static/packs/locales/vanilla/oc.js b/priv/static/packs/locales/vanilla/oc.js
new file mode 100644
index 000000000..6c1e5a7f0
Binary files /dev/null and b/priv/static/packs/locales/vanilla/oc.js differ
diff --git a/priv/static/packs/locales/vanilla/oc.js.map b/priv/static/packs/locales/vanilla/oc.js.map
new file mode 100644
index 000000000..0398566c8
Binary files /dev/null and b/priv/static/packs/locales/vanilla/oc.js.map differ
diff --git a/priv/static/packs/locales/vanilla/pl.js b/priv/static/packs/locales/vanilla/pl.js
new file mode 100644
index 000000000..fb4317171
Binary files /dev/null and b/priv/static/packs/locales/vanilla/pl.js differ
diff --git a/priv/static/packs/locales/vanilla/pl.js.map b/priv/static/packs/locales/vanilla/pl.js.map
new file mode 100644
index 000000000..bf4985a14
Binary files /dev/null and b/priv/static/packs/locales/vanilla/pl.js.map differ
diff --git a/priv/static/packs/locales/vanilla/pt-BR.js b/priv/static/packs/locales/vanilla/pt-BR.js
new file mode 100644
index 000000000..7a597e4b3
Binary files /dev/null and b/priv/static/packs/locales/vanilla/pt-BR.js differ
diff --git a/priv/static/packs/locales/vanilla/pt-BR.js.map b/priv/static/packs/locales/vanilla/pt-BR.js.map
new file mode 100644
index 000000000..0893d9bd0
Binary files /dev/null and b/priv/static/packs/locales/vanilla/pt-BR.js.map differ
diff --git a/priv/static/packs/locales/vanilla/pt.js b/priv/static/packs/locales/vanilla/pt.js
new file mode 100644
index 000000000..d13793ee8
Binary files /dev/null and b/priv/static/packs/locales/vanilla/pt.js differ
diff --git a/priv/static/packs/locales/vanilla/pt.js.map b/priv/static/packs/locales/vanilla/pt.js.map
new file mode 100644
index 000000000..a9d532018
Binary files /dev/null and b/priv/static/packs/locales/vanilla/pt.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ro.js b/priv/static/packs/locales/vanilla/ro.js
new file mode 100644
index 000000000..51ffade37
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ro.js differ
diff --git a/priv/static/packs/locales/vanilla/ro.js.map b/priv/static/packs/locales/vanilla/ro.js.map
new file mode 100644
index 000000000..88e28f759
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ro.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ru.js b/priv/static/packs/locales/vanilla/ru.js
new file mode 100644
index 000000000..bff8d48ff
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ru.js differ
diff --git a/priv/static/packs/locales/vanilla/ru.js.map b/priv/static/packs/locales/vanilla/ru.js.map
new file mode 100644
index 000000000..166feb594
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ru.js.map differ
diff --git a/priv/static/packs/locales/vanilla/sk.js b/priv/static/packs/locales/vanilla/sk.js
new file mode 100644
index 000000000..038d2217f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sk.js differ
diff --git a/priv/static/packs/locales/vanilla/sk.js.map b/priv/static/packs/locales/vanilla/sk.js.map
new file mode 100644
index 000000000..3018fd651
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sk.js.map differ
diff --git a/priv/static/packs/locales/vanilla/sl.js b/priv/static/packs/locales/vanilla/sl.js
new file mode 100644
index 000000000..8028b5e33
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sl.js differ
diff --git a/priv/static/packs/locales/vanilla/sl.js.map b/priv/static/packs/locales/vanilla/sl.js.map
new file mode 100644
index 000000000..ecd3a811e
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sl.js.map differ
diff --git a/priv/static/packs/locales/vanilla/sr-Latn.js b/priv/static/packs/locales/vanilla/sr-Latn.js
new file mode 100644
index 000000000..c8dcd7855
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sr-Latn.js differ
diff --git a/priv/static/packs/locales/vanilla/sr-Latn.js.map b/priv/static/packs/locales/vanilla/sr-Latn.js.map
new file mode 100644
index 000000000..3cf3c341f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sr-Latn.js.map differ
diff --git a/priv/static/packs/locales/vanilla/sr.js b/priv/static/packs/locales/vanilla/sr.js
new file mode 100644
index 000000000..28679e60f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sr.js differ
diff --git a/priv/static/packs/locales/vanilla/sr.js.map b/priv/static/packs/locales/vanilla/sr.js.map
new file mode 100644
index 000000000..8ad76916f
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sr.js.map differ
diff --git a/priv/static/packs/locales/vanilla/sv.js b/priv/static/packs/locales/vanilla/sv.js
new file mode 100644
index 000000000..2a7dc4759
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sv.js differ
diff --git a/priv/static/packs/locales/vanilla/sv.js.map b/priv/static/packs/locales/vanilla/sv.js.map
new file mode 100644
index 000000000..3e4288723
Binary files /dev/null and b/priv/static/packs/locales/vanilla/sv.js.map differ
diff --git a/priv/static/packs/locales/vanilla/ta.js b/priv/static/packs/locales/vanilla/ta.js
new file mode 100644
index 000000000..e57826d73
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ta.js differ
diff --git a/priv/static/packs/locales/vanilla/ta.js.map b/priv/static/packs/locales/vanilla/ta.js.map
new file mode 100644
index 000000000..5e37b04ee
Binary files /dev/null and b/priv/static/packs/locales/vanilla/ta.js.map differ
diff --git a/priv/static/packs/locales/vanilla/te.js b/priv/static/packs/locales/vanilla/te.js
new file mode 100644
index 000000000..61931cc9a
Binary files /dev/null and b/priv/static/packs/locales/vanilla/te.js differ
diff --git a/priv/static/packs/locales/vanilla/te.js.map b/priv/static/packs/locales/vanilla/te.js.map
new file mode 100644
index 000000000..f0be962bd
Binary files /dev/null and b/priv/static/packs/locales/vanilla/te.js.map differ
diff --git a/priv/static/packs/locales/vanilla/th.js b/priv/static/packs/locales/vanilla/th.js
new file mode 100644
index 000000000..41d045af8
Binary files /dev/null and b/priv/static/packs/locales/vanilla/th.js differ
diff --git a/priv/static/packs/locales/vanilla/th.js.map b/priv/static/packs/locales/vanilla/th.js.map
new file mode 100644
index 000000000..c276573e7
Binary files /dev/null and b/priv/static/packs/locales/vanilla/th.js.map differ
diff --git a/priv/static/packs/locales/vanilla/tr.js b/priv/static/packs/locales/vanilla/tr.js
new file mode 100644
index 000000000..0355d27c2
Binary files /dev/null and b/priv/static/packs/locales/vanilla/tr.js differ
diff --git a/priv/static/packs/locales/vanilla/tr.js.map b/priv/static/packs/locales/vanilla/tr.js.map
new file mode 100644
index 000000000..f77851391
Binary files /dev/null and b/priv/static/packs/locales/vanilla/tr.js.map differ
diff --git a/priv/static/packs/locales/vanilla/uk.js b/priv/static/packs/locales/vanilla/uk.js
new file mode 100644
index 000000000..57635626d
Binary files /dev/null and b/priv/static/packs/locales/vanilla/uk.js differ
diff --git a/priv/static/packs/locales/vanilla/uk.js.map b/priv/static/packs/locales/vanilla/uk.js.map
new file mode 100644
index 000000000..99c6b81a5
Binary files /dev/null and b/priv/static/packs/locales/vanilla/uk.js.map differ
diff --git a/priv/static/packs/locales/vanilla/zh-CN.js b/priv/static/packs/locales/vanilla/zh-CN.js
new file mode 100644
index 000000000..3e9d572b0
Binary files /dev/null and b/priv/static/packs/locales/vanilla/zh-CN.js differ
diff --git a/priv/static/packs/locales/vanilla/zh-CN.js.map b/priv/static/packs/locales/vanilla/zh-CN.js.map
new file mode 100644
index 000000000..25d0c892c
Binary files /dev/null and b/priv/static/packs/locales/vanilla/zh-CN.js.map differ
diff --git a/priv/static/packs/locales/vanilla/zh-HK.js b/priv/static/packs/locales/vanilla/zh-HK.js
new file mode 100644
index 000000000..e0522ceec
Binary files /dev/null and b/priv/static/packs/locales/vanilla/zh-HK.js differ
diff --git a/priv/static/packs/locales/vanilla/zh-HK.js.map b/priv/static/packs/locales/vanilla/zh-HK.js.map
new file mode 100644
index 000000000..b868d9d54
Binary files /dev/null and b/priv/static/packs/locales/vanilla/zh-HK.js.map differ
diff --git a/priv/static/packs/locales/vanilla/zh-TW.js b/priv/static/packs/locales/vanilla/zh-TW.js
new file mode 100644
index 000000000..fb8a7b639
Binary files /dev/null and b/priv/static/packs/locales/vanilla/zh-TW.js differ
diff --git a/priv/static/packs/locales/vanilla/zh-TW.js.map b/priv/static/packs/locales/vanilla/zh-TW.js.map
new file mode 100644
index 000000000..5f072bb64
Binary files /dev/null and b/priv/static/packs/locales/vanilla/zh-TW.js.map differ
diff --git a/priv/static/packs/mailer.css b/priv/static/packs/mailer.css
deleted file mode 100644
index 5772cf81c..000000000
Binary files a/priv/static/packs/mailer.css and /dev/null differ
diff --git a/priv/static/packs/mailer.css.map b/priv/static/packs/mailer.css.map
deleted file mode 100644
index 9cb2c3a60..000000000
--- a/priv/static/packs/mailer.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///./app/javascript/styles/mailer.scss"],"names":[],"mappings":"AAAA,WAAW,uCAAuC,yYAAyY,gBAAgB,kBAAkB,WAAW,uCAAuC,+XAA+X,gBAAgB,kBAAkB,WAAW,uCAAuC,yYAAyY,gBAAgB,kBAAkB,WAAW,uCAAuC,8YAA8Y,gBAAgB,kBAAkB,aAAa,8BAA8B,sBAAsB,UAAU,qBAAqB,eAAe,SAAS,UAAU,8BAA8B,0BAA0B,8DAA8D,oBAAoB,mBAAmB,qBAAqB,cAAc,WAAW,UAAU,IAAI,aAAa,SAAS,qBAAqB,+BAA+B,WAAW,iBAAiB,MAAM,iBAAiB,mBAAmB,mBAAmB,GAAG,mBAAmB,mDAAmD,WAAW,eAAe,YAAY,sBAAsB,iBAAiB,kBAAkB,kBAAkB,mBAAmB,aAAa,iBAAiB,WAAW,oBAAoB,sBAAsB,yBAAyB,6EAA6E,YAAY,qBAAqB,WAAW,eAAe,sBAAsB,mBAAmB,cAAc,WAAW,eAAe,sBAAsB,aAAa,iBAAiB,oBAAoB,mBAAmB,yBAAyB,cAAc,iBAAiB,gBAAgB,4BAA4B,cAAc,kBAAkB,WAAW,cAAc,0BAA0B,WAAW,OAAO,eAAe,OAAO,gBAAgB,OAAO,gBAAgB,OAAO,gBAAgB,OAAO,gBAAgB,OAAO,gBAAgB,OAAO,gBAAgB,+BAA+B,uCAAuC,mBAAmB,+BAA+B,6DAA6D,wCAAwC,eAAe,iBAAiB,cAAc,6BAA6B,kCAAkC,EAAE,cAAc,aAAa,mBAAmB,QAAQ,eAAe,OAAO,eAAe,iBAAiB,kBAAkB,cAAc,kBAAkB,UAAU,gBAAgB,GAAG,eAAe,iBAAiB,GAAG,eAAe,iBAAiB,GAAG,eAAe,iBAAiB,GAAG,eAAe,iBAAiB,gBAAgB,cAAc,eAAe,eAAe,UAAU,mBAAmB,aAAa,iBAAiB,6BAA6B,kBAAkB,kBAAkB,gBAAgB,eAAe,0BAA0B,WAAW,YAAY,kBAAkB,mBAAmB,kBAAkB,mBAAmB,cAAc,yBAAyB,qBAAqB,yBAAyB,MAAM,yBAAyB,iBAAiB,kBAAkB,oBAAoB,qBAAqB,kBAAkB,yBAAyB,mBAAmB,QAAQ,0BAA0B,yBAAyB,qBAAqB,kBAAkB,iBAAiB,mBAAmB,eAAe,iBAAiB,aAAa,0BAA0B,iBAAiB,+BAA+B,cAAc,UAAU,eAAe,0BAA0B,gBAAgB,UAAU,cAAc,0BAA0B,YAAY,WAAW,MAAM,kBAAkB,UAAU,QAAQ,cAAc,iBAAiB,kBAAkB,WAAW,iBAAiB,6BAA6B,kBAAkB,kBAAkB,gBAAgB,eAAe,oBAAoB,+BAA+B,WAAW,wBAAwB,4BAA4B,6BAA6B,8BAA8B,aAAa,4BAA4B,2BAA2B,0BAA0B,wBAAwB,kBAAkB,eAAe,iBAAiB,0BAA0B,2BAA2B,2BAA2B,gBAAgB,yBAAyB,gBAAgB,yBAAyB,aAAa,kBAAkB,YAAY,iBAAiB,QAAQ,kBAAkB,mBAAmB,eAAe,oBAAoB,eAAe,mBAAmB,WAAW,WAAW,cAAc,kBAAkB,sBAAsB,iBAAiB,6BAA6B,aAAa,mBAAmB,mBAAmB,eAAe,eAAe,WAAW,YAAY,cAAc,iBAAiB,IAAI,WAAW,OAAO,YAAY,gBAAgB,6BAA6B,eAAe,gBAAgB,WAAW,uCAAuC,6BAA6B,QAAQ,oBAAoB,0BAA0B,eAAe,oBAAoB,2BAA2B,WAAW,eAAe,cAAc,gBAAgB,sCAAsC,mBAAmB,2BAA2B,WAAW,YAAY,kBAAkB,UAAU,eAAe,mBAAmB,wBAAwB,cAAc,eAAe,gBAAgB,0BAA0B,cAAc,YAAY,6BAA6B,GAAG,kBAAkB,aAAa,gBAAgB,iBAAiB,MAAM,mBAAmB,cAAc,WAAW,cAAc,0GAA0G,KAAK,6BAA6B,yBAAyB,2DAA2D,qBAAqB,yBAAyB,aAAa,2BAA2B,WAAW,8BAA8B,QAAQ,yBAAyB,2B","file":"mailer.css","sourcesContent":["@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}div,table,td{-webkit-box-sizing:border-box;box-sizing:border-box}body,html{width:100%!important;min-width:100%;margin:0;padding:0;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}.email-body a,.email-body div,.email-body span,.email-body td{line-height:inherit}a,a:visited,a span{text-decoration:none;color:#d8a070}#outlook a{padding:0}img{outline:none;border:0;text-decoration:none;-ms-interpolation-mode:bicubic;clear:both;line-height:100%}table{border-spacing:0;mso-table-lspace:0;mso-table-rspace:0}td{vertical-align:top}.column,.column-cell,.content-section,.email-table{width:100%;min-width:100%}.email-body{font-size:0!important;line-height:100%;text-align:center;padding-left:16px;padding-right:16px}.email-start{padding-top:32px}.email-end{padding-bottom:32px}.email-body,body,html{background-color:#192432}.col-0,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.email-container,.email-row{font-size:0;display:inline-block;width:100%;min-width:100%;min-width:0!important;vertical-align:top}.content-cell{width:100%;min-width:100%;min-width:0!important}.column-cell{padding-top:16px;padding-bottom:16px;vertical-align:top}.column-cell.button-cell{padding-top:0}.email-container{max-width:632px}.email-container,.email-row{margin:0 auto;text-align:center}.email-row{display:block;max-width:600px!important;clear:both}.col-0{max-width:50px}.col-1{max-width:100px}.col-2{max-width:200px}.col-3{max-width:300px}.col-4{max-width:400px}.col-5{max-width:500px}.col-6{max-width:600px}.column-cell,.column-cell td,p{font-family:Helvetica,Arial,sans-serif}@media only screen{.column-cell,.column-cell td,p{font-family:\"mastodon-font-sans-serif\",sans-serif!important}}.column-cell,.email-body .column-cell,p{font-size:15px;line-height:23px;color:#9baec8;mso-line-height-rule:exactly;text-rendering:optimizelegibility}p{display:block;margin-top:0;margin-bottom:16px}p.small{font-size:13px}p.lead{font-size:19px;line-height:27px}h1,h2,h3,h4,h5,h6{color:#d9e1e8;margin:20px 0 8px;padding:0;font-weight:500}h1{font-size:26px;line-height:36px}h2{font-size:23px;line-height:30px}h3{font-size:19px;line-height:25px}h5{font-size:16px;line-height:21px;font-weight:700;color:#4c6d98}.input-cell h5{margin-top:4px}.input td{background:#040609;padding:16px;line-height:20px;mso-line-height-rule:exactly;border-radius:4px;text-align:center;font-weight:500;font-size:17px}.blank-cell,.content-cell{width:100%;font-size:0;text-align:center;vertical-align:top;padding-left:16px;padding-right:16px}.content-cell{background-color:#0b1016}.content-cell.darker{background-color:#040609}.hero{background-color:#121a24;padding-top:20px}.hero-with-button{padding-bottom:16px}.hero-with-button h1{margin-bottom:4px}.hero-with-button p.lead{margin-bottom:32px}.header{border-radius:5px 5px 0 0;background-color:#040609}.header .column-cell{text-align:center;padding-top:20px;padding-bottom:8px}.content-start{padding-top:32px}.content-end{border-radius:0 0 5px 5px;padding-top:16px}.footer .column-cell,.footer p{color:#4c6d98}.footer p{font-size:13px}.footer p,.footer p.small{margin-bottom:0}.footer a{color:#4c6d98;text-decoration:underline}.footer img{opacity:.3}.logo{position:relative;left:-4px}.button{display:table;margin-left:auto;margin-right:auto}.button td{line-height:20px;mso-line-height-rule:exactly;border-radius:4px;text-align:center;font-weight:500;font-size:17px;padding:0!important}.button td a,.button td a span{color:#fff;display:block!important;text-align:center!important;vertical-align:top!important;line-height:inherit!important}.button td a{padding:10px 22px!important;line-height:26px!important;font-weight:500!important}.button.button-small td{border-radius:4px;font-size:14px;padding:8px 16px}.button.button-small td a{padding:5px 16px!important;line-height:26px!important}.button-default{background-color:#040609}.button-primary{background-color:#d59864}.text-center{text-align:center}.text-right{text-align:right}.padded{padding-left:16px;padding-right:16px}.padded-bottom{padding-bottom:32px}.margin-bottom{margin-bottom:20px}.hero-icon{width:64px}.hero-icon td{text-align:center;vertical-align:middle;line-height:100%;mso-line-height-rule:exactly;padding:16px;border-radius:80px;background:#79bd9a}.hero-icon img{max-width:32px;width:32px;height:32px;display:block;line-height:100%}.hr{width:100%}.hr td{font-size:0;line-height:1px;mso-line-height-rule:exactly;min-height:1px;overflow:hidden;height:2px;background-color:transparent!important;border-top:1px solid #202e3f}.status{padding-bottom:32px}.status .status-header td{font-size:14px;padding-bottom:15px}.status .status-header bdi{color:#fff;font-size:16px;display:block;font-weight:500}.status .status-header td:first-child{padding-right:10px}.status .status-header img{width:48px;height:48px;border-radius:4px}.status p{font-size:19px;margin-bottom:20px}.status p.status-footer{color:#3e5a7c;font-size:14px;margin-bottom:0}.status p.status-footer a{color:#3e5a7c}.border-top{border-top:1px solid #202e3f}ul{padding-left:15px;margin-top:0;margin-bottom:0;padding-top:16px}ul li{margin-bottom:16px;color:#3e5a7c}ul li span{color:#9baec8}@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:landscape){body{min-height:1024px!important}}@media (max-width:697px){.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.email-container{width:100%!important;max-width:none!important}.email-start{padding-top:16px!important}.email-end{padding-bottom:16px!important}.padded{padding-left:0!important;padding-right:0!important}}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/mailer.js b/priv/static/packs/mailer.js
deleted file mode 100644
index 09aadd4bd..000000000
Binary files a/priv/static/packs/mailer.js and /dev/null differ
diff --git a/priv/static/packs/mailer.js.map b/priv/static/packs/mailer.js.map
deleted file mode 100644
index 51c29215b..000000000
Binary files a/priv/static/packs/mailer.js.map and /dev/null differ
diff --git a/priv/static/packs/manifest.json b/priv/static/packs/manifest.json
index d5533ab3e..5ccdbbd29 100644
--- a/priv/static/packs/manifest.json
+++ b/priv/static/packs/manifest.json
@@ -1,217 +1,425 @@
{
- "common.css": "/packs/common.css",
- "common.js": "/packs/common.js",
- "common.css.map": "/packs/common.css.map",
- "common.js.map": "/packs/common.js.map",
- "containers/media_container.js": "/packs/containers/media_container.js",
- "containers/media_container.js.map": "/packs/containers/media_container.js.map",
- "features/list_editor.js": "/packs/features/list_editor.js",
- "features/list_editor.js.map": "/packs/features/list_editor.js.map",
- "modals/embed_modal.js": "/packs/modals/embed_modal.js",
- "modals/embed_modal.js.map": "/packs/modals/embed_modal.js.map",
- "modals/report_modal.js": "/packs/modals/report_modal.js",
- "modals/report_modal.js.map": "/packs/modals/report_modal.js.map",
- "modals/mute_modal.js": "/packs/modals/mute_modal.js",
- "modals/mute_modal.js.map": "/packs/modals/mute_modal.js.map",
- "modals/onboarding_modal.js": "/packs/modals/onboarding_modal.js",
- "modals/onboarding_modal.js.map": "/packs/modals/onboarding_modal.js.map",
- "features/mutes.js": "/packs/features/mutes.js",
- "features/mutes.js.map": "/packs/features/mutes.js.map",
- "features/domain_blocks.js": "/packs/features/domain_blocks.js",
- "features/domain_blocks.js.map": "/packs/features/domain_blocks.js.map",
- "features/blocks.js": "/packs/features/blocks.js",
- "features/blocks.js.map": "/packs/features/blocks.js.map",
- "features/favourited_statuses.js": "/packs/features/favourited_statuses.js",
- "features/favourited_statuses.js.map": "/packs/features/favourited_statuses.js.map",
- "features/generic_not_found.js": "/packs/features/generic_not_found.js",
- "features/generic_not_found.js.map": "/packs/features/generic_not_found.js.map",
- "features/follow_requests.js": "/packs/features/follow_requests.js",
- "features/follow_requests.js.map": "/packs/features/follow_requests.js.map",
- "features/favourites.js": "/packs/features/favourites.js",
- "features/favourites.js.map": "/packs/features/favourites.js.map",
- "features/reblogs.js": "/packs/features/reblogs.js",
- "features/reblogs.js.map": "/packs/features/reblogs.js.map",
- "features/following.js": "/packs/features/following.js",
- "features/following.js.map": "/packs/features/following.js.map",
- "features/followers.js": "/packs/features/followers.js",
- "features/followers.js.map": "/packs/features/followers.js.map",
- "features/account_gallery.js": "/packs/features/account_gallery.js",
- "features/account_gallery.js.map": "/packs/features/account_gallery.js.map",
- "features/account_timeline.js": "/packs/features/account_timeline.js",
- "features/account_timeline.js.map": "/packs/features/account_timeline.js.map",
- "features/pinned_statuses.js": "/packs/features/pinned_statuses.js",
- "features/pinned_statuses.js.map": "/packs/features/pinned_statuses.js.map",
- "features/keyboard_shortcuts.js": "/packs/features/keyboard_shortcuts.js",
- "features/keyboard_shortcuts.js.map": "/packs/features/keyboard_shortcuts.js.map",
- "features/getting_started.js": "/packs/features/getting_started.js",
- "features/getting_started.js.map": "/packs/features/getting_started.js.map",
- "features/status.js": "/packs/features/status.js",
- "features/status.js.map": "/packs/features/status.js.map",
- "features/lists.js": "/packs/features/lists.js",
- "features/lists.js.map": "/packs/features/lists.js.map",
- "features/list_timeline.js": "/packs/features/list_timeline.js",
- "features/list_timeline.js.map": "/packs/features/list_timeline.js.map",
- "features/direct_timeline.js": "/packs/features/direct_timeline.js",
- "features/direct_timeline.js.map": "/packs/features/direct_timeline.js.map",
- "features/hashtag_timeline.js": "/packs/features/hashtag_timeline.js",
- "features/hashtag_timeline.js.map": "/packs/features/hashtag_timeline.js.map",
- "features/community_timeline.js": "/packs/features/community_timeline.js",
- "features/community_timeline.js.map": "/packs/features/community_timeline.js.map",
- "features/public_timeline.js": "/packs/features/public_timeline.js",
- "features/public_timeline.js.map": "/packs/features/public_timeline.js.map",
- "features/home_timeline.js": "/packs/features/home_timeline.js",
- "features/home_timeline.js.map": "/packs/features/home_timeline.js.map",
- "features/notifications.js": "/packs/features/notifications.js",
- "features/notifications.js.map": "/packs/features/notifications.js.map",
- "features/compose.js": "/packs/features/compose.js",
- "features/compose.js.map": "/packs/features/compose.js.map",
- "emoji_picker.js": "/packs/emoji_picker.js",
- "emoji_picker.js.map": "/packs/emoji_picker.js.map",
- "extra_polyfills.js": "/packs/extra_polyfills.js",
- "extra_polyfills.js.map": "/packs/extra_polyfills.js.map",
- "base_polyfills.js": "/packs/base_polyfills.js",
- "base_polyfills.js.map": "/packs/base_polyfills.js.map",
- "mastodon-light.css": "/packs/mastodon-light.css",
- "mastodon-light.js": "/packs/mastodon-light.js",
- "mastodon-light.css.map": "/packs/mastodon-light.css.map",
- "mastodon-light.js.map": "/packs/mastodon-light.js.map",
- "contrast.css": "/packs/contrast.css",
- "contrast.js": "/packs/contrast.js",
- "contrast.css.map": "/packs/contrast.css.map",
- "contrast.js.map": "/packs/contrast.js.map",
- "default.css": "/packs/default.css",
- "default.js": "/packs/default.js",
- "default.css.map": "/packs/default.css.map",
- "default.js.map": "/packs/default.js.map",
- "locale_zh-TW.js": "/packs/locale_zh-TW.js",
- "locale_zh-TW.js.map": "/packs/locale_zh-TW.js.map",
- "locale_zh-HK.js": "/packs/locale_zh-HK.js",
- "locale_zh-HK.js.map": "/packs/locale_zh-HK.js.map",
- "locale_zh-CN.js": "/packs/locale_zh-CN.js",
- "locale_zh-CN.js.map": "/packs/locale_zh-CN.js.map",
- "locale_uk.js": "/packs/locale_uk.js",
- "locale_uk.js.map": "/packs/locale_uk.js.map",
- "locale_tr.js": "/packs/locale_tr.js",
- "locale_tr.js.map": "/packs/locale_tr.js.map",
- "locale_th.js": "/packs/locale_th.js",
- "locale_th.js.map": "/packs/locale_th.js.map",
- "locale_te.js": "/packs/locale_te.js",
- "locale_te.js.map": "/packs/locale_te.js.map",
- "locale_ta.js": "/packs/locale_ta.js",
- "locale_ta.js.map": "/packs/locale_ta.js.map",
- "locale_sv.js": "/packs/locale_sv.js",
- "locale_sv.js.map": "/packs/locale_sv.js.map",
- "locale_sr.js": "/packs/locale_sr.js",
- "locale_sr.js.map": "/packs/locale_sr.js.map",
- "locale_sr-Latn.js": "/packs/locale_sr-Latn.js",
- "locale_sr-Latn.js.map": "/packs/locale_sr-Latn.js.map",
- "locale_sl.js": "/packs/locale_sl.js",
- "locale_sl.js.map": "/packs/locale_sl.js.map",
- "locale_sk.js": "/packs/locale_sk.js",
- "locale_sk.js.map": "/packs/locale_sk.js.map",
- "locale_ru.js": "/packs/locale_ru.js",
- "locale_ru.js.map": "/packs/locale_ru.js.map",
- "locale_ro.js": "/packs/locale_ro.js",
- "locale_ro.js.map": "/packs/locale_ro.js.map",
- "locale_pt.js": "/packs/locale_pt.js",
- "locale_pt.js.map": "/packs/locale_pt.js.map",
- "locale_pt-BR.js": "/packs/locale_pt-BR.js",
- "locale_pt-BR.js.map": "/packs/locale_pt-BR.js.map",
- "locale_pl.js": "/packs/locale_pl.js",
- "locale_pl.js.map": "/packs/locale_pl.js.map",
- "locale_oc.js": "/packs/locale_oc.js",
- "locale_oc.js.map": "/packs/locale_oc.js.map",
- "locale_no.js": "/packs/locale_no.js",
- "locale_no.js.map": "/packs/locale_no.js.map",
- "locale_nl.js": "/packs/locale_nl.js",
- "locale_nl.js.map": "/packs/locale_nl.js.map",
- "locale_ko.js": "/packs/locale_ko.js",
- "locale_ko.js.map": "/packs/locale_ko.js.map",
- "locale_ka.js": "/packs/locale_ka.js",
- "locale_ka.js.map": "/packs/locale_ka.js.map",
- "locale_ja.js": "/packs/locale_ja.js",
- "locale_ja.js.map": "/packs/locale_ja.js.map",
- "locale_it.js": "/packs/locale_it.js",
- "locale_it.js.map": "/packs/locale_it.js.map",
- "locale_io.js": "/packs/locale_io.js",
- "locale_io.js.map": "/packs/locale_io.js.map",
- "locale_id.js": "/packs/locale_id.js",
- "locale_id.js.map": "/packs/locale_id.js.map",
- "locale_hy.js": "/packs/locale_hy.js",
- "locale_hy.js.map": "/packs/locale_hy.js.map",
- "locale_hu.js": "/packs/locale_hu.js",
- "locale_hu.js.map": "/packs/locale_hu.js.map",
- "locale_hr.js": "/packs/locale_hr.js",
- "locale_hr.js.map": "/packs/locale_hr.js.map",
- "locale_he.js": "/packs/locale_he.js",
- "locale_he.js.map": "/packs/locale_he.js.map",
- "locale_gl.js": "/packs/locale_gl.js",
- "locale_gl.js.map": "/packs/locale_gl.js.map",
- "locale_fr.js": "/packs/locale_fr.js",
- "locale_fr.js.map": "/packs/locale_fr.js.map",
- "locale_fi.js": "/packs/locale_fi.js",
- "locale_fi.js.map": "/packs/locale_fi.js.map",
- "locale_fa.js": "/packs/locale_fa.js",
- "locale_fa.js.map": "/packs/locale_fa.js.map",
- "locale_eu.js": "/packs/locale_eu.js",
- "locale_eu.js.map": "/packs/locale_eu.js.map",
- "locale_es.js": "/packs/locale_es.js",
- "locale_es.js.map": "/packs/locale_es.js.map",
- "locale_eo.js": "/packs/locale_eo.js",
- "locale_eo.js.map": "/packs/locale_eo.js.map",
- "locale_en.js": "/packs/locale_en.js",
- "locale_en.js.map": "/packs/locale_en.js.map",
- "locale_el.js": "/packs/locale_el.js",
- "locale_el.js.map": "/packs/locale_el.js.map",
- "locale_de.js": "/packs/locale_de.js",
- "locale_de.js.map": "/packs/locale_de.js.map",
- "locale_da.js": "/packs/locale_da.js",
- "locale_da.js.map": "/packs/locale_da.js.map",
- "locale_cy.js": "/packs/locale_cy.js",
- "locale_cy.js.map": "/packs/locale_cy.js.map",
- "locale_cs.js": "/packs/locale_cs.js",
- "locale_cs.js.map": "/packs/locale_cs.js.map",
- "locale_co.js": "/packs/locale_co.js",
- "locale_co.js.map": "/packs/locale_co.js.map",
- "locale_ca.js": "/packs/locale_ca.js",
- "locale_ca.js.map": "/packs/locale_ca.js.map",
- "locale_bg.js": "/packs/locale_bg.js",
- "locale_bg.js.map": "/packs/locale_bg.js.map",
- "locale_ast.js": "/packs/locale_ast.js",
- "locale_ast.js.map": "/packs/locale_ast.js.map",
- "locale_ar.js": "/packs/locale_ar.js",
- "locale_ar.js.map": "/packs/locale_ar.js.map",
- "share.js": "/packs/share.js",
- "share.js.map": "/packs/share.js.map",
- "public.js": "/packs/public.js",
- "public.js.map": "/packs/public.js.map",
- "mailer.css": "/packs/mailer.css",
- "mailer.js": "/packs/mailer.js",
- "mailer.css.map": "/packs/mailer.css.map",
- "mailer.js.map": "/packs/mailer.js.map",
- "application.js": "/packs/application.js",
- "application.js.map": "/packs/application.js.map",
- "admin.js": "/packs/admin.js",
- "admin.js.map": "/packs/admin.js.map",
- "about.js": "/packs/about.js",
- "about.js.map": "/packs/about.js.map",
- "reticle.png": "/packs/reticle-6490ecbb61185e86e62dca0845cf2dcf.png",
+ "MSSansSerif.ttf": "/packs/MSSansSerif-a678e38bb3e20736cbed7a6925f24666.ttf",
"Montserrat-Medium.ttf": "/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf",
"Montserrat-Regular.ttf": "/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf",
"Montserrat-Regular.woff": "/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff",
"Montserrat-Regular.woff2": "/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2",
- "robotomono-regular-webfont.svg": "/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg",
- "robotomono-regular-webfont.ttf": "/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf",
- "robotomono-regular-webfont.woff": "/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff",
- "robotomono-regular-webfont.woff2": "/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2",
- "roboto-regular-webfont.svg": "/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg",
- "roboto-regular-webfont.ttf": "/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf",
- "roboto-regular-webfont.woff": "/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff",
- "roboto-regular-webfont.woff2": "/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2",
- "roboto-medium-webfont.svg": "/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg",
- "roboto-medium-webfont.ttf": "/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf",
- "roboto-medium-webfont.woff": "/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff",
- "roboto-medium-webfont.woff2": "/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2",
+ "base_polyfills.js": "/packs/base_polyfills.js",
+ "base_polyfills.js.map": "/packs/base_polyfills.js.map",
+ "clippy_frame.png": "/packs/clippy_frame-3446d4d28d72aef2f64f7fabae30eb4a.png",
+ "clippy_wave.gif": "/packs/clippy_wave-afb828463da264adbce26a3f17731f6c.gif",
+ "common.js": "/packs/common.js",
+ "common.js.map": "/packs/common.js.map",
+ "containers/media_container.js": "/packs/containers/media_container.js",
+ "containers/media_container.js.map": "/packs/containers/media_container.js.map",
+ "core/admin.js": "/packs/core/admin.js",
+ "core/admin.js.map": "/packs/core/admin.js.map",
+ "core/common.css": "/packs/core/common.css",
+ "core/common.css.map": "/packs/core/common.css.map",
+ "core/common.js": "/packs/core/common.js",
+ "core/common.js.map": "/packs/core/common.js.map",
+ "core/embed.js": "/packs/core/embed.js",
+ "core/embed.js.map": "/packs/core/embed.js.map",
+ "core/mailer.css": "/packs/core/mailer.css",
+ "core/mailer.css.map": "/packs/core/mailer.css.map",
+ "core/mailer.js": "/packs/core/mailer.js",
+ "core/mailer.js.map": "/packs/core/mailer.js.map",
+ "core/public.js": "/packs/core/public.js",
+ "core/public.js.map": "/packs/core/public.js.map",
+ "core/settings.js": "/packs/core/settings.js",
+ "core/settings.js.map": "/packs/core/settings.js.map",
+ "emoji_picker.js": "/packs/emoji_picker.js",
+ "emoji_picker.js.map": "/packs/emoji_picker.js.map",
+ "extra_polyfills.js": "/packs/extra_polyfills.js",
+ "extra_polyfills.js.map": "/packs/extra_polyfills.js.map",
+ "features/account_gallery.js": "/packs/features/account_gallery.js",
+ "features/account_gallery.js.map": "/packs/features/account_gallery.js.map",
+ "features/account_timeline.js": "/packs/features/account_timeline.js",
+ "features/account_timeline.js.map": "/packs/features/account_timeline.js.map",
+ "features/blocks.js": "/packs/features/blocks.js",
+ "features/blocks.js.map": "/packs/features/blocks.js.map",
+ "features/community_timeline.js": "/packs/features/community_timeline.js",
+ "features/community_timeline.js.map": "/packs/features/community_timeline.js.map",
+ "features/compose.js": "/packs/features/compose.js",
+ "features/compose.js.map": "/packs/features/compose.js.map",
+ "features/direct_timeline.js": "/packs/features/direct_timeline.js",
+ "features/direct_timeline.js.map": "/packs/features/direct_timeline.js.map",
+ "features/domain_blocks.js": "/packs/features/domain_blocks.js",
+ "features/domain_blocks.js.map": "/packs/features/domain_blocks.js.map",
+ "features/favourited_statuses.js": "/packs/features/favourited_statuses.js",
+ "features/favourited_statuses.js.map": "/packs/features/favourited_statuses.js.map",
+ "features/favourites.js": "/packs/features/favourites.js",
+ "features/favourites.js.map": "/packs/features/favourites.js.map",
+ "features/follow_requests.js": "/packs/features/follow_requests.js",
+ "features/follow_requests.js.map": "/packs/features/follow_requests.js.map",
+ "features/followers.js": "/packs/features/followers.js",
+ "features/followers.js.map": "/packs/features/followers.js.map",
+ "features/following.js": "/packs/features/following.js",
+ "features/following.js.map": "/packs/features/following.js.map",
+ "features/generic_not_found.js": "/packs/features/generic_not_found.js",
+ "features/generic_not_found.js.map": "/packs/features/generic_not_found.js.map",
+ "features/getting_started.js": "/packs/features/getting_started.js",
+ "features/getting_started.js.map": "/packs/features/getting_started.js.map",
+ "features/glitch/async/list_adder.js": "/packs/features/glitch/async/list_adder.js",
+ "features/glitch/async/list_adder.js.map": "/packs/features/glitch/async/list_adder.js.map",
+ "features/hashtag_timeline.js": "/packs/features/hashtag_timeline.js",
+ "features/hashtag_timeline.js.map": "/packs/features/hashtag_timeline.js.map",
+ "features/home_timeline.js": "/packs/features/home_timeline.js",
+ "features/home_timeline.js.map": "/packs/features/home_timeline.js.map",
+ "features/keyboard_shortcuts.js": "/packs/features/keyboard_shortcuts.js",
+ "features/keyboard_shortcuts.js.map": "/packs/features/keyboard_shortcuts.js.map",
+ "features/list_adder.js": "/packs/features/list_adder.js",
+ "features/list_adder.js.map": "/packs/features/list_adder.js.map",
+ "features/list_editor.js": "/packs/features/list_editor.js",
+ "features/list_editor.js.map": "/packs/features/list_editor.js.map",
+ "features/list_timeline.js": "/packs/features/list_timeline.js",
+ "features/list_timeline.js.map": "/packs/features/list_timeline.js.map",
+ "features/lists.js": "/packs/features/lists.js",
+ "features/lists.js.map": "/packs/features/lists.js.map",
+ "features/mutes.js": "/packs/features/mutes.js",
+ "features/mutes.js.map": "/packs/features/mutes.js.map",
+ "features/notifications.js": "/packs/features/notifications.js",
+ "features/notifications.js.map": "/packs/features/notifications.js.map",
+ "features/pinned_statuses.js": "/packs/features/pinned_statuses.js",
+ "features/pinned_statuses.js.map": "/packs/features/pinned_statuses.js.map",
+ "features/public_timeline.js": "/packs/features/public_timeline.js",
+ "features/public_timeline.js.map": "/packs/features/public_timeline.js.map",
+ "features/reblogs.js": "/packs/features/reblogs.js",
+ "features/reblogs.js.map": "/packs/features/reblogs.js.map",
+ "features/status.js": "/packs/features/status.js",
+ "features/status.js.map": "/packs/features/status.js.map",
+ "flavours/glitch/about.js": "/packs/flavours/glitch/about.js",
+ "flavours/glitch/about.js.map": "/packs/flavours/glitch/about.js.map",
+ "flavours/glitch/admin.js": "/packs/flavours/glitch/admin.js",
+ "flavours/glitch/admin.js.map": "/packs/flavours/glitch/admin.js.map",
+ "flavours/glitch/async/account_gallery.js": "/packs/flavours/glitch/async/account_gallery.js",
+ "flavours/glitch/async/account_gallery.js.map": "/packs/flavours/glitch/async/account_gallery.js.map",
+ "flavours/glitch/async/account_timeline.js": "/packs/flavours/glitch/async/account_timeline.js",
+ "flavours/glitch/async/account_timeline.js.map": "/packs/flavours/glitch/async/account_timeline.js.map",
+ "flavours/glitch/async/blocks.js": "/packs/flavours/glitch/async/blocks.js",
+ "flavours/glitch/async/blocks.js.map": "/packs/flavours/glitch/async/blocks.js.map",
+ "flavours/glitch/async/bookmarked_statuses.js": "/packs/flavours/glitch/async/bookmarked_statuses.js",
+ "flavours/glitch/async/bookmarked_statuses.js.map": "/packs/flavours/glitch/async/bookmarked_statuses.js.map",
+ "flavours/glitch/async/community_timeline.js": "/packs/flavours/glitch/async/community_timeline.js",
+ "flavours/glitch/async/community_timeline.js.map": "/packs/flavours/glitch/async/community_timeline.js.map",
+ "flavours/glitch/async/direct_timeline.js": "/packs/flavours/glitch/async/direct_timeline.js",
+ "flavours/glitch/async/direct_timeline.js.map": "/packs/flavours/glitch/async/direct_timeline.js.map",
+ "flavours/glitch/async/domain_blocks.js": "/packs/flavours/glitch/async/domain_blocks.js",
+ "flavours/glitch/async/domain_blocks.js.map": "/packs/flavours/glitch/async/domain_blocks.js.map",
+ "flavours/glitch/async/drawer.js": "/packs/flavours/glitch/async/drawer.js",
+ "flavours/glitch/async/drawer.js.map": "/packs/flavours/glitch/async/drawer.js.map",
+ "flavours/glitch/async/embed_modal.js": "/packs/flavours/glitch/async/embed_modal.js",
+ "flavours/glitch/async/embed_modal.js.map": "/packs/flavours/glitch/async/embed_modal.js.map",
+ "flavours/glitch/async/emoji_picker.js": "/packs/flavours/glitch/async/emoji_picker.js",
+ "flavours/glitch/async/emoji_picker.js.map": "/packs/flavours/glitch/async/emoji_picker.js.map",
+ "flavours/glitch/async/favourited_statuses.js": "/packs/flavours/glitch/async/favourited_statuses.js",
+ "flavours/glitch/async/favourited_statuses.js.map": "/packs/flavours/glitch/async/favourited_statuses.js.map",
+ "flavours/glitch/async/favourites.js": "/packs/flavours/glitch/async/favourites.js",
+ "flavours/glitch/async/favourites.js.map": "/packs/flavours/glitch/async/favourites.js.map",
+ "flavours/glitch/async/follow_requests.js": "/packs/flavours/glitch/async/follow_requests.js",
+ "flavours/glitch/async/follow_requests.js.map": "/packs/flavours/glitch/async/follow_requests.js.map",
+ "flavours/glitch/async/followers.js": "/packs/flavours/glitch/async/followers.js",
+ "flavours/glitch/async/followers.js.map": "/packs/flavours/glitch/async/followers.js.map",
+ "flavours/glitch/async/following.js": "/packs/flavours/glitch/async/following.js",
+ "flavours/glitch/async/following.js.map": "/packs/flavours/glitch/async/following.js.map",
+ "flavours/glitch/async/generic_not_found.js": "/packs/flavours/glitch/async/generic_not_found.js",
+ "flavours/glitch/async/generic_not_found.js.map": "/packs/flavours/glitch/async/generic_not_found.js.map",
+ "flavours/glitch/async/getting_started.js": "/packs/flavours/glitch/async/getting_started.js",
+ "flavours/glitch/async/getting_started.js.map": "/packs/flavours/glitch/async/getting_started.js.map",
+ "flavours/glitch/async/getting_started_misc.js": "/packs/flavours/glitch/async/getting_started_misc.js",
+ "flavours/glitch/async/getting_started_misc.js.map": "/packs/flavours/glitch/async/getting_started_misc.js.map",
+ "flavours/glitch/async/hashtag_timeline.js": "/packs/flavours/glitch/async/hashtag_timeline.js",
+ "flavours/glitch/async/hashtag_timeline.js.map": "/packs/flavours/glitch/async/hashtag_timeline.js.map",
+ "flavours/glitch/async/home_timeline.js": "/packs/flavours/glitch/async/home_timeline.js",
+ "flavours/glitch/async/home_timeline.js.map": "/packs/flavours/glitch/async/home_timeline.js.map",
+ "flavours/glitch/async/keyboard_shortcuts.js": "/packs/flavours/glitch/async/keyboard_shortcuts.js",
+ "flavours/glitch/async/keyboard_shortcuts.js.map": "/packs/flavours/glitch/async/keyboard_shortcuts.js.map",
+ "flavours/glitch/async/list_editor.js": "/packs/flavours/glitch/async/list_editor.js",
+ "flavours/glitch/async/list_editor.js.map": "/packs/flavours/glitch/async/list_editor.js.map",
+ "flavours/glitch/async/list_timeline.js": "/packs/flavours/glitch/async/list_timeline.js",
+ "flavours/glitch/async/list_timeline.js.map": "/packs/flavours/glitch/async/list_timeline.js.map",
+ "flavours/glitch/async/lists.js": "/packs/flavours/glitch/async/lists.js",
+ "flavours/glitch/async/lists.js.map": "/packs/flavours/glitch/async/lists.js.map",
+ "flavours/glitch/async/mute_modal.js": "/packs/flavours/glitch/async/mute_modal.js",
+ "flavours/glitch/async/mute_modal.js.map": "/packs/flavours/glitch/async/mute_modal.js.map",
+ "flavours/glitch/async/mutes.js": "/packs/flavours/glitch/async/mutes.js",
+ "flavours/glitch/async/mutes.js.map": "/packs/flavours/glitch/async/mutes.js.map",
+ "flavours/glitch/async/notifications.js": "/packs/flavours/glitch/async/notifications.js",
+ "flavours/glitch/async/notifications.js.map": "/packs/flavours/glitch/async/notifications.js.map",
+ "flavours/glitch/async/onboarding_modal.js": "/packs/flavours/glitch/async/onboarding_modal.js",
+ "flavours/glitch/async/onboarding_modal.js.map": "/packs/flavours/glitch/async/onboarding_modal.js.map",
+ "flavours/glitch/async/pinned_accounts_editor.js": "/packs/flavours/glitch/async/pinned_accounts_editor.js",
+ "flavours/glitch/async/pinned_accounts_editor.js.map": "/packs/flavours/glitch/async/pinned_accounts_editor.js.map",
+ "flavours/glitch/async/pinned_statuses.js": "/packs/flavours/glitch/async/pinned_statuses.js",
+ "flavours/glitch/async/pinned_statuses.js.map": "/packs/flavours/glitch/async/pinned_statuses.js.map",
+ "flavours/glitch/async/public_timeline.js": "/packs/flavours/glitch/async/public_timeline.js",
+ "flavours/glitch/async/public_timeline.js.map": "/packs/flavours/glitch/async/public_timeline.js.map",
+ "flavours/glitch/async/reblogs.js": "/packs/flavours/glitch/async/reblogs.js",
+ "flavours/glitch/async/reblogs.js.map": "/packs/flavours/glitch/async/reblogs.js.map",
+ "flavours/glitch/async/report_modal.js": "/packs/flavours/glitch/async/report_modal.js",
+ "flavours/glitch/async/report_modal.js.map": "/packs/flavours/glitch/async/report_modal.js.map",
+ "flavours/glitch/async/settings_modal.js": "/packs/flavours/glitch/async/settings_modal.js",
+ "flavours/glitch/async/settings_modal.js.map": "/packs/flavours/glitch/async/settings_modal.js.map",
+ "flavours/glitch/async/status.js": "/packs/flavours/glitch/async/status.js",
+ "flavours/glitch/async/status.js.map": "/packs/flavours/glitch/async/status.js.map",
+ "flavours/glitch/common.css": "/packs/flavours/glitch/common.css",
+ "flavours/glitch/common.css.map": "/packs/flavours/glitch/common.css.map",
+ "flavours/glitch/common.js": "/packs/flavours/glitch/common.js",
+ "flavours/glitch/common.js.map": "/packs/flavours/glitch/common.js.map",
+ "flavours/glitch/embed.js": "/packs/flavours/glitch/embed.js",
+ "flavours/glitch/embed.js.map": "/packs/flavours/glitch/embed.js.map",
+ "flavours/glitch/home.js": "/packs/flavours/glitch/home.js",
+ "flavours/glitch/home.js.map": "/packs/flavours/glitch/home.js.map",
+ "flavours/glitch/public.js": "/packs/flavours/glitch/public.js",
+ "flavours/glitch/public.js.map": "/packs/flavours/glitch/public.js.map",
+ "flavours/glitch/share.js": "/packs/flavours/glitch/share.js",
+ "flavours/glitch/share.js.map": "/packs/flavours/glitch/share.js.map",
+ "flavours/vanilla/about.css": "/packs/flavours/vanilla/about.css",
+ "flavours/vanilla/about.css.map": "/packs/flavours/vanilla/about.css.map",
+ "flavours/vanilla/about.js": "/packs/flavours/vanilla/about.js",
+ "flavours/vanilla/about.js.map": "/packs/flavours/vanilla/about.js.map",
+ "flavours/vanilla/admin.css": "/packs/flavours/vanilla/admin.css",
+ "flavours/vanilla/admin.css.map": "/packs/flavours/vanilla/admin.css.map",
+ "flavours/vanilla/admin.js": "/packs/flavours/vanilla/admin.js",
+ "flavours/vanilla/admin.js.map": "/packs/flavours/vanilla/admin.js.map",
+ "flavours/vanilla/common.css": "/packs/flavours/vanilla/common.css",
+ "flavours/vanilla/common.css.map": "/packs/flavours/vanilla/common.css.map",
+ "flavours/vanilla/common.js": "/packs/flavours/vanilla/common.js",
+ "flavours/vanilla/common.js.map": "/packs/flavours/vanilla/common.js.map",
+ "flavours/vanilla/embed.css": "/packs/flavours/vanilla/embed.css",
+ "flavours/vanilla/embed.css.map": "/packs/flavours/vanilla/embed.css.map",
+ "flavours/vanilla/embed.js": "/packs/flavours/vanilla/embed.js",
+ "flavours/vanilla/embed.js.map": "/packs/flavours/vanilla/embed.js.map",
+ "flavours/vanilla/home.css": "/packs/flavours/vanilla/home.css",
+ "flavours/vanilla/home.css.map": "/packs/flavours/vanilla/home.css.map",
+ "flavours/vanilla/home.js": "/packs/flavours/vanilla/home.js",
+ "flavours/vanilla/home.js.map": "/packs/flavours/vanilla/home.js.map",
+ "flavours/vanilla/public.css": "/packs/flavours/vanilla/public.css",
+ "flavours/vanilla/public.css.map": "/packs/flavours/vanilla/public.css.map",
+ "flavours/vanilla/public.js": "/packs/flavours/vanilla/public.js",
+ "flavours/vanilla/public.js.map": "/packs/flavours/vanilla/public.js.map",
+ "flavours/vanilla/settings.css": "/packs/flavours/vanilla/settings.css",
+ "flavours/vanilla/settings.css.map": "/packs/flavours/vanilla/settings.css.map",
+ "flavours/vanilla/settings.js": "/packs/flavours/vanilla/settings.js",
+ "flavours/vanilla/settings.js.map": "/packs/flavours/vanilla/settings.js.map",
+ "flavours/vanilla/share.css": "/packs/flavours/vanilla/share.css",
+ "flavours/vanilla/share.css.map": "/packs/flavours/vanilla/share.css.map",
+ "flavours/vanilla/share.js": "/packs/flavours/vanilla/share.js",
+ "flavours/vanilla/share.js.map": "/packs/flavours/vanilla/share.js.map",
+ "fontawesome-webfont.eot?v=4.7.0": "/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot",
+ "fontawesome-webfont.svg?v=4.7.0": "/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.svg",
+ "fontawesome-webfont.ttf?v=4.7.0": "/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf",
+ "fontawesome-webfont.woff2?v=4.7.0": "/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2",
+ "fontawesome-webfont.woff?v=4.7.0": "/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff",
+ "glitch-preview.jpg": "/packs/glitch-preview-bb9cc15a0102bfaf65712e5cff7e58df.jpg",
+ "icon_about.png": "/packs/icon_about-ffafc67a2e97ca436da6c1bf61a8ab68.png",
+ "icon_blocks.png": "/packs/icon_blocks-0b0e54d45ff0177b02e1357ac09c0d51.png",
+ "icon_cached.png": "/packs/icon_cached-26ffa26120a2a16a9be78a75cc603793.png",
+ "icon_cached.svg": "/packs/icon_cached-108e30d96e1d5152be7fe2978bcdfe14.svg",
+ "icon_done.png": "/packs/icon_done-e07ea253e82d137816cfb8d77a3b1562.png",
+ "icon_done.svg": "/packs/icon_done-dba357bfbba455428787fefc655ce120.svg",
+ "icon_email.png": "/packs/icon_email-ed5d2a37fa765e4c5fec080a82b0a783.png",
+ "icon_email.svg": "/packs/icon_email-1346985c7aaceb601b0d4257133254f4.svg",
+ "icon_file_download.png": "/packs/icon_file_download-0b212ed1bca11e1e02539a20b3821d87.png",
+ "icon_file_download.svg": "/packs/icon_file_download-4b5c054e76b0df3cbbc851854cd10c3c.svg",
+ "icon_flag.svg": "/packs/icon_flag-6cc7d5ce6f0c35fe10e0f05494b2aba8.svg",
+ "icon_follow_requests.png": "/packs/icon_follow_requests-32eaf00987b072b2b12f8015d6a6a250.png",
+ "icon_grade.png": "/packs/icon_grade-1f9e039d0f024626ab071d18098b65a0.png",
+ "icon_grade.svg": "/packs/icon_grade-8e81b8e88c2b5834347a2a226c65d440.svg",
+ "icon_home.png": "/packs/icon_home-433b9d93fc1f035ec09330c2512a4879.png",
+ "icon_keyboard_shortcuts.png": "/packs/icon_keyboard_shortcuts-4b183486762cfcc9f0de7522520a5485.png",
+ "icon_likes.png": "/packs/icon_likes-27b8551da2d56d81062818c035ed622e.png",
+ "icon_lists.png": "/packs/icon_lists-ae69bf4fb26c40d2c9b056c55c9153e2.png",
+ "icon_local.png": "/packs/icon_local-eade3ebeb7ac50f798cd40ed5fe62232.png",
+ "icon_lock_open.png": "/packs/icon_lock_open-d377f10d3f005d0d042a1ee1dee8284d.png",
+ "icon_lock_open.svg": "/packs/icon_lock_open-c9627928caaaa505ac7de2a64bd065ec.svg",
+ "icon_logout.png": "/packs/icon_logout-3abd28c4fc25290e6e4088c50d3352f4.png",
+ "icon_mutes.png": "/packs/icon_mutes-5e7612d5c63fedb3fc59558284304cfc.png",
+ "icon_person_add.png": "/packs/icon_person_add-44d0a8dfa7dce95be5f6e3cfe0cdd133.png",
+ "icon_person_add.svg": "/packs/icon_person_add-5c56ef10b9e99e77a44d89041f4b77b5.svg",
+ "icon_pin.png": "/packs/icon_pin-79e04b07bcaa1266eee3164e83f574b4.png",
+ "icon_public.png": "/packs/icon_public-2d798a39bb2bd6314e47b00669686556.png",
+ "icon_reply.png": "/packs/icon_reply-1c00f97d10006dd420bc620b26a79d8a.png",
+ "icon_reply.svg": "/packs/icon_reply-b5e28e1fe6acd4ec003e643e947f1c4a.svg",
+ "icon_settings.png": "/packs/icon_settings-e7c53fb8ee137f93827e2db21f507cb1.png",
+ "icon_warning.png": "/packs/icon_warning-af2b38fe580f274ca4c80479bd12141e.png",
+ "locales.js": "/packs/locales.js",
+ "locales.js.map": "/packs/locales.js.map",
+ "locales/glitch/ar.js": "/packs/locales/glitch/ar.js",
+ "locales/glitch/ar.js.map": "/packs/locales/glitch/ar.js.map",
+ "locales/glitch/bg.js": "/packs/locales/glitch/bg.js",
+ "locales/glitch/bg.js.map": "/packs/locales/glitch/bg.js.map",
+ "locales/glitch/ca.js": "/packs/locales/glitch/ca.js",
+ "locales/glitch/ca.js.map": "/packs/locales/glitch/ca.js.map",
+ "locales/glitch/de.js": "/packs/locales/glitch/de.js",
+ "locales/glitch/de.js.map": "/packs/locales/glitch/de.js.map",
+ "locales/glitch/en.js": "/packs/locales/glitch/en.js",
+ "locales/glitch/en.js.map": "/packs/locales/glitch/en.js.map",
+ "locales/glitch/eo.js": "/packs/locales/glitch/eo.js",
+ "locales/glitch/eo.js.map": "/packs/locales/glitch/eo.js.map",
+ "locales/glitch/es.js": "/packs/locales/glitch/es.js",
+ "locales/glitch/es.js.map": "/packs/locales/glitch/es.js.map",
+ "locales/glitch/fa.js": "/packs/locales/glitch/fa.js",
+ "locales/glitch/fa.js.map": "/packs/locales/glitch/fa.js.map",
+ "locales/glitch/fi.js": "/packs/locales/glitch/fi.js",
+ "locales/glitch/fi.js.map": "/packs/locales/glitch/fi.js.map",
+ "locales/glitch/fr.js": "/packs/locales/glitch/fr.js",
+ "locales/glitch/fr.js.map": "/packs/locales/glitch/fr.js.map",
+ "locales/glitch/he.js": "/packs/locales/glitch/he.js",
+ "locales/glitch/he.js.map": "/packs/locales/glitch/he.js.map",
+ "locales/glitch/hr.js": "/packs/locales/glitch/hr.js",
+ "locales/glitch/hr.js.map": "/packs/locales/glitch/hr.js.map",
+ "locales/glitch/hu.js": "/packs/locales/glitch/hu.js",
+ "locales/glitch/hu.js.map": "/packs/locales/glitch/hu.js.map",
+ "locales/glitch/id.js": "/packs/locales/glitch/id.js",
+ "locales/glitch/id.js.map": "/packs/locales/glitch/id.js.map",
+ "locales/glitch/io.js": "/packs/locales/glitch/io.js",
+ "locales/glitch/io.js.map": "/packs/locales/glitch/io.js.map",
+ "locales/glitch/it.js": "/packs/locales/glitch/it.js",
+ "locales/glitch/it.js.map": "/packs/locales/glitch/it.js.map",
+ "locales/glitch/ja.js": "/packs/locales/glitch/ja.js",
+ "locales/glitch/ja.js.map": "/packs/locales/glitch/ja.js.map",
+ "locales/glitch/ko.js": "/packs/locales/glitch/ko.js",
+ "locales/glitch/ko.js.map": "/packs/locales/glitch/ko.js.map",
+ "locales/glitch/nl.js": "/packs/locales/glitch/nl.js",
+ "locales/glitch/nl.js.map": "/packs/locales/glitch/nl.js.map",
+ "locales/glitch/no.js": "/packs/locales/glitch/no.js",
+ "locales/glitch/no.js.map": "/packs/locales/glitch/no.js.map",
+ "locales/glitch/oc.js": "/packs/locales/glitch/oc.js",
+ "locales/glitch/oc.js.map": "/packs/locales/glitch/oc.js.map",
+ "locales/glitch/pl.js": "/packs/locales/glitch/pl.js",
+ "locales/glitch/pl.js.map": "/packs/locales/glitch/pl.js.map",
+ "locales/glitch/pt-BR.js": "/packs/locales/glitch/pt-BR.js",
+ "locales/glitch/pt-BR.js.map": "/packs/locales/glitch/pt-BR.js.map",
+ "locales/glitch/pt.js": "/packs/locales/glitch/pt.js",
+ "locales/glitch/pt.js.map": "/packs/locales/glitch/pt.js.map",
+ "locales/glitch/ru.js": "/packs/locales/glitch/ru.js",
+ "locales/glitch/ru.js.map": "/packs/locales/glitch/ru.js.map",
+ "locales/glitch/sv.js": "/packs/locales/glitch/sv.js",
+ "locales/glitch/sv.js.map": "/packs/locales/glitch/sv.js.map",
+ "locales/glitch/th.js": "/packs/locales/glitch/th.js",
+ "locales/glitch/th.js.map": "/packs/locales/glitch/th.js.map",
+ "locales/glitch/tr.js": "/packs/locales/glitch/tr.js",
+ "locales/glitch/tr.js.map": "/packs/locales/glitch/tr.js.map",
+ "locales/glitch/uk.js": "/packs/locales/glitch/uk.js",
+ "locales/glitch/uk.js.map": "/packs/locales/glitch/uk.js.map",
+ "locales/glitch/zh-CN.js": "/packs/locales/glitch/zh-CN.js",
+ "locales/glitch/zh-CN.js.map": "/packs/locales/glitch/zh-CN.js.map",
+ "locales/glitch/zh-HK.js": "/packs/locales/glitch/zh-HK.js",
+ "locales/glitch/zh-HK.js.map": "/packs/locales/glitch/zh-HK.js.map",
+ "locales/glitch/zh-TW.js": "/packs/locales/glitch/zh-TW.js",
+ "locales/glitch/zh-TW.js.map": "/packs/locales/glitch/zh-TW.js.map",
+ "locales/vanilla/ar.js": "/packs/locales/vanilla/ar.js",
+ "locales/vanilla/ar.js.map": "/packs/locales/vanilla/ar.js.map",
+ "locales/vanilla/ast.js": "/packs/locales/vanilla/ast.js",
+ "locales/vanilla/ast.js.map": "/packs/locales/vanilla/ast.js.map",
+ "locales/vanilla/bg.js": "/packs/locales/vanilla/bg.js",
+ "locales/vanilla/bg.js.map": "/packs/locales/vanilla/bg.js.map",
+ "locales/vanilla/ca.js": "/packs/locales/vanilla/ca.js",
+ "locales/vanilla/ca.js.map": "/packs/locales/vanilla/ca.js.map",
+ "locales/vanilla/co.js": "/packs/locales/vanilla/co.js",
+ "locales/vanilla/co.js.map": "/packs/locales/vanilla/co.js.map",
+ "locales/vanilla/cs.js": "/packs/locales/vanilla/cs.js",
+ "locales/vanilla/cs.js.map": "/packs/locales/vanilla/cs.js.map",
+ "locales/vanilla/cy.js": "/packs/locales/vanilla/cy.js",
+ "locales/vanilla/cy.js.map": "/packs/locales/vanilla/cy.js.map",
+ "locales/vanilla/da.js": "/packs/locales/vanilla/da.js",
+ "locales/vanilla/da.js.map": "/packs/locales/vanilla/da.js.map",
+ "locales/vanilla/de.js": "/packs/locales/vanilla/de.js",
+ "locales/vanilla/de.js.map": "/packs/locales/vanilla/de.js.map",
+ "locales/vanilla/el.js": "/packs/locales/vanilla/el.js",
+ "locales/vanilla/el.js.map": "/packs/locales/vanilla/el.js.map",
+ "locales/vanilla/en.js": "/packs/locales/vanilla/en.js",
+ "locales/vanilla/en.js.map": "/packs/locales/vanilla/en.js.map",
+ "locales/vanilla/eo.js": "/packs/locales/vanilla/eo.js",
+ "locales/vanilla/eo.js.map": "/packs/locales/vanilla/eo.js.map",
+ "locales/vanilla/es.js": "/packs/locales/vanilla/es.js",
+ "locales/vanilla/es.js.map": "/packs/locales/vanilla/es.js.map",
+ "locales/vanilla/eu.js": "/packs/locales/vanilla/eu.js",
+ "locales/vanilla/eu.js.map": "/packs/locales/vanilla/eu.js.map",
+ "locales/vanilla/fa.js": "/packs/locales/vanilla/fa.js",
+ "locales/vanilla/fa.js.map": "/packs/locales/vanilla/fa.js.map",
+ "locales/vanilla/fi.js": "/packs/locales/vanilla/fi.js",
+ "locales/vanilla/fi.js.map": "/packs/locales/vanilla/fi.js.map",
+ "locales/vanilla/fr.js": "/packs/locales/vanilla/fr.js",
+ "locales/vanilla/fr.js.map": "/packs/locales/vanilla/fr.js.map",
+ "locales/vanilla/gl.js": "/packs/locales/vanilla/gl.js",
+ "locales/vanilla/gl.js.map": "/packs/locales/vanilla/gl.js.map",
+ "locales/vanilla/he.js": "/packs/locales/vanilla/he.js",
+ "locales/vanilla/he.js.map": "/packs/locales/vanilla/he.js.map",
+ "locales/vanilla/hr.js": "/packs/locales/vanilla/hr.js",
+ "locales/vanilla/hr.js.map": "/packs/locales/vanilla/hr.js.map",
+ "locales/vanilla/hu.js": "/packs/locales/vanilla/hu.js",
+ "locales/vanilla/hu.js.map": "/packs/locales/vanilla/hu.js.map",
+ "locales/vanilla/hy.js": "/packs/locales/vanilla/hy.js",
+ "locales/vanilla/hy.js.map": "/packs/locales/vanilla/hy.js.map",
+ "locales/vanilla/id.js": "/packs/locales/vanilla/id.js",
+ "locales/vanilla/id.js.map": "/packs/locales/vanilla/id.js.map",
+ "locales/vanilla/io.js": "/packs/locales/vanilla/io.js",
+ "locales/vanilla/io.js.map": "/packs/locales/vanilla/io.js.map",
+ "locales/vanilla/it.js": "/packs/locales/vanilla/it.js",
+ "locales/vanilla/it.js.map": "/packs/locales/vanilla/it.js.map",
+ "locales/vanilla/ja.js": "/packs/locales/vanilla/ja.js",
+ "locales/vanilla/ja.js.map": "/packs/locales/vanilla/ja.js.map",
+ "locales/vanilla/ka.js": "/packs/locales/vanilla/ka.js",
+ "locales/vanilla/ka.js.map": "/packs/locales/vanilla/ka.js.map",
+ "locales/vanilla/ko.js": "/packs/locales/vanilla/ko.js",
+ "locales/vanilla/ko.js.map": "/packs/locales/vanilla/ko.js.map",
+ "locales/vanilla/lv.js": "/packs/locales/vanilla/lv.js",
+ "locales/vanilla/lv.js.map": "/packs/locales/vanilla/lv.js.map",
+ "locales/vanilla/ms.js": "/packs/locales/vanilla/ms.js",
+ "locales/vanilla/ms.js.map": "/packs/locales/vanilla/ms.js.map",
+ "locales/vanilla/nl.js": "/packs/locales/vanilla/nl.js",
+ "locales/vanilla/nl.js.map": "/packs/locales/vanilla/nl.js.map",
+ "locales/vanilla/no.js": "/packs/locales/vanilla/no.js",
+ "locales/vanilla/no.js.map": "/packs/locales/vanilla/no.js.map",
+ "locales/vanilla/oc.js": "/packs/locales/vanilla/oc.js",
+ "locales/vanilla/oc.js.map": "/packs/locales/vanilla/oc.js.map",
+ "locales/vanilla/pl.js": "/packs/locales/vanilla/pl.js",
+ "locales/vanilla/pl.js.map": "/packs/locales/vanilla/pl.js.map",
+ "locales/vanilla/pt-BR.js": "/packs/locales/vanilla/pt-BR.js",
+ "locales/vanilla/pt-BR.js.map": "/packs/locales/vanilla/pt-BR.js.map",
+ "locales/vanilla/pt.js": "/packs/locales/vanilla/pt.js",
+ "locales/vanilla/pt.js.map": "/packs/locales/vanilla/pt.js.map",
+ "locales/vanilla/ro.js": "/packs/locales/vanilla/ro.js",
+ "locales/vanilla/ro.js.map": "/packs/locales/vanilla/ro.js.map",
+ "locales/vanilla/ru.js": "/packs/locales/vanilla/ru.js",
+ "locales/vanilla/ru.js.map": "/packs/locales/vanilla/ru.js.map",
+ "locales/vanilla/sk.js": "/packs/locales/vanilla/sk.js",
+ "locales/vanilla/sk.js.map": "/packs/locales/vanilla/sk.js.map",
+ "locales/vanilla/sl.js": "/packs/locales/vanilla/sl.js",
+ "locales/vanilla/sl.js.map": "/packs/locales/vanilla/sl.js.map",
+ "locales/vanilla/sr-Latn.js": "/packs/locales/vanilla/sr-Latn.js",
+ "locales/vanilla/sr-Latn.js.map": "/packs/locales/vanilla/sr-Latn.js.map",
+ "locales/vanilla/sr.js": "/packs/locales/vanilla/sr.js",
+ "locales/vanilla/sr.js.map": "/packs/locales/vanilla/sr.js.map",
+ "locales/vanilla/sv.js": "/packs/locales/vanilla/sv.js",
+ "locales/vanilla/sv.js.map": "/packs/locales/vanilla/sv.js.map",
+ "locales/vanilla/ta.js": "/packs/locales/vanilla/ta.js",
+ "locales/vanilla/ta.js.map": "/packs/locales/vanilla/ta.js.map",
+ "locales/vanilla/te.js": "/packs/locales/vanilla/te.js",
+ "locales/vanilla/te.js.map": "/packs/locales/vanilla/te.js.map",
+ "locales/vanilla/th.js": "/packs/locales/vanilla/th.js",
+ "locales/vanilla/th.js.map": "/packs/locales/vanilla/th.js.map",
+ "locales/vanilla/tr.js": "/packs/locales/vanilla/tr.js",
+ "locales/vanilla/tr.js.map": "/packs/locales/vanilla/tr.js.map",
+ "locales/vanilla/uk.js": "/packs/locales/vanilla/uk.js",
+ "locales/vanilla/uk.js.map": "/packs/locales/vanilla/uk.js.map",
+ "locales/vanilla/zh-CN.js": "/packs/locales/vanilla/zh-CN.js",
+ "locales/vanilla/zh-CN.js.map": "/packs/locales/vanilla/zh-CN.js.map",
+ "locales/vanilla/zh-HK.js": "/packs/locales/vanilla/zh-HK.js",
+ "locales/vanilla/zh-HK.js.map": "/packs/locales/vanilla/zh-HK.js.map",
+ "locales/vanilla/zh-TW.js": "/packs/locales/vanilla/zh-TW.js",
+ "locales/vanilla/zh-TW.js.map": "/packs/locales/vanilla/zh-TW.js.map",
+ "logo_full.png": "/packs/logo_full-efefe08462ede002abb7fc1e69005cbb.png",
+ "logo_transparent.png": "/packs/logo_transparent-73bf4bea5ad08ce44d516e472dc452c1.png",
+ "modals/embed_modal.js": "/packs/modals/embed_modal.js",
+ "modals/embed_modal.js.map": "/packs/modals/embed_modal.js.map",
+ "modals/mute_modal.js": "/packs/modals/mute_modal.js",
+ "modals/mute_modal.js.map": "/packs/modals/mute_modal.js.map",
+ "modals/report_modal.js": "/packs/modals/report_modal.js",
+ "modals/report_modal.js.map": "/packs/modals/report_modal.js.map",
+ "reticle.png": "/packs/reticle-6490ecbb61185e86e62dca0845cf2dcf.png",
"roboto-bold-webfont.svg": "/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg",
"roboto-bold-webfont.ttf": "/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf",
"roboto-bold-webfont.woff": "/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff",
@@ -220,28 +428,44 @@
"roboto-italic-webfont.ttf": "/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf",
"roboto-italic-webfont.woff": "/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff",
"roboto-italic-webfont.woff2": "/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2",
- "fontawesome-webfont.svg?v=4.7.0": "/packs/fontawesome-webfont-912ec66d7572ff821749319396470bde.svg",
- "fontawesome-webfont.ttf?v=4.7.0": "/packs/fontawesome-webfont-b06871f281fee6b241d60582ae9369b9.ttf",
- "fontawesome-webfont.woff?v=4.7.0": "/packs/fontawesome-webfont-fee66e712a8a08eef5805a46892932ad.woff",
- "fontawesome-webfont.woff2?v=4.7.0": "/packs/fontawesome-webfont-af7ae505a9eed503f8b8e6982036873e.woff2",
- "fontawesome-webfont.eot?v=4.7.0": "/packs/fontawesome-webfont-674f50d287a8c48dc19ba404d20fe713.eot",
- "logo_transparent.png": "/packs/logo_transparent-73bf4bea5ad08ce44d516e472dc452c1.png",
- "logo_full.png": "/packs/logo_full-efefe08462ede002abb7fc1e69005cbb.png",
- "icon_reply.png": "/packs/icon_reply-1c00f97d10006dd420bc620b26a79d8a.png",
- "icon_person_add.png": "/packs/icon_person_add-44d0a8dfa7dce95be5f6e3cfe0cdd133.png",
- "icon_lock_open.png": "/packs/icon_lock_open-d377f10d3f005d0d042a1ee1dee8284d.png",
- "icon_grade.png": "/packs/icon_grade-1f9e039d0f024626ab071d18098b65a0.png",
- "icon_file_download.png": "/packs/icon_file_download-0b212ed1bca11e1e02539a20b3821d87.png",
- "icon_email.png": "/packs/icon_email-ed5d2a37fa765e4c5fec080a82b0a783.png",
- "icon_done.png": "/packs/icon_done-e07ea253e82d137816cfb8d77a3b1562.png",
- "icon_cached.png": "/packs/icon_cached-26ffa26120a2a16a9be78a75cc603793.png",
- "icon_reply.svg": "/packs/icon_reply-b5e28e1fe6acd4ec003e643e947f1c4a.svg",
- "icon_person_add.svg": "/packs/icon_person_add-5c56ef10b9e99e77a44d89041f4b77b5.svg",
- "icon_lock_open.svg": "/packs/icon_lock_open-c9627928caaaa505ac7de2a64bd065ec.svg",
- "icon_grade.svg": "/packs/icon_grade-8e81b8e88c2b5834347a2a226c65d440.svg",
- "icon_file_download.svg": "/packs/icon_file_download-4b5c054e76b0df3cbbc851854cd10c3c.svg",
- "icon_email.svg": "/packs/icon_email-1346985c7aaceb601b0d4257133254f4.svg",
- "icon_done.svg": "/packs/icon_done-dba357bfbba455428787fefc655ce120.svg",
- "icon_cached.svg": "/packs/icon_cached-108e30d96e1d5152be7fe2978bcdfe14.svg",
- "void.png": "/packs/void-4c8270c17facce6d53726a2ebb9745f2.png"
+ "roboto-medium-webfont.svg": "/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg",
+ "roboto-medium-webfont.ttf": "/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf",
+ "roboto-medium-webfont.woff": "/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff",
+ "roboto-medium-webfont.woff2": "/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2",
+ "roboto-regular-webfont.svg": "/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg",
+ "roboto-regular-webfont.ttf": "/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf",
+ "roboto-regular-webfont.woff": "/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff",
+ "roboto-regular-webfont.woff2": "/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2",
+ "robotomono-regular-webfont.svg": "/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg",
+ "robotomono-regular-webfont.ttf": "/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf",
+ "robotomono-regular-webfont.woff": "/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff",
+ "robotomono-regular-webfont.woff2": "/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2",
+ "screen_federation.svg": "/packs/screen_federation-2e3d2e6a976a77293e341b6188515bf2.svg",
+ "screen_hello.svg": "/packs/screen_hello-d08d3eac890211eaa3ae6d75639787dd.svg",
+ "screen_interactions.svg": "/packs/screen_interactions-9837dafaee30c5efee219d469acd1e84.svg",
+ "screenshot.jpg": "/packs/screenshot-752460e373ba6c7519109936bd0656f6.jpg",
+ "skins/glitch/contrast/common.css": "/packs/skins/glitch/contrast/common.css",
+ "skins/glitch/contrast/common.css.map": "/packs/skins/glitch/contrast/common.css.map",
+ "skins/glitch/contrast/common.js": "/packs/skins/glitch/contrast/common.js",
+ "skins/glitch/contrast/common.js.map": "/packs/skins/glitch/contrast/common.js.map",
+ "skins/glitch/mastodon-light/common.css": "/packs/skins/glitch/mastodon-light/common.css",
+ "skins/glitch/mastodon-light/common.css.map": "/packs/skins/glitch/mastodon-light/common.css.map",
+ "skins/glitch/mastodon-light/common.js": "/packs/skins/glitch/mastodon-light/common.js",
+ "skins/glitch/mastodon-light/common.js.map": "/packs/skins/glitch/mastodon-light/common.js.map",
+ "skins/vanilla/contrast/common.css": "/packs/skins/vanilla/contrast/common.css",
+ "skins/vanilla/contrast/common.css.map": "/packs/skins/vanilla/contrast/common.css.map",
+ "skins/vanilla/contrast/common.js": "/packs/skins/vanilla/contrast/common.js",
+ "skins/vanilla/contrast/common.js.map": "/packs/skins/vanilla/contrast/common.js.map",
+ "skins/vanilla/mastodon-light/common.css": "/packs/skins/vanilla/mastodon-light/common.css",
+ "skins/vanilla/mastodon-light/common.css.map": "/packs/skins/vanilla/mastodon-light/common.css.map",
+ "skins/vanilla/mastodon-light/common.js": "/packs/skins/vanilla/mastodon-light/common.js",
+ "skins/vanilla/mastodon-light/common.js.map": "/packs/skins/vanilla/mastodon-light/common.js.map",
+ "skins/vanilla/win95/common.css": "/packs/skins/vanilla/win95/common.css",
+ "skins/vanilla/win95/common.css.map": "/packs/skins/vanilla/win95/common.css.map",
+ "skins/vanilla/win95/common.js": "/packs/skins/vanilla/win95/common.js",
+ "skins/vanilla/win95/common.js.map": "/packs/skins/vanilla/win95/common.js.map",
+ "start.png": "/packs/start-d443e819b6248a54c6eb466c75938306.png",
+ "void.png": "/packs/void-4c8270c17facce6d53726a2ebb9745f2.png",
+ "wave-drawer-glitched.png": "/packs/wave-drawer-glitched-33467bf8c8d2b995d6c76d8810aba3db.png",
+ "wave-drawer.png": "/packs/wave-drawer-ee1bfcbe5811ea31771b7187c7507ee6.png"
}
\ No newline at end of file
diff --git a/priv/static/packs/mastodon-light.css b/priv/static/packs/mastodon-light.css
deleted file mode 100644
index 1695a569f..000000000
Binary files a/priv/static/packs/mastodon-light.css and /dev/null differ
diff --git a/priv/static/packs/mastodon-light.css.map b/priv/static/packs/mastodon-light.css.map
deleted file mode 100644
index 0da95d62d..000000000
--- a/priv/static/packs/mastodon-light.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["webpack:///./app/javascript/styles/mastodon-light.scss"],"names":[],"mappings":"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","file":"mastodon-light.css","sourcesContent":["@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-monospace;src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#ccd7e0;border:0 none #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#c6d2dc}::-webkit-scrollbar-thumb:active{background:#ccd7e0}::-webkit-scrollbar-track{border:0 none #fff;border-radius:0;background:hsla(0,0%,100%,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#d9e1e8}::-webkit-scrollbar-corner{background:transparent}body{font-family:\"mastodon-font-sans-serif\",sans-serif;background:#f2f5f7;font-size:13px;line-height:18px;font-weight:400;color:#000;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Droid Sans,Helvetica Neue,Fira Sans,mastodon-font-sans-serif,sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#d9e1e8}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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:-webkit-box;display:-ms-flexbox;display:flex;width:100%;height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;outline:0!important}.container-alt{width:700px;margin:0 auto;margin-top:40px}@media screen and (max-width:740px){.container-alt{width:100%;margin:0}}.logo-container{margin:100px auto;margin-bottom:50px}@media screen and (max-width:400px){.logo-container{margin:30px auto;margin-bottom:20px}}.logo-container h1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.logo-container h1 img{height:42px;margin-right:10px}.logo-container h1 a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#000;text-decoration:none;outline:0;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.compose-standalone .compose-form{width:400px;margin:0 auto;padding:20px 0;margin-top:40px;-webkit-box-sizing:border-box;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;margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;font-size:13px;line-height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:20px 0;padding-bottom:0;margin-bottom:-30px;margin-top:40px}@media screen and (max-width:440px){.account-header{width:100%;margin:0;margin-bottom:10px;padding:20px;padding-bottom: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{-webkit-box-flex:1;-ms-flex:1 1 auto;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:-webkit-box;display:-ms-flexbox;display:flex}.grid-3 .landing-page__call-to-action,.grid-3 .row__information-board{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.grid-3 .row__information-board{width:100%}.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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#c0cdd9;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;z-index:110}}.public-layout .header>div{-webkit-box-flex:1;-ms-flex:1 1 33.3%;flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.public-layout .header .nav-center,.public-layout .header .nav-left{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.public-layout .header .nav-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.public-layout .header .nav-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#b3c3d1}.public-layout .header .nav-link{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#282c37;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-button{background:#a6b9c9;margin:8px;margin-left: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:#99afc2}.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;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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.inactive .logo-button svg path:last-child{fill:#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%;-webkit-box-shadow:inset 0 -1px 1px 1px rgba(0,0,0,.15);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;-webkit-box-shadow:none;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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;padding-left: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{-ms-flex-wrap:wrap;flex-wrap:wrap}}.public-layout .public-account-header__tabs{-webkit-box-flex:1;-ms-flex:1 1 auto;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;height:58px}.public-layout .public-account-header__tabs__tabs .details-counters{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;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%;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 auto;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;-webkit-transition:all .4s ease;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;-webkit-transition-duration:.1s;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:mastodon-font-display,sans-serif}.public-layout .public-account-header__tabs__tabs .spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;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;-webkit-box-shadow:none;box-shadow:none;background:transparent;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}.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;-webkit-box-flex:100%;-ms-flex:100%;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;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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{-webkit-box-shadow:none;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__content{padding:20px;padding-bottom: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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;min-width:100%;margin:0 -5px}.public-layout .card-grid>div{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;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{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#6d8ca7}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#6d8ca7}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#282c37}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#6d8ca7}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#6d8ca7}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#60829f}.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;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}.hero-widget__img{width:100%;height:167px;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:transparent;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.endorsements-widget .account .account__avatar{width:44px;height:44px;background-size:44px 44px}.box-widget,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#d9e1e8;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100%}.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;padding-bottom:20px;border-radius:4px;background:#d9e1e8;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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;border-radius:4px;background:#000;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);font-size:14px;color:#282c37;margin-bottom:10px}@media screen and (max-width:415px){.box-widget,.contact-widget,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget{margin-bottom:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0}}code{font-family:mastodon-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 .row{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 -5px}.simple_form .row .input{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;width:50%;padding:0 5px}.simple_form span.hint{display:block;color:#282c37;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#282c37}.simple_form p.hint.subtle-hint{text-align:center;font-size:12px;line-height:18px;margin-top:15px;margin-bottom:0;color:#282c37}.simple_form p.hint.subtle-hint a{color:#2b5fd9}.simple_form p.hint code{border-radius:3px;padding:.2em .4em;background:#fff}.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 .label_input{display:-webkit-box;display:-ms-flexbox;display:flex}.simple_form .label_input label{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.simple_form .label_input input{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.with_label{padding:15px 0;margin-bottom:0}.simple_form .input.with_label .label_input{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.simple_form .input.with_label.file .label_input{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.simple_form .input.with_label.select .label_input{-webkit-box-align:initial;-ms-flex-align:initial;align-items:initial}.simple_form .input.with_label .label_input>label{font-family:inherit;font-size:16px;color:#000;display:block;padding-top:5px;margin-bottom:5px;-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:150px;word-wrap:break-word}.simple_form .input.with_label .label_input>label.select{-webkit-box-flex:0;-ms-flex:0;flex:0}.simple_form .input.with_label .label_input>label~*{margin-left:10px}.simple_form .input.with_label ul{-webkit-box-flex:390px;-ms-flex:390px;flex:390px}.simple_form .input.with_label.boolean{padding:0;padding:initial;margin-bottom:0}.simple_form .input.with_label.boolean .label_input>label{font-family:inherit;font-size:14px;color:#000;display:block;width:auto}.simple_form .input.with_label.boolean label.checkbox{position:relative;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.with_block_label{padding-top:15px}.simple_form .input.with_block_label>label{font-family:inherit;font-size:16px;color:#000;display:block;padding-top:5px}.simple_form .input.with_block_label .hint{margin-bottom:15px}.simple_form .input.with_block_label ul{-webkit-columns:2;columns:2}.simple_form .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 .input.boolean{margin-bottom:5px}.simple_form .input.boolean label{font-family:inherit;font-size:14px;color:#000;display:block;width:auto}.simple_form .input.boolean label.checkbox{position:relative;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.simple_form .input.boolean input[type=checkbox]{position:absolute;left:0;top:5px;margin:0}.simple_form .input.boolean .hint{padding-left:25px;margin-left:0}.simple_form .check_boxes .checkbox label{font-family:inherit;font-size:14px;color:#000;display:block;width:auto;position:relative;padding-top:5px;padding-left:25px;-webkit-box-flex:1;-ms-flex:1 1 auto;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{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;border:0;border-bottom:2px solid #9bcbed;border-radius:2px 2px 0 0;padding:7px 4px;font-size:16px;color:#000;display:block;width:100%;outline:0;font-family:inherit;resize:vertical}.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{-webkit-box-shadow:none;box-shadow:none}.simple_form input[type=email]:focus:invalid,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{border-bottom-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-bottom-color:#3c754d}.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-bottom-color:#2b5fd9;background:hsla(0,0%,100%,.1)}.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=password],.simple_form .input.field_with_errors input[type=text]{border-bottom-color:#3c754d}.simple_form .input.field_with_errors .error{display:block;font-weight:500;color:#c1203b;margin-top:4px}.simple_form .actions{margin-top:30px;display:-webkit-box;display:-ms-flexbox;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;-webkit-box-sizing:border-box;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.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{font-size:16px;max-height:29px}.simple_form .input-with-append{position:relative}.simple_form .input-with-append .input input{padding-right:142px}.simple_form .input-with-append .append{position:absolute;right:0;top:0;padding:7px 4px;padding-bottom:9px;font-size:16px;color:#444b5d;font-family:inherit;pointer-events:none;cursor:default;max-width:140px;white-space:nowrap;overflow:hidden}.simple_form .input-with-append .append:after{content:\"\";display:block;position:absolute;top:0;right:0;bottom:1px;width:5px;background-image:-webkit-gradient(linear,left top,right top,from(rgba(217,225,232,0)),to(#d9e1e8));background-image:linear-gradient(90deg,rgba(217,225,232,0),#d9e1e8)}.flash-message{background:#c0cdd9;color:#282c37;border-radius:4px;padding:15px 10px;margin-bottom:30px;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2);text-align:center}.flash-message p{margin-bottom:15px}.flash-message .oauth-code{outline:0;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:mastodon-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}.follow-prompt,.oauth-prompt{margin-bottom:30px;text-align:center;color:#282c37}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px}.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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.qr-code{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#fff;padding:4px;margin:0 10px 20px 0;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);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;-webkit-box-flex:150px;-ms-flex:150px;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{-webkit-box-sizing:border-box;box-sizing:border-box;color:#000;text-shadow:1px 1px 0 rgba(0,0,0,.3);-webkit-box-shadow:0 2px 6px rgba(0,0,0,.4);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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.action-pagination .actions,.action-pagination .pagination{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.action-pagination .actions{padding:30px 0;padding-right:20px;-webkit-box-flex:0;-ms-flex:0 0 auto;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:mastodon-font-monospace,monospace}.card>a{display:block;text-decoration:none;color:inherit;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2)}@media screen and (max-width:415px){.card>a{-webkit-box-shadow:none;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;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{-webkit-box-flex:0;-ms-flex:0 0 auto;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}.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:#282c37;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;-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);color:#444b5d;font-size:14px;font-weight:500;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:default;border-radius:4px;padding:20px;min-height:30vh}.nothing-here--under-tabs{border-radius:0 0 4px 4px}.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:0 none;border-top:1px solid #b3c3d1;border-bottom:1px solid #b3c3d1;font-size:14px;line-height:20px}.account__header__fields dl{display:-webkit-box;display:-ms-flexbox;display:flex;border-bottom:1px solid #b3c3d1}.account__header__fields dd,.account__header__fields dt{-webkit-box-sizing:border-box;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;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#282c37;background:rgba(242,245,247,.5)}.account__header__fields dd{-webkit-box-flex:1;-ms-flex:1 1 auto;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 dl:last-child{border-bottom:0}.activity-stream{-webkit-box-shadow:0 0 15px rgba(0,0,0,.2);box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;overflow:hidden;margin-bottom:10px;text-align:left}@media screen and (max-width:415px){.activity-stream{margin-bottom:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none}}.activity-stream--headless{border-radius:0;margin:0;-webkit-box-shadow:none;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{-webkit-box-flex:0;-ms-flex:0 auto;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}.button.logo-button svg path:first-child{fill:#000}.button.logo-button svg path:last-child{fill:#2b5fd9}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#204bb1}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#204bb1}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button.disabled i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#2b5fd9;border:10px none;border-radius:4px;-webkit-box-sizing:border-box;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;-webkit-transition:all .1s ease-in;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#204bb1;-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.button--destructive{-webkit-transition:none;transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;-webkit-transition:none;transition:none}.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,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.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:transparent;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--block{display:block;width:100%}.column__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;position:relative}.icon-button{display:inline-block;padding:0;color:#606984;border:none;background:transparent;cursor:pointer;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#51596f;-webkit-transition:color .2s ease-out;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:#282c37}.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{-webkit-box-sizing:content-box;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:#282c37;border:none;background:transparent;cursor:pointer;font-weight:600;font-size:11px;padding:0 3px;line-height:27px;outline:0;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.text-icon-button:active,.text-icon-button:focus,.text-icon-button:hover{color:#373d4c;-webkit-transition:color .2s ease-out;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}.dropdown-menu,.invisible{position:absolute}.invisible{font-size:0;line-height:0;display:inline-block;width:0;height:0}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:\"\\2026\"}.compose-form{padding:10px}.compose-form .compose-form__warning{color:#000;margin-bottom:10px;background:#9bcbed;-webkit-box-shadow:0 2px 6px rgba(0,0,0,.3);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 .compose-form__autosuggest-wrapper{position:relative}.compose-form .compose-form__autosuggest-wrapper .emoji-picker-dropdown{position:absolute;right:5px;top:5px}.compose-form .autosuggest-textarea,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:47px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;-webkit-box-sizing:border-box;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:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{height:100px!important;resize:vertical}}.compose-form .autosuggest-textarea__suggestions{-webkit-box-sizing:border-box;box-sizing:border-box;display:none;position:absolute;top:100%;width:100%;z-index:99;-webkit-box-shadow:4px 4px 6px rgba(0,0,0,.4);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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:5px;-ms-flex-wrap:wrap;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__upload{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;min-width:40%;margin:5px}.compose-form .compose-form__modifiers .compose-form__upload__actions{background:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.8)),color-stop(80%,rgba(0,0,0,.35)),to(transparent));background:linear-gradient(180deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;opacity:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{-webkit-box-flex:0;-ms-flex:0 1 auto;flex:0 1 auto;color:#282c37;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:#191b22}.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;-webkit-box-sizing:border-box;box-sizing:border-box;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.8)),color-stop(80%,rgba(0,0,0,.35)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);padding:10px;opacity:0;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.compose-form .compose-form__modifiers .compose-form__upload-description input{background:transparent;color:#282c37;border:0;padding:0;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description input:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:.75;color:#282c37}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder,.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:.75;color:#282c37}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:.75;color:#282c37}.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:140px;width:100%;overflow:hidden}.compose-form .compose-form__buttons-wrapper{padding:10px;background:#fff;border-radius:0 0 4px 4px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.compose-form .compose-form__buttons-wrapper,.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:-webkit-box;display:-ms-flexbox;display:flex}.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{-webkit-box-sizing:content-box;box-sizing:content-box;padding:0 3px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper{-ms-flex-item-align:center;align-self:center;margin-right:4px}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter{cursor:default;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:14px;font-weight:600;color:#282c37}.compose-form .compose-form__buttons-wrapper .character-counter__wrapper .character-counter.character-counter--over{color:#ff5050}.compose-form .compose-form__publish{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;min-width:0}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.no-reduce-motion .spoiler-input{-webkit-transition:height .4s ease,opacity .4s ease;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:#9bcbed;padding:10px}.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;overflow:hidden;text-overflow:ellipsis;white-space:pre-wrap;padding-top:2px;color:#000}.reply-indicator__content strong,.status__content strong{font-weight:700}.reply-indicator__content em,.status__content em{font-style:italic}.reply-indicator__content blockquote,.status__content blockquote{margin:.2em 0 .2em 2em;font-style:italic}.reply-indicator__content ul,.status__content ul{list-style:disc}.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}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:0}.reply-indicator__content a,.status__content a{color:#d8a070;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{padding-bottom:25px;max-height:200px}.status__content.status__content--collapsed i{-webkit-transform:rotateX(0);transform:rotateX(0)}.status__content.status__content--expanded{padding-bottom:25px;height:auto}.status__content.status__content--expanded i{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.status__content__collapse-button{display:block;position:absolute;bottom:0;left:0;right:0;width:100%;height:25px;font-size:18px;line-height:25px;color:#000;text-align:center;background:#606984;-webkit-transition:background .2s ease-in-out,color .2s ease-in-out;transition:background .2s ease-in-out,color .2s ease-in-out;border:0;border-radius:2px}.status__content__collapse-button:hover{background:#51596f}.status__content__collapse-button i{-webkit-transition:-webkit-transform .2s ease-in-out;transition:-webkit-transform .2s ease-in-out;transition:transform .2s ease-in-out;transition:transform .2s ease-in-out,-webkit-transform .2s ease-in-out}.status__content__collapse-button i,.status__content__collapse-button i:hover{color:#000!important}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:transparent;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;-webkit-box-sizing:border-box;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:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#c0cdd9}.status{padding:8px 10px;padding-left:68px;position:relative;min-height:48px;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{background:#c0cdd9}.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}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#444a5e}.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}.status-check-box{border-bottom:1px solid #282c37;display:-webkit-box;display:-ms-flexbox;display:flex}.status-check-box .status-check-box__status{margin:10px 0 10px 10px;-webkit-box-flex:1;-ms-flex:1;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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px}.status__prepend{margin-left:68px;color:#444b5d;padding:8px 0;padding-bottom:2px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#444b5d}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:8px}.status__action-bar-button{float:left;margin-right:18px}.status__action-bar-dropdown{float:left;height:23.15px;width:23.15px}.detailed-status__action-bar-dropdown{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative}.detailed-status{background:#ccd7e0;padding:14px 10px}.detailed-status--flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.detailed-status--flex .detailed-status__meta,.detailed-status--flex .status__content{-webkit-box-flex:100%;-ms-flex:100%;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#000;font-size:14px}.reply-indicator__content a{color:#282c37}.domain{padding:10px;border-bottom:1px solid #c0cdd9}.domain .domain__domain-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;color:#000;text-decoration:none;font-size:14px;font-weight:500}.domain__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.domain_buttons{height:18px;padding:10px;white-space:nowrap}.account{padding:10px;border-bottom:1px solid #c0cdd9}.account.compact{padding:0;border-bottom:0}.account.compact .account__avatar-wrapper{margin-left:0}.account .account__display-name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:block;color:#282c37;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}a .account__avatar{cursor:pointer}.account__avatar-overlay{width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:4px;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:4px;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:18px;padding:10px;white-space:nowrap}.account__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#ccd7e0;text-align:center;background-size:cover;background-position:50%;position:relative}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#282c37}.account__header>div{background:rgba(204,215,224,.9);padding:20px 10px}.account__header .account__header__content{color:#282c37}.account__header .account__header__display-name{color:#000;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#2b5fd9;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.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__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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #c0cdd9;border-bottom:1px solid #c0cdd9;line-height:36px;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;line-height:18px;text-align:center}.account__action-bar__tab{text-decoration:none;overflow:hidden;-webkit-box-flex:0;-ms-flex:0 1 100%;flex:0 1 100%;border-right:1px solid #c0cdd9;padding:10px 0}.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__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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}.muted .status__content,.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:#282c37;font-size:15px;position:relative}.notification__message .fa{color:#2b5fd9}.notification__message>span{display:block;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}.display-name{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.image-loader{position:relative;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.image-loader .image-loader__preview-canvas{max-width:100%;max-height:80%;background:url(/packs/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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-negative:0;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;-webkit-transform:scaleX(0) translate(-100%);transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);opacity:1}.navigation-bar__profile{-webkit-box-flex:1;-ms-flex:1 1 auto;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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #393f4f;margin:5px 7px 6px;height:0}.dropdown-menu{background:#282c37;padding:4px 0;border-radius:4px;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4)}.dropdown-menu ul{list-style:none}.dropdown-menu.left{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.dropdown-menu.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.dropdown-menu.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.dropdown-menu.right{-webkit-transform-origin:0 50%;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:#282c37}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-13px;border-width:5px 7px 0;border-top-color:#282c37}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-13px;border-width:0 7px 5px;border-bottom-color:#282c37}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#282c37}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;-webkit-box-sizing:border-box;box-sizing:border-box;text-decoration:none;background:#282c37;color:#000;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#2b5fd9;color:#282c37;outline:0}.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;-webkit-box-shadow:0 0 15px rgba(0,0,0,.4);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;-webkit-box-sizing:border-box;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}.columns-area{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;overflow-x:auto;position:relative}.columns-area.unscrollable{overflow-x:hidden}@media screen and (min-width:360px){.columns-area{padding:10px}.react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.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>*{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:100%}.column,.react-swipeable-view-container>*{display:-webkit-box;display:-ms-flexbox;display:flex}.column{width:330px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.column>.scrollable{background:#d9e1e8;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.ui{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;flex-direction:column;width:100%;height:100%;background:#eff3f5}.drawer,.ui{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column}.drawer{width:330px;-webkit-box-sizing:border-box;box-sizing:border-box;flex-direction:column;overflow-y:hidden}.drawer__tab{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;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{-webkit-box-flex:1;-ms-flex:1 1 100%;flex:1 1 100%;overflow:hidden}@media screen and (min-width:360px){.tabs-bar{margin:10px;margin-bottom:0}.getting-started__trends,.search{margin-bottom:10px}.getting-started__panel{margin:10px 0}.column,.drawer{min-width:330px}}@media screen and (max-width:630px){.column,.drawer{width:100%;padding:0}.columns-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.autosuggest-textarea__textarea,.search__input{font-size:16px}}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:10px;padding-left:5px;padding-right: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}}.drawer__pager{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;position:relative}.drawer__inner,.drawer__pager{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#b0c0cf;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow-y:auto;width:100%;height:100%;border-radius:2px}.drawer__inner.darker{background:#d9e1e8}.drawer__inner__mastodon{background:#b0c0cf url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;-webkit-box-flex:1;-ms-flex:1;flex:1;min-height:47px}.drawer__inner__mastodon>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}.pseudo-drawer{background:#b0c0cf;font-size:13px;text-align:left}.drawer__header{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-size:16px;background:#c0cdd9;margin-bottom:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;border-radius:2px}.drawer__header a{-webkit-transition:background .1s ease-in;transition:background .1s ease-in}.drawer__header a:hover{background:#cfd9e2;-webkit-transition:background .2s ease-out;transition:background .2s ease-out}.tabs-bar{display:-webkit-box;display:-ms-flexbox;display:flex;background:#c0cdd9;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;padding:15px 10px;color:#000;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #c0cdd9;-webkit-transition:all 50ms linear;transition:all 50ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #2b5fd9;color:#2b5fd9}@media screen and (min-width:631px){.tabs-bar__link:active,.tabs-bar__link:focus,.tabs-bar__link:hover{background:#adbecd}}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width:600px){.tabs-bar__link span{display:inline}}@media screen and (min-width:631px){.tabs-bar{display:none}}.scrollable{overflow-y:scroll;overflow-x:hidden;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}@supports (display:grid){.scrollable.fullscreen{contain:none}}.column-back-button{background:#ccd7e0;color:#2b5fd9;cursor:pointer;-webkit-box-flex:0;-ms-flex:0 0 auto;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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:rgba(255,255,255,0);-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;-webkit-transition:opacity .25s;transition:opacity .25s}.react-toggle-track{width:50px;height:24px;padding:0;border-radius:30px;background-color:#d9e1e8;-webkit-transition:all .2s ease;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#f9fafb}.react-toggle--checked .react-toggle-track{background-color:#2b5fd9}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#204bb1}.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;-webkit-transition:opacity .25s ease;transition:opacity .25s ease}.react-toggle--checked .react-toggle-track-check,.react-toggle-track-x{opacity:1;-webkit-transition:opacity .25s ease;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{-webkit-transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #d9e1e8;border-radius:50%;background-color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .25s ease;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#2b5fd9}.column-link{background:#c0cdd9;color:#000;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#b6c5d3}.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}.flex-spacer{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.getting-started{color:#444b5d;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.getting-started__footer,.getting-started__panel,.getting-started__wrapper{height:-webkit-min-content;height:-moz-min-content;height:min-content}.getting-started__footer,.getting-started__panel{padding:10px;padding-top:20px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.getting-started__footer ul,.getting-started__panel ul{margin-bottom:10px}.getting-started__footer ul li,.getting-started__panel ul li{display:inline}.getting-started__footer p,.getting-started__panel p{font-size:13px}.getting-started__footer p a,.getting-started__panel p a{color:#444b5d;text-decoration:underline}.getting-started__footer a,.getting-started__panel a{text-decoration:none;color:#282c37}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover,.getting-started__panel a:active,.getting-started__panel a:focus,.getting-started__panel a:hover{text-decoration:underline}.getting-started__footer,.getting-started__wrapper{color:#444b5d}.getting-started__trends{background:#d9e1e8;-webkit-box-flex:0;-ms-flex:0 1 auto;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}}.getting-started__scrollable{max-height:100%;overflow-y:auto}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#c0cdd9;border:1px solid #e6ebf0}.setting-text{color:#282c37;background:transparent;border:none;border-bottom:2px solid #9bcbed;-webkit-box-sizing:border-box;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;-webkit-transition:background-position .9s steps(10);transition:background-position .9s steps(10);-webkit-transition-duration:0s;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{-webkit-transition-duration:.9s;transition-duration:.9s;background-position:0 100%}.reduce-motion button.icon-button i.fa-retweet{color:#606984;-webkit-transition:color .1s ease-in;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#2b5fd9}.status-card{display:-webkit-box;display:-ms-flexbox;display:flex;font-size:14px;border:1px solid #c0cdd9;border-radius:4px;color:#444b5d;margin-top:14px;text-decoration:none;overflow:hidden}.status-card__actions{bottom:0;left:0;position:absolute;right:0;top:0;-ms-flex-pack:center;-ms-flex-align:center}.status-card__actions,.status-card__actions>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;justify-content:center;-webkit-box-align:center;align-items:center}.status-card__actions>div{background:rgba(0,0,0,.6);border-radius:4px;padding:12px 9px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-ms-flex-pack:center;-ms-flex-align:center}.status-card__actions a,.status-card__actions button{display:inline;color:#000;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.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:-webkit-zoom-in;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:#282c37;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#282c37}.status-card__host{display:block;margin-top:5px;font-size:13px}.status-card__image{-webkit-box-flex:0;-ms-flex:0 0 100px;flex:0 0 100px;background:#c0cdd9;position:relative}.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__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-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;-webkit-box-sizing:border-box;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#444b5d}.regeneration-indicator__label span{font-size:15px;font-weight:400}.column-header__wrapper{position:relative;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.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:-webkit-box;display:-ms-flexbox;display:flex;font-size:16px;background:#ccd7e0;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden;border-top-left-radius:2px;border-top-right-radius:2px}.column-header>button{margin:0;border:none;padding:15px 0 15px 15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;-webkit-box-flex:1;-ms-flex:1;flex:1}.column-header>.column-header__back-button{color:#2b5fd9}.column-header.active{-webkit-box-shadow:0 1px 0 rgba(43,95,217,.3);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:-webkit-box;display:-ms-flexbox;display:flex}.column-header__links .text-btn{margin-right:10px}.column-header__button{background:#ccd7e0;border:0;color:#282c37;cursor:pointer;font-size:16px;padding:0 15px}.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;-webkit-transition:max-height .15s ease-in-out,opacity .3s linear;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:transparent;border:0;border-top:1px solid #b3c3d1;margin:10px 0}.column-header__collapsible-inner{background:#c0cdd9;padding:15px}.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}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap;-webkit-animation:loader-label 1.15s infinite cubic-bezier(.215,.61,.355,1);animation:loader-label 1.15s infinite cubic-bezier(.215,.61,.355,1)}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:0;height:0;-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #86a0b6;border-radius:50%;-webkit-animation:loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1);animation:loader-figure 1.15s infinite cubic-bezier(.215,.61,.355,1)}@-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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff;color:#000;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;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{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.modal-container--preloader{background:#c0cdd9}.account--panel{background:#ccd7e0;border-top:1px solid #c0cdd9;border-bottom:1px solid #c0cdd9;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;padding:10px 0}.account--panel__button,.detailed-status__button{-webkit-box-flex:1;-ms-flex:1 1 auto;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__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#000;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:hsla(0,0%,100%,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.setting-toggle{display:block;line-height:24px}.setting-meta__label,.setting-toggle__label{color:#282c37;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.setting-meta__label{float:right}.empty-column-indicator,.error-column{color:#444b5d;background:#d9e1e8;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{-webkit-transform-origin:center center;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{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{-webkit-transform-origin:50% 100%;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;-webkit-box-shadow:4px 4px 6px rgba(0,0,0,.4);box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px}.emoji-picker-dropdown__menu .emoji-mart-scroll{-webkit-transition:opacity .2s ease;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;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.2);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:transparent}.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{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:hsla(0,0%,100%,.8);display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;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;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:18px;font-weight:500;border:2px dashed #b0c0cf;border-radius:4px}.upload-area__content,.upload-progress{display:-webkit-box;display:-ms-flexbox;display:flex;color:#282c37}.upload-progress{padding:10px;overflow:hidden}.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{-webkit-box-flex:1;-ms-flex:1 1 auto;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;margin:0;width:22px;height:22px;margin-top:2px}.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;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:4px;margin-left:40px;overflow:hidden}.privacy-dropdown__dropdown.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.privacy-dropdown__option{color:#000;padding:10px;cursor:pointer;display:-webkit-box;display:-ms-flexbox;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{-webkit-box-flex:1;-ms-flex:1 1 auto;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;-webkit-box-shadow:0 -4px 4px rgba(0,0,0,.1);box-shadow:0 -4px 4px rgba(0,0,0,.1)}.privacy-dropdown.active .privacy-dropdown__value .icon-button{-webkit-transition:none;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;-webkit-box-shadow:2px 4px 6px rgba(0,0,0,.1);box-shadow:2px 4px 6px rgba(0,0,0,.1)}.search{position:relative}.search__input{outline:0;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;padding-right:30px;font-family:inherit;background:#d9e1e8;color:#282c37;font-size:14px;margin:0;border-radius:2px}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#ccd7e0}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;-webkit-transition:all .1s linear;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#282c37;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);color:#606984;cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#51596f}.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:-webkit-box;display:-ms-flexbox;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}.modal-root{position:relative;-webkit-transition:opacity .3s linear;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%;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:distribute;align-content:space-around;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.modal-root__container,.modal-root__modal{display:-webkit-box;display:-ms-flexbox;display:flex;z-index:9999}.modal-root__modal{pointer-events:auto}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack: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;-webkit-transition:opacity .3s linear;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);-webkit-box-sizing:border-box;box-sizing:border-box;border:0;color:#000;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.onboarding-modal__pager{height:80vh;width:80vw;max-width:520px;max-height:470px}.onboarding-modal__pager .react-swipeable-view-container>div{width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.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%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:25px;display:none;display:-webkit-box;display:-ms-flexbox;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{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.error-modal__body{display:-webkit-box;display:-ms-flexbox;display:flex;text-align:center}@media screen and (max-width:550px){.onboarding-modal{width:100%;height:100%;border-radius:0}.onboarding-modal__pager{width:100%;height:auto;max-width:none;max-height:none;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}}.error-modal__footer,.onboarding-modal__paginator{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;background:#393f4f;display:-webkit-box;display:-ms-flexbox;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{-ms-flex-pack:center}.error-modal__footer,.onboarding-modal__dots{-webkit-box-pack:center;justify-content:center}.onboarding-modal__dots{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-pack:center}.onboarding-modal__dot{width:14px;height:14px;border-radius:14px;background:#4a5266;margin:0 3px;cursor:pointer}.onboarding-modal__dot:hover{background:#4f576c}.onboarding-modal__dot.active{cursor:default;background:#5c657e}.onboarding-modal__page__wrapper{pointer-events:none;padding:25px;padding-bottom:0}.onboarding-modal__page__wrapper.onboarding-modal__page__wrapper--active{pointer-events:auto}.onboarding-modal__page{cursor:default;line-height:21px}.onboarding-modal__page h1{font-size:18px;font-weight:500;color:#000;margin-bottom:20px}.onboarding-modal__page a{color:#2b5fd9}.onboarding-modal__page a:active,.onboarding-modal__page a:focus,.onboarding-modal__page a:hover{color:#2456cb}.onboarding-modal__page .navigation-bar a{color:inherit}.onboarding-modal__page p{font-size:16px;color:#282c37;margin-top:10px;margin-bottom:10px}.onboarding-modal__page p:last-child{margin-bottom:0}.onboarding-modal__page p strong{font-weight:500;background:#d9e1e8;color:#282c37;border-radius:4px;font-size:14px;padding:3px 6px}.onboarding-modal__page p strong:lang(ja),.onboarding-modal__page p strong:lang(ko),.onboarding-modal__page p strong:lang(zh-CN),.onboarding-modal__page p strong:lang(zh-HK),.onboarding-modal__page p strong:lang(zh-TW){font-weight:700}.onboarding-modal__page__wrapper-0{height:100%;padding:0}.onboarding-modal__page-one__lead{padding:65px;padding-top:45px;padding-bottom:0;margin-bottom:10px}.onboarding-modal__page-one__lead h1{font-size:26px;line-height:36px;margin-bottom:8px}.onboarding-modal__page-one__lead p{margin-bottom:0}.onboarding-modal__page-one__extra{padding-right:65px;padding-left:185px;text-align: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}.onboarding-modal__page-five p,.onboarding-modal__page-four p,.onboarding-modal__page-three p,.onboarding-modal__page-two p{text-align:left}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{background:#f2f5f7;color:#282c37;margin-bottom:20px;border-radius:4px;padding:10px;text-align:center;font-size:14px;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.3);box-shadow:1px 2px 6px rgba(0,0,0,.3)}.onboarding-modal__page-five .figure .onboarding-modal__image,.onboarding-modal__page-four .figure .onboarding-modal__image,.onboarding-modal__page-three .figure .onboarding-modal__image,.onboarding-modal__page-two .figure .onboarding-modal__image{border-radius:4px;margin-bottom:10px}.onboarding-modal__page-five .figure.non-interactive,.onboarding-modal__page-four .figure.non-interactive,.onboarding-modal__page-three .figure.non-interactive,.onboarding-modal__page-two .figure.non-interactive{pointer-events:none;text-align:left}.onboarding-modal__page-four__columns .row{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:20px}.onboarding-modal__page-four__columns .row>div{-webkit-box-flex:1;-ms-flex:1 1 0px;flex:1 1 0;margin:0 10px}.onboarding-modal__page-four__columns .row>div:first-child{margin-left:0}.onboarding-modal__page-four__columns .row>div:last-child{margin-right:0}.onboarding-modal__page-four__columns .row>div p{text-align:center}.onboarding-modal__page-four__columns .row:last-child{margin-bottom:0}.onboarding-modal__page-four__columns .column-header{color:#000}@media screen and (max-width:320px) and (max-height:600px){.onboarding-modal__page p{font-size:14px;line-height:20px}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{font-size:12px;margin-bottom:10px}.onboarding-modal__page-four__columns .row{margin-bottom:10px}.onboarding-modal__page-four__columns .column-header{padding:5px;font-size:12px}}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.mute-modal,.report-modal{background:#17191f;color:#000;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.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;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#282c37}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;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{-webkit-box-flex:1;-ms-flex:1 1 auto;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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.boost-modal__status-header{font-size:15px}.boost-modal__status-time{float:right;font-size:14px}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.mute-modal{line-height:24px}.mute-modal .react-toggle{vertical-align:middle}.report-modal{width:90vw;max-width:700px}.report-modal__container{display:-webkit-box;display:-ms-flexbox;display:flex;border-top:1px solid #282c37}@media screen and (max-width:480px){.report-modal__container{-ms-flex-wrap:wrap;flex-wrap:wrap;overflow-y:auto}}.report-modal__comment,.report-modal__statuses{-webkit-box-sizing:border-box;box-sizing:border-box;width:50%}@media screen and (max-width:480px){.report-modal__comment,.report-modal__statuses{width:100%}}.report-modal__statuses{-webkit-box-flex:1;-ms-flex:1 1 auto;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 p{color:#000}@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;-webkit-box-sizing:border-box;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;border-radius:4px;border:1px solid #282c37;margin-bottom: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%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.report-modal__comment .setting-toggle{margin-bottom:4px}}.actions-modal{max-height:80vh;max-width:80vw}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;-ms-flex-negative:0;flex-shrink:0}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#000;display:-webkit-box;display:-ms-flexbox;display:flex;padding:12px 16px;font-size:15px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-decoration:none}.actions-modal ul li:not(:empty) a,.actions-modal ul li:not(:empty) a button{-webkit-transition:none;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:#2b5fd9;color:#000}.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-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 .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 .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__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}.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;-webkit-transition:opacity .1s ease;transition:opacity .1s ease}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{margin-top:32px}.media-gallery__audio audio{width:100%}.attachment-list{font-size:14px;border:1px solid #c0cdd9;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list,.attachment-list__icon{display:-webkit-box;display:-ms-flexbox;display:flex}.attachment-list__icon{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;color:#444b5d;padding:8px 18px;cursor:default;border-right:1px solid #c0cdd9;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:26px}.attachment-list__icon .fa{display:block}.attachment-list__list{list-style:none;padding:4px 0;padding-left:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;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{-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative}.media-gallery__item{border:none;display:block;float:left;border-radius:4px}.media-gallery__item.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item-thumbnail{cursor:-webkit-zoom-in;cursor:zoom-in;display:block;text-decoration:none;color:#282c37;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img{-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%}.media-gallery__item-gifv-thumbnail{cursor:-webkit-zoom-in;cursor:zoom-in;height:100%;-o-object-fit:cover;font-family:object-fit\\:cover;object-fit:cover;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.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;-webkit-box-sizing:border-box;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%;-webkit-transform:translateY(-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}.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%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.video-player__controls{position:absolute;z-index:2;bottom:0;left:0;right:0;-webkit-box-sizing:border-box;box-sizing:border-box;background:-webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.85)),color-stop(60%,rgba(0,0,0,.45)),to(transparent));background:linear-gradient(0deg,rgba(0,0,0,.85),rgba(0,0,0,.45) 60%,transparent);padding:0 15px;opacity:0;-webkit-transition:opacity .1s ease;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;-webkit-transition:none;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;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:transparent;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:10px}.video-player__time-sep{display:inline-block;margin:0 6px}.video-player__time-sep,.video-player__time-total{color:#fff}.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;-webkit-transition:opacity .1s ease;transition:opacity .1s ease;background:#214fba;-webkit-box-shadow:1px 2px 6px rgba(0,0,0,.2);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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.account-gallery__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:2px}.account-gallery__item{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#fff;background-size:cover;background-position:50%;position:absolute;color:#282c37;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#282c37}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:hsla(0,0%,100%,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline{background:#e6ebf0;border-bottom:1px solid #c0cdd9;cursor:default;display:-webkit-box;display:-ms-flexbox;display:flex}.account__section-headline a{display:block;-webkit-box-flex:1;-ms-flex:1 1 auto;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{color:#282c37}.account__section-headline a.active:after,.account__section-headline a.active:before{display:block;content:\"\";position:absolute;bottom:0;left:50%;width:0;height:0;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-style:solid;border-width:0 10px 10px;border-color:transparent transparent #c0cdd9}.account__section-headline a.active:after{bottom:-1px;border-color:transparent transparent #d9e1e8}::-webkit-scrollbar-thumb{border-radius:0}.search-popout{background:#fff;border-radius:4px;padding:10px 14px;padding-bottom:14px;margin-top:10px;color:#444b5d;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4)}.search-popout h4{text-transform:uppercase;color:#444b5d;font-size:13px;font-weight:500;margin-bottom:10px}.search-popout li{padding:4px 0}.search-popout ul{margin-bottom:10px}.search-popout em{font-weight:500;color:#000}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;-webkit-transition:margin-top .4s .1s;transition:margin-top .4s .1s}.navigation-bar{will-change:padding-bottom;-webkit-transition:padding-bottom .4s .1s;transition:padding-bottom .4s .1s}.navigation-bar>a:first-child{will-change:margin-top,margin-left,margin-right,width;-webkit-transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s;transition:margin-top .4s .1s,margin-left .4s .5s,margin-right .4s .5s}.navigation-bar>.navigation-bar__profile-edit{will-change:margin-top;-webkit-transition:margin-top .4s .1s;transition:margin-top .4s .1s}.navigation-bar .navigation-bar__actions>.icon-button.close{will-change:opacity transform;-webkit-transition:opacity .2s .1s,-webkit-transform .4s .1s;transition:opacity .2s .1s,-webkit-transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s,-webkit-transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;-webkit-transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s,-webkit-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;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;-webkit-transform:scaleX(0) translate(100%);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;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:mastodon-font-monospace,monospace;background:#d9e1e8;color:#000;font-size:14px;margin:0;margin-bottom: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;padding-bottom: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:8px 0;padding-top:0;padding-bottom: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 15px;padding-right:5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#ccd7e0}.column-inline-form label{-webkit-box-flex:1;-ms-flex:1 1 auto;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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin-left:5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:hsla(0,0%,100%,.5)}.list-editor{background:#d9e1e8;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;border-radius:8px;-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@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__pager{height:50vh}.list-editor .drawer__inner{border-radius:0 0 8px 8px}.list-editor .drawer__inner.backdrop{width:calc(100% - 60px);-webkit-box-shadow:2px 4px 15px rgba(0,0,0,.4);box-shadow:2px 4px 15px rgba(0,0,0,.4);border-radius:0 0 0 8px}.list-editor__accounts{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/reticle-6490ecbb61185e86e62dca0845cf2dcf.png) no-repeat 0 0;border-radius:50%;-webkit-box-shadow:0 0 0 9999em rgba(0,0,0,.35);box-shadow:0 0 0 9999em rgba(0,0,0,.35)}.focal-point__overlay{position:absolute;width:100%;height:100%;top:0;left:0}.floating-action-button{position:fixed;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#3869db;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;-webkit-box-shadow:2px 3px 9px rgba(0,0,0,.4);box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#2251be}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.account__header .account__header__fields{font-size:14px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0}.account__header .account__header__fields dl{border-top:1px solid #c0cdd9;display:-webkit-box;display:-ms-flexbox;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{-webkit-box-sizing:border-box;box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#282c37;background:#e6ebf0;width:120px;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#000;background:#d9e1e8}.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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:15px;border-bottom:1px solid #c0cdd9}.trends__item:last-child{border-bottom:0}.trends__item__name{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;color:#444b5d;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#282c37;text-decoration:none;font-size:14px;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{width:100px;font-size:24px;line-height:36px;font-weight:500;text-align:center;color:#282c37}.trends__item__current,.trends__item__sparkline{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.trends__item__sparkline{width:50px}.trends__item__sparkline path{stroke:#2353c3!important}.modal-layout{background:#d9e1e8 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;-ms-flex-direction:column;flex-direction:column;height:100vh;padding:0}.modal-layout,.modal-layout__mastodon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal}.modal-layout__mastodon{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.modal-layout__mastodon>*{-webkit-box-flex:1;-ms-flex:1;flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.emoji-mart{font-size:13px;display:inline-block;color:#000}.emoji-mart,.emoji-mart *{-webkit-box-sizing:border-box;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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 6px;color:#282c37;line-height:0}.emoji-mart-anchor{position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;padding:12px 4px;overflow:hidden;-webkit-transition:color .1s ease-out;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;padding-right:45px;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{-webkit-box-sizing:border-box;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:\"mastodon-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:\"mastodon-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{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.rich-formatting h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.rich-formatting h2{font-family:mastodon-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:mastodon-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:mastodon-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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}.information-board__section{-webkit-box-flex:1;-ms-flex:1 0 0px;flex:1 0 0;font-family:\"mastodon-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-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;-webkit-box-sizing:border-box;box-sizing:border-box;background:#f2f5f7;padding:20px;padding-top:10px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:mastodon-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;margin-bottom: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 .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:auto}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(176,192,207,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#d9e1e8;font-size:12px;font-weight:500;color:#282c37;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:\"mastodon-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 .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#282c37;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#2b5fd9;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.landing-page h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.landing-page h2{font-family:mastodon-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:mastodon-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:mastodon-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 .container-alt{width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#d9e1e8;background:linear-gradient(150deg,#c0cdd9,#d9e1e8);position:relative}.landing-page .header-wrapper.compact{background:#d9e1e8;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37}.landing-page .header-wrapper.compact .hero .heading a{color:#2b5fd9;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#282c37;text-decoration:none;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#282c37}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#e6ebf0;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .about-short{background:#e6ebf0;padding:50px 0 30px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37}.landing-page .about-short a{color:#2b5fd9;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#e6ebf0;border-radius:4px;padding:25px 40px;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}.landing-page__call-to-action .row{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.landing-page__call-to-action .row__information-board{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.landing-page__call-to-action .row__information-board .information-board__section{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;padding:0 10px}@media screen and (max-width:415px){.landing-page__call-to-action .row__information-board{width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}.landing-page__call-to-action .row__mascot{-webkit-box-flex:1;-ms-flex:1;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 .account{border-bottom:0;padding:0}.landing-page__information .account__display-name{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;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;-webkit-box-flex:0;-ms-flex:0 0 auto;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 #mastodon-timeline,.landing-page__forms,.landing-page__information{-webkit-box-sizing:border-box;box-sizing:border-box;background:#d9e1e8;border-radius:4px;-webkit-box-shadow:0 0 6px rgba(0,0,0,.1);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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;-webkit-box-shadow:none;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#f2f5f7}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#000;width:100%;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#000;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#282c37;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#444b5d;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:40px 0;margin-top:30px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:-webkit-box;display:-ms-flexbox;display:flex;padding:10px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.landing-page .features-list .features-list__row .visual{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#282c37;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#282c37}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#444b5d}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#444b5d}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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:left;text-align:initial}.landing-page .features .container-alt,.landing-page .header .container-alt{display:block}.landing-page .header .links{padding-top:15px;background:#e6ebf0}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-ms-flex-pack:distribute;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#f2f5f7;width:100%;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:block;width:100vw;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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:transparent}.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-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:mastodon-font-monospace,monospace}button.table-action-link{background:transparent;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:#282c37;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:-webkit-box;display:-ms-flexbox;display:flex}.batch-table__row__select,.batch-table__toolbar__select{-webkit-box-sizing:border-box;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__actions,.batch-table__row__content,.batch-table__toolbar__actions,.batch-table__toolbar__content{padding:8px 0;padding-right:16px;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.batch-table__toolbar{border:1px solid #f2f5f7;background:#d9e1e8;border-radius:4px 0 0;height:47px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #f2f5f7;border-top:0;background:#e6ebf0}.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 .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.admin-wrapper{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.admin-wrapper,.admin-wrapper .sidebar-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%}.admin-wrapper .sidebar-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;background:#d9e1e8;-webkit-box-pack:end;-ms-flex-pack:end;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}.admin-wrapper .sidebar ul{list-style:none;border-radius:4px 0 0 4px;overflow:hidden;margin-bottom:20px}.admin-wrapper .sidebar ul a{display:block;padding:15px;color:#282c37;text-decoration:none;-webkit-transition:all .2s linear;transition:all .2s linear;border-radius:4px 0 0 4px}.admin-wrapper .sidebar ul a i.fa{margin-right:5px}.admin-wrapper .sidebar ul a:hover{color:#000;background-color:#e9eef2;-webkit-transition:all .1s linear;transition:all .1s linear}.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 ul a.selected{color:#000;background-color:#2b5fd9;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul ul a.selected:hover{background-color:#2454c7}.admin-wrapper .content-wrapper{-webkit-box-flex:2;-ms-flex:2;flex:2;overflow:auto}.admin-wrapper .content{max-width:700px;padding:20px 15px;padding-top:60px;padding-left:25px}.admin-wrapper .content h2{color:#282c37;font-size:24px;line-height:28px;font-weight:400;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:500;color:#282c37;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>p{font-size:14px;line-height:18px;color:#282c37;margin-bottom:20px}.admin-wrapper .content>p strong{color:#000;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:#282c37}.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 .simple_form{max-width:400px}.admin-wrapper .simple_form.edit_domain_block,.admin-wrapper .simple_form.edit_user,.admin-wrapper .simple_form.new_domain_block,.admin-wrapper .simple_form.new_form_admin_settings,.admin-wrapper .simple_form.new_form_delete_confirmation,.admin-wrapper .simple_form.new_form_two_factor_confirmation,.admin-wrapper .simple_form.new_import{max-width:none}.admin-wrapper .simple_form .actions,.admin-wrapper .simple_form .form_delete_confirmation_password,.admin-wrapper .simple_form .form_two_factor_confirmation_code{max-width:400px}@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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;height:auto;overflow:visible;overflow:initial}.admin-wrapper .sidebar{width:100%;padding:10px 0;height:auto}.admin-wrapper .sidebar .logo{margin:20px auto}.admin-wrapper .content{padding-top:20px}}.filters{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.filters .filter-subset{-webkit-box-flex:0;-ms-flex:0 0 auto;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:#282c37;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #d9e1e8}.filters .filter-subset a:hover{color:#000;border-bottom:2px solid #c9d4de}.filters .filter-subset a.selected{color:#2b5fd9;border-bottom:2px solid #2b5fd9}.report-accounts{-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:20px}.report-accounts,.report-accounts__item{display:-webkit-box;display:-ms-flexbox;display:flex}.report-accounts__item{-webkit-box-flex:250px;-ms-flex:250px;flex:250px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.account-status,.report-status{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:10px}.account-status .activity-stream,.report-status .activity-stream{-webkit-box-flex:2;-ms-flex:2 0 0px;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{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;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:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;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{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.log-entry{margin-bottom:20px;line-height:20px}.log-entry__header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;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:mastodon-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:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.name-tag .avatar,a.name-tag .avatar{display:block;margin:0;margin-right:5px;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__bubble{padding:16px;padding-left: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;padding-left:12px}.speech-bubble time{color:#444b5d}.dashboard__counters{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -5px;margin-bottom:20px}.dashboard__counters>div{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:0;-ms-flex:0 0 33.333%;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{text-align:center;font-weight:500;font-size:24px;color:#000;font-family:mastodon-font-display,sans-serif;margin-bottom:20px}.dashboard__counters__label{font-size:14px;color:#282c37;text-align:center;font-weight:500}.dashboard__widgets{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -5px}.dashboard__widgets>div{-webkit-box-flex:0;-ms-flex:0 0 33.333%;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:-15px;margin-right:0}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{margin-left:0;margin-right:8px}body.rtl .setting-meta__label{float:left}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 .activity-stream .detailed-status.light .detailed-status__display-name>div{float:right;margin-right:0;margin-left:10px}body.rtl .activity-stream .detailed-status.light .detailed-status__meta span>span{margin-left:0;margin-right:6px}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-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:0;margin-left:2.14285714em}body.rtl .fa-li{left:auto;right:-2.14285714em}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,body.rtl .simple_form .input.with_label.boolean label.checkbox{padding-left:0;padding-right:25px}body.rtl .simple_form .check_boxes .checkbox input[type=checkbox],body.rtl .simple_form .input.boolean input[type=checkbox]{left:auto;right:0}body.rtl .simple_form .input-with-append .input input{padding-left:142px;padding-right:0}body.rtl .simple_form .input-with-append .append{right:auto;left:0}body.rtl .simple_form .input-with-append .append:after{right:auto;left:0;background-image:-webkit-gradient(linear,right top,left top,from(rgba(217,225,232,0)),to(#d9e1e8));background-image:linear-gradient(270deg,rgba(217,225,232,0),#d9e1e8)}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 .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 #mastodon-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}}.emojione[title=\":8ball:\"],.emojione[title=\":ant:\"],.emojione[title=\":back:\"],.emojione[title=\":black_circle:\"],.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=\":bust_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=\":end:\"],.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=\":lower_left_fountain_pen:\"],.emojione[title=\":on:\"],.emojione[title=\":registered:\"],.emojione[title=\":soon:\"],.emojione[title=\":spades:\"],.emojione[title=\":spider:\"],.emojione[title=\":tm:\"],.emojione[title=\":top:\"],.emojione[title=\":video_game:\"],.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);-webkit-transform:scale(.71);transform:scale(.71)}.button,.button.button-alternative-2{color:#fff}.column>.scrollable{background:#fff}.drawer__inner{background:#d9e1e8}.drawer__inner__mastodon{background:#d9e1e8 url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{color:#ededed}.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:#fff}.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:-ms-input-placeholder,.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 ul 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:#204bb1}.empty-column-indicator,.error-column{color:#000}.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}.activity-stream .status.light .display-name strong,.activity-stream .status.light .status__content{color:#000}.accounts-grid .account-grid-card .controls .icon-button{color:#282c37}.accounts-grid .account-grid-card .name a{color:#000}.accounts-grid .account-grid-card .username{color:#282c37}.accounts-grid .account-grid-card .account__header__content{color:#000}.flash-message{-webkit-box-shadow:none;box-shadow:none}.flash-message.notice{background:rgba(60,117,77,.5);color:#274d32}.flash-message.alert{background:rgba(223,64,90,.5);color:#c1203b}.simple_form .warning,.table-form .warning{-webkit-box-shadow:none;box-shadow:none;background:rgba(223,64,90,.5);text-shadow:none}.reply-indicator__content a,.status__content a{color:#2b5fd9}.button.logo-button{color:#fff}.button.logo-button svg path:first-child{fill:#fff}.public-layout .header,.public-layout .public-account-bio,.public-layout .public-account-header{-webkit-box-shadow:none;box-shadow:none}.public-layout .header,.public-layout .public-account-header__image{background:#b3c3d1}.public-layout .public-account-header__image:after{-webkit-box-shadow:none;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,.hero-widget,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget,.nothing-here{-webkit-box-shadow:none;box-shadow:none}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/mastodon-light.js b/priv/static/packs/mastodon-light.js
deleted file mode 100644
index c74d91816..000000000
Binary files a/priv/static/packs/mastodon-light.js and /dev/null differ
diff --git a/priv/static/packs/mastodon-light.js.map b/priv/static/packs/mastodon-light.js.map
deleted file mode 100644
index cb91d49b9..000000000
Binary files a/priv/static/packs/mastodon-light.js.map and /dev/null differ
diff --git a/priv/static/packs/modals/embed_modal.js b/priv/static/packs/modals/embed_modal.js
index 7d03ad34e..cdca61e8e 100644
Binary files a/priv/static/packs/modals/embed_modal.js and b/priv/static/packs/modals/embed_modal.js differ
diff --git a/priv/static/packs/modals/embed_modal.js.map b/priv/static/packs/modals/embed_modal.js.map
index f231ea441..a50e74ffc 100644
Binary files a/priv/static/packs/modals/embed_modal.js.map and b/priv/static/packs/modals/embed_modal.js.map differ
diff --git a/priv/static/packs/modals/mute_modal.js b/priv/static/packs/modals/mute_modal.js
index cc6eb2a63..fe11c7788 100644
Binary files a/priv/static/packs/modals/mute_modal.js and b/priv/static/packs/modals/mute_modal.js differ
diff --git a/priv/static/packs/modals/mute_modal.js.map b/priv/static/packs/modals/mute_modal.js.map
index 0ea8d94c3..914bc0f9b 100644
Binary files a/priv/static/packs/modals/mute_modal.js.map and b/priv/static/packs/modals/mute_modal.js.map differ
diff --git a/priv/static/packs/modals/onboarding_modal.js b/priv/static/packs/modals/onboarding_modal.js
deleted file mode 100644
index 30c43feb3..000000000
Binary files a/priv/static/packs/modals/onboarding_modal.js and /dev/null differ
diff --git a/priv/static/packs/modals/onboarding_modal.js.map b/priv/static/packs/modals/onboarding_modal.js.map
deleted file mode 100644
index 5e70e5e5b..000000000
Binary files a/priv/static/packs/modals/onboarding_modal.js.map and /dev/null differ
diff --git a/priv/static/packs/modals/report_modal.js b/priv/static/packs/modals/report_modal.js
index bde4e9b07..f2bd5b8f4 100644
Binary files a/priv/static/packs/modals/report_modal.js and b/priv/static/packs/modals/report_modal.js differ
diff --git a/priv/static/packs/modals/report_modal.js.map b/priv/static/packs/modals/report_modal.js.map
index f8ab1ea1a..2d0362b27 100644
Binary files a/priv/static/packs/modals/report_modal.js.map and b/priv/static/packs/modals/report_modal.js.map differ
diff --git a/priv/static/packs/public.js b/priv/static/packs/public.js
deleted file mode 100644
index 0c600acab..000000000
Binary files a/priv/static/packs/public.js and /dev/null differ
diff --git a/priv/static/packs/public.js.map b/priv/static/packs/public.js.map
deleted file mode 100644
index afcd4f258..000000000
Binary files a/priv/static/packs/public.js.map and /dev/null differ
diff --git a/priv/static/packs/screen_federation-2e3d2e6a976a77293e341b6188515bf2.svg b/priv/static/packs/screen_federation-2e3d2e6a976a77293e341b6188515bf2.svg
new file mode 100644
index 000000000..7019a7356
--- /dev/null
+++ b/priv/static/packs/screen_federation-2e3d2e6a976a77293e341b6188515bf2.svg
@@ -0,0 +1 @@
+
diff --git a/priv/static/packs/screen_hello-d08d3eac890211eaa3ae6d75639787dd.svg b/priv/static/packs/screen_hello-d08d3eac890211eaa3ae6d75639787dd.svg
new file mode 100644
index 000000000..7bcdd0afd
--- /dev/null
+++ b/priv/static/packs/screen_hello-d08d3eac890211eaa3ae6d75639787dd.svg
@@ -0,0 +1 @@
+
diff --git a/priv/static/packs/screen_interactions-9837dafaee30c5efee219d469acd1e84.svg b/priv/static/packs/screen_interactions-9837dafaee30c5efee219d469acd1e84.svg
new file mode 100644
index 000000000..66a36f978
--- /dev/null
+++ b/priv/static/packs/screen_interactions-9837dafaee30c5efee219d469acd1e84.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/priv/static/packs/screenshot-752460e373ba6c7519109936bd0656f6.jpg b/priv/static/packs/screenshot-752460e373ba6c7519109936bd0656f6.jpg
new file mode 100644
index 000000000..45b270fbb
Binary files /dev/null and b/priv/static/packs/screenshot-752460e373ba6c7519109936bd0656f6.jpg differ
diff --git a/priv/static/packs/share.js b/priv/static/packs/share.js
deleted file mode 100644
index ab24102b3..000000000
Binary files a/priv/static/packs/share.js and /dev/null differ
diff --git a/priv/static/packs/share.js.map b/priv/static/packs/share.js.map
deleted file mode 100644
index 24e932c98..000000000
Binary files a/priv/static/packs/share.js.map and /dev/null differ
diff --git a/priv/static/packs/skins/glitch/contrast/common.css b/priv/static/packs/skins/glitch/contrast/common.css
new file mode 100644
index 000000000..7042907cf
Binary files /dev/null and b/priv/static/packs/skins/glitch/contrast/common.css differ
diff --git a/priv/static/packs/skins/glitch/contrast/common.css.map b/priv/static/packs/skins/glitch/contrast/common.css.map
new file mode 100644
index 000000000..310db07d7
--- /dev/null
+++ b/priv/static/packs/skins/glitch/contrast/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/skins/glitch/contrast/common.scss"],"names":[],"mappings":"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","file":"skins/glitch/contrast/common.css","sourcesContent":["@charset \"UTF-8\";@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:\"mastodon-font-monospace\";src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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:#313543 transparent}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#313543;border:0 #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#353a49}::-webkit-scrollbar-thumb:active{background:#313543}::-webkit-scrollbar-track{border:0 #fff;border-radius:0;background:rgba(0,0,0,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#282c37}::-webkit-scrollbar-corner{background:transparent}body{font-family:sans-serif;background:#17191f;font-size:13px;line-height:18px;font-weight:400;color:#fff;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#282c37}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#282c37}body.with-modals{overflow-x:hidden;overflow-y:scroll}body.with-modals--active{overflow-y:hidden;margin-right:13px}body.embed{background:#313543;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#1f232b;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#dde3ec;background:#282c37;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:center;justify-content:center;outline:0!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:400px){.logo-container{margin:30px auto 20px}}.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: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;background-size:40px 40px;margin-right:8px}.account-header .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.account-header .name{flex:1 1 auto;color:#ecf0f4;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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#393f4f;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;box-shadow:none;z-index:110}}.public-layout .header>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:stretch;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:stretch;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#42485a}.public-layout .header .nav-link{display:flex;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#dde3ec;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}@media screen and (max-width:550px){.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#4a5266;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:#535b72}.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:#ecf0f4}.public-layout .public-account-header.inactive .logo-button svg path:last-child{fill:#ecf0f4}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#0e1014}.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:#313543;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;background-size:120px 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 #313543;background:#17191f;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#313543;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;background-size:48px 48px;padding:7px 0 7px 10px}.public-layout .public-account-header__bar .avatar img{border:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}}@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:#dde3ec}}.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:#dde3ec;padding:10px;border-right:1px solid #313543;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 #9baec8;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #2b90d9;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#ecf0f4}.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: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:transparent;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #42485a}.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:#dde3ec}.public-layout .public-account-header__extra__links a{display:inline-block;color:#dde3ec;text-decoration:none;padding:15px}.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:#393f4f;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:#4e79df}.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:#dde3ec}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#8d9ac2;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 #393f4f}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #393f4f}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#282c37}.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:#313543}}.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}.modal-layout{background:#282c37 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}.modal-layout__mastodon{display:flex;flex:1;flex-direction:column;justify-content:flex-end}.modal-layout__mastodon>*{flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.public-layout .footer{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#737d99}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#737d99}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#dde3ec}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#737d99}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#737d99}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#7f88a2}.compact-header h1{font-size:24px;line-height:28px;color:#dde3ec;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:#ecf0f4}.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%;height:167px;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:#282c37;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#dde3ec;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:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.hero-widget__text a{color:#ecf0f4;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:#dde3ec}.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,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#282c37;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;min-height:100%}.contact-widget{font-size:15px;color:#dde3ec;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:#282c37;box-shadow:0 0 15px rgba(0,0,0,.2);color:#ecf0f4;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:#dde3ec}.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:#dde3ec;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#393f4f;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:#dde3ec}@media screen and (max-width:415px){.page-header{margin-top:0;background:#313543}.page-header h1{font-size:24px}}.directory{background:#282c37;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{display:flex;align-items:center;justify-content:space-between;background:#282c37;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:#393f4f}.directory__tag.active a{background:#2b5fd9;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:#dde3ec}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#dde3ec}.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:#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;border:2px solid #282c37}.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 thead th{text-align:center;text-transform:uppercase;color:#dde3ec;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 #393f4f}.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:#dde3ec;font-weight:400;font-size:14px}@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 #4a5266}}.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:#dde3ec}.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: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 .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:#dde3ec}.simple_form .hint a{color:#2b90d9}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#0e1014}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#dde3ec}.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{-webkit-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:#131419;border:1px solid #0a0b0e;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,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{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:#2b90d9;background:#17191f}.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 .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:#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:#416fdd}.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:#2454c7}.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:#131419 url(\"data:image/svg+xml;utf8,
\") no-repeat right 8px center/auto 16px;border:1px solid #0a0b0e;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:#c2cede;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(19,20,25,0),#131419)}.flash-message{background:#393f4f;color:#dde3ec;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 p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:monospace,monospace;background:#282c37;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:#313543}.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:#dde3ec;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:#2b90d9;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#4ea2df}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#dde3ec}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#ecf0f4;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:#ecf0f4;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:#dde3ec}.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:monospace,monospace}.input-copy{background:#131419;border:1px solid #0a0b0e;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:transparent;border:0;padding:10px;font-size:14px;font-family: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}.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:#393f4f}.card__img{height:130px;position:relative;background:#0e1014;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:#313543;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;background-size:48px 48px;padding-top:2px}.card__bar .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;background:#17191f}.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:#dde3ec;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:#000;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#ecf0f4}.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:#1a1a1a}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#282c37;box-shadow:0 0 15px rgba(0,0,0,.2);color:#364861;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:#d9e1e8;background-color:rgba(217,225,232,.1);border:1px solid rgba(217,225,232,.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:#42485a 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 #42485a}.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:#ecf0f4;background:rgba(23,25,31,.5)}.account__header__fields dd{flex:1 1 auto;color:#dde3ec}.account__header__fields a{color:#2b90d9;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}.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:#282c37}.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:#393f4f}.button.logo-button{flex:0 auto;font-size:14px;background:#2b5fd9;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}.button.logo-button svg path:first-child{fill:#fff}.button.logo-button svg path:last-child{fill:#2b5fd9}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#5680e1}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#5680e1}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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:initial;margin-left:78px;padding:15px 0 2px}.embed .status__prepend-icon-wrapper,.public-layout .status__prepend-icon-wrapper{position:absolute;margin:initial;float:none;width:auto;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}.embed .status .status__info,.public-layout .status .status__info{font-size:15px;display:initial}.embed .status .status__relative-time,.public-layout .status .status__relative-time{color:#c2cede;float:right;font-size:14px;width:auto;margin:initial;padding:initial}.embed .status .status__info .status__display-name,.public-layout .status .status__info .status__display-name{display:block;max-width:100%;padding-right:25px;margin:initial}.embed .status .status__info .status__display-name .display-name strong,.public-layout .status .status__info .status__display-name .display-name strong{display:inline}.embed .status .status__avatar,.public-layout .status .status__avatar{height:48px;position:absolute;width:48px;margin:initial}.rtl .embed .status .status__relative-time,.rtl .public-layout .status .status__relative-time{float:left}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#2558d0;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#4976de;transition:all .2s ease-out}.button:disabled{background-color:#9baec8;cursor:default}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#000;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#a8b9cf}.button.button-alternative-2{background:#606984}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#687390}.button.button-secondary{font-size:16px;line-height:36px;height:auto;color:#dde3ec;text-transform:none;background:transparent;padding:3px 15px;border-radius:4px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#a8b9cf;color:#eaeef3}.button.button--block{display:block;width:100%}.icon-button{display:inline-block;padding:0;color:#8d9ac2;border:none;background:transparent;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#a4afce;transition:color .2s ease-out}.icon-button.disabled{color:#6274ab;cursor:default}.icon-button.active{color:#2b90d9}.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:#1b1e25}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#0c0d11}.icon-button.inverted.disabled{color:#2a2e3a}.icon-button.inverted.active{color:#2b90d9}.icon-button.inverted.active.disabled{color:#63ade3}.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:#1b1e25;border:none;background:transparent;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:#0c0d11;transition:color .2s ease-out}.text-icon-button.disabled{color:#464d60;cursor:default}.text-icon-button.active{color:#2b90d9}.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}.dropdown-menu{position:absolute;-webkit-transform-origin:50% 0;transform-origin:50% 0}.invisible{font-size:0;line-height:0;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:\"…\"}.notification__favourite-icon-wrapper{left:0;position:absolute}.notification__favourite-icon-wrapper .fa.star-icon,.star-icon.active{color:#ca8f04}.bookmark-icon.active{color:#ff5050}.notification__display-name{color:inherit;font-weight:500;text-decoration:none}.notification__display-name:hover{color:#fff;text-decoration:underline}.display-name{display:block;padding:6px 0;max-width:100%;height:36px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.display-name strong{font-size:16px;font-weight:500}.display-name span,.display-name strong{display:block;height:18px;line-height:18px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.display-name span{font-size:15px}.display-name:hover strong{text-decoration:underline}.display-name.inline{padding:0;height:18px;font-size:15px;line-height:18px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.display-name.inline span,.display-name.inline strong{display:inline;height:auto;font-size:inherit;line-height:inherit}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.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/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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;height:0}.dropdown-menu{background:#d9e1e8;padding:4px 0;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4)}.dropdown-menu ul{list-style:none}.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:#d9e1e8}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-7px;border-width:5px 7px 0;border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-7px;border-width:0 7px 5px;border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#d9e1e8}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#000;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#2b5fd9;color:#ecf0f4;outline:0}.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:#d9e1e8;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:#d9e1e8;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:#ecf0f4}.dropdown__icon{vertical-align:middle}.static-content{padding:20px 10px 10px;color:#c2cede}.static-content h1{font-size:16px;font-weight:500;margin-bottom:40px;text-align:center}.static-content p{font-size:13px;margin-bottom:20px}.tabs-bar{display:flex;background:#393f4f;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;flex:1 1 auto;padding:15px 10px;color:#fff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #393f4f;transition:all .2s linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #2b5fd9;color:#2b90d9}@media screen and (min-width:631px){.auto-columns .tabs-bar__link:active,.auto-columns .tabs-bar__link:focus,.auto-columns .tabs-bar__link:hover{background:#464d60;transition:all .1s linear}}.multi-columns .tabs-bar__link:active,.multi-columns .tabs-bar__link:focus,.multi-columns .tabs-bar__link:hover{background:#464d60;transition:all .1s linear}.tabs-bar__link span:last-child{margin-left:5px;display:none}@media screen and (min-width:631px){.auto-columns .tabs-bar{display:none}}.multi-columns .tabs-bar{display:none}.scrollable{overflow-y:scroll;overflow-x:hidden;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}.scrollable--flex{display:flex;flex-direction:column}.scrollable__append{flex:1 1 auto;position:relative;min-height:120px}@supports (display:grid){.scrollable.fullscreen{contain:none}}.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:rgba(0,0,0,0);-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:#282c37;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#131419}.react-toggle--checked .react-toggle-track{background-color:#2b5fd9}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#5680e1}.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{transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #282c37;border-radius:50%;background-color:#fafafa;box-sizing:border-box;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#2b5fd9}.getting-started__wrapper,.getting_started{background:#282c37}.getting-started__wrapper{position:relative;overflow-y:auto}.getting-started{background:#282c37;flex:1 0 auto}.getting-started p{color:#ecf0f4}.getting-started a{color:#c2cede}.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:#c2cede;font-size:13px;margin-bottom:20px}.getting-started__footer p a{color:#c2cede;text-decoration:underline}.getting-started__footer a{text-decoration:none;color:#dde3ec}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover{text-decoration:underline}.column-link__badge{display:inline-block;border-radius:4px;font-size:12px;line-height:19px;font-weight:500;background:#282c37;padding:4px 8px;margin:-6px 10px}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#393f4f;border:1px solid #1f232b}.setting-text{color:#dde3ec;background:transparent;border:none;border-bottom:2px solid #9baec8;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:#2b5fd9}@media screen and (max-width:600px){.auto-columns .setting-text,.single-column .setting-text{font-size:16px}}.setting-text.light{color:#000;border-bottom:2px solid #626c87}.setting-text.light:active,.setting-text.light:focus{color:#000;border-bottom-color:#2b5fd9}.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%}.reduce-motion button.icon-button i.fa-retweet{color:#8d9ac2;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#2b90d9}.reduce-motion button.icon-button.disabled i.fa-retweet{color:#6274ab}.load-more{display:block;color:#c2cede;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:#2c313d}.load-gap{border-bottom:1px solid #393f4f}.missing-indicator{padding-top:68px}.scrollable>div>:first-child .notification__dismiss-overlay>.wrappy{border-top:1px solid #282c37}.notification__dismiss-overlay{overflow:hidden;position:absolute;top:0;right:0;bottom:-1px;padding-left:15px;z-index:999;align-items:center;justify-content:flex-end;cursor:pointer;display:flex}.notification__dismiss-overlay .wrappy{width:4rem;align-self:stretch;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#393f4f;border-left:1px solid #535b72;box-shadow:0 0 5px #000;border-bottom:1px solid #282c37}.notification__dismiss-overlay .ckbox{border:2px solid #9baec8;border-radius:2px;width:30px;height:30px;font-size:20px;color:#dde3ec;text-shadow:0 0 5px #000;display:flex;justify-content:center;align-items:center}.notification__dismiss-overlay:focus{outline:0!important}.notification__dismiss-overlay:focus .ckbox{box-shadow:0 0 1px 1px #2b5fd9}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.loading-indicator{color:#c2cede;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #606984;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:#606984}29%{background-color:#606984}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:#606984}29%{background-color:#606984}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}}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.setting-toggle{display:block;line-height:24px}.setting-meta__label,.setting-radio__label,.setting-toggle__label{color:#dde3ec;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.setting-radio{display:block;line-height:18px}.setting-radio__label{margin-bottom:0}.column-settings__row legend{color:#dde3ec;cursor:default;display:block;font-weight:500;margin-top:10px}.setting-radio__input{vertical-align:middle}.setting-meta__label{float:right}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.pulse-loading{-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}.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:#282c37;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#ecf0f4;font-size:18px;font-weight:500;border:2px dashed #606984;border-radius:4px}.dropdown--active .emoji-button img{opacity:1;-webkit-filter:none;filter:none}.loading-bar{background-color:#2b5fd9;height:3px;position:absolute;top:0;left:0}.icon-badge-wrapper{position:relative}.icon-badge{position:absolute;display:block;right:-.25em;top:-.25em;background-color:#2b5fd9;border-radius:50%;font-size:75%;width:1em;height:1em}::-webkit-scrollbar-thumb{border-radius:0}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:#ecf0f4;max-width:400px}noscript div a{color:#2b90d9;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}}button.icon-button i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}.status-direct button.icon-button.disabled i.fa-retweet,.status-direct button.icon-button.disabled i.fa-retweet:hover,button.icon-button.disabled i.fa-retweet,button.icon-button.disabled i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}.account{padding:10px;border-bottom:1px solid #393f4f;color:inherit;text-decoration:none}.account .account__display-name{flex:1 1 auto;display:block;color:#dde3ec;overflow:hidden;text-decoration:none;font-size:14px}.account.small{border:none;padding:0}.account.small>.account__avatar-wrapper{margin:0 8px 0 0}.account.small>.display-name{height:24px;line-height:24px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative;cursor:pointer}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}.account__avatar-overlay{position:relative;width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:8%;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:8%;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:18px;padding:10px;white-space:nowrap}.account__header,.account__header__wrapper{flex:0 0 auto;background:#313543}.account__header{text-align:center;background-size:cover;background-position:50%;position:relative}.account__header .account__avatar{border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:90px;height:90px;background-size:90px 90px;display:block;margin:0 auto 10px;overflow:hidden}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#ecf0f4}.account__header>div{background:rgba(49,53,67,.9);padding:20px 10px}.account__header .account__header__content{color:#ecf0f4}.account__header .account__header__display-name{color:#fff;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#2b90d9;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.account__disclaimer{padding:10px;border-top:1px solid #393f4f;color:#c2cede}.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__header__content{color:#dde3ec;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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;line-height:36px;overflow:hidden;flex:0 0 auto;display:flex}.account__action-bar-dropdown{padding:10px}.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-left:1px solid #393f4f;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:#dde3ec}.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__action-bar__tab abbr{color:#2b90d9}.account__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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}.notification__message{margin-left:42px;padding:8px 0 0 26px;cursor:default;color:#dde3ec;font-size:15px;position:relative}.notification__message .fa{color:#2b90d9}.notification__message>span{display:block;overflow:hidden;text-overflow:ellipsis}.account--panel{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;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:#393f4f;padding:15px}.column-settings__section{color:#dde3ec;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__section .column-settings__hashtag-select__control{outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#282c37;color:#dde3ec;font-size:14px;margin:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner{border:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner,.column-settings__section .column-settings__hashtag-select__control:active,.column-settings__section .column-settings__hashtag-select__control:focus{outline:0!important}.column-settings__section .column-settings__hashtag-select__control:focus{background:#313543}@media screen and (max-width:600px){.column-settings__section .column-settings__hashtag-select__control{font-size:16px}}.column-settings__section .column-settings__hashtag-select__multi-value{background:#393f4f}.column-settings__section .column-settings__hashtag-select__input,.column-settings__section .column-settings__hashtag-select__multi-value__label{color:#dde3ec}.column-settings__section .column-settings__hashtag-select__dropdown-indicator,.column-settings__section .column-settings__hashtag-select__indicator-separator{display:none}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#fff;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:rgba(0,0,0,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.account-gallery__container{display:flex;justify-content:center;flex-wrap:wrap;padding:2px}.account-gallery__item{flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#000;background-size:cover;background-position:50%;position:absolute;color:#9baec8;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#d9e1e8}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:rgba(0,0,0,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#1f232b;border-bottom:1px solid #393f4f;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#1f232b;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:#dde3ec;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:#ecf0f4}.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;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-color:transparent transparent #393f4f;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 #282c37}.account__moved-note{padding:14px 10px 16px;background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f}.account__moved-note__message{position:relative;margin-left:58px;color:#c2cede;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}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.domain{padding:10px;border-bottom:1px solid #393f4f}.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}.status__content--with-action{cursor:pointer}.status__content{position:relative;margin:10px 0;font-size:15px;line-height:20px;word-wrap:break-word;font-weight:400;overflow:visible;padding-top:5px}.status__content:focus{outline:0}.status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.status__content p{margin-bottom:20px;white-space:pre-wrap}.status__content p:last-child{margin-bottom:0}.status__content a{color:#d8a070;text-decoration:none}.status__content a:hover{text-decoration:underline}.status__content a:hover .fa{color:#dae1ea}.status__content a.mention:hover{text-decoration:none}.status__content a.mention:hover span{text-decoration:underline}.status__content a .fa{color:#c2cede}.status__content .status__content__spoiler{display:none}.status__content .status__content__spoiler.status__content__spoiler--visible{display:block}.status__content .status__content__spoiler-link{background:#687390}.status__content .status__content__spoiler-link:hover{background:#707b97;text-decoration:none}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:#687390;border:none;color:#000;font-weight:500;font-size:11px;padding:0 5px;text-transform:uppercase;line-height:inherit;cursor:pointer;vertical-align:bottom}.status__content__spoiler-link:hover{background:#707b97;text-decoration:none}.status__content__spoiler-link .status__content__spoiler-icon{display:inline-block;margin:0 0 0 5px;border-left:1px solid;padding:0 0 0 4px;font-size:16px;vertical-align:-2px}.notif-cleaning .notification-follow,.notif-cleaning .status{padding-right:4.5rem}.status__wrapper--filtered{color:#c2cede;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 #393f4f}.status__prepend-icon-wrapper{float:left;margin:0 10px 0 -58px;width:48px;text-align:right}.notification-follow{position:relative;border-bottom:1px solid #393f4f}.notification-follow .account{border-bottom:0}.focusable:focus{outline:0;background:#313543}.focusable:focus .status.status-direct{background:#42485a}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#393f4f}.status{padding:10px 14px;position:relative;height:auto;border-bottom:1px solid #393f4f;cursor:default;opacity:1;-webkit-animation:fade .15s linear;animation:fade .15s linear}@supports (-ms-overflow-style:-ms-autohiding-scrollbar){.status{padding-right:28px}}@-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{background:#393f4f}.status.light .status__relative-time{color:#1b1e25}.status.light .display-name strong,.status.light .status__display-name{color:#000}.status.light .display-name span{color:#1b1e25}.status.light .status__content{color:#000}.status.light .status__content a{color:#2b90d9}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.status.collapsed{background-position:50%;background-size:cover;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.status.collapsed.has-background:before{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background-image:linear-gradient(180deg,rgba(0,0,0,.75),rgba(0,0,0,.65) 24px,rgba(0,0,0,.8));pointer-events:none;content:\"\"}.status.collapsed .display-name:hover .display-name__html{text-decoration:none}.status.collapsed .status__content{height:20px;overflow:hidden;text-overflow:ellipsis;padding-top:0}.status.collapsed .status__content:after{content:\"\";position:absolute;top:0;bottom:0;left:0;right:0;background:linear-gradient(rgba(40,44,55,0),#282c37);pointer-events:none}.status.collapsed .status__content a:hover{text-decoration:none}.status.collapsed:focus>.status__content:after{background:linear-gradient(rgba(49,53,67,0),#313543)}.status.collapsed.status-direct>.status__content:after{background:linear-gradient(rgba(57,63,79,0),#393f4f)}.status.collapsed .notification__message{margin-bottom:0}.status.collapsed .status__info .notification__message>span{white-space:nowrap}.status .notification__message{margin:-10px 0 10px}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#b8c0d9}.status__relative-time{display:inline-block;margin-left:auto;padding-left:18px;width:120px;color:#c2cede;font-size:14px;text-align:right;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.status__display-name{margin:0 auto 0 0;color:#c2cede;overflow:hidden}.status__info__account .status__display-name{display:block;max-width:100%}.status__info{display:flex;font-size:15px}.status__info>span{text-overflow:ellipsis;overflow:hidden}.status__info .notification__message>span{word-wrap:break-word}.status__info__icons{margin-left:auto;display:flex;align-items:center;height:1em;color:#8d9ac2}.status__info__icons .status__media-icon{padding-left:6px;padding-right:1px}.status__info__icons .status__visibility-icon{padding-left:4px}.status__info__account{display:flex}.status-check-box{border-bottom:1px solid #d9e1e8;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:-10px -10px 10px;color:#c2cede;padding:8px 10px 0 68px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#c2cede}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:8px}.status__action-bar__counter{display:inline-flex;margin-right:11px;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:#8d9ac2}.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:#313543;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 .video-player{margin-top:8px}.detailed-status__meta{margin-top:15px;color:#c2cede;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.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}.account__display-name:hover strong,.detailed-status__display-name:hover strong,.reply-indicator__display-name:hover strong,.status__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:#ecf0f4;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{flex:none;margin:0 10px 0 0;height:48px;width:48px}.muted .status__content,.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#c2cede}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#606984;color:#000}.muted a.status__content__spoiler-link:hover{background:#66718d;text-decoration:none}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.status-card{display:flex;font-size:14px;border:1px solid #393f4f;border-radius:4px;color:#c2cede;margin-top:14px;text-decoration:none;overflow:hidden}.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:4px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}.status-card__actions a .fa,.status-card__actions a:hover .fa{color:inherit}a.status-card{cursor:pointer}a.status-card:hover{background:#393f4f}.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:#dde3ec;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#dde3ec}.status-card__host{display:block;margin-top:5px;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__image{flex:0 0 100px;background:#393f4f;position:relative}.status-card__image>.fa{font-size:21px;position:absolute;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:50%;left:50%;-webkit-transform:translate(-50%,-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{border-color:#313543}.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 60px}a.status-card.compact:hover{background-color:#313543}.status-card__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover;background-size:cover;background-position:50%}.status__video-player{display:flex;align-items:center;background:#000;box-sizing:border-box;cursor:default;margin-top:8px;overflow:hidden;position:relative}.status__video-player.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.status__video-player-video{height:100%;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.status__video-player-video:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.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}.attachment-list{display:flex;font-size:14px;border:1px solid #393f4f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#c2cede;padding:8px 18px;cursor:default;border-right:1px solid #393f4f;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:#c2cede;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:#c2cede}.modal-container--preloader{background:#393f4f}.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}.embed-modal,.error-modal,.onboarding-modal{background:#d9e1e8;color:#000;border-radius:8px;overflow:hidden;display:flex;flex-direction:column}.onboarding-modal__pager{height:80vh;width:80vw;max-width:520px;max-height:470px}.onboarding-modal__pager .react-swipeable-view-container>div{width:100%;height:100%;box-sizing:border-box;display:none;flex-direction:column;align-items:center;justify-content:center;display:flex;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.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}@media screen and (max-width:550px){.onboarding-modal{width:100%;height:100%;border-radius:0}.onboarding-modal__pager{width:100%;height:auto;max-width:none;max-height:none;flex:1 1 auto}}.error-modal__footer,.onboarding-modal__paginator{flex:0 0 auto;background:#c0cdd9;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:#1b1e25;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:#131419;background-color:#a6b9c9}.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:#000}.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:#0a0a0a}.error-modal__footer{justify-content:center}.onboarding-modal__dots{flex:1 1 auto;display:flex;align-items:center;justify-content:center}.onboarding-modal__dot{width:14px;height:14px;border-radius:14px;background:#a6b9c9;margin:0 3px;cursor:pointer}.onboarding-modal__dot:hover{background:#a0b4c5}.onboarding-modal__dot.active{cursor:default;background:#8da5ba}.onboarding-modal__page__wrapper{pointer-events:none;padding:25px 25px 0}.onboarding-modal__page__wrapper.onboarding-modal__page__wrapper--active{pointer-events:auto}.onboarding-modal__page{cursor:default;line-height:21px}.onboarding-modal__page h1{font-size:18px;font-weight:500;color:#000;margin-bottom:20px}.onboarding-modal__page a{color:#2b90d9}.onboarding-modal__page a:active,.onboarding-modal__page a:focus,.onboarding-modal__page a:hover{color:#3c99dc}.onboarding-modal__page .navigation-bar a{color:inherit}.onboarding-modal__page p{font-size:16px;color:#1b1e25;margin-top:10px;margin-bottom:10px}.onboarding-modal__page p:last-child{margin-bottom:0}.onboarding-modal__page p strong{font-weight:500;background:#282c37;color:#ecf0f4;border-radius:4px;font-size:14px;padding:3px 6px}.onboarding-modal__page p strong:lang(ja),.onboarding-modal__page p strong:lang(ko),.onboarding-modal__page p strong:lang(zh-CN),.onboarding-modal__page p strong:lang(zh-HK),.onboarding-modal__page p strong:lang(zh-TW){font-weight:700}.onboarding-modal__page__wrapper-0{height:100%;padding:0}.onboarding-modal__page-one__lead{padding:45px 65px 0;margin-bottom:10px}.onboarding-modal__page-one__lead h1{font-size:26px;line-height:36px;margin-bottom:8px}.onboarding-modal__page-one__lead p{margin-bottom:0}.onboarding-modal__page-one__extra{padding-right:65px;padding-left:185px;text-align: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:#282c37;color:#ecf0f4;font-weight:500;padding:10px;border-radius:4px}.onboarding-modal__page-five p,.onboarding-modal__page-four p,.onboarding-modal__page-three p,.onboarding-modal__page-two p{text-align:left}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{background:#17191f;color:#ecf0f4;margin-bottom:20px;border-radius:4px;padding:10px;text-align:center;font-size:14px;box-shadow:1px 2px 6px rgba(0,0,0,.3)}.onboarding-modal__page-five .figure .onboarding-modal__image,.onboarding-modal__page-four .figure .onboarding-modal__image,.onboarding-modal__page-three .figure .onboarding-modal__image,.onboarding-modal__page-two .figure .onboarding-modal__image{border-radius:4px;margin-bottom:10px}.onboarding-modal__page-five .figure.non-interactive,.onboarding-modal__page-four .figure.non-interactive,.onboarding-modal__page-three .figure.non-interactive,.onboarding-modal__page-two .figure.non-interactive{pointer-events:none;text-align:left}.onboarding-modal__page-four__columns .row{display:flex;margin-bottom:20px}.onboarding-modal__page-four__columns .row>div{flex:1 1 0;margin:0 10px}.onboarding-modal__page-four__columns .row>div:first-child{margin-left:0}.onboarding-modal__page-four__columns .row>div:last-child{margin-right:0}.onboarding-modal__page-four__columns .row>div p{text-align:center}.onboarding-modal__page-four__columns .row:last-child{margin-bottom:0}.onboarding-modal__page-four__columns .column-header{color:#fff}@media screen and (max-width:320px) and (max-height:600px){.onboarding-modal__page p{font-size:14px;line-height:20px}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{font-size:12px;margin-bottom:10px}.onboarding-modal__page-four__columns .row{margin-bottom:10px}.onboarding-modal__page-four__columns .column-header{padding:5px;font-size:12px}}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.doodle-modal,.favourite-modal,.mute-modal,.report-modal{background:#f2f5f7;color:#000;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;flex-direction:column}.actions-modal .status__display-name,.boost-modal .status__display-name,.confirmation-modal .status__display-name,.doodle-modal .status__display-name,.favourite-modal .status__display-name,.mute-modal .status__display-name,.report-modal .status__display-name{display:flex}.actions-modal .status__avatar,.boost-modal .status__avatar,.confirmation-modal .status__avatar,.doodle-modal .status__avatar,.favourite-modal .status__avatar,.mute-modal .status__avatar,.report-modal .status__avatar{height:28px;left:10px;top:10px;width:48px}.actions-modal .status__content__spoiler-link,.boost-modal .status__content__spoiler-link,.confirmation-modal .status__content__spoiler-link,.doodle-modal .status__content__spoiler-link,.favourite-modal .status__content__spoiler-link,.mute-modal .status__content__spoiler-link,.report-modal .status__content__spoiler-link{color:#fff}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#d9e1e8}.boost-modal__container,.favourite-modal__container{overflow-x:scroll;padding:10px}.boost-modal__container .status,.favourite-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,.doodle-modal__action-bar,.favourite-modal__action-bar,.mute-modal__action-bar{display:flex;justify-content:space-between;background:#d9e1e8;padding:10px;line-height:36px}.boost-modal__action-bar>div,.confirmation-modal__action-bar>div,.doodle-modal__action-bar>div,.favourite-modal__action-bar>div,.mute-modal__action-bar>div{flex:1 1 auto;text-align:right;color:#1b1e25;padding-right:10px}.boost-modal__action-bar .button,.confirmation-modal__action-bar .button,.doodle-modal__action-bar .button,.favourite-modal__action-bar .button,.mute-modal__action-bar .button{flex:0 0 auto}.boost-modal__status-header,.favourite-modal__status-header{font-size:15px}.boost-modal__status-time,.favourite-modal__status-time{float:right;font-size:14px}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.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 #d9e1e8}@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:#2b90d9}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #d9e1e8;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 #d9e1e8;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #c0cdd9}.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}}.report-modal__target{padding:20px}.report-modal__target .media-modal__close{top:19px;right:15px}.actions-modal{max-height:80vh;max-width:80vw}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal strong{display:block;font-weight:500}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;flex-shrink:0}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#000;display:flex;padding:12px 16px;font-size:15px;align-items:center;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:#2b5fd9;color:#fff}.actions-modal ul li:not(:empty) a>.icon,.actions-modal ul li:not(:empty) a>.react-toggle,.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#1b1e25;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 .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 .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#131419}.confirmation-modal__do_not_ask_again{padding-left:20px;padding-right:20px;padding-bottom:10px;font-size:14px}.confirmation-modal__do_not_ask_again input,.confirmation-modal__do_not_ask_again label{vertical-align:middle}.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}.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:\"mastodon-font-monospace\",monospace;background:#282c37;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:#313543}@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}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/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 .account__header__fields{font-size:15px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0;border-top:0}.account__header .account__header__fields dl{background:#282c37;border-top:1px solid #313543;border-bottom:0;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#dde3ec;background:#444b5d;width:120px;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{flex:1 1 auto;color:#fff;background:#282c37}.account__header .account__header__fields dd.verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.composer{padding:10px}.no-reduce-motion .composer--spoiler{transition:height .4s ease,opacity .4s ease}.composer--spoiler{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.composer--spoiler.composer--spoiler--visible{height:47px;opacity:1}.composer--spoiler input{display:block;box-sizing:border-box;margin:0;border:none;border-radius:4px;padding:10px;width:100%;outline:0;color:#000;background:#fff;font-size:14px;font-family:inherit;resize:vertical}.composer--spoiler input:focus{outline:0}@media screen and (max-width:630px){.auto-columns .composer--spoiler input{font-size:16px}}.single-column .composer--spoiler input{font-size:16px}.composer--warning{color:#000;margin-bottom:15px;background:#9baec8;box-shadow:0 2px 6px rgba(0,0,0,.3);padding:8px 10px;border-radius:4px;font-size:13px;font-weight:400}.composer--warning a{color:#1b1e25;font-weight:500;text-decoration:underline}.composer--warning a:active,.composer--warning a:focus,.composer--warning a:hover{text-decoration:none}.composer--reply{margin:0 0 10px;border-radius:4px;padding:10px;background:#9baec8}.composer--reply>header{margin-bottom:5px;overflow:hidden}.composer--reply>header>.account.small{color:#000}.composer--reply>header>.cancel{float:right;line-height:24px}.composer--reply>.content{position:relative;margin:10px 0;font-size:14px;line-height:20px;color:#000;word-wrap:break-word;font-weight:400;overflow:visible;white-space:pre-wrap;padding:5px 12px 0}.composer--reply>.content p{margin-bottom:20px}.composer--reply>.content p:last-child{margin-bottom:0}.composer--reply>.content a{color:#1b1e25;text-decoration:none}.composer--reply>.content a:hover{text-decoration:underline}.composer--reply>.content a.mention:hover{text-decoration:none}.composer--reply>.content a.mention:hover span{text-decoration:underline}.composer--reply .emojione{width:20px;height:20px;margin:-5px 0 0}.emoji-picker-dropdown{position:absolute;right:5px;top:5px}.emoji-picker-dropdown ::-webkit-scrollbar-track:active,.emoji-picker-dropdown ::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.3)}.composer--textarea{position:relative}.composer--textarea>label .textarea{display:block;box-sizing:border-box;margin:0;border:none;border-radius:4px 4px 0 0;padding:10px 32px 0 10px;width:100%;min-height:100px;outline:0;color:#000;background:#fff;font-size:14px;font-family:inherit;resize:none}.composer--textarea>label .textarea:disabled{background:#d9e1e8}.composer--textarea>label .textarea:focus{outline:0}@media screen and (max-width:630px){.auto-columns .composer--textarea>label .textarea{font-size:16px}}.single-column .composer--textarea>label .textarea{font-size:16px}@media screen and (max-width:600px){.auto-columns .composer--textarea>label .textarea,.single-column .composer--textarea>label .textarea{height:100px!important;resize:vertical}}.composer--textarea--icons{display:block;position:absolute;top:29px;right:5px;bottom:5px;overflow:hidden}.composer--textarea--icons>.textarea_icon{display:block;margin:2px 0 0 2px;width:24px;height:24px;color:#1b1e25;font-size:18px;line-height:24px;text-align:center;opacity:.8}.composer--textarea--suggestions{display:block;position:absolute;box-sizing:border-box;top:100%;border-radius:0 0 4px 4px;padding:6px;width:100%;color:#000;background:#d9e1e8;box-shadow:4px 4px 6px rgba(0,0,0,.4);font-size:14px;z-index:99}.composer--textarea--suggestions[hidden]{display:none}.composer--textarea--suggestions--item{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;border-radius:4px;padding:10px;font-size:14px;line-height:18px;overflow:hidden;cursor:pointer}.composer--textarea--suggestions--item.selected,.composer--textarea--suggestions--item:active,.composer--textarea--suggestions--item:focus,.composer--textarea--suggestions--item:hover{background:#b9c8d5}.composer--textarea--suggestions--item>.emoji img{display:block;float:left;margin-right:8px;width:18px;height:18px}.composer--textarea--suggestions--item>.account.small .display-name>span{color:#1b1e25}.composer--upload_form{padding:5px;color:#000;background:#fff;font-size:14px}.composer--upload_form>.content{display:flex;flex-direction:row;flex-wrap:wrap;font-family:inherit;overflow:hidden}.composer--upload_form--item{flex:1 1 0;margin:5px;min-width:40%}.composer--upload_form--item>div{position:relative;border-radius:4px;height:140px;width:100%;background-position:50%;background-size:cover;background-repeat:no-repeat;overflow:hidden}.composer--upload_form--item>div input{display:block;position:absolute;box-sizing:border-box;bottom:0;left:0;margin:0;border:0;padding:10px;width:100%;color:#ecf0f4;background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);font-size:14px;font-family:inherit;font-weight:500;opacity:0;z-index:2;transition:opacity .1s ease}.composer--upload_form--item>div input:focus{color:#fff}.composer--upload_form--item>div input::-webkit-input-placeholder{opacity:.54;color:#ecf0f4}.composer--upload_form--item>div input:-ms-input-placeholder{opacity:.54;color:#ecf0f4}.composer--upload_form--item>div input::-ms-input-placeholder{opacity:.54;color:#ecf0f4}.composer--upload_form--item>div input::placeholder{opacity:.54;color:#ecf0f4}.composer--upload_form--item>div>.close{mix-blend-mode:difference}.composer--upload_form--item.active>div input{opacity:1}.composer--upload_form--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}.composer--upload_form--actions .icon-button{flex:0 1 auto;color:#d9e1e8;font-size:14px;font-weight:500;padding:10px;font-family:inherit}.composer--upload_form--actions .icon-button:active,.composer--upload_form--actions .icon-button:focus,.composer--upload_form--actions .icon-button:hover{color:#e6ebf0}.composer--upload_form--actions.active{opacity:1}.composer--upload_form--progress{display:flex;padding:10px;color:#dde3ec;overflow:hidden}.composer--upload_form--progress>.fa{font-size:34px;margin-right:10px}.composer--upload_form--progress>.message{flex:1 1 auto}.composer--upload_form--progress>.message>span{display:block;font-size:12px;font-weight:500;text-transform:uppercase}.composer--upload_form--progress>.message>.backdrop{position:relative;margin-top:5px;border-radius:6px;width:100%;height:6px;background:#606984}.composer--upload_form--progress>.message>.backdrop>.tracker{position:absolute;top:0;left:0;height:6px;border-radius:6px;background:#2b5fd9}.composer--options{padding:10px;background:#ebebeb;box-shadow:inset 0 5px 5px rgba(0,0,0,.05);border-radius:0 0 4px 4px;height:27px}.composer--options>*{display:inline-block;box-sizing:content-box;padding:0 3px;height:27px;line-height:27px;vertical-align:bottom}.composer--options>hr{display:inline-block;margin:0 3px;border:0 transparent;border-left:1px solid #c2c2c2;padding:0;width:0;height:27px;background:transparent}.composer--options--dropdown.open>.value{border-radius:4px 4px 0 0;box-shadow:0 -4px 4px rgba(0,0,0,.1);color:#fff;background:#2b5fd9;transition:none}.composer--options--dropdown.open.top>.value{border-radius:0 0 4px 4px;box-shadow:0 4px 4px rgba(0,0,0,.1)}.composer--options--dropdown--content{position:absolute;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4);background:#fff;overflow:hidden;-webkit-transform-origin:50% 0;transform-origin:50% 0}.composer--options--dropdown--content--item{display:flex;align-items:center;padding:10px;color:#000;cursor:pointer}.composer--options--dropdown--content--item>.content{flex:1 1 auto;color:#1b1e25}.composer--options--dropdown--content--item>.content:not(:first-child){margin-left:10px}.composer--options--dropdown--content--item>.content strong{display:block;color:#000;font-weight:500}.composer--options--dropdown--content--item.active,.composer--options--dropdown--content--item:hover{background:#2b5fd9;color:#fff}.composer--options--dropdown--content--item.active>.content,.composer--options--dropdown--content--item.active>.content strong,.composer--options--dropdown--content--item:hover>.content,.composer--options--dropdown--content--item:hover>.content strong{color:#fff}.composer--options--dropdown--content--item.active:hover{background:#3c6cdc}.composer--publisher{padding-top:10px;text-align:right;white-space:nowrap;overflow:hidden}.composer--publisher>.count{display:inline-block;margin:0 16px 0 8px;font-size:16px;line-height:36px}.composer--publisher>.primary{display:inline-block;margin:0;padding:0 10px;text-align:center}.composer--publisher>.side_arm{display:inline-block;margin:0 2px 0 0;padding:0;width:36px;text-align:center}.composer--publisher.over>.count{color:#ff5050}.column__wrapper,.columns-area{display:flex;flex:1 1 auto;position:relative}.columns-area{flex-direction:row;justify-content:flex-start;overflow-x:auto}@media screen and (min-width:360px){.auto-columns .columns-area,.single-column .columns-area{padding:10px}.auto-columns .react-swipeable-view-container .columns-area,.single-column .react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.react-swipeable-view-container,.react-swipeable-view-container .column,.react-swipeable-view-container .columns-area{height:100%}.react-swipeable-view-container>*{display:flex;align-items:center;justify-content:center;height:100%}.ui{flex:0 0 auto;display:flex;flex-direction:column;width:100%;height:100%;background:#191b22}@media screen and (min-width:360px){.auto-columns .tabs-bar,.single-column .tabs-bar{margin:10px 10px 0}}@media screen and (max-width:630px){:root .auto-columns .column{flex:auto;width:100%;min-width:0;max-width:none;padding:0}:root .auto-columns .columns-area{flex-direction:column}:root .auto-columns .autosuggest-textarea__textarea,:root .auto-columns .search__input{font-size:16px}}:root .single-column .column{flex:auto;width:100%;min-width:0;max-width:none;padding:0}:root .single-column .columns-area{flex-direction:column}:root .single-column .autosuggest-textarea__textarea,:root .single-column .search__input{font-size:16px}@media screen and (min-width:631px){.auto-columns .columns-area{padding:0}.auto-columns .column{flex:0 0 auto;padding:10px 5px}.auto-columns .column:first-child{padding-left:10px}.auto-columns .column:last-child{padding-right:10px}.auto-columns .columns-area>div .column{padding-left:5px;padding-right:5px}}.multi-columns .columns-area{padding:0}.multi-columns .column{flex:0 0 auto;padding:10px 5px}.multi-columns .column:first-child{padding-left:10px}.multi-columns .column:last-child{padding-right:10px}.multi-columns .columns-area>div .column{padding-left:5px;padding-right:5px}.column-back-button{background:#313543;color:#2b90d9;cursor:pointer;flex:0 0 auto;font-size:16px;border:0;text-align:unset;padding:15px;margin:0;z-index:3}.column-back-button:hover{text-decoration:underline}.column-header__back-button{background:#313543;border:0;font-family:inherit;color:#2b90d9;cursor:pointer;flex:0 0 auto;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}.column-link{background:#393f4f;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#404657}.column-link__icon{display:inline-block;margin-right:5px}.column-subheading{background:#282c37;color:#c2cede;padding:8px 20px;font-size:12px;font-weight:500;text-transform:uppercase;cursor:default}.column-header__wrapper{position:relative;flex:0 0 auto}.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:#313543;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden}.column-header>button{margin:0;border:none;padding:15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header>.column-header__back-button{color:#2b90d9}.column-header.active{box-shadow:0 1px 0 rgba(43,95,217,.3)}.column-header.active .column-header__icon{color:#2b90d9;text-shadow:0 0 10px rgba(43,95,217,.4)}.column-header:active,.column-header:focus{outline:0}.column{width:330px;position:relative;box-sizing:border-box;display:flex;flex-direction:column;overflow:hidden}.wide .column{flex:auto;min-width:330px;max-width:400px}.column>.scrollable{background:#282c37}.column-header__buttons{height:48px;display:flex;margin-left:0}.column-header__links .text-btn{margin-right:10px}.column-header__button,.column-header__notif-cleaning-buttons button{background:#313543;border:0;color:#dde3ec;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover,.column-header__notif-cleaning-buttons button:hover{color:#f4f6f9}.column-header__button.active,.column-header__button.active:hover,.column-header__notif-cleaning-buttons button.active,.column-header__notif-cleaning-buttons button.active:hover{color:#fff;background:#393f4f}.column-header__button:focus,.column-header__notif-cleaning-buttons button:focus{text-shadow:0 0 4px #2454c7}.column-header__notif-cleaning-buttons{display:flex;align-items:stretch;justify-content:space-around}.column-header__notif-cleaning-buttons button{background:transparent;text-align:center;padding:10px 0;white-space:pre-wrap}.column-header__notif-cleaning-buttons b{font-weight:700}.column-header__collapsible-inner.nopad-drawer{padding:0}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#dde3ec;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:transparent;border:0;border-top:1px solid #42485a;margin:10px 0}.column-header__collapsible.ncd{transition:none}.column-header__collapsible.ncd.collapsed{max-height:0;opacity:.7}.column-header__collapsible-inner{background:#393f4f;padding:15px}.column-header__setting-btn:hover{color:#dde3ec;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__title{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header__icon{display:inline-block;margin-right:5px}.empty-column-indicator,.error-column{color:#c2cede;background:#282c37;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#2b90d9;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}.single-column.navbar-under .tabs-bar{margin-top:0!important;margin-bottom:-6px!important}@media screen and (max-width:360px){.auto-columns.navbar-under .tabs-bar{margin-top:0!important;margin-bottom:-6px!important}}@media screen and (max-width:360px){.auto-columns.navbar-under .react-swipeable-view-container .columns-area,.single-column.navbar-under .react-swipeable-view-container .columns-area{height:100%!important}}.column-inline-form{padding:7px 5px 7px 15px;display:flex;justify-content:flex-start;align-items:center;background:#313543}.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}.floating-action-button{position:fixed;display:flex;justify-content:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#2558d0;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#4976de}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#c2cede;background:#282c37;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#c2cede}.regeneration-indicator__label span{font-size:15px;font-weight:400}.search{position:relative}.search__input{display:block;padding:10px 30px 10px 10px;outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#282c37;color:#dde3ec;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#313543}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#ecf0f4;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#fff}.search-results__header{padding:15px 10px;font-size:14px}.search-results__header,.trends__header{color:#c2cede;background:#2c313d;border-bottom:1px solid #1f232b;font-weight:500}.trends__header{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 #393f4f}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#c2cede;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#dde3ec;text-decoration:none;font-size:14px;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:#ecf0f4}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#459ede!important}.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}.emoji-picker-dropdown__menu{background:#fff;position:absolute;box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px}.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:transparent}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(217,225,232,.4)}.emoji-picker-dropdown__modifiers__menu .emoji-mart-emoji{height:22px}.emoji-mart-emoji span{background-repeat:no-repeat}.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}.emoji-button:active img,.emoji-button:focus img,.emoji-button:hover img{opacity:1;-webkit-filter:none;filter:none}.doodle-modal{width:unset}.doodle-modal__container{background:#d9e1e8;text-align:center;line-height:0}.doodle-modal__container canvas{border:5px solid #d9e1e8}.doodle-modal__action-bar .filler{flex-grow:1;margin:0;padding:0}.doodle-modal__action-bar .doodle-toolbar{line-height:1;display:flex;flex-direction:column;flex-grow:0;justify-content:space-around}.doodle-modal__action-bar .doodle-toolbar.with-inputs label{display:inline-block;width:70px;text-align:right;margin-right:2px}.doodle-modal__action-bar .doodle-toolbar.with-inputs input[type=number],.doodle-modal__action-bar .doodle-toolbar.with-inputs input[type=text]{width:40px}.doodle-modal__action-bar .doodle-toolbar.with-inputs span.val{display:inline-block;text-align:left;width:50px}.doodle-modal__action-bar .doodle-palette{padding-right:0!important;border:1px solid #000;line-height:.2rem;flex-grow:0;background:#fff}.doodle-modal__action-bar .doodle-palette button{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:1rem;height:1rem;margin:0;padding:0;text-align:center;color:#000;text-shadow:0 0 1px #fff;cursor:pointer;box-shadow:inset 0 0 1px hsla(0,0%,100%,.5);border:1px solid #000;outline-offset:-1px}.doodle-modal__action-bar .doodle-palette button.foreground{outline:1px dashed #fff}.doodle-modal__action-bar .doodle-palette button.background{outline:1px dashed red}.doodle-modal__action-bar .doodle-palette button.foreground.background{outline:1px dashed red;border-color:#fff}.drawer{width:300px;box-sizing:border-box;display:flex;flex-direction:column;overflow-y:hidden;padding:10px 5px;flex:none}.drawer:first-child{padding-left:10px}.drawer:last-child{padding-right:10px}@media screen and (max-width:630px){.auto-columns .drawer{flex:auto}}.single-column .drawer{flex:auto}@media screen and (max-width:630px){.auto-columns .drawer,.auto-columns .drawer:first-child,.auto-columns .drawer:last-child,.single-column .drawer,.single-column .drawer:first-child,.single-column .drawer:last-child{padding:0}}.wide .drawer{min-width:300px;max-width:400px;flex:1 1 200px}@media screen and (max-width:630px){:root .auto-columns .drawer{flex:auto;width:100%;min-width:0;max-width:none;padding:0}}:root .single-column .drawer{flex:auto;width:100%;min-width:0;max-width:none;padding:0}.react-swipeable-view-container .drawer{height:100%}.drawer--header{display:flex;flex-direction:row;margin-bottom:10px;flex:none;background:#393f4f;font-size:16px}.drawer--header>*{display:block;box-sizing:border-box;border-bottom:2px solid transparent;padding:15px 5px 13px;height:48px;flex:1 1 auto;color:#dde3ec;text-align:center;text-decoration:none;cursor:pointer}.drawer--header a{transition:background .1s ease-in}.drawer--header a:focus,.drawer--header a:hover{outline:none;background:#2e3340;transition:background .2s ease-out}.drawer--search{position:relative;margin-bottom:10px;flex:none}@media screen and (max-width:360px){.auto-columns .drawer--search,.single-column .drawer--search{margin-bottom:0}}@media screen and (max-width:630px){.auto-columns .drawer--search{font-size:16px}}.single-column .drawer--search{font-size:16px}.drawer--search input{display:block;box-sizing:border-box;margin:0;border:none;padding:10px 30px 10px 10px;width:100%;height:36px;outline:0;color:#dde3ec;background:#282c37;font-size:14px;font-family:inherit;line-height:16px}.drawer--search input:focus{outline:0;background:#313543}.drawer--search>.icon{display:block;position:absolute;top:10px;right:10px;width:18px;height:18px;color:#ecf0f4;font-size:18px;line-height:18px;z-index:2}.drawer--search>.icon .fa{display:inline-block;position:absolute;top:0;bottom:0;left:0;right:0;opacity:0;cursor:default;pointer-events:none;transition:all .1s linear}.drawer--search>.icon .fa-search{opacity:.3;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.drawer--search>.icon .fa-times-circle{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);cursor:pointer}.drawer--search>.icon .fa-times-circle:hover{color:#fff}.drawer--search.active>.icon .fa-search{opacity:0;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.drawer--search.active>.icon .fa-times-circle{opacity:.3;pointer-events:auto;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.drawer--search--popout{box-sizing:border-box;margin-top:10px;border-radius:4px;padding:10px 14px 14px;box-shadow:2px 4px 15px rgba(0,0,0,.4);color:#364861;background:#fff}.drawer--search--popout h4{margin-bottom:10px;color:#364861;font-size:13px;font-weight:500;text-transform:uppercase}.drawer--search--popout ul{margin-bottom:10px}.drawer--search--popout li{padding:4px 0}.drawer--search--popout em{color:#000;font-weight:500}.drawer--account{padding:10px;color:#dde3ec}.drawer--account>a{color:inherit;text-decoration:none}.drawer--account>.avatar{float:left;margin-right:10px}.drawer--account>.acct{display:block;color:#ecf0f4;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.drawer--results{position:absolute;top:0;bottom:0;left:0;right:0;padding:0;background:#282c37;overflow-x:hidden;overflow-y:auto}.drawer--results>header{border-bottom:1px solid #1f232b;padding:15px 10px;color:#c2cede;background:#2c313d;font-size:14px;font-weight:500}.drawer--results>section{background:#282c37;margin-bottom:20px}.drawer--results>section h5{position:relative}.drawer--results>section h5:before{content:\"\";display:block;position:absolute;left:0;right:0;top:50%;width:100%;height:0;border-top:1px solid #393f4f}.drawer--results>section h5 span{display:inline-block;background:#282c37;color:#dde3ec;font-size:14px;font-weight:500;padding:10px;position:relative;z-index:1;cursor:default}.drawer--results>section .account:last-child,.drawer--results>section>div:last-child .status{border-bottom:0}.drawer--results>section>.hashtag{display:block;padding:10px;color:#ecf0f4;text-decoration:none}.drawer--results>section>.hashtag:active,.drawer--results>section>.hashtag:focus,.drawer--results>section>.hashtag:hover{color:#f9fafb;text-decoration:underline}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#444b5d;flex-direction:column;overflow-y:auto;width:100%;height:100%}.drawer__inner.darker{background:#282c37}.drawer__inner__mastodon{background:#444b5d url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;flex:1;min-height:47px}.drawer__inner__mastodon>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}.drawer__inner__mastodon>.mastodon{display:block;width:100%;height:100%;border:none;cursor:inherit}.pseudo-drawer{background:#444b5d;font-size:13px;text-align:left}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.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:#dde3ec;border:0;width:100%;height:100%}.media-spoiler:active,.media-spoiler:focus,.media-spoiler:hover{color:#f7f9fb}.status__content>.media-spoiler{margin-top:15px}.media-spoiler.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:500}.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}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{height:100%;display:flex;flex-direction:column}.media-gallery__audio span{text-align:center;color:#dde3ec;display:flex;height:100%;align-items:center}.media-gallery__audio audio,.media-gallery__audio span p{width:100%}.media-gallery{box-sizing:border-box;margin-top:8px;overflow:hidden;border-radius:4px;position:relative;width:100%;height:110px}.media-gallery.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.media-gallery__item{border:none;box-sizing:border-box;display:block;float:left;position:relative;border-radius:4px;overflow:hidden}.full-width .media-gallery__item{border-radius:0}.media-gallery__item.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item.letterbox{background:#000}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#ecf0f4;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain}.media-gallery__item-thumbnail:not(.letterbox),.media-gallery__item-thumbnail img:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%;display:flex;justify-content:center}.media-gallery__item-gifv-thumbnail{cursor:zoom-in;height:100%;width:100%;position:relative;z-index:1;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain}.media-gallery__item-gifv-thumbnail:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.media-gallery__item-thumbnail-label{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute}.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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#2b5fd9}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.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%}.video-player:focus{outline:0}.detailed-status .video-player{width:100%;height:100%}.video-player.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.video-player video{max-width:100vw;max-height:80vh;z-index:1;position:relative}.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%;-webkit-transform:translateY(-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:#dde3ec;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:#f4f6f9}.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:transparent;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:#4e79df}.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:#4e79df;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.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:#4e79df}.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:#4e79df;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.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.sensitive-info{display:flex;flex-direction:row;align-items:center;position:absolute;top:4px;left:4px;z-index:100}.sensitive-marker{margin:0 3px;border-radius:2px;padding:2px 6px;color:hsla(0,0%,100%,.8);background:rgba(0,0,0,.5);font-size:12px;line-height:15px;text-transform:uppercase;opacity:.9;transition:opacity .1s ease}.media-gallery:hover .sensitive-marker{opacity:1}.list-editor{background:#282c37;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#444b5d;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__pager{height:50vh}.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{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.list-adder{background:#282c37;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#444b5d}.list-adder__lists{background:#444b5d;height:50vh;border-radius:0 0 8px 8px;overflow-y:auto}.list-adder .list{padding:10px;border-bottom:1px solid #393f4f}.list-adder .list__wrapper{display:flex}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.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 #c0cdd9}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#d9e1e8}.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:#1b1e25;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:#131419}.emoji-mart-anchor-selected{color:#2b90d9}.emoji-mart-anchor-selected:hover{color:#2485cb}.emoji-mart-anchor-selected .emoji-mart-anchor-bar{bottom:0}.emoji-mart-anchor-bar{position:absolute;bottom:-3px;left:0;width:100%;height:3px;background-color:#2558d0}.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:rgba(217,225,232,.3);color:#000;border:1px solid #d9e1e8;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(217,225,232,.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:#364861}.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}.glitch.local-settings{position:relative;display:flex;flex-direction:row;background:#d9e1e8;color:#000;border-radius:8px;height:80vh;width:80vw;max-width:740px;max-height:450px;overflow:hidden}.glitch.local-settings label,.glitch.local-settings legend{display:block;font-size:14px}.glitch.local-settings .boolean label,.glitch.local-settings .radio_buttons label{position:relative;padding-left:28px;padding-top:3px}.glitch.local-settings .boolean label input,.glitch.local-settings .radio_buttons label input{position:absolute;left:0;top:0}.glitch.local-settings span.hint{display:block;color:#1b1e25}.glitch.local-settings h1{font-size:18px;font-weight:500;line-height:24px;margin-bottom:20px}.glitch.local-settings h2{font-size:15px;font-weight:500;line-height:20px;margin-top:20px;margin-bottom:10px}.glitch.local-settings__navigation__item{display:block;padding:15px 20px;color:inherit;background:#f2f5f7;border-bottom:1px solid #d9e1e8;cursor:pointer;text-decoration:none;outline:none;transition:background .3s}.glitch.local-settings__navigation__item .text-icon-button{color:inherit;transition:unset}.glitch.local-settings__navigation__item:hover{background:#d9e1e8}.glitch.local-settings__navigation__item.active{background:#2b5fd9;color:#fff}.glitch.local-settings__navigation__item.close,.glitch.local-settings__navigation__item.close:hover{background:#df405a;color:#fff}.glitch.local-settings__navigation{background:#f2f5f7;width:212px;font-size:15px;line-height:20px;overflow-y:auto}.glitch.local-settings__page{display:block;flex:auto;padding:15px 20px;width:360px;overflow-y:auto}.glitch.local-settings__page__item{margin-bottom:2px}.glitch.local-settings__page__item.radio_buttons,.glitch.local-settings__page__item.string{margin-top:10px;margin-bottom:10px}@media screen and (max-width:630px){.glitch.local-settings__navigation{width:40px;flex-shrink:0}.glitch.local-settings__navigation__item{padding:10px}.glitch.local-settings__navigation__item span:last-of-type{display:none}}.error-boundary h1{font-size:26px;line-height:36px;font-weight:400;margin-bottom:8px}.error-boundary p{color:#fff;font-size:15px;line-height:20px}.error-boundary p a{color:#fff;text-decoration:underline}.error-boundary p ul{list-style:disc;margin-left:0;padding-left:1em}.error-boundary p textarea.web_app_crash-stacktrace{width:100%;resize:none;white-space:pre;font-family:monospace,monospace}.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:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec;padding-right:10px}.rich-formatting a{color:#2b90d9;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#dde3ec}.rich-formatting li a,.rich-formatting p a{color:#2b90d9;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.rich-formatting h1{font-family:sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h1 small{font-family:sans-serif;display:block;font-size:18px;font-weight:400;color:#fefefe}.rich-formatting h2{font-size:22px;line-height:26px}.rich-formatting h2,.rich-formatting h3{font-family:sans-serif;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h3{font-size:18px;line-height:24px}.rich-formatting h4{font-size:16px}.rich-formatting h4,.rich-formatting h5{font-family:sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h5{font-size:14px}.rich-formatting h6{font-family:sans-serif;font-size:12px;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.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(96,105,132,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#1f232b;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: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:#ecf0f4}.information-board__section strong{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:#17191f;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#dde3ec;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #313543;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#bcc9da}.information-board .panel .panel-header a{text-decoration:none}.information-board .owner{text-align:center}.information-board .owner .avatar{width:80px;height:80px;background-size:80px 80px;margin:0 auto 15px}.information-board .owner .avatar img{display:block;width:80px;height:80px;border-radius:48px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.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:#dde3ec}.landing-page .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:100%}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:flex;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(96,105,132,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#282c37;font-size:12px;font-weight:500;color:#dde3ec;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#dde3ec}.landing-page li a,.landing-page p a{color:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#dde3ec;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.landing-page h1{font-family:sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h1 small{font-family:sans-serif;display:block;font-size:18px;font-weight:400;color:#fefefe}.landing-page h2{font-size:22px;line-height:26px}.landing-page h2,.landing-page h3{font-family:sans-serif;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h3{font-size:18px;line-height:24px}.landing-page h4{font-size:16px}.landing-page h4,.landing-page h5{font-family:sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h5{font-size:14px}.landing-page h6{font-family:sans-serif;font-size:12px;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.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(96,105,132,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#282c37;background:linear-gradient(150deg,#393f4f,#282c37);position:relative}.landing-page .header-wrapper.compact{background:#282c37;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec}.landing-page .header-wrapper.compact .hero .heading a{color:#2b90d9;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:flex;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:flex;justify-content:center;align-items:center;color:#dde3ec;text-decoration:none;padding:12px 16px;line-height:32px;font-family:sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#ecf0f4}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#1f232b;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:flex;flex-direction:column;justify-content:space-between}.landing-page .about-short{background:#1f232b;padding:50px 0 30px;font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec}.landing-page .about-short a{color:#2b90d9;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#1f232b;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:wrap;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 .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 #mastodon-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#282c37;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:#ecf0f4}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#dde3ec}.landing-page__short-description h1 small span{color:#ecf0f4}.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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#17191f}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#fff;width:100%;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#fff;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#ecf0f4;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#c2cede;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:30px 0 40px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:flex;padding:10px 0;justify-content:space-between}.landing-page .features-list .features-list__row .visual{flex:0 0 auto;display:flex;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#dde3ec;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#dde3ec}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#c2cede}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#c2cede}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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 .header .links{padding-top:15px;background:#1f232b}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:flex;flex-flow:row wrap;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#17191f;width:100%;border-radius:0;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:flex;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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 #282c37;text-align:left;background:#1f232b}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #282c37;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:#282c37}.table a{color:#2b90d9;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:transparent}.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:#282c37;border-top:1px solid #17191f;border-bottom:1px solid #17191f}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #17191f}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #17191f}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:monospace,monospace}button.table-action-link{background:transparent;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:#dde3ec;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__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 #17191f;background:#282c37;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #17191f;border-top:0;background:#1f232b}.batch-table__row:hover{background:#242731}.batch-table__row:nth-child(2n){background:#282c37}.batch-table__row:nth-child(2n):hover{background:#2c313d}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table .status__content{padding-top:0}.batch-table .status__content strong{font-weight:700}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#282c37;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:#dde3ec;text-decoration:none;transition:all .2s linear;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:#1d2028;transition:all .1s linear}.admin-wrapper .sidebar ul a.selected{background:#242731;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#1f232b;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:#2b5fd9;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#416fdd}.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:#ecf0f4;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #393f4f;margin-bottom:40px}.admin-wrapper .content h3{color:#ecf0f4;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:#dde3ec;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #393f4f}.admin-wrapper .content h6{font-size:16px;color:#ecf0f4;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#fff;font-weight:500}.admin-wrapper .content .directory__tag a{box-shadow:none}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#fff;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#ecf0f4;margin-bottom:20px}.admin-wrapper .content>p strong{color:#fff;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(96,105,132,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#dde3ec}.admin-wrapper .content .muted-hint a{color:#2b90d9}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;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:#dde3ec;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #282c37}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #333846}.filters .filter-subset a.selected{color:#2b90d9;border-bottom:2px solid #2b5fd9}.flavour-screen{display:block;margin:10px auto;max-width:100%}.flavour-description{display:block;font-size:16px;margin:10px 0}.flavour-description>p{margin:10px 0}.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:#ecf0f4}.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:#2b90d9;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:#282c37;color:#dde3ec;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:#c2cede}.log-entry__extras{background:#353a49;border-radius:0 0 4px 4px;padding:10px;color:#dde3ec;font-family:monospace,monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#c2cede}.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:#2b5fd9}.log-entry .target,.log-entry .username,.log-entry a{color:#ecf0f4;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#ecf0f4}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#ecf0f4}.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 #2b5fd9}.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:#dde3ec}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#c2cede}.report-card{background:#282c37;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:#dde3ec;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:#f7f9fb}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #1f232b}.report-card__summary__item:hover{background:#2c313d}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#dde3ec}.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:#c2cede;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:#dde3ec}.one-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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)}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:-15px;margin-right:0}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 .setting-meta__label{float:left}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 .activity-stream .detailed-status.light .detailed-status__display-name>div{float:right;margin-right:0;margin-left:10px}body.rtl .activity-stream .detailed-status.light .detailed-status__meta span>span{margin-left:0;margin-right:6px}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-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(19,20,25,0),#131419)}body.rtl .simple_form select{background:#131419 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 #mastodon-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}.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:#313543;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:#393f4f}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#fff;font-family:sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#dde3ec;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:#d9e1e8;font-weight:500;text-decoration:none}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:1}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/skins/glitch/contrast/common.js b/priv/static/packs/skins/glitch/contrast/common.js
new file mode 100644
index 000000000..11951a984
Binary files /dev/null and b/priv/static/packs/skins/glitch/contrast/common.js differ
diff --git a/priv/static/packs/skins/glitch/contrast/common.js.map b/priv/static/packs/skins/glitch/contrast/common.js.map
new file mode 100644
index 000000000..91cc60e8c
Binary files /dev/null and b/priv/static/packs/skins/glitch/contrast/common.js.map differ
diff --git a/priv/static/packs/skins/glitch/mastodon-light/common.css b/priv/static/packs/skins/glitch/mastodon-light/common.css
new file mode 100644
index 000000000..c387135c3
Binary files /dev/null and b/priv/static/packs/skins/glitch/mastodon-light/common.css differ
diff --git a/priv/static/packs/skins/glitch/mastodon-light/common.css.map b/priv/static/packs/skins/glitch/mastodon-light/common.css.map
new file mode 100644
index 000000000..5336202e9
--- /dev/null
+++ b/priv/static/packs/skins/glitch/mastodon-light/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/skins/glitch/mastodon-light/common.scss"],"names":[],"mappings":"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","file":"skins/glitch/mastodon-light/common.css","sourcesContent":["@charset \"UTF-8\";@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:\"mastodon-font-monospace\";src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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:#ccd7e0 transparent}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#ccd7e0;border:0 #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#c6d2dc}::-webkit-scrollbar-thumb:active{background:#ccd7e0}::-webkit-scrollbar-track{border:0 #fff;border-radius:0;background:hsla(0,0%,100%,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#d9e1e8}::-webkit-scrollbar-corner{background:transparent}body{font-family:sans-serif;background:#f2f5f7;font-size:13px;line-height:18px;font-weight:400;color:#000;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#d9e1e8}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.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 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:center;justify-content:center;outline:0!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:400px){.logo-container{margin:30px auto 20px}}.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: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;background-size:40px 40px;margin-right:8px}.account-header .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#c0cdd9;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;box-shadow:none;z-index:110}}.public-layout .header>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:stretch;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:stretch;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#b3c3d1}.public-layout .header .nav-link{display:flex;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#282c37;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}@media screen and (max-width:550px){.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#a6b9c9;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:#99afc2}.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.inactive .logo-button svg path:last-child{fill:#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;background-size:120px 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;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}@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;background-size:48px 48px;padding:7px 0 7px 10px}.public-layout .public-account-header__bar .avatar img{border:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}}@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 #9baec8;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #2b90d9;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: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:transparent;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}.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:#217aba}.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:#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}.modal-layout{background:#d9e1e8 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}.modal-layout__mastodon{display:flex;flex:1;flex-direction:column;justify-content:flex-end}.modal-layout__mastodon>*{flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.public-layout .footer{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#6d8ca7}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#6d8ca7}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#282c37}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#6d8ca7}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#6d8ca7}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#60829f}.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%;height:167px;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:transparent;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,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#d9e1e8;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;min-height:100%}.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{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:#2b90d9;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:#2b90d9}.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;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 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}@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:#2b90d9}.notice-widget a:active,.notice-widget a:focus,.notice-widget a:hover{text-decoration:underline}code{font-family: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 .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:#282c37}.simple_form .hint a{color:#2b90d9}.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:#282c37}.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{-webkit-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,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{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:#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:#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:#2b90d9;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 .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:#2b90d9;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:#2482c7}.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:#419bdd}.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)}.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(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 p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family: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:#2b90d9;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#217aba}.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;background:rgba(223,64,90,.5);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: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:transparent;border:0;padding:10px;font-size:14px;font-family: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}.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;background-size:48px 48px;padding-top:2px}.card__bar .avatar img{width:100%;height:100%;display:block;margin:0;border-radius:4px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;background:#f2f5f7}.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:#282c37;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:#444b5d;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:#79bd9a;background-color:rgba(121,189,154,.1);border-color:rgba(121,189,154,.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:#2b90d9;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}.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:#2b90d9;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}.button.logo-button svg path:first-child{fill:#000}.button.logo-button svg path:last-child{fill:#2b90d9}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#2074b1}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#2074b1}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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:initial;margin-left:78px;padding:15px 0 2px}.embed .status__prepend-icon-wrapper,.public-layout .status__prepend-icon-wrapper{position:absolute;margin:initial;float:none;width:auto;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}.embed .status .status__info,.public-layout .status .status__info{font-size:15px;display:initial}.embed .status .status__relative-time,.public-layout .status .status__relative-time{color:#444b5d;float:right;font-size:14px;width:auto;margin:initial;padding:initial}.embed .status .status__info .status__display-name,.public-layout .status .status__info .status__display-name{display:block;max-width:100%;padding-right:25px;margin:initial}.embed .status .status__info .status__display-name .display-name strong,.public-layout .status .status__info .status__display-name .display-name strong{display:inline}.embed .status .status__avatar,.public-layout .status .status__avatar{height:48px;position:absolute;width:48px;margin:initial}.rtl .embed .status .status__relative-time,.rtl .public-layout .status .status__relative-time{float:left}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#3897db;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#227dbe;transition:all .2s ease-out}.button:disabled{background-color:#9baec8;cursor:default}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#000;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#8ea3c1}.button.button-alternative-2{background:#3c5063}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#344656}.button.button-secondary{font-size:16px;line-height:36px;height:auto;color:#282c37;text-transform:none;background:transparent;padding:3px 15px;border-radius:4px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#8ea3c1;color:#1f232b}.button.button--block{display:block;width:100%}.icon-button{display:inline-block;padding:0;color:#606984;border:none;background:transparent;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:#2b90d9}.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:#282c37}.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:#2b90d9}.icon-button.inverted.active.disabled{color:#1d6ca4}.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:#282c37;border:none;background:transparent;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:#2b90d9}.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}.dropdown-menu{position:absolute;-webkit-transform-origin:50% 0;transform-origin:50% 0}.invisible{font-size:0;line-height:0;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:\"…\"}.notification__favourite-icon-wrapper{left:0;position:absolute}.notification__favourite-icon-wrapper .fa.star-icon,.star-icon.active{color:#ca8f04}.bookmark-icon.active{color:#ff5050}.notification__display-name{color:inherit;font-weight:500;text-decoration:none}.notification__display-name:hover{color:#000;text-decoration:underline}.display-name{display:block;padding:6px 0;max-width:100%;height:36px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.display-name strong{font-size:16px;font-weight:500}.display-name span,.display-name strong{display:block;height:18px;line-height:18px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.display-name span{font-size:15px}.display-name:hover strong{text-decoration:underline}.display-name.inline{padding:0;height:18px;font-size:15px;line-height:18px;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.display-name.inline span,.display-name.inline strong{display:inline;height:auto;font-size:inherit;line-height:inherit}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.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/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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #393f4f;margin:5px 7px 6px;height:0}.dropdown-menu{background:#282c37;padding:4px 0;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4)}.dropdown-menu ul{list-style:none}.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:#282c37}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-7px;border-width:5px 7px 0;border-top-color:#282c37}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-7px;border-width:0 7px 5px;border-bottom-color:#282c37}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#282c37}.dropdown-menu__item 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-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#2b90d9;color:#282c37;outline:0}.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:#2b90d9;color:#282c37}.dropdown__icon{vertical-align:middle}.static-content{padding:20px 10px 10px;color:#444b5d}.static-content h1{font-size:16px;font-weight:500;margin-bottom:40px;text-align:center}.static-content p{font-size:13px;margin-bottom:20px}.tabs-bar{display:flex;background:#c0cdd9;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;flex:1 1 auto;padding:15px 10px;color:#000;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #c0cdd9;transition:all .2s linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #2b90d9;color:#2b90d9}@media screen and (min-width:631px){.auto-columns .tabs-bar__link:active,.auto-columns .tabs-bar__link:focus,.auto-columns .tabs-bar__link:hover{background:#adbecd;transition:all .1s linear}}.multi-columns .tabs-bar__link:active,.multi-columns .tabs-bar__link:focus,.multi-columns .tabs-bar__link:hover{background:#adbecd;transition:all .1s linear}.tabs-bar__link span:last-child{margin-left:5px;display:none}@media screen and (min-width:631px){.auto-columns .tabs-bar{display:none}}.multi-columns .tabs-bar{display:none}.scrollable{overflow-y:scroll;overflow-x:hidden;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}.scrollable--flex{display:flex;flex-direction:column}.scrollable__append{flex:1 1 auto;position:relative;min-height:120px}@supports (display:grid){.scrollable.fullscreen{contain:none}}.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:rgba(255,255,255,0);-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:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#f9fafb}.react-toggle--checked .react-toggle-track{background-color:#2b90d9}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#2074b1}.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{transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;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}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#2b90d9}.getting-started__wrapper,.getting_started{background:#d9e1e8}.getting-started__wrapper{position:relative;overflow-y:auto}.getting-started{background:#d9e1e8;flex:1 0 auto}.getting-started p{color:#282c37}.getting-started a{color:#444b5d}.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:#444b5d;text-decoration:underline}.getting-started__footer a{text-decoration:none;color:#282c37}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover{text-decoration:underline}.column-link__badge{display:inline-block;border-radius:4px;font-size:12px;line-height:19px;font-weight:500;background:#d9e1e8;padding:4px 8px;margin:-6px 10px}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#c0cdd9;border:1px solid #e6ebf0}.setting-text{color:#282c37;background:transparent;border:none;border-bottom:2px solid #9baec8;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:#2b90d9}@media screen and (max-width:600px){.auto-columns .setting-text,.single-column .setting-text{font-size:16px}}.setting-text.light{color:#000;border-bottom:2px solid #839db4}.setting-text.light:active,.setting-text.light:focus{color:#000;border-bottom-color:#2b90d9}.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%}.reduce-motion button.icon-button i.fa-retweet{color:#606984;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#2b90d9}.reduce-motion button.icon-button.disabled i.fa-retweet{color:#828ba4}.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}.missing-indicator{padding-top:68px}.scrollable>div>:first-child .notification__dismiss-overlay>.wrappy{border-top:1px solid #d9e1e8}.notification__dismiss-overlay{overflow:hidden;position:absolute;top:0;right:0;bottom:-1px;padding-left:15px;z-index:999;align-items:center;justify-content:flex-end;cursor:pointer;display:flex}.notification__dismiss-overlay .wrappy{width:4rem;align-self:stretch;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#c0cdd9;border-left:1px solid #99afc2;box-shadow:0 0 5px #000;border-bottom:1px solid #d9e1e8}.notification__dismiss-overlay .ckbox{border:2px solid #9baec8;border-radius:2px;width:30px;height:30px;font-size:20px;color:#282c37;text-shadow:0 0 5px #000;display:flex;justify-content:center;align-items:center}.notification__dismiss-overlay:focus{outline:0!important}.notification__dismiss-overlay:focus .ckbox{box-shadow:0 0 1px 1px #2b90d9}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.loading-indicator{color:#444b5d;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-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}}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.setting-toggle{display:block;line-height:24px}.setting-meta__label,.setting-radio__label,.setting-toggle__label{color:#282c37;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.setting-radio{display:block;line-height:18px}.setting-radio__label{margin-bottom:0}.column-settings__row legend{color:#282c37;cursor:default;display:block;font-weight:500;margin-top:10px}.setting-radio__input{vertical-align:middle}.setting-meta__label{float:right}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-transform-origin:center center;transform-origin:center center;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.pulse-loading{-webkit-animation:heartbeat 1.5s ease-in-out infinite both;animation:heartbeat 1.5s ease-in-out infinite both}.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 #3c5063;border-radius:4px}.dropdown--active .emoji-button img{opacity:1;-webkit-filter:none;filter:none}.loading-bar{background-color:#2b90d9;height:3px;position:absolute;top:0;left:0}.icon-badge-wrapper{position:relative}.icon-badge{position:absolute;display:block;right:-.25em;top:-.25em;background-color:#2b90d9;border-radius:50%;font-size:75%;width:1em;height:1em}::-webkit-scrollbar-thumb{border-radius:0}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:#2b90d9;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}}button.icon-button i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}.status-direct button.icon-button.disabled i.fa-retweet,.status-direct button.icon-button.disabled i.fa-retweet:hover,button.icon-button.disabled i.fa-retweet,button.icon-button.disabled i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}.account{padding:10px;border-bottom:1px solid #c0cdd9;color:inherit;text-decoration:none}.account .account__display-name{flex:1 1 auto;display:block;color:#282c37;overflow:hidden;text-decoration:none;font-size:14px}.account.small{border:none;padding:0}.account.small>.account__avatar-wrapper{margin:0 8px 0 0}.account.small>.display-name{height:24px;line-height:24px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative;cursor:pointer}.account__avatar-inline{display:inline-block;vertical-align:middle;margin-right:5px}.account__avatar-overlay{position:relative;width:48px;height:48px;background-size:48px 48px}.account__avatar-overlay-base{border-radius:8%;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:8%;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:18px;padding:10px;white-space:nowrap}.account__header,.account__header__wrapper{flex:0 0 auto;background:#ccd7e0}.account__header{text-align:center;background-size:cover;background-position:50%;position:relative}.account__header .account__avatar{border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box;width:90px;height:90px;background-size:90px 90px;display:block;margin:0 auto 10px;overflow:hidden}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#282c37}.account__header>div{background:rgba(204,215,224,.9);padding:20px 10px}.account__header .account__header__content{color:#282c37}.account__header .account__header__display-name{color:#000;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#2b90d9;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.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__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}.account__header__display-name .emojione{width:25px;height:25px}.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 .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-left:1px solid #c0cdd9;padding:10px 0;border-bottom:4px solid transparent}.account__action-bar__tab.active{border-bottom:4px solid #2b90d9}.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__action-bar__tab abbr{color:#2b90d9}.account__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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}.notification__message{margin-left:42px;padding:8px 0 0 26px;cursor:default;color:#282c37;font-size:15px;position:relative}.notification__message .fa{color:#2b90d9}.notification__message>span{display:block;overflow:hidden;text-overflow:ellipsis}.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__section .column-settings__hashtag-select__control{outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#d9e1e8;color:#282c37;font-size:14px;margin:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner{border:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner,.column-settings__section .column-settings__hashtag-select__control:active,.column-settings__section .column-settings__hashtag-select__control:focus{outline:0!important}.column-settings__section .column-settings__hashtag-select__control:focus{background:#ccd7e0}@media screen and (max-width:600px){.column-settings__section .column-settings__hashtag-select__control{font-size:16px}}.column-settings__section .column-settings__hashtag-select__multi-value{background:#c0cdd9}.column-settings__section .column-settings__hashtag-select__input,.column-settings__section .column-settings__hashtag-select__multi-value__label{color:#282c37}.column-settings__section .column-settings__hashtag-select__dropdown-indicator,.column-settings__section .column-settings__hashtag-select__indicator-separator{display:none}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#000;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:hsla(0,0%,100%,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.account-gallery__container{display:flex;justify-content:center;flex-wrap:wrap;padding:2px}.account-gallery__item{flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#fff;background-size:cover;background-position:50%;position:absolute;color:#9baec8;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#282c37}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:hsla(0,0%,100%,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-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:#282c37}.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;-webkit-transform:translateX(-50%);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__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}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.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}.status__content--with-action{cursor:pointer}.status__content{position:relative;margin:10px 0;font-size:15px;line-height:20px;word-wrap:break-word;font-weight:400;overflow:visible;padding-top:5px}.status__content:focus{outline:0}.status__content .emojione{width:20px;height:20px;margin:-3px 0 0}.status__content p{margin-bottom:20px;white-space:pre-wrap}.status__content p:last-child{margin-bottom:0}.status__content a{color:#d8a070;text-decoration:none}.status__content a:hover{text-decoration:underline}.status__content a:hover .fa{color:#353a48}.status__content a.mention:hover{text-decoration:none}.status__content a.mention:hover span{text-decoration:underline}.status__content a .fa{color:#444b5d}.status__content .status__content__spoiler{display:none}.status__content .status__content__spoiler.status__content__spoiler--visible{display:block}.status__content .status__content__spoiler-link:hover{background:#708ea9}.status__content__spoiler-link{display:inline-block;border-radius:2px;background:#7a96ae;border:none;color:#000;font-weight:500;font-size:11px;padding:0 5px;text-transform:uppercase;line-height:inherit;cursor:pointer;vertical-align:bottom}.status__content__spoiler-link:hover{background:#708ea9;text-decoration:none}.status__content__spoiler-link .status__content__spoiler-icon{display:inline-block;margin:0 0 0 5px;border-left:1px solid;padding:0 0 0 4px;font-size:16px;vertical-align:-2px}.notif-cleaning .notification-follow,.notif-cleaning .status{padding-right:4.5rem}.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{float:left;margin:0 10px 0 -58px;width:48px;text-align:right}.notification-follow{position:relative;border-bottom:1px solid #c0cdd9}.notification-follow .account{border-bottom:0}.focusable:focus{outline:0;background:#ccd7e0}.focusable:focus .status.status-direct{background:#b3c3d1}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#c0cdd9}.status{padding:10px 14px;position:relative;height:auto;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:28px}}@-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{background:#c0cdd9}.status.light .status__relative-time{color:#282c37}.status.light .display-name strong,.status.light .status__display-name{color:#000}.status.light .display-name span{color:#282c37}.status.light .status__content{color:#000}.status.light .status__content a{color:#2b90d9}.status.light .status__content a.status__content__spoiler-link{color:#000;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#8199ba}.status.collapsed{background-position:50%;background-size:cover;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.status.collapsed.has-background:before{display:block;position:absolute;left:0;right:0;top:0;bottom:0;background-image:linear-gradient(180deg,rgba(0,0,0,.75),rgba(0,0,0,.65) 24px,rgba(0,0,0,.8));pointer-events:none;content:\"\"}.status.collapsed .display-name:hover .display-name__html{text-decoration:none}.status.collapsed .status__content{height:20px;overflow:hidden;text-overflow:ellipsis;padding-top:0}.status.collapsed .status__content:after{content:\"\";position:absolute;top:0;bottom:0;left:0;right:0;background:linear-gradient(rgba(217,225,232,0),#d9e1e8);pointer-events:none}.status.collapsed .status__content a:hover{text-decoration:none}.status.collapsed:focus>.status__content:after{background:linear-gradient(rgba(204,215,224,0),#ccd7e0)}.status.collapsed.status-direct>.status__content:after{background:linear-gradient(rgba(192,205,217,0),#c0cdd9)}.status.collapsed .notification__message{margin-bottom:0}.status.collapsed .status__info .notification__message>span{white-space:nowrap}.status .notification__message{margin:-10px 0 10px}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#444a5e}.status__relative-time{display:inline-block;margin-left:auto;padding-left:18px;width:120px;color:#444b5d;font-size:14px;text-align:right;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.status__display-name{margin:0 auto 0 0;color:#444b5d;overflow:hidden}.status__info__account .status__display-name{display:block;max-width:100%}.status__info{display:flex;font-size:15px}.status__info>span{text-overflow:ellipsis;overflow:hidden}.status__info .notification__message>span{word-wrap:break-word}.status__info__icons{margin-left:auto;display:flex;align-items:center;height:1em;color:#606984}.status__info__icons .status__media-icon{padding-left:6px;padding-right:1px}.status__info__icons .status__visibility-icon{padding-left:4px}.status__info__account{display:flex}.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:-10px -10px 10px;color:#444b5d;padding:8px 10px 0 68px;font-size:14px;position:relative}.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:8px}.status__action-bar__counter{display:inline-flex;margin-right:11px;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 .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:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.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}.account__display-name:hover strong,.detailed-status__display-name:hover strong,.reply-indicator__display-name:hover strong,.status__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{flex:none;margin:0 10px 0 0;height:48px;width:48px}.muted .status__content,.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:#3c5063;color:#000}.muted a.status__content__spoiler-link:hover{background:#7d98b0;text-decoration:none}.detailed-status__datetime:hover,.status__relative-time:hover{text-decoration:underline}.status-card{display:flex;font-size:14px;border:1px solid #c0cdd9;border-radius:4px;color:#444b5d;margin-top:14px;text-decoration:none;overflow:hidden}.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:4px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#000;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}.status-card__actions a .fa,.status-card__actions a:hover .fa{color:inherit}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:#282c37;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#282c37}.status-card__host{display:block;margin-top:5px;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__image{flex:0 0 100px;background:#c0cdd9;position:relative}.status-card__image>.fa{font-size:21px;position:absolute;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:50%;left:50%;-webkit-transform:translate(-50%,-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{border-color:#ccd7e0}.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 60px}a.status-card.compact:hover{background-color:#ccd7e0}.status-card__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover;background-size:cover;background-position:50%}.status__video-player{display:flex;align-items:center;background:#000;box-sizing:border-box;cursor:default;margin-top:8px;overflow:hidden;position:relative}.status__video-player.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.status__video-player-video{height:100%;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.status__video-player-video:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.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}.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}.modal-container--preloader{background:#c0cdd9}.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}.embed-modal,.error-modal,.onboarding-modal{background:#282c37;color:#000;border-radius:8px;overflow:hidden;display:flex;flex-direction:column}.onboarding-modal__pager{height:80vh;width:80vw;max-width:520px;max-height:470px}.onboarding-modal__pager .react-swipeable-view-container>div{width:100%;height:100%;box-sizing:border-box;display:none;flex-direction:column;align-items:center;justify-content:center;display:flex;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.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}@media screen and (max-width:550px){.onboarding-modal{width:100%;height:100%;border-radius:0}.onboarding-modal__pager{width:100%;height:auto;max-width:none;max-height:none;flex:1 1 auto}}.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}.onboarding-modal__dots{flex:1 1 auto;display:flex;align-items:center;justify-content:center}.onboarding-modal__dot{width:14px;height:14px;border-radius:14px;background:#4a5266;margin:0 3px;cursor:pointer}.onboarding-modal__dot:hover{background:#4f576c}.onboarding-modal__dot.active{cursor:default;background:#5c657e}.onboarding-modal__page__wrapper{pointer-events:none;padding:25px 25px 0}.onboarding-modal__page__wrapper.onboarding-modal__page__wrapper--active{pointer-events:auto}.onboarding-modal__page{cursor:default;line-height:21px}.onboarding-modal__page h1{font-size:18px;font-weight:500;color:#000;margin-bottom:20px}.onboarding-modal__page a{color:#2b90d9}.onboarding-modal__page a:active,.onboarding-modal__page a:focus,.onboarding-modal__page a:hover{color:#2485cb}.onboarding-modal__page .navigation-bar a{color:inherit}.onboarding-modal__page p{font-size:16px;color:#282c37;margin-top:10px;margin-bottom:10px}.onboarding-modal__page p:last-child{margin-bottom:0}.onboarding-modal__page p strong{font-weight:500;background:#d9e1e8;color:#282c37;border-radius:4px;font-size:14px;padding:3px 6px}.onboarding-modal__page p strong:lang(ja),.onboarding-modal__page p strong:lang(ko),.onboarding-modal__page p strong:lang(zh-CN),.onboarding-modal__page p strong:lang(zh-HK),.onboarding-modal__page p strong:lang(zh-TW){font-weight:700}.onboarding-modal__page__wrapper-0{height:100%;padding:0}.onboarding-modal__page-one__lead{padding:45px 65px 0;margin-bottom:10px}.onboarding-modal__page-one__lead h1{font-size:26px;line-height:36px;margin-bottom:8px}.onboarding-modal__page-one__lead p{margin-bottom:0}.onboarding-modal__page-one__extra{padding-right:65px;padding-left:185px;text-align: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}.onboarding-modal__page-five p,.onboarding-modal__page-four p,.onboarding-modal__page-three p,.onboarding-modal__page-two p{text-align:left}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{background:#f2f5f7;color:#282c37;margin-bottom:20px;border-radius:4px;padding:10px;text-align:center;font-size:14px;box-shadow:1px 2px 6px rgba(0,0,0,.3)}.onboarding-modal__page-five .figure .onboarding-modal__image,.onboarding-modal__page-four .figure .onboarding-modal__image,.onboarding-modal__page-three .figure .onboarding-modal__image,.onboarding-modal__page-two .figure .onboarding-modal__image{border-radius:4px;margin-bottom:10px}.onboarding-modal__page-five .figure.non-interactive,.onboarding-modal__page-four .figure.non-interactive,.onboarding-modal__page-three .figure.non-interactive,.onboarding-modal__page-two .figure.non-interactive{pointer-events:none;text-align:left}.onboarding-modal__page-four__columns .row{display:flex;margin-bottom:20px}.onboarding-modal__page-four__columns .row>div{flex:1 1 0;margin:0 10px}.onboarding-modal__page-four__columns .row>div:first-child{margin-left:0}.onboarding-modal__page-four__columns .row>div:last-child{margin-right:0}.onboarding-modal__page-four__columns .row>div p{text-align:center}.onboarding-modal__page-four__columns .row:last-child{margin-bottom:0}.onboarding-modal__page-four__columns .column-header{color:#000}@media screen and (max-width:320px) and (max-height:600px){.onboarding-modal__page p{font-size:14px;line-height:20px}.onboarding-modal__page-five .figure,.onboarding-modal__page-four .figure,.onboarding-modal__page-three .figure,.onboarding-modal__page-two .figure{font-size:12px;margin-bottom:10px}.onboarding-modal__page-four__columns .row{margin-bottom:10px}.onboarding-modal__page-four__columns .column-header{padding:5px;font-size:12px}}.onboard-sliders{display:inline-block;max-width:30px;max-height:auto;margin-left:10px}.actions-modal,.boost-modal,.confirmation-modal,.doodle-modal,.favourite-modal,.mute-modal,.report-modal{background:#17191f;color:#000;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;flex-direction:column}.actions-modal .status__display-name,.boost-modal .status__display-name,.confirmation-modal .status__display-name,.doodle-modal .status__display-name,.favourite-modal .status__display-name,.mute-modal .status__display-name,.report-modal .status__display-name{display:flex}.actions-modal .status__avatar,.boost-modal .status__avatar,.confirmation-modal .status__avatar,.doodle-modal .status__avatar,.favourite-modal .status__avatar,.mute-modal .status__avatar,.report-modal .status__avatar{height:28px;left:10px;top:10px;width:48px}.actions-modal .status__content__spoiler-link,.boost-modal .status__content__spoiler-link,.confirmation-modal .status__content__spoiler-link,.doodle-modal .status__content__spoiler-link,.favourite-modal .status__content__spoiler-link,.mute-modal .status__content__spoiler-link,.report-modal .status__content__spoiler-link{color:#17191f}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#282c37}.boost-modal__container,.favourite-modal__container{overflow-x:scroll;padding:10px}.boost-modal__container .status,.favourite-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,.doodle-modal__action-bar,.favourite-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,.doodle-modal__action-bar>div,.favourite-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,.doodle-modal__action-bar .button,.favourite-modal__action-bar .button,.mute-modal__action-bar .button{flex:0 0 auto}.boost-modal__status-header,.favourite-modal__status-header{font-size:15px}.boost-modal__status-time,.favourite-modal__status-time{float:right;font-size:14px}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.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:#2b90d9}@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}}.report-modal__target{padding:20px}.report-modal__target .media-modal__close{top:19px;right:15px}.actions-modal{max-height:80vh;max-width:80vw}.actions-modal .status{overflow-y:auto;max-height:300px}.actions-modal strong{display:block;font-weight:500}.actions-modal .actions-modal__item-label{font-weight:500}.actions-modal ul{overflow-y:auto;flex-shrink:0}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#000;display:flex;padding:12px 16px;font-size:15px;align-items:center;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:#2b90d9;color:#000}.actions-modal ul li:not(:empty) a>.icon,.actions-modal ul li:not(:empty) a>.react-toggle,.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-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 .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 .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__do_not_ask_again{padding-left:20px;padding-right:20px;padding-bottom:10px;font-size:14px}.confirmation-modal__do_not_ask_again input,.confirmation-modal__do_not_ask_again label{vertical-align:middle}.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}.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:\"mastodon-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}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/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 .account__header__fields{font-size:15px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0;border-top:0}.account__header .account__header__fields dl{background:#d9e1e8;border-top:1px solid #ccd7e0;border-bottom:0;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#282c37;background:#b0c0cf;width:120px;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{flex:1 1 auto;color:#000;background:#d9e1e8}.account__header .account__header__fields dd.verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.composer{padding:10px}.no-reduce-motion .composer--spoiler{transition:height .4s ease,opacity .4s ease}.composer--spoiler{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.composer--spoiler.composer--spoiler--visible{height:47px;opacity:1}.composer--spoiler input{display:block;box-sizing:border-box;margin:0;border:none;border-radius:4px;padding:10px;width:100%;outline:0;color:#000;background:#fff;font-size:14px;font-family:inherit;resize:vertical}.composer--spoiler input:focus{outline:0}@media screen and (max-width:630px){.auto-columns .composer--spoiler input{font-size:16px}}.single-column .composer--spoiler input{font-size:16px}.composer--warning{color:#000;margin-bottom:15px;background:#9baec8;box-shadow:0 2px 6px rgba(0,0,0,.3);padding:8px 10px;border-radius:4px;font-size:13px;font-weight:400}.composer--warning a{color:#282c37;font-weight:500;text-decoration:underline}.composer--warning a:active,.composer--warning a:focus,.composer--warning a:hover{text-decoration:none}.composer--reply{margin:0 0 10px;border-radius:4px;padding:10px;background:#9baec8}.composer--reply>header{margin-bottom:5px;overflow:hidden}.composer--reply>header>.account.small{color:#000}.composer--reply>header>.cancel{float:right;line-height:24px}.composer--reply>.content{position:relative;margin:10px 0;font-size:14px;line-height:20px;color:#000;word-wrap:break-word;font-weight:400;overflow:visible;white-space:pre-wrap;padding:5px 12px 0}.composer--reply>.content p{margin-bottom:20px}.composer--reply>.content p:last-child{margin-bottom:0}.composer--reply>.content a{color:#282c37;text-decoration:none}.composer--reply>.content a:hover{text-decoration:underline}.composer--reply>.content a.mention:hover{text-decoration:none}.composer--reply>.content a.mention:hover span{text-decoration:underline}.composer--reply .emojione{width:20px;height:20px;margin:-5px 0 0}.emoji-picker-dropdown{position:absolute;right:5px;top:5px}.emoji-picker-dropdown ::-webkit-scrollbar-track:active,.emoji-picker-dropdown ::-webkit-scrollbar-track:hover{background-color:hsla(0,0%,100%,.3)}.composer--textarea{position:relative}.composer--textarea>label .textarea{display:block;box-sizing:border-box;margin:0;border:none;border-radius:4px 4px 0 0;padding:10px 32px 0 10px;width:100%;min-height:100px;outline:0;color:#000;background:#fff;font-size:14px;font-family:inherit;resize:none}.composer--textarea>label .textarea:disabled{background:#282c37}.composer--textarea>label .textarea:focus{outline:0}@media screen and (max-width:630px){.auto-columns .composer--textarea>label .textarea{font-size:16px}}.single-column .composer--textarea>label .textarea{font-size:16px}@media screen and (max-width:600px){.auto-columns .composer--textarea>label .textarea,.single-column .composer--textarea>label .textarea{height:100px!important;resize:vertical}}.composer--textarea--icons{display:block;position:absolute;top:29px;right:5px;bottom:5px;overflow:hidden}.composer--textarea--icons>.textarea_icon{display:block;margin:2px 0 0 2px;width:24px;height:24px;color:#282c37;font-size:18px;line-height:24px;text-align:center;opacity:.8}.composer--textarea--suggestions{display:block;position:absolute;box-sizing:border-box;top:100%;border-radius:0 0 4px 4px;padding:6px;width:100%;color:#000;background:#282c37;box-shadow:4px 4px 6px rgba(0,0,0,.4);font-size:14px;z-index:99}.composer--textarea--suggestions[hidden]{display:none}.composer--textarea--suggestions--item{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;border-radius:4px;padding:10px;font-size:14px;line-height:18px;overflow:hidden;cursor:pointer}.composer--textarea--suggestions--item.selected,.composer--textarea--suggestions--item:active,.composer--textarea--suggestions--item:focus,.composer--textarea--suggestions--item:hover{background:#3d4455}.composer--textarea--suggestions--item>.emoji img{display:block;float:left;margin-right:8px;width:18px;height:18px}.composer--textarea--suggestions--item>.account.small .display-name>span{color:#282c37}.composer--upload_form{padding:5px;color:#000;background:#fff;font-size:14px}.composer--upload_form>.content{display:flex;flex-direction:row;flex-wrap:wrap;font-family:inherit;overflow:hidden}.composer--upload_form--item{flex:1 1 0;margin:5px;min-width:40%}.composer--upload_form--item>div{position:relative;border-radius:4px;height:140px;width:100%;background-position:50%;background-size:cover;background-repeat:no-repeat;overflow:hidden}.composer--upload_form--item>div input{display:block;position:absolute;box-sizing:border-box;bottom:0;left:0;margin:0;border:0;padding:10px;width:100%;color:#282c37;background:linear-gradient(0deg,rgba(0,0,0,.8),rgba(0,0,0,.35) 80%,transparent);font-size:14px;font-family:inherit;font-weight:500;opacity:0;z-index:2;transition:opacity .1s ease}.composer--upload_form--item>div input:focus{color:#fff}.composer--upload_form--item>div input::-webkit-input-placeholder{opacity:.54;color:#282c37}.composer--upload_form--item>div input:-ms-input-placeholder{opacity:.54;color:#282c37}.composer--upload_form--item>div input::-ms-input-placeholder{opacity:.54;color:#282c37}.composer--upload_form--item>div input::placeholder{opacity:.54;color:#282c37}.composer--upload_form--item>div>.close{mix-blend-mode:difference}.composer--upload_form--item.active>div input{opacity:1}.composer--upload_form--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}.composer--upload_form--actions .icon-button{flex:0 1 auto;color:#282c37;font-size:14px;font-weight:500;padding:10px;font-family:inherit}.composer--upload_form--actions .icon-button:active,.composer--upload_form--actions .icon-button:focus,.composer--upload_form--actions .icon-button:hover{color:#1f232b}.composer--upload_form--actions.active{opacity:1}.composer--upload_form--progress{display:flex;padding:10px;color:#282c37;overflow:hidden}.composer--upload_form--progress>.fa{font-size:34px;margin-right:10px}.composer--upload_form--progress>.message{flex:1 1 auto}.composer--upload_form--progress>.message>span{display:block;font-size:12px;font-weight:500;text-transform:uppercase}.composer--upload_form--progress>.message>.backdrop{position:relative;margin-top:5px;border-radius:6px;width:100%;height:6px;background:#3c5063}.composer--upload_form--progress>.message>.backdrop>.tracker{position:absolute;top:0;left:0;height:6px;border-radius:6px;background:#2b90d9}.composer--options{padding:10px;background:#fff;box-shadow:inset 0 5px 5px rgba(0,0,0,.05);border-radius:0 0 4px 4px;height:27px}.composer--options>*{display:inline-block;box-sizing:content-box;padding:0 3px;height:27px;line-height:27px;vertical-align:bottom}.composer--options>hr{display:inline-block;margin:0 3px;border:0 transparent;border-left:1px solid #fff;padding:0;width:0;height:27px;background:transparent}.composer--options--dropdown.open>.value{border-radius:4px 4px 0 0;box-shadow:0 -4px 4px rgba(0,0,0,.1);color:#000;background:#2b90d9;transition:none}.composer--options--dropdown.open.top>.value{border-radius:0 0 4px 4px;box-shadow:0 4px 4px rgba(0,0,0,.1)}.composer--options--dropdown--content{position:absolute;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4);background:#fff;overflow:hidden;-webkit-transform-origin:50% 0;transform-origin:50% 0}.composer--options--dropdown--content--item{display:flex;align-items:center;padding:10px;color:#000;cursor:pointer}.composer--options--dropdown--content--item>.content{flex:1 1 auto;color:#282c37}.composer--options--dropdown--content--item>.content:not(:first-child){margin-left:10px}.composer--options--dropdown--content--item>.content strong{display:block;color:#000;font-weight:500}.composer--options--dropdown--content--item.active,.composer--options--dropdown--content--item:hover{background:#2b90d9;color:#000}.composer--options--dropdown--content--item.active>.content,.composer--options--dropdown--content--item.active>.content strong,.composer--options--dropdown--content--item:hover>.content,.composer--options--dropdown--content--item:hover>.content strong{color:#000}.composer--options--dropdown--content--item.active:hover{background:#2485cb}.composer--publisher{padding-top:10px;text-align:right;white-space:nowrap;overflow:hidden}.composer--publisher>.count{display:inline-block;margin:0 16px 0 8px;font-size:16px;line-height:36px}.composer--publisher>.primary{display:inline-block;margin:0;padding:0 10px;text-align:center}.composer--publisher>.side_arm{display:inline-block;margin:0 2px 0 0;padding:0;width:36px;text-align:center}.composer--publisher.over>.count{color:#ff5050}.column__wrapper,.columns-area{display:flex;flex:1 1 auto;position:relative}.columns-area{flex-direction:row;justify-content:flex-start;overflow-x:auto}@media screen and (min-width:360px){.auto-columns .columns-area,.single-column .columns-area{padding:10px}.auto-columns .react-swipeable-view-container .columns-area,.single-column .react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.react-swipeable-view-container,.react-swipeable-view-container .column,.react-swipeable-view-container .columns-area{height:100%}.react-swipeable-view-container>*{display:flex;align-items:center;justify-content:center;height:100%}.ui{flex:0 0 auto;display:flex;flex-direction:column;width:100%;height:100%;background:#eff3f5}@media screen and (min-width:360px){.auto-columns .tabs-bar,.single-column .tabs-bar{margin:10px 10px 0}}@media screen and (max-width:630px){:root .auto-columns .column{flex:auto;width:100%;min-width:0;max-width:none;padding:0}:root .auto-columns .columns-area{flex-direction:column}:root .auto-columns .autosuggest-textarea__textarea,:root .auto-columns .search__input{font-size:16px}}:root .single-column .column{flex:auto;width:100%;min-width:0;max-width:none;padding:0}:root .single-column .columns-area{flex-direction:column}:root .single-column .autosuggest-textarea__textarea,:root .single-column .search__input{font-size:16px}@media screen and (min-width:631px){.auto-columns .columns-area{padding:0}.auto-columns .column{flex:0 0 auto;padding:10px 5px}.auto-columns .column:first-child{padding-left:10px}.auto-columns .column:last-child{padding-right:10px}.auto-columns .columns-area>div .column{padding-left:5px;padding-right:5px}}.multi-columns .columns-area{padding:0}.multi-columns .column{flex:0 0 auto;padding:10px 5px}.multi-columns .column:first-child{padding-left:10px}.multi-columns .column:last-child{padding-right:10px}.multi-columns .columns-area>div .column{padding-left:5px;padding-right:5px}.column-back-button{background:#ccd7e0;color:#2b90d9;cursor:pointer;flex:0 0 auto;font-size:16px;border:0;text-align:unset;padding:15px;margin:0;z-index:3}.column-back-button:hover{text-decoration:underline}.column-header__back-button{background:#ccd7e0;border:0;font-family:inherit;color:#2b90d9;cursor:pointer;flex:0 0 auto;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}.column-link{background:#c0cdd9;color:#000;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#b6c5d3}.column-link__icon{display:inline-block;margin-right:5px}.column-subheading{background:#d9e1e8;color:#444b5d;padding:8px 20px;font-size:12px;font-weight:500;text-transform:uppercase;cursor:default}.column-header__wrapper{position:relative;flex:0 0 auto}.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,144,217,.23) 0,rgba(43,144,217,0) 60%)}.column-header{display:flex;font-size:16px;background:#ccd7e0;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden}.column-header>button{margin:0;border:none;padding:15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header>.column-header__back-button{color:#2b90d9}.column-header.active{box-shadow:0 1px 0 rgba(43,144,217,.3)}.column-header.active .column-header__icon{color:#2b90d9;text-shadow:0 0 10px rgba(43,144,217,.4)}.column-header:active,.column-header:focus{outline:0}.column{width:330px;position:relative;box-sizing:border-box;display:flex;flex-direction:column;overflow:hidden}.wide .column{flex:auto;min-width:330px;max-width:400px}.column>.scrollable{background:#d9e1e8}.column-header__buttons{height:48px;display:flex;margin-left:0}.column-header__links .text-btn{margin-right:10px}.column-header__button,.column-header__notif-cleaning-buttons button{background:#ccd7e0;border:0;color:#282c37;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover,.column-header__notif-cleaning-buttons button:hover{color:#191b22}.column-header__button.active,.column-header__button.active:hover,.column-header__notif-cleaning-buttons button.active,.column-header__notif-cleaning-buttons button.active:hover{color:#000;background:#c0cdd9}.column-header__button:focus,.column-header__notif-cleaning-buttons button:focus{text-shadow:0 0 4px #419bdd}.column-header__notif-cleaning-buttons{display:flex;align-items:stretch;justify-content:space-around}.column-header__notif-cleaning-buttons button{background:transparent;text-align:center;padding:10px 0;white-space:pre-wrap}.column-header__notif-cleaning-buttons b{font-weight:700}.column-header__collapsible-inner.nopad-drawer{padding:0}.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:transparent;border:0;border-top:1px solid #b3c3d1;margin:10px 0}.column-header__collapsible.ncd{transition:none}.column-header__collapsible.ncd.collapsed{max-height:0;opacity:.7}.column-header__collapsible-inner{background:#c0cdd9;padding:15px}.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__title{display:inline-block;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header__icon{display:inline-block;margin-right:5px}.empty-column-indicator,.error-column{color:#444b5d;background:#d9e1e8;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#2b90d9;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}.single-column.navbar-under .tabs-bar{margin-top:0!important;margin-bottom:-6px!important}@media screen and (max-width:360px){.auto-columns.navbar-under .tabs-bar{margin-top:0!important;margin-bottom:-6px!important}}@media screen and (max-width:360px){.auto-columns.navbar-under .react-swipeable-view-container .columns-area,.single-column.navbar-under .react-swipeable-view-container .columns-area{height:100%!important}}.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}.floating-action-button{position:fixed;display:flex;justify-content:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#3897db;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#227dbe}.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:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#444b5d}.regeneration-indicator__label span{font-size:15px;font-weight:400}.search{position:relative}.search__input{display:block;padding:10px 30px 10px 10px;outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#d9e1e8;color:#282c37;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#ccd7e0}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#282c37;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#000}.search-results__header{padding:15px 10px;font-size:14px}.search-results__header,.trends__header{color:#444b5d;background:#d3dce4;border-bottom:1px solid #e6ebf0;font-weight:500}.trends__header{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 strong{font-weight:500}.trends__item__name a{color:#282c37;text-decoration:none;font-size:14px;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:#2380c3!important}.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}.emoji-picker-dropdown__menu{background:#fff;position:absolute;box-shadow:4px 4px 6px rgba(0,0,0,.4);border-radius:4px;margin-top:5px}.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:transparent}.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}.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}.emoji-button:active img,.emoji-button:focus img,.emoji-button:hover img{opacity:1;-webkit-filter:none;filter:none}.doodle-modal{width:unset}.doodle-modal__container{background:#d9e1e8;text-align:center;line-height:0}.doodle-modal__container canvas{border:5px solid #d9e1e8}.doodle-modal__action-bar .filler{flex-grow:1;margin:0;padding:0}.doodle-modal__action-bar .doodle-toolbar{line-height:1;display:flex;flex-direction:column;flex-grow:0;justify-content:space-around}.doodle-modal__action-bar .doodle-toolbar.with-inputs label{display:inline-block;width:70px;text-align:right;margin-right:2px}.doodle-modal__action-bar .doodle-toolbar.with-inputs input[type=number],.doodle-modal__action-bar .doodle-toolbar.with-inputs input[type=text]{width:40px}.doodle-modal__action-bar .doodle-toolbar.with-inputs span.val{display:inline-block;text-align:left;width:50px}.doodle-modal__action-bar .doodle-palette{padding-right:0!important;border:1px solid #000;line-height:.2rem;flex-grow:0;background:#fff}.doodle-modal__action-bar .doodle-palette button{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:1rem;height:1rem;margin:0;padding:0;text-align:center;color:#000;text-shadow:0 0 1px #fff;cursor:pointer;box-shadow:inset 0 0 1px hsla(0,0%,100%,.5);border:1px solid #000;outline-offset:-1px}.doodle-modal__action-bar .doodle-palette button.foreground{outline:1px dashed #fff}.doodle-modal__action-bar .doodle-palette button.background{outline:1px dashed red}.doodle-modal__action-bar .doodle-palette button.foreground.background{outline:1px dashed red;border-color:#fff}.drawer{width:300px;box-sizing:border-box;display:flex;flex-direction:column;overflow-y:hidden;padding:10px 5px;flex:none}.drawer:first-child{padding-left:10px}.drawer:last-child{padding-right:10px}@media screen and (max-width:630px){.auto-columns .drawer{flex:auto}}.single-column .drawer{flex:auto}@media screen and (max-width:630px){.auto-columns .drawer,.auto-columns .drawer:first-child,.auto-columns .drawer:last-child,.single-column .drawer,.single-column .drawer:first-child,.single-column .drawer:last-child{padding:0}}.wide .drawer{min-width:300px;max-width:400px;flex:1 1 200px}@media screen and (max-width:630px){:root .auto-columns .drawer{flex:auto;width:100%;min-width:0;max-width:none;padding:0}}:root .single-column .drawer{flex:auto;width:100%;min-width:0;max-width:none;padding:0}.react-swipeable-view-container .drawer{height:100%}.drawer--header{display:flex;flex-direction:row;margin-bottom:10px;flex:none;background:#c0cdd9;font-size:16px}.drawer--header>*{display:block;box-sizing:border-box;border-bottom:2px solid transparent;padding:15px 5px 13px;height:48px;flex:1 1 auto;color:#282c37;text-align:center;text-decoration:none;cursor:pointer}.drawer--header a{transition:background .1s ease-in}.drawer--header a:focus,.drawer--header a:hover{outline:none;background:#cfd9e2;transition:background .2s ease-out}.drawer--search{position:relative;margin-bottom:10px;flex:none}@media screen and (max-width:360px){.auto-columns .drawer--search,.single-column .drawer--search{margin-bottom:0}}@media screen and (max-width:630px){.auto-columns .drawer--search{font-size:16px}}.single-column .drawer--search{font-size:16px}.drawer--search input{display:block;box-sizing:border-box;margin:0;border:none;padding:10px 30px 10px 10px;width:100%;height:36px;outline:0;color:#282c37;background:#d9e1e8;font-size:14px;font-family:inherit;line-height:16px}.drawer--search input:focus{outline:0;background:#ccd7e0}.drawer--search>.icon{display:block;position:absolute;top:10px;right:10px;width:18px;height:18px;color:#282c37;font-size:18px;line-height:18px;z-index:2}.drawer--search>.icon .fa{display:inline-block;position:absolute;top:0;bottom:0;left:0;right:0;opacity:0;cursor:default;pointer-events:none;transition:all .1s linear}.drawer--search>.icon .fa-search{opacity:.3;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.drawer--search>.icon .fa-times-circle{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);cursor:pointer}.drawer--search>.icon .fa-times-circle:hover{color:#000}.drawer--search.active>.icon .fa-search{opacity:0;-webkit-transform:rotate(90deg);transform:rotate(90deg)}.drawer--search.active>.icon .fa-times-circle{opacity:.3;pointer-events:auto;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.drawer--search--popout{box-sizing:border-box;margin-top:10px;border-radius:4px;padding:10px 14px 14px;box-shadow:2px 4px 15px rgba(0,0,0,.4);color:#444b5d;background:#fff}.drawer--search--popout h4{margin-bottom:10px;color:#444b5d;font-size:13px;font-weight:500;text-transform:uppercase}.drawer--search--popout ul{margin-bottom:10px}.drawer--search--popout li{padding:4px 0}.drawer--search--popout em{color:#000;font-weight:500}.drawer--account{padding:10px;color:#282c37}.drawer--account>a{color:inherit;text-decoration:none}.drawer--account>.avatar{float:left;margin-right:10px}.drawer--account>.acct{display:block;color:#282c37;font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.drawer--results{position:absolute;top:0;bottom:0;left:0;right:0;padding:0;background:#d9e1e8;overflow-x:hidden;overflow-y:auto}.drawer--results>header{border-bottom:1px solid #e6ebf0;padding:15px 10px;color:#444b5d;background:#d3dce4;font-size:14px;font-weight:500}.drawer--results>section{background:#d9e1e8;margin-bottom:20px}.drawer--results>section h5{position:relative}.drawer--results>section h5:before{content:\"\";display:block;position:absolute;left:0;right:0;top:50%;width:100%;height:0;border-top:1px solid #c0cdd9}.drawer--results>section h5 span{display:inline-block;background:#d9e1e8;color:#282c37;font-size:14px;font-weight:500;padding:10px;position:relative;z-index:1;cursor:default}.drawer--results>section .account:last-child,.drawer--results>section>div:last-child .status{border-bottom:0}.drawer--results>section>.hashtag{display:block;padding:10px;color:#282c37;text-decoration:none}.drawer--results>section>.hashtag:active,.drawer--results>section>.hashtag:focus,.drawer--results>section>.hashtag:hover{color:#1f232b;text-decoration:underline}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#b0c0cf;flex-direction:column;overflow-y:auto;width:100%;height:100%}.drawer__inner.darker{background:#d9e1e8}.drawer__inner__mastodon{background:#b0c0cf url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;flex:1;min-height:47px}.drawer__inner__mastodon>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}.drawer__inner__mastodon>.mastodon{display:block;width:100%;height:100%;border:none;cursor:inherit}.pseudo-drawer{background:#b0c0cf;font-size:13px;text-align:left}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:hsla(0,0%,100%,.5)}.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;width:100%;height:100%}.media-spoiler:active,.media-spoiler:focus,.media-spoiler:hover{color:#17191f}.status__content>.media-spoiler{margin-top:15px}.media-spoiler.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:500}.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}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{height:100%;display:flex;flex-direction:column}.media-gallery__audio span{text-align:center;color:#282c37;display:flex;height:100%;align-items:center}.media-gallery__audio audio,.media-gallery__audio span p{width:100%}.media-gallery{box-sizing:border-box;margin-top:8px;overflow:hidden;border-radius:4px;position:relative;width:100%;height:110px}.media-gallery.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.media-gallery__item{border:none;box-sizing:border-box;display:block;float:left;position:relative;border-radius:4px;overflow:hidden}.full-width .media-gallery__item{border-radius:0}.media-gallery__item.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item.letterbox{background:#000}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#282c37;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain}.media-gallery__item-thumbnail:not(.letterbox),.media-gallery__item-thumbnail img:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.media-gallery__gifv{height:100%;overflow:hidden;position:relative;width:100%;display:flex;justify-content:center}.media-gallery__item-gifv-thumbnail{cursor:zoom-in;height:100%;width:100%;position:relative;z-index:1;-o-object-fit:contain;font-family:\"object-fit:contain\";object-fit:contain}.media-gallery__item-gifv-thumbnail:not(.letterbox){height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.media-gallery__item-thumbnail-label{clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute}.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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#2b90d9}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.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%}.video-player:focus{outline:0}.detailed-status .video-player{width:100%;height:100%}.video-player.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.video-player video{max-width:100vw;max-height:80vh;z-index:1;position:relative}.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%;-webkit-transform:translateY(-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:#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:transparent;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:#217aba}.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:#217aba;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.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:#217aba}.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:#217aba;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.full-width{margin-left:-14px;margin-right:-14px;width:inherit;max-width:none;height:250px;border-radius:0}.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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.sensitive-info{display:flex;flex-direction:row;align-items:center;position:absolute;top:4px;left:4px;z-index:100}.sensitive-marker{margin:0 3px;border-radius:2px;padding:2px 6px;color:rgba(0,0,0,.8);background:hsla(0,0%,100%,.5);font-size:12px;line-height:15px;text-transform:uppercase;opacity:.9;transition:opacity .1s ease}.media-gallery:hover .sensitive-marker{opacity:1}.list-editor{background:#d9e1e8;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@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__pager{height:50vh}.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{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.list-adder{background:#d9e1e8;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#b0c0cf}.list-adder__lists{background:#b0c0cf;height:50vh;border-radius:0 0 8px 8px;overflow-y:auto}.list-adder .list{padding:10px;border-bottom:1px solid #c0cdd9}.list-adder .list__wrapper{display:flex}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.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:#2b90d9}.emoji-mart-anchor-selected:hover{color:#3c99dc}.emoji-mart-anchor-selected .emoji-mart-anchor-bar{bottom:0}.emoji-mart-anchor-bar{position:absolute;bottom:-3px;left:0;width:100%;height:3px;background-color:#3897db}.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}.glitch.local-settings{position:relative;display:flex;flex-direction:row;background:#282c37;color:#000;border-radius:8px;height:80vh;width:80vw;max-width:740px;max-height:450px;overflow:hidden}.glitch.local-settings label,.glitch.local-settings legend{display:block;font-size:14px}.glitch.local-settings .boolean label,.glitch.local-settings .radio_buttons label{position:relative;padding-left:28px;padding-top:3px}.glitch.local-settings .boolean label input,.glitch.local-settings .radio_buttons label input{position:absolute;left:0;top:0}.glitch.local-settings span.hint{display:block;color:#282c37}.glitch.local-settings h1{font-size:18px;font-weight:500;line-height:24px;margin-bottom:20px}.glitch.local-settings h2{font-size:15px;font-weight:500;line-height:20px;margin-top:20px;margin-bottom:10px}.glitch.local-settings__navigation__item{display:block;padding:15px 20px;color:inherit;background:#17191f;border-bottom:1px solid #282c37;cursor:pointer;text-decoration:none;outline:none;transition:background .3s}.glitch.local-settings__navigation__item .text-icon-button{color:inherit;transition:unset}.glitch.local-settings__navigation__item:hover{background:#282c37}.glitch.local-settings__navigation__item.active{background:#2b90d9;color:#000}.glitch.local-settings__navigation__item.close,.glitch.local-settings__navigation__item.close:hover{background:#df405a;color:#000}.glitch.local-settings__navigation{background:#17191f;width:212px;font-size:15px;line-height:20px;overflow-y:auto}.glitch.local-settings__page{display:block;flex:auto;padding:15px 20px;width:360px;overflow-y:auto}.glitch.local-settings__page__item{margin-bottom:2px}.glitch.local-settings__page__item.radio_buttons,.glitch.local-settings__page__item.string{margin-top:10px;margin-bottom:10px}@media screen and (max-width:630px){.glitch.local-settings__navigation{width:40px;flex-shrink:0}.glitch.local-settings__navigation__item{padding:10px}.glitch.local-settings__navigation__item span:last-of-type{display:none}}.error-boundary h1{font-size:26px;line-height:36px;font-weight:400;margin-bottom:8px}.error-boundary p{color:#000;font-size:15px;line-height:20px}.error-boundary p a{color:#000;text-decoration:underline}.error-boundary p ul{list-style:disc;margin-left:0;padding-left:1em}.error-boundary p textarea.web_app_crash-stacktrace{width:100%;resize:none;white-space:pre;font-family:monospace,monospace}.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:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37;padding-right:10px}.rich-formatting a{color:#2b90d9;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family: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:#2b90d9;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.rich-formatting h1{font-family:sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h1 small{font-family:sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.rich-formatting h2{font-size:22px;line-height:26px}.rich-formatting h2,.rich-formatting h3{font-family:sans-serif;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h3{font-size:18px;line-height:24px}.rich-formatting h4{font-size:16px}.rich-formatting h4,.rich-formatting h5{font-family:sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h5{font-size:14px}.rich-formatting h6{font-family:sans-serif;font-size:12px;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.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(60,80,99,.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: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-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: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;background-size:80px 80px;margin:0 auto 15px}.information-board .owner .avatar img{display:block;width:80px;height:80px;border-radius:48px;border-radius:8%;background:transparent no-repeat;background-position:50%;background-clip:padding-box}.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 .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:100%}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:flex;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(60,80,99,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#d9e1e8;font-size:12px;font-weight:500;color:#282c37;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family: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:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#282c37;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.landing-page h1{font-family:sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h1 small{font-family:sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.landing-page h2{font-size:22px;line-height:26px}.landing-page h2,.landing-page h3{font-family:sans-serif;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h3{font-size:18px;line-height:24px}.landing-page h4{font-size:16px}.landing-page h4,.landing-page h5{font-family:sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h5{font-size:14px}.landing-page h6{font-family:sans-serif;font-size:12px;line-height:24px;font-weight:500;margin-bottom:20px;color:#282c37}.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(60,80,99,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#d9e1e8;background:linear-gradient(150deg,#c0cdd9,#d9e1e8);position:relative}.landing-page .header-wrapper.compact{background:#d9e1e8;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37}.landing-page .header-wrapper.compact .hero .heading a{color:#2b90d9;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:flex;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:flex;justify-content:center;align-items:center;color:#282c37;text-decoration:none;padding:12px 16px;line-height:32px;font-family:sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#282c37}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#e6ebf0;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:flex;flex-direction:column;justify-content:space-between}.landing-page .about-short{background:#e6ebf0;padding:50px 0 30px;font-family:sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37}.landing-page .about-short a{color:#2b90d9;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.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:wrap;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 .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 #mastodon-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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#f2f5f7}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#000;width:100%;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#000;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#282c37;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#444b5d;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:30px 0 40px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:flex;padding:10px 0;justify-content:space-between}.landing-page .features-list .features-list__row .visual{flex:0 0 auto;display:flex;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#282c37;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#282c37}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#444b5d}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#444b5d}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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 .header .links{padding-top:15px;background:#e6ebf0}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:flex;flex-flow:row wrap;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#f2f5f7;width:100%;border-radius:0;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:flex;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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:#2b90d9;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:transparent}.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-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:monospace,monospace}button.table-action-link{background:transparent;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:#282c37;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__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}.batch-table__row{border:1px solid #f2f5f7;border-top:0;background:#e6ebf0}.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 .status__content{padding-top:0}.batch-table .status__content strong{font-weight:700}.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:#282c37;text-decoration:none;transition:all .2s linear;border-radius:4px 0 0 4px}.admin-wrapper .sidebar ul a i.fa{margin-right:5px}.admin-wrapper .sidebar ul a:hover{color:#000;background-color:#e9eef2;transition:all .1s linear}.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:#2b90d9;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#2482c7}.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:#282c37;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{box-shadow:none}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#000;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#282c37;margin-bottom:20px}.admin-wrapper .content>p strong{color:#000;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(60,80,99,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#282c37}.admin-wrapper .content .muted-hint a{color:#2b90d9}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;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:#282c37;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #d9e1e8}.filters .filter-subset a:hover{color:#000;border-bottom:2px solid #c9d4de}.filters .filter-subset a.selected{color:#2b90d9;border-bottom:2px solid #2b90d9}.flavour-screen{display:block;margin:10px auto;max-width:100%}.flavour-description{display:block;font-size:16px;margin:10px 0}.flavour-description>p{margin:10px 0}.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:#2b90d9;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: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:#79bd9a}.log-entry__icon__overlay.negative{background:#c1203b}.log-entry__icon__overlay.neutral{background:#2b90d9}.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:#79bd9a}.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 #2b90d9}.speech-bubble.positive{border-left-color:#79bd9a}.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;overflow:hidden;text-overflow:ellipsis}.emojione[title=\":alien:\"],.emojione[title=\":baseball:\"],.emojione[title=\":chains:\"],.emojione[title=\":chicken:\"],.emojione[title=\":cloud:\"],.emojione[title=\":crescent_moon:\"],.emojione[title=\":dash:\"],.emojione[title=\":dove_of_peace:\"],.emojione[title=\":eyes:\"],.emojione[title=\":first_quarter_moon:\"],.emojione[title=\":first_quarter_moon_with_face:\"],.emojione[title=\":fish_cake:\"],.emojione[title=\":full_moon:\"],.emojione[title=\":full_moon_with_face:\"],.emojione[title=\":ghost:\"],.emojione[title=\":goat:\"],.emojione[title=\":grey_exclamation:\"],.emojione[title=\":grey_question:\"],.emojione[title=\":ice_skate:\"],.emojione[title=\":last_quarter_moon:\"],.emojione[title=\":last_quarter_moon_with_face:\"],.emojione[title=\":lightning:\"],.emojione[title=\":loud_sound:\"],.emojione[title=\":moon:\"],.emojione[title=\":mute:\"],.emojione[title=\":page_with_curl:\"],.emojione[title=\":rain_cloud:\"],.emojione[title=\":ram:\"],.emojione[title=\":rice:\"],.emojione[title=\":rice_ball:\"],.emojione[title=\":rooster:\"],.emojione[title=\":sheep:\"],.emojione[title=\":skull:\"],.emojione[title=\":skull_and_crossbones:\"],.emojione[title=\":snow_cloud:\"],.emojione[title=\":sound:\"],.emojione[title=\":speaker:\"],.emojione[title=\":speech_balloon:\"],.emojione[title=\":thought_balloon:\"],.emojione[title=\":volleyball:\"],.emojione[title=\":waning_crescent_moon:\"],.emojione[title=\":waning_gibbous_moon:\"],.emojione[title=\":waving_white_flag:\"],.emojione[title=\":waxing_crescent_moon:\"],.emojione[title=\":white_circle:\"],.emojione[title=\":white_large_square:\"],.emojione[title=\":white_medium_small_square:\"],.emojione[title=\":white_medium_square:\"],.emojione[title=\":white_small_square:\"],.emojione[title=\":wind_blowing_face:\"]{-webkit-filter:drop-shadow(1px 1px 0 #000) drop-shadow(-1px 1px 0 #000) drop-shadow(1px -1px 0 #000) drop-shadow(-1px -1px 0 #000);filter:drop-shadow(1px 1px 0 #000000) drop-shadow(-1px 1px 0 #000000) drop-shadow(1px -1px 0 #000000) drop-shadow(-1px -1px 0 #000000)}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:-15px;margin-right:0}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 .setting-meta__label{float:left}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 .activity-stream .detailed-status.light .detailed-status__display-name>div{float:right;margin-right:0;margin-left:10px}body.rtl .activity-stream .detailed-status.light .detailed-status__meta span>span{margin-left:0;margin-right:6px}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-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 #mastodon-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}.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:sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#282c37;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}.glitch.local-settings{background:#d9e1e8}.glitch.local-settings__navigation,.glitch.local-settings__navigation__item{background:#f2f5f7}.glitch.local-settings__navigation__item:hover{background:#d9e1e8}.notification__dismiss-overlay .wrappy{box-shadow:unset}.notification__dismiss-overlay .ckbox{text-shadow:unset}.status.status-direct{background:#f2f5f7}.status.status-direct.collapsed>.status__content:after{background:linear-gradient(rgba(242,245,247,0),#f2f5f7)}.focusable:focus.status.status-direct{background:#e6ebf0}.focusable:focus.status.status-direct.collapsed>.status__content:after{background:linear-gradient(rgba(230,235,240,0),#e6ebf0)}.column>.scrollable{background:#fff}.status.collapsed .status__content:after{background:linear-gradient(hsla(0,0%,100%,0),#fff)}.drawer__inner{background:#d9e1e8}.drawer__inner__mastodon{background:#d9e1e8 url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto!important}.drawer__inner__mastodon .mastodon{-webkit-filter:contrast(75%) brightness(75%)!important;filter:contrast(75%) brightness(75%)!important}.status__content .status__content__spoiler-link{background:#7a96ae}.status__content .status__content__spoiler-link:hover{background:#6a89a5;text-decoration:none}.account-gallery__item a,.dropdown-menu,.media-spoiler,.video-player__spoiler{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}.composer .composer--spoiler input,.composer .composer--textarea textarea{color:#0f151a}.composer .composer--spoiler input:disabled,.composer .composer--textarea textarea:disabled{background:#e6e6e6}.composer .composer--spoiler input::-webkit-input-placeholder,.composer .composer--textarea textarea::-webkit-input-placeholder{color:#232f39}.composer .composer--spoiler input:-ms-input-placeholder,.composer .composer--textarea textarea:-ms-input-placeholder{color:#232f39}.composer .composer--spoiler input::-ms-input-placeholder,.composer .composer--textarea textarea::-ms-input-placeholder{color:#232f39}.composer .composer--spoiler input::placeholder,.composer .composer--textarea textarea::placeholder{color:#232f39}.composer .composer--options{background:#b9c8d5;box-shadow:unset}.composer .composer--options>hr{display:none}.composer .composer--options--dropdown--content--item,.composer .composer--options--dropdown--content--item strong{color:#9baec8}.composer--upload_form--actions .icon-button{color:#ededed}.composer--upload_form--actions .icon-button:active,.composer--upload_form--actions .icon-button:focus,.composer--upload_form--actions .icon-button:hover{color:#fff}.composer--upload_form--item>div input{color:#ededed}.composer--upload_form--item>div input::-webkit-input-placeholder{color:#e6e6e6}.composer--upload_form--item>div input:-ms-input-placeholder{color:#e6e6e6}.composer--upload_form--item>div input::-ms-input-placeholder{color:#e6e6e6}.composer--upload_form--item>div input::placeholder{color:#e6e6e6}.dropdown-menu__separator{border-bottom-color:#b3c3d1}.reply-indicator__content a,.status__content a{color:#2b90d9}.emoji-mart-bar{border-color:#e6ebf0}.emoji-mart-bar:first-child{background:#b9c8d5}.emoji-mart-search input{background:rgba(217,225,232,.3);border-color:#d9e1e8}.composer--textarea--suggestions{background:#b9c8d5}.composer--textarea--suggestions--item.selected,.composer--textarea--suggestions--item:active,.composer--textarea--suggestions--item:focus,.composer--textarea--suggestions--item:hover{background:#e6ebf0}.react-toggle-track{background:#282c37}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background:#131419}.react-toggle.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background:#56a7e1}.actions-modal,.boost-modal,.confirmation-modal,.doodle-modal,.embed-modal,.error-modal,.mute-modal,.onboarding-modal,.report-modal{background:#d9e1e8}.boost-modal__action-bar,.confirmation-modal__action-bar,.doodle-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,.doodle-modal__action-bar .error-modal__nav:active,.doodle-modal__action-bar .error-modal__nav:focus,.doodle-modal__action-bar .error-modal__nav:hover,.doodle-modal__action-bar .onboarding-modal__nav:active,.doodle-modal__action-bar .onboarding-modal__nav:focus,.doodle-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}.empty-column-indicator,.error-column{color:#364959}.activity-stream-tabs{background:#fff}.activity-stream-tabs a.active{color:#9baec8}.activity-stream .entry{background:#fff}.activity-stream .status.light .display-name strong,.activity-stream .status.light .status__content{color:#000}.accounts-grid .account-grid-card .controls .icon-button{color:#282c37}.accounts-grid .account-grid-card .name a{color:#000}.accounts-grid .account-grid-card .username{color:#282c37}.accounts-grid .account-grid-card .account__header__content{color:#000}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/skins/glitch/mastodon-light/common.js b/priv/static/packs/skins/glitch/mastodon-light/common.js
new file mode 100644
index 000000000..a3a6b86ac
Binary files /dev/null and b/priv/static/packs/skins/glitch/mastodon-light/common.js differ
diff --git a/priv/static/packs/skins/glitch/mastodon-light/common.js.map b/priv/static/packs/skins/glitch/mastodon-light/common.js.map
new file mode 100644
index 000000000..aeb9a2119
Binary files /dev/null and b/priv/static/packs/skins/glitch/mastodon-light/common.js.map differ
diff --git a/priv/static/packs/skins/vanilla/contrast/common.css b/priv/static/packs/skins/vanilla/contrast/common.css
new file mode 100644
index 000000000..d8d6b4e52
Binary files /dev/null and b/priv/static/packs/skins/vanilla/contrast/common.css differ
diff --git a/priv/static/packs/skins/vanilla/contrast/common.css.map b/priv/static/packs/skins/vanilla/contrast/common.css.map
new file mode 100644
index 000000000..3d0d58ae3
--- /dev/null
+++ b/priv/static/packs/skins/vanilla/contrast/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/skins/vanilla/contrast/common.scss"],"names":[],"mappings":"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","file":"skins/vanilla/contrast/common.css","sourcesContent":["@charset \"UTF-8\";@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:\"mastodon-font-monospace\";src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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:#313543 transparent}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#313543;border:0 #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#353a49}::-webkit-scrollbar-thumb:active{background:#313543}::-webkit-scrollbar-track{border:0 #fff;border-radius:0;background:rgba(0,0,0,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#282c37}::-webkit-scrollbar-corner{background:transparent}body{font-family:\"mastodon-font-sans-serif\",sans-serif;background:#17191f;font-size:13px;line-height:18px;font-weight:400;color:#fff;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,\"mastodon-font-sans-serif\",sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#282c37}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#282c37}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:#313543;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#1f232b;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#dde3ec;background:#282c37;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:center;justify-content:center;outline:0!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:400px){.logo-container{margin:30px auto 20px}}.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:mastodon-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:#ecf0f4;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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#393f4f;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;box-shadow:none;z-index:110}}.public-layout .header>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:stretch;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:stretch;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#42485a}.public-layout .header .nav-link{display:flex;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#dde3ec;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}@media screen and (max-width:550px){.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#4a5266;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:#535b72}.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:#ecf0f4}.public-layout .public-account-header.inactive .logo-button svg path:last-child{fill:#ecf0f4}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#0e1014}.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:#313543;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 #313543;background:#17191f}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#313543;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:#dde3ec}}.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:#dde3ec;padding:10px;border-right:1px solid #313543;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 #9baec8;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #2b90d9;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#ecf0f4}.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:mastodon-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:transparent;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #42485a}.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:#dde3ec}.public-layout .public-account-header__extra__links a{display:inline-block;color:#dde3ec;text-decoration:none;padding:15px}.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:#393f4f;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:#4e79df}.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:#dde3ec}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#8d9ac2;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 #393f4f}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #393f4f}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#282c37}.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:#313543}}.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{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#737d99}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#737d99}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#dde3ec}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#737d99}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#737d99}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#7f88a2}.compact-header h1{font-size:24px;line-height:28px;color:#dde3ec;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:#ecf0f4}.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%;height:167px;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:#282c37;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#dde3ec;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:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.hero-widget__text a{color:#ecf0f4;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:#dde3ec}.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,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#282c37;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;min-height:100%}.contact-widget{font-size:15px;color:#dde3ec;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:#282c37;box-shadow:0 0 15px rgba(0,0,0,.2);color:#ecf0f4;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:#dde3ec}.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:#dde3ec;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#393f4f;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:#dde3ec}@media screen and (max-width:415px){.page-header{margin-top:0;background:#313543}.page-header h1{font-size:24px}}.directory{background:#282c37;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{display:flex;align-items:center;justify-content:space-between;background:#282c37;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:#393f4f}.directory__tag.active a{background:#2b5fd9;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:#dde3ec}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#dde3ec}.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:#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;border:2px solid #282c37}.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 thead th{text-align:center;text-transform:uppercase;color:#dde3ec;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 #393f4f}.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:#dde3ec;font-weight:400;font-size:14px}@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 #4a5266}}.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:#dde3ec}.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:\"mastodon-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 .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:#dde3ec}.simple_form .hint a{color:#2b90d9}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#0e1014}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#dde3ec}.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{-webkit-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:#131419;border:1px solid #0a0b0e;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,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{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:#2b90d9;background:#17191f}.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 .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:#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:#416fdd}.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:#2454c7}.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:#131419 url(\"data:image/svg+xml;utf8,
\") no-repeat right 8px center/auto 16px;border:1px solid #0a0b0e;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:#c2cede;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(19,20,25,0),#131419)}.flash-message{background:#393f4f;color:#dde3ec;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 p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:\"mastodon-font-monospace\",monospace;background:#282c37;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:#313543}.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:#dde3ec;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:#2b90d9;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#4ea2df}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#dde3ec}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#ecf0f4;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:#ecf0f4;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:#dde3ec}.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:\"mastodon-font-monospace\",monospace}.input-copy{background:#131419;border:1px solid #0a0b0e;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:transparent;border:0;padding:10px;font-size:14px;font-family:\"mastodon-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}.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:#393f4f}.card__img{height:130px;position:relative;background:#0e1014;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:#313543;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:#17191f}.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:#dde3ec;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:#000;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#ecf0f4}.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:#1a1a1a}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#282c37;box-shadow:0 0 15px rgba(0,0,0,.2);color:#364861;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:#d9e1e8;background-color:rgba(217,225,232,.1);border:1px solid rgba(217,225,232,.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:#42485a 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 #42485a}.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:#ecf0f4;background:rgba(23,25,31,.5)}.account__header__fields dd{flex:1 1 auto;color:#dde3ec}.account__header__fields a{color:#2b90d9;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}.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:#282c37}.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:#393f4f}.button.logo-button{flex:0 auto;font-size:14px;background:#2b5fd9;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}.button.logo-button svg path:first-child{fill:#fff}.button.logo-button svg path:last-child{fill:#2b5fd9}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#5680e1}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#5680e1}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button.disabled i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}.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:#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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#5680e1;transition:all .2s ease-out}.button--destructive{transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;transition:none}.button:disabled{background-color:#9baec8;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#000;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#a8b9cf}.button.button-alternative-2{background:#606984}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#687390}.button.button-secondary{color:#dde3ec;background:transparent;padding:3px 15px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#a8b9cf;color:#eaeef3}.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:#8d9ac2;border:none;background:transparent;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#a4afce;transition:color .2s ease-out}.icon-button.disabled{color:#6274ab;cursor:default}.icon-button.active{color:#2b90d9}.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:#1b1e25}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#0c0d11}.icon-button.inverted.disabled{color:#2a2e3a}.icon-button.inverted.active{color:#2b90d9}.icon-button.inverted.active.disabled{color:#63ade3}.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:#1b1e25;border:none;background:transparent;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:#0c0d11;transition:color .2s ease-out}.text-icon-button.disabled{color:#464d60;cursor:default}.text-icon-button.active{color:#2b90d9}.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}.dropdown-menu,.invisible{position:absolute}.invisible{font-size:0;line-height:0;display:inline-block;width:0;height:0}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:\"…\"}.compose-form{padding:10px}.compose-form .compose-form__warning{color:#000;margin-bottom:10px;background:#9baec8;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:#1b1e25;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 .compose-form__autosuggest-wrapper{position:relative}.compose-form .compose-form__autosuggest-wrapper .emoji-picker-dropdown{position:absolute;right:5px;top:5px}.compose-form .autosuggest-textarea,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:47px;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:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{height:100px!important;resize:vertical}}.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:#d9e1e8;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:#b9c8d5}.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:#1b1e25}.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;padding:5px;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__upload{flex:1 1 0;min-width:40%;margin:5px}.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:#ecf0f4;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:#fff}.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 input{background:transparent;color:#ecf0f4;border:0;padding:0;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description input:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:.75;color:#ecf0f4}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder{opacity:.75;color:#ecf0f4}.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:.75;color:#ecf0f4}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:.75;color:#ecf0f4}.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:140px;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}.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:flex}.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:\"mastodon-font-sans-serif\",sans-serif;font-size:14px;font-weight:600;color:#1b1e25}.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}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.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:#9baec8;padding:10px}.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;white-space:pre-wrap;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}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:0}.reply-indicator__content a,.status__content a{color:#d8a070;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:#dae1ea}.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:#c2cede}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#8d9ac2}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#a4afce;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:300px}.status__content__read-more-button{display:block;font-size:15px;line-height:20px;color:#4e79df;border:0;background:transparent;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:transparent;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:#c2cede;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 #393f4f}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#313543}.focusable:focus .status.status-direct{background:#42485a}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#393f4f}.status{padding:8px 10px 8px 68px;position:relative;min-height:54px;border-bottom:1px solid #393f4f;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:#393f4f;border-bottom-color:#42485a}.status.light .status__relative-time{color:#364861}.status.light .display-name strong,.status.light .status__display-name{color:#000}.status.light .display-name span{color:#364861}.status.light .status__content{color:#000}.status.light .status__content a{color:#2b90d9}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#b8c0d9}.notification__relative_time,.status__relative-time{color:#c2cede;float:right;font-size:14px}.status__display-name{color:#c2cede}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px}.status-check-box{border-bottom:1px solid #d9e1e8;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:#c2cede;padding:8px 0 2px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#c2cede}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:8px}.status__action-bar__counter{display:inline-flex;margin-right:11px;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:#8d9ac2}.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:#313543;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:#c2cede;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#000;font-size:14px}.reply-indicator__content a{color:#1b1e25}.domain{padding:10px;border-bottom:1px solid #393f4f}.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;border-bottom:1px solid #393f4f}.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:#dde3ec;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.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:4px;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:4px;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:4px;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:18px;padding:10px;white-space:nowrap}.account__header{flex:0 0 auto;background:#313543;text-align:center;background-size:cover;background-position:50%;position:relative}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#ecf0f4}.account__header>div{background:rgba(49,53,67,.9);padding:20px 10px}.account__header .account__header__content{color:#ecf0f4}.account__header .account__header__display-name{color:#fff;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#2b90d9;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.account__disclaimer{padding:10px;border-top:1px solid #393f4f;color:#c2cede}.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__header__content{color:#dde3ec;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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;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 #393f4f;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:#dde3ec}.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__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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:#ecf0f4;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}.muted .status__content,.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#c2cede}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#606984;color:#000}.muted a.status__content__spoiler-link:hover{background:#707b97;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#dde3ec;font-size:15px;line-height:22px;position:relative}.notification__message .fa{color:#2b90d9}.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;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.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/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:#dde3ec}.navigation-bar strong{color:#ecf0f4}.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;-webkit-transform:scaleX(0) translate(-100%);transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;-webkit-transform:scale(1) translate(0);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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;height:0}.dropdown-menu{background:#d9e1e8;padding:4px 0;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4);z-index:9999}.dropdown-menu ul{list-style:none}.dropdown-menu.left{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.dropdown-menu.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.dropdown-menu.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.dropdown-menu.right{-webkit-transform-origin:0 50%;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:#d9e1e8}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-7px;border-width:5px 7px 0;border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-7px;border-width:0 7px 5px;border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#d9e1e8}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#000;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#2b5fd9;color:#ecf0f4;outline:0}.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:#d9e1e8;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:#d9e1e8;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:#ecf0f4}.dropdown__icon{vertical-align:middle}.columns-area{display:flex;flex:1 1 auto;flex-direction:row;justify-content:flex-start;overflow-x:auto;position:relative}.columns-area.unscrollable{overflow-x:hidden}@media screen and (min-width:360px){.columns-area{padding:10px}.react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.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>.scrollable{background:#282c37;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.ui{flex:0 0 auto;flex-direction:column;width:100%;height:100%;background:#191b22}.drawer,.ui{display:flex}.drawer{width:330px;box-sizing:border-box;flex-direction:column;overflow-y:hidden}.drawer__tab{display:block;flex:1 1 auto;padding:15px 5px 13px;color:#dde3ec;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:360px){.tabs-bar{margin:10px 10px 0}.getting-started__trends,.search{margin-bottom:10px}.getting-started__panel{margin:10px 0}.column,.drawer{min-width:330px}}@media screen and (max-width:630px){.column,.drawer{width:100%;padding:0}.columns-area{flex-direction:column}.autosuggest-textarea__textarea,.search__input{font-size:16px}}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{flex:1 1 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}}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#444b5d;flex-direction:column;overflow-y:auto;width:100%;height:100%;border-radius:2px}.drawer__inner.darker{background:#282c37}.drawer__inner__mastodon{background:#444b5d url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;flex:1;min-height:47px}.drawer__inner__mastodon>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}.pseudo-drawer{background:#444b5d;font-size:13px;text-align:left}.drawer__header{flex:0 0 auto;font-size:16px;background:#393f4f;margin-bottom:10px;display:flex;flex-direction:row;border-radius:2px}.drawer__header a{transition:background .1s ease-in}.drawer__header a:hover{background:#2e3340;transition:background .2s ease-out}.tabs-bar{display:flex;background:#393f4f;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;flex:1 1 auto;padding:15px 10px;color:#fff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #393f4f;transition:all 50ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #2b90d9;color:#2b90d9}@media screen and (min-width:631px){.tabs-bar__link:active,.tabs-bar__link:focus,.tabs-bar__link:hover{background:#464d60}}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width:600px){.tabs-bar__link span{display:inline}}@media screen and (min-width:631px){.tabs-bar{display:none}}.scrollable{overflow-y:scroll;overflow-x:hidden;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}.scrollable--flex{display:flex;flex-direction:column}.scrollable__append{flex:1 1 auto;position:relative;min-height:120px}@supports (display:grid){.scrollable.fullscreen{contain:none}}.column-back-button{background:#313543;color:#2b90d9;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:#313543;border:0;font-family:inherit;color:#2b90d9;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:rgba(0,0,0,0);-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:#282c37;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#131419}.react-toggle--checked .react-toggle-track{background-color:#2b5fd9}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#5680e1}.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{transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #282c37;border-radius:50%;background-color:#fafafa;box-sizing:border-box;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#2b5fd9}.column-link{background:#393f4f;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#404657}.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:#282c37}.column-subheading{color:#c2cede;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#282c37}.flex-spacer{flex:1 1 auto}.getting-started{color:#c2cede;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.getting-started__footer,.getting-started__panel,.getting-started__wrapper{height:-webkit-min-content;height:-moz-min-content;height:min-content}.getting-started__footer,.getting-started__panel{padding:20px 10px 10px;flex-grow:0}.getting-started__footer ul,.getting-started__panel ul{margin-bottom:10px}.getting-started__footer ul li,.getting-started__panel ul li{display:inline}.getting-started__footer p,.getting-started__panel p{font-size:13px}.getting-started__footer p a,.getting-started__panel p a{color:#c2cede;text-decoration:underline}.getting-started__footer a,.getting-started__panel a{text-decoration:none;color:#dde3ec}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover,.getting-started__panel a:active,.getting-started__panel a:focus,.getting-started__panel a:hover{text-decoration:underline}.getting-started__footer,.getting-started__wrapper{color:#c2cede}.getting-started__trends{background:#282c37;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}}.getting-started__scrollable{max-height:100%;overflow-y:auto}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#393f4f;border:1px solid #1f232b}.setting-text{color:#dde3ec;background:transparent;border:none;border-bottom:2px solid #9baec8;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:#2b90d9}@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%}.reduce-motion button.icon-button i.fa-retweet{color:#8d9ac2;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#2b90d9}.status-card{display:flex;font-size:14px;border:1px solid #393f4f;border-radius:4px;color:#c2cede;margin-top:14px;text-decoration:none;overflow:hidden}.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:4px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#393f4f}.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:#dde3ec;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#dde3ec}.status-card__host{display:block;margin-top:5px;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__image{flex:0 0 100px;background:#393f4f;position:relative}.status-card__image>.fa{font-size:21px;position:absolute;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:50%;left:50%;-webkit-transform:translate(-50%,-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{border-color:#313543}.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 60px}a.status-card.compact:hover{background-color:#313543}.status-card__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#c2cede;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:#2c313d}.load-gap{border-bottom:1px solid #393f4f}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#c2cede;background:#282c37;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#c2cede}.regeneration-indicator__label span{font-size:15px;font-weight:400}.column-header__wrapper{position:relative;flex:0 0 auto}.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:#313543;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden;border-top-left-radius:2px;border-top-right-radius:2px}.column-header>button{margin:0;border:none;padding:15px 0 15px 15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header>.column-header__back-button{color:#2b90d9}.column-header.active{box-shadow:0 1px 0 rgba(43,144,217,.3)}.column-header.active .column-header__icon{color:#2b90d9;text-shadow:0 0 10px rgba(43,144,217,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:flex}.column-header__links .text-btn{margin-right:10px}.column-header__button{background:#313543;border:0;color:#dde3ec;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover{color:#f4f6f9}.column-header__button.active,.column-header__button.active:hover{color:#fff;background:#393f4f}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#dde3ec;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:transparent;border:0;border-top:1px solid #42485a;margin:10px 0}.column-header__collapsible-inner{background:#393f4f;padding:15px}.column-header__setting-btn:hover{color:#dde3ec;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}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#c2cede;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #606984;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:#606984}29%{background-color:#606984}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:#606984}29%{background-color:#606984}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:#dde3ec;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:#f7f9fb}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.modal-container--preloader{background:#393f4f}.account--panel{background:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f;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:#393f4f;padding:15px}.column-settings__section{color:#dde3ec;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__section .column-settings__hashtag-select__control{outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#282c37;color:#dde3ec;font-size:14px;margin:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner{border:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner,.column-settings__section .column-settings__hashtag-select__control:active,.column-settings__section .column-settings__hashtag-select__control:focus{outline:0!important}.column-settings__section .column-settings__hashtag-select__control:focus{background:#313543}@media screen and (max-width:600px){.column-settings__section .column-settings__hashtag-select__control{font-size:16px}}.column-settings__section .column-settings__hashtag-select__multi-value{background:#393f4f}.column-settings__section .column-settings__hashtag-select__input,.column-settings__section .column-settings__hashtag-select__multi-value__label{color:#dde3ec}.column-settings__section .column-settings__hashtag-select__dropdown-indicator,.column-settings__section .column-settings__hashtag-select__indicator-separator{display:none}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#fff;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:rgba(0,0,0,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.setting-toggle{display:block;line-height:24px}.setting-toggle__label{color:#dde3ec;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.empty-column-indicator,.error-column{color:#c2cede;background:#282c37;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#2b90d9;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{-webkit-transform-origin:center center;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{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{-webkit-transform-origin:50% 100%;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}.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:transparent}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(217,225,232,.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:#282c37;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#ecf0f4;font-size:18px;font-weight:500;border:2px dashed #606984;border-radius:4px}.upload-progress{padding:10px;color:#1b1e25;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:#606984;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}.privacy-dropdown__dropdown.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{-webkit-transform-origin:50% 0;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:#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:#3c6cdc}.privacy-dropdown__option__icon{display:flex;align-items:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{flex:1 1 auto;color:#1b1e25}.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:#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:10px 30px 10px 10px;outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#282c37;color:#dde3ec;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#313543}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#ecf0f4;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);color:#8d9ac2;cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#a4afce}.search-results__header{color:#c2cede;background:#2c313d;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:#1f232b;border-bottom:1px solid #393f4f;cursor:default;display:flex;padding:15px;font-weight:500;font-size:16px;color:#c2cede}.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:#ecf0f4;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#f9fafb;text-decoration:underline}.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}.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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#2b90d9}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#d9e1e8;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:#c0cdd9;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:#1b1e25;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:#131419;background-color:#a6b9c9}.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:#000}.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:#0a0a0a}.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:#282c37;color:#ecf0f4;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{background:#f2f5f7;color:#000;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;flex-direction:column}.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:#fff}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#d9e1e8}.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:#d9e1e8;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:#1b1e25;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}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.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 #d9e1e8}@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:#2b90d9}.report-modal__statuses .status__content,.report-modal__statuses .status__content p{color:#000}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #d9e1e8;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 #d9e1e8;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #c0cdd9}.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{max-height:80vh;max-width:80vw}.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}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#000;display:flex;padding:12px 16px;font-size:15px;align-items:center;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:#2b5fd9;color:#fff}.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#1b1e25;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 .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 .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#131419}.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}.loading-bar{background-color:#2b90d9;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}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{margin-top:32px}.media-gallery__audio audio{width:100%}.attachment-list{display:flex;font-size:14px;border:1px solid #393f4f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#c2cede;padding:8px 18px;cursor:default;border-right:1px solid #393f4f;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:#c2cede;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:#c2cede}.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.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#ecf0f4;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img{-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.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;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.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%;-webkit-transform:translateY(-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%;-webkit-transform:translateY(-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:#dde3ec;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:#f4f6f9}.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:transparent;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:#4e79df}.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:#4e79df;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.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:#4e79df}.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:#4e79df;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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.account-gallery__container{display:flex;justify-content:center;flex-wrap:wrap;padding:2px}.account-gallery__item{flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#000;background-size:cover;background-position:50%;position:absolute;color:#dde3ec;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#ecf0f4}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:rgba(0,0,0,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#1f232b;border-bottom:1px solid #393f4f;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#1f232b;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:#dde3ec;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:#ecf0f4}.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;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-color:transparent transparent #393f4f;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 #282c37}::-webkit-scrollbar-thumb{border-radius:0}.search-popout{background:#fff;border-radius:4px;padding:10px 14px 14px;margin-top:10px;color:#364861;box-shadow:2px 4px 15px rgba(0,0,0,.4)}.search-popout h4{text-transform:uppercase;color:#364861;font-size:13px;font-weight:500;margin-bottom:10px}.search-popout li{padding:4px 0}.search-popout ul{margin-bottom:10px}.search-popout em{font-weight:500;color:#000}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:#ecf0f4;max-width:400px}noscript div a{color:#2b90d9;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,-webkit-transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s,-webkit-transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s,-webkit-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;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;-webkit-transform:scaleX(0) translate(100%);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:\"mastodon-font-monospace\",monospace;background:#282c37;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:#313543}@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:#313543;border-top:1px solid #393f4f;border-bottom:1px solid #393f4f}.account__moved-note__message{position:relative;margin-left:58px;color:#c2cede;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:#313543}.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-left:5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.list-editor{background:#282c37;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#444b5d;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__pager{height:50vh}.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{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.list-adder{background:#282c37;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#444b5d}.list-adder__lists{background:#444b5d;height:50vh;border-radius:0 0 8px 8px;overflow-y:auto}.list-adder .list{padding:10px;border-bottom:1px solid #393f4f}.list-adder .list__wrapper{display:flex}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/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}.floating-action-button{position:fixed;display:flex;justify-content:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#2558d0;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#4976de}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.account__header .account__header__fields{font-size:14px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0;border-top:0}.account__header .account__header__fields dl{border-top:1px solid #313543;border-bottom:0;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#dde3ec;background:#1f232b;width:120px;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{flex:1 1 auto;color:#fff;background:#282c37}.account__header .account__header__fields dd.verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.trends__header{color:#c2cede;background:#2c313d;border-bottom:1px solid #1f232b;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 #393f4f}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#c2cede;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#dde3ec;text-decoration:none;font-size:14px;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:#ecf0f4}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#459ede!important}.introduction{display:flex;flex-direction:column;justify-content:center;align-items:center}@media screen and (max-width:920px){.introduction{background:#17191f;display:block!important}}.introduction__pager{background:#17191f;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{border-top:2px solid #2b5fd9}.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:#dde3ec}.introduction__text p code{display:inline-block;background:#17191f;font-size:15px;border:1px solid #393f4f;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:transparent;margin:0 3px;cursor:pointer}.introduction__dot:hover{background:#393f4f}.introduction__dot.active{cursor:default;background:#2b5fd9}.introduction__action{padding:0 25px 25px;display:flex;align-items:center;justify-content:center}.modal-layout{background:#282c37 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}.modal-layout__mastodon{display:flex;flex:1;flex-direction:column;justify-content:flex-end}.modal-layout__mastodon>*{flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.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 #c0cdd9}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#d9e1e8}.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:#1b1e25;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:#131419}.emoji-mart-anchor-selected{color:#2b90d9}.emoji-mart-anchor-selected:hover{color:#2485cb}.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:#2b90d9}.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:rgba(217,225,232,.3);color:#000;border:1px solid #d9e1e8;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(217,225,232,.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:#364861}.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:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec;padding-right:10px}.rich-formatting a{color:#2b90d9;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#dde3ec}.rich-formatting li a,.rich-formatting p a{color:#2b90d9;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.rich-formatting h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#fefefe}.rich-formatting h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.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(96,105,132,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#1f232b;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:\"mastodon-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:#ecf0f4}.information-board__section strong{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:#17191f;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:mastodon-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#dde3ec;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #313543;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#bcc9da}.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:#dde3ec}.landing-page .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:100%}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:flex;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(96,105,132,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#282c37;font-size:12px;font-weight:500;color:#dde3ec;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#dde3ec}.landing-page li a,.landing-page p a{color:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#dde3ec;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#2b90d9;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#fefefe}.landing-page h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#fefefe}.landing-page h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#ecf0f4}.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(96,105,132,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#282c37;background:linear-gradient(150deg,#393f4f,#282c37);position:relative}.landing-page .header-wrapper.compact{background:#282c37;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec}.landing-page .header-wrapper.compact .hero .heading a{color:#2b90d9;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:flex;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:flex;justify-content:center;align-items:center;color:#dde3ec;text-decoration:none;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#ecf0f4}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#1f232b;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:flex;flex-direction:column;justify-content:space-between}.landing-page .about-short{background:#1f232b;padding:50px 0 30px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#dde3ec}.landing-page .about-short a{color:#2b90d9;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#1f232b;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:wrap;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 .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 #mastodon-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#282c37;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:#ecf0f4}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#dde3ec}.landing-page__short-description h1 small span{color:#ecf0f4}.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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#17191f}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#fff;width:100%;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#fff;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#ecf0f4;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#c2cede;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:30px 0 40px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:flex;padding:10px 0;justify-content:space-between}.landing-page .features-list .features-list__row .visual{flex:0 0 auto;display:flex;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#dde3ec;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#dde3ec}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#c2cede}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#c2cede}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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 .header .links{padding-top:15px;background:#1f232b}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:flex;flex-flow:row wrap;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#17191f;width:100%;border-radius:0;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:flex;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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 #282c37;text-align:left;background:#1f232b}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #282c37;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:#282c37}.table a{color:#2b90d9;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:transparent}.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:#282c37;border-top:1px solid #17191f;border-bottom:1px solid #17191f}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #17191f}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #17191f}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:\"mastodon-font-monospace\",monospace}button.table-action-link{background:transparent;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:#dde3ec;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__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 #17191f;background:#282c37;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #17191f;border-top:0;background:#1f232b}.batch-table__row:hover{background:#242731}.batch-table__row:nth-child(2n){background:#282c37}.batch-table__row:nth-child(2n):hover{background:#2c313d}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#282c37;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:#dde3ec;text-decoration:none;transition:all .2s linear;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:#1d2028;transition:all .1s linear}.admin-wrapper .sidebar ul a.selected{background:#242731;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#1f232b;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:#2b5fd9;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#416fdd}.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:#ecf0f4;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #393f4f;margin-bottom:40px}.admin-wrapper .content h3{color:#ecf0f4;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:#dde3ec;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #393f4f}.admin-wrapper .content h6{font-size:16px;color:#ecf0f4;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#fff;font-weight:500}.admin-wrapper .content .directory__tag a{box-shadow:none}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#fff;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#ecf0f4;margin-bottom:20px}.admin-wrapper .content>p strong{color:#fff;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(96,105,132,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#dde3ec}.admin-wrapper .content .muted-hint a{color:#2b90d9}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;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:#dde3ec;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #282c37}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #333846}.filters .filter-subset a.selected{color:#2b90d9;border-bottom:2px solid #2b5fd9}.flavour-screen{display:block;margin:10px auto;max-width:100%}.flavour-description{display:block;font-size:16px;margin:10px 0}.flavour-description>p{margin:10px 0}.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:#ecf0f4}.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:#2b90d9;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:#282c37;color:#dde3ec;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:#c2cede}.log-entry__extras{background:#353a49;border-radius:0 0 4px 4px;padding:10px;color:#dde3ec;font-family:\"mastodon-font-monospace\",monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#c2cede}.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:#2b5fd9}.log-entry .target,.log-entry .username,.log-entry a{color:#ecf0f4;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#ecf0f4}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#ecf0f4}.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 #2b5fd9}.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:#dde3ec}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#c2cede}.report-card{background:#282c37;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:#dde3ec;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:#f7f9fb}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #1f232b}.report-card__summary__item:hover{background:#2c313d}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#dde3ec}.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:#c2cede;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:#dde3ec}.one-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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:#313543;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:#393f4f}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#fff;font-family:mastodon-font-display,sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#dde3ec;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:#d9e1e8;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(19,20,25,0),#131419)}body.rtl .simple_form select{background:#131419 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 #mastodon-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);-webkit-transform:scale(.71);transform:scale(.71)}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:1}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:1}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/skins/vanilla/contrast/common.js b/priv/static/packs/skins/vanilla/contrast/common.js
new file mode 100644
index 000000000..f6c38bc92
Binary files /dev/null and b/priv/static/packs/skins/vanilla/contrast/common.js differ
diff --git a/priv/static/packs/skins/vanilla/contrast/common.js.map b/priv/static/packs/skins/vanilla/contrast/common.js.map
new file mode 100644
index 000000000..2464757dd
Binary files /dev/null and b/priv/static/packs/skins/vanilla/contrast/common.js.map differ
diff --git a/priv/static/packs/skins/vanilla/mastodon-light/common.css b/priv/static/packs/skins/vanilla/mastodon-light/common.css
new file mode 100644
index 000000000..9a60575ad
Binary files /dev/null and b/priv/static/packs/skins/vanilla/mastodon-light/common.css differ
diff --git a/priv/static/packs/skins/vanilla/mastodon-light/common.css.map b/priv/static/packs/skins/vanilla/mastodon-light/common.css.map
new file mode 100644
index 000000000..0ca17bff7
--- /dev/null
+++ b/priv/static/packs/skins/vanilla/mastodon-light/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/skins/vanilla/mastodon-light/common.scss"],"names":[],"mappings":"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","file":"skins/vanilla/mastodon-light/common.css","sourcesContent":["@charset \"UTF-8\";@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:\"mastodon-font-monospace\";src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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:#ccd7e0 transparent}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#ccd7e0;border:0 #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#c6d2dc}::-webkit-scrollbar-thumb:active{background:#ccd7e0}::-webkit-scrollbar-track{border:0 #fff;border-radius:0;background:hsla(0,0%,100%,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#d9e1e8}::-webkit-scrollbar-corner{background:transparent}body{font-family:\"mastodon-font-sans-serif\",sans-serif;background:#f2f5f7;font-size:13px;line-height:18px;font-weight:400;color:#000;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,\"mastodon-font-sans-serif\",sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#d9e1e8}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 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:center;justify-content:center;outline:0!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:400px){.logo-container{margin:30px auto 20px}}.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:mastodon-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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#c0cdd9;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;box-shadow:none;z-index:110}}.public-layout .header>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:stretch;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:stretch;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#b3c3d1}.public-layout .header .nav-link{display:flex;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#282c37;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}@media screen and (max-width:550px){.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#a6b9c9;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:#99afc2}.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.inactive .logo-button svg path:last-child{fill:#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:mastodon-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:transparent;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}.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{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#6d8ca7}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#6d8ca7}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#282c37}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#6d8ca7}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#6d8ca7}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#60829f}.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%;height:167px;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:transparent;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,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#d9e1e8;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;min-height:100%}.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{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 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;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 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}@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:\"mastodon-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 .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:#282c37}.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:#282c37}.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{-webkit-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,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{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 .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.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)}.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 p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:\"mastodon-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:\"mastodon-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:transparent;border:0;padding:10px;font-size:14px;font-family:\"mastodon-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}.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}.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:#282c37;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:#444b5d;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}.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}.button.logo-button svg path:first-child{fill:#000}.button.logo-button svg path:last-child{fill:#2b5fd9}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#204bb1}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#204bb1}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button.disabled i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}.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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#204bb1;transition:all .2s ease-out}.button--destructive{transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;transition:none}.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,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.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:transparent;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--block{display:block;width:100%}.column__wrapper{display:flex;flex:1 1 auto;position:relative}.icon-button{display:inline-block;padding:0;color:#606984;border:none;background:transparent;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:#282c37}.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:#282c37;border:none;background:transparent;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}.dropdown-menu,.invisible{position:absolute}.invisible{font-size:0;line-height:0;display:inline-block;width:0;height:0}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:\"…\"}.compose-form{padding:10px}.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 .compose-form__autosuggest-wrapper{position:relative}.compose-form .compose-form__autosuggest-wrapper .emoji-picker-dropdown{position:absolute;right:5px;top:5px}.compose-form .autosuggest-textarea,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:47px;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:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{height:100px!important;resize:vertical}}.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;padding:5px;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__upload{flex:1 1 0;min-width:40%;margin:5px}.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:#282c37;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:#191b22}.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 input{background:transparent;color:#282c37;border:0;padding:0;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description input:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:.75;color:#282c37}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder{opacity:.75;color:#282c37}.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:.75;color:#282c37}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:.75;color:#282c37}.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:140px;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}.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:flex}.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:\"mastodon-font-sans-serif\",sans-serif;font-size:14px;font-weight:600;color:#282c37}.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}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.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:#9bcbed;padding:10px}.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;white-space:pre-wrap;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}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:0}.reply-indicator__content a,.status__content a{color:#d8a070;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:300px}.status__content__read-more-button{display:block;font-size:15px;line-height:20px;color:#214fba;border:0;background:transparent;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:transparent;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:transparent}.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}.notification-favourite .status.status-direct{background:transparent}.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}.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 .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:8px}.status__action-bar__counter{display:inline-flex;margin-right:11px;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:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#000;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;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-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.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:4px;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:4px;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:4px;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:18px;padding:10px;white-space:nowrap}.account__header{flex:0 0 auto;background:#ccd7e0;text-align:center;background-size:cover;background-position:50%;position:relative}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#282c37}.account__header>div{background:rgba(204,215,224,.9);padding:20px 10px}.account__header .account__header__content{color:#282c37}.account__header .account__header__display-name{color:#000;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#2b5fd9;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.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__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}.account__header__display-name .emojione{width:25px;height:25px}.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__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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}.muted .status__content,.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:#282c37;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;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.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/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;-webkit-transform:scaleX(0) translate(-100%);transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;-webkit-transform:scale(1) translate(0);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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #393f4f;margin:5px 7px 6px;height:0}.dropdown-menu{background:#282c37;padding:4px 0;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4);z-index:9999}.dropdown-menu ul{list-style:none}.dropdown-menu.left{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.dropdown-menu.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.dropdown-menu.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.dropdown-menu.right{-webkit-transform-origin:0 50%;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:#282c37}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-7px;border-width:5px 7px 0;border-top-color:#282c37}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-7px;border-width:0 7px 5px;border-bottom-color:#282c37}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#282c37}.dropdown-menu__item 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-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#2b5fd9;color:#282c37;outline:0}.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}.columns-area{display:flex;flex:1 1 auto;flex-direction:row;justify-content:flex-start;overflow-x:auto;position:relative}.columns-area.unscrollable{overflow-x:hidden}@media screen and (min-width:360px){.columns-area{padding:10px}.react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.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>.scrollable{background:#d9e1e8;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.ui{flex:0 0 auto;flex-direction:column;width:100%;height:100%;background:#eff3f5}.drawer,.ui{display:flex}.drawer{width:330px;box-sizing:border-box;flex-direction:column;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:360px){.tabs-bar{margin:10px 10px 0}.getting-started__trends,.search{margin-bottom:10px}.getting-started__panel{margin:10px 0}.column,.drawer{min-width:330px}}@media screen and (max-width:630px){.column,.drawer{width:100%;padding:0}.columns-area{flex-direction:column}.autosuggest-textarea__textarea,.search__input{font-size:16px}}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{flex:1 1 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}}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#b0c0cf;flex-direction:column;overflow-y:auto;width:100%;height:100%;border-radius:2px}.drawer__inner.darker{background:#d9e1e8}.drawer__inner__mastodon{background:#b0c0cf url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;flex:1;min-height:47px}.drawer__inner__mastodon>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}.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;border-radius:2px}.drawer__header a{transition:background .1s ease-in}.drawer__header a:hover{background:#cfd9e2;transition:background .2s ease-out}.tabs-bar{display:flex;background:#c0cdd9;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;flex:1 1 auto;padding:15px 10px;color:#000;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #c0cdd9;transition:all 50ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #2b5fd9;color:#2b5fd9}@media screen and (min-width:631px){.tabs-bar__link:active,.tabs-bar__link:focus,.tabs-bar__link:hover{background:#adbecd}}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width:600px){.tabs-bar__link span{display:inline}}@media screen and (min-width:631px){.tabs-bar{display:none}}.scrollable{overflow-y:scroll;overflow-x:hidden;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}.scrollable--flex{display:flex;flex-direction:column}.scrollable__append{flex:1 1 auto;position:relative;min-height:120px}@supports (display:grid){.scrollable.fullscreen{contain:none}}.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:rgba(255,255,255,0);-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:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#f9fafb}.react-toggle--checked .react-toggle-track{background-color:#2b5fd9}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#204bb1}.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{transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;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}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#2b5fd9}.column-link{background:#c0cdd9;color:#000;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#b6c5d3}.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}.flex-spacer{flex:1 1 auto}.getting-started{color:#444b5d;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.getting-started__footer,.getting-started__panel,.getting-started__wrapper{height:-webkit-min-content;height:-moz-min-content;height:min-content}.getting-started__footer,.getting-started__panel{padding:20px 10px 10px;flex-grow:0}.getting-started__footer ul,.getting-started__panel ul{margin-bottom:10px}.getting-started__footer ul li,.getting-started__panel ul li{display:inline}.getting-started__footer p,.getting-started__panel p{font-size:13px}.getting-started__footer p a,.getting-started__panel p a{color:#444b5d;text-decoration:underline}.getting-started__footer a,.getting-started__panel a{text-decoration:none;color:#282c37}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover,.getting-started__panel a:active,.getting-started__panel a:focus,.getting-started__panel a:hover{text-decoration:underline}.getting-started__footer,.getting-started__wrapper{color:#444b5d}.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}}.getting-started__scrollable{max-height:100%;overflow-y:auto}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#c0cdd9;border:1px solid #e6ebf0}.setting-text{color:#282c37;background:transparent;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%}.reduce-motion button.icon-button i.fa-retweet{color:#606984;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#2b5fd9}.status-card{display:flex;font-size:14px;border:1px solid #c0cdd9;border-radius:4px;color:#444b5d;margin-top:14px;text-decoration:none;overflow:hidden}.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:4px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#000;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.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:#282c37;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#282c37}.status-card__host{display:block;margin-top:5px;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__image{flex:0 0 100px;background:#c0cdd9;position:relative}.status-card__image>.fa{font-size:21px;position:absolute;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:50%;left:50%;-webkit-transform:translate(-50%,-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{border-color:#ccd7e0}.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 60px}a.status-card.compact:hover{background-color:#ccd7e0}.status-card__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-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:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#444b5d}.regeneration-indicator__label span{font-size:15px;font-weight:400}.column-header__wrapper{position:relative;flex:0 0 auto}.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:#ccd7e0;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden;border-top-left-radius:2px;border-top-right-radius:2px}.column-header>button{margin:0;border:none;padding:15px 0 15px 15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.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}.column-header__links .text-btn{margin-right:10px}.column-header__button{background:#ccd7e0;border:0;color:#282c37;cursor:pointer;font-size:16px;padding:0 15px}.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:transparent;border:0;border-top:1px solid #b3c3d1;margin:10px 0}.column-header__collapsible-inner{background:#c0cdd9;padding:15px}.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}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-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{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.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__section .column-settings__hashtag-select__control{outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#d9e1e8;color:#282c37;font-size:14px;margin:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner{border:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner,.column-settings__section .column-settings__hashtag-select__control:active,.column-settings__section .column-settings__hashtag-select__control:focus{outline:0!important}.column-settings__section .column-settings__hashtag-select__control:focus{background:#ccd7e0}@media screen and (max-width:600px){.column-settings__section .column-settings__hashtag-select__control{font-size:16px}}.column-settings__section .column-settings__hashtag-select__multi-value{background:#c0cdd9}.column-settings__section .column-settings__hashtag-select__input,.column-settings__section .column-settings__hashtag-select__multi-value__label{color:#282c37}.column-settings__section .column-settings__hashtag-select__dropdown-indicator,.column-settings__section .column-settings__hashtag-select__indicator-separator{display:none}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#000;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:hsla(0,0%,100%,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.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:20px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.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%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{-webkit-transform-origin:center center;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{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{-webkit-transform-origin:50% 100%;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}.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:transparent}.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}.privacy-dropdown__dropdown.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{-webkit-transform-origin:50% 0;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:10px 30px 10px 10px;outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#d9e1e8;color:#282c37;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#ccd7e0}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#282c37;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);color:#606984;cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#51596f}.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}.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}.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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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{background:#17191f;color:#000;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;flex-direction:column}.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;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#282c37}.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}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.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:#000}@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{max-height:80vh;max-width:80vw}.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}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#000;display:flex;padding:12px 16px;font-size:15px;align-items:center;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:#2b5fd9;color:#000}.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-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 .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 .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__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}.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}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{margin-top:32px}.media-gallery__audio audio{width:100%}.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.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#282c37;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img{-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.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;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.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%;-webkit-transform:translateY(-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%;-webkit-transform:translateY(-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:transparent;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__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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.account-gallery__container{display:flex;justify-content:center;flex-wrap:wrap;padding:2px}.account-gallery__item{flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#fff;background-size:cover;background-position:50%;position:absolute;color:#282c37;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#282c37}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:hsla(0,0%,100%,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-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:#282c37}.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;-webkit-transform:translateX(-50%);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}::-webkit-scrollbar-thumb{border-radius:0}.search-popout{background:#fff;border-radius:4px;padding:10px 14px 14px;margin-top:10px;color:#444b5d;box-shadow:2px 4px 15px rgba(0,0,0,.4)}.search-popout h4{text-transform:uppercase;color:#444b5d;font-size:13px;font-weight:500;margin-bottom:10px}.search-popout li{padding:4px 0}.search-popout ul{margin-bottom:10px}.search-popout em{font-weight:500;color:#000}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,-webkit-transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s,-webkit-transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s,-webkit-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;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;-webkit-transform:scaleX(0) translate(100%);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:\"mastodon-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-left:5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:hsla(0,0%,100%,.5)}.list-editor{background:#d9e1e8;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@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__pager{height:50vh}.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{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.list-adder{background:#d9e1e8;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#b0c0cf}.list-adder__lists{background:#b0c0cf;height:50vh;border-radius:0 0 8px 8px;overflow-y:auto}.list-adder .list{padding:10px;border-bottom:1px solid #c0cdd9}.list-adder .list__wrapper{display:flex}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/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}.floating-action-button{position:fixed;display:flex;justify-content:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#3869db;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#2251be}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.account__header .account__header__fields{font-size:14px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0;border-top:0}.account__header .account__header__fields dl{border-top:1px solid #ccd7e0;border-bottom:0;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#282c37;background:#e6ebf0;width:120px;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{flex:1 1 auto;color:#000;background:#d9e1e8}.account__header .account__header__fields dd.verified{border:1px solid rgba(60,117,77,.5);background:rgba(60,117,77,.25)}.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 strong{font-weight:500}.trends__item__name a{color:#282c37;text-decoration:none;font-size:14px;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}.introduction{display:flex;flex-direction:column;justify-content:center;align-items:center}@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{border-top:2px solid #2b5fd9}.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:transparent;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}.modal-layout{background:#d9e1e8 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}.modal-layout__mastodon{display:flex;flex:1;flex-direction:column;justify-content:flex-end}.modal-layout__mastodon>*{flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.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:\"mastodon-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:\"mastodon-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{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.rich-formatting h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.rich-formatting h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.rich-formatting h2{font-family:mastodon-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:mastodon-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:mastodon-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:\"mastodon-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-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:mastodon-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 .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:100%}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:flex;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(176,192,207,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#d9e1e8;font-size:12px;font-weight:500;color:#282c37;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:\"mastodon-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 .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#282c37;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#2b5fd9;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#131419}.landing-page h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#282c37}.landing-page h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#131419}.landing-page h2{font-family:mastodon-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:mastodon-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:mastodon-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 .container-alt{width:100%;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#d9e1e8;background:linear-gradient(150deg,#c0cdd9,#d9e1e8);position:relative}.landing-page .header-wrapper.compact{background:#d9e1e8;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37}.landing-page .header-wrapper.compact .hero .heading a{color:#2b5fd9;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:flex;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:flex;justify-content:center;align-items:center;color:#282c37;text-decoration:none;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#282c37}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#e6ebf0;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:flex;flex-direction:column;justify-content:space-between}.landing-page .about-short{background:#e6ebf0;padding:50px 0 30px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#282c37}.landing-page .about-short a{color:#2b5fd9;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.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:wrap;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 .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 #mastodon-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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#f2f5f7}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#000;width:100%;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#000;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#282c37;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#444b5d;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:30px 0 40px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:flex;padding:10px 0;justify-content:space-between}.landing-page .features-list .features-list__row .visual{flex:0 0 auto;display:flex;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#282c37;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#282c37}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#444b5d}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#444b5d}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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 .header .links{padding-top:15px;background:#e6ebf0}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:flex;flex-flow:row wrap;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#f2f5f7;width:100%;border-radius:0;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:flex;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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:transparent}.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-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:\"mastodon-font-monospace\",monospace}button.table-action-link{background:transparent;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:#282c37;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__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}.batch-table__row{border:1px solid #f2f5f7;border-top:0;background:#e6ebf0}.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 .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.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:#282c37;text-decoration:none;transition:all .2s linear;border-radius:4px 0 0 4px}.admin-wrapper .sidebar ul a i.fa{margin-right:5px}.admin-wrapper .sidebar ul a:hover{color:#000;background-color:#e9eef2;transition:all .1s linear}.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:#282c37;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{box-shadow:none}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#000;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#282c37;margin-bottom:20px}.admin-wrapper .content>p strong{color:#000;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:#282c37}.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}@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:#282c37;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #d9e1e8}.filters .filter-subset a:hover{color:#000;border-bottom:2px solid #c9d4de}.filters .filter-subset a.selected{color:#2b5fd9;border-bottom:2px solid #2b5fd9}.flavour-screen{display:block;margin:10px auto;max-width:100%}.flavour-description{display:block;font-size:16px;margin:10px 0}.flavour-description>p{margin:10px 0}.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:\"mastodon-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;overflow:hidden;text-overflow:ellipsis}.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:mastodon-font-display,sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#282c37;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 #mastodon-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);-webkit-transform:scale(.71);transform:scale(.71)}.button,.button.button-alternative-2{color:#fff}.column>.scrollable{background:#fff}.drawer__inner{background:#d9e1e8}.drawer__inner__mastodon{background:#d9e1e8 url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto}.compose-form .compose-form__modifiers .compose-form__upload__actions .icon-button{color:#ededed}.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:#fff}.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:-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 ul 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:#204bb1}.empty-column-indicator,.error-column{color:#000}.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}.activity-stream .status.light .display-name strong,.activity-stream .status.light .status__content{color:#000}.accounts-grid .account-grid-card .controls .icon-button{color:#282c37}.accounts-grid .account-grid-card .name a{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}.reply-indicator__content a,.status__content a{color:#2b5fd9}.button.logo-button{color:#fff}.button.logo-button svg path:first-child{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,.hero-widget,.landing-page__information.contact-widget,.memoriam-widget,.moved-account-widget,.nothing-here{box-shadow:none}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/skins/vanilla/mastodon-light/common.js b/priv/static/packs/skins/vanilla/mastodon-light/common.js
new file mode 100644
index 000000000..0e650b3fe
Binary files /dev/null and b/priv/static/packs/skins/vanilla/mastodon-light/common.js differ
diff --git a/priv/static/packs/skins/vanilla/mastodon-light/common.js.map b/priv/static/packs/skins/vanilla/mastodon-light/common.js.map
new file mode 100644
index 000000000..1730e2ceb
Binary files /dev/null and b/priv/static/packs/skins/vanilla/mastodon-light/common.js.map differ
diff --git a/priv/static/packs/skins/vanilla/win95/common.css b/priv/static/packs/skins/vanilla/win95/common.css
new file mode 100644
index 000000000..b059542b7
Binary files /dev/null and b/priv/static/packs/skins/vanilla/win95/common.css differ
diff --git a/priv/static/packs/skins/vanilla/win95/common.css.map b/priv/static/packs/skins/vanilla/win95/common.css.map
new file mode 100644
index 000000000..ad4d34422
--- /dev/null
+++ b/priv/static/packs/skins/vanilla/win95/common.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["webpack:///./app/javascript/skins/vanilla/win95/common.scss"],"names":[],"mappings":"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","file":"skins/vanilla/win95/common.css","sourcesContent":["@charset \"UTF-8\";@font-face{font-family:premillenium;src:url(/packs/MSSansSerif-a678e38bb3e20736cbed7a6925f24666.ttf) format(\"truetype\")}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-italic-webfont-50efdad8c62f5f279e3f4f1f63a4f9bc.woff2) format(\"woff2\"),url(/packs/roboto-italic-webfont-927fdbf83b347742d39f0b00f3cfa99a.woff) format(\"woff\"),url(/packs/roboto-italic-webfont-4c71bd4a88468ea62f92e55cb4e33aef.ttf) format(\"truetype\"),url(/packs/roboto-italic-webfont-d88a9e8476fabedea3b87fd0ba2df3b3.svg#roboto-italic-webfont) format(\"svg\");font-weight:400;font-style:italic}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-bold-webfont-f633cb5c651ba4d50791e1adf55d3c18.woff2) format(\"woff2\"),url(/packs/roboto-bold-webfont-df0f5fd966b99c0f503ae50c064fbba8.woff) format(\"woff\"),url(/packs/roboto-bold-webfont-5bacc29257521cc73732f2597cc19c4b.ttf) format(\"truetype\"),url(/packs/roboto-bold-webfont-4cbd1966fc397282fa35d69070782b80.svg#roboto-bold-webfont) format(\"svg\");font-weight:700;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-medium-webfont-69c55fc2fe77d38934ea98dc31642ce6.woff2) format(\"woff2\"),url(/packs/roboto-medium-webfont-6484794cd05bbf97f3f0c730cec21665.woff) format(\"woff\"),url(/packs/roboto-medium-webfont-7f0e4c7727a4bc5f37d95d804c6e0348.ttf) format(\"truetype\"),url(/packs/roboto-medium-webfont-f407ec033f15172c3c4acf75608dd11d.svg#roboto-medium-webfont) format(\"svg\");font-weight:500;font-style:normal}@font-face{font-family:\"mastodon-font-sans-serif\";src:local(\"Roboto\"),url(/packs/roboto-regular-webfont-3ec24f953ed5e859a6402cb3c030ea8b.woff2) format(\"woff2\"),url(/packs/roboto-regular-webfont-b06ad091cf548c38401f3e5883cb36a2.woff) format(\"woff\"),url(/packs/roboto-regular-webfont-42a434b9f3c8c7a57b83488483b2d08e.ttf) format(\"truetype\"),url(/packs/roboto-regular-webfont-77dc6a0145954a963b95d30773543105.svg#roboto-regular-webfont) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:\"mastodon-font-monospace\";src:local(\"Roboto Mono\"),url(/packs/robotomono-regular-webfont-6c1ce30b90ee993b22618ec489585594.woff2) format(\"woff2\"),url(/packs/robotomono-regular-webfont-09e0ef66c9dee2fa2689f6e5f2437670.woff) format(\"woff\"),url(/packs/robotomono-regular-webfont-0ba95b3b2370e6bf1dcdb20aa3a54ff2.ttf) format(\"truetype\"),url(/packs/robotomono-regular-webfont-51e9ccf8c829f4894a7e5a0883e864fc.svg#roboto_monoregular) format(\"svg\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Regular-080422d4c1328f3407818d25c86cce51.woff2) format(\"woff2\"),url(/packs/Montserrat-Regular-b0322f2faed575161a052b5af953251a.woff) format(\"woff\"),url(/packs/Montserrat-Regular-6a18f75e59e23e7f23b8a4ef70d748cd.ttf) format(\"truetype\");font-weight:400;font-style:normal}@font-face{font-family:mastodon-font-display;src:local(\"Montserrat\"),url(/packs/Montserrat-Medium-5f797490f806b3b229299f0a66de89c9.ttf) format(\"truetype\");font-weight:500;font-style:normal}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:#192432 transparent}::-webkit-scrollbar{width:12px;height:12px}::-webkit-scrollbar-thumb{background:#192432;border:0 #fff;border-radius:50px}::-webkit-scrollbar-thumb:hover{background:#1c2938}::-webkit-scrollbar-thumb:active{background:#192432}::-webkit-scrollbar-track{border:0 #fff;border-radius:0;background:rgba(0,0,0,.1)}::-webkit-scrollbar-track:active,::-webkit-scrollbar-track:hover{background:#121a24}::-webkit-scrollbar-corner{background:transparent}body{font-family:\"mastodon-font-sans-serif\",sans-serif;background:#040609;line-height:18px;font-weight:400;color:#fff;text-rendering:optimizelegibility;-webkit-font-feature-settings:\"kern\";font-feature-settings:\"kern\";-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}body.system-font{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,\"mastodon-font-sans-serif\",sans-serif}body.app-body{position:absolute;width:100%;height:100%;padding:0;background:#121a24}body.app-body.with-modals--active{overflow-y:hidden}body.lighter{background:#121a24}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:#192432;margin:0;padding-bottom:0}body.embed .container{position:absolute;width:100%;height:100%;overflow:hidden}body.admin{background:#0b1016;position:fixed}body.admin,body.error{width:100%;height:100%;padding:0}body.error{position:absolute;text-align:center;color:#9baec8;background:#121a24;display:flex;justify-content:center;align-items:center}body.error .dialog{vertical-align:middle;margin:20px}body.error .dialog 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:center;justify-content:center;outline:0!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:400px){.logo-container{margin:30px auto 20px}}.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:mastodon-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:#d9e1e8;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}}@media screen and (max-width:415px){.public-layout{padding-top:48px}}.public-layout .container{max-width:960px}@media screen and (max-width:415px){.public-layout .container{padding:0}}.public-layout .header{background:#202e3f;box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:4px;height:48px;margin:10px 0;display:flex;align-items:stretch;justify-content:center;flex-wrap:nowrap;overflow:hidden}@media screen and (max-width:415px){.public-layout .header{position:fixed;width:100%;top:0;left:0;margin:0;border-radius:0;box-shadow:none;z-index:110}}.public-layout .header>div{flex:1 1 33.3%;min-height:1px}.public-layout .header .nav-left{display:flex;align-items:stretch;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:stretch;justify-content:flex-end;flex-wrap:nowrap}.public-layout .header .brand{display:block;padding:15px}.public-layout .header .brand img{display:block;height:18px;width:auto;position:relative;bottom:-2px}@media screen and (max-width:415px){.public-layout .header .brand img{height:20px}}.public-layout .header .brand:active,.public-layout .header .brand:focus,.public-layout .header .brand:hover{background:#26374d}.public-layout .header .nav-link{display:flex;align-items:center;padding:0 1rem;font-size:12px;font-weight:500;text-decoration:none;color:#9baec8;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}@media screen and (max-width:550px){.public-layout .header .nav-link.optional{display:none}}.public-layout .header .nav-button{background:#2d415a;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:#344b68}.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:#d9e1e8}.public-layout .public-account-header.inactive .logo-button svg path:last-child{fill:#d9e1e8}.public-layout .public-account-header__image{border-radius:4px 4px 0 0;overflow:hidden;height:300px;position:relative;background:#000}.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:#192432;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 #192432;background:#040609}@media screen and (max-width:600px){.public-layout .public-account-header__bar{margin-top:0;background:#192432;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:#9baec8}}.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:#9baec8;padding:10px;border-right:1px solid #192432;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 #9baec8;opacity:.5;transition:all .4s ease}.public-layout .public-account-header__tabs__tabs .counter.active:after{border-bottom:4px solid #00007f;opacity:1}.public-layout .public-account-header__tabs__tabs .counter.active.inactive:after{border-bottom-color:#d9e1e8}.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:mastodon-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:transparent;margin:0 -5px}.public-layout .public-account-header__extra .public-account-bio .account__header__fields{border-top:1px solid #26374d}.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:#9baec8}.public-layout .public-account-header__extra__links a{display:inline-block;color:#9baec8;text-decoration:none;padding:15px}.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:#202e3f;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:#0000a8}.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:#9baec8}.public-layout .public-account-bio .roles{padding-bottom:0}.public-layout .static-icon-button{color:#404040;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 #202e3f}.public-layout .card-grid>div{width:100%;padding:0;margin-bottom:0;border-bottom:1px solid #202e3f}.public-layout .card-grid>div:last-child{border-bottom:0}.public-layout .card-grid>div .card__bar{background:#121a24}.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:#192432}}.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{text-align:left;padding-top:20px;padding-bottom:60px;font-size:12px;color:#4c6d98}@media screen and (max-width:415px){.public-layout .footer{padding-left:20px;padding-right:20px}}.public-layout .footer .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 1fr 2fr 1fr 1fr}.public-layout .footer .grid .column-0{grid-column:1;grid-row:1;min-width:0}.public-layout .footer .grid .column-1{grid-column:2;grid-row:1;min-width:0}.public-layout .footer .grid .column-2{grid-column:3;grid-row:1;min-width:0;text-align:center}.public-layout .footer .grid .column-2 h4 a{color:#4c6d98}.public-layout .footer .grid .column-3{grid-column:4;grid-row:1;min-width:0}.public-layout .footer .grid .column-4{grid-column:5;grid-row:1;min-width:0}@media screen and (max-width:690px){.public-layout .footer .grid{grid-template-columns:1fr 2fr 1fr}.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1{grid-column:1}.public-layout .footer .grid .column-1{grid-row:2}.public-layout .footer .grid .column-2{grid-column:2}.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{grid-column:3}.public-layout .footer .grid .column-4{grid-row:2}}@media screen and (max-width:600px){.public-layout .footer .grid .column-1{display:block}}@media screen and (max-width:415px){.public-layout .footer .grid .column-0,.public-layout .footer .grid .column-1,.public-layout .footer .grid .column-3,.public-layout .footer .grid .column-4{display:none}}.public-layout .footer h4{text-transform:uppercase;font-weight:700;margin-bottom:8px;color:#9baec8}.public-layout .footer h4 a{color:inherit;text-decoration:none}.public-layout .footer ul a{text-decoration:none;color:#4c6d98}.public-layout .footer ul a:active,.public-layout .footer ul a:focus,.public-layout .footer ul a:hover{text-decoration:underline}.public-layout .footer .brand svg{display:block;height:36px;width:auto;margin:0 auto}.public-layout .footer .brand svg path{fill:#4c6d98}.public-layout .footer .brand:active svg path,.public-layout .footer .brand:focus svg path,.public-layout .footer .brand:hover svg path{fill:#5377a5}.compact-header h1{font-size:24px;line-height:28px;color:#9baec8;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:#d9e1e8}.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%;height:167px;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:#121a24;padding:20px;border-radius:0 0 4px 4px;font-size:15px;color:#9baec8;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:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.hero-widget__text a{color:#d9e1e8;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:#9baec8}.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,.contact-widget,.landing-page__information.contact-widget{padding:20px;border-radius:4px;background:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2)}.contact-widget,.landing-page__information.contact-widget{box-sizing:border-box;min-height:100%}.contact-widget{font-size:15px;color:#9baec8;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:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2);color:#d9e1e8;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:#9baec8}.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:#9baec8;margin-bottom:10px}.memoriam-widget,.page-header{border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.2)}.page-header{background:#202e3f;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:#9baec8}@media screen and (max-width:415px){.page-header{margin-top:0;background:#192432}.page-header h1{font-size:24px}}.directory{background:#121a24;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{display:flex;align-items:center;justify-content:space-between;background:#121a24;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:#202e3f}.directory__tag.active a{background:#00007f;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:#9baec8}.directory__tag h4 small{display:block;font-weight:400;font-size:15px;margin-top:8px;color:#9baec8}.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:#00007f}.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;border:2px solid #121a24}.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 thead th{text-align:center;text-transform:uppercase;color:#9baec8;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 #202e3f}.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:#9baec8;font-weight:400;font-size:14px}@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 #2d415a}}.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:#9baec8}.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:#00007f}.notice-widget a:active,.notice-widget a:focus,.notice-widget a:hover{text-decoration:underline}code{font-family:\"mastodon-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 .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:#9baec8}.simple_form .hint a{color:#00007f}.simple_form .hint code{border-radius:3px;padding:.2em .4em;background:#000}.simple_form span.hint{display:block;font-size:12px;margin-top:4px}.simple_form p.hint{margin-bottom:15px;color:#9baec8}.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{-webkit-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:#010102;border:1px solid #000;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,.simple_form input[type=number]:focus:invalid,.simple_form input[type=password]:focus:invalid,.simple_form input[type=text]:focus:invalid,.simple_form textarea:focus:invalid{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:#00007f;background:#040609}.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 .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:#00007f;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:#009}.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:#006}.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:#010102 url(\"data:image/svg+xml;utf8,
\") no-repeat right 8px center/auto 16px;border:1px solid #000;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:#404040;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(1,1,2,0),#010102)}.flash-message{background:#202e3f;color:#9baec8;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 p{margin-bottom:15px}.flash-message .oauth-code{outline:0;box-sizing:border-box;display:block;width:100%;border:none;padding:10px;font-family:\"mastodon-font-monospace\",monospace;background:#121a24;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:#192432}.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:#9baec8;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:#00007f;text-transform:uppercase;text-decoration:none;font-weight:700}.quick-nav a:active,.quick-nav a:focus,.quick-nav a:hover{color:#0000a8}.follow-prompt,.oauth-prompt{margin-bottom:30px;color:#9baec8}.follow-prompt h2,.oauth-prompt h2{font-size:16px;margin-bottom:30px;text-align:center}.follow-prompt strong,.oauth-prompt strong{color:#d9e1e8;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:#d9e1e8;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}.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:#9baec8}.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:\"mastodon-font-monospace\",monospace}.input-copy{background:#010102;border:1px solid #000;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:transparent;border:0;padding:10px;font-size:14px;font-family:\"mastodon-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}.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:#202e3f}.card__img{height:130px;position:relative;background:#000;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:#192432;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:#040609}.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:#9baec8;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:#121a24;cursor:default;margin:0 10px}.pagination .gap{cursor:default}.pagination .newer,.pagination .older{text-transform:uppercase;color:#d9e1e8}.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:#233346}@media screen and (max-width:700px){.pagination{padding:30px 20px}.pagination .page{display:none}.pagination .newer,.pagination .older{display:inline-block}}.nothing-here{background:#121a24;box-shadow:0 0 15px rgba(0,0,0,.2);color:#9baec8;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:#d9e1e8;background-color:rgba(217,225,232,.1);border:1px solid rgba(217,225,232,.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:#26374d 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 #26374d}.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:#d9e1e8;background:rgba(4,6,9,.5)}.account__header__fields dd{flex:1 1 auto;color:#9baec8}.account__header__fields a{color:#00007f;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}.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:#121a24}.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:#202e3f}.button.logo-button{flex:0 auto;font-size:14px;background:#00007f;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}.button.logo-button svg path:first-child{fill:#fff}.button.logo-button svg path:last-child{fill:#00007f}.button.logo-button:active,.button.logo-button:focus,.button.logo-button:hover{background:#0000b2}.button.logo-button:active svg path:last-child,.button.logo-button:focus svg path:last-child,.button.logo-button:hover svg path:last-child{fill:#0000b2}.button.logo-button.button--destructive:active,.button.logo-button.button--destructive:focus,.button.logo-button.button--destructive:hover{background:#df405a}.button.logo-button.button--destructive:active svg path:last-child,.button.logo-button.button--destructive:focus svg path:last-child,.button.logo-button.button--destructive:hover svg path:last-child{fill:#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,
\")}button.icon-button i.fa-retweet:hover{background-image:url(\"data:image/svg+xml;utf8,
\")}button.icon-button.disabled i.fa-retweet{background-image:url(\"data:image/svg+xml;utf8,
\")}.app-body{-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.button{background-color:#00007f;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-transform:uppercase;text-decoration:none;text-overflow:ellipsis;transition:all .1s ease-in;white-space:nowrap;width:auto}.button:active,.button:focus,.button:hover{background-color:#0000b2;transition:all .2s ease-out}.button--destructive{transition:none}.button--destructive:active,.button--destructive:focus,.button--destructive:hover{background-color:#df405a;transition:none}.button:disabled{background-color:#9baec8;cursor:default}.button::-moz-focus-inner{border:0}.button::-moz-focus-inner,.button:active,.button:focus{outline:0!important}.button.button-alternative,.button.button-alternative-2,.button.button-primary,.button.button-secondary{font-size:16px;line-height:36px;height:auto;text-transform:none;padding:4px 16px}.button.button-alternative{color:#121a24;background:#9baec8}.button.button-alternative:active,.button.button-alternative:focus,.button.button-alternative:hover{background-color:#a8b9cf}.button.button-alternative-2{background:#404040}.button.button-alternative-2:active,.button.button-alternative-2:focus,.button.button-alternative-2:hover{background-color:#4a4a4a}.button.button-secondary{color:#9baec8;background:transparent;padding:3px 15px;border:1px solid #9baec8}.button.button-secondary:active,.button.button-secondary:focus,.button.button-secondary:hover{border-color:#a8b9cf;color:#a8b9cf}.button.button--block{display:block;width:100%}.column__wrapper{display:flex;flex:1 1 auto;position:relative}.icon-button{display:inline-block;color:#404040;border:none;background:transparent;cursor:pointer;transition:color .1s ease-in}.icon-button:active,.icon-button:focus,.icon-button:hover{color:#525252;transition:color .2s ease-out}.icon-button.disabled{color:#1f1f1f;cursor:default}.icon-button.active{color:#00007f}.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:#404040}.icon-button.inverted:active,.icon-button.inverted:focus,.icon-button.inverted:hover{color:#2e2e2e}.icon-button.inverted.disabled{color:#525252}.icon-button.inverted.active{color:#00007f}.icon-button.inverted.active.disabled{color:#0000c1}.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{border:none;background:transparent;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:#2e2e2e;transition:color .2s ease-out}.text-icon-button.disabled{color:#737373;cursor:default}.text-icon-button.active{color:#00007f}.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}.dropdown-menu,.invisible{position:absolute}.invisible{font-size:0;line-height:0;display:inline-block;width:0;height:0}.invisible img,.invisible svg{margin:0!important;border:0!important;padding:0!important;width:0!important;height:0!important}.ellipsis:after{content:\"…\"}.compose-form{padding:10px}.compose-form .compose-form__warning{color:#121a24;margin-bottom:10px;background:#9baec8;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:#121a24;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:#404040;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 .compose-form__autosuggest-wrapper{position:relative}.compose-form .compose-form__autosuggest-wrapper .emoji-picker-dropdown{position:absolute;right:5px;top:5px}.compose-form .autosuggest-textarea,.compose-form .spoiler-input{position:relative}.compose-form .spoiler-input{height:0;-webkit-transform-origin:bottom;transform-origin:bottom;opacity:0}.compose-form .spoiler-input.spoiler-input--visible{height:47px;opacity:1}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{display:block;box-sizing:border-box;width:100%;margin:0;color:#121a24;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:4px 4px 0 0;padding-bottom:0;padding-right:32px;resize:none}@media screen and (max-width:600px){.compose-form .autosuggest-textarea__textarea{height:100px!important;resize:vertical}}.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:#d9e1e8;border-radius:0 0 4px 4px;color:#121a24;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:#b9c8d5}.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:#404040}.compose-form .compose-form__modifiers{color:#121a24;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;padding:5px;flex-wrap:wrap}.compose-form .compose-form__modifiers .compose-form__upload{flex:1 1 0;min-width:40%;margin:5px}.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:#d9e1e8;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:#eff3f5}.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 input{background:transparent;color:#d9e1e8;border:0;padding:0;margin:0;width:100%;font-family:inherit;font-size:14px;font-weight:500}.compose-form .compose-form__modifiers .compose-form__upload-description input:focus{color:#fff}.compose-form .compose-form__modifiers .compose-form__upload-description input::-webkit-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input:-ms-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input::-ms-input-placeholder{opacity:.75;color:#d9e1e8}.compose-form .compose-form__modifiers .compose-form__upload-description input::placeholder{opacity:.75;color:#d9e1e8}.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:140px;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}.compose-form .compose-form__buttons-wrapper .compose-form__buttons{display:flex}.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:\"mastodon-font-sans-serif\",sans-serif;font-size:14px;font-weight:600;color:#404040}.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}.compose-form .compose-form__publish .compose-form__publish-button-wrapper{overflow:hidden;padding-top:10px}.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:#9baec8;padding:10px}.reply-indicator__header{margin-bottom:5px;overflow:hidden}.reply-indicator__cancel{float:right;line-height:24px}.reply-indicator__display-name{color:#121a24;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;white-space:pre-wrap;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}.reply-indicator__content p:last-child,.status__content p:last-child{margin-bottom:0}.reply-indicator__content a,.status__content a{color:#d8a070;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:#525252}.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:#404040}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#404040}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#525252;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:300px}.status__content__read-more-button{display:block;font-size:15px;line-height:20px;color:#0000a8;border:0;background:transparent;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:transparent;border:0;color:#121a24;font-weight:700;font-size:11px;padding:0 6px;text-transform:uppercase;line-height:20px;cursor:pointer;vertical-align:middle}.status__wrapper--filtered{color:#404040;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 #202e3f}.status__prepend-icon-wrapper{left:-26px;position:absolute}.focusable:focus{outline:0;background:#192432}.focusable:focus .status.status-direct{background:#26374d}.focusable:focus .status.status-direct.muted{background:transparent}.focusable:focus .detailed-status,.focusable:focus .detailed-status__action-bar{background:#202e3f}.status{padding:8px 10px 8px 68px;position:relative;min-height:54px;border-bottom:1px solid #202e3f;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:#202e3f;border-bottom-color:#26374d}.status.light .status__relative-time{color:#9baec8}.status.light .display-name strong,.status.light .status__display-name{color:#121a24}.status.light .display-name span{color:#9baec8}.status.light .status__content{color:#121a24}.status.light .status__content a{color:#00007f}.status.light .status__content a.status__content__spoiler-link{color:#fff;background:#9baec8}.status.light .status__content a.status__content__spoiler-link:hover{background:#b5c3d6}.notification-favourite .status.status-direct{background:transparent}.notification-favourite .status.status-direct .icon-button.disabled{color:#616161}.notification__relative_time,.status__relative-time{color:#404040;float:right;font-size:14px}.status__display-name{color:#404040}.status__info .status__display-name{display:block;max-width:100%;padding-right:25px}.status__info{font-size:15px}.status-check-box{border-bottom:1px solid #d9e1e8;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:#404040;padding:8px 0 2px;font-size:14px;position:relative}.status__prepend .status__display-name strong{color:#404040}.status__prepend>span{display:block;overflow:hidden;text-overflow:ellipsis}.status__action-bar{align-items:center;display:flex;margin-top:8px}.status__action-bar__counter{display:inline-flex;margin-right:11px;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:#404040}.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:#192432;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:#404040;font-size:14px;line-height:18px}.detailed-status__action-bar{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;display:flex;flex-direction:row;padding:10px 0}.detailed-status__link{color:inherit;text-decoration:none}.detailed-status__favorites,.detailed-status__reblogs{display:inline-block;font-weight:500;font-size:12px;margin-left:6px}.reply-indicator__content{color:#121a24;font-size:14px}.reply-indicator__content a{color:#404040}.domain{padding:10px;border-bottom:1px solid #202e3f}.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;border-bottom:1px solid #202e3f}.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:#9baec8;overflow:hidden;text-decoration:none;font-size:14px}.account__wrapper{display:flex}.account__avatar-wrapper{float:left;margin-left:12px;margin-right:12px}.account__avatar{border-radius:4px;background:transparent no-repeat;background-position:50%;background-clip:padding-box;position:relative}.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:4px;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:4px;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:4px;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:18px;padding:10px;white-space:nowrap}.account__header{flex:0 0 auto;background:#192432;text-align:center;background-size:cover;background-position:50%;position:relative}.account__header.inactive{opacity:.5}.account__header.inactive .account__header__avatar{-webkit-filter:grayscale(100%);filter:grayscale(100%)}.account__header.inactive .account__header__username{color:#d9e1e8}.account__header>div{background:rgba(25,36,50,.9);padding:20px 10px}.account__header .account__header__content{color:#d9e1e8}.account__header .account__header__display-name{color:#fff;display:inline-block;width:100%;font-size:20px;line-height:27px;font-weight:500;overflow:hidden;text-overflow:ellipsis}.account__header .account__header__username{color:#00007f;font-size:14px;font-weight:400;display:block;margin-bottom:10px;overflow:hidden;text-overflow:ellipsis}.account__disclaimer{padding:10px;border-top:1px solid #202e3f;color:#404040}.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__header__content{color:#9baec8;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}.account__header__display-name .emojione{width:25px;height:25px}.account__action-bar{border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;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 #202e3f;padding:10px 0;border-bottom:4px solid transparent}.account__action-bar__tab.active{border-bottom:4px solid #00007f}.account__action-bar__tab>span{display:block;text-transform:uppercase;font-size:11px;color:#9baec8}.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__header__avatar{background-size:90px 90px;display:block;height:90px;margin:0 auto 10px;overflow:hidden;width:90px}.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:#d9e1e8;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}.muted .status__content,.muted .status__content a,.muted .status__content p,.muted .status__display-name strong{color:#404040}.muted .status__avatar{opacity:.5}.muted a.status__content__spoiler-link{background:#404040;color:#121a24}.muted a.status__content__spoiler-link:hover{background:#525252;text-decoration:none}.notification__message{margin:0 10px 0 68px;padding:8px 0 0;cursor:default;color:#9baec8;font-size:15px;line-height:22px;position:relative}.notification__message .fa{color:#00007f}.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;white-space:nowrap}.display-name__html{font-weight:500}.display-name__account{font-size:14px}.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/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:#9baec8}.navigation-bar strong{color:#d9e1e8}.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;-webkit-transform:scaleX(0) translate(-100%);transform:scaleX(0) translate(-100%);opacity:0}.navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:auto;-webkit-transform:scale(1) translate(0);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}.dropdown{display:inline-block}.dropdown__content{display:none;position:absolute}.dropdown-menu__separator{border-bottom:1px solid #c0cdd9;margin:5px 7px 6px;height:0}.dropdown-menu{background:#d9e1e8;padding:4px 0;border-radius:4px;box-shadow:2px 4px 15px rgba(0,0,0,.4);z-index:9999}.dropdown-menu ul{list-style:none}.dropdown-menu.left{-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.dropdown-menu.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.dropdown-menu.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.dropdown-menu.right{-webkit-transform-origin:0 50%;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:#d9e1e8}.dropdown-menu__arrow.top{bottom:-5px;margin-left:-7px;border-width:5px 7px 0;border-top-color:#d9e1e8}.dropdown-menu__arrow.bottom{top:-5px;margin-left:-7px;border-width:0 7px 5px;border-bottom-color:#d9e1e8}.dropdown-menu__arrow.right{left:-5px;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#d9e1e8}.dropdown-menu__item a{font-size:13px;line-height:18px;display:block;padding:4px 14px;box-sizing:border-box;text-decoration:none;background:#d9e1e8;color:#121a24;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dropdown-menu__item a:active,.dropdown-menu__item a:focus,.dropdown-menu__item a:hover{background:#00007f;color:#d9e1e8;outline:0}.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:#d9e1e8;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:#d9e1e8;color:#121a24;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:#00007f;color:#d9e1e8}.dropdown__icon{vertical-align:middle}.columns-area{display:flex;flex:1 1 auto;flex-direction:row;justify-content:flex-start;overflow-x:auto;position:relative}.columns-area.unscrollable{overflow-x:hidden}@media screen and (min-width:360px){.columns-area{padding:10px}.react-swipeable-view-container .columns-area{height:calc(100% - 20px)!important}}.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>.scrollable{background:#121a24;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.ui{flex:0 0 auto;flex-direction:column;width:100%;height:100%;background:#06090c}.drawer,.ui{display:flex}.drawer{width:330px;box-sizing:border-box;flex-direction:column;overflow-y:hidden}.drawer__tab{display:block;flex:1 1 auto;padding:15px 5px 13px;color:#9baec8;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:360px){.tabs-bar{margin:10px 10px 0}.getting-started__trends,.search{margin-bottom:10px}.getting-started__panel{margin:10px 0}.column,.drawer{min-width:330px}}@media screen and (max-width:630px){.column,.drawer{width:100%;padding:0}.columns-area{flex-direction:column}.autosuggest-textarea__textarea,.search__input{font-size:16px}}@media screen and (min-width:631px){.columns-area{padding:0}.column,.drawer{flex:1 1 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}}.drawer__pager{flex-grow:1;position:relative}.drawer__inner,.drawer__pager{box-sizing:border-box;padding:0;overflow:hidden;display:flex}.drawer__inner{position:absolute;top:0;left:0;background:#283a50;flex-direction:column;overflow-y:auto;width:100%;height:100%;border-radius:2px}.drawer__inner.darker{background:#121a24}.drawer__inner__mastodon{background:#283a50 url('data:image/svg+xml;utf8,
') no-repeat bottom/100% auto;flex:1;min-height:47px}.drawer__inner__mastodon>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}.pseudo-drawer{background:#283a50;font-size:13px;text-align:left}.drawer__header{flex:0 0 auto;font-size:16px;background:#202e3f;margin-bottom:10px;display:flex;flex-direction:row;border-radius:2px}.drawer__header a{transition:background .1s ease-in}.drawer__header a:hover{background:#17212e;transition:background .2s ease-out}.tabs-bar{display:flex;background:#202e3f;flex:0 0 auto;overflow-y:auto}.tabs-bar__link{display:block;flex:1 1 auto;padding:15px 10px;color:#fff;text-decoration:none;text-align:center;font-size:14px;font-weight:500;border-bottom:2px solid #202e3f;transition:all 50ms linear}.tabs-bar__link .fa{font-weight:400;font-size:16px}.tabs-bar__link.active{border-bottom:2px solid #00007f;color:#00007f}@media screen and (min-width:631px){.tabs-bar__link:active,.tabs-bar__link:focus,.tabs-bar__link:hover{background:#2a3c54}}.tabs-bar__link span{margin-left:5px;display:none}@media screen and (min-width:600px){.tabs-bar__link span{display:inline}}@media screen and (min-width:631px){.tabs-bar{display:none}}.scrollable{overflow-y:scroll;overflow-x:hidden;flex:1 1 auto;-webkit-overflow-scrolling:touch;will-change:transform}.scrollable.optionally-scrollable{overflow-y:auto}@supports (display:grid){.scrollable{contain:strict}}.scrollable--flex{display:flex;flex-direction:column}.scrollable__append{flex:1 1 auto;position:relative;min-height:120px}@supports (display:grid){.scrollable.fullscreen{contain:none}}.column-back-button{background:#192432;color:#00007f;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:#192432;border:0;font-family:inherit;color:#00007f;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;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:rgba(0,0,0,0);-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:#121a24;transition:all .2s ease}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#010102}.react-toggle--checked .react-toggle-track{background-color:#00007f}.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#0000b2}.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{transition:all .5s cubic-bezier(.23,1,.32,1) 0ms;position:absolute;top:1px;left:1px;width:22px;height:22px;border:1px solid #121a24;border-radius:50%;background-color:#fafafa;box-sizing:border-box;transition:all .25s ease}.react-toggle--checked .react-toggle-thumb{left:27px;border-color:#00007f}.column-link{background:#202e3f;color:#fff;display:block;font-size:16px;padding:15px;text-decoration:none}.column-link:hover{background:#253549}.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:#121a24}.column-subheading{color:#404040;padding:8px 20px;text-transform:uppercase;cursor:default}.flex-spacer,.getting-started,.getting-started__wrapper{background:#121a24}.flex-spacer{flex:1 1 auto}.getting-started{color:#404040;border-bottom-left-radius:2px;border-bottom-right-radius:2px}.getting-started__footer,.getting-started__panel,.getting-started__wrapper{height:-webkit-min-content;height:-moz-min-content;height:min-content}.getting-started__footer,.getting-started__panel{padding:20px 10px 10px;flex-grow:0}.getting-started__footer ul,.getting-started__panel ul{margin-bottom:10px}.getting-started__footer ul li,.getting-started__panel ul li{display:inline}.getting-started__footer p,.getting-started__panel p{font-size:13px}.getting-started__footer p a,.getting-started__panel p a{color:#404040;text-decoration:underline}.getting-started__footer a,.getting-started__panel a{text-decoration:none;color:#9baec8}.getting-started__footer a:active,.getting-started__footer a:focus,.getting-started__footer a:hover,.getting-started__panel a:active,.getting-started__panel a:focus,.getting-started__panel a:hover{text-decoration:underline}.getting-started__footer,.getting-started__wrapper{color:#404040}.getting-started__trends{background:#121a24;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}}.getting-started__scrollable{max-height:100%;overflow-y:auto}.keyboard-shortcuts{padding:8px 0 0;overflow:hidden}.keyboard-shortcuts thead{position:absolute;left:-9999px}.keyboard-shortcuts td{padding:0 10px 8px}.keyboard-shortcuts kbd{display:inline-block;padding:3px 5px;background-color:#202e3f;border:1px solid #0b1016}.setting-text{color:#9baec8;background:transparent;border:none;border-bottom:2px solid #9baec8;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:#00007f}@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%}.reduce-motion button.icon-button i.fa-retweet{color:#404040;transition:color .1s ease-in}.reduce-motion button.icon-button.active i.fa-retweet{color:#00007f}.status-card{display:flex;font-size:14px;border:1px solid #202e3f;border-radius:4px;color:#404040;margin-top:14px;text-decoration:none;overflow:hidden}.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:4px;padding:12px 9px;flex:0 0 auto}.status-card__actions a,.status-card__actions button{display:inline;color:#fff;background:transparent;border:0;padding:0 5px;text-decoration:none;opacity:.6;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{opacity:1}.status-card__actions a{font-size:19px;position:relative;bottom:-1px}a.status-card{cursor:pointer}a.status-card:hover{background:#202e3f}.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:#9baec8;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-decoration:none}.status-card__content{flex:1 1 auto;overflow:hidden;padding:14px 14px 14px 8px}.status-card__description{color:#9baec8}.status-card__host{display:block;margin-top:5px;font-size:13px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.status-card__image{flex:0 0 100px;background:#202e3f;position:relative}.status-card__image>.fa{font-size:21px;position:absolute;-webkit-transform-origin:50% 50%;transform-origin:50% 50%;top:50%;left:50%;-webkit-transform:translate(-50%,-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{border-color:#192432}.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 60px}a.status-card.compact:hover{background-color:#192432}.status-card__image-image{border-radius:4px 0 0 4px;display:block;margin:0;width:100%;height:100%;-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover;background-size:cover;background-position:50%}.load-more{display:block;color:#404040;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:#151f2b}.load-gap{border-bottom:1px solid #202e3f}.regeneration-indicator{text-align:center;font-size:16px;font-weight:500;color:#404040;background:#121a24;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center;padding:20px}.regeneration-indicator>div{width:100%;background:transparent;padding-top:0}.regeneration-indicator__figure{width:100%;height:160px;background-size:contain;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.regeneration-indicator.missing-indicator{padding-top:68px}.regeneration-indicator__label{margin-top:200px}.regeneration-indicator__label strong{display:block;margin-bottom:10px;color:#404040}.regeneration-indicator__label span{font-size:15px;font-weight:400}.column-header__wrapper{position:relative;flex:0 0 auto}.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(0,0,127,.23) 0,rgba(0,0,127,0) 60%)}.column-header{display:flex;font-size:16px;background:#192432;flex:0 0 auto;cursor:pointer;position:relative;z-index:2;outline:0;overflow:hidden;border-top-left-radius:2px;border-top-right-radius:2px}.column-header>button{margin:0;border:none;padding:15px 0 15px 15px;color:inherit;background:transparent;font:inherit;text-align:left;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;flex:1}.column-header>.column-header__back-button{color:#00007f}.column-header.active{box-shadow:0 1px 0 rgba(0,0,127,.3)}.column-header.active .column-header__icon{color:#00007f;text-shadow:0 0 10px rgba(0,0,127,.4)}.column-header:active,.column-header:focus{outline:0}.column-header__buttons{height:48px;display:flex}.column-header__links .text-btn{margin-right:10px}.column-header__button{background:#192432;border:0;color:#9baec8;cursor:pointer;font-size:16px;padding:0 15px}.column-header__button:hover{color:#b2c1d5}.column-header__button.active,.column-header__button.active:hover{color:#fff;background:#202e3f}.column-header__collapsible{max-height:70vh;overflow:hidden;overflow-y:auto;color:#9baec8;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:transparent;border:0;border-top:1px solid #26374d;margin:10px 0}.column-header__collapsible-inner{background:#202e3f;padding:15px}.column-header__setting-btn:hover{color:#9baec8;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}.text-btn{display:inline-block;padding:0;font-family:inherit;font-size:inherit;color:inherit;border:0;background:transparent;cursor:pointer}.column-header__icon{display:inline-block;margin-right:5px}.loading-indicator{color:#404040;font-size:12px;font-weight:400;text-transform:uppercase;overflow:visible;position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.loading-indicator span{display:block;float:left;-webkit-transform:translateX(-50%);transform:translateX(-50%);margin:82px 0 0 50%;white-space:nowrap}.loading-indicator__figure{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:42px;height:42px;box-sizing:border-box;background-color:transparent;border:6px solid #3e5a7c;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:#3e5a7c}29%{background-color:#3e5a7c}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:#3e5a7c}29%{background-color:#3e5a7c}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:#9baec8;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:#b5c3d6}.media-spoiler__warning{display:block;font-size:14px}.media-spoiler__trigger{display:block;font-size:11px;font-weight:700}.spoiler-button{display:none;left:4px;position:absolute;text-shadow:0 1px 1px #000,1px 0 1px #000;top:4px;z-index:100}.spoiler-button.spoiler-button--visible{display:block}.modal-container--preloader{background:#202e3f}.account--panel{background:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f;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:#202e3f;padding:15px}.column-settings__section{color:#9baec8;cursor:default;display:block;font-weight:500;margin-bottom:10px}.column-settings__section .column-settings__hashtag-select__control{outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#121a24;color:#9baec8;font-size:14px;margin:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner{border:0}.column-settings__section .column-settings__hashtag-select__control::-moz-focus-inner,.column-settings__section .column-settings__hashtag-select__control:active,.column-settings__section .column-settings__hashtag-select__control:focus{outline:0!important}.column-settings__section .column-settings__hashtag-select__control:focus{background:#192432}@media screen and (max-width:600px){.column-settings__section .column-settings__hashtag-select__control{font-size:16px}}.column-settings__section .column-settings__hashtag-select__multi-value{background:#202e3f}.column-settings__section .column-settings__hashtag-select__input,.column-settings__section .column-settings__hashtag-select__multi-value__label{color:#9baec8}.column-settings__section .column-settings__hashtag-select__dropdown-indicator,.column-settings__section .column-settings__hashtag-select__indicator-separator{display:none}.column-settings__row .text-btn{margin-bottom:15px}.account--follows-info{top:10px}.account--follows-info,.account--muting-info{color:#fff;position:absolute;left:10px;opacity:.7;display:inline-block;vertical-align:top;background-color:rgba(0,0,0,.4);text-transform:uppercase;font-size:11px;font-weight:500;padding:4px;border-radius:4px}.account--muting-info{top:40px}.account--action-button{position:absolute;top:10px;right:20px}.setting-toggle{display:block;line-height:24px}.setting-toggle__label{color:#9baec8;display:inline-block;margin-bottom:14px;margin-left:8px;vertical-align:middle}.empty-column-indicator,.error-column{color:#404040;background:#121a24;text-align:center;padding:20px;font-size:15px;font-weight:400;cursor:default;display:flex;flex:1 1 auto;align-items:center;justify-content:center}@supports (display:grid){.empty-column-indicator,.error-column{contain:strict}}.empty-column-indicator a,.error-column a{color:#00007f;text-decoration:none}.empty-column-indicator a:hover,.error-column a:hover{text-decoration:underline}.error-column{flex-direction:column}@-webkit-keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes heartbeat{0%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}10%{-webkit-transform:scale(.91);transform:scale(.91);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}17%{-webkit-transform:scale(.98);transform:scale(.98);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}33%{-webkit-transform:scale(.87);transform:scale(.87);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}45%{-webkit-transform:scale(1);transform:scale(1);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.no-reduce-motion .pulse-loading{-webkit-transform-origin:center center;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{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}@keyframes shake-bottom{0%,to{-webkit-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:50% 100%;transform-origin:50% 100%}10%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}20%,40%,60%{-webkit-transform:rotate(-4deg);transform:rotate(-4deg)}30%,50%,70%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}80%{-webkit-transform:rotate(-2deg);transform:rotate(-2deg)}90%{-webkit-transform:rotate(2deg);transform:rotate(2deg)}}.no-reduce-motion .shake-bottom{-webkit-transform-origin:50% 100%;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}.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:transparent}.emoji-picker-dropdown__modifiers__menu button:active,.emoji-picker-dropdown__modifiers__menu button:focus,.emoji-picker-dropdown__modifiers__menu button:hover{background:rgba(217,225,232,.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:#121a24;box-shadow:0 0 5px rgba(0,0,0,.2)}.upload-area__content{flex:1;display:flex;align-items:center;justify-content:center;color:#d9e1e8;font-size:18px;font-weight:500;border:2px dashed #404040;border-radius:4px}.upload-progress{padding:10px;color:#404040;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:#404040;position:relative;margin-top:5px}.upload-progress__tracker{position:absolute;left:0;top:0;height:6px;background:#00007f;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}.privacy-dropdown__dropdown.top{-webkit-transform-origin:50% 100%;transform-origin:50% 100%}.privacy-dropdown__dropdown.bottom{-webkit-transform-origin:50% 0;transform-origin:50% 0}.privacy-dropdown__option{color:#121a24;padding:10px;cursor:pointer;display:flex}.privacy-dropdown__option.active,.privacy-dropdown__option:hover{background:#00007f;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:#000093}.privacy-dropdown__option__icon{display:flex;align-items:center;justify-content:center;margin-right:10px}.privacy-dropdown__option__content{flex:1 1 auto;color:#404040}.privacy-dropdown__option__content strong{font-weight:500;display:block;color:#121a24}.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:#00007f}.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:10px 30px 10px 10px;outline:0;box-sizing:border-box;width:100%;border:none;box-shadow:none;font-family:inherit;background:#121a24;color:#9baec8;font-size:14px;margin:0}.search__input::-moz-focus-inner{border:0}.search__input::-moz-focus-inner,.search__input:active,.search__input:focus{outline:0!important}.search__input:focus{background:#192432}@media screen and (max-width:600px){.search__input{font-size:16px}}.search__icon::-moz-focus-inner{border:0}.search__icon::-moz-focus-inner,.search__icon:focus{outline:0!important}.search__icon .fa{position:absolute;top:10px;right:10px;z-index:2;display:inline-block;opacity:0;transition:all .1s linear;font-size:18px;width:18px;height:18px;color:#d9e1e8;cursor:default;pointer-events:none}.search__icon .fa.active{pointer-events:auto;opacity:.3}.search__icon .fa-search{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-search.active{pointer-events:none;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.search__icon .fa-times-circle{top:11px;-webkit-transform:rotate(0deg);transform:rotate(0deg);color:#404040;cursor:pointer}.search__icon .fa-times-circle.active{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.search__icon .fa-times-circle:hover{color:#525252}.search-results__header{color:#404040;background:#151f2b;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:#0b1016;border-bottom:1px solid #202e3f;cursor:default;display:flex;padding:15px;font-weight:500;font-size:16px;color:#404040}.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:#d9e1e8;text-decoration:none}.search-results__hashtag:active,.search-results__hashtag:focus,.search-results__hashtag:hover{color:#e6ebf0;text-decoration:underline}.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}.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__pagination{width:100%;text-align:center;position:absolute;left:0;bottom:20px;pointer-events:none}.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:#00007f}.media-modal__close{position:absolute;right:8px;top:8px;z-index:100}.embed-modal,.error-modal,.onboarding-modal{background:#d9e1e8;color:#121a24;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:#c0cdd9;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:#404040;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:#363636;background-color:#a6b9c9}.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:#121a24}.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:#192432}.error-modal__footer{justify-content:center}.display-case{text-align:center;font-size:15px;margin-bottom:15px}.display-case__label{font-weight:500;color:#121a24;margin-bottom:5px;text-transform:uppercase;font-size:12px}.display-case__case{background:#121a24;color:#d9e1e8;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{background:#f2f5f7;color:#121a24;border-radius:8px;overflow:hidden;max-width:90vw;width:480px;position:relative;flex-direction:column}.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:#f2f5f7}.actions-modal .status{background:#fff;padding-top:10px;padding-bottom:10px}.actions-modal .dropdown-menu__separator,.actions-modal .status{border-bottom-color:#d9e1e8}.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:#d9e1e8;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:#404040;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}.confirmation-modal{max-width:85vw}@media screen and (min-width:480px){.confirmation-modal{max-width:380px}}.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 #d9e1e8}@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:#00007f}.report-modal__statuses .status__content,.report-modal__statuses .status__content p{color:#121a24}@media screen and (max-width:480px){.report-modal__statuses{max-height:10vh}}.report-modal__comment{padding:20px;border-right:1px solid #d9e1e8;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:#121a24;background:#fff;padding:10px;font-family:inherit;font-size:14px;resize:vertical;outline:0;border-radius:4px;border:1px solid #d9e1e8;margin:0 0 20px}.report-modal__comment .setting-text:focus{border:1px solid #c0cdd9}.report-modal__comment .setting-toggle{margin-top:20px;margin-bottom:24px}.report-modal__comment .setting-toggle__label{color:#121a24;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{max-height:80vh;max-width:80vw}.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}.actions-modal ul li:empty{margin:0}.actions-modal ul li:not(:empty) a{color:#121a24;display:flex;padding:12px 16px;font-size:15px;align-items:center;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:#00007f;color:#fff}.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 .mute-modal__cancel-button,.mute-modal__action-bar .confirmation-modal__cancel-button,.mute-modal__action-bar .mute-modal__cancel-button{background-color:transparent;color:#404040;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 .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 .mute-modal__cancel-button:active,.mute-modal__action-bar .mute-modal__cancel-button:focus,.mute-modal__action-bar .mute-modal__cancel-button:hover{color:#363636}.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}.loading-bar{background-color:#00007f;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}.media-gallery__gifv.autoplay .media-gallery__gifv__label{display:none}.media-gallery__gifv:hover .media-gallery__gifv__label{opacity:1}.media-gallery__audio{margin-top:32px}.media-gallery__audio audio{width:100%}.attachment-list{display:flex;font-size:14px;border:1px solid #202e3f;border-radius:4px;margin-top:14px;overflow:hidden}.attachment-list__icon{flex:0 0 auto;color:#404040;padding:8px 18px;cursor:default;border-right:1px solid #202e3f;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:#404040;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:#404040}.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.standalone .media-gallery__item-gifv-thumbnail{-webkit-transform:none;transform:none;top:0}.media-gallery__item-thumbnail{cursor:zoom-in;display:block;text-decoration:none;color:#d9e1e8;line-height:0}.media-gallery__item-thumbnail,.media-gallery__item-thumbnail img{height:100%;width:100%}.media-gallery__item-thumbnail img{-o-object-fit:cover;font-family:\"object-fit:cover\";object-fit:cover}.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;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);width:100%;z-index:1}.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%;-webkit-transform:translateY(-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%;-webkit-transform:translateY(-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:#9baec8;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:#b2c1d5}.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:transparent;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:#0000a8}.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:#0000a8;box-shadow:1px 2px 6px rgba(0,0,0,.2);pointer-events:none}.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:#0000a8}.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:#0000a8;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%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.account-gallery__container{display:flex;justify-content:center;flex-wrap:wrap;padding:2px}.account-gallery__item{flex-grow:1;width:50%;overflow:hidden;position:relative}.account-gallery__item:before{content:\"\";display:block;padding-top:100%}.account-gallery__item a{display:block;width:calc(100% - 4px);height:calc(100% - 4px);margin:2px;top:0;left:0;background-color:#000;background-size:cover;background-position:50%;position:absolute;color:#9baec8;text-decoration:none;border-radius:4px}.account-gallery__item a:active,.account-gallery__item a:focus,.account-gallery__item a:hover{outline:0;color:#d9e1e8}.account-gallery__item a:active:before,.account-gallery__item a:focus:before,.account-gallery__item a:hover:before{content:\"\";display:block;width:100%;height:100%;background:rgba(0,0,0,.3);border-radius:4px}.account-gallery__item__icons{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);font-size:24px}.account__section-headline,.notification__filter-bar{background:#0b1016;border-bottom:1px solid #202e3f;cursor:default;display:flex;flex-shrink:0}.account__section-headline button,.notification__filter-bar button{background:#0b1016;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:#9baec8;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:#d9e1e8}.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;-webkit-transform:translateX(-50%);transform:translateX(-50%);border-color:transparent transparent #202e3f;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 #121a24}::-webkit-scrollbar-thumb{border-radius:0}.search-popout{background:#fff;border-radius:4px;padding:10px 14px 14px;margin-top:10px;color:#9baec8;box-shadow:2px 4px 15px rgba(0,0,0,.4)}.search-popout h4{text-transform:uppercase;color:#9baec8;font-size:13px;font-weight:500;margin-bottom:10px}.search-popout li{padding:4px 0}.search-popout ul{margin-bottom:10px}.search-popout em{font-weight:500;color:#121a24}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:#d9e1e8;max-width:400px}noscript div a{color:#00007f;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,-webkit-transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s;transition:opacity .2s .1s,transform .4s .1s,-webkit-transform .4s .1s}.navigation-bar .navigation-bar__actions>.compose__action-bar .icon-button{will-change:opacity transform;transition:opacity .2s .3s,-webkit-transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s;transition:opacity .2s .3s,transform .4s .1s,-webkit-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;-webkit-transform:scale(1) translate(0);transform:scale(1) translate(0);bottom:5px}.is-composing .navigation-bar .navigation-bar__actions .compose__action-bar .icon-button{pointer-events:none;opacity:0;-webkit-transform:scaleX(0) translate(100%);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:\"mastodon-font-monospace\",monospace;background:#121a24;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:#192432}@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:#192432;border-top:1px solid #202e3f;border-bottom:1px solid #202e3f}.account__moved-note__message{position:relative;margin-left:58px;color:#404040;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:#192432}.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-left:5px}.drawer__backdrop{cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5)}.list-editor{background:#121a24;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-editor{width:90%}}.list-editor h4{padding:15px 0;background:#283a50;font-weight:500;font-size:16px;text-align:center;border-radius:8px 8px 0 0}.list-editor .drawer__pager{height:50vh}.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{overflow-y:auto}.list-editor .account__display-name:hover strong{text-decoration:none}.list-editor .account__avatar{cursor:default}.list-editor .search{margin-bottom:0}.list-adder{background:#121a24;flex-direction:column;border-radius:8px;box-shadow:2px 4px 15px rgba(0,0,0,.4);width:380px;overflow:hidden}@media screen and (max-width:420px){.list-adder{width:90%}}.list-adder__account{background:#283a50}.list-adder__lists{background:#283a50;height:50vh;border-radius:0 0 8px 8px;overflow-y:auto}.list-adder .list{padding:10px;border-bottom:1px solid #202e3f}.list-adder .list__wrapper{display:flex}.list-adder .list__display-name{flex:1 1 auto;overflow:hidden;text-decoration:none;font-size:16px;padding:10px}.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;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:url(/packs/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}.floating-action-button{position:fixed;display:flex;justify-content:center;align-items:center;width:3.9375rem;height:3.9375rem;bottom:1.3125rem;right:1.3125rem;background:#000070;color:#fff;border-radius:50%;font-size:21px;line-height:21px;text-decoration:none;box-shadow:2px 3px 9px rgba(0,0,0,.4)}.floating-action-button:active,.floating-action-button:focus,.floating-action-button:hover{background:#0000a3}.account__header .roles{margin-top:20px;margin-bottom:20px;padding:0 15px}.account__header .account__header__fields{font-size:14px;line-height:20px;overflow:hidden;margin:20px -10px -20px;border-bottom:0;border-top:0}.account__header .account__header__fields dl{border-top:1px solid #192432;border-bottom:0;display:flex}.account__header .account__header__fields dd,.account__header .account__header__fields dt{box-sizing:border-box;padding:14px 5px;text-align:center;max-height:48px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.account__header .account__header__fields dt{color:#9baec8;background:#0b1016;width:120px;flex:0 0 auto;font-weight:500}.account__header .account__header__fields dd{flex:1 1 auto;color:#fff;background:#121a24}.account__header .account__header__fields dd.verified{border:1px solid rgba(121,189,154,.5);background:rgba(121,189,154,.25)}.trends__header{color:#404040;background:#151f2b;border-bottom:1px solid #0b1016;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 #202e3f}.trends__item:last-child{border-bottom:0}.trends__item__name{flex:1 1 auto;color:#404040;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.trends__item__name strong{font-weight:500}.trends__item__name a{color:#9baec8;text-decoration:none;font-size:14px;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:#d9e1e8}.trends__item__sparkline{flex:0 0 auto;width:50px}.trends__item__sparkline path{stroke:#00009e!important}.introduction{display:flex;flex-direction:column;justify-content:center;align-items:center}@media screen and (max-width:920px){.introduction{background:#040609;display:block!important}}.introduction__pager{background:#040609;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{border-top:2px solid #00007f}.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:#9baec8}.introduction__text p code{display:inline-block;background:#040609;font-size:15px;border:1px solid #202e3f;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 #00007f;background:transparent;margin:0 3px;cursor:pointer}.introduction__dot:hover{background:#202e3f}.introduction__dot.active{cursor:default;background:#00007f}.introduction__action{padding:0 25px 25px;display:flex;align-items:center;justify-content:center}.modal-layout{background:#121a24 url('data:image/svg+xml;utf8,
') repeat-x bottom fixed;display:flex;flex-direction:column;height:100vh;padding:0}.modal-layout__mastodon{display:flex;flex:1;flex-direction:column;justify-content:flex-end}.modal-layout__mastodon>*{flex:1;max-height:235px}@media screen and (max-width:600px){.account-header{margin-top:0}}.emoji-mart{font-size:13px;display:inline-block;color:#121a24}.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 #c0cdd9}.emoji-mart-bar:first-child{border-bottom-width:1px;border-top-left-radius:5px;border-top-right-radius:5px;background:#d9e1e8}.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:#404040;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:#363636}.emoji-mart-anchor-selected{color:#00007f}.emoji-mart-anchor-selected:hover{color:#00006b}.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:#00007f}.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:rgba(217,225,232,.3);color:#121a24;border:1px solid #d9e1e8;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(217,225,232,.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:#9baec8}.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:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8;padding-right:10px}.rich-formatting a{color:#00007f;text-decoration:underline}.rich-formatting li,.rich-formatting p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.rich-formatting li a,.rich-formatting p a{color:#00007f;text-decoration:underline}.rich-formatting li:last-child,.rich-formatting p:last-child{margin-bottom:0}.rich-formatting em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.rich-formatting h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.rich-formatting h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h3{font-size:18px}.rich-formatting h3,.rich-formatting h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.rich-formatting h4{font-size:16px}.rich-formatting h5{font-size:14px}.rich-formatting h5,.rich-formatting h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(64,64,64,.6);margin:20px 0}.rich-formatting hr.spacer{height:1px;border:0}.information-board{background:#0b1016;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:\"mastodon-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:#d9e1e8}.information-board__section strong{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:#040609;padding:10px 20px 20px;border-radius:4px 4px 0 0;right:0;bottom:-40px}.information-board .panel .panel-header{font-family:mastodon-font-display,sans-serif;font-size:14px;line-height:24px;font-weight:500;color:#9baec8;padding-bottom:5px;margin-bottom:15px;border-bottom:1px solid #192432;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.information-board .panel .panel-header a,.information-board .panel .panel-header span{font-weight:400;color:#7a93b6}.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:#9baec8}.landing-page .grid{display:grid;grid-gap:10px;grid-template-columns:1fr 2fr;grid-auto-columns:25%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-2{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:3;grid-row:1/3}.landing-page .grid .column-4{grid-column:1/3;grid-row:2}@media screen and (max-width:960px){.landing-page .grid{grid-template-columns:40% 60%}.landing-page .grid .column-0{display:none}.landing-page .grid .column-1{grid-column:1;grid-row:1}.landing-page .grid .column-1.non-preview .landing-page__forms{height:100%}.landing-page .grid .column-2{grid-column:2;grid-row:1/3}.landing-page .grid .column-2.non-preview{grid-column:2;grid-row:1}.landing-page .grid .column-3{grid-column:1;grid-row:2/4}.landing-page .grid .column-4{grid-column:2;grid-row:3}.landing-page .grid .column-4.non-preview{grid-column:1/3;grid-row:2}}@media screen and (max-width:700px){.landing-page .grid{grid-template-columns:100%}.landing-page .grid .column-0{display:block;grid-column:1;grid-row:1}.landing-page .grid .column-1{grid-column:1;grid-row:3}.landing-page .grid .column-1 .brand{display:none}.landing-page .grid .column-2{grid-column:1;grid-row:2}.landing-page .grid .column-2 .landing-page__call-to-action,.landing-page .grid .column-2 .landing-page__logo{display:none}.landing-page .grid .column-2.non-preview{grid-column:1;grid-row:2}.landing-page .grid .column-3{grid-column:1;grid-row:5}.landing-page .grid .column-4,.landing-page .grid .column-4.non-preview{grid-column:1;grid-row:4}}.landing-page .column-flex{display:flex;flex-direction:column}.landing-page .separator-or{position:relative;margin:40px 0;text-align:center}.landing-page .separator-or:before{content:\"\";display:block;width:100%;height:0;border-bottom:1px solid rgba(64,64,64,.6);position:absolute;top:50%;left:0}.landing-page .separator-or span{display:inline-block;background:#121a24;font-size:12px;font-weight:500;color:#9baec8;text-transform:uppercase;position:relative;z-index:1;padding:0 8px;cursor:default}.landing-page li,.landing-page p{font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;margin-bottom:12px;color:#9baec8}.landing-page li a,.landing-page p a{color:#00007f;text-decoration:underline}.landing-page .closed-registrations-message{margin-top:20px}.landing-page .closed-registrations-message,.landing-page .closed-registrations-message p{text-align:center;font-size:12px;line-height:18px;color:#9baec8;margin-bottom:0}.landing-page .closed-registrations-message a,.landing-page .closed-registrations-message p a{color:#00007f;text-decoration:underline}.landing-page .closed-registrations-message p:last-child{margin-bottom:0}.landing-page em{display:inline;margin:0;padding:0;font-weight:700;background:transparent;font-family:inherit;font-size:inherit;line-height:inherit;color:#bcc9da}.landing-page h1{font-family:mastodon-font-display,sans-serif;font-size:26px;line-height:30px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h1 small{font-family:\"mastodon-font-sans-serif\",sans-serif;display:block;font-size:18px;font-weight:400;color:#bcc9da}.landing-page h2{font-family:mastodon-font-display,sans-serif;font-size:22px;line-height:26px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h3{font-size:18px}.landing-page h3,.landing-page h4{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.landing-page h4{font-size:16px}.landing-page h5{font-size:14px}.landing-page h5,.landing-page h6{font-family:mastodon-font-display,sans-serif;line-height:24px;font-weight:500;margin-bottom:20px;color:#d9e1e8}.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(64,64,64,.6);margin:20px 0}.landing-page hr.spacer{height:1px;border:0}.landing-page .container-alt{width:100%;box-sizing:border-box;max-width:800px;margin:0 auto;word-wrap:break-word}.landing-page .header-wrapper{padding-top:15px;background:#121a24;background:linear-gradient(150deg,#202e3f,#121a24);position:relative}.landing-page .header-wrapper.compact{background:#121a24;padding-bottom:15px}.landing-page .header-wrapper.compact .hero .heading{padding-bottom:20px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .header-wrapper.compact .hero .heading a{color:#00007f;text-decoration:underline}.landing-page .brand a{padding-left:0;padding-right:0;color:#fff}.landing-page .brand img{height:32px;position:relative;top:4px;left:-10px}.landing-page .header{line-height:30px;overflow:hidden}.landing-page .header .container-alt{display:flex;justify-content:space-between}.landing-page .header .links{position:relative;z-index:4}.landing-page .header .links a{display:flex;justify-content:center;align-items:center;color:#9baec8;text-decoration:none;padding:12px 16px;line-height:32px;font-family:mastodon-font-display,sans-serif;font-weight:500;font-size:14px}.landing-page .header .links a:hover{color:#d9e1e8}.landing-page .header .links ul{list-style:none;margin:0}.landing-page .header .links ul li{display:inline-block;vertical-align:bottom;margin:0}.landing-page .header .links ul li:first-child a{padding-left:0}.landing-page .header .links ul li:last-child a{padding-right:0}.landing-page .header .hero{margin-top:50px;align-items:center;position:relative}.landing-page .header .hero .heading{position:relative;z-index:4;padding-bottom:150px}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#0b1016;width:280px;padding:15px 20px;border-radius:4px 4px 0 0;line-height:normal;position:relative;z-index:4}.landing-page .header .hero .closed-registrations-message .actions,.landing-page .header .hero .closed-registrations-message .actions .block-button,.landing-page .header .hero .closed-registrations-message .actions .button,.landing-page .header .hero .closed-registrations-message .actions button,.landing-page .header .hero .simple_form .actions,.landing-page .header .hero .simple_form .actions .block-button,.landing-page .header .hero .simple_form .actions .button,.landing-page .header .hero .simple_form .actions button{margin-bottom:0}.landing-page .header .hero .closed-registrations-message{min-height:330px;display:flex;flex-direction:column;justify-content:space-between}.landing-page .about-short{background:#0b1016;padding:50px 0 30px;font-family:\"mastodon-font-sans-serif\",sans-serif;font-weight:400;font-size:16px;line-height:30px;color:#9baec8}.landing-page .about-short a{color:#00007f;text-decoration:underline}.landing-page.alternative{padding:10px 0}.landing-page.alternative .brand{text-align:center;padding:30px 0;margin-bottom:10px}.landing-page.alternative .brand img{position:static;padding:10px 0}@media screen and (max-width:960px){.landing-page.alternative .brand{padding:15px 0}}@media screen and (max-width:700px){.landing-page.alternative .brand{padding:0;margin-bottom:-10px}}.landing-page__forms,.landing-page__information{padding:20px}.landing-page__call-to-action{background:#0b1016;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:wrap;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 .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 #mastodon-timeline,.landing-page__forms,.landing-page__information{box-sizing:border-box;background:#121a24;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:#d9e1e8}.landing-page__short-description h1{font-weight:500;color:#fff;margin-bottom:0}.landing-page__short-description h1 small{color:#9baec8}.landing-page__short-description h1 small span{color:#d9e1e8}.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}.landing-page__forms{height:100%}@media screen and (max-width:960px){.landing-page__forms{height:auto}}@media screen and (max-width:700px){.landing-page__forms{background:transparent;box-shadow:none;padding:0 20px;margin-top:30px;margin-bottom:40px}.landing-page__forms .separator-or span{background:#040609}}.landing-page__forms hr{margin:40px 0}.landing-page__forms .button{display:block}.landing-page__forms .subtle-hint a{text-decoration:none}.landing-page__forms .subtle-hint a:active,.landing-page__forms .subtle-hint a:focus,.landing-page__forms .subtle-hint a:hover{text-decoration:underline}.landing-page #mastodon-timeline{display:flex;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;font-family:\"mastodon-font-sans-serif\",sans-serif;font-size:13px;line-height:18px;font-weight:400;color:#fff;width:100%;flex:1 1 auto;overflow:hidden;height:100%}.landing-page #mastodon-timeline .column-header{color:inherit;font-family:inherit;font-size:16px;line-height:inherit;font-weight:inherit;margin:0;padding:0}.landing-page #mastodon-timeline .column{padding:0;border-radius:4px;overflow:hidden;width:100%}.landing-page #mastodon-timeline .scrollable{height:400px}.landing-page #mastodon-timeline p{font-size:inherit;line-height:inherit;font-weight:inherit;color:#fff;margin-bottom:20px}.landing-page #mastodon-timeline p:last-child{margin-bottom:0}.landing-page #mastodon-timeline p a{color:#d9e1e8;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list{margin-left:0;list-style:none}.landing-page #mastodon-timeline .attachment-list__list li{font-size:inherit;line-height:inherit;font-weight:inherit;margin-bottom:0}.landing-page #mastodon-timeline .attachment-list__list li a{color:#404040;text-decoration:none}.landing-page #mastodon-timeline .attachment-list__list li a:hover{text-decoration:underline}@media screen and (max-width:700px){.landing-page #mastodon-timeline{display:none}}.landing-page__features>p{padding-right:60px}.landing-page__features .features-list{margin:30px 0 40px}.landing-page__features__action{text-align:center}.landing-page .features-list .features-list__row{display:flex;padding:10px 0;justify-content:space-between}.landing-page .features-list .features-list__row .visual{flex:0 0 auto;display:flex;align-items:center;margin-left:15px}.landing-page .features-list .features-list__row .visual .fa{display:block;color:#9baec8;font-size:48px}.landing-page .features-list .features-list__row .text{font-size:16px;line-height:30px;color:#9baec8}.landing-page .features-list .features-list__row .text h6{font-size:inherit;line-height:inherit;margin-bottom:0}@media screen and (min-width:960px){.landing-page .features-list{display:grid;grid-gap:30px;grid-template-columns:1fr 1fr;grid-auto-columns:50%;grid-auto-rows:-webkit-max-content;grid-auto-rows:max-content}}.landing-page .footer-links{padding-bottom:50px;text-align:right;color:#404040}.landing-page .footer-links p{font-size:14px}.landing-page .footer-links a{color:inherit;text-decoration:underline}.landing-page__footer{margin-top:10px;text-align:center;color:#404040}.landing-page__footer p{font-size:14px}.landing-page__footer p a{color:inherit;text-decoration:underline}@media screen and (max-width:840px){.landing-page .container-alt{padding:0 20px}.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 .header .links{padding-top:15px;background:#0b1016}.landing-page .header .links a{padding:12px 8px}.landing-page .header .links .nav{display:flex;flex-flow:row wrap;justify-content:space-around}.landing-page .header .links .brand img{left:0;top:0}.landing-page .header .hero{margin-top:30px;padding:0}.landing-page .header .hero .heading{padding:30px 20px;text-align:center}.landing-page .header .hero .closed-registrations-message,.landing-page .header .hero .simple_form{background:#040609;width:100%;border-radius:0;box-sizing:border-box}}.landing-page .cta{margin:20px}@media screen and (max-width:700px){.landing-page.tag-page,.landing-page.tag-page .container{padding:0}.landing-page.tag-page #mastodon-timeline{display:flex;height:100vh;border-radius:0}}@media screen and (min-width:960px){.landing-page.tag-page .grid{grid-template-columns:33% 67%}}.landing-page.tag-page .grid .column-2{grid-column:2;grid-row:1}.landing-page.tag-page .brand{text-align:unset;padding:0}.landing-page.tag-page .brand img{height:48px;width:auto}.landing-page.tag-page .cta{margin:0}.landing-page.tag-page .cta .button{margin-right:4px}@media screen and (max-width:700px){.landing-page.tag-page .grid{grid-gap:0}.landing-page.tag-page .grid .column-1{grid-column:1;grid-row:1}.landing-page.tag-page .grid .column-2{display:none}}.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 #121a24;text-align:left;background:#0b1016}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #121a24;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:#121a24}.table a{color:#00007f;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:transparent}.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:#121a24;border-top:1px solid #040609;border-bottom:1px solid #040609}.table.batch-table>thead>tr>th:first-child{border-radius:4px 0 0;border-left:1px solid #040609}.table.batch-table>thead>tr>th:last-child{border-radius:0 4px 0 0;border-right:1px solid #040609}.table-wrapper{overflow:auto;margin-bottom:20px}samp{font-family:\"mastodon-font-monospace\",monospace}button.table-action-link{background:transparent;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:#9baec8;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__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 #040609;background:#121a24;border-radius:4px 0 0;height:47px;align-items:center}.batch-table__toolbar__actions{text-align:right;padding-right:11px}.batch-table__row{border:1px solid #040609;border-top:0;background:#0b1016}.batch-table__row:hover{background:#0f151d}.batch-table__row:nth-child(2n){background:#121a24}.batch-table__row:nth-child(2n):hover{background:#151f2b}.batch-table__row__content{padding-top:12px;padding-bottom:16px}.batch-table .status__content{padding-top:0}.batch-table .status__content summary{display:list-item}.batch-table .status__content strong{font-weight:700}.admin-wrapper{display:flex;justify-content:center;height:100%}.admin-wrapper .sidebar-wrapper{flex:1 1 240px;height:100%;background:#121a24;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:#9baec8;text-decoration:none;transition:all .2s linear;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:#0a0e13;transition:all .1s linear}.admin-wrapper .sidebar ul a.selected{background:#0f151d;border-radius:4px 0 0}.admin-wrapper .sidebar ul ul{background:#0b1016;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:#00007f;border-bottom:0;border-radius:0}.admin-wrapper .sidebar ul .simple-navigation-active-leaf a:hover{background-color:#009}.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:#d9e1e8;font-size:24px;line-height:28px;font-weight:400;padding-bottom:40px;border-bottom:1px solid #202e3f;margin-bottom:40px}.admin-wrapper .content h3{color:#d9e1e8;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:#9baec8;padding-bottom:8px;margin-bottom:8px;border-bottom:1px solid #202e3f}.admin-wrapper .content h6{font-size:16px;color:#d9e1e8;line-height:28px;font-weight:400}.admin-wrapper .content .fields-group h6{color:#fff;font-weight:500}.admin-wrapper .content .directory__tag a{box-shadow:none}.admin-wrapper .content .directory__tag h4{font-size:18px;font-weight:700;color:#fff;text-transform:none;padding-bottom:0;margin-bottom:0;border-bottom:none}.admin-wrapper .content>p{font-size:14px;line-height:18px;color:#d9e1e8;margin-bottom:20px}.admin-wrapper .content>p strong{color:#fff;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(64,64,64,.6);margin:20px 0}.admin-wrapper .content hr.spacer{height:1px;border:0}.admin-wrapper .content .muted-hint{color:#9baec8}.admin-wrapper .content .muted-hint a{color:#00007f}.admin-wrapper .content .positive-hint{color:#79bd9a;font-weight:500}.admin-wrapper .content .negative-hint{color:#df405a;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:#9baec8;text-decoration:none;text-transform:uppercase;font-size:12px;font-weight:500;border-bottom:2px solid #121a24}.filters .filter-subset a:hover{color:#fff;border-bottom:2px solid #1b2635}.filters .filter-subset a.selected{color:#00007f;border-bottom:2px solid #00007f}.flavour-screen{display:block;margin:10px auto;max-width:100%}.flavour-description{display:block;font-size:16px;margin:10px 0}.flavour-description>p{margin:10px 0}.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:#d9e1e8}.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:#00007f;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:#121a24;color:#9baec8;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:#404040}.log-entry__extras{background:#1c2938;border-radius:0 0 4px 4px;padding:10px;color:#9baec8;font-family:\"mastodon-font-monospace\",monospace;font-size:12px;word-wrap:break-word;min-height:20px}.log-entry__icon{font-size:28px;margin-right:10px;color:#404040}.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:#00007f}.log-entry .target,.log-entry .username,.log-entry a{color:#d9e1e8;text-decoration:none;font-weight:500}.log-entry .diff-old{color:#e87487}.log-entry .diff-neutral{color:#d9e1e8}.log-entry .diff-new{color:#79bd9a}.inline-name-tag,.name-tag,a.inline-name-tag,a.name-tag{text-decoration:none;color:#d9e1e8}.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 #00007f}.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:#9baec8}.speech-bubble__owner{padding:8px 8px 8px 12px}.speech-bubble time{color:#404040}.report-card{background:#121a24;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:#9baec8;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:#b5c3d6}.report-card__profile__stats .red{color:#df405a}.report-card__summary__item{display:flex;justify-content:flex-start;border-top:1px solid #0b1016}.report-card__summary__item:hover{background:#151f2b}.report-card__summary__item__assigned,.report-card__summary__item__reported-by{padding:15px;flex:0 0 auto;box-sizing:border-box;width:150px;color:#9baec8}.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:#404040;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:#9baec8}.one-line{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.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:#192432;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:#202e3f}.dashboard__counters__num,.dashboard__counters__text{text-align:center;font-weight:500;font-size:24px;line-height:21px;color:#fff;font-family:mastodon-font-display,sans-serif;margin-bottom:20px;line-height:30px}.dashboard__counters__text{font-size:18px}.dashboard__counters__label{font-size:14px;color:#9baec8;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:#d9e1e8;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(1,1,2,0),#010102)}body.rtl .simple_form select{background:#010102 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 #mastodon-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);-webkit-transform:scale(.71);transform:scale(.71)}@media screen and (min-width:1300px){.column{flex-grow:1!important;max-width:400px}.drawer{width:17%;max-width:400px;min-width:330px}}.media-gallery,.video-player{max-height:30vh;height:30vh!important;position:relative;margin-top:20px;margin-left:-68px;width:calc(100% + 80px)!important;max-width:calc(100% + 80px)}.detailed-status .media-gallery,.detailed-status .video-player{margin-left:-5px;width:calc(100% + 9px);max-width:calc(100% + 9px)}.video-player video{-webkit-transform:unset;transform:unset;top:unset}.detailed-status .media-spoiler,.status .media-spoiler{height:100%!important;vertical-align:middle}body{font-size:13px;font-family:\"MS Sans Serif\",premillenium,sans-serif;color:#000}.ui,.ui .columns-area,body.admin{background:teal}.loading-bar{height:5px;background-color:navy}.tabs-bar{background:#bfbfbf;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;height:30px}.tabs-bar__link{color:#000;border-color:#bfbfbf;border-style:outset;border-width:1px 2px 2px 1px;margin:2px;padding:3px}.tabs-bar__link.active{box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0;color:#000}.tabs-bar__link:last-child:before{content:\"Start\";color:#000;font-weight:700;font-size:15px;width:80%;display:block;position:absolute;right:0}.tabs-bar__link:last-child{position:relative;flex-basis:60px!important;font-size:0;color:#bfbfbf;background-image:url(/packs/start-d443e819b6248a54c6eb466c75938306.png);background-repeat:no-repeat;background-position:8%;background-clip:padding-box;background-size:auto 50%}.drawer .drawer__inner{overflow:visible;height:inherit;background:#bfbfbf}.drawer:after{display:block;content:\" \";position:absolute;bottom:15px;left:15px;width:132px;height:117px;background-image:url(/packs/clippy_wave-afb828463da264adbce26a3f17731f6c.gif),url(/packs/clippy_frame-3446d4d28d72aef2f64f7fabae30eb4a.png);background-repeat:no-repeat;background-position:4px 20px,0 0;z-index:0}.drawer__pager{overflow-y:auto;z-index:1}.privacy-dropdown__dropdown{z-index:2}.column{max-height:100vh}.column>.scrollable{background:#bfbfbf;border-radius:0;border-color:#efefef #404040 #404040 #efefef;border-style:solid;border-width:0 2px 2px}.column-header,.column-header__wrapper{color:#fff;font-weight:700;background:#7f7f7f}.column-header{padding:2px;font-size:13px;border-radius:0;border-color:#efefef #404040 #404040 #efefef;border-style:solid;border-width:2px 2px 0;align-items:baseline}.column-header__wrapper.active{background:#00007f}.column-header__wrapper.active:before{display:none}.column-header.active{box-shadow:unset;background:#00007f}.column-header.active .column-header__icon{color:#fff}.column-header__buttons{max-height:20px;margin-right:0}.column-header__button{background:#bfbfbf;color:#000;line-height:0;font-size:14px;max-height:20px;padding:0 2px;margin-top:2px;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0}.column-header__button:hover{color:#000}.column-header__button.active,.column-header__button.active:hover{box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0;background-color:#7f7f7f}.column-header__back-button{max-height:20px;margin-top:2px}.column-back-button,.column-header__back-button{background:#bfbfbf;color:#000;padding:2px;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;font-size:13px;font-weight:700}.column-back-button--slim-button{position:absolute;top:-22px;right:4px;max-height:20px;max-width:60px;padding:0 2px}.column-back-button__icon{font-size:11px;margin-top:-3px}.column-header__collapsible{border-left:2px outset #bfbfbf;border-right:2px outset #bfbfbf}.column-header__collapsible-inner{background:#bfbfbf;color:#000}.column-header__collapsible__extra{color:#000}.column-header__collapsible__extra div[role=group]{border:2px groove #bfbfbf;border-radius:4px;margin-bottom:8px;padding:4px}.column-inline-form{background-color:#bfbfbf;border-radius:0;border-color:#efefef #404040 #404040 #efefef;border-style:solid;border-width:0 2px}.column-settings__section{color:#000;font-weight:700;font-size:11px;position:relative;top:-12px;left:4px;background-color:#bfbfbf;display:inline-block;padding:0 4px;margin-bottom:0}.setting-meta__label,.setting-toggle__label{color:#000;font-weight:400}.setting-meta__label span:before{content:\"(\"}.setting-meta__label span:after{content:\")\"}.setting-toggle{line-height:13px}.react-toggle .react-toggle-track{background-color:#fff;border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:2px;border-radius:0;width:12px;height:12px}.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track{background-color:#fff}.react-toggle .react-toggle-track-check{left:2px;transition:unset}.react-toggle .react-toggle-track-check svg path{fill:#000}.react-toggle .react-toggle-track-x{display:none}.react-toggle .react-toggle-thumb{border-radius:0;display:none}.text-btn{background-color:#bfbfbf;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;padding:4px}.text-btn:hover{text-decoration:none;color:#000}.setting-text,.text-btn:active{box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0}.setting-text{color:#000;background-color:#fff;font-size:13px;padding:2px}.setting-text.light:active,.setting-text.light:focus,.setting-text:active,.setting-text:focus{color:#000;border-bottom:2px inset #bfbfbf}.column-header__setting-arrows .column-header__setting-btn,.column-header__setting-arrows .column-header__setting-btn:last-child{padding:3px 10px}.missing-indicator{background-color:#bfbfbf;color:#000;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0}.missing-indicator>div{background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAC4jAAAuIwF4pT92AAAAF3pUWHRUaXRsZQAACJnLyy9Jyy/NSwEAD5IDblIFOhoAAAAXelRYdEF1dGhvcgAACJlLzijKz0vMAQALmgLoDsFj8gAAAQpJREFUOMuVlD0OwjAMhd2oQl04Axfo0IGBgYELcAY6cqQuSO0ZOEAZGBg6VKg74gwsEaoESRVHjusI8aQqzY8/PbtOEz1qkFSn2YevlaNOpLMJh2DwvixhuXtOa6/LCh51DUMEFkAsgAZD207Doin8mQ562JpRE5CHBAAhmIqD1L8AqzUUUJkxc6kr3AgAJ+NuvIWRdk7WcrKl0AUqcIBBHOiEbpS4m27mIL5Onfg3k0rgggeQuS2sDOGSahKR+glgqaGLgUJs951NN1q9D72cQqQWR9cr3sm9YcEssEuz6eEuZh2bu0aSOhQ1MBezu2O/+TVSvEFII3qLsZWrSA2AAUQIh1HpyP/kC++zjVSMj6ntAAAAAElFTkSuQmCC\") no-repeat;background-position:50%}.empty-column-indicator,.error-column{background:#bfbfbf;color:#000}.status__wrapper{border:2px groove #bfbfbf;margin:4px}.status{border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:1px;border-radius:0;background-color:#fff;padding-bottom:40px;margin:4px 4px 8px}.status.status-direct{background-color:#bfbfbf}.status__content{font-size:13px}.status.light .display-name span,.status.light .status__relative-time{color:#7f7f7f}.status__action-bar{box-sizing:border-box;position:absolute;bottom:-1px;left:-1px;background:#bfbfbf;width:calc(100% + 2px);padding:4px 2px;border-bottom:2px groove #bfbfbf;border-top:1px outset #bfbfbf;text-align:right}.status__wrapper .status__action-bar{border-bottom-width:0}.status__action-bar-button{float:right}.status__action-bar-dropdown{margin-left:auto;margin-right:10px}.status__action-bar-dropdown .icon-button{min-width:28px}.status.light .status__content a{color:#00f}.focusable:focus,.focusable:focus .detailed-status__action-bar{background:#bfbfbf}.focusable:focus .detailed-status,.focusable:focus .status{background:#fff;outline:2px dotted grey}.dropdown__trigger.icon-button{padding-right:6px}.detailed-status__action-bar-dropdown .icon-button{min-width:28px}.detailed-status{background:#fff;background-clip:padding-box;margin:4px;border:2px groove #bfbfbf;padding:4px}.detailed-status__display-name{color:#7f7f7f}.detailed-status__display-name strong{color:#000;font-weight:700}.account__avatar,.account__avatar-overlay-base,.account__avatar-overlay-overlay,.account__header__avatar{border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:1px;border-radius:0;-webkit-clip-path:none;clip-path:none;-webkit-filter:saturate(1.8) brightness(1.1);filter:saturate(1.8) brightness(1.1)}.detailed-status__action-bar{background-color:#bfbfbf;border:0;border-bottom:2px groove #bfbfbf;margin-bottom:8px;justify-items:left;padding-left:4px}.icon-button{background:#bfbfbf;border-color:#efefef #404040 #404040 #efefef;border-style:solid;border-width:2px;border-radius:0;padding:0;margin-right:4px}.icon-button,.icon-button.inverted,.icon-button.inverted:hover,.icon-button:active,.icon-button:focus,.icon-button:hover{color:#3f3f3f}.icon-button:active{border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:2px;border-radius:0}.status__action-bar>.icon-button{padding:0 15px 0 0;min-width:25px}.icon-button.star-icon,.icon-button.star-icon:active{background:transparent;border:none}.icon-button.star-icon.active,.icon-button.star-icon.active:active,.icon-button.star-icon.active:focus,.icon-button.star-icon.active:hover{color:#ca8f04}.icon-button.star-icon>i{background:#bfbfbf;border-color:#efefef #404040 #404040 #efefef;border-style:solid;border-width:2px;border-radius:0;padding-bottom:3px}.icon-button.star-icon:active>i{border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:2px;border-radius:0}.text-icon-button{color:#404040}.detailed-status__action-bar-dropdown{margin-left:auto;justify-content:right;padding-right:16px}.detailed-status__button{flex:0 0 auto}.detailed-status__button .icon-button{padding-left:2px;padding-right:25px}.status-card{border-radius:0;background:#fff;border:1px solid #000;color:#000}.status-card:hover{background-color:#fff}.status-card__title{color:#00f;text-decoration:underline;font-weight:700}.load-more{width:auto;margin:5px auto;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;padding:2px 5px}.load-more,.load-more:hover{background:#bfbfbf;color:#000}.status-card__description{color:#000}.account__display-name strong,.status__display-name strong{color:#000;font-weight:700}.account .account__display-name{color:#000}.account{border-bottom:2px groove #bfbfbf}.reply-indicator__content .status__content__spoiler-link,.status__content .status__content__spoiler-link{background:#bfbfbf;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0}.reply-indicator__content .status__content__spoiler-link:hover,.status__content .status__content__spoiler-link:hover{background:#bfbfbf}.reply-indicator__content .status__content__spoiler-link:active,.status__content .status__content__spoiler-link:active{box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0}.reply-indicator__content a,.status__content a{color:#00f}.notification{border:2px groove #bfbfbf;margin:4px}.notification__message{color:#000;font-size:13px}.notification__display-name{font-weight:700}.drawer__header{background:#bfbfbf;border-bottom:2px solid #404040;border-radius:0;justify-content:left;margin-bottom:0;padding-bottom:2px;border-color:#efefef #404040 #bfbfbf #efefef;border-style:solid solid groove;border-width:2px}.drawer__tab{color:#000;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;padding:5px;margin:2px;flex:0 0 auto}.drawer__tab:first-child:before{content:\"Start\";color:#000;font-weight:700;font-size:15px;width:80%;display:block;position:absolute;right:0}.drawer__tab:first-child{position:relative;padding:5px 15px;width:40px;font-size:0;color:#bfbfbf;background-image:url(/packs/start-d443e819b6248a54c6eb466c75938306.png);background-repeat:no-repeat;background-position:8%;background-clip:padding-box;background-size:auto 50%}.drawer__header a:hover{background-color:transparent}.drawer__header a:first-child:hover{background-image:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAIAAACpTQvdAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAF3pUWHRBdXRob3IAAAiZS84oys9LzAEAC5oC6A7BY/IAAACWSURBVCiRhVJJDsQgDEuqOfRZ7a1P5gbP4uaJaEjTADMWQhHYjlk4p0wLnNdptdF4KvBUDyGzVwc2xO+uKtH+1o0ytEEmqFpuxlvFCGCxKbNIT56QCi2MzaA/2Mz+mERSOeqzJG2RUxkjdTabgPtFoZ1bZxcKvgPcLZVufAyR9Ni8v5dWDzfFx0giC1RvZFv6l35QQ/Mvv39XXgGzQpoAAAAASUVORK5CYII=\");background-repeat:no-repeat;background-position:8%;background-clip:padding-box;background-size:auto 50%;transition:unset}.search{background:#bfbfbf;padding:2px;border-bottom:2px outset #bfbfbf;border-color:#bfbfbf;border-style:outset outset groove;border-width:0 2px 2px;margin-bottom:0}.search input{color:#000;border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:1px;border-radius:0}.search__input:focus,.search input{background-color:#fff}.search-popout{box-shadow:unset;color:#000;border-radius:0;background-color:#ffc;border:1px solid #000}.search-popout h4{color:#000;text-transform:none;font-weight:700}.search-results__header{background-color:#bfbfbf;color:#000;border-bottom:2px groove #bfbfbf}.search-results__hashtag{color:#00f}.search-results__section .account:hover,.search-results__section .account:hover .account__display-name,.search-results__section .account:hover .account__display-name strong,.search-results__section .search-results__hashtag:hover{background-color:#00007f;color:#fff}.search__icon .fa{color:grey}.search__icon .fa.active{opacity:1}.search__icon .fa:hover{color:grey}.drawer__inner,.drawer__inner.darker{background-color:#bfbfbf;border:2px outset #bfbfbf;border-top:0 outset #bfbfbf}.navigation-bar{color:#000}.navigation-bar strong{color:#000;font-weight:700}.compose-form .autosuggest-textarea__textarea,.compose-form .spoiler-input__input{border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:1px;border-radius:0}.compose-form .autosuggest-textarea__textarea{border-bottom:0}.compose-form__uploads-wrapper{border-radius:0;border-bottom:1px inset #bfbfbf;border-top-width:0}.compose-form__upload-wrapper{border-left:1px inset #bfbfbf;border-right:1px inset #bfbfbf}.compose-form .compose-form__buttons-wrapper{background-color:#bfbfbf;border:2px groove #bfbfbf;margin-top:4px;padding:4px 8px}.compose-form__buttons{background-color:#bfbfbf;border-radius:0;box-shadow:unset}.compose-form__buttons-separator{border-left:2px groove #bfbfbf}.advanced-options-dropdown.open .advanced-options-dropdown__value,.privacy-dropdown.active .privacy-dropdown__value.active{background:#bfbfbf}.privacy-dropdown.active .privacy-dropdown__value.active .icon-button{color:#404040}.privacy-dropdown.active .privacy-dropdown__value{background:#bfbfbf;box-shadow:unset}.privacy-dropdown__option.active,.privacy-dropdown__option.active:hover,.privacy-dropdown__option:hover{background:#00007f}.advanced-options-dropdown.open .advanced-options-dropdown__dropdown,.advanced-options-dropdown__dropdown,.privacy-dropdown.active .privacy-dropdown__dropdown,.privacy-dropdown__dropdown{box-shadow:unset;color:#000;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;background:#bfbfbf}.privacy-dropdown__option__content{color:#000}.privacy-dropdown__option__content strong{font-weight:700}.compose-form__warning:before{content:\"Tip:\";font-weight:700;display:block;position:absolute;top:-10px;background-color:#bfbfbf;font-size:11px;padding:0 5px}.compose-form__warning{position:relative;box-shadow:unset;border:2px groove #bfbfbf;background-color:#bfbfbf;color:#000}.compose-form__warning a{color:#00f}.compose-form__warning strong{color:#000;text-decoration:underline}.compose-form__buttons button.active:last-child{border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:2px;border-radius:0;background:#dfdfdf;color:#7f7f7f}.compose-form__upload-thumbnail{border-radius:0;border:2px groove #bfbfbf;background-color:#bfbfbf;padding:2px;box-sizing:border-box}.compose-form__upload-thumbnail .icon-button{max-width:20px;max-height:20px;line-height:10px!important}.compose-form__upload-thumbnail .icon-button:before{content:\"X\";font-size:13px;font-weight:700;color:#000}.compose-form__upload-thumbnail .icon-button i{display:none}.emoji-picker-dropdown__menu{z-index:2}.emoji-dialog.with-search{box-shadow:unset;border-radius:0;background-color:#bfbfbf;border:1px solid #000;box-sizing:content-box}.emoji-dialog .emoji-search{color:#000;background-color:#fff;box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0}.emoji-dialog .emoji-search-wrapper{border-bottom:2px groove #bfbfbf}.emoji-dialog .emoji-category-title{color:#000;font-weight:700}.reply-indicator{background-color:#bfbfbf;border-radius:3px;border:2px groove #bfbfbf}.button{box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;color:#000;font-weight:700}.button,.button:disabled,.button:focus,.button:hover{background-color:#bfbfbf}.button:active{box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0}.button:disabled{color:grey;text-shadow:1px 1px 0 #efefef}.button:disabled:active{box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0}#Getting-started{background-color:#bfbfbf;box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-radius:0;border-width:0}#Getting-started:before{content:\"Start\";color:#000;font-weight:700;font-size:15px;width:80%;text-align:center;display:block;position:absolute;right:2px}#Getting-started{position:relative;padding:5px 15px;width:60px;font-size:0;color:#bfbfbf;background-image:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAIAAACpTQvdAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAF3pUWHRBdXRob3IAAAiZS84oys9LzAEAC5oC6A7BY/IAAACWSURBVCiRhVJJDsQgDEuqOfRZ7a1P5gbP4uaJaEjTADMWQhHYjlk4p0wLnNdptdF4KvBUDyGzVwc2xO+uKtH+1o0ytEEmqFpuxlvFCGCxKbNIT56QCi2MzaA/2Mz+mERSOeqzJG2RUxkjdTabgPtFoZ1bZxcKvgPcLZVufAyR9Ni8v5dWDzfFx0giC1RvZFv6l35QQ/Mvv39XXgGzQpoAAAAASUVORK5CYII=\");background-repeat:no-repeat;background-position:8%;background-clip:padding-box;background-size:auto 50%}.column-subheading{background-color:#bfbfbf;color:#000;border-bottom:2px groove #bfbfbf;text-transform:none;font-size:16px}.column-link{background-color:transparent;color:#000}.column-link:hover{background-color:#00007f;color:#fff}.getting-started__wrapper .column-subheading{font-size:0;margin:0;padding:0}.getting-started__wrapper .column-link{padding-left:40px}.getting-started__wrapper .column-link,.getting-started__wrapper .column-link:hover{background-size:32px 32px;background-repeat:no-repeat;background-position:36px 50%}.getting-started__wrapper .column-link i{font-size:0;width:32px}.column-link[href=\"/web/timelines/public\"],.column-link[href=\"/web/timelines/public\"]:hover{background-image:url(/packs/icon_public-2d798a39bb2bd6314e47b00669686556.png)}.column-link[href=\"/web/timelines/public/local\"],.column-link[href=\"/web/timelines/public/local\"]:hover{background-image:url(/packs/icon_local-eade3ebeb7ac50f798cd40ed5fe62232.png)}.column-link[href=\"/web/pinned\"],.column-link[href=\"/web/pinned\"]:hover{background-image:url(/packs/icon_pin-79e04b07bcaa1266eee3164e83f574b4.png)}.column-link[href=\"/web/favourites\"],.column-link[href=\"/web/favourites\"]:hover{background-image:url(/packs/icon_likes-27b8551da2d56d81062818c035ed622e.png)}.column-link[href=\"/web/lists\"],.column-link[href=\"/web/lists\"]:hover{background-image:url(/packs/icon_lists-ae69bf4fb26c40d2c9b056c55c9153e2.png)}.column-link[href=\"/web/follow_requests\"],.column-link[href=\"/web/follow_requests\"]:hover{background-image:url(/packs/icon_follow_requests-32eaf00987b072b2b12f8015d6a6a250.png)}.column-link[href=\"/web/keyboard-shortcuts\"],.column-link[href=\"/web/keyboard-shortcuts\"]:hover{background-image:url(/packs/icon_keyboard_shortcuts-4b183486762cfcc9f0de7522520a5485.png)}.column-link[href=\"/web/blocks\"],.column-link[href=\"/web/blocks\"]:hover{background-image:url(/packs/icon_blocks-0b0e54d45ff0177b02e1357ac09c0d51.png)}.column-link[href=\"/web/mutes\"],.column-link[href=\"/web/mutes\"]:hover{background-image:url(/packs/icon_mutes-5e7612d5c63fedb3fc59558284304cfc.png)}.column-link[href=\"/settings/preferences\"],.column-link[href=\"/settings/preferences\"]:hover{background-image:url(/packs/icon_settings-e7c53fb8ee137f93827e2db21f507cb1.png)}.column-link[href=\"/about/more\"],.column-link[href=\"/about/more\"]:hover{background-image:url(/packs/icon_about-ffafc67a2e97ca436da6c1bf61a8ab68.png)}.column-link[href=\"/auth/sign_out\"],.column-link[href=\"/auth/sign_out\"]:hover{background-image:url(/packs/icon_logout-3abd28c4fc25290e6e4088c50d3352f4.png)}.getting-started__footer{display:none}.getting-started__wrapper:before{content:\"Mastodon 95\";font-weight:700;font-size:23px;color:#fff;line-height:30px;padding-left:20px;padding-right:40px;left:0;bottom:-30px;display:block;position:absolute;background-color:#7f7f7f;width:200%;height:30px;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:top left;transform-origin:top left}.getting-started__wrapper{border-color:#efefef #404040 #404040 #efefef;border-style:solid;border-width:2px;border-radius:0;background-color:#bfbfbf}.column .static-content.getting-started{display:none}.keyboard-shortcuts kbd{background-color:#bfbfbf}.account__header{background-color:#7f7f7f}.account__header .account__header__content{color:#fff}.account-authorize__wrapper{border:2px groove #bfbfbf;margin:2px;padding:2px}.account--panel{background-color:#bfbfbf;border:0;border-top:2px groove #bfbfbf}.account-authorize .account__header__content{color:#000;margin:10px}.account__action-bar__tab>span{color:#000;font-weight:700}.account__action-bar__tab strong{color:#000}.account__action-bar{border:unset}.account__action-bar__tab{border:1px outset #bfbfbf}.account__action-bar__tab:active{box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0}.dropdown--active .dropdown__content>ul,.dropdown-menu{background:#ffc;border-radius:0;border:1px solid #000;box-shadow:unset}.dropdown-menu a{background-color:transparent}.dropdown--active:after{display:none}.dropdown--active .icon-button{color:#000;box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0}.dropdown--active .dropdown__content>ul>li>a{background:transparent}.dropdown--active .dropdown__content>ul>li>a:hover{background:transparent;color:#000;text-decoration:underline}.dropdown-menu__separator,.dropdown__sep{border-color:#7f7f7f}.detailed-status__action-bar-dropdown .dropdown--active .dropdown__content.dropdown__left{left:unset}.detailed-status__button>.icon-button,.dropdown>.icon-button,.star-icon i,.status__action-bar>.icon-button{height:25px!important;width:28px!important;box-sizing:border-box}.status__action-bar-button .fa-floppy-o{padding-top:2px}.status__action-bar-dropdown{position:relative;top:-3px}.detailed-status__action-bar-dropdown .dropdown{position:relative;top:-4px}.notification .status__action-bar{border-bottom:none}.notification .status{margin-bottom:4px}.status__wrapper .status{margin-bottom:3px}.status__wrapper{margin-bottom:8px}.icon-button .fa-retweet{position:relative;top:-1px}.actions-modal,.boost-modal,.confirmation-modal,.embed-modal,.error-modal,.onboarding-modal,.report-modal{box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;background:#bfbfbf}.actions-modal:before,.boost-modal:before,.confirmation-modal:before,.report-modal:before{content:\"Confirmation\";display:block;background:#00007f;color:#fff;font-weight:700;padding-left:2px}.boost-modal:before{content:\"Boost confirmation\"}.boost-modal__action-bar>div>span:before{content:\"Tip: \";font-weight:700}.boost-modal__action-bar,.confirmation-modal__action-bar,.report-modal__action-bar{background:#bfbfbf;margin-top:-15px}.embed-modal h4,.error-modal h4,.onboarding-modal h4{background:#00007f;color:#fff;font-weight:700;padding:2px;font-size:13px;text-align:left}.confirmation-modal__action-bar .confirmation-modal__cancel-button,.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{color:#000}.confirmation-modal__action-bar .confirmation-modal__cancel-button:active,.embed-modal .embed-modal__container .embed-modal__html,.embed-modal .embed-modal__container .embed-modal__html:focus{box-shadow:inset 1px 1px 0 #000,inset -1px -1px 0 #fff,inset 2px 2px 0 grey,inset -2px -2px 0 #dfdfdf;border-width:0;border-radius:0}.embed-modal .embed-modal__container .embed-modal__html,.embed-modal .embed-modal__container .embed-modal__html:focus{background:#fff;color:#000}.account__header>div,.modal-root__overlay{background:url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAACXBIWXMAAC4jAAAuIwF4pT92AAAAFnpUWHRUaXRsZQAACJnLzU9JzElKBwALgwLXaCRlPwAAABd6VFh0QXV0aG9yAAAImUvOKMrPS8wBAAuaAugOwWPyAAAAEUlEQVQImWNgYGD4z4AE/gMADwMB/414xEUAAAAASUVORK5CYII=\")}.admin-wrapper:before{position:absolute;top:0;content:\"Control Panel\";color:#fff;background-color:#00007f;font-size:13px;font-weight:700;width:100%;margin:2px;display:block;padding:2px 2px 2px 22px;box-sizing:border-box}.admin-wrapper{position:relative;background:#bfbfbf;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;width:70vw;height:80vh;margin:10vh auto;color:#000;padding-top:24px;flex-direction:column;overflow:hidden}@media screen and (max-width:1120px){.admin-wrapper{width:90vw;height:95vh;margin:2.5vh auto}}@media screen and (max-width:740px){.admin-wrapper{width:100vw;height:95vh;height:calc(100vh - 24px);margin:0}}.admin-wrapper .sidebar-wrapper{position:static;height:auto;flex:0 0 auto;margin:2px}.admin-wrapper .content-wrapper{flex:1 1 auto;width:calc(100% - 20px);border-color:#efefef #404040 #404040 #efefef;border-style:solid;border-width:2px;border-radius:0;position:relative;margin-left:10px;margin-right:10px;margin-bottom:40px;box-sizing:border-box}.admin-wrapper .content{background-color:#bfbfbf;width:100%;max-width:100%;min-height:100%;box-sizing:border-box;position:relative}.admin-wrapper .sidebar{position:static;background:#bfbfbf;color:#000;width:100%;height:auto;padding-bottom:20px}.admin-wrapper .sidebar .logo{position:absolute;top:2px;left:4px;width:18px;height:18px;margin:0}.admin-wrapper .sidebar>ul{background:#bfbfbf;margin:0 0 0 8px;color:#000}.admin-wrapper .sidebar>ul>li{display:inline-block}.admin-wrapper .sidebar>ul>li#admin,.admin-wrapper .sidebar>ul>li#settings{padding:2px;border:0 solid transparent}.admin-wrapper .sidebar>ul>li#logout{right:12px}.admin-wrapper .sidebar>ul>li#logout,.admin-wrapper .sidebar>ul>li#web{position:absolute;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;bottom:10px}.admin-wrapper .sidebar>ul>li#web{display:inline-block;left:12px}.admin-wrapper .sidebar>ul>li>a{display:inline-block;box-shadow:inset -1px 0 0 #000,inset 1px 0 0 #fff,inset 0 1px 0 #fff,inset 0 2px 0 #dfdfdf,inset -2px 0 0 grey,inset 2px 0 0 #dfdfdf;border-radius:0;border-top-left-radius:1px;border-top-right-radius:1px;padding:2px 5px;margin:0;color:#000;vertical-align:baseline}.admin-wrapper .sidebar>ul>li>a.selected{background:#bfbfbf;color:#000;padding-top:4px;padding-bottom:4px}.admin-wrapper .sidebar>ul>li>a:hover{background:#bfbfbf;color:#000}.admin-wrapper .sidebar>ul>li>ul{width:calc(100% - 20px);background:transparent;position:absolute;left:10px;top:54px;z-index:3}.admin-wrapper .sidebar>ul>li>ul>li{background:#bfbfbf;display:inline-block;vertical-align:baseline}.admin-wrapper .sidebar>ul>li>ul>li>a{background:#bfbfbf;box-shadow:inset -1px 0 0 #000,inset 1px 0 0 #fff,inset 0 1px 0 #fff,inset 0 2px 0 #dfdfdf,inset -2px 0 0 grey,inset 2px 0 0 #dfdfdf;border-radius:0;border-top-left-radius:1px;border-top-right-radius:1px;color:#000;padding:2px 5px;position:relative;z-index:3}.admin-wrapper .sidebar>ul>li>ul>li>a.selected{background:#bfbfbf;color:#000;padding-bottom:4px;padding-top:4px;padding-right:7px;margin-left:-2px;margin-right:-2px;position:relative;z-index:4}.admin-wrapper .sidebar>ul>li>ul>li>a.selected:first-child{margin-left:0}.admin-wrapper .sidebar>ul>li>ul>li>a.selected:hover{background:transparent;color:#000}.admin-wrapper .sidebar>ul>li>ul>li>a:hover{background:#bfbfbf;color:#000}@media screen and (max-width:1520px){.admin-wrapper .sidebar>ul>li>ul{max-width:1000px}.admin-wrapper .sidebar{padding-bottom:45px}}@media screen and (max-width:600px){.admin-wrapper .sidebar>ul>li>ul{max-width:500px}.admin-wrapper .sidebar{padding:0 0 70px;width:100%;height:auto}.admin-wrapper .content-wrapper{overflow:auto;height:80%;height:calc(100% - 150px)}}.flash-message{background-color:#ffc;color:#000;border:1px solid #000;border-radius:0;position:absolute;top:0;left:0;width:100%}.admin-wrapper table{background-color:#fff;border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:1px;border-radius:0}.admin-wrapper .content .muted-hint,.admin-wrapper .content>p,.admin-wrapper .content h2,.admin-wrapper .content h6,.filters .filter-subset a,.simple_form .check_boxes .checkbox label,.simple_form .input.radio_buttons .radio label,.simple_form .input.with_block_label>label,.simple_form .input.with_label.boolean .label_input>label,.simple_form .input.with_label .label_input>label,.simple_form h4,.simple_form p.hint,.simple_form span.hint,a.table-action-link,a.table-action-link:hover{color:#000}.table>tbody>tr:nth-child(odd)>td,.table>tbody>tr:nth-child(odd)>th{background-color:#fff}.simple_form input[type=email],.simple_form input[type=number],.simple_form input[type=password],.simple_form input[type=text],.simple_form textarea{color:#000;background-color:#fff;border-color:#404040 #efefef #efefef #404040;border-style:solid;border-width:1px;border-radius:0}.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{background-color:#fff}.simple_form .block-button,.simple_form .button,.simple_form button{background:#bfbfbf;box-shadow:inset -1px -1px 0 #000,inset 1px 1px 0 #fff,inset -2px -2px 0 grey,inset 2px 2px 0 #dfdfdf;border-radius:0;color:#000;font-weight:400}.simple_form .block-button:hover,.simple_form .button:hover,.simple_form button:hover{background:#bfbfbf}.simple_form .warning,.table-form .warning{background:#ffc;color:#000;box-shadow:unset;text-shadow:unset;border:1px solid #000}.simple_form .warning a,.table-form .warning a{color:#00f;text-decoration:underline}.simple_form .block-button.negative,.simple_form .button.negative,.simple_form button.negative{background:#bfbfbf}.filters .filter-subset{border:2px groove #bfbfbf;padding:2px}.filters .filter-subset a:before{content:\"\";background-color:#fff;border-radius:50%;border-color:#7f7f7f #f5f5f5 #f5f5f5 #7f7f7f;border-style:solid;border-width:2px;width:12px;height:12px;display:inline-block;vertical-align:middle;margin-right:2px}.filters .filter-subset a.selected:before{background-color:#000;box-shadow:inset 0 0 0 3px #fff}.filters .filter-subset a,.filters .filter-subset a.selected,.filters .filter-subset a:hover{color:#000;border-bottom:0 solid transparent}"],"sourceRoot":""}
\ No newline at end of file
diff --git a/priv/static/packs/skins/vanilla/win95/common.js b/priv/static/packs/skins/vanilla/win95/common.js
new file mode 100644
index 000000000..14898b3d8
Binary files /dev/null and b/priv/static/packs/skins/vanilla/win95/common.js differ
diff --git a/priv/static/packs/skins/vanilla/win95/common.js.map b/priv/static/packs/skins/vanilla/win95/common.js.map
new file mode 100644
index 000000000..e6c40bfa3
Binary files /dev/null and b/priv/static/packs/skins/vanilla/win95/common.js.map differ
diff --git a/priv/static/packs/start-d443e819b6248a54c6eb466c75938306.png b/priv/static/packs/start-d443e819b6248a54c6eb466c75938306.png
new file mode 100644
index 000000000..7843455b6
Binary files /dev/null and b/priv/static/packs/start-d443e819b6248a54c6eb466c75938306.png differ
diff --git a/priv/static/packs/wave-drawer-ee1bfcbe5811ea31771b7187c7507ee6.png b/priv/static/packs/wave-drawer-ee1bfcbe5811ea31771b7187c7507ee6.png
new file mode 100644
index 000000000..ca9f9e1d8
Binary files /dev/null and b/priv/static/packs/wave-drawer-ee1bfcbe5811ea31771b7187c7507ee6.png differ
diff --git a/priv/static/packs/wave-drawer-glitched-33467bf8c8d2b995d6c76d8810aba3db.png b/priv/static/packs/wave-drawer-glitched-33467bf8c8d2b995d6c76d8810aba3db.png
new file mode 100644
index 000000000..2290663db
Binary files /dev/null and b/priv/static/packs/wave-drawer-glitched-33467bf8c8d2b995d6c76d8810aba3db.png differ
diff --git a/priv/static/sw.js b/priv/static/sw.js
index 5605bb05e..abfb38aaa 100644
Binary files a/priv/static/sw.js and b/priv/static/sw.js differ
diff --git a/priv/static/sw.js.map b/priv/static/sw.js.map
deleted file mode 100644
index dae63a1fd..000000000
Binary files a/priv/static/sw.js.map and /dev/null differ
diff --git a/test/fixtures/rich_media/malformed-data.html b/test/fixtures/rich_media/malformed-data.html
new file mode 100644
index 000000000..dec628c16
--- /dev/null
+++ b/test/fixtures/rich_media/malformed-data.html
@@ -0,0 +1,4874 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Pomys na biznes: chusta, ktra chroni przed smogiem
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
1 ZDJĘCIE
+
+
+
+
+
+
+
+
+
+
Prace nad projektem chusty antysmogowej rozpoczy si w lutym 2018 roku, a w styczniu 2019 pojawia si na rynku (MATERIAY PRASOWE)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Filtr ma tak dokadny, e zatrzymuje nawet wirusy i bakterie. Trjka wrocawian stworzya chust, ktra chroni przed smogiem.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Choć Wrocław to piękne miasto, często pojawia się w polskiej czołówce tych najbardziej ogarniętych smogiem. Zdarza się, że i w światowym rankingu zajmuje wysokie lokaty. Wszystko zależy od tego, jaka akurat jest pogoda.
+ Trójka zaniepokojonych wrocławian od dawna obserwuje wskazania dwóch oficjalnych stacji pomiarowych. I często aż strach jest wyjść z domu. Zresztą w nim też nie jest dużo lepiej.
+ – Szkodliwe cząsteczki unoszące się w smogu są bardzo małe. Gdy ich stężenie jest wysokie, dostają się również do wewnątrz mieszkań. A to oznacza, że przed smogiem nie da się całkowicie ochronić, zamykając drzwi i okna – opowiada Adam Muszyński oraz Diana i Przemek Jaworscy, założyciele firmy produkującej innowacyjny element ubioru chroniący przed smogiem.
+ Oni, jak i wielu ich znajomych, chcieli zadbać o zdrowie. Jednym ze sposobów na to jest noszenie specjalnej maseczki z filtrem. Do obrazka, na którym ludzie mają pozasłaniane białymi maseczkami twarze, przywykliśmy oglądając relacje z największych miast Azji, gdzie problem smogu jest szczególnie widoczny.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Wyprbuj cyfrow Wyborcz
+Nieograniczony dostp do serwisw informacyjnych, biznesowych, lokalnych i wszystkich magazynw Wyborczej
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Inne
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Konsument i zakupy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Konsument i zakupy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Konsument i zakupy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Konsument i zakupy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Konsument i zakupy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Konsument i zakupy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Zobacz take
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Wiadomoci - najwaniejsze informacje
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/test/support/conn_case.ex b/test/support/conn_case.ex
index c201d9a9b..ec5892ff5 100644
--- a/test/support/conn_case.ex
+++ b/test/support/conn_case.ex
@@ -33,6 +33,7 @@ defmodule Pleroma.Web.ConnCase do
setup tags do
Cachex.clear(:user_cache)
+ Cachex.clear(:object_cache)
:ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)
unless tags[:async] do
diff --git a/test/support/data_case.ex b/test/support/data_case.ex
index 56d5896ad..df260bd3f 100644
--- a/test/support/data_case.ex
+++ b/test/support/data_case.ex
@@ -32,6 +32,7 @@ defmodule Pleroma.DataCase do
setup tags do
Cachex.clear(:user_cache)
+ Cachex.clear(:object_cache)
:ok = Ecto.Adapters.SQL.Sandbox.checkout(Pleroma.Repo)
unless tags[:async] do
diff --git a/test/support/factory.ex b/test/support/factory.ex
index 4ac77981a..0c21093ce 100644
--- a/test/support/factory.ex
+++ b/test/support/factory.ex
@@ -193,7 +193,7 @@ def follow_activity_factory do
def websub_subscription_factory do
%Pleroma.Web.Websub.WebsubServerSubscription{
topic: "http://example.org",
- callback: "http://example/org/callback",
+ callback: "http://example.org/callback",
secret: "here's a secret",
valid_until: NaiveDateTime.add(NaiveDateTime.utc_now(), 100),
state: "requested"
@@ -220,4 +220,11 @@ def oauth_app_factory do
client_secret: "aaa;/&bbb"
}
end
+
+ def instance_factory do
+ %Pleroma.Instances.Instance{
+ host: "domain.com",
+ unreachable_since: nil
+ }
+ end
end
diff --git a/test/support/http_request_mock.ex b/test/support/http_request_mock.ex
index 3043d2be6..78e8efc9d 100644
--- a/test/support/http_request_mock.ex
+++ b/test/support/http_request_mock.ex
@@ -143,7 +143,10 @@ def get(
}}
end
- def get("https://squeet.me/xrd/?uri=lain@squeet.me", _, _,
+ def get(
+ "https://squeet.me/xrd/?uri=lain@squeet.me",
+ _,
+ _,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
@@ -153,7 +156,10 @@ def get("https://squeet.me/xrd/?uri=lain@squeet.me", _, _,
}}
end
- def get("https://mst3k.interlinked.me/users/luciferMysticus", _, _,
+ def get(
+ "https://mst3k.interlinked.me/users/luciferMysticus",
+ _,
+ _,
Accept: "application/activity+json"
) do
{:ok,
@@ -171,7 +177,10 @@ def get("https://prismo.news/@mxb", _, _, _) do
}}
end
- def get("https://hubzilla.example.org/channel/kaniini", _, _,
+ def get(
+ "https://hubzilla.example.org/channel/kaniini",
+ _,
+ _,
Accept: "application/activity+json"
) do
{:ok,
@@ -248,7 +257,10 @@ def get("http://mastodon.example.org/users/admin", _, _, Accept: "application/ac
}}
end
- def get("http://mastodon.example.org/@admin/99541947525187367", _, _,
+ def get(
+ "http://mastodon.example.org/@admin/99541947525187367",
+ _,
+ _,
Accept: "application/activity+json"
) do
{:ok,
@@ -274,7 +286,10 @@ def get("https://mstdn.io/users/mayuutann", _, _, Accept: "application/activity+
}}
end
- def get("https://mstdn.io/users/mayuutann/statuses/99568293732299394", _, _,
+ def get(
+ "https://mstdn.io/users/mayuutann/statuses/99568293732299394",
+ _,
+ _,
Accept: "application/activity+json"
) do
{:ok,
@@ -429,7 +444,10 @@ def get(
}}
end
- def get("https://social.sakamoto.gq/objects/0ccc1a2c-66b0-4305-b23a-7f7f2b040056", _, _,
+ def get(
+ "https://social.sakamoto.gq/objects/0ccc1a2c-66b0-4305-b23a-7f7f2b040056",
+ _,
+ _,
Accept: "application/atom+xml"
) do
{:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/httpoison_mock/sakamoto.atom")}}
@@ -510,7 +528,10 @@ def get("http://squeet.me/.well-known/host-meta", _, _, _) do
%Tesla.Env{status: 200, body: File.read!("test/fixtures/httpoison_mock/squeet.me_host_meta")}}
end
- def get("https://squeet.me/xrd?uri=lain@squeet.me", _, _,
+ def get(
+ "https://squeet.me/xrd?uri=lain@squeet.me",
+ _,
+ _,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
@@ -541,7 +562,10 @@ def get("http://framatube.org/.well-known/host-meta", _, _, _) do
}}
end
- def get("http://framatube.org/main/xrd?uri=framasoft@framatube.org", _, _,
+ def get(
+ "http://framatube.org/main/xrd?uri=framasoft@framatube.org",
+ _,
+ _,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
@@ -560,7 +584,10 @@ def get("http://gnusocial.de/.well-known/host-meta", _, _, _) do
}}
end
- def get("http://gnusocial.de/main/xrd?uri=winterdienst@gnusocial.de", _, _,
+ def get(
+ "http://gnusocial.de/main/xrd?uri=winterdienst@gnusocial.de",
+ _,
+ _,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
@@ -594,7 +621,10 @@ def get("http://gerzilla.de/.well-known/host-meta", _, _, _) do
}}
end
- def get("https://gerzilla.de/xrd/?uri=kaniini@gerzilla.de", _, _,
+ def get(
+ "https://gerzilla.de/xrd/?uri=kaniini@gerzilla.de",
+ _,
+ _,
Accept: "application/xrd+xml,application/jrd+json"
) do
{:ok,
@@ -657,10 +687,23 @@ def get("http://example.com/ogp", _, _, _) do
{:ok, %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/ogp.html")}}
end
+ def get("http://example.com/malformed", _, _, _) do
+ {:ok,
+ %Tesla.Env{status: 200, body: File.read!("test/fixtures/rich_media/malformed-data.html")}}
+ end
+
def get("http://example.com/empty", _, _, _) do
{:ok, %Tesla.Env{status: 200, body: "hello"}}
end
+ def get("http://404.site" <> _, _, _, _) do
+ {:ok,
+ %Tesla.Env{
+ status: 404,
+ body: ""
+ }}
+ end
+
def get(url, query, body, headers) do
{:error,
"Not implemented the mock response for get #{inspect(url)}, #{query}, #{inspect(body)}, #{
@@ -681,6 +724,26 @@ def post("http://example.org/needs_refresh", _, _, _) do
}}
end
+ def post("http://200.site" <> _, _, _, _) do
+ {:ok,
+ %Tesla.Env{
+ status: 200,
+ body: ""
+ }}
+ end
+
+ def post("http://connrefused.site" <> _, _, _, _) do
+ {:error, :connrefused}
+ end
+
+ def post("http://404.site" <> _, _, _, _) do
+ {:ok,
+ %Tesla.Env{
+ status: 404,
+ body: ""
+ }}
+ end
+
def post(url, _query, _body, _headers) do
{:error, "Not implemented the mock response for post #{inspect(url)}"}
end
diff --git a/test/user_test.exs b/test/user_test.exs
index cd202e360..98d3bc464 100644
--- a/test/user_test.exs
+++ b/test/user_test.exs
@@ -65,6 +65,19 @@ test "follow_all follows mutliple users" do
refute User.following?(user, not_followed)
end
+ test "follow_all follows mutliple users without duplicating" do
+ user = insert(:user)
+ followed_zero = insert(:user)
+ followed_one = insert(:user)
+ followed_two = insert(:user)
+
+ {:ok, user} = User.follow_all(user, [followed_zero, followed_one])
+ assert length(user.following) == 3
+
+ {:ok, user} = User.follow_all(user, [followed_one, followed_two])
+ assert length(user.following) == 4
+ end
+
test "follow takes a user and another user" do
user = insert(:user)
followed = insert(:user)
@@ -951,4 +964,31 @@ test "preserves hosts in user links text" do
assert expected_text == User.parse_bio(bio, user)
end
end
+
+ test "bookmarks" do
+ user = insert(:user)
+
+ {:ok, activity1} =
+ CommonAPI.post(user, %{
+ "status" => "heweoo!"
+ })
+
+ id1 = activity1.data["object"]["id"]
+
+ {:ok, activity2} =
+ CommonAPI.post(user, %{
+ "status" => "heweoo!"
+ })
+
+ id2 = activity2.data["object"]["id"]
+
+ assert {:ok, user_state1} = User.bookmark(user, id1)
+ assert user_state1.bookmarks == [id1]
+
+ assert {:ok, user_state2} = User.unbookmark(user, id1)
+ assert user_state2.bookmarks == []
+
+ assert {:ok, user_state3} = User.bookmark(user, id2)
+ assert user_state3.bookmarks == [id2]
+ end
end
diff --git a/test/web/activity_pub/activity_pub_controller_test.exs b/test/web/activity_pub/activity_pub_controller_test.exs
index 52e67f046..d3dd160dd 100644
--- a/test/web/activity_pub/activity_pub_controller_test.exs
+++ b/test/web/activity_pub/activity_pub_controller_test.exs
@@ -6,8 +6,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubControllerTest do
use Pleroma.Web.ConnCase
import Pleroma.Factory
alias Pleroma.Web.ActivityPub.{UserView, ObjectView}
- alias Pleroma.{Object, Repo, User}
- alias Pleroma.Activity
+ alias Pleroma.{Object, Repo, Activity, User, Instances}
setup_all do
Tesla.Mock.mock_global(fn env -> apply(HttpRequestMock, :request, [env]) end)
@@ -144,6 +143,23 @@ test "it inserts an incoming activity into the database", %{conn: conn} do
:timer.sleep(500)
assert Activity.get_by_ap_id(data["id"])
end
+
+ test "it clears `unreachable` federation status of the sender", %{conn: conn} do
+ data = File.read!("test/fixtures/mastodon-post-activity.json") |> Poison.decode!()
+
+ sender_url = data["actor"]
+ Instances.set_consistently_unreachable(sender_url)
+ refute Instances.reachable?(sender_url)
+
+ conn =
+ conn
+ |> assign(:valid_signature, true)
+ |> put_req_header("content-type", "application/activity+json")
+ |> post("/inbox", data)
+
+ assert "ok" == json_response(conn, 200)
+ assert Instances.reachable?(sender_url)
+ end
end
describe "/users/:nickname/inbox" do
@@ -191,6 +207,28 @@ test "it returns a note activity in a collection", %{conn: conn} do
assert response(conn, 200) =~ note_activity.data["object"]["content"]
end
+
+ test "it clears `unreachable` federation status of the sender", %{conn: conn} do
+ user = insert(:user)
+
+ data =
+ File.read!("test/fixtures/mastodon-post-activity.json")
+ |> Poison.decode!()
+ |> Map.put("bcc", [user.ap_id])
+
+ sender_host = URI.parse(data["actor"]).host
+ Instances.set_consistently_unreachable(sender_host)
+ refute Instances.reachable?(sender_host)
+
+ conn =
+ conn
+ |> assign(:valid_signature, true)
+ |> put_req_header("content-type", "application/activity+json")
+ |> post("/users/#{user.nickname}/inbox", data)
+
+ assert "ok" == json_response(conn, 200)
+ assert Instances.reachable?(sender_host)
+ end
end
describe "/users/:nickname/outbox" do
diff --git a/test/web/activity_pub/activity_pub_test.exs b/test/web/activity_pub/activity_pub_test.exs
index b826f5a1b..a55961ac4 100644
--- a/test/web/activity_pub/activity_pub_test.exs
+++ b/test/web/activity_pub/activity_pub_test.exs
@@ -7,11 +7,12 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubTest do
alias Pleroma.Web.ActivityPub.ActivityPub
alias Pleroma.Web.ActivityPub.Utils
alias Pleroma.Web.CommonAPI
- alias Pleroma.{Activity, Object, User}
+ alias Pleroma.{Activity, Object, User, Instances}
alias Pleroma.Builders.ActivityBuilder
import Pleroma.Factory
import Tesla.Mock
+ import Mock
setup do
mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
@@ -696,6 +697,115 @@ test "returned pinned statuses" do
assert 3 = length(activities)
end
+ describe "publish_one/1" do
+ test_with_mock "calls `Instances.set_reachable` on successful federation if `unreachable_since` is not specified",
+ Instances,
+ [:passthrough],
+ [] do
+ actor = insert(:user)
+ inbox = "http://200.site/users/nick1/inbox"
+
+ assert {:ok, _} = ActivityPub.publish_one(%{inbox: inbox, json: "{}", actor: actor, id: 1})
+
+ assert called(Instances.set_reachable(inbox))
+ end
+
+ test_with_mock "calls `Instances.set_reachable` on successful federation if `unreachable_since` is set",
+ Instances,
+ [:passthrough],
+ [] do
+ actor = insert(:user)
+ inbox = "http://200.site/users/nick1/inbox"
+
+ assert {:ok, _} =
+ ActivityPub.publish_one(%{
+ inbox: inbox,
+ json: "{}",
+ actor: actor,
+ id: 1,
+ unreachable_since: NaiveDateTime.utc_now()
+ })
+
+ assert called(Instances.set_reachable(inbox))
+ end
+
+ test_with_mock "does NOT call `Instances.set_reachable` on successful federation if `unreachable_since` is nil",
+ Instances,
+ [:passthrough],
+ [] do
+ actor = insert(:user)
+ inbox = "http://200.site/users/nick1/inbox"
+
+ assert {:ok, _} =
+ ActivityPub.publish_one(%{
+ inbox: inbox,
+ json: "{}",
+ actor: actor,
+ id: 1,
+ unreachable_since: nil
+ })
+
+ refute called(Instances.set_reachable(inbox))
+ end
+
+ test_with_mock "calls `Instances.set_unreachable` on target inbox on non-2xx HTTP response code",
+ Instances,
+ [:passthrough],
+ [] do
+ actor = insert(:user)
+ inbox = "http://404.site/users/nick1/inbox"
+
+ assert {:error, _} =
+ ActivityPub.publish_one(%{inbox: inbox, json: "{}", actor: actor, id: 1})
+
+ assert called(Instances.set_unreachable(inbox))
+ end
+
+ test_with_mock "it calls `Instances.set_unreachable` on target inbox on request error of any kind",
+ Instances,
+ [:passthrough],
+ [] do
+ actor = insert(:user)
+ inbox = "http://connrefused.site/users/nick1/inbox"
+
+ assert {:error, _} =
+ ActivityPub.publish_one(%{inbox: inbox, json: "{}", actor: actor, id: 1})
+
+ assert called(Instances.set_unreachable(inbox))
+ end
+
+ test_with_mock "does NOT call `Instances.set_unreachable` if target is reachable",
+ Instances,
+ [:passthrough],
+ [] do
+ actor = insert(:user)
+ inbox = "http://200.site/users/nick1/inbox"
+
+ assert {:ok, _} = ActivityPub.publish_one(%{inbox: inbox, json: "{}", actor: actor, id: 1})
+
+ refute called(Instances.set_unreachable(inbox))
+ end
+
+ test_with_mock "does NOT call `Instances.set_unreachable` if target instance has non-nil `unreachable_since`",
+ Instances,
+ [:passthrough],
+ [] do
+ actor = insert(:user)
+ inbox = "http://connrefused.site/users/nick1/inbox"
+
+ assert {:error, _} =
+ ActivityPub.publish_one(%{
+ inbox: inbox,
+ json: "{}",
+ actor: actor,
+ id: 1,
+ unreachable_since: NaiveDateTime.utc_now()
+ })
+
+ refute called(Instances.set_unreachable(inbox))
+ end
+ end
+
def data_uri do
File.read!("test/fixtures/avatar_data_uri")
end
diff --git a/test/web/federator_test.exs b/test/web/federator_test.exs
index d58621cc3..147086918 100644
--- a/test/web/federator_test.exs
+++ b/test/web/federator_test.exs
@@ -3,8 +3,8 @@
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.FederatorTest do
- alias Pleroma.Web.Federator
- alias Pleroma.Web.CommonAPI
+ alias Pleroma.Web.{CommonAPI, Federator}
+ alias Pleroma.Instances
use Pleroma.DataCase
import Pleroma.Factory
import Mock
@@ -55,6 +55,124 @@ test "with relays deactivated, it does not publish to the relay", %{
end
end
+ describe "Targets reachability filtering in `publish`" do
+ test_with_mock "it federates only to reachable instances via AP",
+ Federator,
+ [:passthrough],
+ [] do
+ user = insert(:user)
+
+ {inbox1, inbox2} =
+ {"https://domain.com/users/nick1/inbox", "https://domain2.com/users/nick2/inbox"}
+
+ insert(:user, %{
+ local: false,
+ nickname: "nick1@domain.com",
+ ap_id: "https://domain.com/users/nick1",
+ info: %{ap_enabled: true, source_data: %{"inbox" => inbox1}}
+ })
+
+ insert(:user, %{
+ local: false,
+ nickname: "nick2@domain2.com",
+ ap_id: "https://domain2.com/users/nick2",
+ info: %{ap_enabled: true, source_data: %{"inbox" => inbox2}}
+ })
+
+ dt = NaiveDateTime.utc_now()
+ Instances.set_unreachable(inbox1, dt)
+
+ Instances.set_consistently_unreachable(URI.parse(inbox2).host)
+
+ {:ok, _activity} =
+ CommonAPI.post(user, %{"status" => "HI @nick1@domain.com, @nick2@domain2.com!"})
+
+ assert called(
+ Federator.enqueue(:publish_single_ap, %{inbox: inbox1, unreachable_since: dt})
+ )
+
+ refute called(Federator.enqueue(:publish_single_ap, %{inbox: inbox2}))
+ end
+
+ test_with_mock "it federates only to reachable instances via Websub",
+ Federator,
+ [:passthrough],
+ [] do
+ user = insert(:user)
+ websub_topic = Pleroma.Web.OStatus.feed_path(user)
+
+ sub1 =
+ insert(:websub_subscription, %{
+ topic: websub_topic,
+ state: "active",
+ callback: "http://pleroma.soykaf.com/cb"
+ })
+
+ sub2 =
+ insert(:websub_subscription, %{
+ topic: websub_topic,
+ state: "active",
+ callback: "https://pleroma2.soykaf.com/cb"
+ })
+
+ dt = NaiveDateTime.utc_now()
+ Instances.set_unreachable(sub2.callback, dt)
+
+ Instances.set_consistently_unreachable(sub1.callback)
+
+ {:ok, _activity} = CommonAPI.post(user, %{"status" => "HI"})
+
+ assert called(
+ Federator.enqueue(:publish_single_websub, %{
+ callback: sub2.callback,
+ unreachable_since: dt
+ })
+ )
+
+ refute called(Federator.enqueue(:publish_single_websub, %{callback: sub1.callback}))
+ end
+
+ test_with_mock "it federates only to reachable instances via Salmon",
+ Federator,
+ [:passthrough],
+ [] do
+ user = insert(:user)
+
+ remote_user1 =
+ insert(:user, %{
+ local: false,
+ nickname: "nick1@domain.com",
+ ap_id: "https://domain.com/users/nick1",
+ info: %{salmon: "https://domain.com/salmon"}
+ })
+
+ remote_user2 =
+ insert(:user, %{
+ local: false,
+ nickname: "nick2@domain2.com",
+ ap_id: "https://domain2.com/users/nick2",
+ info: %{salmon: "https://domain2.com/salmon"}
+ })
+
+ dt = NaiveDateTime.utc_now()
+ Instances.set_unreachable(remote_user2.ap_id, dt)
+
+ Instances.set_consistently_unreachable("domain.com")
+
+ {:ok, _activity} =
+ CommonAPI.post(user, %{"status" => "HI @nick1@domain.com, @nick2@domain2.com!"})
+
+ assert called(
+ Federator.enqueue(:publish_single_salmon, %{
+ recipient: remote_user2,
+ unreachable_since: dt
+ })
+ )
+
+ refute called(Federator.enqueue(:publish_single_websub, %{recipient: remote_user1}))
+ end
+ end
+
describe "Receive an activity" do
test "successfully processes incoming AP docs with correct origin" do
params = %{
diff --git a/test/web/instances/instance_test.exs b/test/web/instances/instance_test.exs
new file mode 100644
index 000000000..a158c0a42
--- /dev/null
+++ b/test/web/instances/instance_test.exs
@@ -0,0 +1,107 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule Pleroma.Instances.InstanceTest do
+ alias Pleroma.Repo
+ alias Pleroma.Instances.Instance
+
+ use Pleroma.DataCase
+
+ import Pleroma.Factory
+
+ setup_all do
+ config_path = [:instance, :federation_reachability_timeout_days]
+ initial_setting = Pleroma.Config.get(config_path)
+
+ Pleroma.Config.put(config_path, 1)
+ on_exit(fn -> Pleroma.Config.put(config_path, initial_setting) end)
+
+ :ok
+ end
+
+ describe "set_reachable/1" do
+ test "clears `unreachable_since` of existing matching Instance record having non-nil `unreachable_since`" do
+ instance = insert(:instance, unreachable_since: NaiveDateTime.utc_now())
+
+ assert {:ok, instance} = Instance.set_reachable(instance.host)
+ refute instance.unreachable_since
+ end
+
+ test "keeps nil `unreachable_since` of existing matching Instance record having nil `unreachable_since`" do
+ instance = insert(:instance, unreachable_since: nil)
+
+ assert {:ok, instance} = Instance.set_reachable(instance.host)
+ refute instance.unreachable_since
+ end
+
+ test "does NOT create an Instance record in case of no existing matching record" do
+ host = "domain.org"
+ assert nil == Instance.set_reachable(host)
+
+ assert [] = Repo.all(Ecto.Query.from(i in Instance))
+ assert Instance.reachable?(host)
+ end
+ end
+
+ describe "set_unreachable/1" do
+ test "creates new record having `unreachable_since` to current time if record does not exist" do
+ assert {:ok, instance} = Instance.set_unreachable("https://domain.com/path")
+
+ instance = Repo.get(Instance, instance.id)
+ assert instance.unreachable_since
+ assert "domain.com" == instance.host
+ end
+
+ test "sets `unreachable_since` of existing record having nil `unreachable_since`" do
+ instance = insert(:instance, unreachable_since: nil)
+ refute instance.unreachable_since
+
+ assert {:ok, _} = Instance.set_unreachable(instance.host)
+
+ instance = Repo.get(Instance, instance.id)
+ assert instance.unreachable_since
+ end
+
+ test "does NOT modify `unreachable_since` value of existing record in case it's present" do
+ instance =
+ insert(:instance, unreachable_since: NaiveDateTime.add(NaiveDateTime.utc_now(), -10))
+
+ assert instance.unreachable_since
+ initial_value = instance.unreachable_since
+
+ assert {:ok, _} = Instance.set_unreachable(instance.host)
+
+ instance = Repo.get(Instance, instance.id)
+ assert initial_value == instance.unreachable_since
+ end
+ end
+
+ describe "set_unreachable/2" do
+ test "sets `unreachable_since` value of existing record in case it's newer than supplied value" do
+ instance =
+ insert(:instance, unreachable_since: NaiveDateTime.add(NaiveDateTime.utc_now(), -10))
+
+ assert instance.unreachable_since
+
+ past_value = NaiveDateTime.add(NaiveDateTime.utc_now(), -100)
+ assert {:ok, _} = Instance.set_unreachable(instance.host, past_value)
+
+ instance = Repo.get(Instance, instance.id)
+ assert past_value == instance.unreachable_since
+ end
+
+ test "does NOT modify `unreachable_since` value of existing record in case it's equal to or older than supplied value" do
+ instance =
+ insert(:instance, unreachable_since: NaiveDateTime.add(NaiveDateTime.utc_now(), -10))
+
+ assert instance.unreachable_since
+ initial_value = instance.unreachable_since
+
+ assert {:ok, _} = Instance.set_unreachable(instance.host, NaiveDateTime.utc_now())
+
+ instance = Repo.get(Instance, instance.id)
+ assert initial_value == instance.unreachable_since
+ end
+ end
+end
diff --git a/test/web/instances/instances_test.exs b/test/web/instances/instances_test.exs
new file mode 100644
index 000000000..2530c09fe
--- /dev/null
+++ b/test/web/instances/instances_test.exs
@@ -0,0 +1,131 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2018 Pleroma Authors
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule Pleroma.InstancesTest do
+ alias Pleroma.Instances
+
+ use Pleroma.DataCase
+
+ setup_all do
+ config_path = [:instance, :federation_reachability_timeout_days]
+ initial_setting = Pleroma.Config.get(config_path)
+
+ Pleroma.Config.put(config_path, 1)
+ on_exit(fn -> Pleroma.Config.put(config_path, initial_setting) end)
+
+ :ok
+ end
+
+ describe "reachable?/1" do
+ test "returns `true` for host / url with unknown reachability status" do
+ assert Instances.reachable?("unknown.site")
+ assert Instances.reachable?("http://unknown.site")
+ end
+
+ test "returns `false` for host / url marked unreachable for at least `reachability_datetime_threshold()`" do
+ host = "consistently-unreachable.name"
+ Instances.set_consistently_unreachable(host)
+
+ refute Instances.reachable?(host)
+ refute Instances.reachable?("http://#{host}/path")
+ end
+
+ test "returns `true` for host / url marked unreachable for less than `reachability_datetime_threshold()`" do
+ url = "http://eventually-unreachable.name/path"
+
+ Instances.set_unreachable(url)
+
+ assert Instances.reachable?(url)
+ assert Instances.reachable?(URI.parse(url).host)
+ end
+
+ test "returns true on non-binary input" do
+ assert Instances.reachable?(nil)
+ assert Instances.reachable?(1)
+ end
+ end
+
+ describe "filter_reachable/1" do
+ setup do
+ host = "consistently-unreachable.name"
+ url1 = "http://eventually-unreachable.com/path"
+ url2 = "http://domain.com/path"
+
+ Instances.set_consistently_unreachable(host)
+ Instances.set_unreachable(url1)
+
+ result = Instances.filter_reachable([host, url1, url2, nil])
+ %{result: result, url1: url1, url2: url2}
+ end
+
+ test "returns a map with keys containing 'not marked consistently unreachable' elements of supplied list",
+ %{result: result, url1: url1, url2: url2} do
+ assert is_map(result)
+ assert Enum.sort([url1, url2]) == result |> Map.keys() |> Enum.sort()
+ end
+
+ test "returns a map with `unreachable_since` values for keys",
+ %{result: result, url1: url1, url2: url2} do
+ assert is_map(result)
+ assert %NaiveDateTime{} = result[url1]
+ assert is_nil(result[url2])
+ end
+
+ test "returns an empty map for empty list or list containing no hosts / url" do
+ assert %{} == Instances.filter_reachable([])
+ assert %{} == Instances.filter_reachable([nil])
+ end
+ end
+
+ describe "set_reachable/1" do
+ test "sets unreachable url or host reachable" do
+ host = "domain.com"
+ Instances.set_consistently_unreachable(host)
+ refute Instances.reachable?(host)
+
+ Instances.set_reachable(host)
+ assert Instances.reachable?(host)
+ end
+
+ test "keeps reachable url or host reachable" do
+ url = "https://site.name?q="
+ assert Instances.reachable?(url)
+
+ Instances.set_reachable(url)
+ assert Instances.reachable?(url)
+ end
+
+ test "returns error status on non-binary input" do
+ assert {:error, _} = Instances.set_reachable(nil)
+ assert {:error, _} = Instances.set_reachable(1)
+ end
+ end
+
+ # Note: implementation-specific (e.g. Instance) details of set_unreachable/1 should be tested in implementation-specific tests
+ describe "set_unreachable/1" do
+ test "returns error status on non-binary input" do
+ assert {:error, _} = Instances.set_unreachable(nil)
+ assert {:error, _} = Instances.set_unreachable(1)
+ end
+ end
+
+ describe "set_consistently_unreachable/1" do
+ test "sets reachable url or host unreachable" do
+ url = "http://domain.com?q="
+ assert Instances.reachable?(url)
+
+ Instances.set_consistently_unreachable(url)
+ refute Instances.reachable?(url)
+ end
+
+ test "keeps unreachable url or host unreachable" do
+ host = "site.name"
+ Instances.set_consistently_unreachable(host)
+ refute Instances.reachable?(host)
+
+ Instances.set_consistently_unreachable(host)
+ refute Instances.reachable?(host)
+ end
+ end
+end
diff --git a/test/web/mastodon_api/mastodon_api_controller_test.exs b/test/web/mastodon_api/mastodon_api_controller_test.exs
index 1a5eb090c..8528d4f64 100644
--- a/test/web/mastodon_api/mastodon_api_controller_test.exs
+++ b/test/web/mastodon_api/mastodon_api_controller_test.exs
@@ -137,6 +137,7 @@ test "posting a sensitive status", %{conn: conn} do
end
test "posting a status with OGP link preview", %{conn: conn} do
+ Pleroma.Config.put([:rich_media, :enabled], true)
user = insert(:user)
conn =
@@ -148,6 +149,7 @@ test "posting a status with OGP link preview", %{conn: conn} do
assert %{"id" => id, "card" => %{"title" => "The Rock"}} = json_response(conn, 200)
assert Repo.get(Activity, id)
+ Pleroma.Config.put([:rich_media, :enabled], false)
end
test "posting a direct status", %{conn: conn} do
@@ -1667,6 +1669,7 @@ test "max pinned statuses", %{conn: conn, user: user, activity: activity_one} do
end
test "Status rich-media Card", %{conn: conn, user: user} do
+ Pleroma.Config.put([:rich_media, :enabled], true)
{:ok, activity} = CommonAPI.post(user, %{"status" => "http://example.com/ogp"})
response =
@@ -1691,6 +1694,59 @@ test "Status rich-media Card", %{conn: conn, user: user} do
}
}
}
+
+ Pleroma.Config.put([:rich_media, :enabled], false)
end
end
+
+ test "bookmarks" do
+ user = insert(:user)
+ for_user = insert(:user)
+
+ {:ok, activity1} =
+ CommonAPI.post(user, %{
+ "status" => "heweoo?"
+ })
+
+ {:ok, activity2} =
+ CommonAPI.post(user, %{
+ "status" => "heweoo!"
+ })
+
+ response1 =
+ build_conn()
+ |> assign(:user, for_user)
+ |> post("/api/v1/statuses/#{activity1.id}/bookmark")
+
+ assert json_response(response1, 200)["bookmarked"] == true
+
+ response2 =
+ build_conn()
+ |> assign(:user, for_user)
+ |> post("/api/v1/statuses/#{activity2.id}/bookmark")
+
+ assert json_response(response2, 200)["bookmarked"] == true
+
+ bookmarks =
+ build_conn()
+ |> assign(:user, for_user)
+ |> get("/api/v1/bookmarks")
+
+ assert [json_response(response2, 200), json_response(response1, 200)] ==
+ json_response(bookmarks, 200)
+
+ response1 =
+ build_conn()
+ |> assign(:user, for_user)
+ |> post("/api/v1/statuses/#{activity1.id}/unbookmark")
+
+ assert json_response(response1, 200)["bookmarked"] == false
+
+ bookmarks =
+ build_conn()
+ |> assign(:user, for_user)
+ |> get("/api/v1/bookmarks")
+
+ assert [json_response(response2, 200)] == json_response(bookmarks, 200)
+ end
end
diff --git a/test/web/mastodon_api/status_view_test.exs b/test/web/mastodon_api/status_view_test.exs
index f957fedac..c6a5783c6 100644
--- a/test/web/mastodon_api/status_view_test.exs
+++ b/test/web/mastodon_api/status_view_test.exs
@@ -92,6 +92,7 @@ test "a note activity" do
replies_count: 0,
favourites_count: 0,
reblogged: false,
+ bookmarked: false,
favourited: false,
muted: false,
pinned: false,
diff --git a/test/web/node_info_test.exs b/test/web/node_info_test.exs
index 5981c70a7..763549bd1 100644
--- a/test/web/node_info_test.exs
+++ b/test/web/node_info_test.exs
@@ -12,7 +12,7 @@ test "nodeinfo shows staff accounts", %{conn: conn} do
conn =
conn
- |> get("/nodeinfo/2.0.json")
+ |> get("/nodeinfo/2.1.json")
assert result = json_response(conn, 200)
@@ -22,7 +22,7 @@ test "nodeinfo shows staff accounts", %{conn: conn} do
test "nodeinfo shows restricted nicknames", %{conn: conn} do
conn =
conn
- |> get("/nodeinfo/2.0.json")
+ |> get("/nodeinfo/2.1.json")
assert result = json_response(conn, 200)
@@ -41,6 +41,38 @@ test "returns 404 when federation is disabled", %{conn: conn} do
|> get("/.well-known/nodeinfo")
|> json_response(404)
+ conn
+ |> get("/nodeinfo/2.1.json")
+ |> json_response(404)
+
+ instance =
+ Application.get_env(:pleroma, :instance)
+ |> Keyword.put(:federating, true)
+
+ Application.put_env(:pleroma, :instance, instance)
+ end
+
+ test "returns 200 when federation is enabled", %{conn: conn} do
+ conn
+ |> get("/.well-known/nodeinfo")
+ |> json_response(200)
+
+ conn
+ |> get("/nodeinfo/2.1.json")
+ |> json_response(200)
+ end
+
+ test "returns 404 when federation is disabled (nodeinfo 2.0)", %{conn: conn} do
+ instance =
+ Application.get_env(:pleroma, :instance)
+ |> Keyword.put(:federating, false)
+
+ Application.put_env(:pleroma, :instance, instance)
+
+ conn
+ |> get("/.well-known/nodeinfo")
+ |> json_response(404)
+
conn
|> get("/nodeinfo/2.0.json")
|> json_response(404)
@@ -52,7 +84,7 @@ test "returns 404 when federation is disabled", %{conn: conn} do
Application.put_env(:pleroma, :instance, instance)
end
- test "returns 200 when federation is enabled", %{conn: conn} do
+ test "returns 200 when federation is enabled (nodeinfo 2.0)", %{conn: conn} do
conn
|> get("/.well-known/nodeinfo")
|> json_response(200)
@@ -61,4 +93,17 @@ test "returns 200 when federation is enabled", %{conn: conn} do
|> get("/nodeinfo/2.0.json")
|> json_response(200)
end
+
+ test "returns software.repository field in nodeinfo 2.1", %{conn: conn} do
+ conn
+ |> get("/.well-known/nodeinfo")
+ |> json_response(200)
+
+ conn =
+ conn
+ |> get("/nodeinfo/2.1.json")
+
+ assert result = json_response(conn, 200)
+ assert Pleroma.Application.repository() == result["software"]["repository"]
+ end
end
diff --git a/test/web/ostatus/incoming_documents/delete_handling_test.exs b/test/web/ostatus/incoming_documents/delete_handling_test.exs
index c8fbff6cc..d97cd79f4 100644
--- a/test/web/ostatus/incoming_documents/delete_handling_test.exs
+++ b/test/web/ostatus/incoming_documents/delete_handling_test.exs
@@ -2,9 +2,16 @@ defmodule Pleroma.Web.OStatus.DeleteHandlingTest do
use Pleroma.DataCase
import Pleroma.Factory
+ import Tesla.Mock
+
alias Pleroma.{Repo, Activity, Object}
alias Pleroma.Web.OStatus
+ setup do
+ mock(fn env -> apply(HttpRequestMock, :request, [env]) end)
+ :ok
+ end
+
describe "deletions" do
test "it removes the mentioned activity" do
note = insert(:note_activity)
diff --git a/test/web/ostatus/ostatus_controller_test.exs b/test/web/ostatus/ostatus_controller_test.exs
index 954abf5fe..3145ca9a1 100644
--- a/test/web/ostatus/ostatus_controller_test.exs
+++ b/test/web/ostatus/ostatus_controller_test.exs
@@ -14,49 +14,51 @@ defmodule Pleroma.Web.OStatus.OStatusControllerTest do
:ok
end
- test "decodes a salmon", %{conn: conn} do
- user = insert(:user)
- salmon = File.read!("test/fixtures/salmon.xml")
+ describe "salmon_incoming" do
+ test "decodes a salmon", %{conn: conn} do
+ user = insert(:user)
+ salmon = File.read!("test/fixtures/salmon.xml")
- conn =
- conn
- |> put_req_header("content-type", "application/atom+xml")
- |> post("/users/#{user.nickname}/salmon", salmon)
+ conn =
+ conn
+ |> put_req_header("content-type", "application/atom+xml")
+ |> post("/users/#{user.nickname}/salmon", salmon)
- assert response(conn, 200)
- end
+ assert response(conn, 200)
+ end
- test "decodes a salmon with a changed magic key", %{conn: conn} do
- user = insert(:user)
- salmon = File.read!("test/fixtures/salmon.xml")
+ test "decodes a salmon with a changed magic key", %{conn: conn} do
+ user = insert(:user)
+ salmon = File.read!("test/fixtures/salmon.xml")
- conn =
- conn
- |> put_req_header("content-type", "application/atom+xml")
- |> post("/users/#{user.nickname}/salmon", salmon)
+ conn =
+ conn
+ |> put_req_header("content-type", "application/atom+xml")
+ |> post("/users/#{user.nickname}/salmon", salmon)
- assert response(conn, 200)
+ assert response(conn, 200)
- # Set a wrong magic-key for a user so it has to refetch
- salmon_user = User.get_by_ap_id("http://gs.example.org:4040/index.php/user/1")
- # Wrong key
- info_cng =
- User.Info.remote_user_creation(salmon_user.info, %{
- magic_key:
- "RSA.pu0s-halox4tu7wmES1FVSx6u-4wc0YrUFXcqWXZG4-27UmbCOpMQftRCldNRfyA-qLbz-eqiwrong1EwUvjsD4cYbAHNGHwTvDOyx5AKthQUP44ykPv7kjKGh3DWKySJvcs9tlUG87hlo7AvnMo9pwRS_Zz2CacQ-MKaXyDepk=.AQAB"
- })
+ # Set a wrong magic-key for a user so it has to refetch
+ salmon_user = User.get_by_ap_id("http://gs.example.org:4040/index.php/user/1")
+ # Wrong key
+ info_cng =
+ User.Info.remote_user_creation(salmon_user.info, %{
+ magic_key:
+ "RSA.pu0s-halox4tu7wmES1FVSx6u-4wc0YrUFXcqWXZG4-27UmbCOpMQftRCldNRfyA-qLbz-eqiwrong1EwUvjsD4cYbAHNGHwTvDOyx5AKthQUP44ykPv7kjKGh3DWKySJvcs9tlUG87hlo7AvnMo9pwRS_Zz2CacQ-MKaXyDepk=.AQAB"
+ })
- salmon_user
- |> Ecto.Changeset.change()
- |> Ecto.Changeset.put_embed(:info, info_cng)
- |> Repo.update()
+ salmon_user
+ |> Ecto.Changeset.change()
+ |> Ecto.Changeset.put_embed(:info, info_cng)
+ |> Repo.update()
- conn =
- build_conn()
- |> put_req_header("content-type", "application/atom+xml")
- |> post("/users/#{user.nickname}/salmon", salmon)
+ conn =
+ build_conn()
+ |> put_req_header("content-type", "application/atom+xml")
+ |> post("/users/#{user.nickname}/salmon", salmon)
- assert response(conn, 200)
+ assert response(conn, 200)
+ end
end
test "gets a feed", %{conn: conn} do
diff --git a/test/web/ostatus/ostatus_test.exs b/test/web/ostatus/ostatus_test.exs
index 403cc7095..dbe5de2e2 100644
--- a/test/web/ostatus/ostatus_test.exs
+++ b/test/web/ostatus/ostatus_test.exs
@@ -6,7 +6,7 @@ defmodule Pleroma.Web.OStatusTest do
use Pleroma.DataCase
alias Pleroma.Web.OStatus
alias Pleroma.Web.XML
- alias Pleroma.{Object, Repo, User, Activity}
+ alias Pleroma.{Object, Repo, User, Activity, Instances}
import Pleroma.Factory
import ExUnit.CaptureLog
@@ -311,6 +311,22 @@ test "handle incoming unfollows with existing follow" do
refute User.following?(follower, followed)
end
+ test "it clears `unreachable` federation status of the sender" do
+ incoming_reaction_xml = File.read!("test/fixtures/share-gs.xml")
+ doc = XML.parse_document(incoming_reaction_xml)
+ actor_uri = XML.string_from_xpath("//author/uri[1]", doc)
+ reacted_to_author_uri = XML.string_from_xpath("//author/uri[2]", doc)
+
+ Instances.set_consistently_unreachable(actor_uri)
+ Instances.set_consistently_unreachable(reacted_to_author_uri)
+ refute Instances.reachable?(actor_uri)
+ refute Instances.reachable?(reacted_to_author_uri)
+
+ {:ok, _} = OStatus.handle_incoming(incoming_reaction_xml)
+ assert Instances.reachable?(actor_uri)
+ refute Instances.reachable?(reacted_to_author_uri)
+ end
+
describe "new remote user creation" do
test "returns local users" do
local_user = insert(:user)
@@ -514,6 +530,8 @@ test "Article objects are not representable" do
note_object.data
|> Map.put("type", "Article")
+ Cachex.clear(:object_cache)
+
cs = Object.change(note_object, %{data: note_data})
{:ok, _article_object} = Repo.update(cs)
diff --git a/test/web/rich_media/parser_test.exs b/test/web/rich_media/parser_test.exs
index 93a58c528..47b127cf9 100644
--- a/test/web/rich_media/parser_test.exs
+++ b/test/web/rich_media/parser_test.exs
@@ -88,4 +88,8 @@ test "parses OEmbed" do
width: "1024"
}}
end
+
+ test "rejects invalid OGP data" do
+ assert {:error, _} = Pleroma.Web.RichMedia.Parser.parse("http://example.com/malformed")
+ end
end
diff --git a/test/web/twitter_api/twitter_api_test.exs b/test/web/twitter_api/twitter_api_test.exs
index f94e2b873..48ddbcf50 100644
--- a/test/web/twitter_api/twitter_api_test.exs
+++ b/test/web/twitter_api/twitter_api_test.exs
@@ -200,12 +200,27 @@ test "upload a file" do
test "it favorites a status, returns the updated activity" do
user = insert(:user)
+ other_user = insert(:user)
note_activity = insert(:note_activity)
{:ok, status} = TwitterAPI.fav(user, note_activity.id)
updated_activity = Activity.get_by_ap_id(note_activity.data["id"])
+ assert ActivityView.render("activity.json", %{activity: updated_activity})["fave_num"] == 1
+
+ object = Object.normalize(note_activity.data["object"])
+
+ assert object.data["like_count"] == 1
assert status == updated_activity
+
+ {:ok, _status} = TwitterAPI.fav(other_user, note_activity.id)
+
+ object = Object.normalize(note_activity.data["object"])
+
+ assert object.data["like_count"] == 2
+
+ updated_activity = Activity.get_by_ap_id(note_activity.data["id"])
+ assert ActivityView.render("activity.json", %{activity: updated_activity})["fave_num"] == 2
end
test "it unfavorites a status, returns the updated activity" do
diff --git a/test/web/websub/websub_controller_test.exs b/test/web/websub/websub_controller_test.exs
index 9cbcda063..6492df2a0 100644
--- a/test/web/websub/websub_controller_test.exs
+++ b/test/web/websub/websub_controller_test.exs
@@ -50,35 +50,37 @@ test "websub subscription confirmation", %{conn: conn} do
assert_in_delta NaiveDateTime.diff(websub.valid_until, NaiveDateTime.utc_now()), 100, 5
end
- test "handles incoming feed updates", %{conn: conn} do
- websub = insert(:websub_client_subscription)
- doc = "some stuff"
- signature = Websub.sign(websub.secret, doc)
+ describe "websub_incoming" do
+ test "handles incoming feed updates", %{conn: conn} do
+ websub = insert(:websub_client_subscription)
+ doc = "some stuff"
+ signature = Websub.sign(websub.secret, doc)
- conn =
- conn
- |> put_req_header("x-hub-signature", "sha1=" <> signature)
- |> put_req_header("content-type", "application/atom+xml")
- |> post("/push/subscriptions/#{websub.id}", doc)
+ conn =
+ conn
+ |> put_req_header("x-hub-signature", "sha1=" <> signature)
+ |> put_req_header("content-type", "application/atom+xml")
+ |> post("/push/subscriptions/#{websub.id}", doc)
- assert response(conn, 200) == "OK"
+ assert response(conn, 200) == "OK"
- assert length(Repo.all(Activity)) == 1
- end
+ assert length(Repo.all(Activity)) == 1
+ end
- test "rejects incoming feed updates with the wrong signature", %{conn: conn} do
- websub = insert(:websub_client_subscription)
- doc = "some stuff"
- signature = Websub.sign("wrong secret", doc)
+ test "rejects incoming feed updates with the wrong signature", %{conn: conn} do
+ websub = insert(:websub_client_subscription)
+ doc = "some stuff"
+ signature = Websub.sign("wrong secret", doc)
- conn =
- conn
- |> put_req_header("x-hub-signature", "sha1=" <> signature)
- |> put_req_header("content-type", "application/atom+xml")
- |> post("/push/subscriptions/#{websub.id}", doc)
+ conn =
+ conn
+ |> put_req_header("x-hub-signature", "sha1=" <> signature)
+ |> put_req_header("content-type", "application/atom+xml")
+ |> post("/push/subscriptions/#{websub.id}", doc)
- assert response(conn, 500) == "Error"
+ assert response(conn, 500) == "Error"
- assert length(Repo.all(Activity)) == 0
+ assert length(Repo.all(Activity)) == 0
+ end
end
end
Czsto o tym myl. Dziki za te celne uwagi.
oczyci nieznacznie z substancji lotnych, ale nie z pyw
Filtr wglowy nie suy do zatrzymywania pyw. Jeeli sam chcesz zrobi filtr smogu, czyli czstek okoo 1 mikrona potrzebujesz wkniny min klasy F9 a lepiej E10-11. Wtedy niestety wzrastaj opory przepywu i bdziesz potrzebowa wentylatora nieco wyszych cinie, np limakowego. Wszystko to oczywicie trzeba uszczelini. Taniej moe by jednak kupi gotowy.