commit - /dev/null
commit + 5ab01960fc89baeb44426ca4fbf123d95c00c622
blob - /dev/null
blob + 2a1ba1e1e919dc57d0ca479d6b811391a0583685 (mode 644)
--- /dev/null
+++ LICENSE
+Copyright 2026 Rohan Verma
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
blob - /dev/null
blob + 600407724c7f28b07b393595d9a69f03bbc97298 (mode 644)
--- /dev/null
+++ README.md
+# my dotfiles
+
+a very universal theme with most apps
+
+## tree meaning
+
+**setup**
+* bin directory holds all the files in ~/.local/bin
+* millennium is for millennium, a steam homebrew extension that adds theming
+* config holds files in .config
+* images holds the images in this README so i can showcase it
+* firefox userChrome.css in the browser dir, you can copy and paste into your profiles root dir, my colorscheme is [here](https://addons.mozilla.org/en-US/firefox/addon/111111-fox/)
+* wallpapers directory is all the wallpapers i personally use
+* fonts dir has the font i use
+
+on waves, i use soulseek to download the music files, configuration is required for that part, i have given my podman-compose & app.yml
blob - /dev/null
blob + 39544e91695a075ddcf3d44a1a7d64002304539b (mode 755)
--- /dev/null
+++ bin/dmenu-lower
+#!/bin/sh
+
+# store original list
+input="$(cat)"
+
+# lowercase version for display
+lower="$(printf '%s\n' "$input" | tr '[:upper:]' '[:lower:]')"
+
+# run dmenu on lowercase
+selected="$(printf '%s\n' "$lower" | dmenu "$@")" || exit 1
+
+# map back to original
+printf '%s\n' "$input" | awk -v sel="$selected" '
+{
+ if (tolower($0) == sel) {
+ print $0
+ exit
+ }
+}'
blob - /dev/null
blob + 4cc09f6d6dbdad3510ceb28d48140dc18fe0d521 (mode 755)
--- /dev/null
+++ bin/wmenu-lower
+#!/bin/sh
+input="$(cat)"
+lower="$(printf '%s\n' "$input" | tr '[:upper:]' '[:lower:]')"
+selected="$(printf '%s\n' "$lower" | wmenu -i -N 111111 -n 888888 -S 111111 -s ffffff -f 'Apple Garamond Light 16')" || exit 1
+printf '%s\n' "$input" | awk -v sel="$selected" '
+{
+ if (tolower($0) == sel) {
+ print $0
+ exit
+ }
+}'
blob - /dev/null
blob + 44b8d053d4c6cbc5943756ac9d99b23f0e608963 (mode 755)
--- /dev/null
+++ bin/wrdn
+#!/bin/sh
+
+copy() {
+ if command -v wl-copy >/dev/null 2>&1; then
+ wl-copy "$1"
+ else
+ printf '%s' "$1" | xclip -selection clipboard
+ fi
+}
+
+has_totp() {
+ rbw code "$1" >/dev/null 2>&1
+}
+
+while :; do
+ entry="$(rbw ls | fzf --prompt='vault> ')" || exit 0
+ [ -n "$entry" ] || exit 0
+
+ while :; do
+ if has_totp "$entry"; then
+ choice="$(printf '%s\n' \
+ 'copy username' \
+ 'copy password' \
+ 'copy otp' \
+ 'back' \
+ | fzf --prompt="$entry > ")" || exit 0
+ else
+ choice="$(printf '%s\n' \
+ 'copy username' \
+ 'copy password' \
+ 'back' \
+ | fzf --prompt="$entry > ")" || exit 0
+ fi
+
+ case "$choice" in
+ 'copy username')
+ copy "$(rbw get --field username "$entry")"
+ ;;
+ 'copy password')
+ copy "$(rbw get "$entry")"
+ ;;
+ 'copy otp')
+ copy "$(rbw code "$entry")"
+ ;;
+ 'back')
+ break
+ ;;
+ *)
+ exit 0
+ ;;
+ esac
+ done
+done
blob - /dev/null
blob + bd970ecce6127ea6bae727a0130201c0e3852d53 (mode 644)
--- /dev/null
+++ browser/README.md
+# LibreWolf Setup
+
+put the 'chrome' folder inside of your librewolf root dir
blob - /dev/null
blob + f6a9f1c1d5a4ad3d66271b41a9b71e4d8216a18e (mode 644)
--- /dev/null
+++ browser/chrome/userChrome.css
+* {
+ font-family: "Apple Garamond Light" !important;
+ font-size: 16px !important;
+ border-radius: 0 !important;
+}
+
+#TabsToolbar,
+#TabsToolbar *,
+#nav-bar,
+#nav-bar *,
+#urlbar,
+#urlbar *,
+#searchbar,
+#searchbar *,
+#PersonalToolbar,
+#PersonalToolbar *,
+#toolbar-menubar,
+#toolbar-menubar *,
+.tab-label,
+.tab-text,
+toolbarbutton,
+.toolbarbutton-text,
+menupopup,
+menu,
+menuitem,
+panel,
+panelview {
+ font-family: "Apple Garamond Light" !important;
+ font-size: 16px !important;
+}
+
+.tabbrowser-tab[selected] .tab-label,
+#toolbar-menubar menu[_moz-menuactive="true"],
+menupopup menuitem[_moz-menuactive="true"],
+menupopup menu[_moz-menuactive="true"],
+strong,
+b {
+ font-family: "Apple Garamond" !important;
+ font-weight: 700 !important;
+}
+
+#sidebar-box #sidebar-header {
+ display: none !important;
+}
+
+#TabsToolbar {
+ display: block !important;
+ position: relative !important;
+ z-index: 20 !important;
+}
+
+#navigator-toolbox {
+ position: relative !important;
+ z-index: 30 !important;
+}
+
+#nav-bar {
+ position: absolute !important;
+ top: 100% !important;
+ left: 0 !important;
+ right: 0 !important;
+ z-index: 1000 !important;
+
+ margin: 0 !important;
+ border: 0 !important;
+ background: var(--toolbar-bgcolor) !important;
+
+ opacity: 0 !important;
+ visibility: hidden !important;
+ pointer-events: none !important;
+}
+
+#TabsToolbar:hover ~ #nav-bar,
+#nav-bar:hover,
+#nav-bar:focus-within,
+#urlbar[open],
+#nav-bar:has(toolbarbutton[open]),
+#nav-bar:has(toolbaritem[open]),
+#nav-bar:has(panel[panelopen]),
+#nav-bar:has(menupopup[open]) {
+ opacity: 1 !important;
+ visibility: visible !important;
+ pointer-events: auto !important;
+}
+
+#main-window:has(panel[panelopen]) #nav-bar,
+#main-window:has(menupopup[open]) #nav-bar,
+#main-window:has(#urlbar[open]) #nav-bar,
+#main-window:has(#customizationui-widget-panel[panelopen]) #nav-bar,
+#main-window:has(#appMenu-popup[panelopen]) #nav-bar,
+#main-window:has(#widget-overflow[panelopen]) #nav-bar,
+#main-window:has(toolbarbutton[open]) #nav-bar,
+#main-window:has(toolbaritem[open]) #nav-bar,
+#main-window:has([popover][open]) #nav-bar {
+ opacity: 1 !important;
+ visibility: visible !important;
+ pointer-events: auto !important;
+}
+
+#mainPopupSet,
+#PopupAutoComplete,
+#UrlbarView,
+.urlbarView,
+panel,
+menupopup {
+ z-index: 2000 !important;
+}
+
+#identity-box,
+#tracking-protection-icon-container,
+#star-button-box,
+#page-action-buttons,
+#reader-mode-button,
+#translations-button,
+#urlbar-go-button,
+#permissions-granted-icon,
+#notification-popup-box,
+#urlbar-searchmode-switcher {
+ display: none !important;
+}
blob - /dev/null
blob + f176e23b7b198610348fd6b21acc12a7c45b5713 (mode 755)
--- /dev/null
+++ config/bspwm/bar.sh
+#!/bin/sh
+
+MON="DP-1"
+BAR_H=32
+BG="#111111"
+FG="#dddddd"
+FL="Apple Garamond Light:pixelsize=20"
+FA="Apple Garamond:style=Bold:pixelsize=20"
+FIFO="/tmp/panel-fifo.$$"
+
+WAVES_DB="${HOME}/.local/share/waves/waves.db"
+
+cleanup() {
+ rm -f "$FIFO"
+ pkill -P $$ 2>/dev/null
+}
+trap cleanup EXIT INT TERM
+
+rm -f "$FIFO"
+mkfifo "$FIFO" || exit 1
+
+BAR_GEOM="$(xrandr | awk -v mon="$MON" -v h="$BAR_H" '
+$1 == mon && $2 == "connected" {
+ for (i = 3; i <= NF; i++) {
+ if ($i ~ /^[0-9]+x[0-9]+\+[0-9]+\+[0-9]+$/) {
+ split($i, a, /[x+]/)
+ printf "%dx%d+%d+%d", a[1], h, a[3], a[4]
+ exit
+ }
+ }
+}')"
+[ -n "$BAR_GEOM" ] || exit 1
+
+bspc config -m DP-1 top_padding 32
+bspc config -m DP-2 top_padding 0
+
+workspaces() {
+ bspc subscribe report | while IFS= read -r line; do
+ out=""
+ oldifs=$IFS
+ IFS=':'
+ set -- $line
+ IFS=$oldifs
+ for item in "$@"; do
+ name="${item#?}"
+ case "$item" in
+ [FOU]*)
+ [ "$name" = "Desktop" ] && continue
+ [ "$name" = "0" ] && continue
+ out="${out}%{T2} ${name} %{T-}"
+ ;;
+ [ou]*)
+ [ "$name" = "Desktop" ] && continue
+ [ "$name" = "0" ] && continue
+ out="${out}%{T1} ${name} %{T-}"
+ ;;
+ esac
+ done
+ printf 'WSP|%s\n' "$out"
+ done
+}
+
+title() {
+ xtitle -s | while IFS= read -r line; do
+ line=$(printf '%s' "$line" | tr '[:upper:]' '[:lower:]')
+ printf 'TTL|%s\n' "$line"
+ done
+}
+
+nowplaying() {
+ while :; do
+ np=""
+ if [ -f "$WAVES_DB" ]; then
+ np=$(sqlite3 "$WAVES_DB" \
+ "SELECT qt.artist || ' - ' || qt.title FROM queue_tracks qt JOIN queue_state qs ON qt.position = qs.current_index WHERE qs.current_index >= 0;" \
+ 2>/dev/null)
+ fi
+ if [ -n "$np" ]; then
+ np=$(printf '%s' "$np" | tr '[:upper:]' '[:lower:]')
+ printf 'NP|%s\n' "$np"
+ else
+ printf 'NP|\n'
+ fi
+ sleep 2
+ done
+}
+
+volume() {
+ while :; do
+ if pamixer --get-mute 2>/dev/null | grep -q true; then
+ printf 'VOL|muted\n'
+ else
+ printf 'VOL|vol %s%%\n' "$(pamixer --get-volume 2>/dev/null)"
+ fi
+ sleep 1
+ done
+}
+
+clock() {
+ while :; do
+ printf 'TIM|%s\n' "$(date '+%I:%M %p' | tr '[:upper:]' '[:lower:]')"
+ printf 'DAT|%s\n' "$(date '+%a %d %b' | tr '[:upper:]' '[:lower:]')"
+ sleep 1
+ done
+}
+
+workspaces > "$FIFO" &
+title > "$FIFO" &
+nowplaying > "$FIFO" &
+volume > "$FIFO" &
+clock > "$FIFO" &
+
+WSP=""
+TTL=""
+VOL=""
+TIM=""
+DAT=""
+NP=""
+
+while IFS='|' read -r tag val; do
+ case "$tag" in
+ WSP) WSP=$val ;;
+ TTL) TTL=$val ;;
+ NP) NP=$val ;;
+ VOL) VOL=$val ;;
+ TIM) TIM=$val ;;
+ DAT) DAT=$val ;;
+ esac
+ RIGHT=""
+ [ -n "$NP" ] && RIGHT="${NP} "
+ RIGHT="${RIGHT}${VOL} ${TIM} ${DAT}"
+ printf '%%{l}%s%%{c}%%{T1}%s%%{T-}%%{r}%%{T1}%s%%{T-}\n' \
+ "$WSP" "$TTL" "$RIGHT"
+done < "$FIFO" | lemonbar \
+ -B "$BG" \
+ -F "$FG" \
+ -g "$BAR_GEOM" \
+ -f "$FL" \
+ -f "$FA"
blob - /dev/null
blob + a65cd2a261d879a5945f1566e0c57ad6f5c51e34 (mode 755)
--- /dev/null
+++ config/bspwm/bspwmrc
+#!/bin/sh
+(sleep 2 && pipewire) &
+xrandr --dpi 96 --output DP-1 --mode 1920x1080 --rate 240
+
+setxkbmap us
+pgrep -x sxhkd >/dev/null || sxhkd &
+
+xinput --set-prop "Logitech USB Receiver" "libinput Accel Profile Enabled" 0, 1
+xinput --set-prop "Logitech USB Receiver" "libinput Accel Speed" -0.4
+
+feh --bg-fill /home/rohan/wallpapers/os-x-leopard-stock-5120x3200-24053.jpg
+
+bspc config window_gap 0
+bspc config split_ratio 0.5
+bspc config focus_follows_pointer true
+bspc config pointer_follows_focus true
+bspc config normal_border_color '#111111'
+bspc config active_border_color '#111111'
+bspc config focused_border_color '#222222'
+bspc config presel_feedback_color '#111111'
+
+bspc monitor DP-1 -d 1 2 3 4 5 6 7 8 9
+bspc monitor DP-2 -d 0
+
+bspc config -m DP-1 top_padding 32
+
+bspc subscribe node_add | while read -r _ _ _ _ node; do
+ sleep 0.1
+ role=$(xprop -id "$node" WM_WINDOW_ROLE 2>/dev/null)
+ case "$role" in
+ *PictureInPicture*)
+ bspc node "$node" -t floating
+ bspc node "$node" --flag sticky=on
+ bspc node "$node" -l above
+ ;;
+ esac
+done &
+
+(sleep 1; pkill -x lemonbar; pkill -f "$HOME/.config/bspwm/bar.sh"; "$HOME/.config/bspwm/bar.sh" &) &
+
+(sleep 3; bspc config -m DP-2 top_padding 0) &
+
blob - /dev/null
blob + ca158b7771d81194d27590bca8da7fa7edcc9563 (mode 644)
--- /dev/null
+++ config/foot/foot.ini
+[main]
+term=xterm-256color
+shell=/bin/mksh
+login-shell=no
+initial-window-size-chars=120x35
+pad=8x8
+bold-text-in-bright=no
+word-delimiters=,│`|:"'()[]{}<>
+font=monospace:size=14
+font-bold=monospace:weight=bold:size=14
+font-italic=monospace:slant=italic:size=14
+font-bold-italic=monospace:weight=bold:slant=italic:size=14
+
+[bell]
+urgent=no
+notify=no
+visual=no
+
+[scrollback]
+lines=10000
+multiplier=3.0
+indicator-position=none
+
+[url]
+launch=xdg-open ${url}
+osc8-underline=url-mode
+
+[cursor]
+style=beam
+blink=yes
+blink-rate=500
+beam-thickness=1.5
+
+[mouse]
+hide-when-typing=yes
+alternate-scroll-mode=yes
+
+[tweak]
+font-monospace-warn=no
+
+[colors-dark]
+alpha=1.0
+foreground=dddddd
+background=111111
+
+regular0=333333
+bright0=555555
+regular1=cc5555
+bright1=ff7777
+regular2=55aa55
+bright2=77cc77
+regular3=aaaa44
+bright3=dddd66
+regular4=5577cc
+bright4=7799ff
+regular5=aa55aa
+bright5=dd77dd
+regular6=44aaaa
+bright6=66dddd
+regular7=bbbbbb
+bright7=dddddd
+
+[key-bindings]
+scrollback-up-page=shift+Page_Up
+scrollback-down-page=shift+Page_Down
+clipboard-copy=Control+Shift+c
+clipboard-paste=Control+Shift+v
+search-start=Control+Shift+r
+font-increase=Control+equal
+font-decrease=Control+minus
+font-reset=Control+0
+spawn-terminal=Control+Shift+n
blob - /dev/null
blob + a3c50b4f2dc7a7041473770cd32430fbbff6ebad (mode 644)
--- /dev/null
+++ config/nvim/init.lua
+vim.opt.wrap = true
+
+vim.opt.number = true
+vim.opt.relativenumber = false
+
+vim.opt.termguicolors = false
+vim.cmd("highlight Normal guibg=NONE ctermbg=NONE")
+vim.cmd("highlight NonText guibg=NONE ctermbg=NONE")
+vim.cmd("highlight LineNr guibg=NONE ctermbg=NONE")
+vim.cmd("highlight SignColumn guibg=NONE ctermbg=NONE")
+
+vim.cmd("set t_Co=16")
+
+vim.cmd("syntax on")
+
+vim.opt.showmode = false
+vim.opt.laststatus = 0
+vim.opt.ruler = false
+vim.opt.cmdheight = 1
+
+vim.opt.tabstop = 2
+vim.opt.shiftwidth = 2
+vim.opt.softtabstop = 2
+vim.opt.expandtab = true
blob - /dev/null
blob + 096d791f6cc339f037819de3354bd8e5fa8001b4 (mode 755)
--- /dev/null
+++ config/sway/bar.sh
+#!/bin/sh
+WAVES_DB="${HOME}/.local/share/waves/waves.db"
+
+nowplaying() {
+ np=""
+ if [ -f "$WAVES_DB" ]; then
+ np=$(sqlite3 "$WAVES_DB" \
+ "SELECT qt.artist || ' - ' || qt.title FROM queue_tracks qt JOIN queue_state qs ON qt.position = qs.current_index WHERE qs.current_index >= 0;" \
+ 2>/dev/null)
+ fi
+ printf '%s' "$np" | tr '[:upper:]' '[:lower:]'
+}
+
+volume() {
+ if wpctl get-volume @DEFAULT_AUDIO_SINK@ 2>/dev/null | grep -q MUTED; then
+ printf 'muted'
+ else
+ vol=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{printf "%d", $2 * 100}')
+ printf 'vol %s%%' "$vol"
+ fi
+}
+
+while :; do
+ NP=$(nowplaying)
+ VOL=$(volume)
+ TIM=$(date '+%I:%M %p' | tr '[:upper:]' '[:lower:]')
+ DAT=$(date '+%a %d %b' | tr '[:upper:]' '[:lower:]')
+
+ if [ -n "$NP" ]; then
+ printf '%s %s %s %s\n' "$NP" "$VOL" "$TIM" "$DAT"
+ else
+ printf '%s %s %s\n' "$VOL" "$TIM" "$DAT"
+ fi
+ sleep 1
+done
blob - /dev/null
blob + aaa54d1ec670b50343200add3d1800c6453824bf (mode 644)
--- /dev/null
+++ config/sway/config
+set $mod Mod4
+set $left h
+set $down j
+set $up k
+set $right l
+set $term foot
+set $menu j4-dmenu-desktop --dmenu="~/.local/bin/wmenu-lower" --no-generic
+
+output DP-1 mode 1920x1080@240Hz pos 0 0
+output DP-2 mode 1920x1080 pos 1920 0
+
+workspace 1 output DP-1
+workspace 2 output DP-1
+workspace 3 output DP-1
+workspace 4 output DP-1
+workspace 5 output DP-1
+workspace 6 output DP-1
+workspace 7 output DP-1
+workspace 8 output DP-1
+workspace 9 output DP-1
+workspace 0 output DP-2
+
+exec_always sleep 2 && pipewire
+exec_always setxkbmap us
+bar {
+ output DP-1
+ status_command ~/.config/sway/bar.sh
+ position top
+ font Apple Garamond Light 16
+ colors {
+ background #111111
+ statusline #dddddd
+ focused_workspace #111111 #111111 #ffffff
+ active_workspace #111111 #111111 #888888
+ inactive_workspace #111111 #111111 #888888
+ }
+ height 32
+}
+
+input type:keyboard {
+ xkb_layout us
+ repeat_delay 300
+ repeat_rate 50
+}
+input "1133:50503:Logitech_USB_Receiver" {
+ accel_profile flat
+ pointer_accel -0.4
+}
+
+gaps inner 0
+gaps outer 0
+default_border pixel 2
+default_floating_border pixel 2
+font pango:monospace 10
+focus_follows_mouse yes
+
+floating_modifier $mod normal
+
+# class border bg text indicator child_border
+client.focused #222222 #222222 #dddddd #222222 #222222
+client.focused_inactive #111111 #111111 #888888 #111111 #111111
+client.unfocused #111111 #111111 #666666 #111111 #111111
+client.urgent #ff5555 #ff5555 #ffffff #ff5555 #ff5555
+
+bindsym $mod+Return exec $term
+bindsym $mod+q exec $term
+bindsym $mod+c kill
+bindsym $mod+r exec $menu
+bindsym $mod+Shift+r reload
+bindsym $mod+Shift+e exit
+
+bindsym $mod+$left focus left
+bindsym $mod+$down focus down
+bindsym $mod+$up focus up
+bindsym $mod+$right focus right
+bindsym $mod+Left focus left
+bindsym $mod+Down focus down
+bindsym $mod+Up focus up
+bindsym $mod+Right focus right
+
+bindsym $mod+Shift+$left move left
+bindsym $mod+Shift+$down move down
+bindsym $mod+Shift+$up move up
+bindsym $mod+Shift+$right move right
+bindsym $mod+Shift+Left move left
+bindsym $mod+Shift+Down move down
+bindsym $mod+Shift+Up move up
+bindsym $mod+Shift+Right move right
+
+bindsym $mod+b splith
+bindsym $mod+v splitv
+bindsym $mod+s layout stacking
+bindsym $mod+w layout tabbed
+bindsym $mod+e layout toggle split
+bindsym $mod+f floating toggle
+bindsym $mod+Shift+f fullscreen toggle
+bindsym $mod+space focus mode_toggle
+bindsym $mod+a focus parent
+
+bindsym $mod+1 workspace number 1
+bindsym $mod+2 workspace number 2
+bindsym $mod+3 workspace number 3
+bindsym $mod+4 workspace number 4
+bindsym $mod+5 workspace number 5
+bindsym $mod+6 workspace number 6
+bindsym $mod+7 workspace number 7
+bindsym $mod+8 workspace number 8
+bindsym $mod+9 workspace number 9
+bindsym $mod+0 workspace number 0
+
+bindsym $mod+Shift+1 move container to workspace number 1
+bindsym $mod+Shift+2 move container to workspace number 2
+bindsym $mod+Shift+3 move container to workspace number 3
+bindsym $mod+Shift+4 move container to workspace number 4
+bindsym $mod+Shift+5 move container to workspace number 5
+bindsym $mod+Shift+6 move container to workspace number 6
+bindsym $mod+Shift+7 move container to workspace number 7
+bindsym $mod+Shift+8 move container to workspace number 8
+bindsym $mod+Shift+9 move container to workspace number 9
+bindsym $mod+Shift+0 move container to workspace number 0
+
+bindsym $mod+equal exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
+bindsym $mod+minus exec wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
+bindsym $mod+m exec wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
+
+bindsym $mod+Shift+s exec grim -g "$(slurp)" - | wl-copy
+
+mode "resize" {
+ bindsym $left resize shrink width 10px
+ bindsym $down resize grow height 10px
+ bindsym $up resize shrink height 10px
+ bindsym $right resize grow width 10px
+ bindsym Left resize shrink width 10px
+ bindsym Down resize grow height 10px
+ bindsym Up resize shrink height 10px
+ bindsym Right resize grow width 10px
+ bindsym Return mode "default"
+ bindsym Escape mode "default"
+ bindsym $mod+z mode "default"
+}
+bindsym $mod+z mode "resize"
+
+include /etc/sway/config.d/*
blob - /dev/null
blob + e831216569bb908e3acb984f80831866fa4afb49 (mode 644)
--- /dev/null
+++ config/sxhkd/sxhkdrc
+super + q
+ st
+
+super + f
+ bspc node -t ~floating
+
+super + shift + f
+ bspc node -t ~fullscreen
+
+super + c
+ bspc node -c
+
+super + r
+ j4-dmenu-desktop --dmenu="~/.local/bin/dmenu-lower -i -fn 'Apple Garamond Light:size=16' -nb '#111111' -nf '#888888' -sb '#111111' -sf '#ffffff'" --no-generic
+
+super + 0
+ bspc desktop -f 0
+
+super + shift + 0
+ bspc node -d 0 --follow
+
+super + {1-9}
+ bspc desktop -f ^{1-9}
+
+super + shift + {1-9}
+ bspc node -d ^{1-9} --follow
+
+super + shift + r
+ pkill -x sxhkd; bspc wm -r
+
+super + shift + Escape
+ ~/.local/bin/exitx
+
+super + equal
+ wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%+
+
+super + minus
+ wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-
+
+super + m
+ wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
+
+super + shift + s
+ scrot -s /tmp/shot.png -e 'xclip -selection clipboard -t image/png -i $f && rm -f $f'
blob - /dev/null
blob + a3353e5b592e05d6c7ece93259e2fbfa8c074393 (mode 644)
--- /dev/null
+++ config/waves/config.toml
+[slskd]
+url = "http://localhost:5030"
+apikey = "b757043d95d8e7cf31b83e0ad6ff3a86e1a8d174beac1946e2391137c00ea62b"
+completed_path = "/home/rohan/music/completed"
+
+[theme]
+accent = "#dddddd"
+secondary = "#dddddd"
+text = "#dddddd"
+muted = "#dddddd"
+background = "#111111"
+border = "#dddddd"
+
+[slskd.filters]
+format = "both"
+no_slot = true
+track_count = true
blob - /dev/null
blob + 8909df17df5bb088fedbd6019cd51ee44042246a (mode 644)
--- /dev/null
+++ fonts/apple-garamond/.uuid
+5c728720-1083-49bd-b7d6-e529658101f8
\ No newline at end of file
blob - /dev/null
blob + bf121d73e7c48cc628142cfc43fd7d27a4753524 (mode 755)
Binary files /dev/null and fonts/apple-garamond/AppleGaramond-Bold.ttf differ
blob - /dev/null
blob + cbb6880da06fb61bccdb5855093f2337b9da1b53 (mode 755)
Binary files /dev/null and fonts/apple-garamond/AppleGaramond-BoldItalic.ttf differ
blob - /dev/null
blob + b6844367dc934e8d94e04b608fbaae46c5637fca (mode 755)
Binary files /dev/null and fonts/apple-garamond/AppleGaramond-Italic.ttf differ
blob - /dev/null
blob + a4400267c09199f7d0853a45f85f236df74e4a6e (mode 755)
Binary files /dev/null and fonts/apple-garamond/AppleGaramond-Light.ttf differ
blob - /dev/null
blob + 9c27b60990a6ed107a5edb4a43b1231b76ca33cd (mode 755)
Binary files /dev/null and fonts/apple-garamond/AppleGaramond-LightItalic.ttf differ
blob - /dev/null
blob + 9681b1f45c2d349ce51305b00e48df8568bd724d (mode 755)
Binary files /dev/null and fonts/apple-garamond/AppleGaramond.ttf differ
blob - /dev/null
blob + 83db53b076a48c38b4d6891ea2f9a431946fa22e (mode 644)
Binary files /dev/null and images/preview.webp differ
blob - /dev/null
blob + 07463195f8846df104e32d5ada065ba9c1117bee (mode 644)
--- /dev/null
+++ millennium/README.md
+# Steam Millennium Theme
+
+the original [theme](https://steambrew.app/theme?id=F8h9ZhwOdoNygNcAfjIZ) but slightly modified, you must setup millennium
blob - /dev/null
blob + 946f333f5f2cee5005d7eff19fad8dabc7c7473f (mode 644)
--- /dev/null
+++ millennium/simply-dark/README.md
+<div align="center">
+
+# Simply, Dark.
+A break from Steam's new eye-straining theme.
+
+If you enjoy this theme, please consider starring the project ⭐
+
+
+
+</div>
+
+
+## Installation
+1. Download and install [Millennium](https://steambrew.app/).
+1. Click the `Install` button on this theme page.
+1. Open Steam and navigate to `Steam -> Millennium`
+1. Select `Simple Dark.` on the `Client Theme`.
+
+## Issues
+If any bugs present themselves that inherently affect your Steam experience, you can fix them, create a pull request and become a contributor/developer.
+You can also create an issue and might be fixed for you.
+
+## Customization
+Simply dark allows you to customize some parts of the Steam client component. For now, there are 7 customization options available.
+
+1. **Color Settings**: Controls the color used in the theme.
+1. **Compacted Header**: Allows you to put the _"Store, Library, and Community"_ bar into one single row above with the Steam logo.
+1. **Wallet visibility**: Allows you to hide the wallet amount from user menu.
+1. **URL visibility**: Allows you to hide the URL bar when browsing inside the Steam client.
+1. **"What's New" visibility**: Allows you to hide recent updates and news from the games you own inside the library page.
+1. **Friends Outline**: Allows you show the friends status in friends tab via outline in the avatar.
+1. **Steam News Visibility**: Allows you hide the "megaphone" (steam news) icon on top right.
+
+## Contributing
+The theme itself does not require anything being built, but to edit the theme you have to launch Steam with -dev mode.
+This allows you to open the inspector on the Steam window, which allows you to edit CSS classes that you will forward to the theme.
+
+## Contributors
+Special Thanks to:
+- [shdwmtr](https://github.com/shdwmtr), [clawdius](https://github.com/clawdius), (developer)
+- [MapleAtMorning](https://github.com/MapleAtMorning) (maintaining).
+- [Preshyon](https://github.com/madmaxgrey) (bug fixing).
+
+Contributing is encouraged. Anyone can create a pull request if it's deemed useful.
blob - /dev/null
blob + a409cdd24dd44a6402f70dc1861e9058bb830934 (mode 644)
--- /dev/null
+++ millennium/simply-dark/Steam.css
+/* this client was made by ShadowMonster#5099 */
+/* please keep in mind the skinning on the steam client is part of the Fluent Steam Skin */
+/* The only thing I have contributed is library skin, downloads page skin, and game properties page */
+
+/* If you change any css make sure to use [class*=""] because the item tags change every update and you dont want to change every update */
+
+@import url(steam/DownloadsPage.css);
+@import url(steam/Properties.css);
+@import url(steam/TopBar.css);
+@import url(TitleBar.css);
+@import './reservedWebkitColors.css';
+
+::-webkit-scrollbar{
+ background-color: transparent !important;
+ border-radius: 10px !important;
+ width:18px !important;
+ -webkit-box-shadow: none !important;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background-color: var(--color-light) !important;
+}
+
+::-webkit-scrollbar-thumb {
+ background: var(--color-dark) !important;
+ border: 5px solid transparent !important;
+ background-clip: padding-box !important;
+ -webkit-box-shadow: none !important;
+ border-radius: 10px !important;
+}
+
+::-webkit-scrollbar-track {
+ background: transparent !important;
+ border-radius: 10px !important;
+}
+
+._2YwTwqFtU04JgwfzXSAcSV {
+ background: var(--color-darker);
+}
+
+.DialogContent {
+ background: var(--color-darker) !important;
+}
+
+.DialogButton {
+ background: var(--color-light) !important;
+}
+
+.LclHwcOfHFpwObYMD1HLa {
+ background: var(--color-dark) !important;
+}
+
+._134yW7SKfZYwmvwlUElGx- {
+ background: var(--color-darkest) !important;
+}
+
+._3DEhfTvEKwgLd4smd6QdaU {
+ background: var(--color-light) !important;
+ border-radius: 4px;
+}
+
+._1d8CbcBnA6t3lsxYdnMv1h {
+ background: var(--color-light) !important;
+}
+
+img._24_AuLm54JVe1Zc0AApCDR._3d_bT685lnWotXxgzKW6am.yDr03475kalWBTwAE-Rnw {
+ border-radius: 4px;
+}
+
+/* HIDE TOP SHIT IN LIBRARY */
+
+._3wJnTtcTLEp0R7eQj_mK8Y {
+ display: none !important;
+}
+
+/* Library Seperator */
+
+._276E6ijBpjMA2_iTxNhhjc {
+ background: var(--color-dark) !important;
+}
+
+._1ZS_xta5HMXzR8JgxDH6n7 {
+ background: var(--color-darker) !important;
+}
+
+._2PF_m-I5yte3WnQhpcz8RC {
+ background: var(--color-dark) !important;
+}
+
+/* [class*="rootmenu_RootMenuButton_"] {
+ display: flex;
+}
+[class*="rootmenu_SteamButton_"] {
+ font-size: 0px;
+}
+[class*="rootmenu_RootMenuButton_"]:nth-of-type(1)::after {
+ font-size: inherit;
+ display: flex;
+ align-items: center;
+ content: "Millennium" !important;
+} */
+
+._35HbMDUqNj3v-llxNlSg1T svg {
+ width: 100% !important;
+ height: 100% !important;
+ max-width: 320px !important;
+ max-height: 320px !important;
+}
+/* Search Filter */
+
+._35HbMDUqNj3v-llxNlSg1T.bIoyqcxSbys_LNwXBL-qT, ._357GuN2jOraoBsztl6eEpW {
+ background: var(--color-dark) !important;
+}
+
+._170Npw5h84elypMSQ8zNDI {
+ background: var(--color-dark) !important;
+}
+
+._3qwXPrhpZYqVbJxrZDrvjy .vCCmYvn9yQ_V8CpKupllU ._1dgAMymUAUYzUcZjUjOFm7 .Woh0kBQCmatzC1daBX9i6::before {
+ background: var(--color-dark) !important;
+}
+
+._20QAC4WMXm8qFE8waUT5oo .vCCmYvn9yQ_V8CpKupllU ._1dgAMymUAUYzUcZjUjOFm7._1v65xCmMo53Ju6vCXk4U0_ .Woh0kBQCmatzC1daBX9i6 {
+ border-radius: 7px !important;
+}
+
+._20QAC4WMXm8qFE8waUT5oo ._12vo5L1hsNGdao6_ssuirS .DialogTextInputBase {
+ background: var(--color-dark) !important;
+}
+
+._20QAC4WMXm8qFE8waUT5oo .vCCmYvn9yQ_V8CpKupllU ._1TxHdzOt3OD9ikR3xIseKe {
+ background: var(--color-dark) !important;
+ border-radius: 0px 4px 4px 0px !important;
+}
+
+._2Nq6ov7A1hGcHXVOXNt_OE {
+ background: var(--color-darker) !important;
+}
+
+.g6MwhS-JgwOuj2uZKbi0K._1vHgYmF_74E0SSuDevSI9j {
+ background: var(--color-darker) !important;
+}
+
+._2gdgUZH7TbyBxDYoDIUPVG {
+ background: var(--color-dark) !important;
+}
+
+._1ijTaXJJA5YWl_fW2IxcaT {
+ background: var(--color-darker) !important;
+}
+
+._3qwXPrhpZYqVbJxrZDrvjy {
+ background: var(--color-darker) !important;
+}
+
+.MyNb5dG3FsBnKdp8j_ntk {
+ border-radius: 4px;
+}
+
+._2sYIghGVXJr6tsQVvcryy8 {
+ border: none !important;
+ background: var(--color-darker) !important;
+}
+
+._3x1HklzyDs4TEjACrRO2tB {
+ background-image: none !important;
+ background: var(--color-darkest);
+}
+
+._2TKEazUUS3TlniZfpc8OOe {
+ background-color: var(--color-darkest) !important;
+ box-shadow: none !important;
+ border-bottom: 2px solid var(--color-darker) !important;
+ display: none !important;
+}
+
+._3pSPluBgf0NeR1kkCLWMhR.eNLOx4LVceeMwRvTVWh3, ._3pSPluBgf0NeR1kkCLWMhR._30KGSfPjPskFlnrSxBfkiK {
+ background-color: rgba(33,33,36,.6) !important;
+}
+
+.nC-pL16iUnIRcaj1UVnwq ._2tyaVs9BpqcW068aaOrO56 {
+ background: var(--littlegrey) !important;
+}
+
+._20QAC4WMXm8qFE8waUT5oo .vCCmYvn9yQ_V8CpKupllU {
+ border-radius: 0px 4px 4px 0px;
+}
+
+/* Home Button Style */
+._3pSPluBgf0NeR1kkCLWMhR {
+ background-color: rgba(33,33,36,.6) !important;
+}
+
+._1UBpAXP408Ez_L_mXhW5Q9._2-O4ZG0KrnSrzISHBKctFQ, ._1UBpAXP408Ez_L_mXhW5Q9 ._2-O4ZG0KrnSrzISHBKctFQ {
+ background-color: var(--color-light) !important;
+}
+
+._17uEBe5Ri8TMsnfELvs8-N {
+ background: radial-gradient(100% 100% at 33% 45%, var(--color-dark) 30%, var(--color-darkest) 100%) !important;
+}
+
+._276E6ijBpjMA2_iTxNhhjc {
+ background: none !important;
+}
+
+._176QJCynkEUSdR_-9btdAW {
+ background: none !important;
+}
+
+._3Sb2o_mQ30IDRh0C72QUUu {
+ background: var(--color-darker) !important;
+}
+
+/* APP GLOSS BACKGROUND */
+/* [class*="appdetailsoverview_Container_"] {
+ background: var(--color-darker) !important;
+} */
+
+._3LE-6w1ItIAB4CKJFCa3Od {
+ background: var(--color-dark) !important;
+}
+
+._3qDWQGB0rtwM3qpXTb11Q- {
+ background: #2121219c !important;
+}
+
+._3-V8vjmrwuJM6Ws3tsjFJj > div {
+ background: var(--color-dark) !important;
+}
+
+._3x31AgESSlUqX3D4MTHv2m ._1JlC29Ic6L-QvL-39X_d-X {
+ background: var(--color-dark) !important;
+}
+
+._1HZy7BvOZuPT8feUwadL4W {
+ background: var(--color-dark) !important;
+}
+
+.fmLfuqm0Lxq5iPS5EHCAW {
+ border: none !important;
+}
+
+.yJLy7HDLJT44C1fcm6lPI,
+.UVeN0kaD3zv1feMj_mMw5 .NEMXhMlqXOCJwfgWlHXhT,
+._39nnaT_CLE0m_WXVIrAwaG {
+ background: var(--color-dark) !important;
+}
+
+._2IS7ZQo16varVLcyuFh4sY {
+ background: var(--color-dark) !important;
+}
+
+/* Right side panel on game */
+._31ptFGGMZrSQc5BCX1e5lm._3KfxIwlXEvum7FCD_AM2_t {
+ background: var(--color-dark) !important;
+}
+
+._38t1mljBjmJfqjpVzMT1CG {
+ background: var(--color-light) !important;
+}
+
+._1ul9ZRBfhF0vyj-hrit6nU {
+ background: var(--color-dark) !important;
+}
+
+._3QS6OBHpvI5bXsSQA2zQuW {
+ background: var(--color-dark) !important;
+}
+
+._-85o5-M_cGo-fefOuWwER ._1dJuvQ4rvlB0q8vmLJH3l2 {
+ background: var(--color-light) !important;
+ padding: 8px;
+}
+
+._-85o5-M_cGo-fefOuWwER .AxZMHRu3YIxDFr0a-MP6n {
+ border-radius: 4px !important;
+}
+
+._1bCHNUX_0WHTI1fch_8K5R div {
+ background: var(--grey-ish);
+ color: var(--white);
+}
+
+._2lNdDLgjQdeBXmMlPO8lvq {
+ background: var(--color-dark) !important;
+ color: var(--white) !important;
+}
+
+._3cI5TXsFX3bvpR-7EBOtxq > ._2AzIX5kl9k6JnxLfR5H4kX._2q-gZ3XJzlvSGHSF-GvSmi {
+ background: linear-gradient(to right, var(--brightblue) 0%, var(--brightblue) 60%) !important;
+}
+
+._3cI5TXsFX3bvpR-7EBOtxq > ._2AzIX5kl9k6JnxLfR5H4kX {
+ background: linear-gradient(to right, var(--blu) 0%, var(--brightblue) 60%) !important;
+}
+
+._3cI5TXsFX3bvpR-7EBOtxq > ._2AzIX5kl9k6JnxLfR5H4kX svg {
+ fill: var(--white) !important;
+}
+
+:not(._1Pb6PMh_3L5p5NzuUz0Pp9) > ._2AzIX5kl9k6JnxLfR5H4kX svg line, :not(._1Pb6PMh_3L5p5NzuUz0Pp9) > ._2AzIX5kl9k6JnxLfR5H4kX svg polygon {
+ fill: var(--white) !important;
+ stroke: var(--white) !important;
+}
+
+.LibraryDisplaySizeSmall ._1LJqx_qFOC8199RBQO5kU8 {
+ background: var(--color-dark) !important;
+}
+
+._3FmxxjyWNHU1PrBGnBe6tm._2l416KfEtI4CL0mCUEmOBw {
+ background: var(--color-darker) !important;
+}
+
+._2AUVZlzQq67qe3yhLZsPPB {
+ background: var(--color-darker) !important;
+}
+
+._1HZy7BvOZuPT8feUwadL4W {
+ border-radius: 4px !important;
+}
+
+._1AYE16384J_ecLpN0sEYc5 {
+ border: none !important;
+}
+
+._2-O4ZG0KrnSrzISHBKctFQ._2ws8DONH9fxQjPXEmRpujE {
+ color: var(--white) !important;
+}
+
+._2-O4ZG0KrnSrzISHBKctFQ._5YTBr7WwIfzVU_3nUtAph {
+ color: var(--darkerwhite) !important;
+}
+
+._2-O4ZG0KrnSrzISHBKctFQ._1LVQp3h_vGOZ8TuDUEge0k {
+ color: var(--brightblue) !important;
+}
+
+._2-O4ZG0KrnSrzISHBKctFQ ._1vO6BoiVslZgs1kqDGdUs8 ._3uk3F1BmAJQR6rl1TPcaif {
+ color: var(--blu) !important;
+}
+
+/* Popup Modal */
+.ModalPosition_Content>div:not(.ModalPosition_TopBar):not(.ModalPosition_Dismiss)
+{
+ background: var(--color-dark) !important;
+}
+
+._2ZgLvT82YJj60ipYm334jn {
+ background: var(--color-dark) !important;
+}
+
+._2ZgLvT82YJj60ipYm334jn {
+ background: var(--color-dark) !important;
+}
+
+._2gISWIeEzZ9PNuAzVuMaWd ._1-H7tKj_QcGHLUbx5wVsGg {
+ background: var(--color-light) !important;
+}
+
+._1wJJQwnV-ssGrL0xveFujy {
+ background: var(--color-dark) !important;
+}
+
+.u1xD3KJEgksF_J_5TLZzO {
+ background: none !important;
+}
+
+._3IWn-2rn7x98o5fDd0rAxb {
+ background: var(--grey-ish) !important;
+}
+/* BETA FEATURES */
+
+._3Z7VQ1IMk4E3HsHvrkLNgo {
+ background: var(--color-darker) !important;
+}
+
+.RGNMWtyj73_-WdhflrmuY ._2CmrnGY-Amtd83ScJkFvx2 {
+ min-height: 1px !important;
+ height: 1px !important;
+ background: none !important;
+}
+
+/* Context Menus */
+._3pofGqV0buiKAfMPEs3_82,
+.PP7LM0Ow1K5qkR8WElLpt._1UOkn2fGQ25jnyqcEJbnlo.visible._1S6CCCQlcTTAAHh3LMTLh1,
+._1ZpBQtDqcKBbfIIv01Vs1R>div.DesktopUI, .DesktopUI ._1ZpBQtDqcKBbfIIv01Vs1R>div,
+.DesktopUI ._2Sj4-UDM-dHSxtxwQ_Pwwz._2Sj4-UDM-dHSxtxwQ_Pwwz ._DialogInputContainer,
+._2yAm5LY_eu-Vg_52l0HFlM{
+ margin-bottom: 0 !important;
+ background: none !important;
+ border-radius: 2px !important;
+ background-color: var(--darkergrey) !important;
+ padding: 6px;
+}
+
+.PP7LM0Ow1K5qkR8WElLpt._2yAm5LY_eu-Vg_52l0HFlM {
+ background-color: var(--darkergrey) !important;
+}
+
+._2y2tUbsMx8OIwkimGSyHmb._3pofGqV0buiKAfMPEs3_82.Eq8Px4ixn5sAFSR6_9wWQ {
+ border-radius: 6px;
+}
+
+._2jXHP0742MyApMUVUM8IFn._21GPYlKBCLsHQpTsHw_RL_ {
+ border-bottom: 0.2px solid var(--begrey) !important;
+}
+
+.HoGkIKTQnkTEFGjqO-GMl ._11phBiBefcVQdzrnrezkKa, .HoGkIKTQnkTEFGjqO-GMl ._2jphjrSifC6orDT4g_7Wd {
+ color: var(--blue-ish) !important;
+}
+
+.DesktopUI .pFo3kQOzrl9qVLPXXGIMp, ._7K1n9EZg9218K75ZOzcHl .pFo3kQOzrl9qVLPXXGIMp {
+ color: var(--white) !important;
+}
+
+/* Friends List */
+.friendListHeaderContainer .titleBarContainer {
+ background: var(--color-darker) !important;
+}
+
+.friendlistListContainer {
+ background: var(--color-dark) !important;
+}
+
+.activeTab {
+ background: var(--color-light) !important;
+}
+
+._3Z3ohQ8-1NKnCZkbS6fvy {
+ -webkit-app-region: no-drag !important;
+}
+
+
+._3LKQ3S_yqrebeNLF6aeiog {
+ display: none !important;
+}
+
+._3Z7VQ1IMk4E3HsHvrkLNgo {
+ box-shadow: none !important;
+}
+
+
+
+._3yD46y5pd3zOGR7CzKs0mC {
+ background: var(--color-dark) !important;
+}
+
+._3yD46y5pd3zOGR7CzKs0mC ._2jphjrSifC6orDT4g_7Wd {
+ color: var(--darkerwhite);
+}
+
+.RtSv39ZoBOySnb8XQ5hJf, ._5wILZhsLODVwGfcJ0hKmJ,
+._13vrqU6oOqmmxrsZSW5O39
+ {
+ background: var(--color-dark) !important;
+}
+
+._2Szzh5sKyGgnLUR870zbDE._13vrqU6oOqmmxrsZSW5O39._2lStU4uLIW5pByb98vQdpO {
+ background: #5c7e10 !important;
+}
+
+._7AlhCx3XGzBeIrQaCneUD {
+ font-size: 13px !important;
+ height: auto !important;
+}
+
+._7AlhCx3XGzBeIrQaCneUD._1gqEjB5QsKT_NftD1dEsdZ:not(._2cO0HdvLEGAdhosLekWsmo) ._19axKcqYRuaJ8vdYKYmtTQ {
+ color: var(--brightblue) !important;
+ text-shadow: 0px 0px 1px var(--brightblue) !important;
+}
+
+._7AlhCx3XGzBeIrQaCneUD._1gqEjB5QsKT_NftD1dEsdZ:not(._2cO0HdvLEGAdhosLekWsmo) ._19axKcqYRuaJ8vdYKYmtTQ::after {
+ background: var(--brightblue) !important;
+}
+
+._2UyOBeiSdBayaFdRa39N2O:hover:not(._2hcblpUHuN5CYOoq6eU2y0), ._7AlhCx3XGzBeIrQaCneUD:hover:not(._2cO0HdvLEGAdhosLekWsmo) ._19axKcqYRuaJ8vdYKYmtTQ {
+ color: var(--white) !important;
+}
+
+._2UyOBeiSdBayaFdRa39N2O, ._7AlhCx3XGzBeIrQaCneUD ._19axKcqYRuaJ8vdYKYmtTQ {
+ color: var(--darkwhite) !important;
+}
+
+._25lBLzuVeYAUG279up4xP8 {
+ padding: 0px 10px 0px 0px !important;
+}
+
+._25lBLzuVeYAUG279up4xP8:first-child {
+ padding-left: 12px !important;
+}
+
+.DesktopUI .title-area-icon:hover, .friendsui-container .title-area-icon:hover {
+ background: var(--color-light) !important;
+}
+
+._2jXHP0742MyApMUVUM8IFn._2uiDecKkKjAq7nimy3uLhG:hover {
+ background-color: var(--grey-ish) !important;
+ color: var(--white) !important;
+}
+
+._5wILZhsLODVwGfcJ0hKmJ:hover {
+ background: var(--color-light) !important;
+}
+
+.RtSv39ZoBOySnb8XQ5hJf._9YK5IY219Pm_F53DAxyYp:not(._1QQWjaXmb1eTHZpeIhQA_5):hover, .RtSv39ZoBOySnb8XQ5hJf._3qhGkQ5qLVNQQ-J2-uPoHt:not(._1QQWjaXmb1eTHZpeIhQA_5):hover {
+ background: var(--color-light) !important;
+}
+
+._1TdaAqMFadi0UTqilrkelR:hover:not(._2Sdix9OOEHP6z_b4W2oaU9) ._1KrJ3sFAqPBN9mfpaNTU5F {
+ color: none !important;
+}
+
+/* URL BAR */
+
+._1bGewp3tfzqAF6fVTFFUOz .UkR3sY319PuaUNuUWks2K {
+ background: var(--darkergrey) !important;
+ box-shadow: none;
+ border-bottom: 0.5px solid var(--thegrey);
+}
+
+/* Back Arrows */
+
+._25lBLzuVeYAUG279up4xP8._2cO0HdvLEGAdhosLekWsmo {
+ color: var(--color-light) !important;
+}
+
+
+
+
+/* .appdetailsplaysection_InnerContainer_3Y87Y {
+ background: var(--color-darker) !important;
+}
+
+div.NarrowRightPanel .appdetailsprimarylinkssection_LinksSection_3-V8v {
+ background: var(--color-darker) !important;
+}
+
+.appdetailsoverview_Glassy_2OOzY .appdetailsoverview_ColumnContainer_OhSdL {
+ background: var(--color-darker) !important;
+}
+
+.appdetailsoverview_Glassy_2OOzY>div {
+ background: var(--color-darker) !important;
+} */
+
+.S-_LaQG5eEOM2HWZ-geJI._3s1Rkl6cFOze_SdV2g-AFo::after {
+ background: var(--lightergrey) !important;
+}
+
+._1UEEmNDZ7Ta3enwTf5T0O0 {
+ background: var(--lightergrey) !important;
+}
+
+._2qYC3gFAkLcB48i6dTz051 {
+ background: var(--begrey) !important;
+}
+._3lwcRYJ_r7x01Cn15bcdYI {
+ background: none !important;
+}
+
+._3lwcRYJ_r7x01Cn15bcdYI._3ZBFoxumQBb1JEVw_DZzaC, ._3lwcRYJ_r7x01Cn15bcdYI._3ZBFoxumQBb1JEVw_DZzaC:hover {
+ background: var(--brightblue) !important;
+}
+
+._1bGewp3tfzqAF6fVTFFUOz .UkR3sY319PuaUNuUWks2K ._2m_orETo6AghzAnc0sISCt:hover {
+ background: var(--color-dark) !important;
+}
+
+._1fuML-ekRbTEzgzC597yGP, ._1fuML-ekRbTEzgzC597yGP pre {
+ background: var(--color-dark) !important;
+}
+
+._17ewzMiLZXQiOFFbpXAZdw {
+ display: none !important;
+}
+
+.friendListHeaderContainer {
+ background: var(--color-dark) !important;
+}
+
+.statusHeaderGlow {
+ display: none !important;
+}
+
+.nibodjvvrm86uCfnnAn4g ._3atbNcPD1_nRVTjOvryjWe {
+ display: none !important;
+}
+
+.ChatTabContent .avatarHolder .avatarStatus, .friend.quickAccessFriend .avatarHolder .avatarStatus {
+ display: none !important;
+}
+
+.friend.quickAccessFriend .avatarHolder .avatar {
+ border: 1px solid var(--lightgrey) !important;
+ border-radius: 6px !important;
+}
+
+._1p_QrI3ixF-RAwnxad9pEm {
+ border-radius: 6px !important;
+}
+
+.friendsListSectionTitle {
+ background: var(--color-light) !important;
+}
+
+.friendListFooter {
+ display: none !important;
+}
+
+.friendsListSectionTitle {
+ display: none !important;
+}
+
+.FriendsListContent .friendlistListContainer .friendGroup.onlineFriends {
+ border-top: .5px solid rgba(143,143,143,.25);
+}
+
+._2y2tUbsMx8OIwkimGSyHmb._7K1n9EZg9218K75ZOzcHl {
+ background: var(--color-dark) !important;
+ border: 1px solid var(--lightergrey) !important;
+ padding: 0 !important;
+}
+
+.RtSv39ZoBOySnb8XQ5hJf._3L1c8C0o_xXzPy26aoLBFd {
+ color: var(--white) !important;
+ background: var(--darkgreen) !important;
+}
+
+._2Szzh5sKyGgnLUR870zbDE._5wILZhsLODVwGfcJ0hKmJ._1oEwirQksXfZ-3RWWslbAR {
+ color: var(--darkerwhite) !important;
+}
+
+.singleWindowFocusBar.chatSingleWindowFocusBar {
+ display: none !important;
+}
+
+.LQkrbbayZPY11qHm01t7F {
+ background: var(--color-dark) !important;
+}
+
+.contextMenuItem:not(.Z5iAXBkRFGnwpXsO8ANTl):hover {
+ background: var(--color-dark) !important;
+ color: var(--white) !important;
+}
+
+._1UBpAXP408Ez_L_mXhW5Q9._2-O4ZG0KrnSrzISHBKctFQ:hover, ._1UBpAXP408Ez_L_mXhW5Q9._2-O4ZG0KrnSrzISHBKctFQ._3cMVyOc-9F9Jvp3uKF7_xj, ._1UBpAXP408Ez_L_mXhW5Q9._2-O4ZG0KrnSrzISHBKctFQ :hover, ._1UBpAXP408Ez_L_mXhW5Q9 ._2-O4ZG0KrnSrzISHBKctFQ:hover, ._1UBpAXP408Ez_L_mXhW5Q9 ._2-O4ZG0KrnSrzISHBKctFQ._3cMVyOc-9F9Jvp3uKF7_xj, ._1UBpAXP408Ez_L_mXhW5Q9 ._2-O4ZG0KrnSrzISHBKctFQ :hover {
+ background: var(--color-dark) !important;
+}
+
+._2OOzYVWIHaKXm6_7sscT9i .Jbe--NUNw7sxbxGsMSjVa {
+ background: none !important;
+}
+
+._3jFOApJSzNL-_p65_jlmX6 {
+ background: var(--color-dark) !important;
+}
+
+.UVeN0kaD3zv1feMj_mMw5 .NEMXhMlqXOCJwfgWlHXhT {
+ border-radius: 4px !important;
+}
+
+.window_resize_grip {
+ height: 0px !important;
+ width: 0px !important;
+}
+
+.mllnm-addon-list .mllnm-addon-header {
+ background: var(--begrey) !important;
+}
+
+.millennium-icons, .mllnm-addon-list .mllnm-addon-card, button.mllnm-button, button.mllnm-button.mllnm-button-title, .mllnm-search-wrapper {
+ background: var(--color-light) !important;
+}
+
+._2CmrnGY-Amtd83ScJkFvx2 {
+ box-shadow: none !important;
+}
+
+._2Nq6ov7A1hGcHXVOXNt_OE {
+ border-top: none !important;
+}
+
+/* ._1TdaAqMFadi0UTqilrkelR ._1KrJ3sFAqPBN9mfpaNTU5F, ._2foCkpRXhqq0UGVE50BWqj ._1KrJ3sFAqPBN9mfpaNTU5F {
+ margin-right: -7px;
+} */
+
+._2foCkpRXhqq0UGVE50BWqj ._1KrJ3sFAqPBN9mfpaNTU5F, .ip-YZhijAMZcuRoXBGiye ._1KrJ3sFAqPBN9mfpaNTU5F, ._1TdaAqMFadi0UTqilrkelR ._1KrJ3sFAqPBN9mfpaNTU5F, ._5wILZhsLODVwGfcJ0hKmJ, .RtSv39ZoBOySnb8XQ5hJf._9YK5IY219Pm_F53DAxyYp ._34bQcTHo5QKzuujoEyU1tm, .RtSv39ZoBOySnb8XQ5hJf._3qhGkQ5qLVNQQ-J2-uPoHt ._34bQcTHo5QKzuujoEyU1tm, ._34bQcTHo5QKzuujoEyU1tm {
+ color: var(--darkerwhite) !important;
+}
+
+._2foCkpRXhqq0UGVE50BWqj:hover ._1KrJ3sFAqPBN9mfpaNTU5F,
+.ip-YZhijAMZcuRoXBGiye:hover ._1KrJ3sFAqPBN9mfpaNTU5F, .ip-YZhijAMZcuRoXBGiye:hover ._3wJnTtcTLEp0R7eQj_mK8Y, ._1TdaAqMFadi0UTqilrkelR:hover:not(._2Sdix9OOEHP6z_b4W2oaU9) ._1KrJ3sFAqPBN9mfpaNTU5F, ._5wILZhsLODVwGfcJ0hKmJ:hover ._34bQcTHo5QKzuujoEyU1tm, .RtSv39ZoBOySnb8XQ5hJf._9YK5IY219Pm_F53DAxyYp:not(._1QQWjaXmb1eTHZpeIhQA_5):hover ._34bQcTHo5QKzuujoEyU1tm, .RtSv39ZoBOySnb8XQ5hJf._3qhGkQ5qLVNQQ-J2-uPoHt:not(._1QQWjaXmb1eTHZpeIhQA_5):hover ._34bQcTHo5QKzuujoEyU1tm {
+ color: var(--white) !important;
+}
+
+._3x1HklzyDs4TEjACrRO2tB {
+ background: var(--color-darker) !important;
+}
+
+._2OOzYVWIHaKXm6_7sscT9i .Jbe--NUNw7sxbxGsMSjVa {
+ background: linear-gradient(to top, var(--blacker-ish) 0%, var(--blacker-ish) 75%, #1b1b1b3d 100%) !important;
+ backdrop-filter: blur(10px) !important;
+}
+._3fLo166MlaNqP8r8tTyRz._3DeO92O5aVkcdwEBCJDjWm {
+ background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgb(31 31 31 / 0%) calc(100%), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 100%) !important;
+}
+
+div.LowPerfMode ._39RheXihcN6H2k2muQTjkI ._3DeO92O5aVkcdwEBCJDjWm {
+ background-color: #1b1b1b !important;
+}
+
+._2OOzYVWIHaKXm6_7sscT9i .OhSdLYuggDtBcWjYP0j_9 {
+ background: var(--blacker-ish) !important;
+}
+
+._3BFcmjAaMyP6GTPwc0VyWi.MediumRightPanel {
+ border-top-left-radius: 10px !important;
+}
+
+._2Dd4T78PcCTUVgOtDGFY5j {
+ border-top-left-radius: 10px !important;
+}
+
+._1rDh5rXSFZJOqCa4UpnI4z {
+ background: var(--color-darker);
+}
+
+.LQkrbbayZPY11qHm01t7F {
+ background: var(--begrey) !important;
+}
+
+.LQkrbbayZPY11qHm01t7F.visible._2qyBZV8YvxstXuSKiYDF19 {
+ border-radius: 6px;
+ overflow: hidden;
+ border: 1px solid var(--littlegrey);
+ box-sizing: border-box;
+}
+
+body.ContextMenuPopupBody.DesktopUI,
+._1YdRdM9TZ_3Xolwv9aVEv- .DialogInputLabelGroup ._DialogInputContainer,
+._2sNr7PFYcJZWNkEMCDVVPR,
+._23zCI_59RJTWRvY-_YCFb9 {
+ background: transparent !important;
+}
+
+/* Dropdowns in home
+EG: "Play next" category names & "Sort by" dropdown */
+
+.DesktopUI ._2qyBZV8YvxstXuSKiYDF19 ._1tiuYeMmTc9DMG4mhgaQ5w._DialogInputContainer{
+ border: 1px solid var(--littlegrey) !important;
+ box-sizing: border-box;
+ background: var(--begrey) !important;
+ border-radius: 6px !important;
+}
+
+.DesktopUI ._2qyBZV8YvxstXuSKiYDF19 ._1tiuYeMmTc9DMG4mhgaQ5w._DialogInputContainer ._1R-DVEa2yqX0no8BYLtn9N:hover{
+ background: var(--color-dark) !important;
+ color: var(--white) !important;
+}
+
+.settings_item.selected {
+ background: var(--color-light) !important;
+}
+
+/* 'Add non-steam game' pop-up */
+
+._2EstNjFIIZm_WUSKm5Wt7n.H2MNnp7B_8r37I5wiifE0 {
+ background-color: var(--color-darker) !important;
+}
+
+/* Context Menu Pop Up on Steam Icon */
+
+._2EstNjFIIZm_WUSKm5Wt7n._3qIuY9S_vXm3IQS-uE9SRS {
+ background: var(--color-darker) !important;
+}
+
+/* Settings Page */
+
+._2kwFFHckg8jvnwJfg9-la8 {
+ background: var(--color-dark) !important;
+}
+
+._2DpXjzK3WWsOtUWUrcuOG7 {
+ background: var(--lightgrey) !important;
+}
+
+._1ml4SNc3LIyBDHIf8ekVSw {
+ background-color: var(--color-dark) !important;
+ box-shadow: none !important;
+}
+
+.HijmccPB1BKyhOwhX1EVl, .HijmccPB1BKyhOwhX1EVl:not(._3hmGW9wIxNIoPPu1aS7rFm):hover{
+ background-color: var(--color-light);
+ transition: all 0.2s ease-in-out;
+}
+
+.HijmccPB1BKyhOwhX1EVl:not(._3hmGW9wIxNIoPPu1aS7rFm):hover {
+ color: white
+}
+
+.HijmccPB1BKyhOwhX1EVl:not(._3-_jME_xsuvgT3Dvq4bw_q)+.HijmccPB1BKyhOwhX1EVl:not(._3-_jME_xsuvgT3Dvq4bw_q)::before {
+ display: none !important;
+}
+
+._28eIRmQ229ntDIyQXTn3Ub.QE3sHW9puNTAjiRDY71Xy {
+ background-color: var(--color-light) !important;
+ box-shadow: none !important;
+}
+
+._7EGqd8bdiXJBd2fj5Hh8r {
+ background: var(--color-darker);
+}
+
+._7EGqd8bdiXJBd2fj5Hh8r:hover {
+ background: var(--grey);
+}
+
+._7EGqd8bdiXJBd2fj5Hh8r.MYyvJ6lNQZtM4MHwS-Y3g {
+ background: var(--darkergrey);
+}
+
+/* Family Settings Page */
+._2LyGIHuQ8SFKb5T262YUvg {
+ background: var(--color-darker) !important;
+}
+
+/* Notifications */
+._3B8wRA4H7e_oSksYNqpSPv._1B1XTNsfuwOaDPAkkr8M42, ._1oERP7bVictkby2hP4BBva {
+ background: var(--color-dark) !important
+}
+
+/* ── Apple Garamond Light – global font override ── */
+*, *::before, *::after {
+ font-family: "Apple Garamond" !important;
+ font-weight: 300 !important;
+ font-size: 18px !important;
+}
+
+/* Hide "Steam" text next to logo */
+[class*="rootmenu_SteamButton_"] {
+ font-size: 0px !important;
+}
+
+/* Hide "Steam" text next to logo */
+.bSKGlAJG2UVWTsntEJY2v {
+ font-size: 0px !important;
+}
+
+/* Lowercase all text */
+* {
+ text-transform: lowercase !important;
+}
+
+/**
+ * @description Remove the what's new shelf and the stupid steam news button.
+ */
+
+/* Whats new */
+._17uEBe5Ri8TMsnfELvs8-N {
+ display: none !important
+}
+
+/* Steam news */
+._5wILZhsLODVwGfcJ0hKmJ {
+ display: none !important;
+}
+
+/* Hide "Add a Game" button */
+._2foCkpRXhqq0UGVE50BWqj {
+ display: none !important;
+}
+
+/* Hide "Manage Downloads" button */
+._2EQ7ghgqIdjKv9jsQC0Zq9 {
+ display: none !important;
+}
+
+/* Hide announcements megaphone */
+._2Szzh5sKyGgnLUR870zbDE {
+ display: none !important;
+}
+
+/* Hide wallet balance */
+._2jphjrSifC6orDT4g_7Wd {
+ display: none !important;
+}
+
+/* Hide SteamVR icon (headset icon) */
+._3lRfTo8Wo3phXfE1DvK6QW {
+ display: none !important;
+}
+
+/* Hide controller/remote play icon */
+._3LKQ3S_yqrebeNLF6aeiog {
+ display: none !important;
+}
+
+/* Hide "Add a Game" button */
+._2foCkpRXhqq0UGVE50BWqj {
+ display: none !important;
+}
+
+/* ── Add a Game - force hide ── */
+._2foCkpRXhqq0UGVE50BWqj,
+._1KrJ3sFAqPBN9mfpaNTU5F {
+ display: none !important;
+}
+
+/* ── Top nav - bold selected item, white underline bar ── */
+._7AlhCx3XGzBeIrQaCneUD ._19axKcqYRuaJ8vdYKYmtTQ {
+ font-weight: 700 !important;
+ color: #ffffff !important;
+}
+
+/* Turn the blue underline bar white */
+._1gqEjB5QsKT_NftD1dEsdZ {
+ border-bottom-color: #ffffff !important;
+ background-color: #ffffff !important;
+}
+
+/* ══════════════════════════════════════
+ ROHAN CUSTOM OVERRIDES
+ ══════════════════════════════════════ */
+
+/* --- Font --- */
+*, *::before, *::after {
+ font-family: "Apple Garamond" !important;
+ font-weight: 300 !important;
+ font-size: 18px !important;
+ text-transform: lowercase !important;
+}
+
+/* --- Hide "Steam" text next to logo --- */
+.bSKGlAJG2UVWTsntEJY2v {
+ font-size: 0px !important;
+ text-transform: none !important;
+}
+
+/* --- Hide UI elements --- */
+._2foCkpRXhqq0UGVE50BWqj,
+._2EQ7ghgqIdjKv9jsQC0Zq9,
+._2Szzh5sKyGgnLUR870zbDE,
+._2jphjrSifC6orDT4g_7Wd,
+._3lRfTo8Wo3phXfE1DvK6QW,
+._3LKQ3S_yqrebeNLF6aeiog,
+._17uEBe5Ri8TMsnfELvs8-N,
+._5wILZhsLODVwGfcJ0hKmJ {
+ display: none !important;
+}
+
+/* --- Nav bar: unselected = light, dimmed --- */
+._7AlhCx3XGzBeIrQaCneUD ._19axKcqYRuaJ8vdYKYmtTQ {
+ font-weight: 300 !important;
+ color: #aaaaaa !important;
+}
+
+/* --- Nav bar: selected = bold, white --- */
+._1gqEjB5QsKT_NftD1dEsdZ ._19axKcqYRuaJ8vdYKYmtTQ,
+._7AlhCx3XGzBeIrQaCneUD._1gqEjB5QsKT_NftD1dEsdZ:not(._2cO0HdvLEGAdhosLekWsmo) ._19axKcqYRuaJ8vdYKYmtTQ {
+ font-weight: 700 !important;
+ color: #ffffff !important;
+ text-shadow: none !important;
+}
+
+/* --- Nav bar: kill blue underline and background --- */
+._2Lu3d-5qLmW4i19ysTt2jT._1gqEjB5QsKT_NftD1dEsdZ {
+ background-color: transparent !important;
+ border-bottom: none !important;
+ box-shadow: none !important;
+}
+._7AlhCx3XGzBeIrQaCneUD._1gqEjB5QsKT_NftD1dEsdZ:not(._2cO0HdvLEGAdhosLekWsmo) ._19axKcqYRuaJ8vdYKYmtTQ::after {
+ display: none !important;
+}
+
+/* --- Hide Add a Game and Downloads buttons, keep Friends & Chat --- */
+._2foCkpRXhqq0UGVE50BWqj,
+._2EQ7ghgqIdjKv9jsQC0Zq9 {
+ display: none !important;
+}
+
+/* --- Game list: remove blue row highlight --- */
+._2-O4ZG0KrnSrzISHBKctFQ.cMb2tLY-QjdRohM5U6Btp {
+ background-color: rgba(255,255,255,0.08) !important;
+}
+
+/* --- Game list: kill blue text on all items --- */
+._3uk3F1BmAJQR6rl1TPcaif {
+ color: #aaaaaa !important;
+}
+._2-O4ZG0KrnSrzISHBKctFQ ._2SXJM0PeFEi3gbC7V3S5pE span,
+._2-O4ZG0KrnSrzISHBKctFQ ._3uk3F1BmAJQR6rl1TPcaif,
+._2-O4ZG0KrnSrzISHBKctFQ._1LVQp3h_vGOZ8TuDUEge0k {
+ color: #ffffff !important;
+}
+
+/* --- Game list: bold selected title --- */
+._3DeO92O5aVkcdwEBCJDjWm ._2SXJM0PeFEi3gbC7V3S5pE span {
+ font-weight: 700 !important;
+}
+
+/* --- Update dot: white instead of yellow --- */
+[class*="GameListRow"] svg path[fill="#FFC82C"] {
+ fill: #ffffff !important;
+}
+
+/* --- Play button: black --- */
+._3ydigb6zZAjJ0JCDgHwSYA,
+._2q-gZ3XJzlvSGHSF-GvSmi {
+ background-color: #111111 !important;
+ border-color: #333333 !important;
+}
+._3ydigb6zZAjJ0JCDgHwSYA:hover,
+._2q-gZ3XJzlvSGHSF-GvSmi:hover {
+ background-color: #222222 !important;
+}
blob - /dev/null
blob + b867d4da67a53d979f38c2bf534f7f515ddd2a34 (mode 644)
--- /dev/null
+++ millennium/simply-dark/TitleBar.css
+.title-area-icon.maximizeButton.windowControlButton svg line {
+ display:none;
+}
+
+/* .DesktopUI .title-area-icon .SVGIcon_Maximize {
+ height: 15px !important;
+ width: 15px !important;
+} */
+
+.SVGIcon_X_Line, .SVGIcon_Minimize, .SVGIcon_Maximize {
+ height: 13px !important;
+ width: 13px !important;
+}
+
+/* Fix for the small x on some windows */
+._1_vCR1dPfyJ7_yukwDqblf._240i58XQ0w78YFrd_p-9UY>.SVGIcon_X_Line,
+.gioyPMOZttYFcnmgLnsWf .iYW5hWQwg14WYT4PV3xe_>.SVGIcon_X_Line {
+ height: inherit !important;
+ width: inherit !important;
+}
+
+/* Hide the View menu and other stuff */
+._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2),
+._2UyOBeiSdBayaFdRa39N2O:nth-of-type(3),
+._2UyOBeiSdBayaFdRa39N2O:nth-of-type(4),
+._2UyOBeiSdBayaFdRa39N2O:nth-of-type(5) {
+ margin-left: 7px !important;
+ transition: opacity 0.3s ease-out;
+ opacity: 0;
+}
\ No newline at end of file
blob - /dev/null
blob + d839526b7e2b3db701701cde2a398dc38c3947e1 (mode 644)
--- /dev/null
+++ millennium/simply-dark/colors.css
+:root {
+ /**
+ * @name Light Color
+ * @description Button Colors (used in some webkit element)
+ */
+ --color-light: rgb(48, 48, 48);
+ /**
+ * @name Dark Color
+ * @description TitleBar, TitleBar Buttons, Library <div> background, Scrollbar (used in some webkit element)
+ */
+ --color-dark: #212121;
+ /**
+ * @name Darker Color
+ * @description Main Background, Library and TitleBar accent (used in some webkit element)
+ */
+ --color-darker: #191919;
+ /**
+ * @name Darkest Color
+ * @description Low priority accent color (used in some webkit element)
+ */
+ --color-darkest: #141414;
+ /**
+ * @name Scrollbar Color
+ * @description Webkit scrollbar color
+ */
+ --scrollbar: #303030;
+ /**
+ * @name Pure Black
+ * @description Low priority accent color (used in some webkit element)
+ */
+ --black: #000000;
+ /**
+ * @name Slight Black
+ * @description Webkit colors
+ */
+ --blacker-ish: #1b1b1b;
+ /**
+ * @name Slightly Darker Black
+ * @description Webkit colors
+ */
+ --blacker: #1c1c1c;
+ /**
+ * @name Light Grey
+ * @description Webkit colors
+ */
+ --grey: #2e2e2f;
+ /**
+ * @name Grey
+ * @description Webkit colors
+ */
+ --lightgrey: #3e3e3f;
+ /**
+ * @name Light Grey
+ * @description Webkit colors
+ */
+ --lightergrey: #353535;
+ /**
+ * @name Slightly Light Grey
+ * @description Webkit colors
+ */
+ --grey-ish: #454545;
+ /**
+ * @name Slightly More Darker Grey
+ * @description Webkit colors
+ */
+ --darkergrey: #151515;
+ /**
+ * @name Slightly A Little More Darker Grey
+ * @description Webkit colors
+ */
+ --thegrey: #181818;
+ /**
+ * @name Darker Grey Than Above but Not Darkest
+ * @description Webkit colors
+ */
+ --begrey: #262627;
+ /**
+ * @name A Slightly Darker Grey Than Above
+ * @description Webkit colors
+ */
+ --littlegrey: #282828;
+ /**
+ * @name Darkest Grey
+ * @description Webkit colors
+ */
+ --darkgrey: #1e1e1f;
+ /**
+ * @name Darker White
+ * @description Webkit colors
+ */
+ --darkerwhite: #b8b6b4;
+ /**
+ * @name Dark White
+ * @description Webkit colors
+ */
+ --darkwhite: #d9dadd;
+ /**
+ * @name White
+ * @description Webkit colors
+ */
+ --white: #ffffff;
+ /**
+ * @name Ingame
+ * @description Ingame color
+ */
+ --ingame: #90ba3c;
+ /**
+ * @name Online
+ * @description Online color
+ */
+ --online: #57cbde;
+ /**
+ * @name Offline
+ * @description Offline color
+ */
+ --offline: #898989;
+}
\ No newline at end of file
blob - /dev/null
blob + 497d505d11ef3e46006e31d44d3e24fbe0859ea8 (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/AddShelfVisibility.css
+._3SkuN_ykQuWGF94fclHdhJ {
+ display: none !important
+}
\ No newline at end of file
blob - /dev/null
blob + 7d88b5e12ca5e9e9766326fe5d7fa3735cf46d57 (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/AvatarFrames.css
+div > img._338kJp62vHY5iDbsraaiKD, div > .nibodjvvrm86uCfnnAn4g ._3atbNcPD1_nRVTjOvryjWe{
+ display: block !important;
+}
+
+.nibodjvvrm86uCfnnAn4g:has(._3atbNcPD1_nRVTjOvryjWe) img{
+ border: none !important;
+ border-radius: 0 !important;
+ width: calc(100% + 1px) !important;
+ height: calc(100% + 1px) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + ca1f7fd0a1123c02c1fd6ec4385aab923e83d4eb (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/FriendsOutline.css
+.favoriteElement>.friend>div>div>.nibodjvvrm86uCfnnAn4g.ingame {
+ border: solid var(--ingame) 2px !important;
+ border-radius: 2px!important;
+}
+
+.favoriteElement>.friend>div>div>.nibodjvvrm86uCfnnAn4g.online {
+ border: solid var(--online) 2px !important;
+ border-radius: 2px!important;
+}
+
+.friendCategoryContainer>.friend>div>.nibodjvvrm86uCfnnAn4g.ingame {
+ border: solid var(--ingame) 2px !important;
+ border-radius: 2px!important;
+}
+
+.friendCategoryContainer>.friend>div>.nibodjvvrm86uCfnnAn4g.online {
+ border: solid var(--online) 2px !important;
+ border-radius: 2px!important;
+}
+
+.friendlistListContainer .friend .avatarHolder {
+ padding-right: 0 !important;
+}
\ No newline at end of file
blob - /dev/null
blob + d9d10e70e7699200829b5cef531a42107ab3d5c8 (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/NativeTitlebarVisibility.css
+._3pXasCUulX4jjqO79s4q_F._2MkHZqf7MrgW3f8qGHiI8Z {
+ background: none !important;
+}
+
+.title-bar-actions.window-controls {
+ display: none !important;
+}
+
+._39oUCO1OuizVPwcnnv88no ._1-9sir4j_KQiMqdkZjQN0u {
+ right: 0px !important;
+}
\ No newline at end of file
blob - /dev/null
blob + 3a9b7c8a5b02a95efcf55953b61dbf2d65caf42e (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/NewsButtonVisibility.css
+._2Szzh5sKyGgnLUR870zbDE._5wILZhsLODVwGfcJ0hKmJ {
+ display: none !important;
+}
\ No newline at end of file
blob - /dev/null
blob + 08ed56bc9238bc91a688d1ae9cd121d0e46beda6 (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/URLBarVisibility.css
+.UkR3sY319PuaUNuUWks2K {
+ display: none !important;
+}
\ No newline at end of file
blob - /dev/null
blob + 1a63b1244cb4b5de4409d12647e8f36303bc21a2 (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/WalletVisibility.css
+._2jphjrSifC6orDT4g_7Wd {
+ display: none !important;
+}
blob - /dev/null
blob + 20bc20f866a85830f53445e062f99480b0b18cfc (mode 644)
--- /dev/null
+++ millennium/simply-dark/config/WhatsNewVisibility.css
+._17uEBe5Ri8TMsnfELvs8-N {
+ display: none !important
+}
\ No newline at end of file
blob - /dev/null
blob + cd9b3b949f3228f4888342d90c75f3ffa8b92c88 (mode 644)
--- /dev/null
+++ millennium/simply-dark/headers/CompactHeader.css
+
+._39oUCO1OuizVPwcnnv88no {
+ height: 40px !important;
+}
+._39oUCO1OuizVPwcnnv88no ._3s0lkohH8wU2do0K1il28Y {
+ margin-top: 0px !important;
+}
+
+._25lBLzuVeYAUG279up4xP8 {
+ color: var(--darkwhite) !important;
+}
+._2UyOBeiSdBayaFdRa39N2O {
+ /* padding: 0px 0px 4px !important; */
+}
+
+._3Z3ohQ8-1NKnCZkbS6fvy {
+ /* height: 0px !important; */
+ /* min-height: 0px !important; */
+ /* padding-left: 40px; */
+ padding-top: 5px;
+ left: 40px;
+ position: absolute;
+ padding-left: 0px;
+}
+
+._39oUCO1OuizVPwcnnv88no {
+ background: var(--color-darker) !important;
+}
+
+._39oUCO1OuizVPwcnnv88no ._1-9sir4j_KQiMqdkZjQN0u {
+ position: fixed !important;
+ /* top: 35px !important; */
+ right: 90px !important;
+ /* padding-top: 2.5px; */
+ top: 3px;
+}
+
+.bSKGlAJG2UVWTsntEJY2v {
+ font-size: 0px;
+}
+
+._1_yS5UP7el0aN4vntx3dx {
+ padding: 0 !important;
+ position: absolute !important;
+ --steam-control-width: 242px !important;
+ right: 260px !important;
+ top: 8px !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu {
+ width: fit-content !important;
+ box-shadow: none !important;
+ background: none !important;
+ gap: 8px !important;
+ flex: 0 !important;
+ -webkit-app-region: no-drag;
+}
+
+._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2), ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(3), ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(3) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(4), ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(3) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(4) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(5) {
+ opacity: 0;
+}
\ No newline at end of file
blob - /dev/null
blob + 2f7bf422dfe91344ec8a1734fb20367bae972875 (mode 644)
--- /dev/null
+++ millennium/simply-dark/headers/CompactHeader.js
+//responsible for coordinating when the length of the title bar changes, so it will displace the bottom bars positioning respectively
+new MutationObserver((mutations) => {
+ mutations.forEach(function(mutation) {
+ mutation.addedNodes.forEach(function(addedNode) {
+ //looking for steamdesktop_OuterFrame_3mz8w which is the parent of titlebarcontrols_TitleBarControls_
+ if (addedNode.classList && addedNode.classList.contains('_3mz8wQ6Q44B8P7pzPP4Iyw')) {
+ const title_bar_controls = document.querySelector('._3cykd-VfN_xBxf3Qxriccm')
+ const bottom_bar_controls = document.querySelector('._1_yS5UP7el0aN4vntx3dx')
+ //fires `changeOffset` before adding mutationobs
+ changeOffset(bottom_bar_controls, title_bar_controls.offsetWidth)
+ //titlebar observer
+ new MutationObserver((mutationsList) => {
+ for (const _ of mutationsList) {
+ //every time the titlebar changes, update the offset of the bottombars positioning (they are exactly relative)
+ changeOffset(bottom_bar_controls, title_bar_controls.offsetWidth)
+ }
+ //listen for mutations on the titlebar, but we dont listen for anything in specific, just changes
+ }).observe(title_bar_controls, { attributes: true, childList: true, subtree: true, characterData: true });
+ }
+ });
+ });
+//create an observer on the document body so you can read new DOM modifications.
+//used to tell when titlebar contents have loaded
+}).observe(document.body, { childList: true, subtree: true });
+
+function changeOffset(bottom, offsetWidth) {
+ let offset = 0;
+ if(getComputedStyle(document.querySelector("._1-9sir4j_KQiMqdkZjQN0u")).right != "0px") offset = 90;
+ bottom.style.setProperty('right', `${offsetWidth + offset}px`, 'important')
+};
\ No newline at end of file
blob - /dev/null
blob + ef2e5d7f2d19f7a8900d36cc0778f0d351f55e48 (mode 644)
--- /dev/null
+++ millennium/simply-dark/headers/NormalHeader.css
+._39oUCO1OuizVPwcnnv88no ._1-9sir4j_KQiMqdkZjQN0u {
+ position: fixed !important;
+ top: 35px !important;
+ right: 0 !important;
+}
+
+._39oUCO1OuizVPwcnnv88no {
+ background: var(--color-dark) !important;
+}
+
+._3Z3ohQ8-1NKnCZkbS6fvy {
+ height: 37px !important;
+ min-height: 37px !important;
+}
+
+._25lBLzuVeYAUG279up4xP8 {
+ color: var(--darkwhite) !important;
+}
+._2UyOBeiSdBayaFdRa39N2O {
+ padding: 0px 0px 4px !important;
+}
+
+._1_yS5UP7el0aN4vntx3dx {
+ padding: 0 !important;
+ position: absolute !important;
+ --steam-control-width: 242px !important;
+ right: 170px !important;
+ top: 40px !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu {
+ width: fit-content !important;
+ box-shadow: none !important;
+ background: none !important;
+ gap: 8px !important;
+ flex: 0 !important;
+}
+
+._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2), ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(3), ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(3) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(4), ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(1):hover + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(2) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(3) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(4) + ._2UyOBeiSdBayaFdRa39N2O:nth-of-type(5) {
+ opacity: 1;
+}
+
+/* This allows for hover to work on this element.*/
+/* Although this ruins dragging for the far-left where the menu is, it should be fine.*/
+._3s0lkohH8wU2do0K1il28Y{
+ -webkit-app-region: no-drag;
+}
+
+._3s0lkohH8wU2do0K1il28Y:hover > div {
+ opacity: 1 !important;
+} /* - Maple */
\ No newline at end of file
blob - /dev/null
blob + 94f63ea2ffd078b9ee4578e4bec539d0be5a8bd8 (mode 644)
--- /dev/null
+++ millennium/simply-dark/headers/NormalHeader.js
+//responsible for coordinating when the length of the title bar changes, so it will displace the bottom bars positioning respectively
+new MutationObserver((mutations) => {
+ mutations.forEach(function(mutation) {
+ mutation.addedNodes.forEach(function(addedNode) {
+ //looking for steamdesktop_OuterFrame_3mz8w which is the parent of titlebarcontrols_TitleBarControls_
+ if (addedNode.classList && addedNode.classList.contains('_3mz8wQ6Q44B8P7pzPP4Iyw')) {
+ const title_bar_controls = document.querySelector('._3cykd-VfN_xBxf3Qxriccm')
+ const bottom_bar_controls = document.querySelector('._1_yS5UP7el0aN4vntx3dx')
+ const top_bar_container = document.querySelector("._3Z3ohQ8-1NKnCZkbS6fvy")
+ //fires `changeOffset` before adding mutationobs
+ changeOffset(bottom_bar_controls, title_bar_controls.offsetWidth)
+ //titlebar observer
+ new MutationObserver((mutationsList) => {
+ for (const _ of mutationsList) {
+ //every time the titlebar changes, update the offset of the bottombars positioning (they are exactly relative)
+ changeOffset(bottom_bar_controls, title_bar_controls.offsetWidth)
+ }
+ //listen for mutations on the titlebar, but we dont listen for anything in specific, just changes
+ }).observe(title_bar_controls, { attributes: true, childList: true, subtree: true, characterData: true });
+
+ //Workaround to "refresh" the bottombars positioning without waiting the titlebar to change size by clicking the top empty space
+ top_bar_container.addEventListener("click", () => {
+ changeOffset(bottom_bar_controls, title_bar_controls.offsetWidth)
+ })
+ }
+ });
+ });
+//create an observer on the document body so you can read new DOM modifications.
+//used to tell when titlebar contents have loaded
+}).observe(document.body, { childList: true, subtree: true });
+
+function changeOffset(bottom, offsetWidth) {
+ bottom.style.setProperty('right', `${offsetWidth}px`, 'important')
+};
\ No newline at end of file
blob - /dev/null
blob + d3f27019941bb9cd217ad7da4af69f6d71636ceb (mode 644)
--- /dev/null
+++ millennium/simply-dark/overlay/Browser.css
+.C9tvuqqEXGcrkcAtHrQ_R.PopupFullWindow._290hvyptb3mP0rOSaapjgZ.GameOverview {
+ background: var(--color-dark) !important;
+}
+
+._27m9Qbg4ShilOgwvYZWV8l {
+ background: var(--color-dark) !important;
+}
+
+._2wBK7MqJSrj6QCxf3357yL {
+ background: var(--color-darker) !important;
+}
+
+._17TJ4vdOZjHL-bjbRUKzxp._3WMiI5PUctRy9VuvX4r5hj {
+ background: var(--color-light) !important;
+}
+
+._2OwqXw1nhBL430bsYTeEr- {
+ background: var(--color-light) !important;
+}
+
+._26Gmfe09NRsnF7eprTZYdY {
+ background: var(--color-darker) !important;
+}
+
+.C9tvuqqEXGcrkcAtHrQ_R.PopupFullWindow._290hvyptb3mP0rOSaapjgZ.OverlayBrowser_Guides {
+ background: var(--color-darker) !important;
+}
+
+._22LPPg9PMLlPRAP1u7N5mb {
+ background: var(--color-dark) !important;
+}
+
+.C9tvuqqEXGcrkcAtHrQ_R.PopupFullWindow._290hvyptb3mP0rOSaapjgZ.OverlayBrowser_Browser {
+ background: var(--color-darker) !important;
+}
+
+.aqvbkhC1ejt4s8QvWA-c5 {
+ background: var(--darkergrey) !important;
+ border-bottom: 1px solid var(--littlegrey) !important;
+}
+
+.TSlxCkeUMGwzmg21_WU8-._1W4bbifjEN3KdqKEhpmies {
+ background: var(--color-light) !important;
+ border: none !important;
+}
+
+._2RI6oQrDKUNzBqhIk4zI {
+ font-size: 13px !important;
+}
+
+.aqvbkhC1ejt4s8QvWA-c5 .TSlxCkeUMGwzmg21_WU8- {
+ background: none !important;
+ border: none !important;
+ border-radius: 3px !important;
+}
+
+.aqvbkhC1ejt4s8QvWA-c5 .TSlxCkeUMGwzmg21_WU8-:hover {
+ background: var(--color-dark) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + 9a3adc0ff0e4ab328fdb33d8b671f7d455298b50 (mode 644)
--- /dev/null
+++ millennium/simply-dark/overlay/GameNotes.css
+.RTicBCbDcEGkjsbmWzA8C.PageListColumn.Panel.Focusable {
+ background: var(--color-dark) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + cac30b0a40afaf215ab5ea9c7ff9763719ee737a (mode 644)
--- /dev/null
+++ millennium/simply-dark/overlay/GameOverview.css
+/* Set default window colors on the Overlay */
+.C9tvuqqEXGcrkcAtHrQ_R, ._27m9Qbg4ShilOgwvYZWV8l {
+ background: radial-gradient(155.42% 100% at 0% 0%, var(--darkergrey) 0 0%, var(--color-darker) 100%) !important;
+}
+
+/* Overview Headers */
+._27m9Qbg4ShilOgwvYZWV8l ._1vG-vFfwpDeNStVbyo1Qy6 ._2wBK7MqJSrj6QCxf3357yL {
+ background: var(--color-light) !important;
+}
+
+/* Item Colors */
+._27m9Qbg4ShilOgwvYZWV8l ._1vG-vFfwpDeNStVbyo1Qy6 ._17TJ4vdOZjHL-bjbRUKzxp._3WMiI5PUctRy9VuvX4r5hj, ._27m9Qbg4ShilOgwvYZWV8l ._1vG-vFfwpDeNStVbyo1Qy6 ._2OwqXw1nhBL430bsYTeEr-, ._27m9Qbg4ShilOgwvYZWV8l ._1vG-vFfwpDeNStVbyo1Qy6 ._3eNE5TKtDTnfNBAsCqfcP0 {
+ background: var(--color-dark) !important;
+}
+
+._27m9Qbg4ShilOgwvYZWV8l ._1vG-vFfwpDeNStVbyo1Qy6 ._2fYjCJSwdJxdjbi7ysISdL ._2NLwfYHr9KUJZ7LD9nkyva {
+ background: var(--color-light) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + d06ead0636a967736642b709173f1ff806bc9c28 (mode 644)
--- /dev/null
+++ millennium/simply-dark/overlay/Overlay.css
+
+/* Overlay Button Colors */
+._3OzkVrQFFPv0aV41N4MrHV .fbu3l7kPiBeb3EKCjIb8n ._3ZLaTxSHxeGcoKlIy_-Z0L, .fi6UDkxJq66MLo2z9wabQ ._2LJMRr1_5XUK4wlt7YMyPi .mh8m9p4PBg_Qrev1bfTzc, .fi6UDkxJq66MLo2z9wabQ .BoygotvcKo4DC4dSix8G3 {
+ background: var(--darkergrey) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + cc7330481f4e4052eacc1b3c33416693d36bd75a (mode 644)
--- /dev/null
+++ millennium/simply-dark/overlay/ScreenshotManager.css
+/* Set default window colors on the Overlay */
+.C9tvuqqEXGcrkcAtHrQ_R {
+ background: radial-gradient(155.42% 100% at 0% 0%, var(--darkergrey) 0 0%, var(--color-darker) 100%) !important;
+}
+
+._1FPJYJrOP3sGOAaFkUKvsa._2WymaTKNIM1vyXh6dWqpnk {
+ background: var(--color-light) !important;
+}
+
+._1FPJYJrOP3sGOAaFkUKvsa._2WymaTKNIM1vyXh6dWqpnk._2DImOBZViQSVUAGzChzYs7 {
+ background: var(--begrey) !important;
+}
+
+/* Popup Modals */
+.DialogContent._DialogLayout.GenericConfirmDialog._DialogCenterVertically {
+ background: var(--color-dark) !important;
+}
+
+button.DialogButton {
+ background: var(--color-light) !important;
+}
+
+/* No Screenshots Modal Dialog */
+._2lrrNsbFXBpMmd7sl1W8zv {
+ background: var(--color-dark) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + 2c89d03e09a3cd59c0d15c1a346ebf9af3c2ec21 (mode 644)
--- /dev/null
+++ millennium/simply-dark/skin.json
+{
+ "Conditions": {
+ "Compacted Header": {
+ "tab": "Window",
+ "description": "Use a more compact header bar on Steam (everything is on 1 row)",
+ "default": "Normal",
+ "values": {
+ "Normal": {
+ "TargetCss": {
+ "affects": ["^Steam$"], "src": "headers/NormalHeader.css"
+ },
+ "TargetJs": {
+ "affects": ["^Steam$"], "src": "headers/NormalHeader.js"
+ }
+ },
+ "Compact": {
+ "TargetCss": {
+ "affects": ["^Steam$"], "src": "headers/CompactHeader.css"
+ },
+ "TargetJs": {
+ "affects": ["^Steam$"], "src": "headers/CompactHeader.js"
+ }
+ }
+ }
+ },
+ "Native Titlebars": {
+ "tab": "Window",
+ "description": "Use system's native titlebars (minimize, maximize, restore, and close) buttons",
+ "default": "Show",
+ "values": {
+ "Show": {},
+ "Hide": {
+ "TargetCss": {
+ "affects": ["^Steam$"], "src": "config/NativeTitlebarVisibility.css"
+ }
+ }
+ }
+ },
+ "Wallet Visibility": {
+ "tab": "Elements",
+ "description": "Show wallet balance on the top right menu",
+ "default": "Show",
+ "values": {
+ "Show": {},
+ "Hide": {
+ "TargetCss": {
+ "affects": ["^Account", "^Steam$"], "src": "config/WalletVisibility.css"
+ }
+ }
+ }
+ },
+ "URL Visibility": {
+ "tab": "Elements",
+ "description": "Show URL bar when browsing inside Steam",
+ "default": "Show",
+ "values": {
+ "Show": {},
+ "Hide": {
+ "TargetCss": {
+ "affects": ["^Steam$"], "src": "config/URLBarVisibility.css"
+ }
+ }
+ }
+ },
+ "What's New Visibility": {
+ "tab": "Elements",
+ "description": "Show news and updates on library from the games you own",
+ "default": "Show",
+ "values": {
+ "Show": {},
+ "Hide": {
+ "TargetCss": {
+ "affects": ["^Steam$"], "src": "config/WhatsNewVisibility.css"
+ }
+ }
+ }
+ },
+ "Add Shelf Visibility": {
+ "tab": "Elements",
+ "description": "Show add shelf button",
+ "default": "Show",
+ "values": {
+ "Show": {},
+ "Hide": {
+ "TargetCss": {
+ "affects": ["^Steam$"], "src": "config/AddShelfVisibility.css"
+ }
+ }
+ }
+ },
+ "Friends Status Outline": {
+ "tab": "Elements",
+ "description": "Enable the friends status (online and in-game) indicator in friends tab",
+ "default": "Hide",
+ "values": {
+ "Hide": {},
+ "Show": {
+ "TargetCss": {
+ "affects": ["friendsui-container"], "src": "config/FriendsOutline.css"
+ }
+ }
+ }
+ },
+ "Steam News Visibility": {
+ "tab": "Elements",
+ "description": "Show 'Steam News' button (megaphone) on top right",
+ "default": "Show",
+ "values": {
+ "Show": {},
+ "Hide": {
+ "TargetCss": {
+ "affects": ["^Steam$"], "src": "config/NewsButtonVisibility.css"
+ }
+ }
+ }
+ }
+ },
+ "GlobalsColors": [
+ {
+ "ColorName": "--color-light",
+ "Description": "Button Colors",
+ "HexColorCode": "#303030",
+ "OriginalColorCode": "#303030"
+ },
+ {
+ "ColorName": "--color-dark",
+ "Description": "TitleBar, TitleBar Buttons, Library <div> background, Scrollbar",
+ "HexColorCode": "#212121",
+ "OriginalColorCode": "#212121"
+ },
+ {
+ "ColorName": "--color-darker",
+ "Description": "Main Background, Library and TitleBar accent",
+ "HexColorCode": "#191919",
+ "OriginalColorCode": "#191919"
+ },
+ {
+ "ColorName": "--color-darkest",
+ "Description": "Low priority accent color",
+ "HexColorCode": "#141414",
+ "OriginalColorCode": "#141414"
+ },
+ {
+ "ColorName": "--scrollbar",
+ "Description": "Webkit Scrollbar",
+ "HexColorCode": "#303030",
+ "OriginalColorCode": "#303030"
+ },
+ {
+ "ColorName": "--black",
+ "Description": "Webkit",
+ "HexColorCode": "#000000",
+ "OriginalColorCode": "#000000"
+ },
+ {
+ "ColorName": "--black-ish",
+ "Description": "Webkit",
+ "HexColorCode": "#2a3f5a00",
+ "OriginalColorCode": "#2a3f5a00"
+ },
+ {
+ "ColorName": "--realblack",
+ "Description": "Webkit",
+ "HexColorCode": "#101010",
+ "OriginalColorCode": "#101010"
+ },
+ {
+ "ColorName": "--blacker-ish",
+ "Description": "Webkit",
+ "HexColorCode": "#1b1b1b",
+ "OriginalColorCode": "#1b1b1b"
+ },
+ {
+ "ColorName": "--blacker",
+ "Description": "Webkit",
+ "HexColorCode": "#1c1c1c",
+ "OriginalColorCode": "#1c1c1c"
+ },
+ {
+ "ColorName": "--lightblack",
+ "Description": "Webkit",
+ "HexColorCode": "#121212",
+ "OriginalColorCode": "#121212"
+ },
+ {
+ "ColorName": "--darkergrey",
+ "Description": "Webkit",
+ "HexColorCode": "#151515",
+ "OriginalColorCode": "#151515"
+ },
+ {
+ "ColorName": "--bedarkgrey",
+ "Description": "Webkit",
+ "HexColorCode": "#161616",
+ "OriginalColorCode": "#161616"
+ },
+ {
+ "ColorName": "--thegrey",
+ "Description": "Webkit",
+ "HexColorCode": "#181818",
+ "OriginalColorCode": "#181818"
+ },
+ {
+ "ColorName": "--begrey",
+ "Description": "Webkit",
+ "HexColorCode": "#262627",
+ "OriginalColorCode": "#262627"
+ },
+ {
+ "ColorName": "--littlegrey",
+ "Description": "Webkit",
+ "HexColorCode": "#282828",
+ "OriginalColorCode": "#282828"
+ },
+ {
+ "ColorName": "--darkgrey",
+ "Description": "Webkit",
+ "HexColorCode": "#1e1e1f",
+ "OriginalColorCode": "#1e1e1f"
+ },
+ {
+ "ColorName": "--grey",
+ "Description": "Webkit",
+ "HexColorCode": "#2e2e2f",
+ "OriginalColorCode": "#2e2e2f"
+ },
+ {
+ "ColorName": "--lightgrey",
+ "Description": "Webkit",
+ "HexColorCode": "#3e3e3f",
+ "OriginalColorCode": "#3e3e3f"
+ },
+ {
+ "ColorName": "--lightergrey",
+ "Description": "Webkit",
+ "HexColorCode": "#353535",
+ "OriginalColorCode": "#353535"
+ },
+ {
+ "ColorName": "--grey-ish",
+ "Description": "Webkit",
+ "HexColorCode": "#454545",
+ "OriginalColorCode": "#454545"
+ },
+ {
+ "ColorName": "--darkerwhite",
+ "Description": "Webkit",
+ "HexColorCode": "#b8b6b4",
+ "OriginalColorCode": "#b8b6b4"
+ },
+ {
+ "ColorName": "--darkwhite",
+ "Description": "Webkit",
+ "HexColorCode": "#d9dadd",
+ "OriginalColorCode": "#d9dadd"
+ },
+ {
+ "ColorName": "--white",
+ "Description": "Webkit",
+ "HexColorCode": "#ffffff",
+ "OriginalColorCode": "#ffffff"
+ },
+ {
+ "ColorName": "--darkblue",
+ "Description": "Webkit",
+ "HexColorCode": "#0e5984",
+ "OriginalColorCode": "#0e5984"
+ },
+ {
+ "ColorName": "--blue",
+ "Description": "Webkit",
+ "HexColorCode": "#4f95bd",
+ "OriginalColorCode": "#4f95bd"
+ },
+ {
+ "ColorName": "--blu",
+ "Description": "Webkit",
+ "HexColorCode": "#67c1f5",
+ "OriginalColorCode": "#67c1f5"
+ },
+ {
+ "ColorName": "--brightblue",
+ "Description": "Webkit",
+ "HexColorCode": "#1a9fff",
+ "OriginalColorCode": "#1a9fff"
+ },
+ {
+ "ColorName": "--blue-ish",
+ "Description": "Webkit",
+ "HexColorCode": "#7cbef8",
+ "OriginalColorCode": "#7cbef8"
+ },
+ {
+ "ColorName": "--blue-er",
+ "Description": "Webkit",
+ "HexColorCode": "#a4d7f5",
+ "OriginalColorCode": "#a4d7f5"
+ },
+ {
+ "ColorName": "--lightblue",
+ "Description": "Webkit",
+ "HexColorCode": "#c4e4f2",
+ "OriginalColorCode": "#c4e4f2"
+ },
+ {
+ "ColorName": "--darkgreen",
+ "Description": "Webkit",
+ "HexColorCode": "#5c7e10",
+ "OriginalColorCode": "#5c7e10"
+ },
+ {
+ "ColorName": "--green",
+ "Description": "Webkit",
+ "HexColorCode": "#d2e885",
+ "OriginalColorCode": "#d2e885"
+ },
+ {
+ "ColorName": "--ingame",
+ "Description": "Webkit",
+ "HexColorCode": "#90ba3c",
+ "OriginalColorCode": "#90ba3c"
+ },
+ {
+ "ColorName": "--online",
+ "Description": "Webkit",
+ "HexColorCode": "#57cbde",
+ "OriginalColorCode": "#57cbde"
+ },
+ {
+ "ColorName": "--offline",
+ "Description": "Webkit",
+ "HexColorCode": "#898989",
+ "OriginalColorCode": "#898989"
+ },
+ {
+ "ColorName": "--gold",
+ "Description": "Webkit",
+ "HexColorCode": "#ffcc6a",
+ "OriginalColorCode": "#ffcc6a"
+ },
+ {
+ "ColorName": "--bronze",
+ "Description": "Webkit",
+ "HexColorCode": "#695833",
+ "OriginalColorCode": "#695833"
+ },
+ {
+ "ColorName": "--purple",
+ "Description": "Webkit",
+ "HexColorCode": "#6624e2",
+ "OriginalColorCode": "#6624e2"
+ },
+ {
+ "ColorName": "--pink",
+ "Description": "Webkit",
+ "HexColorCode": "#ff00ff",
+ "OriginalColorCode": "#FF00FF"
+ },
+ {
+ "ColorName": "--red",
+ "Description": "Webkit",
+ "HexColorCode": "#ff0000",
+ "OriginalColorCode": "#FF0000"
+ },
+ {
+ "ColorName": "--orange",
+ "Description": "Webkit",
+ "HexColorCode": "#ff6600",
+ "OriginalColorCode": "#FF6600"
+ },
+ {
+ "ColorName": "--yellow",
+ "Description": "Webkit",
+ "HexColorCode": "#ffff00",
+ "OriginalColorCode": "#FFFF00"
+ }
+ ],
+ "Patches": [
+ {
+ "MatchRegexString": "SteamBrowser_Find",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": "^Steam$",
+ "Statement": [
+ {
+ "Equals": true,
+ "False": {
+ "TargetCss": "headers/NormalHeader.css",
+ "TargetJs": "headers/NormalHeader.js"
+ },
+ "If": "Compacted Header",
+ "True": {
+ "TargetCss": "headers/CompactHeader.css",
+ "TargetJs": "headers/CompactHeader.js"
+ }
+ }
+ ],
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": "Shutdown",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": "friendsui-container",
+ "TargetCss": "steam/friends/FriendsList.css",
+ "TargetJs": "steam/friends/FriendsList.js"
+ },
+ {
+ "MatchRegexString": "ModalDialogPopup",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": ".*Supernav$",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": ".*Menu$",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": ".*Properties.*",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": "Special Offers",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": "Steam Big Picture Mode",
+ "TargetCss": "bigpicture.custom.css"
+ },
+ {
+ "MatchRegexString": ".*SP Overlay:.*",
+ "TargetCss": "overlay/Overlay.css"
+ },
+ {
+ "MatchRegexString": "Achievements",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": "GameNotes",
+ "TargetCss": "overlay/GameNotes.css"
+ },
+ {
+ "MatchRegexString": "ScreenshotManager",
+ "TargetCss": "overlay/ScreenshotManager.css"
+ },
+ {
+ "MatchRegexString": "GameOverview",
+ "TargetCss": "overlay/GameOverview.css"
+ },
+ {
+ "MatchRegexString": "SoundtrackPlayer",
+ "TargetCss": "Steam.css"
+ },
+ {
+ "MatchRegexString": "OverlayBrowser_(?!.*_Find$).*",
+ "TargetCss": "overlay/Browser.css"
+ },
+ {
+ "MatchRegexString": "OverlayBrowser_.*_Find",
+ "TargetCss": "overlay/Browser.css"
+ },
+ {
+ "MatchRegexString": "OverlayTab\\d+_Find",
+ "TargetCss": "overlay/Browser.css"
+ },
+ {
+ "MatchRegexString": "OverlayBrowser_Browser",
+ "TargetCss": "overlay/Browser.css"
+ }
+ ],
+ "RootColors": "colors.css",
+ "Steam-WebKit": "webkit/webkit.css",
+ "UseDefaultPatches": true,
+ "author": "ShadowMonster",
+ "description": "A sleek and elegant theme that brings a darker, more immersive experience to your Steam client.",
+ "discord_support": {
+ "inviteCodeExcludingLink": "NcNMP6r2Cw"
+ },
+ "github": {
+ "owner": "shdwmtr",
+ "repo_name": "simply-dark"
+ },
+ "header_image": "https://i.imgur.com/uXtPTnr.png",
+ "name": "Simple Dark.",
+ "splash_image": "https://i.imgur.com/uXtPTnr.png",
+ "tags": [
+ "Minimal",
+ "Dark",
+ "Sleek",
+ "Compact"
+ ],
+ "version": "1.5"
+}
blob - /dev/null
blob + 2fa3f3dac559575ade09365046cefe91b239b94a (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/DownloadsPage.css
+
+/* Downloads Area */
+
+._3KDkLoCR8OM8xfdQysKn9t {
+ background: var(--color-darkest) !important;
+}
+
+._1ugNiylO2vKXhirsGocAxa{
+ background: var(--darkgrey) !important;
+}
+
+._3Tfp8-wTAttW3WVa_X9JVC._3Tfp8-wTAttW3WVa_X9JVC, ._3Tfp8-wTAttW3WVa_X9JVC._3Tfp8-wTAttW3WVa_X9JVC:enabled, ._3Tfp8-wTAttW3WVa_X9JVC._3Tfp8-wTAttW3WVa_X9JVC:active, ._3Tfp8-wTAttW3WVa_X9JVC._3Tfp8-wTAttW3WVa_X9JVC:hover, ._3Tfp8-wTAttW3WVa_X9JVC._3Tfp8-wTAttW3WVa_X9JVC:enabled:active:hover, ._3Tfp8-wTAttW3WVa_X9JVC._3Tfp8-wTAttW3WVa_X9JVC.DialogButton:enabled {
+ background: var(--darkgrey) !important;
+}
+
+._1VNuYHM6BPBOJspC6zPf5r ._3oavRVhIS9tC3vBsFT4Ggi, ._1VNuYHM6BPBOJspC6zPf5r ._3oavRVhIS9tC3vBsFT4Ggi:enabled, ._1VNuYHM6BPBOJspC6zPf5r ._3oavRVhIS9tC3vBsFT4Ggi:active, ._1VNuYHM6BPBOJspC6zPf5r ._3oavRVhIS9tC3vBsFT4Ggi:hover, ._1VNuYHM6BPBOJspC6zPf5r ._3oavRVhIS9tC3vBsFT4Ggi:enabled:active:hover, ._1VNuYHM6BPBOJspC6zPf5r ._3oavRVhIS9tC3vBsFT4Ggi:enabled {
+ background: var(--color-light) !important;
+}
+
+._1VNuYHM6BPBOJspC6zPf5r:hover, ._1VNuYHM6BPBOJspC6zPf5r._3-SbBb63lDnu6LzKV-q3Cg {
+ background: var(--color-light) !important;
+}
+
+._1VNuYHM6BPBOJspC6zPf5r.IbePLaw-vSvhG1GTenYFg {
+ background: var(--color-dark) !important;
+}
+
+.IbePLaw-vSvhG1GTenYFg .OINnOU8K5HzPe2nzczpZi {
+ background: var(--color-light) !important;
+}
+
blob - /dev/null
blob + 7f0c9891b8886b87e75ad3c79b7416f875ca8302 (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/GameNotifications.css
+/* TODO port from steam */
\ No newline at end of file
blob - /dev/null
blob + e0f7e0440ee73752b1e259c6177b517fb3f4b2f8 (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/Properties.css
+/* Settings Panel */
+._1I3NifxqTHCkE-2DeritAs {
+ background: var(--darkergrey) !important;
+}
+
+.RTicBCbDcEGkjsbmWzA8C {
+ background: var(--darkergrey) !important;
+}
+
+.bkfjn0yka2uHNqEvWZaTJ.Myra7iGjzCdMPzitboVfh {
+ background: var(--grey) !important;
+}
+
+._1FyBL6obxHQ2Z2CsaV2Gbz ._2V2nc3qHRjg_726Zc2HT28 {
+ background: var(--grey) !important;
+}
+
+.DialogTextInputBase, ._DialogInputContainer {
+ background: var(--color-dark) !important;
+}
+
+.PopupFullWindow>._2yAm5LY_eu-Vg_52l0HFlM{
+ background-color: transparent !important;
+}
+
+._3qEgQJqeb0zyM12KXq64Or, .BRmrC-jnwpXqye4oYB21C button.DialogButton {
+ color: var(--brightblue) !important;
+}
+
+._2JtC3JSLKaOtdpAVEACsG1::before, .Mq25Nap224hVdTdtXSsnq::before {
+ background: var(--brightblue) !important;
+}
+
+.DialogDropDown_Arrow .SVGIcon_DownArrowContextMenu {
+ fill: var(--brightblue) !important;
+}
+
+.DialogBody a {
+ color: var(--blu) !important;
+}
+
+.DialogHeader, .bkfjn0yka2uHNqEvWZaTJ.Myra7iGjzCdMPzitboVfh, .bkfjn0yka2uHNqEvWZaTJ.Myra7iGjzCdMPzitboVfh .U6HcKswXzjmWtFxbjxuz4 {
+ color: var(--white) !important;
+}
+
+.bkfjn0yka2uHNqEvWZaTJ, ._3b0U-QDD-uhFpw6xM716fw, .U6HcKswXzjmWtFxbjxuz4 {
+ color: var(--darkwhite) !important;
+}
+
+._3qIXY674NedSZNa-CXtNlt, ._2OJfkxlD3X9p8Ygu1vR7Lr {
+ color: var(--darkerwhite) !important;
+}
+
+.bkfjn0yka2uHNqEvWZaTJ:not(.Myra7iGjzCdMPzitboVfh):hover {
+ background-color: var(--darkergrey) !important;
+ color: var(--white) !important;
+}
+
+/* DLC page */
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody .ZII4C3WPvs65P3yvAtV69 ._3jITh4rujugtH2LfgXhuLE {
+ background: var(--grey) !important;
+}
+
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody ._3sXdOJ9DEh5zdS54_ptwgW ._1SKB0Xc7OpWlOlr-wSi8ho {
+ background: var(--grey) !important;
+}
+
+.DialogBody a {
+ background: var(--darkergrey) !important;
+}
+
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody ._3sXdOJ9DEh5zdS54_ptwgW ._2nXS1OQvhODwzoAc75AEKR {
+ margin: none !important;
+ background: var(--darkergrey) !important;
+}
+
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody ._3sXdOJ9DEh5zdS54_ptwgW {
+ background: var(--darkergrey) !important;
+ border-radius: 3px !important;
+}
+
+/* Local Files */
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody .vgVsCDEci0IK6JY9IrT9w .appproperties_BrowseDiskButton_ {
+ background: var(--darkergrey) !important;
+}
+
+button.DialogButton {
+ background: var(--color-dark) !important;
+}
+
+.DialogTwoColLayout button.DialogButton {
+ background: var(--color-light) !important;
+}
+
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody .pht3SaejGcAJEjNG8d6nd {
+ background: var(--darkergrey) !important;
+ border-radius: 3px !important;
+}
+
+
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody ._3ZhiKhciPyiGGxDFuGOYpc .pht3SaejGcAJEjNG8d6nd .iWdskI4in7pZbS0ETm5QQ ._1N6t5cU9mG4040gmQUU6-U,
+._1FyBL6obxHQ2Z2CsaV2Gbz .DialogBody ._3ZhiKhciPyiGGxDFuGOYpc .pht3SaejGcAJEjNG8d6nd .iWdskI4in7pZbS0ETm5QQ ._1N6t5cU9mG4040gmQUU6-U .Focusable > div{
+ background: var(--darkergrey) !important;
+}
+
+.DY4_wSF8h9T5o46hO5I9V ._1b6LYWVijW-9E4YV0keDWZ:hover {
+ background: var(--grey) !important;
+}
+
+a._1Z3B4iGT48X6pYKxjbVdBO:hover {
+ background: var(--grey) !important;
+}
+
+._2-O4ZG0KrnSrzISHBKctFQ:hover {
+ background: var(--darkergrey) !important;
+}
+._2-O4ZG0KrnSrzISHBKctFQ._1UBpAXP408Ez_L_mXhW5Q9:hover {
+ background: var(--darkergrey) !important;
+}
+
+._1UBpAXP408Ez_L_mXhW5Q9._2-O4ZG0KrnSrzISHBKctFQ:hover, ._1UBpAXP408Ez_L_mXhW5Q9._2-O4ZG0KrnSrzISHBKctFQ._3cMVyOc-9F9Jvp3uKF7_xj, ._1UBpAXP408Ez_L_mXhW5Q9._2-O4ZG0KrnSrzISHBKctFQ:hover, ._1UBpAXP408Ez_L_mXhW5Q9 ._2-O4ZG0KrnSrzISHBKctFQ:hover, ._1UBpAXP408Ez_L_mXhW5Q9 ._2-O4ZG0KrnSrzISHBKctFQ._3cMVyOc-9F9Jvp3uKF7_xj, ._1UBpAXP408Ez_L_mXhW5Q9 ._2-O4ZG0KrnSrzISHBKctFQ :hover {
+ background: var(--grey) !important;
+}
+
+.millenniumPluginField {
+ background: var(--color-dark) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + ea799790b201669e357640f116bf91eacc58d4d7 (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/TopBar.css
+/* got this from laser */
+
+._3yD46y5pd3zOGR7CzKs0mC div:nth-of-type(2) {
+ display: none !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._1TdaAqMFadi0UTqilrkelR, ._3vCzSrrXZzZjVJFZNg9SGu ._2foCkpRXhqq0UGVE50BWqj, ._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 {
+ background-color: var(--color-dark) !important;
+ padding: 0px 12px !important;
+ border-radius: 2px !important;
+ min-width: 24px !important;
+ min-height: 24px !important;
+ max-height: 24px !important;
+ display: flex !important;
+ height: 100% !important;
+ align-items: center !important;
+ justify-content: center !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._1TdaAqMFadi0UTqilrkelR:hover, ._3vCzSrrXZzZjVJFZNg9SGu ._2foCkpRXhqq0UGVE50BWqj:hover, ._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9:hover {
+ background-color: var(--color-light) !important;
+ transition: background-color .15s ease-out !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 ._2VtAqT03BpBsVdmxwptn9D {
+ max-width: 180px !important;
+ align-items: center !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 ._2VtAqT03BpBsVdmxwptn9D ._21vPQjHoo0uwud5lfCD_x- {
+ margin: 0 !important;
+ margin-top: 2px !important;
+ box-shadow: none !important;
+ height: 20px !important;
+ width: 20px !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 ._2VtAqT03BpBsVdmxwptn9D ._2_FomluqqgQ2Hx8ON3AVep {
+ margin: 0 !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 ._2VtAqT03BpBsVdmxwptn9D ._1sCy-pm412Smb0wJx0W-4, ._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 .ip-YZhijAMZcuRoXBGiye ._3wJnTtcTLEp0R7eQj_mK8Y,
+._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 ._2VtAqT03BpBsVdmxwptn9D ._2EQ7ghgqIdjKv9jsQC0Zq9, ._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 .ip-YZhijAMZcuRoXBGiye ._3wJnTtcTLEp0R7eQj_mK8Y {
+ padding-top: 0 !important;
+}
+
+.ip-YZhijAMZcuRoXBGiye {
+ padding: 0px 0px 2px 0px !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2iJsgdTIX9Tj23rWnB7Q-c, ._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 ._2VtAqT03BpBsVdmxwptn9D ._21vPQjHoo0uwud5lfCD_x-,
+._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 ._2VtAqT03BpBsVdmxwptn9D .IconBevel {
+ display: none !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2foCkpRXhqq0UGVE50BWqj {
+ order: var(2) !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2EQ7ghgqIdjKv9jsQC0Zq9 {
+ order: var(1) !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._1TdaAqMFadi0UTqilrkelR {
+ order: var(3) !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2foCkpRXhqq0UGVE50BWqj ._3OhUxFVlQYr9W5ThxstR8k, ._3vCzSrrXZzZjVJFZNg9SGu ._1TdaAqMFadi0UTqilrkelR ._3OhUxFVlQYr9W5ThxstR8k {
+ position: absolute !important;
+ top: 32px !important;
+ opacity: 0 !important;
+ transition: opacity .25s !important;
+ pointer-events: none !important;
+ box-sizing: border-box !important;
+ font-size: 13px !important;
+ background-color: var(--grey-ish) !important;
+ border-radius: 2px !important;
+ padding: 6px 8px !important;
+ box-shadow: 1px 1px 8px #0005, 2px 2px 16px 1px #0005 !important;
+ width: fit-content !important;
+ user-select: none !important;
+ overflow: hidden !important;
+ text-overflow: ellipsis !important;
+}
+
+._3vCzSrrXZzZjVJFZNg9SGu ._2foCkpRXhqq0UGVE50BWqj:hover ._3OhUxFVlQYr9W5ThxstR8k, ._3vCzSrrXZzZjVJFZNg9SGu ._1TdaAqMFadi0UTqilrkelR:hover ._3OhUxFVlQYr9W5ThxstR8k {
+ opacity: 1 !important;
+}
+
+._1_yS5UP7el0aN4vntx3dx > div:first-of-type {
+ position: fixed;
+ width: 700px;
+ left: 50%;
+ transform: translateX(-50%);
+}
+
+._3GaHEQJW9B1Rlt0Ddz3E8D {
+ position: fixed;
+ bottom: 0;
+ right: 0;
+}
\ No newline at end of file
blob - /dev/null
blob + a3c900f70d86201b458b3c3cc525ebb7588bb48f (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/friends/ChatWindow.css
+@import url(../../titlebar.css);
+
+.chatWindow .chatHeader {
+ min-height: 0px !important;
+}
+.chatTabList>div {
+ margin-left: 7px !important;
+}
+.chatTabSetContainer.inclient {
+ margin-bottom: 7px !important;
+}
+.X2iywwN7fcdh9zXpXVsrk {
+ border-radius: 3px !important;
+}
+
+.titleBarContainer.ChatTabs {
+ background: var(--color-dark) !important;
+}
+
+.X2iywwN7fcdh9zXpXVsrk._1BNlZUYDbVr8VhCTmq7ksk {
+ background-color: var(--color-light) !important;
+}
+
+.displayRow.minHeightZero.Panel.Focusable {
+ background: var(--thegrey) !important;
+}
+
+html.client_chat_frame .chatWindow .chatEntry {
+ padding-right: 0px !important;
+ padding-bottom: 12px
+}
+
+/* .chatentry_chatSubmitButton_1IEiK {
+ min-height: 0px !important;
+}
+.chatentry_chatSubmitButton_1IEiK {
+ max-width: 100px !important;
+ max-height: 40px !important;
+ min-width: 0px !important;
+} */
+
+._1IEiKQnjHpIv-m601y6hvP {
+ min-height: 35px !important;
+ min-width: 35px !important;
+ border: none !important;
+ border-radius: 4px !important;
+}
+
+._1IEiKQnjHpIv-m601y6hvP._2GM2kkVRqL-SdkG4oQjUzY {
+ background: none !important;
+}
+
+.pewyBQoFSgFWo_Ms99aRm {
+ height: 25px !important;
+ padding: 10px 4px 4px 8px !important;
+}
+
+form._2gP0DqVyb1aEACymAe6if3 {
+ border-radius: 4px !important;
+ background: var(--darkergrey) !important;
+ height: 40px !important;
+ box-shadow: none !important;
+}
+
+.chatEntry.Panel.Focusable {
+ height: 46px !important;
+}
+
+.chatWindow .chatEntry {
+ background: var(--color-dark) !important;
+}
+
+._3grea2u6WuuGLHj9gJFmzY{
+ box-shadow: none !important;
+ padding: 0 !important;
+ background-color: transparent !important;
+}
+
+/* Trio chat button */
+button.RVIs84dAE6wHcjH9tkinc.Aupswi7-c-w3XwNO5cp2i.Focusable,
+button.RVIs84dAE6wHcjH9tkinc._3zOBeq5W4cNK3lRz_7aroW.Focusable,
+button.VoiceToggle {
+ background: var(--darkergrey);
+ min-height: 40px !important;
+ min-width: 40px !important;
+ height: 40px !important;
+ width: 40px !important;
+ margin-right: 4px;
+ border: none !important;
+ border-radius: 4px !important;
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+}
+
+._2WfNoLBdfKwyutA6ho4aSH {
+ box-shadow: none !important;
+ background: none !important;
+}
+
+.ChatMessageEntryVoice .buttonsContainer {
+ margin-top: 2px;
+}
+
+button.RVIs84dAE6wHcjH9tkinc.jaQN2IyN4P8LZXJ6P11qy.Focusable{
+ border: none !important;
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ background: none;
+}
+
+._3Ule3rolhZJiBN4yNNtk1s .RVIs84dAE6wHcjH9tkinc:not(.jaQN2IyN4P8LZXJ6P11qy) {
+ background: none !important;
+}
+
+.ChatMessageEntryVoice{
+ border: none !important;
+ outline: none !important;
+ box-shadow: none !important;
+ margin: 0 0 0 -2px !important;
+ padding: 0 !important;
+ background: transparent;
+}
+
+.VoiceToggleIconCtn{
+ position: static;
+ top: auto;
+ left: auto;
+}
+
+button.VoiceToggle.Inactive.Focusable {
+ background: var(--darkergrey);
+}
+
+._3Ule3rolhZJiBN4yNNtk1s {
+ background-color: var(--color-darker);
+}
+
+.unreadMessageViolator {
+ border: none !important;
+ z-index: 1;
+}
blob - /dev/null
blob + fe7ae86476e3bc016f9c48379ce4cf54c80a66d4 (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/friends/FriendsList.css
+@import url(../../TitleBar.css);
+@import url(ChatWindow.css);
+
+.friendListHeaderContainer {
+ background: var(--color-dark) !important;
+ z-index: 2;
+}
+
+.friend.quickAccessFriend .avatarHolder .avatar {
+ border: 1px solid var(--lightgrey) !important;
+ border-radius: 6px !important;
+}
+
+._1p_QrI3ixF-RAwnxad9pEm {
+ border-radius: 6px !important;
+}
+
+.friendsListSectionTitle {
+ background: var(--color-light) !important;
+}
+
+.friendListFooter {
+ display: none !important;
+}
+
+.window_resize_grip {
+ height: 0px !important;
+ width: 0px !important;
+}
+
+.FriendsListContent .friendlistListContainer .friendGroup.onlineFriends {
+ border-top: .5px solid rgba(143,143,143,.25);
+}
+
+.SRcc1TnUvlXq7c7R6TRb {
+ display: none !important;
+}
+
+/* Hide avatar borders */
+img._3fM0F85j3aWVzr4RJM9-eu {
+ display: none !important;
+}
+
+/* Hide the activity status (looks like shit) */
+._3xUpb5DWXPFNcHHIcv-9pe.avatarStatus {
+ display: none !important;
+}
+
+/* Hide glow */
+.statusHeaderGlow {
+ display: none !important;
+}
+
+/* color of the user status */
+.ingame.awayOrSnooze ._1k82NiWym4STegDGxRBHz2, .ingame ._1k82NiWym4STegDGxRBHz2, .ingame ._1k82NiWym4STegDGxRBHz2 a, .ingame ._1k82NiWym4STegDGxRBHz2 a:hover, .ingame ._1k82NiWym4STegDGxRBHz2 a:active, .ingame ._1k82NiWym4STegDGxRBHz2 a:visited {
+ color: var(--darkerwhite) !important;
+}
+
+.ingame .r62qzcdJQ0qezZglOtiUX {
+ color: var(--ingame) !important;
+}
+
+.friend.offline {
+ opacity: .5;
+}
+
+:not(.friendInviteContainer) .ingame .ContextMenuButton .SVGIcon_DownArrowContextMenu {
+ fill: var(--ingame) !important;
+}
+
+.friend.awayOrSnooze .labelHolder{
+ opacity: .35;
+}
+
+.friendStatusHover.ingame:hover, .friendStatusHover.ingame.Friend_ContextMenuActive {
+ background-color: var(--color-light) !important;
+}
+
+.friendlistListContainer {
+ background: var(--color-dark) !important;
+}
+
+.activeTab {
+ background: none !important;
+ box-shadow: none !important;
+}
+
+.tabLabel {
+ width: 0px !important;
+ display: none !important;
+}
+
+.friendTab.socialListTab.activeTab {
+ padding-left: 10px !important;
+ padding-bottom: 5px !important ;
+ padding-right: 5px !important;
+}
+
+.friendsTabButtonsContainer {
+ padding-right: 0px !important;
+ padding-left: 0px !important;
+}
+
+.activeTab .TabSearchButton {
+ background: var(--color-light) !important;
+}
+
+.searchPlaceholder {
+ position: absolute !important;
+ padding: 2px 0 0 10px !important;
+ text-transform: none !important;
+ font-weight: 400 !important;
+ color: var(--darkerwhite) !important;
+}
+
+.chatRoomListContainer {
+ background: var(--color-dark) !important;
+}
+
+.inputContainer.no-drag > input, .inputContainer.no-drag > input:focus {
+ background-color: var(--color-light)
+}
+
+.title-area-highlight {
+ display: none;
+}
+
+._2EstNjFIIZm_WUSKm5Wt7n.friendsContextMenu.currentUserContextMenu {
+ background: var(--color-darker);
+}
+
+/* Context menu */
+
+.PP7LM0Ow1K5qkR8WElLpt {
+ margin-bottom: 0 !important;
+ background: none !important;
+ border-radius: 2px !important;
+ background-color: var(--color-darker) !important;
+}
\ No newline at end of file
blob - /dev/null
blob + 61eb045dd80c246a0cd3b39e29b50a8b340d3a07 (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/friends/FriendsList.js
+// Text content
+let searchText = "Search for a friend...";
+
+//Create a mutation that edit the search bar
+const obs = new MutationObserver((mutation) => {
+ if(!document.querySelector(".tabSearchTransitionGroup").hasChildNodes()) {
+ document.querySelector(".tabSearchTransitionGroup").innerHTML = `<div class='searchPlaceholder'>${searchText}</div>`;
+ }
+}).observe(document.body, { childList:true, subtree:true });
\ No newline at end of file
blob - /dev/null
blob + 199064858f55cf898e7a5fb950e810c061cf8b9a (mode 644)
--- /dev/null
+++ millennium/simply-dark/steam/modal/ModalDialog.css
+.DialogContent {
+ background: var(--color-dark) !important;
+}
+
+.DialogButton {
+ background: var(--color-light) !important;
+}
+
+.LclHwcOfHFpwObYMD1HLa {
+ background: var(--color-dark) !important;
+}
+
+._134yW7SKfZYwmvwlUElGx- {
+ background: var(--thegrey) !important;
+}
+
+._3DEhfTvEKwgLd4smd6QdaU {
+ background: var(--color-light) !important;
+ border-radius: 4px;
+}
+
+._1d8CbcBnA6t3lsxYdnMv1h {
+ background: var(--color-light) !important;
+}
+
+img._24_AuLm54JVe1Zc0AApCDR._3d_bT685lnWotXxgzKW6am.yDr03475kalWBTwAE-Rnw {
+ border-radius: 4px;
+}
\ No newline at end of file
blob - /dev/null
blob + ae8d82401b373c0dcb909d8c9677b01b3b8d9c73 (mode 644)
--- /dev/null
+++ millennium/simply-dark/webkit/modules/other_module.js
+function say_hello(message) {
+ return `Hello ${message}!`
+}
+
+function was_here(message) {
+ return `${message} was here!`
+}
+
+export { say_hello, was_here }
\ No newline at end of file
blob - /dev/null
blob + 4ec1d8f283bf1b3f39e40ae54a0852a918c1f3ac (mode 644)
--- /dev/null
+++ millennium/simply-dark/webkit/reservedWebkitColors.css
+:root {
+ /*
+ Colors listed here will not show on Millennium theme settings,
+ but used in some parts of the steam app and webkit.
+ */
+ --black-ish: #2a3f5a00;
+ --realblack: #101010;
+ --lightblack: #121212;
+ --bedarkgrey: #161616;
+ --darkblue: #0e5984;
+ --blue: #4f95bd;
+ --brightblue: #1a9fff;
+ --blu: #67c1f5;
+ --blue-ish: #7cbef8;
+ --blue-er: #a4d7f5;
+ --lightblue: #c4e4f2;
+ --darkgreen: #5c7e10;
+ --green: #d2e885;
+ --gold: #ffcc6a;
+ --bronze: #695833;
+ --purple: #6624e2;
+ --pink: #ff00ff;
+ --red: #ff0000;
+ --orange: #ff6600;
+ --yellow: #ffff00;
+}
\ No newline at end of file
blob - /dev/null
blob + 0b39cbcb79ef32e7e4b9d463e355b92fd0a4ccbb (mode 644)
--- /dev/null
+++ millennium/simply-dark/webkit/store.js
+import { say_hello, was_here } from "./modules/other_module.js"
+
+console.log(say_hello("ShadowMonster"));
+console.log(was_here("clawdius"));
\ No newline at end of file
blob - /dev/null
blob + 2e2a223d288bf1e4317cc2800308f1f8a7d32113 (mode 644)
--- /dev/null
+++ millennium/simply-dark/webkit/web.css
+* {
+ background-color: #fff !important;
+}
\ No newline at end of file
blob - /dev/null
blob + 697eb7bb290c05fba7651a319c3bda7b6a08f9c7 (mode 644)
--- /dev/null
+++ millennium/simply-dark/webkit/webkit.css
+@import "../colors.css";
+@import "./reservedWebkitColors.css";
+
+* {
+ box-shadow: none !important;
+}
+
+:root {
+ /* Colors have been moved to skin.json*/
+
+ /* Profile Blur */
+ --blur: blur(10px); /* default 10px */
+
+ /* Round/Hard Edges */
+ --border0: 4px; /* default 4px */
+ --border1: 10px; /* default 10px */
+ --border2: 20px; /* default 20px */
+ --border25: 25px; /* default 25px */
+ --border35: 0px; /* default 35px */
+ --border4: 0px; /* default 40px */
+ --border5: 0px; /* default 50px */
+ --border8: 0px; /* default 80px */
+ --border50: 0px; /* default 50% */
+}
+
+/* Scrollbar */
+
+body::-webkit-scrollbar-thumb {
+ background-clip: padding-box !important;
+ -webkit-box-shadow: none !important;
+ background-color: var(--scrollbar) !important;
+ border: 3px solid var(--darkgrey) !important;
+ border-radius: var(--border1) !important;
+ width: 35px !important;
+}
+body::-webkit-scrollbar-track {
+ -webkit-box-shadow: none !important;
+ background: var(--darkgrey) !important;
+}
+body::-webkit-scrollbar {
+ background-clip: padding-box !important;
+ border: 5px solid transparent !important;
+ background-color: transparent !important;
+}
+.DialogBody::-webkit-scrollbar {
+ display: none !important;
+ border: 5px solid transparent !important;
+}
+
+/* Resolution Fix */
+@media only screen and (min-width: 3000px) {
+ .responsive_page_content {
+ -webkit-transform: scale(2) !important;
+ -webkit-transform-origin: 50% 00% 0 !important;
+ }
+ .modal_frame {
+ width: 66% !important;
+ height: 80% !important;
+ }
+ #footer {
+ display: none !important;
+ }
+}
+@media only screen and (min-width: 3400px) {
+ .responsive_page_content {
+ -webkit-transform: scale(1) !important;
+ -webkit-transform-origin: 50% 00% 0 !important;
+ }
+ .modal_frame {
+ width: 66% !important;
+ height: 80% !important;
+ }
+ #footer {
+ display: none !important;
+ }
+}
+@media only screen and (min-width: 4000px) {
+ .responsive_page_content {
+ -webkit-transform: scale(2) !important;
+ -webkit-transform-origin: 50% 00% 0 !important;
+ }
+ .modal_frame {
+ width: 66% !important;
+ height: 80% !important;
+ }
+ #footer {
+ display: none !important;
+ }
+}
+
+/* Main Code */
+html {
+ background: var(--darkgrey) !important;
+}
+div.bb_code,
+.bb_wysiwyg pre,
+blockquote.bb_blockquote,
+.bb_wysiwyg blockquote {
+ border-radius: var(--border1) !important;
+ background: var(--darkgrey) !important;
+ border: 0px !important;
+}
+#modalContent.modal.frame {
+ position: absolute !important;
+ border-radius: var(--border0) !important;
+ width: 100% !important;
+ height: 100% !important;
+ margin: 0 !important;
+ display: flex !important;
+}
+.store_nav .tab img.foryou_avatar {
+ border-radius: var(--border35) !important;
+}
+.store_nav .tab {
+ border-right: 0 !important;
+}
+.dailydeal_countdown {
+ font-size: 18px !important;
+ background-color: var(--blue) !important;
+ padding-top: 5px !important;
+ padding-bottom: 3px !important;
+}
+.light_container.bezel {
+ background: var(--darkgrey) !important;
+}
+.browse_ctn_background {
+ background: var(--darkgrey) !important;
+}
+.miniprofile_ingame {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+ margin-top: 5px !important;
+}
+.home_page_body_ctn.has_takeover .page_background_holder {
+ background-color: transparent !important;
+}
+.curator_featured .screenshots > div {
+ border-radius: var(--border0) !important;
+}
+.lists_more_container .item > div div {
+ background-color: var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.lists_more_container .item {
+ border-radius: var(--border0) !important;
+}
+.curator_featured .contents {
+ border-radius: var(--border0) !important;
+}
+.ds_options > div {
+ border-radius: var(--border1) !important;
+}
+.tag_square {
+ margin: 2px !important;
+}
+.game_rating_area {
+ border-radius: var(--border0) !important;
+ margin-bottom: 15px !important;
+}
+#package_header_container {
+ border-radius: var(--border0) !important;
+ margin-bottom: 4px !important;
+}
+.blotter_day_header_divider {
+ display: none !important;
+}
+.blotter_day_header_date {
+ left: 245px !important;
+}
+.blotter_workshopitem.guide {
+ background-image: none !important;
+ background-color: var(--darkergrey) !important;
+}
+.blotter_workshopitem {
+ background-image: none !important;
+}
+.broadcast_footer {
+ background: transparent !important;
+}
+.btnv6_white_transparent > span {
+ border-radius: var(--border0) !important;
+ color: var(--blue) !important;
+ background: var(--grey) !important;
+ border: 1px solid var(--grey) !important;
+}
+.btnv6_white_transparent > span:hover {
+ border-radius: var(--border0) !important;
+ color: var(--black) !important;
+ background: var(--blue) !important;
+ border: 1px solid var(--blue) !important;
+}
+.home_broadcast_more_ctn_stretch_bg {
+ background: transparent !important;
+}
+.home_broadcast_ctn .home_broadcast_sections .home_broadcast_more_ctn {
+ background: var(--darkergrey) !important;
+ border-radius: var(--border1) !important;
+}
+.home_broadcast_ctn .home_broadcast_sections .home_broadcast_more_ctn .home_section_title {
+ background: transparent !important;
+}
+.blotter_playerAvatarSmall img {
+ border-radius: var(--border50) !important;
+}
+.blotter_playerAvatarSmall {
+ border-radius: var(--border50) !important;
+}
+.discount_block.discount_block_spotlight .bundle_base_discount {
+ color: var(--darkergrey) !important;
+ border-radius: var(--border4) !important;
+ margin-right: 5px !important;
+}
+.discount_block.no_discount.daily_deal_discount .bundle_base_discount {
+ color: var(--darkergrey) !important;
+ border-radius: var(--border4) !important;
+ margin-right: 5px !important;
+}
+.browse_content .recommendation {
+ border-bottom: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.browse_filters a.selected,
+.browse_filters a:hover {
+ border-radius: var(--border0) !important;
+}
+.browse_tabs a.selected,
+.browse_tabs a:hover {
+ background-color: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.navigation_bar > a.selected {
+ border-radius: var(--border0) !important;
+}
+.navigation_bar > * {
+ border-radius: var(--border0) !important;
+}
+.game_area_dlc_row.even {
+ border-radius: var(--border0) !important;
+}
+#dlc_footer #dlc_show_all_link {
+ border-radius: var(--border0) !important;
+}
+#dlc_footer #dlc_show_all_link:hover {
+ border-radius: var(--border0) !important;
+}
+.navigation_bar > div.nav_right_side > div.curator_report a {
+ border-radius: var(--border0) !important;
+}
+.page_content_ctn.dlc_associated_franchise {
+ background: var(--darkgrey) !important;
+}
+.background_header_ctn.page_background {
+ display: none !important;
+}
+.curator_featured > div {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+ background: var(--grey) !important;
+}
+.mature_content_notice {
+ border-radius: var(--border0) !important;
+}
+.market_multi_warning_tooltip {
+ background-color: var(--lightgrey) !important;
+ border: 1px solid var(--lightgrey) !important;
+}
+body.v6 .page_content.browse_reviews {
+ background: var(--darkgrey) !important;
+}
+.appHubIconHolder.greyOverlay {
+ display: none !important;
+}
+.forum_topic_tooltip {
+ background-color: var(--grey-ish) !important;
+ border: 1px solid var(--lightgrey) !important;
+}
+.apphub_Card.interactable:hover .apphub_CardContentDiscussionType {
+ background-color: transparent !important;
+}
+.capsule.header img {
+ border-radius: var(--border0) !important;
+}
+.capsule.headerv5,
+.capsule.headerv5 img {
+ border-radius: var(--border0) !important;
+}
+.detailBox .commentthread_comment:not(.hidden_post):hover,
+.group_comments .commentthread_comment:not(.hidden_post):hover,
+.profile_comment_area .commentthread_comment:not(.hidden_post):hover {
+ border-radius: var(--border0) !important;
+}
+.daily_deal .dailydeal_desc {
+ font-size: 18px !important;
+ color: var(--lightblue) !important;
+}
+.dailydeal_countdown.ttip {
+ color: var(--lightblue) !important;
+ background-color: var(--blue) !important;
+ display: inline-block !important;
+ font-size: 18px !important;
+ background: var(--orange) !important;
+ line-height: 13px !important;
+ padding: 0 4px !important;
+ margin-top: 4px !important;
+ border-radius: var(--border0) !important;
+}
+img {
+ border-radius: var(--border0) !important;
+}
+.tab_item_discount .discount_pct,
+.tab_item_discount.no_discount .bundle_base_discount {
+ border-radius: var(--border0) !important;
+}
+.discount_block .discount_pct,
+.discount_pct {
+ border-radius: var(--border0) !important;
+}
+.discount_block .discount_original_price {
+ border-radius: var(--border0) !important;
+}
+.searchbox_news {
+ border: 1px solid var(--black) !important;
+ background-color: #5398c300 !important;
+ border-radius: var(--border0) !important;
+}
+body.recommendgame #review_create {
+ background: var(--darkgrey) !important;
+ padding: 16px !important;
+}
+#review_create .input_box {
+ border: 1px solid var(--black) !important;
+ border-radius: var(--border0) !important;
+ background-color: #222b3500 !important;
+}
+#footerText {
+ padding-bottom: 26px !important;
+}
+.recommended_creators_ctn .recommended_creators_container {
+ background: var(--lightgrey) !important;
+ border-top: 1px solid var(--lightgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.recommended_creators_ctn .store_capsule {
+ background-image: none !important;
+ border-radius: var(--border0) !important;
+}
+.mainLoginPanel {
+ background: var(--bedarkgrey) !important;
+}
+body.v6.summer2018_home .gutter_header a:hover .home_page_gutter_giftcard {
+ background: #30343f00 !important;
+}
+body.v6.summer2018_home .home_page_gutter_giftcard {
+ background: #1c202a00 !important;
+}
+.FeaturedBlock.First {
+ background: var(--darkgrey) !important;
+}
+.home_page_body_ctn {
+ background: var(--darkgrey) !important;
+}
+body.v6.summer2018_home .home_page_body_ctn {
+ background: var(--darkgrey) !important;
+}
+.responsive_page_content {
+ background: var(--darkgrey) !important;
+}
+.compact .wishlist_row .capsule img {
+ width: 162px !important;
+ height: 78px !important;
+}
+.discovery_queue img {
+ border-radius: var(--border0) !important;
+}
+.home_ctn {
+ background: var(--darkgrey) !important;
+}
+.home_ctn.apps_recommended_by_curators_ctn {
+ background: var(--darkgrey) !important;
+}
+.home_ctn.discovery_queue_ctn {
+ background: var(--bedarkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.home_ctn.tab_container {
+ background: var(--bedarkgrey) !important;
+}
+body.v6 .page_content_ctn.dark {
+ background: var(--darkgrey) !important;
+}
+body.v6.infinite_scrolling #footer.small_footer {
+ background: var(--bedarkgrey) !important;
+}
+body.v6 #footer {
+ background: var(--bedarkgrey) !important;
+}
+.curator_buttons_ctn {
+ background: var(--bedarkgrey) !important;
+}
+body.flat_page #footer {
+ background: var(--bedarkgrey) !important;
+}
+div#global_header {
+ max-height: 74px !important;
+ background: var(--bedarkgrey) !important;
+}
+div#global_header .content {
+ height: 74px !important;
+ left: -1% !important;
+ background: var(--bedarkgrey) !important;
+}
+div#global_header .supernav_content {
+ background: var(--realblack) !important;
+}
+div#global_header div.logo {
+ padding-top: 15px !important;
+}
+div#global_header .menuitem {
+ padding-top: 29px !important;
+}
+div#global_actions #global_action_menu {
+ padding-top: 18px !important;
+}
+div#global_actions .user_avatar {
+ display: inline-block !important;
+ margin-left: 3px !important;
+ margin-top: 15px !important;
+ border-radius: var(--border4) !important;
+}
+body.v6 #global_header,
+body.v6 #global_header .content,
+body.v6 .supernav_content {
+ background: var(--bedarkgrey) !important;
+}
+.global_header_toggle_button.green,
+.global_header_toggle_button.has_notifications {
+ background-color: var(--lightgrey) !important;
+ transition: background 0.6s !important;
+}
+.global_header_toggle_button.green,
+.global_header_toggle_button.has_notifications:hover {
+ background-color: var(--darkgreen) !important;
+ transition: background 0.6s !important;
+}
+.header_installsteam_btn_gray .header_installsteam_btn_content,
+.header_installsteam_btn_gray .header_installsteam_btn_leftcap,
+.header_installsteam_btn_gray .header_installsteam_btn_rightcap {
+ background-color: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.review_box .avatar {
+ border-radius: var(--border5) !important;
+}
+.friends_container {
+ background: var(--darkgrey) !important;
+ background-color: var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.friend_block_v2 {
+ top: 10px !important;
+ height: 55px !important;
+ margin-bottom: 5px !important;
+ line-height: 1px !important;
+ background-color: transparent !important;
+}
+.avatars img {
+ border-radius: var(--border8) !important;
+}
+.header_notification_btn {
+ background-color: var(--lightgrey) !important;
+}
+.header_notification_btn:hover {
+ background-color: var(--lightgrey) !important;
+}
+.popup_block_new .popup_body {
+ border: 0 !important;
+ position: relative !important;
+ background-color: var(--realblack) !important;
+}
+.supernav_content {
+ background: var(--realblack) !important;
+}
+.home_discounts_ctn .see_more_link,
+.home_category_games_ctn .see_more_link,
+.home_category_ctn .see_more_link {
+ bottom: -5px !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+ padding: 4px !important;
+ color: var(--blue) !important;
+}
+.home_category_games_ctn .see_more_link:hover,
+.home_discounts_ctn .see_more_link:hover,
+.home_category_ctn .see_more_link:hover {
+ bottom: -5px !important;
+ background: var(--blue) !important;
+ border-radius: var(--border0) !important;
+ padding: 4px !important;
+ color: var(--black) !important;
+}
+.hero_capsule {
+ border-radius: var(--border0) !important;
+}
+.hero_data {
+ border-radius: var(--border0) !important;
+ background: var(--darkergrey) !important;
+}
+.hero_capsule .ds_flag {
+ left: 2px !important;
+}
+#store_nav_area .store_nav_bg,
+.home_page_body_ctn.has_takeover #store_nav_area .store_nav_bg {
+ background: var(--lightergrey) !important;
+ border-radius: var(--border0) !important;
+}
+.searchbox {
+ background-image: none !important;
+ background-color: var(--darkgrey) !important;
+ border-radius: var(--border2) !important;
+ border: 0 !important;
+ margin-top: 1px !important;
+}
+a#store_search_link img {
+ background-image: none !important;
+ border-radius: var(--border0) !important;
+ display: none !important;
+}
+a#store_search_link img:hover {
+ background-image: none !important;
+ border-radius: var(--border0) !important;
+ display: none !important;
+}
+input#store_nav_search_term {
+ color: var(--darkerwhite) !important;
+ font-size: 1em !important;
+}
+input::-webkit-input-placeholder {
+ opacity: 0 !important;
+}
+.store_header_btn_gray {
+ background: var(--lightgrey) !important;
+}
+.store_header_btn_gray a:hover {
+ background: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.store_nav .tab.focus,
+.store_nav .tab.focus > span,
+.store_nav .tab:hover,
+.store_nav .tab:hover > span {
+ background: var(--lightgrey) !important;
+ color: var(--darkwhite) !important;
+ border-radius: var(--border0) !important;
+}
+body.v6 #footer_nav .popup_block_new .popup_body,
+body.v6 .store_nav .popup_block_new .popup_body {
+ background: var(--lightergrey) !important;
+ border-radius: var(--border0) !important;
+}
+.creator .responsive_page_template_content .popup_menu .popup_menu_item,
+.curator .responsive_page_template_content .popup_menu .popup_menu_item,
+.footer_content .popup_menu .popup_menu_item,
+.search_area .popup_body .match,
+.search_area .popup_body .match .match_name,
+.store_nav .popup_menu .popup_menu_item {
+ color: var(--darkerwhite) !important;
+ border-radius: var(--border0) !important;
+}
+.creator .popup_menu .popup_menu_item.focus,
+.creator .popup_menu .popup_menu_item:hover,
+.curator .popup_menu .popup_menu_item.focus,
+.curator .popup_menu .popup_menu_item:hover,
+.footer_content .popup_menu .popup_menu_item.focus,
+.footer_content .popup_menu .popup_menu_item:hover,
+.search_area .popup_body .match:hover,
+.search_area .popup_body .match:hover .match_name,
+.store_nav .popup_menu .popup_menu_item.focus,
+.store_nav .popup_menu .popup_menu_item:hover {
+ color: var(--white) !important;
+ background-color: var(--grey-ish) !important;
+ border-radius: var(--border0) !important;
+}
+.store_nav .tab.focus,
+.store_nav .tab.focus > span,
+.store_nav .tab:hover,
+.store_nav .tab:hover > span {
+ text-shadow: none !important;
+ border-radius: var(--border0) !important;
+}
+.searchbox input {
+ color: var(--darkerwhite) !important;
+ margin-top: 0 !important;
+}
+.search_suggest .match {
+ border-top: 0 !important;
+}
+.game_hover_box {
+ background: var(--lightergrey) !important;
+ color: var(--darkerwhite) !important;
+ border-radius: var(--border0) !important;
+}
+.game_hover_box h4 {
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+}
+.hover_screenshots .screenshot {
+ border-radius: var(--border0) !important;
+}
+.hover_body .hover_review_summary {
+ color: var(--darkwhite) !important;
+ background-color: var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.hover_tag_row .app_tag {
+ background-color: var(--darkgrey) !important;
+ color: var(--darkwhite) !important;
+ border-radius: var(--border0) !important;
+}
+.game_hover .hover_arrow_left,
+.game_hover .hover_arrow_right {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.ds_options_tooltip {
+ background: var(--lightergrey) !important;
+}
+.ds_options_tooltip > .option {
+ color: var(--blue) !important;
+}
+.store_main_capsule {
+ background-image: none !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+div.store_header_btn {
+ border-radius: var(--border0) !important;
+}
+.store_main_capsule .screenshots > div > div {
+ width: 162px !important;
+ height: 69px !important;
+ background-size: cover !important;
+ background-position: center center !important;
+ display: inline-block !important;
+ opacity: 0.6 !important;
+ padding: 0 !important;
+ margin: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.capsule.main_capsule {
+ flex-shrink: 0 !important;
+ position: relative !important;
+ z-index: 2 !important;
+ margin-right: 10px !important;
+ width: 616px !important;
+ height: 353px !important;
+ background-position: center center !important;
+ background-size: cover !important;
+ border-radius: var(--border0) !important;
+}
+.carousel_container.maincap .capsule .screenshot {
+ border-radius: var(--border0) !important;
+}
+.carousel_container.spotlight .carousel_items > * .store_capsule.daily_deal {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.carousel_container.spotlight .carousel_items > * .store_capsule {
+ background-image: none !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.spotlight_content {
+ background: var(--grey) !important;
+}
+.home_area_spotlight.underlined_links {
+ background-color: var(--bedarkgrey) !important;
+ height: 390px !important;
+ border-radius: var(--border0) !important;
+}
+.spotlight_weeklong_ctn {
+ width: 304px !important;
+ height: 350px !important;
+ text-align: center !important;
+ border: 1px solid rgba(0, 0, 0, 0) !important;
+ position: relative !important;
+ z-index: 1 !important;
+ border-radius: var(--border0) !important;
+}
+.spotlight_text_overlay {
+ position: absolute !important;
+ top: 0 !important;
+ left: 0 !important;
+ width: 304px !important;
+ height: 350px !important;
+ z-index: 2 !important;
+ border-radius: var(--border0) !important;
+}
+.spotlight_img {
+ border-radius: var(--border0) !important;
+}
+.spotlight_content {
+ border-radius: var(--border0) !important;
+}
+.arrow.left {
+ background: var(--bedarkgrey) !important;
+ border-top-left-radius: var(--border0) !important;
+ border-bottom-left-radius: var(--border0) !important;
+}
+.arrow.right {
+ background: var(--bedarkgrey) !important;
+ border-top-right-radius: var(--border0) !important;
+ border-bottom-right-radius: var(--border0) !important;
+}
+.store_capsule .discount_block.discount_block_large .discount_prices {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.discount_block_large .discount_prices {
+ background: var(--black) !important;
+}
+.hover_details_block,
+.hover_details_block_full {
+ background-color: var(--darkgrey) !important;
+}
+.friends_recently_purchased .friends_container {
+ border-top: 0 !important;
+ background: var(--grey) !important;
+}
+.friends_recently_purchased .store_capsule {
+ background-image: none !important;
+ background: var(--grey) !important;
+}
+.discovery_queue_ctn .begin_exploring {
+ background: 0 0 !important;
+ color: transparent !important;
+}
+.discovery_queue_ctn .begin_exploring::after {
+ background: 0 0 !important;
+}
+.big_button {
+ background-image: none !important;
+ background: var(--lightgrey) !important;
+ border-radius: var(--border1) !important;
+}
+.big_button:hover {
+ background: var(--darkergrey) !important;
+ border-radius: var(--border1) !important;
+}
+.carousel_items.curator_featured_tags {
+ border-radius: var(--border0) !important;
+}
+.curator_page.focus {
+ border-radius: var(--border0) !important;
+}
+.curator_page .actions {
+ border-radius: var(--border0) !important;
+}
+a.follow_button.btn_green_white_innerfade.btn_medium {
+ color: var(--green) !important;
+ border-radius: var(--border0) !important;
+}
+a.following_button.btn_green_white_innerfade.btn_medium {
+ text-decoration: none !important;
+ color: var(--green) !important;
+ border-radius: var(--border0) !important;
+}
+.home_rightcol {
+ border-radius: var(--border0) !important;
+}
+.tab_item {
+ margin: 5px !important;
+ border-radius: var(--border0) !important;
+}
+.tab_item.focus {
+ margin-right: 0 !important;
+ margin: 5px !important;
+ border-radius: var(--border0) !important;
+}
+img.tab_item_cap_img {
+ border-radius: var(--border0) !important;
+}
+.tab_review_summary {
+ border-radius: var(--border0) !important;
+}
+.tab_preview .screenshot {
+ border-radius: var(--border0) !important;
+}
+.tab_preview {
+ border-radius: var(--border0) !important;
+}
+.carousel_items.store_capsule_container {
+ border-radius: var(--border0) !important;
+}
+.screenshot_container {
+ display: none !important;
+}
+.screenshot_popup_modal_content {
+ background: var(--darkgrey) !important;
+}
+.screenshot_popup_modal_footer {
+ overflow: visible !important;
+}
+.share {
+ border-radius: var(--border0) !important;
+}
+.newshr {
+ background-image: none !important;
+}
+img.member_tile {
+ border-radius: var(--border5) !important;
+ padding: 10px !important;
+}
+.apphub_Card.interactable {
+ border-radius: var(--border0) !important;
+}
+.apphub_Card.interactable:hover {
+ border: 1px solid transparent !important;
+}
+.apphub_Card.interactable:hover .apphub_CardContentAuthorBlock {
+ background-color: transparent !important;
+}
+.apphub_CardContentAuthorBlock {
+ border-top: 0 !important;
+}
+.appHubNewsIconHolder {
+ border-radius: var(--border0) !important;
+}
+.community_home_search_box {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.community_home_shortcut_content {
+ border-radius: var(--border0) !important;
+}
+.community_home_app_shortcuts {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.community_home_app_shortcuts .community_home_shortcut_content {
+ border-radius: var(--border0) !important;
+}
+.apphub_CardContentType {
+ border-radius: var(--border0) !important;
+ background: var(--grey) !important;
+}
+.steam_curator_for_app_highlighted .steam_curator_for_app {
+ background: 0 0 !important;
+}
+.most_recommended .steam_curator_recommendation .steam_curator_for_app_img {
+ filter: none !important;
+}
+.most_recommended .steam_curator_recommendation {
+ border-radius: var(--border0) !important;
+ background: var(--grey) !important;
+}
+.tag_browse_tag.active {
+ border-radius: var(--border0) !important;
+ background: var(--grey) !important;
+}
+.browse_tag_game_total,
+.browse_tag_games {
+ border-radius: var(--border0) !important;
+}
+.tag_browse_tag {
+ border-radius: var(--border0) !important;
+}
+.tab_see_more {
+ border-radius: var(--border0) !important;
+}
+.curator_page {
+ background: var(--grey) !important;
+}
+.giant_curator_capsule img {
+ border-radius: var(--border0) !important;
+}
+.curator.giant.capsule img {
+ border-radius: var(--border0) !important;
+}
+.curator_block {
+ border-radius: var(--border0) !important;
+}
+.apps_recommended_by_curators_ctn.home_ctn {
+ background: var(--darkgrey) !important;
+}
+.marketingmessage_container {
+ border-radius: var(--border0) !important;
+}
+a.home_marketing_message {
+ border-radius: var(--border0) !important;
+}
+.carousel_container .carousel_thumbs > div {
+ border-radius: var(--border50) !important;
+ width: 15px !important;
+ height: 15px !important;
+}
+.home_marketing_message > span {
+ border-radius: var(--border0) !important;
+}
+.home_content .item img,
+.home_content a.home_content_item img {
+ border-radius: var(--border0) !important;
+}
+.home_content.single {
+ border-radius: var(--border0) !important;
+}
+.home_content.single_buttonbar {
+ border-radius: var(--border0) !important;
+}
+.home_content.single .gamelink img {
+ border-radius: var(--border0) !important;
+}
+.btn_green_white_innerfade {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_green_white_innerfade > span {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+ color: var(--darkwhite) !important;
+}
+.btn_green_white_innerfade > span:hover {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_green_white_innerfade:hover {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_green_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_green_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+ color: var(--darkwhite) !important;
+}
+.curator_page .followers span {
+ display: unset !important;
+ padding-right: 5px !important;
+ font-size: 18px !important;
+}
+.curator_page .actions > div:not(:first-child) {
+ margin-top: 0.5vh !important;
+}
+.curator_page .socialmedia img {
+ width: 21px !important;
+ height: 21px !important;
+}
+.btw_wrapper {
+ border-radius: var(--border0) !important;
+}
+.btn_grey_white_innerfade {
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_grey_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_grey_white_innerfade > span {
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_grey_white_innerfade:hover {
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_grey_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_grey_white_innerfade > span:hover {
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.btn_grey_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.followers {
+ padding-left: 11px !important;
+}
+.recently_updated .store_capsule {
+ background-image: none !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.recently_updated .store_capsule .recently_updated_desc {
+ border-top: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.hardware_ctn.double .hardware_content .left,
+.hardware_ctn.double .hardware_content .right {
+ display: none !important;
+}
+.home_tab.active .tab_content {
+ border: 0 !important;
+ border-top-left-radius: var(--border0) !important;
+ background-color: var(--bedarkgrey) !important;
+}
+.tab_item.focus {
+ background: var(--grey) !important;
+}
+.tab_item.focus .tab_item_name {
+ color: var(--darkwhite) !important;
+}
+.tab_item_details {
+ color: var(--blue) !important;
+}
+.tab_item.focus .discount_block .discount_final_price {
+ color: var(--blue-er) !important;
+}
+#tab_preview_container {
+ border-radius: var(--border0) !important;
+ top: 15px !important;
+ background: var(--grey) !important;
+}
+body.v6 .home_rightcol .tab_preview h2 {
+ color: var(--white) !important;
+}
+.tab_review_summary {
+ background-color: var(--bedarkgrey) !important;
+}
+.tab_preview .tags > a {
+ background-color: var(--bedarkgrey) !important;
+}
+.store_capsule {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.home_marketing_message,
+.home_marketing_message:hover {
+ background: var(--grey) !important;
+}
+.home_page_content .more_content_title span {
+ background: var(--trans) !important;
+}
+.home_content.single a.screenshot {
+ background: var(--trans) !important;
+}
+.curator_giant_capsule .curator_block {
+ background-color: var(--grey) !important;
+}
+.home_page_content .more_content_title {
+ background-image: none !important;
+}
+.btn_border_2px {
+ border-radius: var(--border0) !important;
+ border: 0 !important;
+}
+.home_page_sign_in_ctn {
+ background: rgba(0, 0, 0, 0) !important;
+}
+.header_installsteam_btn_green .header_installsteam_btn_content,
+.header_installsteam_btn_green .header_installsteam_btn_leftcap,
+.header_installsteam_btn_green .header_installsteam_btn_rightcap {
+ background-color: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.page_header_ctn {
+ background: 0 0 !important;
+}
+.page_header_ctn {
+ background: 0 0 !important;
+}
+.home_ctn.discovery_queue_ctn {
+ background: var(--bedarkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+body.v6.newonsteam .newonsteam_headercaps > a {
+ background: var(--grey) !important;
+}
+.tabarea .tab.active .tab_content {
+ background: var(--bedarkgrey) !important;
+}
+.tabarea .tab .tab_content {
+ border-radius: var(--border0) !important;
+}
+.contenthub_specials_ctn {
+ background: rgba(64, 120, 152, 0) !important;
+ border-radius: var(--border0) !important;
+}
+.contenthub_featured_item_spotlight {
+ background: rgba(64, 120, 152, 0) !important;
+}
+.contenthub_page_background {
+ background-image: none !important;
+}
+.quadscreenshot_carousel .main {
+ background-color: var(--grey) !important;
+}
+.contenthub_page .tabarea .tab.active .tab_content:hover {
+ background: var(--bedarkgrey) !important;
+}
+.tabarea .tab.active {
+ background: var(--bedarkgrey) !important;
+}
+.tabarea .tab {
+ border-radius: var(--border0) !important;
+}
+.tabarea .tab .tab_content {
+ background: rgba(0, 0, 0, 0) !important;
+}
+.tabarea .tab .tab_content:hover {
+ background: rgba(0, 0, 0, 0) !important;
+}
+.page_header_ctn.search {
+ background: 0 0 !important;
+}
+#term {
+ background-color: var(--lightgrey) !important;
+ border-radius: var(--border0) !important;
+ border: 1px solid rgba(30, 30, 31, 0.52) !important;
+}
+.searchbar_left > button {
+ height: 26px !important;
+ padding-top: 3px !important;
+}
+.store_capsule_frame {
+ background: 0 0 !important;
+ border: 4px !important;
+}
+.curator_list_ctn {
+ background: var(--bedarkgrey) !important;
+}
+.tabarea_v7 .tab.active {
+ background: var(--bedarkgrey) !important;
+ color: var(--white) !important;
+}
+.curators_searchbox {
+ border-radius: var(--border0) !important;
+ border: 1px solid rgba(30, 30, 31, 0.52) !important;
+}
+body.v6 {
+ background: var(--bedarkgrey) !important;
+}
+.steam_curator_recommended_game_names {
+ max-width: 367px !important;
+}
+.game_page_background.game {
+ background-image: none !important;
+}
+.block_content.block_content_inner.dark {
+ background-color: var(--bedarkgrey) !important;
+}
+.chartdiv {
+ background-color: var(--bedarkgrey) !important;
+}
+.sale_page_three_section_top_block {
+ background-color: var(--darkgrey) !important;
+}
+.game_background_glow {
+ background: 0 0 !important;
+}
+.game_background_lighten {
+ background: transparent !important;
+}
+.store_capsule:hover {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.page_background {
+ background-image: none !important;
+}
+body.v6 div#footer_spacer {
+ background: var(--bedarkgrey) !important;
+}
+body.v6 div#footer,
+body.v6 div#global_header,
+body.v6 div#main,
+body.v6 div.page_area {
+ background: var(--darkgrey) !important;
+}
+body.v6 div#global_header {
+ background: var(--bedarkgrey) !important;
+}
+body.v6 div#global_header .content {
+ background: var(--bedarkgrey) !important;
+}
+.community_home_search_apps {
+ border-radius: var(--border2) !important;
+ background-color: var(--grey) !important;
+ border: 0 !important;
+}
+.community_home_search_players {
+ border-radius: var(--border2) !important;
+ border: 0 !important;
+ background-color: var(--grey) !important;
+}
+.community_home_shortcut_content {
+ background: var(--bedarkgrey) !important;
+}
+.apphub_responsive_tab .responsive_tab_control .responsive_tab_control_inner,
+.apphub_sectionTab.active > span {
+ border-radius: var(--border0) !important;
+ background: var(--grey) !important;
+ color: var(--white) !important;
+}
+.apphub_responsive_tab .responsive_tab_control,
+.apphub_sectionTab.active,
+.apphub_sectionTab.active:hover {
+ background: 0 0 !important;
+}
+.apphub_sectionTabsHR {
+ background-color: transparent !important;
+}
+.apphub_sectionTab:hover {
+ background: 0 0 !important;
+}
+.btn_darkblue_white_innerfade > span {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.btn_darkblue_white_innerfade {
+ background: 0 0 !important;
+ padding: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.btn_darkblue_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.btn_grey_grey_outer_bevel:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.btn_grey_grey_outer_bevel {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+ color: var(--white) !important;
+ padding: 0 !important;
+}
+.btn_grey_grey_outer_bevel > span {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.btn_grey_grey_outer_bevel:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ border-radius: var(--border0) !important;
+ background: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.apphub_background {
+ background: var(--darkgrey) !important;
+}
+.popup_block .popup_body {
+ background: var(--darkergrey) !important;
+}
+.btn_profile_action .btn_medium .img {
+ transform: rotate(180deg) scaleX(1) !important;
+}
+#profile_action_dropdown {
+ top: -5px !important;
+ left: 720px !important;
+ background: var(--darkergrey) !important;
+ border-radius: var(--border0) !important;
+}
+div#game_select_suggestions_ctn {
+ background: var(--realblack) !important;
+}
+.apphub_Card {
+ background-color: var(--bedarkgrey) !important;
+}
+.apphub_CardContentNewsFade {
+ background-image: none !important;
+ background: linear-gradient(to bottom, var(--bedarkgrey) 00, var(--bedarkgrey)) !important;
+}
+.apphub_CardContentMain .UserReviewCardContent_Footer .gradient {
+ background: linear-gradient(to bottom, var(--bedarkgrey) 00, var(--bedarkgrey)) !important;
+}
+.apphub_CardContentGuideTitle {
+ background-color: var(--darkgrey) !important;
+}
+input.community_home_search_app_input {
+ background-color: var(--grey) !important;
+}
+.community_home_search_apps_image {
+ display: none !important;
+}
+.community_home_search_players {
+ background: var(--grey) !important;
+}
+input.community_home_search_players_input {
+ background-color: var(--grey) !important;
+}
+.community_home_search_players_image {
+ display: none !important;
+}
+.element {
+ position: relative !important;
+ top: 50% !important;
+ transform: translate(-50%) !important;
+}
+/* .modal{max-height:calc(100% - 100px)!important;position:fixed!important;top:50%!important;left:50%!important;transform:translate(-50%,-50%)!important} */ /* disabled because it prevent user to see artwork and screenshot at community */
+.mediaTop .mediaSidebar {
+ background-color: var(--begrey) !important;
+ height: -webkit-fill-available !important;
+ padding: 20px !important;
+}
+.mediaTop {
+ background-color: var(--begrey) !important;
+}
+.mediaBodyNoBackground {
+ background-color: var(--begrey) !important;
+}
+body.headerOverride {
+ background: var(--darkgrey) !important;
+}
+.pagecontent {
+ background: var(--darkgrey) !important;
+}
+body.flat_page:not(.iframe) {
+ background: var(--darkgrey) !important;
+}
+.BroadcastInfoWrapper {
+ background: var(--darkgrey) !important;
+}
+.detailBox.altFooter {
+ background: 0 0 !important;
+}
+.detailBox {
+ background: 0 0 !important;
+}
+.commentthread_area .commentthread_header {
+ background: var(--bedarkgrey) !important;
+}
+.workshop_item_header {
+ background: var(--bedarkgrey) !important;
+}
+.sectionTab.active > span {
+ background: var(--bedarkgrey) !important;
+}
+.sectionTab.active {
+ background: 0 0 !important;
+}
+.sectionTab,
+a.sectionTab {
+ background-color: rgba(0, 0, 0, 0) !important;
+}
+.sectionTab:hover {
+ background-color: rgba(0, 0, 0, 0) !important;
+}
+.miniprofile_top {
+ border: 0 !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.miniprofile_player .playername {
+ padding-top: 10px !important;
+}
+#contextselect {
+ background-image: none !important;
+}
+.friend_blocks_twoxtwo .friend_name {
+ margin-top: 10px !important;
+}
+.friend_blocks_twoxtwo .friend_block_holder {
+ border-radius: var(--border0) !important;
+}
+.miniprofile_favorite_badge {
+ background: var(--darkgrey) !important;
+ border: 0 !important;
+}
+.miniprofile_arrow.right {
+ display: none !important;
+}
+.miniprofile_arrow.left {
+ display: none !important;
+}
+.miniprofile_arrow {
+ display: none !important;
+}
+.apphub_BackToTopButton {
+ background-image: none !important;
+ background-color: var(--lightgrey) !important;
+ color: var(--white) !important;
+}
+.apphub_BackToTop:hover .apphub_BackToTopButton {
+ background-image: none !important;
+}
+.group_content.bottomless {
+ background: 0 0 !important;
+}
+.discussionSearchTextContainer {
+ background-image: none !important;
+}
+.discussionSearchTextContainer {
+ border-radius: var(--border4) !important;
+ background-color: var(--darkergrey) !important;
+ border: 0 !important;
+ color: var(--white) !important;
+ height: 28px !important;
+}
+input.discussionSearchText {
+ position: static !important;
+ padding: 4px !important;
+}
+.discussionSearchTextSubmitImg {
+ top: 5px !important;
+ left: 266px !important;
+}
+.discussions_header {
+ border-bottom: 5px solid transparent !important;
+}
+a.recent_game_discussion {
+ border-radius: var(--border0) !important;
+ background-color: var(--grey) !important;
+}
+a.recent_game_discussion:hover {
+ border-radius: var(--border0) !important;
+ background-color: var(--darkergrey) !important;
+}
+.discussions_forum_row {
+ border-radius: var(--border0) !important;
+ background-color: var(--grey) !important;
+}
+.discussions_forum_row:hover {
+ border-radius: var(--border0) !important;
+ background-color: var(--darkergrey) !important;
+}
+.discussion_tab_content_rule {
+ border-top: 0 !important;
+}
+a.recent_game_discussion.quasi_official_group:hover {
+ background: var(--darkergrey) !important;
+}
+.community_tooltip {
+ background: var(--darkergrey) !important;
+ color: var(--white) !important;
+}
+.discussion_tab_content_area h2.discussion_primary_header {
+ font-size: 18px !important;
+}
+.discussion_tab_content_area h2 {
+ font-size: 18px !important;
+}
+.forum_paging {
+ background: var(--bedarkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.forum_topic {
+ background-color: var(--grey) !important;
+}
+.blotter_appselect_activeoption {
+ background-image: none !important;
+ border-radius: var(--border0) !important;
+ color: var(--white) !important;
+ background: var(--lightgrey) !important;
+}
+.blotter_appselect_options {
+ background: var(--realblack) !important;
+ border-radius: var(--border0) !important;
+ border: 0 !important;
+ padding-top: 3px !important;
+}
+#blotter_appselect_app_filter {
+ border-radius: var(--border0) !important;
+ background-color: var(--littlegrey) !important;
+ border: 0 !important;
+}
+.blotter_status_entry .commentthread_entry .commentthread_entry_quotebox {
+ border-radius: var(--border0) !important;
+ background-color: var(--littlegrey) !important;
+ border: 0 !important;
+}
+div#headerSearch.friend_activity_header_search {
+ border-radius: var(--border0) !important;
+ background-color: var(--littlegrey) !important;
+ border: 0 !important;
+}
+.profileFriendSearchBox {
+ border-radius: var(--border0) !important;
+ background-color: var(--littlegrey) !important;
+ border: 0 !important;
+}
+#profileFriendSearchSubmitImg {
+ border-left: 0 !important;
+}
+.blotter_appselect {
+ border-radius: var(--border0) !important;
+ min-width: 0 !important;
+}
+.blotter_appselect div.option,
+.blotter_appselect_options div.option {
+ padding-right: 7px !important;
+ border-radius: var(--border0) !important;
+ cursor: pointer !important;
+}
+#findItemsSearchBox {
+ border-radius: var(--border0) !important;
+ background-color: var(--black-ish) !important;
+ border: 1px solid var(--black) !important;
+}
+.blotter_daily_rollup {
+ background-color: var(--bedarkgrey) !important;
+}
+.blotter_comment_thread .commentthread_entry_quotebox {
+ border-radius: var(--border0) !important;
+ background-color: var(--littlegrey) !important;
+ border: 0 !important;
+}
+.forumtopic_comments .commentthread_comment {
+ background-color: var(--bedarkgrey) !important;
+ color: var(--darkerwhite) !important;
+ margin-bottom: 2px !important;
+ padding: 12px 8px 20px 60px !important;
+ border: 1px solid var(--bedarkgrey) !important;
+ overflow: hidden !important;
+ border-radius: var(--border0) !important;
+}
+.forum_op {
+ position: relative !important;
+ padding: 7px 12px 21px 63px !important;
+ margin-bottom: 8px !important;
+ max-width: 565px !important;
+ background-color: var(--bedarkgrey) !important;
+ background-image: none !important;
+ background-repeat: no-repeat !important;
+ background-position: top left !important;
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.blotter_block {
+ position: relative !important;
+ background: var(--bedarkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.dynamiclink_box {
+ border: 1px solid var(--grey) !important;
+ background-color: var(--grey) !important;
+}
+.profile_background_holder_content {
+ border-radius: var(--border0) !important;
+}
+.playerAvatar.profile_header_size.in-game {
+ float: left !important;
+ position: relative !important;
+ width: 166px !important;
+ height: 166px !important;
+ border-radius: var(--border8) !important;
+ background: -webkit-linear-gradient(top, rgba(143, 185, 59, 1) 5%, rgba(110, 140, 49, 1) 95%) !important;
+ background: linear-gradient(to bottom, rgba(143, 185, 59, 1) 5%, rgba(110, 140, 49, 1) 95%) !important;
+ filter: none !important;
+}
+.playerAvatar.profile_header_size.online {
+ float: left !important;
+ position: relative !important;
+ width: 166px !important;
+ height: 166px !important;
+ border-radius: var(--border8) !important;
+ background-color: var(--online) !important;
+ background: -webkit-linear-gradient(top, rgba(83, 164, 196, 1) 5%, rgba(69, 128, 151, 1) 95%) !important;
+ background: linear-gradient(to bottom, rgba(83, 164, 196, 1) 5%, rgba(69, 128, 151, 1) 95%) !important;
+ filter: none !important;
+}
+.playerAvatar.profile_header_size.offline {
+ float: left !important;
+ position: relative !important;
+ width: 166px !important;
+ height: 166px !important;
+ border-radius: var(--border8) !important;
+ background: -webkit-linear-gradient(top, rgba(106, 106, 106, 1) 5%, rgba(85, 85, 85, 1) 95%) !important;
+ background: linear-gradient(to bottom, rgba(106, 106, 106, 1) 5%, rgba(85, 85, 85, 1) 95%) !important;
+ filter: none !important;
+}
+.responsive .profile_header .playerAvatar.profile_header_size {
+ float: left !important;
+ position: relative !important;
+ width: 166px !important;
+ height: 166px !important;
+ border-radius: var(--border8) !important;
+}
+.playerAvatar.profile_header_size .playerAvatarAutoSizeInner img {
+ background: 0 0 !important;
+ filter: none !important;
+ display: block !important;
+ padding: 0 !important;
+ width: 100% !important;
+ height: 100% !important;
+ border-radius: var(--border8) !important;
+}
+.profile_header_badgeinfo {
+ float: right !important;
+}
+.profile_header_badgeinfo_badge_area {
+ width: 268px !important;
+}
+.profile_header_badge {
+ border: 0 !important;
+ border-radius: var(--border1) !important;
+ background-color: transparent !important;
+ height: 70px !important;
+ margin-bottom: 13px !important;
+}
+.profile_header_actions {
+ white-space: nowrap !important;
+}
+.groupadmin_content .rightbox_content_header {
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+}
+.profile_background_current {
+ border-radius: var(--border0) !important;
+ border-top: 0 !important;
+ border-right: 0 !important;
+ border-left: 0 !important;
+ border-bottom: 0 !important;
+}
+.btn_profile_action > span {
+ background: transparent !important;
+}
+.profile_rightcol {
+ width: 268px !important;
+ float: right !important;
+}
+.profile_friend_links.profile_count_link_preview_ctn.responsive_groupfriends_element {
+ margin-bottom: 40px !important;
+}
+.profile_count_link.ellipsis {
+ font-size: 18px !important;
+ margin-bottom: 4px !important;
+ min-height: 29px !important;
+ overflow: hidden !important;
+ text-overflow: ellipsis !important;
+ white-space: nowrap !important;
+}
+.profile_in_common.responsive_hidden {
+ margin-bottom: 6px !important;
+}
+.profile_topfriends.profile_count_link_preview {
+ display: block !important;
+}
+.friendBlock.persona.in-game {
+ color: var(--ingame) !important;
+ height: 36px !important;
+ padding: 4px 0 4px 4px !important;
+ margin-bottom: 4px !important;
+ font-size: 18px !important;
+ line-height: 13px !important;
+ overflow: hidden !important;
+ white-space: nowrap !important;
+ text-overflow: ellipsis !important;
+ position: relative !important;
+}
+.friendBlock.persona.online {
+ color: var(--online) !important;
+ height: 36px !important;
+ padding: 4px 0 4px 4px !important;
+ margin-bottom: 4px !important;
+ font-size: 18px !important;
+ line-height: 13px !important;
+ overflow: hidden !important;
+ white-space: nowrap !important;
+ text-overflow: ellipsis !important;
+ position: relative !important;
+}
+.friendBlock.persona.offline {
+ color: var(--offline) !important;
+ height: 36px !important;
+ padding: 4px 0 4px 4px !important;
+ margin-bottom: 4px !important;
+ font-size: 18px !important;
+ line-height: 13px !important;
+ overflow: hidden !important;
+ white-space: nowrap !important;
+ text-overflow: ellipsis !important;
+ position: relative !important;
+}
+.profile_header_content {
+ padding-top: 0px !important;
+}
+.gray_bevel.for_text_input {
+ border-radius: var(--border0) !important;
+ background-color: var(--black-ish) !important;
+ border: 1px solid var(--black) !important;
+}
+#about_header_area {
+ background-image: none !important;
+ background: var(--darkgrey) !important;
+}
+.blotter_screenshot_image {
+ background-color: var(--lightblack) !important;
+}
+.about_boxes_box_top {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.about_boxes_box_bottom {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.about_boxes_box_mid {
+ background: var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.about_install_ctn {
+ border-radius: var(--border0) !important;
+ background: var(--grey) !important;
+}
+.about_box_wide {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+ background: var(--darkgrey) !important;
+ padding: 5px 5px 15px 5px !important;
+ margin: 0 !important;
+}
+.about_box_wide.linux {
+ border-radius: var(--border0) !important;
+}
+.about_boxes_box_header_bg {
+ border-radius: var(--border0) !important;
+ background: var(--black-ish) !important;
+ border: 0 !important;
+ height: 100% !important;
+}
+.about_boxes_box_content_ctn {
+ padding-bottom: 4px !important;
+ border-radius: var(--border0) !important;
+}
+.help_wizard_button {
+ background: var(--grey) !important;
+ border-color: var(--grey) !important;
+}
+.help_wizard_button_large > span {
+ margin: 10px 14px 10px 14px !important;
+}
+#help_search_support_input {
+ border-radius: 0 !important;
+ background: var(--black-ish) !important;
+ border: 1px solid var(--black) !important;
+}
+.help_purchase_detail_box {
+ background-color: var(--darkgrey) !important;
+}
+.profile_small_header_bg {
+ background-image: none !important;
+}
+.btn_grey_black {
+ border-radius: var(--border0) !important;
+}
+.games_list_tabs {
+ border-radius: var(--border0) !important;
+ background: var(--color-darker) !important;
+}
+.games_list_tabs_ctn.responsive_hidden {
+ background: var(--color-darker);
+}
+.games_list_tab.first_tab,
+a.games_list_tab.first_tab {
+ border-radius: var(--border0) !important;
+}
+#tabcontent_inventory {
+ background: var(--color-darker) !important;
+ border: none !important;
+}
+.filter_ctn.inventory_filters #filter_control {
+ border-radius: var(--border0) !important;
+ background: var(--black-ish) !important;
+ border: 1px solid var(--black) !important;
+}
+.friends_header_bg {
+ background: 0 0 !important;
+}
+.friends_search_text_box,
+.groups_search_text_box {
+ border-radius: var(--border0) !important;
+ background: 0 0 !important;
+ background-color: var(--lightgrey) !important;
+ border: 1px solid rgba(30, 30, 31, 0.52) !important;
+}
+.friends_header_avatar {
+ border-radius: var(--border35) !important;
+}
+.friends_header_avatar img {
+ border-radius: var(--border35) !important;
+}
+.friends_header_name {
+ padding-top: 12px !important;
+}
+.friends_nav a.active {
+ background-color: var(--darkergrey) !important;
+ border-radius: var(--border0) !important;
+}
+.friends_nav a:hover {
+ background-color: var(--realblack) !important;
+ border-radius: var(--border0) !important;
+}
+.friends_nav a {
+ margin-bottom: 2px !important;
+ border-radius: var(--border0) !important;
+}
+.group_block {
+ background: var(--begrey) !important;
+}
+.profile_friends.title_bar,
+.profile_groups.title_bar {
+ margin-top: 4px !important;
+ border-radius: var(--border0) !important;
+}
+.friends_nav .hr {
+ height: 0px !important;
+ background-color: transparent !important;
+ border-bottom: 0 !important;
+}
+.friends_search_text_box,
+.groups_search_text_box {
+ background-color: var(--grey) !important;
+ border-radius: var(--border2) !important;
+ border: 0 !important;
+}
+.profile_friends.title_bar,
+.profile_groups.title_bar {
+ background-color: rgba(255, 255, 255, 0.1) !important;
+}
+.player_avatar {
+ border-radius: var(--border35) !important;
+}
+.player_avatar img {
+ border-radius: var(--border35) !important;
+}
+.friend_block_link_overlay {
+ border-top-style: solid !important;
+ border-bottom-style: solid !important;
+ border-left-style: solid !important;
+ border-right-style: solid !important;
+ border-width: 1px !important;
+}
+.guideTop .workshopItemControls {
+ background-color: var(--bedarkgrey) !important;
+}
+.guideTop {
+ background-color: var(--darkgrey) !important;
+}
+.friend_reviews .review_box {
+ border-left: 1px solid var(--thegrey) !important;
+ border-top: 1px solid var(--thegrey) !important;
+ background: var(--thegrey) !important;
+}
+.review_box.short {
+ background: var(--thegrey) !important;
+}
+.home_area_spotlight {
+ background-image: none !important;
+}
+.spotlight_weeklong_subtitle {
+ color: var(--white) !important;
+}
+.tab_item.focus::after {
+ background: var(--grey) !important;
+}
+.discovery_queue_overlay_bg {
+ background: 0 0 !important;
+}
+.discovery_queue_customize_ctn {
+ background: var(--darkgrey) !important;
+ border: 0 !important;
+}
+.discovery_queue_customize_ctn > .btn_medium {
+ border-radius: var(--border0) !important;
+ text-decoration: none !important;
+ color: var(--blu) !important;
+}
+.discovery_queue_overlay_message {
+ color: transparent !important;
+}
+.btn_small_thin > span,
+input.btn_small_thin {
+ border-radius: var(--border0) !important;
+}
+.btnv6_blue_hoverfade {
+ text-decoration: none !important;
+ color: var(--blu) !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.explore_rightcol_box {
+ background-color: rgba(255, 255, 255, 0.1) !important;
+ border-radius: var(--border0) !important;
+}
+.group_block_medium img {
+ border-radius: var(--border0) !important;
+}
+.profile_group_avatar img {
+ border-radius: var(--border0) !important;
+}
+.search_results_none {
+ border-radius: var(--border0) !important;
+}
+#search_results.profile_friends.search_results {
+ margin-top: 0 !important;
+}
+.noCoplayHistory {
+ border-radius: var(--border0) !important;
+ border: 0 !important;
+}
+body.v6 .discount_block {
+ background: transparent !important;
+}
+.profile_friends.responsive_friendblocks {
+ border-radius: var(--border0) !important;
+}
+.invite_section_ctn.invite_link {
+ background-image: none !important;
+}
+.invite_section_ctn .header_row {
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+ padding-top: 10px !important;
+ padding-bottom: 10px !important;
+ background-color: rgba(255, 255, 255, 0.1) !important;
+}
+.invite_section_ctn .content {
+ border-bottom-left-radius: var(--border0) !important;
+ border-bottom-right-radius: var(--border0) !important;
+}
+.profile_small_header_texture {
+ background-image: none !important;
+ background-color: var(--darkgrey) !important;
+}
+.sale_capsule_image_hover {
+ border: 1px solid var(--darkergrey) !important;
+ border-radius: var(--border0) !important;
+}
+.gameListRow.followed {
+ border-radius: var(--border0) !important;
+}
+.home_category_ctn .home_category_title_ctn {
+ border-radius: var(--border0) !important;
+}
+.home_category_games_ctn {
+ border-radius: var(--border0) !important;
+}
+.home_discounts_ctn {
+ background: var(--darkgrey) !important;
+}
+.home_discounts_ctn .home_discount_line {
+ height: 0px !important;
+}
+.gameListRowLogo.ds_flagged img {
+ border-radius: var(--border0) !important;
+}
+.gameListRowLogo.ds_flagged .ds_flag {
+ border-top-right-radius: var(--border0) !important;
+ border-bottom-right-radius: var(--border0) !important;
+ background: rgba(0, 0, 0, 0.2) no-repeat 4px 4px !important;
+}
+.sectionTab {
+ background-color: var(--begrey) !important;
+ border-radius: var(--border0) !important;
+}
+.sectionTab.active {
+ background: rgba(0, 0, 0, 0.2) !important;
+ border-radius: var(--border0) !important;
+}
+.sectionTab:hover {
+ background: rgba(0, 0, 0, 0.2) !important;
+ border-radius: var(--border0) !important;
+}
+.responsive_tab_baseline {
+ background-color: rgba(0, 0, 0, 0) !important;
+ max-width: 0 !important;
+ height: 0 !important;
+}
+.gameListRow {
+ border-radius: var(--border0) !important;
+}
+.gameListRowLogo img {
+ border-radius: var(--border0) !important;
+}
+.gray_bevel.for_text_input {
+ border-radius: var(--border0) !important;
+ background-color: rgba(0, 0, 0, 0.2) !important;
+ border: 0 !important;
+}
+.popup_block2 .popup_body2 {
+ border-radius: var(--border0) !important;
+}
+.pullup_item {
+ border-radius: var(--border0) !important;
+}
+.shadow_content {
+ border-radius: var(--border0) !important;
+ margin: 0px !important;
+}
+.popup_menu2 a.popup_menu_item2 {
+ border-radius: var(--border0) !important;
+}
+.filter_section {
+ border-radius: var(--border0) !important;
+}
+.wishlist .controls div {
+ border-radius: var(--border0) !important;
+}
+.dropdown_container {
+ border-radius: var(--border0) !important;
+}
+.dropdown_container .item {
+ border-radius: var(--border0) !important;
+}
+.wishlist_header img {
+ border-radius: var(--border35) !important;
+}
+body.v6 .wishlist_header h2 {
+ margin-top: 2px !important;
+}
+#wishlist_search {
+ border-radius: var(--border0) !important;
+ background-color: var(--begrey) !important;
+ border: 0 !important;
+}
+#wishlist_search:hover {
+ border: 0 !important;
+}
+.wishlist_row {
+ border-radius: var(--border0) !important;
+ background-color: var(--grey) !important;
+}
+.wishlist_row .tag {
+ border-radius: var(--border0) !important;
+}
+.wishlist_row .capsule img {
+ border-radius: var(--border0) !important;
+}
+.wishlist_row .purchase_area {
+ border-radius: var(--border0) !important;
+ background-color: rgba(0, 0, 0, 0) !important;
+}
+.discount_block {
+ border-radius: var(--border0) !important;
+}
+.game_area_purchase_game_dropdown_selection {
+ background: transparent !important;
+ line-height: 36px !important;
+}
+.steamawards_app_banner_ctn {
+ border: 1px solid var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.discount_block.no_discount .discount_prices {
+ border-radius: var(--border0) !important;
+ background: 0 0 !important;
+}
+.discount_block_large .discount_prices {
+ border-radius: var(--border0) !important;
+}
+.discount_block .discount_prices {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+ vertical-align: 0px !important;
+}
+.btnv6_green_white_innerfade {
+ border-radius: var(--border0) !important;
+ padding: 3px !important;
+ text-decoration: none !important;
+ color: var(--green) !important;
+ background: rgba(121, 153, 5, 1) !important;
+}
+.btnv6_blue_blue_innerfade {
+ border-radius: var(--border0) !important;
+ padding: 3px !important;
+ text-decoration: none !important;
+ color: var(--blue-er) !important;
+ background: rgba(47, 137, 188, 1) !important;
+}
+.btnv6_green_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ border-radius: var(--border0) !important;
+ background: rgba(83, 105, 4, 1) !important;
+ color: var(--white) !important;
+}
+.btnv6_blue_blue_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ border-radius: var(--border0) !important;
+ background: var(--darkblue) !important;
+ color: var(--white) !important;
+}
+.btn_medium > span,
+input.btn_medium {
+ padding: 0 15px !important;
+ line-height: 30px !important;
+}
+#rightContents .box {
+ border-radius: var(--border0) !important;
+ background: rgba(0, 0, 0, 0.2) !important;
+}
+.review_list h1 {
+ border-bottom: none !important;
+}
+.review_box .header {
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+ border-bottom: 0 !important;
+ background: rgba(0, 0, 0, 0.2) !important;
+}
+.review_box .leftcol img {
+ border-radius: var(--border0) !important;
+}
+a.activetrigger,
+a.trigger {
+ border-radius: var(--border0) !important;
+ background: 0 0 !important;
+ background-color: var(--black) !important;
+}
+.dselect_container a,
+.dselect_container a:active,
+.dselect_container a:hover,
+.dselect_container a:visited {
+ border-bottom-left-radius: var(--border0) !important;
+ border-bottom-right-radius: var(--border0) !important;
+}
+.block_content.block_content_inner.dark {
+ border-radius: var(--border0) !important;
+}
+.popup_body.popup_menu.shadow_content {
+ border-radius: var(--border0) !important;
+ z-index: 200 !important;
+}
+#profile_action_dropdown .popup_menu_item {
+ padding: 0px 12px !important;
+ line-height: 26px !important;
+}
+.workshop_showcase_item img.workshop_showcase_item_image {
+ border-radius: var(--border0) !important;
+}
+.guide_showcase_appinfo .workshop_showcase_app img {
+ border-radius: var(--border0) !important;
+}
+.favoritegroup_showcase_group .favoritegroup_avatar img {
+ border-radius: var(--border0) !important;
+}
+.recent_game {
+ background-color: rgba(0, 0, 0, 0.3) !important;
+ backdrop-filter: blur(10px) !important;
+}
+.game_info .game_info_cap img {
+ border-radius: var(--border0) !important;
+}
+.favoritegame_showcase .game_info_stats,
+.recent_game .game_info_stats {
+ background-color: transparent !important;
+ border-radius: var(--border0) !important;
+ border-top: 0 !important;
+}
+.game_info_achievements_badge .game_info_badge_border {
+ border-radius: var(--border0) !important;
+}
+.game_info_badge_border {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+ background-color: rgba(0, 0, 0, 0) !important;
+}
+.achievement_progress_bar_ctn {
+ padding: 0 !important;
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.game_info_achievement,
+.game_info_achievement img {
+ border-radius: var(--border0) !important;
+}
+.game_info_achievement {
+ border-radius: var(--border0) !important;
+}
+.game_info_stats_rule {
+ border-top: 0 !important;
+ background-color: rgba(0, 0, 0, 0) !important;
+ height: 0 !important;
+}
+.screenshot_showcase_screenshot {
+ border-radius: var(--border0) !important;
+ border: 1px transparent solid !important;
+}
+.showcase_content_bg {
+ border-radius: 4px !important;
+ backdrop-filter: blur(10px) !important;
+ background-color: rgba(0, 0, 0, 0.3) !important;
+}
+.showcase_content_bg:last-child {
+ border-radius: 4px !important;
+}
+.showcase_gamecollector_game img.game_capsule {
+ border-radius: var(--border0) !important;
+}
+.commentthread_header,
+.profile_leftcol_header {
+ border-bottom: 0 !important;
+ border-radius: var(--border0) !important;
+ background-color: transparent !important;
+}
+.commentthread_subscribe_checkbox {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+ background: var(--littlegrey) !important;
+ margin-bottom: 2px !important;
+}
+.profile_comment_area .commentthread_footer {
+ border-top: 0 !important;
+}
+.profile_comment_area .commentthread_comment_container {
+ border-bottom: 0 !important;
+}
+.profile_comment_area .commentthread_textarea {
+ background-color: var(--littlegrey) !important;
+}
+.profile_comment_area .commentthread_header,
+.profile_leftcol_header {
+ background-color: transparent !important;
+}
+.profile_comment_area .commentthread_entry_quotebox {
+ border-bottom: 0 !important;
+ border: 0 !important;
+ background-color: var(--littlegrey) !important;
+ border-radius: var(--border0) !important;
+}
+.commentthread_entry_quotebox {
+ background-color: var(--littlegrey) !important;
+ border-radius: var(--border0) !important;
+ border-left: 0 !important;
+ border-top: 0 !important;
+ border-right: 0 !important;
+ border-bottom: 0 !important;
+ margin-bottom: -2px !important;
+}
+.commentthread_footer,
+.commentthread_header {
+ margin-bottom: 0 !important;
+ padding-bottom: 0 !important;
+}
+.invite_row {
+ border-radius: var(--border0) !important;
+ background: rgba(0, 0, 0, 0.2) !important;
+}
+.invite_block_name {
+ margin-top: 10px !important;
+}
+span.invite_action_txt {
+ border-radius: var(--border0) !important;
+}
+.event_title {
+ font-weight: 400 !important;
+}
+.community_search_text_box {
+ background: 0 0 !important;
+ background-color: var(--grey) !important;
+ border: 0 !important;
+ border-radius: var(--border2) !important;
+ color: var(--white) !important;
+}
+input[type="number"],
+input[type="password"],
+input[type="text"],
+select {
+ border: 2px solid transparent !important;
+ border-radius: var(--border2) !important;
+}
+#search_players_form input[type="submit"] {
+ margin-top: 5px !important;
+ margin-left: 5px !important;
+}
+.search_row {
+ border-radius: var(--border0) !important;
+}
+body.flat_page {
+ background: var(--darkgrey) !important;
+}
+body.flat_page #footer_spacer,
+body.headerless_page #footer_spacer {
+ border-radius: var(--border0) !important;
+ background: var(--darkgrey) !important;
+}
+.search_match_info {
+ border-radius: var(--border0) !important;
+}
+.search_group_avatar_holder img {
+ border-radius: var(--border0) !important;
+}
+.grouppage_content_area .community_search_container > h2 {
+ color: var(--white) !important;
+}
+.recentAchievementsImg {
+ border-radius: var(--border0) !important;
+}
+.game_purchase_action_bg {
+ height: 35px !important;
+ background-color: var(--begrey) !important;
+ padding: 1px 1px 2px 0 !important;
+ border-radius: var(--border0) !important;
+ -moz-border-radius: var(--border0) !important;
+}
+.game_purchase_action_bg > * {
+ margin-left: 1px !important;
+}
+.game_purchase_discount .discount_prices {
+ background: var(--begrey) !important;
+ vertical-align: 6px !important;
+}
+.game_purchase_discount {
+ height: 36px !important;
+}
+.game_purchase_discount .bundle_base_discount,
+.game_purchase_discount .discount_pct {
+ border-radius: var(--border0) !important;
+ height: 36px !important;
+ line-height: 32px !important;
+}
+.game_purchase_action .game_purchase_price {
+ background-color: transparent !important;
+ color: var(--white) !important;
+}
+.highlight_movie {
+ border-radius: var(--border0) !important;
+ background-color: transparent !important;
+}
+.highlight_player_item img {
+ border-radius: var(--border0) !important;
+}
+.highlight_strip_item img {
+ border-radius: var(--border0) !important;
+ background-color: transparent !important;
+}
+.highlight_strip_item {
+ background-color: transparent !important;
+}
+img.game_header_image_full {
+ border-radius: var(--border0) !important;
+ width: 324px !important;
+ margin-left: -5px !important;
+}
+body.v6 .game_area_already_owned.page_content {
+ border-radius: var(--border0) !important;
+}
+.game_area_play_stats {
+ border-radius: var(--border0) !important;
+}
+#recommendation_success .review_box .thumb {
+ border-radius: var(--border0) !important;
+}
+#review_create h1,
+.reviewDate {
+ border-top: 0 !important;
+}
+.game_area_purchase_game_wrapper .game_area_purchase_game {
+ border-radius: var(--border0) !important;
+}
+.game_area_purchase_game > a {
+ border-radius: var(--border0) !important;
+}
+.btn_medium > span.subscribeText {
+ padding-left: 35px !important;
+}
+.game_area_purchase_not_refundable {
+ color: var(--white) !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.game_purchase_area_friends_want {
+ background: var(--grey) !important;
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+}
+.highlight_selector {
+ background-image: none !important;
+}
+#game_highlights {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.queue_ctn {
+ width: 940px;
+ border-radius: var(--border0) !important;
+ background: 0 0 !important;
+}
+.glance_details img:hover {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.game_area_dlc_bubble {
+ border-radius: var(--border0) !important;
+}
+.ds_flag.ds_completetheset {
+ border-radius: var(--border0) !important;
+}
+.game_description_column h2,
+.recommendation_bodytext h2 {
+ background-image: none !important;
+}
+.game_description_column .block .block_header h4 {
+ background-image: none !important;
+}
+.game_description_column .block .block_content a {
+ border-radius: var(--border0) !important;
+}
+.game_description_column .block .block_content a img {
+ border-radius: var(--border0) !important;
+}
+.game_area_already_owned .ds_flag {
+ border-radius: var(--border0) !important;
+ background: 0 0 !important;
+}
+#review_create .avatar > img {
+ border-radius: var(--border5) !important;
+}
+#review_create .avatar {
+ border-radius: var(--border5) !important;
+}
+#review_create .input_box {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+ background-color: #2b2b2b !important;
+}
+.review_controls {
+ background-color: transparent !important;
+ border-radius: var(--border0) !important;
+}
+.review_box .vote_header .thumb {
+ border-radius: var(--border0) !important;
+}
+.review_box .short_header .hours,
+.review_box .short_header .persona_name,
+.review_box .short_header .thumb {
+ border-radius: var(--border0) !important;
+}
+.review_box a.vote_header {
+ border-radius: var(--border0) !important;
+}
+.review_box .hr {
+ height: 0 !important;
+}
+.review_box {
+ background-image: none !important;
+ border-radius: var(--border0) !important;
+}
+.sysreq_tabs {
+ padding-left: 0 !important;
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.game_description_column h2,
+.recommendation_bodytext h2 {
+ background-image: none !important;
+}
+.sysreq_tab.active {
+ background-color: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.sysreq_tab:hover {
+ background-color: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+body.v6 #footer .rule {
+ border-top: 0 solid var(--littlegrey) !important;
+}
+.review_box.short {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.rightcol.game_meta_data .block {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.rightcol.game_meta_data .block.heading {
+ border-radius: var(--border0) !important;
+}
+.short_header {
+ background-color: var(--grey) !important;
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+}
+.short_header:hover {
+ background-color: var(--begrey) !important;
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+}
+.discount_block.no_discount .bundle_base_discount {
+ border-right: 0 !important;
+}
+.queue_controls_description {
+ color: var(--gold) !important;
+ background: 0 0 !important;
+ margin-top: -10px !important;
+ margin-left: 12px;
+}
+.queue_btn_menu > .queue_menu_arrow,
+.queue_btn_menu > .queue_menu_arrow:hover {
+ background: var(--grey) !important;
+}
+.queue_btn_menu > .queue_menu_arrow:hover img {
+ filter: grayscale(100) brightness(100);
+}
+/* .btn_next_in_queue .next_in_queue_content{padding:25px 15% 0 28%!important}
+.btn_next_in_queue{background:0 0!important;background-color:#584d31!important;width:230px!important;height:80px!important;margin-bottom:-10px!important;margin-right:-15px!important;margin-top:-35px!important;border-radius:var(--border5)!important}
+.btn_next_in_queue{background:0 0!important;background-color:var(--bronze)!important;width:230px!important;height:80px!important;margin-bottom:-10px!important;margin-right:-15px!important;margin-top:20px!important;border-radius:var(--border5)!important}
+.btn_next_in_queue span{color:var(--gold)!important}
+.btn_next_in_queue:hover span{color:var(--gold)!important} */
+.game_area_comingsoon {
+ border-radius: var(--border0) !important;
+}
+.game_page_autocollapse_fade {
+ background: 0 0 !important;
+}
+.game_purchase_action_bg > * {
+ border-radius: var(--border0) !important;
+}
+.game_page_autocollapse_readmore {
+ background: rgba(47, 137, 188, 1) !important;
+ color: var(--blue-er) !important;
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+ border-radius: var(--border0) !important;
+}
+.game_page_autocollapse_readmore:hover {
+ background: rgba(23, 67, 92, 1) !important;
+ color: var(--white) !important;
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+ border-radius: var(--border0) !important;
+}
+.game_page_autocollapse_ctn.collapsed {
+ padding-bottom: 25px !important;
+}
+.game_description_column .block .block_header .right a {
+ background-color: rgba(47, 137, 188, 1) !important;
+ color: var(--blue-er) !important;
+ padding: 4px 6px !important;
+ border-radius: var(--border0) !important;
+}
+.game_description_column .block .block_header .right a:hover {
+ background-color: rgba(23, 67, 92, 1) !important;
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+}
+.no_curators_followed {
+ background: 282828 !important;
+ border-radius: var(--border0) !important;
+}
+.review_ctn {
+ border-top: 0 !important;
+}
+.slider_ctn.store_autoslider {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.highlight_ctn .slider .handle,
+.highlight_ctn .slider_ctn .slider_left,
+.highlight_ctn .slider_ctn .slider_right {
+ background-color: rgba(0, 0, 0, 0.4) !important;
+ border-radius: var(--border0) !important;
+}
+.game_area_details_specs {
+ border-radius: var(--border0) !important;
+}
+.game_area_details_specs a.name {
+ color: var(--white) !important;
+ background: var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.game_area_details_specs a.name:hover {
+ background: var(--darkergrey) !important;
+}
+.DRM_notice {
+ border-radius: var(--border0) !important;
+}
+.block a.linkbar {
+ border-radius: var(--border0) !important;
+}
+.glance_ctn {
+ background: 0 0 !important;
+ padding-bottom: 13px !important;
+ padding-left: 5px !important;
+ border-radius: var(--border0) !important;
+}
+.sale_page_n_section .broadcast_wrapper .broadcastwrapper {
+ border-radius: var(--border0) !important;
+}
+.sale_page_n_section_block {
+ border-radius: var(--border0) !important;
+}
+.sale_page_n_section_button {
+ border-radius: var(--border25) !important;
+}
+.promotion_curator_container {
+ border-radius: var(--border0) !important;
+}
+.promotion_follow_controls {
+ padding: 1px 1px 1px 1px !important;
+ border-radius: var(--border0) !important;
+}
+.promotion_curator_socialmedia_accounts {
+ border-radius: var(--border0) !important;
+}
+.sale_page_purchase_item {
+ border-radius: var(--border0) !important;
+}
+.sale_page_purchase_content .bundle_contents_preview {
+ border-radius: var(--border0) !important;
+}
+.ds_flag.ds_owned_flag {
+ border-radius: var(--border0) !important;
+}
+.ds_flag.ds_wishlist_flag {
+ border-radius: var(--border0) !important;
+}
+.ds_flag.ds_incart_flag {
+ border-radius: var(--border0) !important;
+}
+.ds_flag.ds_ignored_flag {
+ border-radius: var(--border0) !important;
+}
+div.early_access_header {
+ border-radius: var(--border0) !important;
+}
+.game_area_dlc_row.odd {
+ border-radius: var(--border0) !important;
+}
+div.early_access_banner {
+ border-radius: var(--border0) !important;
+}
+h2 span.note {
+ background: rgba(47, 137, 188, 1) !important;
+ color: var(--blue-er) !important;
+ padding: 0 !important;
+ padding-top: 4px !important;
+ padding-bottom: 1px !important;
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+ border-radius: var(--border0) !important;
+}
+h2 span.note:hover {
+ background: rgba(23, 67, 92, 1) !important;
+ color: var(--white) !important;
+ padding: 0 !important;
+ padding-top: 4px !important;
+ padding-bottom: 1px !important;
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+ border-radius: var(--border0) !important;
+}
+.review_box.partial .content .gradient {
+ background: 0 0 !important;
+}
+.early_access_review {
+ background-color: rgba(0, 0, 0, 0) !important;
+ border-radius: var(--border0) !important;
+}
+#review_histograms_container {
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+}
+.review_histogram_section .user_reviews_summary_bar {
+ border-bottom: 10px !important;
+}
+.review_histogram_section.recent {
+ border-top-right-radius: var(--border0) !important;
+}
+.user_reviews_header {
+ background-image: none !important;
+}
+.user_reviews_filter_menu_flyout {
+ border-top-right-radius: var(--border0) !important;
+ border-bottom-left-radius: var(--border0) !important;
+ border-bottom-right-radius: var(--border0) !important;
+}
+.user_reviews_filter_options {
+ border-bottom-left-radius: var(--border0) !important;
+ border-bottom-right-radius: var(--border0) !important;
+}
+.user_reviews_filter_menu {
+ border-left: 0 !important;
+}
+#review_recent_events_container.high_volume_all {
+ border-radius: var(--border0) !important;
+}
+.item_store_items_game_page_container {
+ border-radius: var(--border0) !important;
+}
+.item_def_icon_container {
+ border-radius: var(--border0) !important;
+}
+.rightcol .panel {
+ border-radius: var(--border0) !important;
+}
+.rightcol .review_box.partial .content .gradient {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+a.communitylink_achievement.communitylink_achivement_plusmore {
+ border-radius: var(--border0) !important;
+}
+.communitylink_achievement {
+ border-radius: var(--border0) !important;
+}
+#game_area_metascore .score {
+ border-radius: var(--border0) !important;
+}
+.friend_activity .friend_block_avatar img,
+.friend_block_holder .friend_block_avatar img,
+.playerAvatar img {
+ border-radius: var(--border5) !important;
+}
+.review_box.partial .view_more a {
+ background: rgba(47, 137, 188, 1) !important;
+ color: var(--blue-er) !important;
+}
+.review_box.partial .view_more a:hover {
+ background: rgba(23, 67, 92, 1) !important;
+ color: var(--white) !important;
+}
+.user_reviews_active_filters .active_filter {
+ border-radius: var(--border0) !important;
+ background-repeat: no-repeat;
+ background-image: none !important;
+}
+.block.recommendation_reasons hr {
+ height: 0 !important;
+ background-color: rgba(0, 0, 0, 0) !important;
+}
+div.early_access_announcements .post .hr {
+ background-color: rgba(0, 0, 0, 0) !important;
+ height: 0 !important;
+}
+.steam_curator_icon.medium {
+ border-left: 0 !important;
+}
+div.early_access_announcements .post .more {
+ color: var(--blue-er) !important;
+ padding-top: 6px !important;
+ padding-bottom: 0 !important;
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+ background: rgba(47, 137, 188, 1) !important;
+ border-radius: var(--border0) !important;
+}
+.referring_curator {
+ border-radius: var(--border0) !important;
+}
+div.early_access_announcements .post .more:hover {
+ color: var(--white) !important;
+ padding-top: 6px !important;
+ padding-bottom: 3px !important;
+ padding-left: 5px !important;
+ padding-right: 5px !important;
+ background: rgba(23, 67, 92, 1) !important;
+ border-radius: var(--border0) !important;
+}
+.btnv6_lightblue_blue {
+ border-radius: var(--border0) !important;
+ padding: 4px !important;
+ border: 1px var(--littlegrey) !important;
+ color: var(--black) !important;
+ background: var(--blue-ish) !important;
+}
+.btnv6_lightblue_blue > span {
+ border-radius: var(--border0) !important;
+ border: 1px var(--littlegrey) !important;
+ color: var(--black) !important;
+ background: var(--blue-ish) !important;
+}
+.btnv6_lightblue_blue:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ text-decoration: none !important;
+ color: var(--black) !important;
+ border: 1px var(--littlegrey) !important;
+ background: var(--blue) !important;
+}
+.btnv6_lightblue_blue:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ background: var(--blue) !important;
+ color: var(--black) !important;
+ border: 1px var(--littlegrey) !important;
+ border-radius: var(--border0) !important;
+}
+.enable_review_comments input,
+.review_received_comp input {
+ vertical-align: text-top;
+ border-radius: var(--border0) !important;
+ background: var(--littlegrey) !important;
+}
+.game_area_offsite_purchase,
+.game_area_purchase_game {
+ border-radius: var(--border0) !important;
+}
+.friend_activity .friend_block_avatar,
+.friend_block_holder .friend_block_avatar,
+.playerAvatar {
+ border-radius: var(--border4) !important;
+ padding: 0 !important;
+}
+.appHubIconHolder.ignored,
+.appHubIconHolder.offline,
+.avatar_block_status_offline,
+.friend_activity.friend_status_offline .friend_block_avatar,
+.friend_block_holder.friend_status_offline .friend_block_avatar,
+.playerAvatar.offline {
+ border-radius: var(--border4) !important;
+}
+.appHubIconHolder.offline img,
+.avatar_block_status_offline img,
+.friend_status_offline .friend_block_avatar img,
+.playerAvatar.offline img {
+ border-radius: var(--border4) !important;
+}
+.appHubIconHolder.online,
+.avatar_block_status_online,
+.friend_activity.friend_status_online .friend_block_avatar,
+.friend_block_holder.friend_status_online .friend_block_avatar,
+.playerAvatar.online {
+ border-radius: var(--border4) !important;
+}
+.appHubIconHolder.online img,
+.avatar_block_status_online img,
+.friend_status_online .friend_block_avatar img,
+.playerAvatar.online img {
+ border-radius: var(--border4) !important;
+}
+.appHubIconHolder.in-game,
+.avatar_block_status_in-game,
+.friend_activity.friend_status_in-game .friend_block_avatar,
+.friend_block_holder.friend_status_in-game .friend_block_avatar,
+.playerAvatar.in-game {
+ border-radius: var(--border4) !important;
+}
+.appHubIconHolder.in-game img,
+.avatar_block_status_in-game img,
+.friend_status_in-game .friend_block_avatar img,
+.playerAvatar.in-game img {
+ border-radius: var(--border4) !important;
+}
+.appHubIconHolder.golden,
+.avatar_block_status_golden,
+.friend_activity.friend_status_golden .friend_block_avatar,
+.friend_block_holder.friend_status_golden .friend_block_avatar,
+.playerAvatar.golden {
+ border-radius: var(--border4) !important;
+}
+.group_content_rule {
+ background-image: none !important;
+}
+.group_content {
+ background: 0 0 !important;
+}
+.group_content.bottomless {
+ background: var(--begrey) !important;
+ margin-bottom: 50px !important;
+ border-radius: var(--border0) !important;
+ padding-left: 7px !important;
+}
+.commentthread_entry {
+ background-color: rgba(0, 0, 0, 0) !important;
+}
+.group_comments .commentthread_entry {
+ background: 0 0 !important;
+}
+.commentthread_header .commentthread_count {
+ background-image: none !important;
+ margin-left: 15px !important;
+ margin-top: 4px !important;
+}
+.commentthread_paging {
+ margin-top: 3px !important;
+ margin-right: 4px !important;
+}
+.commentthread_footer,
+.commentthread_header {
+ padding-bottom: 15px !important;
+ padding-top: 10px !important;
+ border-radius: var(--border0) !important;
+}
+.forum_topic_overlay {
+ border-radius: var(--border0) !important;
+}
+.forum_topic_overlay:hover {
+ background: var(--darkergrey) 63 !important;
+}
+.forum_topic {
+ border-radius: var(--border0) !important;
+}
+.btn_blue_white_innerfade {
+ border-radius: var(--border0) !important;
+ border: 1px var(--littlegrey) !important;
+ text-decoration: none !important;
+ color: var(--blacker-ish) !important;
+ background: rgba(102, 192, 244, 0.8) !important;
+}
+.btn_blue_white_innerfade > span {
+ border-radius: var(--border0) !important;
+ background: rgba(102, 192, 244, 0.8) !important;
+ color: var(--blacker-ish) !important;
+ border: 1px var(--littlegrey) !important;
+}
+.btn_blue_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ text-decoration: none !important;
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+ background: var(--darkblue) !important;
+ border: 1px var(--littlegrey) !important;
+}
+.btn_blue_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ text-decoration: none !important;
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+ background: var(--darkblue) !important;
+ border: 1px var(--littlegrey) !important;
+}
+.grouppage_join_area {
+ padding: 1px !important;
+ background-color: transparent !important;
+ border-radius: var(--border0) !important;
+}
+.notice_box_content_blue_box {
+ border-radius: var(--border0) !important;
+}
+.group_tabs {
+ width: 950px !important;
+ border-radius: var(--border0) !important;
+ padding-left: 2px !important;
+}
+.group_tab {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+ -moz-border-radius: var(--border0) !important;
+}
+a.group_tab:hover {
+ background: var(--blu) !important;
+ border-radius: var(--border0) !important;
+}
+.group_tab.active {
+ height: 35px !important;
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.group_tab.active > span {
+ height: 35px !important;
+ background: rgba(102, 192, 244, 0.8) !important;
+ border-radius: var(--border0) !important;
+}
+.rightbox {
+ border-radius: var(--border0) !important;
+ background: var(--darkergrey) !important;
+}
+.joinchat_bg {
+ position: relative;
+ width: 257px !important;
+ height: 36px !important;
+ background: var(--blacker) !important;
+ border-radius: var(--border0) !important;
+}
+.joinchat_bg .joinchat_button {
+ top: 2px !important;
+ color: var(--white) !important;
+ background: rgba(102, 192, 244, 0.8) !important;
+ border-radius: var(--border0) !important;
+}
+.joinchat_bg .joinchat_membercount {
+ top: 1px !important;
+ color: var(--blu) !important;
+}
+.rightbox .rule {
+ height: 0 !important;
+ background-color: rgba(0, 0, 0, 0) !important;
+ border-top: 0 !important;
+}
+.group_associated_game {
+ background-color: var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.group_associated_game_icon {
+ background-color: transparent !important;
+}
+.group_overview_announcement_readmore {
+ border-top: 0px !important;
+}
+.calendarBox {
+ border-radius: var(--border0) !important;
+}
+.member_block {
+ background-color: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.member_block:hover {
+ background-color: var(--darkergrey) !important;
+ border-radius: var(--border0) !important;
+}
+.member_block .rank_icon {
+ background-color: transparent !important;
+}
+.group_paging {
+ border-radius: var(--border0) !important;
+}
+.announcement {
+ border-radius: var(--border0) !important;
+}
+a.readmore_link {
+ border-radius: var(--border0) !important;
+ background: var(--darkblue) !important;
+}
+.pagebtn,
+a.pagebtn {
+ background-color: var(--grey) !important;
+}
+.announcement_control_container {
+ border-radius: var(--border0) !important;
+}
+.forum_topic_pinned_notice {
+ border-radius: var(--border0) !important;
+}
+.forum_paging_summary {
+ border-radius: var(--border0) !important;
+}
+.forumtopic_comments .commentthread_comment_text a {
+ border-radius: var(--border0) !important;
+}
+.forum_newtopic_header {
+ border-radius: var(--border0) !important;
+}
+.forum_newtopic_box {
+ border-radius: var(--border0) !important;
+}
+.commentthread_comment_edit_textarea_ctn,
+.gray_bevel,
+input.gray_bevel,
+textarea.gray_bevel {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.btn_grey_black {
+ border-radius: var(--border0) !important;
+ text-decoration: none !important;
+ color: var(--blu) !important;
+}
+.btn_grey_black > span {
+ border-radius: var(--border0) !important;
+}
+.btn_grey_black:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ text-decoration: none !important;
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+}
+.btn_grey_black:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ border-radius: var(--border0) !important;
+}
+.btn_grey_black.btn_active,
+btn_grey_black.active {
+ text-decoration: none !important;
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+}
+.btn_grey_black.btn_active > span,
+btn_grey_black.active > span {
+ border-radius: var(--border0) !important;
+}
+.btn_small > span,
+input.btn_small {
+ border-radius: var(--border0) !important;
+}
+.btn_small > span,
+input.btn_small:hover {
+ border-radius: var(--border0) !important;
+}
+.btn_green_white_innerfade {
+ border-radius: var(--border0) !important;
+ text-decoration: none !important;
+ color: var(--green) !important;
+}
+.btn_green_white_innerfade > span {
+ border-radius: var(--border0) !important;
+}
+.btn_green_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover {
+ text-decoration: none !important;
+ color: var(--white) !important;
+ border-radius: var(--border0) !important;
+}
+.btn_green_white_innerfade:not(.btn_disabled):not(:disabled):not(.btn_active):not(.active):hover > span {
+ border-radius: var(--border0) !important;
+}
+.eventLogo {
+ border-radius: var(--border0) !important;
+}
+.grouppage_logo {
+ background-image: none !important;
+}
+.curator_summary_box {
+ border-radius: var(--border0) !important;
+}
+.curator_store_link_ctn {
+ border-radius: var(--border0) !important;
+}
+#widget {
+ border: 0 !important;
+ background: var(--darkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+.btn_addtocart .btn_addtocart_left,
+.btn_addtocart .btn_addtocart_right {
+ background: 0 0 !important;
+}
+.btn_addtocart .btn_addtocart_content {
+ color: var(--green) !important;
+ background: rgba(121, 153, 5, 1) !important;
+ border-radius: var(--border0) !important;
+}
+.rightbox_list_selection_background {
+ left: -10px !important;
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.bundle_contents_preview {
+ border-radius: var(--border0) !important;
+}
+.group_content_header .group_content_header_viewmore {
+ border-radius: var(--border0) !important;
+ background-color: rgba(47, 137, 188, 1) !important;
+ color: var(--white) !important;
+}
+.forumtopic_answer.answer_ctn {
+ border-radius: var(--border0) !important;
+}
+.forumtopic_comments .commentthread_answer_bar {
+ border-radius: var(--border0) !important;
+}
+img#blotter_nofriends_block {
+ border-radius: var(--border0) !important;
+}
+#instructions_main_container {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+#BG_top_workshop {
+ background-image: none !important;
+ width: 0 !important;
+ height: 0 !important;
+}
+.responsive_tab_baseline {
+ background-color: transparent !important;
+ height: 0 !important;
+}
+.sectionTabsHR {
+ background-color: transparent !important;
+ margin-bottom: 0 !important;
+}
+#footer {
+ border-radius: var(--border0) !important;
+}
+#friendactivity_right_column .box {
+ border-radius: var(--border0) !important;
+}
+.blotter_eventsblock {
+ border-radius: var(--border0) !important;
+}
+.friends_add_block {
+ border-radius: var(--border0) !important;
+}
+.profile_options_divider {
+ height: 0 !important;
+ border-top: 0 !important;
+}
+.blotter_status_entry .commentthread_entry {
+ border-radius: var(--border0) !important;
+ border-bottom: 0 !important;
+}
+#blotter_statuspost_submit > span {
+ border-radius: var(--border0) !important;
+}
+#blotter_statuspost_submit {
+ border-radius: var(--border0) !important;
+}
+.blotter_day {
+ border-radius: var(--border0) !important;
+}
+.gameLogo {
+ border-radius: var(--border0) !important;
+}
+.blotter_group_announcement_header_ogg {
+ border-bottom: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.blotter_comment_thread .commentthread_area {
+ border-radius: var(--border0) !important;
+}
+.blotter_comment_thread {
+ border-top: 0 solid var(--lightblack) !important;
+ border-radius: var(--border0) !important;
+}
+.blotter_group_announcement_header {
+ border-bottom: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.blotter_screenshot_gallery_image,
+.blotter_screenshot_gallery_image_selected {
+ border-radius: var(--border0) !important;
+}
+#blotter_appselect_app_options .blotter_appselect_options {
+ border-radius: var(--border0) !important;
+}
+.blotter_author_block {
+ border-bottom: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.blotter_screenshot > .blotter_author_block {
+ border-radius: var(--border0) !important;
+}
+.blotter_comment_thread .commentthread_comment_container {
+ margin-top: 0 !important;
+}
+.blotter_group_announcement_content {
+ background: rgba(0, 0, 0, 0.2) !important;
+}
+span.bb_spoiler {
+ border-radius: var(--border0) !important;
+}
+#HeaderUserBreadcrumbs {
+ border-bottom: 0 !important;
+}
+.HeaderUserAvatar img {
+ border-radius: var(--border4) !important;
+}
+.avatarIcon_48 img {
+ border-radius: var(--border4) !important;
+}
+.avatarIcon_48_online {
+ border-radius: var(--border4) !important;
+}
+.avatarIcon_48_offline {
+ border-radius: var(--border4) !important;
+}
+.avatarIcon_48_ingame {
+ border-radius: var(--border4) !important;
+}
+#NoItemsContainer {
+ background-color: rgba(0, 0, 0, 0.4) !important;
+ border-radius: var(--border0) !important;
+ border: 0 !important;
+}
+.view_inventory_page.inventory_msg_ctn {
+ border-radius: var(--border0) !important;
+ background: var(--color-darker);
+}
+.view_inventory_page {
+ background: var(--color-darkest) !important;
+}
+.primary_panel_border {
+ background: 0 0 !important;
+}
+.rightSectionHolder {
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.games_list_tabs {
+ border: 0 !important;
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+ -moz-border-radius-topleft: 4px !important;
+ -moz-border-radius-topright: 4px !important;
+}
+.games_list_tab.active {
+ margin-left: 1px !important;
+ border-radius: var(--border0) !important;
+ background: var(--color-light) !important;
+ box-shadow: none !important;
+}
+.games_list_tab,
+a.games_list_tab {
+ padding: 0 12px !important;
+ border-radius: var(--border0) !important;
+ border-top: 0 !important;
+ background: var(--color-dark) !important;
+ color: var(--white);
+}
+.games_list_tab_separator {
+ width: 0 !important;
+ background-color: rgba(0, 0, 0, 0) !important;
+ background-repeat: no-repeat;
+}
+.games_list_tab.first_tab,
+a.games_list_tab.first_tab {
+ border-radius: var(--border0) !important;
+ margin-left: 1px !important;
+}
+.filter_ctn.inventory_filters #filter_control {
+ border-radius: var(--border0) !important;
+ border: 0 !important;
+ background-color: rgba(0, 0, 0, 0.4) !important;
+}
+.inventory_iteminfo {
+ border: 2px solid transparent !important;
+}
+.view_inventory_page .inventory_page_right {
+ border-radius: var(--border0) !important;
+}
+.inventory_iteminfo .item_desc_content {
+ background-image: none !important;
+}
+#iteminfo0 .item_desc_content,
+#iteminfo1 .item_desc_content {
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+ background-color: var(--thegrey) !important;
+}
+.item_market_actions {
+ border-bottom-left-radius: var(--border0) !important;
+ border-bottom-right-radius: var(--border0) !important;
+}
+.trade_item_box {
+ background-color: transparent !important;
+ border: 1px solid transparent !important;
+}
+.itemHolder {
+ background-color: transparent !important;
+ border-radius: var(--border0) !important;
+ background-image: none !important;
+}
+.market_dialog_contents .item,
+.trade_item_box .item {
+ background-color: rgba(0, 0, 0, 0) !important;
+ border-radius: var(--border0) !important;
+}
+.badge_row {
+ border-radius: var(--border0) !important;
+ border-top: 1px solid transparent !important;
+ border-right: 1px solid transparent !important;
+ border-bottom: 1px solid transparent !important;
+ border-left: 1px solid transparent !important;
+ background-color: var(--thegrey) !important;
+ background: var(--thegrey) !important;
+}
+.badge_row_inner {
+ background-color: var(--thegrey) !important;
+ border-radius: var(--border0) !important;
+ background: var(--thegrey) !important;
+}
+.badge_title_rule {
+ height: 0 !important;
+ border-top: 0 !important;
+ background-color: rgba(0, 0, 0, 0) !important;
+}
+.badge_empty {
+ border: 1px solid transparent !important;
+ border-radius: var(--border0) !important;
+}
+.badge_progress_card.unowned {
+ border: 0 !important;
+ border-radius: var(--border0) !important;
+}
+.profile_xp_block {
+ border: 0 !important;
+ border-color: var(--thegrey) !important;
+ background-color: var(--thegrey) !important;
+}
+.profile_xp_block_remaining_bar_progress {
+ border-radius: var(--border0) !important;
+ background-image: none !important;
+}
+.main_content_ctn {
+ border: 0 !important;
+}
+.games_list_tab_row_separator {
+ border-top: 0 !important;
+}
+.browseApps {
+ background-color: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.browseAppsTitleContainer {
+ border-radius: var(--border0) !important;
+ background: var(--grey) !important;
+ background-color: var(--grey) !important;
+}
+.searchApps {
+ border-radius: var(--border2) !important;
+ background: var(--darkgrey) !important;
+}
+.workshopAppsRow {
+ border-bottom: 0 !important;
+ background: 0 0 !important;
+}
+.primary_panel {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.avatar_workshop_overlay {
+ background: 0 0 !important;
+}
+.current_player_workshop_link {
+ padding-left: 60px !important;
+}
+.joinGroup {
+ border-radius: var(--border0) !important;
+ width: 240px !important;
+ height: 80px !important;
+ background: var(--darkgrey) !important;
+}
+#ig_bottom .sidebar .detailPanel,
+#ig_bottom .sidebar .panel {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.subscribeRSS {
+ padding-top: 15px !important;
+ padding-bottom: 5px !important;
+}
+.right_column .panel {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.workshop_header {
+ border-radius: var(--border0) !important;
+}
+.workshop_browse_menu_area {
+ border-radius: var(--border0) !important;
+ background: var(--darkgrey) !important;
+ text-align: left;
+}
+.workshop_browse_search {
+ height: 34px !important;
+ background-color: var(--grey) !important;
+ border-left: 0 !important;
+ border-top: 0 !important;
+ border-right: 0 !important;
+ border-bottom: 0 !important;
+}
+.apphub_HeaderTop.workshop {
+ background-image: none !important;
+}
+#ButtonContainer {
+ margin-top: 5px !important;
+ border-radius: var(--border0) !important;
+}
+#MessageContent {
+ margin-top: 5px !important;
+}
+.profile_subpage_general .maincontent {
+ border-left: 0 solid !important;
+ border-right: 0 solid !important;
+}
+.tradeoffer_items_ctn.active {
+ border-top-color: rgba(0, 0, 0, 0) !important;
+ border-left-color: rgba(0, 0, 0, 0) !important;
+ border-right-color: rgba(0, 0, 0, 0) !important;
+ background: var(--grey) !important;
+}
+.tradeoffer_items_ctn {
+ border: 0 solid !important;
+ background-color: var(--darkergrey) !important;
+}
+.tradeoffer_items_rule {
+ background: 0 0 !important;
+}
+.tradeoffer_rule {
+ border-top: 0 !important;
+ height: 0 !important;
+}
+.tradeoffer_items_banner.accepted {
+ border-radius: var(--border0) !important;
+}
+.quote_arrow {
+ background-image: none !important;
+}
+.rightcol_controls_rule {
+ height: 0 !important;
+ border-top: 0 !important;
+}
+.maincontent {
+ background-image: none !important;
+ background-color: var(--darkgrey) !important;
+}
+.maincontent #topSummaryBoxContent {
+ background-color: var(--bedarkgrey) !important;
+ padding: 10px 10px 20px 20px !important;
+ margin: 0 0 20px 0 !important;
+ border-radius: var(--border0) !important;
+}
+#subtabs {
+ background: 0 0 !important;
+ height: 10px !important;
+}
+#personalAchieve {
+ padding: 20px 0 0 0 !important;
+}
+.achieveTxtHolder {
+ background-color: var(--thegrey) !important;
+ padding: 0 10px !important;
+}
+.achievementProgressBar {
+ border-radius: var(--border4) !important;
+}
+.achieveBarProgress {
+ border-radius: var(--border1) !important;
+}
+.achieveBar {
+ border-radius: var(--border1) !important;
+}
+.profile_small_header_texture > h1,
+h2 {
+ padding-left: -40px !important;
+}
+.profile_small_header_texture > .profile_small_header_additional {
+ right: 36px !important;
+}
+#headerContent {
+ margin: 20px 0 !important;
+ padding: 15px 20px !important;
+ background-color: var(--bedarkgrey) !important;
+ border-radius: var(--border0) !important;
+}
+#compareAvatar {
+ margin: 20px 0 !important;
+ padding: 0 32px 0 16px !important;
+}
+.achieveTxtHolder {
+ min-height: 64px !important;
+ border: 0 !important;
+ border-radius: var(--border4) !important;
+}
+.achieveTxt {
+ padding: 17px 6px 6px 10px !important;
+}
+.achieveFill {
+ top: 0 !important;
+ left: 0 !important;
+ bottom: 0 !important;
+ background: var(--grey) !important;
+}
+h2.pageheader {
+ padding-left: 0 !important;
+}
+.newsrightcol .block .block_header {
+ padding: 5px 10px !important;
+}
+.block a.linkbar {
+ padding: 5px 10px !important;
+ background: var(--darkgrey) !important;
+}
+.block_sub_header_channels {
+ padding: 0 0 0 10px !important;
+}
+.posttitle {
+ font-size: 18px !important;
+}
+.tabOff,
+.tabOn {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.flat_page .modal_frame {
+ width: 97% !important;
+ left: 0 !important;
+ margin: 0 40px 0 10px !important;
+}
+/* #modalContentFrameContainer{height:100%!important} */
+/* #modalContentFrameContainer .modalContent_iFrame{height:100%!important} */
+#modalContentTitleBar {
+ background-color: var(--blacker) !important;
+}
+#modalContent.modal_frame {
+ border: 2px solid var(--blacker) !important;
+}
+.favorite_game_cap a img {
+ border-radius: var(--border0) !important;
+}
+.showcase_gamecollector_game a img {
+ border-radius: var(--border0) !important;
+}
+.showcase_achievement a img {
+ border-radius: var(--border0) !important;
+}
+.profile_leftcol_header > h2 {
+ padding-left: 0 !important;
+}
+.recent_game > .recent_game_content {
+ padding: 15px 15px !important;
+}
+.recent_game > .recent_game_content > .game_name {
+ padding-left: 10px !important;
+}
+.recent_game .game_info .game_info_cap img {
+ border-radius: var(--border0) !important;
+}
+.favoritegame_showcase .game_info_stats,
+.recent_game .game_info_stats {
+ padding: 10px 0 10px !important;
+}
+.recent_game .achievement_icons {
+ float: right !important;
+}
+.sale_page_background {
+ background-color: var(--darkgrey) !important;
+}
+body.v6.winter_sale_home h2.winter {
+ margin-left: -40px !important;
+}
+.steamawards_card {
+ border-radius: var(--border0) !important;
+}
+.steamaward_card_background {
+ border-radius: var(--border0) !important;
+}
+.shadow_bottom,
+.shadow_left,
+.shadow_right,
+.shadow_top {
+ display: none !important;
+}
+.shadow_bl,
+.shadow_br,
+.shadow_ul,
+.shadow_ur {
+ display: none !important;
+}
+.friend_block_v2:hover {
+ background: var(--grey) !important;
+ border-radius: var(--border0) !important;
+}
+.most_recommended .steam_curator_recommendation .steam_curators_for_app {
+ border-top: 0px !important;
+}
+.navigation_bar {
+ border-bottom: 0px !important;
+}
+.newmodal {
+ background: var(--darkergrey) !important;
+ border-radius: var(--border0) !important;
+ border-width: 0px !important;
+ border-style: solid !important;
+ border-color: transparent !important;
+ border-image: initial !important;
+}
+.newmodal_background {
+ opacity: 0.9 !important;
+ backdrop-filter: var(--blur) !important;
+}
+.modal_top_bar {
+ height: 0px !important;
+ background: transparent !important;
+}
+.newmodal_header {
+ border-top-left-radius: var(--border0) !important;
+ border-top-right-radius: var(--border0) !important;
+ background: var(--darkgrey) !important;
+}
+.newmodal_content {
+ border-radius: var(--border0) !important;
+}
+.hover_box {
+ background: var(--lightergrey) !important;
+ color: var(--darkerwhite) !important;
+}
+.hover_arrow_inner {
+ background: 0 0 !important;
+}
+.carousel_items.store_capsule_container > * > * {
+ border-radius: var(--border0) !important;
+}
+.community_recommendation_app > .right_col {
+ background: var(--darkergrey) !important;
+ border-radius: var(--border0) !important;
+}
+.community_recommendation_app:hover > .right_col {
+ background: var(--darkergrey) !important;
+ border-radius: var(--border0) !important;
+}
+div.profile_page.has_profile_background {
+ z-index: 0 !important;
+}
+.profile_friends .friend_block_v2 {
+ width: 280px !important;
+ background: var(--darkergrey) !important;
+ border-radius: var(--border5) !important;
+}
+.profile_friends .friend_block_v2:hover {
+ background: var(--realblack) !important;
+ border-radius: var(--border5) !important;
+}
+.friend_block_v2 .player_avatar {
+ margin-top: 2px !important;
+}
+.friendBlock .friendPlayerLevel {
+ margin: 1px 6px 5px 5px !important;
+}
+.referring_curator_ctn {
+ margin-top: -20px !important;
+ margin-bottom: 0px !important;
+}
+.queue_ctn .queue_actions_ctn {
+ padding: 18px 0px !important;
+}
+
+/* This is the part for the Group page Banner */
+.grouppage_membertiles_overlay {
+ top: 0 !important;
+ padding-bottom: 12px !important;
+ background: var(--darkgrey) !important;
+ opacity: 0.9 !important;
+}
+.grouppage_member_tiles {
+ right: -1px !important;
+ height: 230px !important;
+ padding-bottom: 12px !important;
+ padding-top: 0 !important;
+ background: 0 0 !important;
+ border-radius: var(--border0) !important;
+}
+.grouppage_header {
+ border-bottom: 4px !important;
+ background: 0 0 !important;
+}
+.grouppage_header_name {
+ background: rgba(0, 0, 0, 0.2) !important;
+ backdrop-filter: blur(10px) !important;
+ position: absolute !important;
+ transform: translate(-50%, -50%) !important;
+ display: inline-block !important;
+ text-align: center !important;
+ right: auto !important;
+ left: 50% !important;
+ top: 30% !important;
+ background-color: transparent !important;
+}
+.grouppage_header_label {
+ border-top-left-radius: var(--border1) !important;
+ border-top-right-radius: var(--border1) !important;
+ background: rgba(0, 0, 0, 0.2) !important;
+ backdrop-filter: blur(10px) !important;
+ position: absolute !important;
+ transform: translate(-50%, -50%) !important;
+ display: inline-block !important;
+ text-align: center !important;
+ right: auto !important;
+ left: 50% !important;
+ top: 15% !important;
+ background-color: transparent !important;
+}
+
+/* User Avatars Row */
+.grouppage_friendsingroup {
+ position: absolute !important;
+ transform: translate(-50%, -50%) !important;
+ display: inline-block !important;
+ text-align: center !important;
+ right: auto !important;
+ left: 50% !important;
+ top: 50% !important;
+ background-color: transparent !important;
+}
+
+/* x Friends in group Button (this is fine) */
+.grouppage_friendsingroup_title {
+ border-radius: var(--border1) !important;
+ background: rgba(0, 0, 0, 0.2) !important;
+ backdrop-filter: blur(10px) !important;
+ position: absolute !important;
+ transform: translate(-50%, -50%) !important;
+ display: inline-block !important;
+ text-align: center !important;
+ right: auto !important;
+ left: 1% !important;
+ top: -130% !important;
+ background-color: transparent !important;
+}
+
+/* User Avatars */
+.grouppage_friendsingroup .friendavatar {
+ float: left !important;
+ padding: 4px !important;
+ border-radius: var(--border5) !important;
+}
+
+/* Future Updates and Changes */
+.top_new_releases_background {
+ background-image: none !important;
+}
+
+[class*="messagelist_MessageListPage_"] {
+ background: var(--color-dark) !important;
+}
+
+[class*="image_Btn_"] {
+ background: var(--lightergrey) !important;
+}
+
+[class*="image_Btn_"]:hover {
+ background: var(--grey-ish) !important;
+}
+
+body.responsive_page {
+ background: var(--darkgrey) !important;
+}
+
+.responsive_page_frame.no_header {
+ background: var(--color-light) !important;
+}
+
+div#tab_filters {
+ background: var(--begrey) !important;
+}
+
+div#dropdown_sort {
+ background: var(--begrey) !important;
+}
+
+body.v6 .game_page_background.game {
+ background: none !important;
+}
+
+div#home_gutter_recentlyviewed {
+ background: none !important;
+}
+
+/* HTML5 Video Controls - MapleAtMorning */
+/* Material Symbols by Google. Licensed under Apache License 2.0. */
+/* Unfortunately these symbols/icons had to be used due to the default steam icons having backgrounds that didn't fit.*/
+
+.html5_video_overlay {
+ background: var(--grey) !important;
+ border-radius: 5px 5px 0 0 !important;
+ padding-top: 3px;
+}
+
+.html5_video_overlay .play_button {
+ cursor: pointer !important;
+ background-size: 20px !important;
+ background-repeat: no-repeat !important;
+ background-position: 2px 0 !important;
+ margin: 1px 0 0 !important;
+ height: 21px !important;
+ width: 21px !important;
+}
+
+.html5_video_overlay .play_button.play {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAwHpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBRDsMgCP33FDsCAlU4jl27ZDfY8YdCm7ruJcKDZ55I2j/vV3p0YObES5WipYCBlRWbEQFHGzEDj+jFoeW5n04BrUWWyUspcf/o59PAUzO2XIzkGcI6C8rhLz9G6In6RJ1vYaRhROhCDoPm34KiUq9fWHeYIX5SDyzz2Le62va2xd4hxJ0ygUUi9gGoH07UjNCIxS4C6eDV+2FmC/m3pwPpC+0PWRqnnXJyAAABhGlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw1AUhU9TtSKVDnYQEcxQneyiIo6likWwUNoKrTqYvPQPmjQkKS6OgmvBwZ/FqoOLs64OroIg+APi7OCk6CIl3pcUWsT44PI+znvncN99gNCsMtXsiQGqZhnpRFzM5VfFwCv86EOIakxipp7MLGbhub7u4eP7XZRned/7cw0qBZMBPpE4xnTDIt4gnt20dM77xGFWlhTic+JJgxokfuS67PIb55LDAs8MG9n0PHGYWCx1sdzFrGyoxDPEEUXVKF/Iuaxw3uKsVuus3Sd/YbCgrWS4TjWKBJaQRAoiZNRRQRUWorRrpJhI03ncwz/i+FPkkslVASPHAmpQITl+8D/4PVuzOD3lJgXjQO+LbX+MA4FdoNWw7e9j226dAP5n4Err+GtNYO6T9EZHixwBoW3g4rqjyXvA5Q4w/KRLhuRIfiqhWATez+ib8sDQLTCw5s6tfY7TByBLs1q+AQ4OgYkSZa97vLu/e27/3mnP7wdWCXKbbI2O3wAADXZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6MTY2ZWQ3ZWYtOWJjMC00YzJlLWI0MjQtNjRmMjgwZDZiNzA2IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjBlOGQyNjVkLTM5MmYtNGY0Yy1hZjA1LTFlMGNkZjg0YzkzZSIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOjg0Mzk3NmUyLWEzY2MtNGMxYi04MWJkLTNiYzNiZjVkZDNiMCIKICAgZGM6Rm9ybWF0PSJpbWFnZS9wbmciCiAgIEdJTVA6QVBJPSIyLjAiCiAgIEdJTVA6UGxhdGZvcm09IldpbmRvd3MiCiAgIEdJTVA6VGltZVN0YW1wPSIxNzA5NzM3NjIzODMwNzUyIgogICBHSU1QOlZlcnNpb249IjIuMTAuMzQiCiAgIHRpZmY6T3JpZW50YXRpb249IjEiCiAgIHhtcDpDcmVhdG9yVG9vbD0iR0lNUCAyLjEwIgogICB4bXA6TWV0YWRhdGFEYXRlPSIyMDI0OjAzOjA2VDA5OjA3OjAzLTA2OjAwIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyNDowMzowNlQwOTowNzowMy0wNjowMCI+CiAgIDx4bXBNTTpIaXN0b3J5PgogICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmYyMWZjZmFkLTc5ZTQtNDYxMy1iNmIwLTY3NDJmMzRhMzQ0NiIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iR2ltcCAyLjEwIChXaW5kb3dzKSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyNC0wMy0wNlQwOTowNzowMyIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz4KjNbIAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH6AMGDwcDiRyWAwAAAKZJREFUSMftlM0RwiAQRpdUYDqwBEuxBEuwBDuwBEuxhJSQEvCu2ZcDRgUZx8Tl4vBODMzy8e0PIpUKsCoqoNAR2JVy8EoHrAsJDI/VFQ6WKYrQ2M3GxEEqknD8FO++EXi3JSJNtHNxzrW5+GamHxHuUYioPk/6pe0cEjTkqxA44X+YlXzadSry1noOADyw91YTHl1942zSmolAP7262L9k/j1U/osR0WMMqo63XB0AAAAASUVORK5CYII=) !important;
+}
+
+.html5_video_overlay .play_button.pause {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAwnpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBbEsMgCPznFD0CAlE4jmnSmd6gxy+KycSmO+PyWGdFYP+8X/BooCQgS9FsOaNDTIyqJ4qB2jmhdI7i0NLch1Mgb7FHjlLzuH/002kQoXq2XIz0OYR1FkyGv/4YUQRuE7V8G0Y2jJhCSMOgxrcwm5brF9YdZ2gcaCQ6j32ri29vW/wdJto5MTozSwzA7Qhw9YQ7Z7+IbD0vzonLMPOF/NvTAfgC7dlZH76+XdwAAAGEaUNDUElDQyBwcm9maWxlAAB4nH2RPUjDUBSFT1O1IpUOdhARzFCd7KIijqWKRbBQ2gqtOpi89A+aNCQpLo6Ca8HBn8Wqg4uzrg6ugiD4A+Ls4KToIiXelxRaxPjg8j7Oe+dw332A0Kwy1eyJAapmGelEXMzlV8XAK/zoQ4hqTGKmnswsZuG5vu7h4/tdlGd53/tzDSoFkwE+kTjGdMMi3iCe3bR0zvvEYVaWFOJz4kmDGiR+5Lrs8hvnksMCzwwb2fQ8cZhYLHWx3MWsbKjEM8QRRdUoX8i5rHDe4qxW66zdJ39hsKCtZLhONYoElpBECiJk1FFBFRaitGukmEjTedzDP+L4U+SSyVUBI8cCalAhOX7wP/g9W7M4PeUmBeNA74ttf4wDgV2g1bDt72Pbbp0A/mfgSuv4a01g7pP0RkeLHAGhbeDiuqPJe8DlDjD8pEuG5Eh+KqFYBN7P6JvywNAtMLDmzq19jtMHIEuzWr4BDg6BiRJlr3u8u797bv/eac/vB1YJcptsjY7fAAANdmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAtRXhpdjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6R0lNUD0iaHR0cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgIHhtcE1NOkRvY3VtZW50SUQ9ImdpbXA6ZG9jaWQ6Z2ltcDpmN2NlNTIzOS0yZWM4LTRmNDQtOTRkMy04MDBkMGJiOWEzNTYiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ZTk3YThhNTQtZGYyYS00OWQyLTlmODktOGQwODk1MTM5YTFhIgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6M2VmMjNiOWYtNGI3MC00NWExLTk5YWItZTA0MGQ2MTFjZGM5IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iV2luZG93cyIKICAgR0lNUDpUaW1lU3RhbXA9IjE3MDk3Mzc2Mzc2NjA5MTAiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQ6MDM6MDZUMDk6MDc6MTctMDY6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDI0OjAzOjA2VDA5OjA3OjE3LTA2OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YzQ1ZWZlYmEtODEwMS00ZWVkLWFmZDUtNjEzN2E3NDA3OGIxIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKFdpbmRvd3MpIgogICAgICBzdEV2dDp3aGVuPSIyMDI0LTAzLTA2VDA5OjA3OjE3Ii8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pp5J2kgAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfoAwYPBxF6pedLAAAAmklEQVRIx+2UwQ2EIBBFZ6aiLcFS7NQS1g60Cw9G3h5WE4IKEuSk/0behGHeJIi8eW6AD/AFOiaaKGfPrzToYGHNEHL3vxjcMd+iZ2ABzC9U1eABSIRvsbMGdpPqgnu4p4GTbLt5Daz2BFJ7gopLdpc2kTIVUWzpMtKmrEixFili9A79QcHo2euzlzNDAwzrZ9aGfJrj/M2D8gNCuGzBqP5ZogAAAABJRU5ErkJggg==) !important;
+}
+
+.html5_video_overlay .volume_icon {
+ cursor: pointer !important;
+ background-size: 20px !important;
+ background-repeat: no-repeat !important;
+ background-position: center !important;
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAwHpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBbEsMgCPznFD0CAho4jmnSmd6gxy8GzcSmO+PyWGdFYP+8X/BooCQgedFipaBDTIyqJ4qBenBCOTiKoaW5D6dA3mKPHKWWfn/002kQoXqWL0b67MI6CybdX3+MKAK3iVq+dSPrRkwhpG5Q41tYTJfrF9YdZ2gcaCQ6j32rF9/elv0dJto5MTozSwzA7Qhw9YQPLn4R2SJ3zjzMfCH/9jQAX+07WRumc7m7AAABhGlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw1AUhU9TtSKVDnYQEcxQneyiIo6likWwUNoKrTqYvPQPmjQkKS6OgmvBwZ/FqoOLs64OroIg+APi7OCk6CIl3pcUWsT44PI+znvncN99gNCsMtXsiQGqZhnpRFzM5VfFwCv86EOIakxipp7MLGbhub7u4eP7XZRned/7cw0qBZMBPpE4xnTDIt4gnt20dM77xGFWlhTic+JJgxokfuS67PIb55LDAs8MG9n0PHGYWCx1sdzFrGyoxDPEEUXVKF/Iuaxw3uKsVuus3Sd/YbCgrWS4TjWKBJaQRAoiZNRRQRUWorRrpJhI03ncwz/i+FPkkslVASPHAmpQITl+8D/4PVuzOD3lJgXjQO+LbX+MA4FdoNWw7e9j226dAP5n4Err+GtNYO6T9EZHixwBoW3g4rqjyXvA5Q4w/KRLhuRIfiqhWATez+ib8sDQLTCw5s6tfY7TByBLs1q+AQ4OgYkSZa97vLu/e27/3mnP7wdWCXKbbI2O3wAADXZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIgogICAgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIKICAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIKICAgIHhtbG5zOkdJTVA9Imh0dHA6Ly93d3cuZ2ltcC5vcmcveG1wLyIKICAgIHhtbG5zOnRpZmY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vdGlmZi8xLjAvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6OTQ1NzdjZDYtODVkMC00MzUyLWE2MTUtYWQzNWU5YzRjMjljIgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOmFhM2E2NzAzLTVhZGUtNGJmYS04Y2ZhLWUxYTliM2QzNDkwNCIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOmY3OTRjZjdlLTE0ZjUtNDFmNS1hYWQ5LTJlNTI1YmEyOWNmOCIKICAgZGM6Rm9ybWF0PSJpbWFnZS9wbmciCiAgIEdJTVA6QVBJPSIyLjAiCiAgIEdJTVA6UGxhdGZvcm09IldpbmRvd3MiCiAgIEdJTVA6VGltZVN0YW1wPSIxNzA5NzM3NjEwMzgxNTIxIgogICBHSU1QOlZlcnNpb249IjIuMTAuMzQiCiAgIHRpZmY6T3JpZW50YXRpb249IjEiCiAgIHhtcDpDcmVhdG9yVG9vbD0iR0lNUCAyLjEwIgogICB4bXA6TWV0YWRhdGFEYXRlPSIyMDI0OjAzOjA2VDA5OjA2OjUwLTA2OjAwIgogICB4bXA6TW9kaWZ5RGF0ZT0iMjAyNDowMzowNlQwOTowNjo1MC0wNjowMCI+CiAgIDx4bXBNTTpIaXN0b3J5PgogICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAgICBzdEV2dDpjaGFuZ2VkPSIvIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmM2MWVkYjYxLWE0MTEtNDg3Yi1hMDljLTliNzQ2OTUwZjA0NiIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2VudD0iR2ltcCAyLjEwIChXaW5kb3dzKSIKICAgICAgc3RFdnQ6d2hlbj0iMjAyNC0wMy0wNlQwOTowNjo1MCIvPgogICAgPC9yZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgPC9yZGY6RGVzY3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgCjw/eHBhY2tldCBlbmQ9InciPz7WjPwlAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH6AMGDwYywdmneAAAAOxJREFUSMftlUEVgzAQRBsUIAEJSEACEiqhEnAQCdQBEqiD1gE4gHtf+T0QSuCFUEg4tXPZFxJm2M3ucDr9cRSAEIiPFMjokQORD8JE/2IgBhpGxC7kF0XSGMpUDHu7RDRyAMxnukHk7kSuCwDZLJNqtVRauiNeiwIAhenSbQKrMJyN1DpS60rnDDx0bKpiq2LoIGC849b2RvAdxwBhenhTcRi22ibwMHGwrH0VQtSzUtVb2lTa2hSacNKmfcclW2dBrg8audoud1rFU1qsQjpZhUZ2BtKp2XWVRp56tutPVqUXu17I6rgfzu/gDZlEkDbWxt55AAAAAElFTkSuQmCC) !important;
+}
+
+.html5_video_overlay .volume_icon.muted {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAwXpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBtDsMgCP3vKXYEBFQ4jl27ZDfY8YeiTV1H4uPjkScQjs/7FR7NMHLgVCRrzmDGyorVAgG32jECd/RkcnGth5NAK5F58lTy6J/1eAq4qxali5A8B7GthPLQlx8hdEdtohbvQ0iHEKETcQhUXwuySrmusB2wmvgLDVjWsW95sevtyf4hxIMigSER+wDUHgeqFlDHbI1A2uNimGiuZAf5d6dp4Qvt4Vkf9Kaj8AAAAYRpQ0NQSUNDIHByb2ZpbGUAAHicfZE9SMNQFIVPU7UilQ52EBHMUJ3soiKOpYpFsFDaCq06mLz0D5o0JCkujoJrwcGfxaqDi7OuDq6CIPgD4uzgpOgiJd6XFFrE+ODyPs5753DffYDQrDLV7IkBqmYZ6URczOVXxcAr/OhDiGpMYqaezCxm4bm+7uHj+12UZ3nf+3MNKgWTAT6ROMZ0wyLeIJ7dtHTO+8RhVpYU4nPiSYMaJH7kuuzyG+eSwwLPDBvZ9DxxmFgsdbHcxaxsqMQzxBFF1ShfyLmscN7irFbrrN0nf2GwoK1kuE41igSWkEQKImTUUUEVFqK0a6SYSNN53MM/4vhT5JLJVQEjxwJqUCE5fvA/+D1bszg95SYF40Dvi21/jAOBXaDVsO3vY9tunQD+Z+BK6/hrTWDuk/RGR4scAaFt4OK6o8l7wOUOMPykS4bkSH4qoVgE3s/om/LA0C0wsObOrX2O0wcgS7NavgEODoGJEmWve7y7v3tu/95pz+8HVglym2yNjt8AAA12aVRYdFhNTDpjb20uYWRvYmUueG1wAAAAAAA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJYTVAgQ29yZSA0LjQuMC1FeGl2MiI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczpHSU1QPSJodHRwOi8vd3d3LmdpbXAub3JnL3htcC8iCiAgICB4bWxuczp0aWZmPSJodHRwOi8vbnMuYWRvYmUuY29tL3RpZmYvMS4wLyIKICAgIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIKICAgeG1wTU06RG9jdW1lbnRJRD0iZ2ltcDpkb2NpZDpnaW1wOjM2M2Q3NzkwLTA3YjItNDJmNi1iN2U0LTIyMmVjZDI1MGYyZSIKICAgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxNGE3NjA1NS1kOTRlLTQ3MWEtYmFjMy1lM2IwNWU3NDUyNTgiCiAgIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpjODY0MjY1Yi05ZDYxLTRlNDctYmE1Ny02NThhNjJiNzNlZGMiCiAgIGRjOkZvcm1hdD0iaW1hZ2UvcG5nIgogICBHSU1QOkFQST0iMi4wIgogICBHSU1QOlBsYXRmb3JtPSJXaW5kb3dzIgogICBHSU1QOlRpbWVTdGFtcD0iMTcwOTczNzY3Mzk4NzA1MCIKICAgR0lNUDpWZXJzaW9uPSIyLjEwLjM0IgogICB0aWZmOk9yaWVudGF0aW9uPSIxIgogICB4bXA6Q3JlYXRvclRvb2w9IkdJTVAgMi4xMCIKICAgeG1wOk1ldGFkYXRhRGF0ZT0iMjAyNDowMzowNlQwOTowNzo1My0wNjowMCIKICAgeG1wOk1vZGlmeURhdGU9IjIwMjQ6MDM6MDZUMDk6MDc6NTMtMDY6MDAiPgogICA8eG1wTU06SGlzdG9yeT4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkKICAgICAgc3RFdnQ6YWN0aW9uPSJzYXZlZCIKICAgICAgc3RFdnQ6Y2hhbmdlZD0iLyIKICAgICAgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDpiNzgzNzc2YS1hOGFjLTRmOWMtOTFhMi05NjRkNjk5NzMyZjQiCiAgICAgIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkdpbXAgMi4xMCAoV2luZG93cykiCiAgICAgIHN0RXZ0OndoZW49IjIwMjQtMDMtMDZUMDk6MDc6NTMiLz4KICAgIDwvcmRmOlNlcT4KICAgPC94bXBNTTpIaXN0b3J5PgogIDwvcmRmOkRlc2NyaXB0aW9uPgogPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+Cv/O/gAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB+gDBg8HNUamA5oAAAE9SURBVEjH7ZXLrYMwEEVTAiWkBEpwCSmBEiiBDighJVACJVACJXgTKRJhOG+BHQbziYlEVs8bLMv2mTt3GF8u/yN2AAWQxe9vEyCNvTxhGvmBgADuwDXiwMsAMKxDAAPdO2I6UsCODOERo+YNCZTQk41wsSvKK7ffEgdBQSRX6zXAxhkHGZooT148zSg8UAK1nwsUMyUytC6qdC/6SqXIA7Y8Aajmpgsg9z2AvnQ2DyF+g3UVZOHq9rW7AF9IfXA7gHQsPPFgVer2IyDUMKiVjgWkCM7HAvpJzlKNhqT+64JqdgDSLATIhiNLTwoXT3WkP5UTTHyqjEpbvlKB5mgTLHXYKh3WYTSk+LbTlqGBtCQDNP2BBvkJkgE3bS7QHu3C0UOgdL7Xp0GmEn0a9a/cznoRjQT96SxQ8tO3/g8dcL/OL8vYDgAAAABJRU5ErkJggg==) !important;
+}
+
+.html5_video_overlay .volume_slider {
+ background: transparent !important;
+ position: relative !important;
+}
+
+.html5_video_overlay .volume_slider::before {
+ content: "" !important;
+ width: 80px !important;
+ height: 5px !important;
+ position: absolute !important;
+ top: 50% !important;
+ border-radius: var(--border1) !important;
+ background: var(--darkgrey) !important;
+ transform: translateY(-40%) !important;
+}
+
+.html5_video_overlay .volume_slider .volume_handle {
+ background: var(--white) !important;
+ height: 15px !important;
+ top: 50% !important;
+ border-radius: var(--border1) !important;
+ transform: translateY(-50%) !important;
+ cursor: pointer !important;
+}
+
+.html5_video_overlay .autoplay_checkbox {
+ height: 19px !important;
+ width: 19px !important;
+ margin: 0 4px 0 15px !important;
+ background-size: contain !important;
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAwnpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVDbDcMwCPz3FB0Bc8SBcZw2lbpBxy8OdhS3RfLxOHQG0v5+PdOtGWdJsqxarBRyExPj6oFSWD0wkxwYyeDyXE8nwV6Ce0SqpfePej4FwlWPlouQ3juxzYRJ19cvIQ6HNlGLH13IuhA4iNwFaqxFxXS9rrDtNJvGSw1E57F/8tWv91j8HzDvyCBHQGIAtCcJ1QMcWLyRYB4z1FEwVvWD/LvTsPQB7pVZI2X5VN0AAAGEaUNDUElDQyBwcm9maWxlAAB4nH2RPUjDQBzFX1O1opUOdhDpkKE62UVFHKWKRbBQ2gqtOphc+gVNGpIUF0fBteDgx2LVwcVZVwdXQRD8AHF2cFJ0kRL/lxRaxHhw3I939x537wChWWWq2TMHqJplpBNxMZdfFQOv8KMPIUQwKDFTT2YWs/AcX/fw8fUuxrO8z/05hpSCyQCfSDzHdMMi3iCe2bR0zvvEYVaWFOJz4gmDLkj8yHXZ5TfOJYcFnhk2sul54jCxWOpiuYtZ2VCJp4mjiqpRvpBzWeG8xVmt1ln7nvyFwYK2kuE6zQgSWEISKYiQUUcFVViI0aqRYiJN+3EP/6jjT5FLJlcFjBwLqEGF5PjB/+B3t2ZxatJNCsaB3hfb/hgDArtAq2Hb38e23ToB/M/Aldbx15rA7CfpjY4WPQJC28DFdUeT94DLHWDkSZcMyZH8NIViEXg/o2/KA8O3wMCa21t7H6cPQJa6Wr4BDg6B8RJlr3u8u7+7t3/PtPv7AVsvcp2dmtQCAAANdmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAtRXhpdjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6R0lNUD0iaHR0cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgIHhtcE1NOkRvY3VtZW50SUQ9ImdpbXA6ZG9jaWQ6Z2ltcDo5ZmVlMTE2ZS01MTk5LTQ2NGItYTFmOC0zOTkyNTEwNjliMjYiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6M2Y2Y2I0YTAtYzYyMC00OWE4LTkyOTktOWZmMTQzMjFkM2EwIgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6ZWQzNDcxNGEtYjVmYi00NjQ1LTg5ZjYtNmRlN2U5MGY4MmI2IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iV2luZG93cyIKICAgR0lNUDpUaW1lU3RhbXA9IjE3MDk3Mzg5MjUwNjk3OTAiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQ6MDM6MDZUMDk6Mjg6NDUtMDY6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDI0OjAzOjA2VDA5OjI4OjQ1LTA2OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YWM5ZjE1ZGUtZmUzZi00NmE2LWE1Y2EtYmMzOGRjZGRlMGUwIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKFdpbmRvd3MpIgogICAgICBzdEV2dDp3aGVuPSIyMDI0LTAzLTA2VDA5OjI4OjQ1Ii8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PgHH7o0AAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfoAwYPHC38/FBWAAAAjElEQVRIx+2V2w0CIRBFr2QLsQRL2FYsyYqwA+3ALWR3zv7oBxJQAsTEcH8mJDBnXhmkoRIBJ+AGwAaB/U4emNOAFU+9HrkMAKioQPTexdesadlDAAlmM8Ch/eC49i6tN8D1BmgAfg2w3gD3bz2Y3s6LpGPRRrUozHsug/MT8tp8n5sZerhKuoyvu0g7pmqseXpt46sAAAAASUVORK5CYII=) !important;
+}
+
+.html5_video_overlay .autoplay_checkbox:hover {
+ border: none !important;
+ cursor: pointer !important;
+ margin: 0 4px 0 15px !important;
+}
+
+.html5_video_overlay .autoplay_checkbox.checked {
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAwnpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVBbDsMgDPvnFDsCxCFNjkO3TtoNdvyFhlZlmyWch5EJSdv79Uy3DiqcuC4qJpIdbGzUPNEcaDuXzDtHcWhl7qdTIG/BI6JUGfePfjkNIjTP6sVI70NYZ8F4+OuXEUVAn6jnj2FkwwgUQhkGLb6VxXS5fmHd8gyNkzqxzmP/1Itv71H9HRBtKMjOAMcA6IcTmifYWfxihnlOUOcKGWa+kH97OpA+7udZJaosWBoAAAGEaUNDUElDQyBwcm9maWxlAAB4nH2RPUjDQBzFX1O1opUOdhDpkKE62UVFHKWKRbBQ2gqtOphc+gVNGpIUF0fBteDgx2LVwcVZVwdXQRD8AHF2cFJ0kRL/lxRaxHhw3I939x537wChWWWq2TMHqJplpBNxMZdfFQOv8KMPIUQwKDFTT2YWs/AcX/fw8fUuxrO8z/05hpSCyQCfSDzHdMMi3iCe2bR0zvvEYVaWFOJz4gmDLkj8yHXZ5TfOJYcFnhk2sul54jCxWOpiuYtZ2VCJp4mjiqpRvpBzWeG8xVmt1ln7nvyFwYK2kuE6zQgSWEISKYiQUUcFVViI0aqRYiJN+3EP/6jjT5FLJlcFjBwLqEGF5PjB/+B3t2ZxatJNCsaB3hfb/hgDArtAq2Hb38e23ToB/M/Aldbx15rA7CfpjY4WPQJC28DFdUeT94DLHWDkSZcMyZH8NIViEXg/o2/KA8O3wMCa21t7H6cPQJa6Wr4BDg6B8RJlr3u8u7+7t3/PtPv7AVsvcp2dmtQCAAANdmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAtRXhpdjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6R0lNUD0iaHR0cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgIHhtcE1NOkRvY3VtZW50SUQ9ImdpbXA6ZG9jaWQ6Z2ltcDpjZDVhZWEwNy1lMWZlLTQ2YTItOTIyYi1hMmQ5YTc2NzNiZjEiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YTM3MWQ2OWYtZWNhOC00ZjhiLTk1NzgtMmIyNjQ3NTBmMzMyIgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6N2YxMTZjNDgtMGFkMC00M2U5LWE3YWQtMDI3MjMwZWZhYzZjIgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iV2luZG93cyIKICAgR0lNUDpUaW1lU3RhbXA9IjE3MDk3Mzg5MzYxNDc0NjgiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQ6MDM6MDZUMDk6Mjg6NTYtMDY6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDI0OjAzOjA2VDA5OjI4OjU2LTA2OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6ZWVmNjFkODEtM2VjMi00M2QyLWFkYmYtMDYzNzZjZDY3NmUxIgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKFdpbmRvd3MpIgogICAgICBzdEV2dDp3aGVuPSIyMDI0LTAzLTA2VDA5OjI4OjU2Ii8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PiC0mbkAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfoAwYPHDiRIbS9AAAA+0lEQVRIx+2VTRHCMBSElwwCkIAEJCAFHGAFBUhAQnFQHFAHvXBiyPu4BKY/SWko3NhDZ5Lp2933k0T6IwdcWWGUDMC6G761KoB1WgAKz2RckgJP8o8rEIl3ycWX0Oa01+dHAk4Cl1OSDXDMqqGN7AE3dqHkNbCUpOeIvWmSMcLILoxoDWyGmpycAmBhUAKHKDnUtwb5qCmMCNThaBVDzkdn4MPBbASsQo0BLt4AfM/5awhzMoiLWNR5U8ByBRoiBfc0eXYPfnJVfAWdKe8LMOnCl9ystTPv/FFppmW/TBbMuW58DOehDLYmVf1UnKQ4ecuJ10nS/v90Z+EB4ybFUD8Ke+gAAAAASUVORK5CYII=) !important;
+}
+
+.html5_video_overlay .fullscreen_button,
+.html5_video_overlay .fullscreen_button:hover {
+ cursor: pointer !important;
+ background-size: 20px !important;
+ background-repeat: no-repeat !important;
+ background-position: 40% 50% !important;
+ background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAwXpUWHRSYXcgcHJvZmlsZSB0eXBlIGV4aWYAAHjabVDbDcMwCPz3FB2BVxwYx2lSqRt0/GJjR3FTJB+PQ2cgHZ/3Kz2qEUqSZdVsOYObmBgVDxTCSkMEaRjJ4HCup5MgL7F7jlRz7x91PAXCFY+Wi5A+O7HNhEnX1x8hCsd1ohrvXci6EFMQ2AVKrAXZdL2usB0wm8ZLFUTnsW/56tfbF/+HiQ5GBkdmiQG4PklcPOCG2RuBrcXoSDxW9YP8u9Ow9AXsn1kYSTE5igAAAYVpQ0NQSUNDIHByb2ZpbGUAAHicfZE9SMNQFIVPU7WilQ52EHHIUJ3soiKOpYpFsFDaCq06mLz0D5o0JCkujoJrwcGfxaqDi7OuDq6CIPgD4uzgpOgiJd6XFFrEeOHxPs675/DefYDQrDLV7IkBqmYZ6URczOVXxcAr/OhDCD4MSszUk5nFLDzr6576qO6iPMu7788aUgomA3wicYzphkW8QTy7aemc94nDrCwpxOfEkwZdkPiR67LLb5xLDgs8M2xk0/PEYWKx1MVyF7OyoRLPEEcUVaN8IeeywnmLs1qts/Y9+QuDBW0lw3VaY0hgCUmkIEJGHRVUYSFKu0aKiTSdxz38o44/RS6ZXBUwciygBhWS4wf/g9+zNYvTU25SMA70vtj2xzgQ2AVaDdv+Prbt1gngfwautI6/1gTmPklvdLTIERDaBi6uO5q8B1zuACNPumRIjuSnJRSLwPsZfVMeGL4FBtbcubXPcfoAZGlWyzfAwSEwUaLsdY9393fP7d+e9vx+ABfKcoLclq9WAAANdmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iWE1QIENvcmUgNC40LjAtRXhpdjIiPgogPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4KICA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIgogICAgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iCiAgICB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICAgeG1sbnM6R0lNUD0iaHR0cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6dGlmZj0iaHR0cDovL25zLmFkb2JlLmNvbS90aWZmLzEuMC8iCiAgICB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iCiAgIHhtcE1NOkRvY3VtZW50SUQ9ImdpbXA6ZG9jaWQ6Z2ltcDowM2U3NDNlMi1hZjUxLTQ1ZTctYTRhNC05NzUyNDNlNTZhODgiCiAgIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Y2Q0ZjY0MTYtZTJiZS00NmMyLTg0MWQtMWIwODYzYjQ5ZTI0IgogICB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6MjdhZmI3YmQtMDRiMS00YzRiLWFlOTktYzI1OTVlMjA2OGE2IgogICBkYzpGb3JtYXQ9ImltYWdlL3BuZyIKICAgR0lNUDpBUEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iV2luZG93cyIKICAgR0lNUDpUaW1lU3RhbXA9IjE3MDk3MzcyODU0ODE4ODYiCiAgIEdJTVA6VmVyc2lvbj0iMi4xMC4zNCIKICAgdGlmZjpPcmllbnRhdGlvbj0iMSIKICAgeG1wOkNyZWF0b3JUb29sPSJHSU1QIDIuMTAiCiAgIHhtcDpNZXRhZGF0YURhdGU9IjIwMjQ6MDM6MDZUMDk6MDE6MjUtMDY6MDAiCiAgIHhtcDpNb2RpZnlEYXRlPSIyMDI0OjAzOjA2VDA5OjAxOjI1LTA2OjAwIj4KICAgPHhtcE1NOkhpc3Rvcnk+CiAgICA8cmRmOlNlcT4KICAgICA8cmRmOmxpCiAgICAgIHN0RXZ0OmFjdGlvbj0ic2F2ZWQiCiAgICAgIHN0RXZ0OmNoYW5nZWQ9Ii8iCiAgICAgIHN0RXZ0Omluc3RhbmNlSUQ9InhtcC5paWQ6YWFiODVjMjEtOTJlNy00NDBhLThmMTUtYjkyM2ZhYjUxZDg3IgogICAgICBzdEV2dDpzb2Z0d2FyZUFnZW50PSJHaW1wIDIuMTAgKFdpbmRvd3MpIgogICAgICBzdEV2dDp3aGVuPSIyMDI0LTAzLTA2VDA5OjAxOjI1Ii8+CiAgICA8L3JkZjpTZXE+CiAgIDwveG1wTU06SGlzdG9yeT4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/PoeVoKQAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfoAwYPARkiJMj/AAABqUlEQVRIx92VwXHjMAxFoWwKYAkqQSW4A7sEl+AS3IFLSAlJKnAJTAdMB9zDzmjGEvj2QMiRHEq2ctvFSUNi8D8+8SGRfz2qpUvAiUgjIlsR2YhIbVefIvKhou/P1fPbj5Dh0kB6ZRyJUnigXlmcQ0LjtUDHEdgADVADO4UjENAr0OHh4iN2J5NpKf80JOs9EGMXjdRuRcebEalmKfFMUoDT2jfr1DpJhGJCDztjEOZksQ5nJVPwNgf74exp+Pglsk35862qqt+l4iJyFsHPgTyJvFeIiOi2xM4zo30Lda8E+vySc11iKijEEsAwcpOZpqWGFMwGPoHPaSlAdNMa0RnJIkBMKHEEALE2toOhHAH31a0GCG7s/GGUliTaDGceXMrnE92tkIcUWuIXoe46rqE0AS8lR1qxb3oHcNDW302aAF5nxlTL6A9EBuTMkkkB3/dw+YHRyLuJWzlLRrpv+eKqSBGI4zd8aNk9IMvJCqNwXLVRzfZe6Y60mRngurzcDqPJi1w43Nu8tyDNqMA0dPrD+bNCzhLQvu95yYZTTI5gE7O/dfP/F38B6gTHZAGY2yYAAAAASUVORK5CYII=) !important;
+}
+
+.html5_video_overlay .control_container {
+ margin: 1px 0 0 21px !important;
+ height: 21px !important;
+ background: transparent !important;
+}
+
+.html5_video_overlay .progress_bar_container {
+ top: 0 !important;
+ left: 0 !important;
+ right: 0 !important;
+ bottom: 0 !important;
+}
+
+.html5_video_overlay .progress_bar_background {
+ background-color: #1a9fff0f !important;
+}
+
+.html5_video_overlay .progress_bar {
+ background-color: var(--brightblue) !important;
+}
+
+.html5_video_overlay .progress_bar_wrapper {
+ background: var(--darkgrey) !important;
+ border-radius: var(--border1) !important;
+ overflow: hidden !important;
+ margin: 5px 4px 2px;
+}
+
+.html5_video_titlebar_ctn {
+ background: #2e2e2fb0 !important;
+ border-bottom-right-radius: var(--border1) !important;
+ backdrop-filter: blur(3px) !important;
+}
+
+::selection {
+ background: var(--blue) !important;
+ color: var(--color-darkest) !important;
+}
+
+a,
+.store_header_btn_gray a,
+a.pulldown_desktop,
+.store_nav .tab > span,
+body.v6 h2,
+.content_hub_carousel_ctn .title,
+.store_main_capsule,
+.discount_block.no_discount .discount_final_price,
+.big_button,
+.home_tab.active .tab_content,
+.home_content.single h1 {
+ color: var(--white) !important;
+}
+
+body.v6,
+.tab_item_name,
+.store_capsule .title {
+ color: var(--darkwhite) !important;
+}
+
+body.v6 h2 .header_inline,
+.home_content.single,
+.home_page_content .more_content_desc {
+ color: var(--darkerwhite) !important;
+}
+
+a:hover,
+body.v6 .store_nav .popup_menu_subheader,
+body.v6 .deep_dive_tag,
+.home_page_content .more_content_title,
+body.v6 h2 a,
+.LoadingWrapper .LoadingText {
+ color: var(--blu) !important;
+}
+
+.LoadingWrapper .LoadingThrobber .Bar {
+ background-color: var(--blu) !important;
+}
+
+.home_tab .tab_content,
+.new_items_num,
+.new_items_text {
+ color: var(--blue) !important;
+}
+
+.spotlight_block .spotlight_content > h2,
+.spotlight_body {
+ color: var(--blue-er) !important;
+}
+
+/* Guides page */
+.searchTextContainer {
+ background-image: none !important;
+ padding: 0 0 12px 0;
+}
+
+.guide_home_category_selection {
+ background: var(--darkergrey) !important;
+}
+
+.guide_home_category_name,
+.guide_home_category_count {
+ padding: 5px 0 0 65px;
+}
+
+.apphub_ContentGuides .workshopItemCollection {
+ background-color: var(--darkergrey) !important;
+}
+
+.workshopItemAuthorLine,
+.workshopItemShortDesc,
+.workshopItemAuthorName {
+ color: var(--darkerwhite) !important;
+}
+
+.workshopItemAuthorName {
+ font-weight: 600;
+}
+
+.browseOptionImage {
+ transform: translateY(2px);
+}
+
+/* Points shop */
+
+._3M7bfuSoa6JGmxA1QmgvE-,
+._3uAuM7D5wUQg-5M21NGJc5 {
+ background: var(--darkergrey) !important;
+}
+
+._1B_k-wp3lqSLARvY8-5-EX {
+ background: var(--bedarkgrey) !important;
+}
+
+.beNH0vEoCPTCIbODMRb2A._1D-8s79QAmUBhHzL8NO5Xx {
+ backdrop-filter: blur(20px);
+}
+
+.skI5tVFxF4zkY8z56LALc .CcuoOiSs23_Y___I-1Myh {
+ background: var(--bedarkgrey) !important;
+}
+
+._2c38-cNCRIFm4I1wCCJ2ac,
+._2tQyoFl0ilITEK586SpZlQ {
+ background: var(--color-dark) !important;
+ color: var(--darkerwhite);
+}
+
+/* Workshop Page */
+.current_player_workshop_title a {
+ padding-left: 60px !important;
+}
+
+.joinGroupTitle {
+ margin-left: 15px !important;
+}
+
+.workshopItemSubscription {
+ background: var(--bedarkgrey) !important;
+}
+
+.backgroundImg {
+ display: none;
+}
+
+/* Family Settings Page */
+._2LyGIHuQ8SFKb5T262YUvg,
+.O_QQdR2Hi2oq9k3mKRAQl,
+._3VYLj7Kf9u3FCG4cI1gnM7,
+._1JFlDaoGEUJH6J-nks7h-3 {
+ background: none !important;
+}
+
+.btnv6_white_transparent,
+.btnv6_white_transparent:hover {
+ background: transparent !important;
+}
+
+html:not(.rn_mobile_app) body.v7menu:not(.menu_background_overlap):not(.sale_page_background) .responsive_page_template_content {
+ padding-top: 0 !important;
+}
+
+._19o1GB7ysfrWKLYpqZ6aXu,
+.PlaceholderInner {
+ display: none;
+ height: 0px !important;
+}
+
+html.client ._16jZ3HEbtaJTl80pQINN2Y,
+._2GxMhpm7OC2WWXN_wjgA78 {
+ border: none !important;
+ background: var(--darkgrey) !important;
+}
+
+._2tlUAG6WNyYFlk9caIiLj5:focus-visible,
+._2AD2O_FEWy7izR8sZZjjI6 ._2tlUAG6WNyYFlk9caIiLj5 {
+ border: transparent !important;
+ border-radius: var(--border0) !important;
+}
+
+._2tlUAG6WNyYFlk9caIiLj5:focus-visible {
+ background: var(--lightgrey) !important;
+}
+
+._2tlUAG6WNyYFlk9caIiLj5 {
+ background: var(--grey) !important;
+}
blob - /dev/null
blob + 240bf2b4c325e5ea03889922c9b2838bae84849b (mode 644)
--- /dev/null
+++ slskd/podman-compose.yml
+services:
+ slskd:
+ image: docker.io/slskd/slskd:latest
+ container_name: slskd
+ dns:
+ - 1.1.1.1
+ ports:
+ - "127.0.0.1:5030:5030"
+ - "127.0.0.1:5031:5031"
+ - "50300:50300"
+ environment:
+ - SLSKD_REMOTE_CONFIGURATION=true
+ volumes:
+ - /home/rohan/slskd/app:/app
+ - /home/rohan/music/completed:/music/completed
+ - /home/rohan/music/incompleted:/music/incompleted
+ restart: unless-stopped
blob - /dev/null
blob + 8ef9f30282c8e1279f42f9664951987e37443285 (mode 644)
Binary files /dev/null and wallpapers/657974226_18431769061186683_1175419097157413431_n.jpg differ
blob - /dev/null
blob + e090c9c5b4a450a529bcd50f785649f8a0d0ef41 (mode 644)
Binary files /dev/null and wallpapers/Bmw-E30-Wallpapers-HD-For-Desktop.jpg differ
blob - /dev/null
blob + 10ca43b93d4859e432ea1ad28039c3908e6633d2 (mode 644)
Binary files /dev/null and wallpapers/aurora-borealis-night-forest-scenery-389@0@h.jpg differ
blob - /dev/null
blob + 9e732758fba19985b13bf4a7d6601da3ba000fd4 (mode 644)
Binary files /dev/null and wallpapers/os-x-leopard-stock-5120x3200-24053.jpg differ
blob - /dev/null
blob + 19e791d87449a14de272be372c28b44e010eff53 (mode 644)
Binary files /dev/null and wallpapers/photo-1463171515643-952cee54d42a.avif differ
blob - /dev/null
blob + fa8da7cf061466174a29e55f7afcd3debc23e1c9 (mode 644)
Binary files /dev/null and wallpapers/photo-1552394459-917cbbffbc84.avif differ
blob - /dev/null
blob + 69d74167075dfb03ad9864258ea76399c9c1f9bc (mode 644)
Binary files /dev/null and wallpapers/wallpaper2.png differ
blob - /dev/null
blob + 50070306e12d1f18b5631fd4f6f211443e2efabd (mode 644)
Binary files /dev/null and wallpapers/yw1v28fqmoj21.png differ