/* ----------------------------------------------------------------- Transitions -- */
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.25s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.slidein-enter-active, .slidein-leave-active {
  transition: 1s;
  bottom: 10em;
}

.slidein-enter, .slidein-leave-to {
  bottom: 0em;
}

.fadeout-leave-active {
  transition: opacity 0.5s;
}

.fadeout-leave-to {
  opacity: 0;
}

.fadeout-enter-active {
  transition: opacity 0s;
}

.fadeout-enter {
  opacity: 1;
}

.fadeScale-enter-active,
.fadeScale-leave-active {
  transform: translate(-50%, 0) scale(1.5) !important;
}

.fadeScale-enter-from,
.fadeScale-leave-to {
  opacity: 0;
}

/* .fadeScale-leave {
 transform: translate(-50%, 0) scale(1.5);
} */
/* always present */
.expand-transition {
  transition: all 0.3s ease;
  height: 30px;
  padding: 10px;
  background-color: #eee;
  overflow: hidden;
}

/* .expand-enter defines the starting state for entering */
/* .expand-leave defines the ending state for leaving */
.expand-enter, .expand-leave {
  height: 0;
  padding: 0 10px;
  opacity: 0;
}

.bounce-enter-active {
  animation: bounce-in 0.25s;
}

.bounce-leave-active {
  animation: bounce-in 0.25s reverse;
}

.egg-store-sale-notify button {
  animation: balloon 1.9s ease-in-out infinite;
}

@keyframes balloon {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce-in {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
.wiggle_l {
  animation: wiggle_left 1s infinite linear;
  -moz-animation: wiggle_left 1s infinite linear; /* Firefox */
  -webkit-animation: wiggle_left 1s infinite linear; /* Safari and Chrome */
}

.wiggle_r {
  animation: wiggle_right 1s infinite linear;
  -moz-animation: wiggle_right 1s infinite linear; /* Firefox */
  -webkit-animation: wiggle_right 1s infinite linear; /* Safari and Chrome */
}

@keyframes wiggle_left {
  0% {
    margin-left: -5px;
  }
  50% {
    margin-left: -10px;
  }
  100% {
    margin-left: -5px;
  }
}
@-moz-keyframes wiggle_left {
  0% {
    margin-left: -5px;
  }
  50% {
    margin-left: -10px;
  }
  100% {
    margin-left: -5px;
  }
}
@-webkit-keyframes wiggle_left {
  0% {
    margin-left: -5px;
  }
  50% {
    margin-left: -10px;
  }
  100% {
    margin-left: -5px;
  }
}
@keyframes wiggle_right {
  0% {
    margin-left: -7px;
  }
  50% {
    margin-left: -2px;
  }
  100% {
    margin-left: -7px;
  }
}
@-moz-keyframes wiggle_right {
  0% {
    margin-left: -7px;
  }
  50% {
    margin-left: -2px;
  }
  100% {
    margin-left: -7px;
  }
}
@-webkit-keyframes wiggle_right {
  0% {
    margin-left: -7px;
  }
  50% {
    margin-left: -2px;
  }
  100% {
    margin-left: -7px;
  }
}
.blink {
  animation: blinker 1s ease-out infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/* ------------------------------------------------------------------------------------------ Pop Visible --*/
@-webkit-keyframes popVisible {
  0% {
    transform: scale(0);
  }
  2% {
    transform: scale(1.1);
  }
  3% {
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  41% {
    transform: scale(1.1);
  }
  43% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes popVisible {
  0% {
    transform: scale(0);
  }
  2% {
    transform: scale(1.1);
  }
  3% {
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  41% {
    transform: scale(1.1);
  }
  43% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
/* ------------------------------------------------------------------------------------------ Spin --*/
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spinner {
  animation: spin 2.75s linear infinite;
}

.pure-wiggle {
  animation: wiggle 3000ms ease-in-out infinite alternate;
  -moz-animation: wiggle 3000ms ease-in-out infinite alternate;
  -webkit-animation: wiggle 3000ms ease-in-out infinite alternate;
}

.pure-wiggle:hover {
  animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
}

@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: rotate(1deg);
  }
  25% {
    -webkit-transform: rotate(-1deg);
  }
  50% {
    -webkit-transform: rotate(1deg);
  }
  75% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes wiggle {
  0% {
    -webkit-transform: rotate(1deg);
  }
  25% {
    -webkit-transform: rotate(-1deg);
  }
  50% {
    -webkit-transform: rotate(1deg);
  }
  75% {
    -webkit-transform: rotate(-1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(1deg);
  }
  25% {
    transform: rotate(-1deg);
  }
  50% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
/* ----------------------------------------------------------------- Range Slider -- */
input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 14em; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;
  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}

/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 0.25em solid var(--ss-white);
  height: 1em;
  width: 1em;
  border-radius: 1em;
  background: var(--ss-yolk);
  cursor: pointer;
  margin-top: -0.35em; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  border: 0.25em solid var(--ss-white);
  height: 1em;
  width: 1em;
  border-radius: 1em;
  background: var(--ss-yolk);
  cursor: pointer;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.2em;
  cursor: pointer;
  background: var(--ss-white);
  border-radius: 1em;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 0.2em;
  cursor: pointer;
  background: var(--ss-white);
  border-radius: 1em;
}

input[type=range]:disabled::-webkit-slider-thumb {
  border-color: var(--ss-blue3);
  background: var(--ss-blue3);
}

input[type=range]:disabled::-moz-range-thumb {
  border-color: var(--ss-blue3);
}

input[type=range]:disabled::-webkit-slider-runnable-track {
  background: var(--ss-blue3);
}

input[type=range]:disabled::-moz-range-track {
  background: var(--ss-blue3);
}

.ss_slider {
  margin-bottom: 0.5em;
}

.ss_slider.label {
  width: 3em;
  color: var(--ss-white);
}

/* ----------------------------------------------------------------- CheckBoxes -- */
/* Customize the label (the container) */
.ss_checkbox {
  display: block !important;
  position: relative;
  padding-left: 2.3em;
  padding-top: 0;
  margin: 0.4em 0em 0.7em 0em;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ss_checkbox.label {
  padding-left: 2.75em;
  text-align: left;
  white-space: normal;
}

/* Hide the browser's default checkbox */
.ss_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.9em;
  width: 1.9em;
  background-color: var(--ss-white);
  border-radius: var(--ss-space-md);
}

/* On mouse-over, add a grey background color */
.ss_checkbox:hover input ~ .checkmark {
  background-color: var(--ss-blue0);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.ss_checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.ss_checkbox .checkmark:after {
  left: 0.55em;
  top: 0.2em;
  width: 0.4em;
  height: 1em;
  border: solid var(--ss-blue4);
  border-width: 0 0.4em 0.4em 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ss_checkbox input[type=checkbox][disabled] ~ .checkmark {
  background-color: var(--ss-blue3);
}

/* ----------------------------------------------------------------- Radio Buttons -- */
[type=radio]:checked,
[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type=radio]:checked + label,
[type=radio]:not(:checked) + label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  color: var(--ss-white);
}

[type=radio]:checked + label:before,
[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: 1em;
  border: 0.1em solid var(--ss-white);
  border-radius: 100%;
  background: var(--ss-white);
}

[type=radio]:checked + label:after,
[type=radio]:not(:checked) + label:after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background: var(--ss-yolk);
  position: absolute;
  top: 0.24em;
  left: 0.2em;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

[type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* ----------------------------------------------------------------- Fields -- */
input:focus, textarea:focus {
  outline: none;
}

.ss_keybind {
  border-radius: var(--ss-space-md);
  border: none;
  margin: 0 0 var(--ss-space-sm) 0;
  padding: var(--ss-space-sm);
  color: var(--ss-blue4);
  background: var(--ss-white);
  font-weight: bold;
  width: 9em;
  text-align: center;
  text-transform: uppercase;
}

.ss_keybind:hover {
  background-color: var(--ss-blue0);
}

.ss_keybind:focus {
  color: var(--ss-blue2);
}

.ss_keybind_undefined {
  font-style: italic;
  color: var(--ss-red);
}

.ss_buttonbind_icon {
  height: 0.85em;
}

.label {
  display: inline;
  color: var(--ss-blue4);
  font-weight: bold;
  margin-left: var(--ss-space-md);
  font-size: 1em;
}

.ss_select {
  border-radius: var(--ss-space-sm);
  border: var(--ss-common-border-width) solid var(--ss-blue4);
  margin: 0 0 var(--ss-space-md) 0;
  padding: var(--ss-space-sm);
  box-shadow: inset 3px 3px 10px var(--ss-blue1), 0.1em 0.1em 3px var(--ss-blue3);
  background: var(--ss-white);
  color: var(--ss-blue3);
  font-weight: bold;
  min-height: 2.45em;
}

.ss_section {
  border-radius: var(--ss-space-sm);
  border: var(--ss-common-border-width) solid var(--ss-blue4);
  margin: 0 0 var(--ss-space-md) 0;
  padding: var(--ss-space-sm);
}

.ss_field, .firebaseui-input {
  border-radius: var(--ss-space-sm) !important;
  border: var(--ss-common-border-width) solid var(--ss-blue4) !important;
  margin: 0 0 var(--ss-space-md) 0 !important;
  padding: var(--ss-space-sm) var(--ss-space-md) !important;
  box-shadow: inset 0.3em 0.3em 0.03em rgba(11, 147, 189, 0.3) !important;
  background: var(--ss-white) !important;
  color: var(--ss-blue3) !important;
  font-weight: bold !important;
  min-height: 2.45em !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--ss-blue2);
}

::-moz-placeholder { /* Firefox 19+ */
  color: var(--ss-blue2);
}

:-ms-input-placeholder { /* IE 10+ */
  color: var(--ss-blue2);
}

:-moz-placeholder { /* Firefox 18- */
  color: var(--ss-blue2);
}

.fld_number {
  height: 2em;
  font-size: 1.4em;
  width: 3em;
  margin: 0 var(--ss-space-lg);
  text-align: center;
  font-weight: bold;
}

/* ----------------------------------------------------------------- Tabs -- */
.ss_tab {
  border-radius: var(--ss-space-sm);
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  background: var(--ss-blue3);
  color: var(--ss-white);
  text-align: center;
  font-weight: bold;
  line-height: 1em;
  padding: var(--ss-space-sm) var(--ss-space-lg);
  box-shadow: 0.1em 0.1em 3px var(--ss-blue4);
  margin: 0 0 var(--ss-space-md) 0;
  cursor: pointer;
  min-width: 10em;
}

.media-tabs-wrapper {
  overflow: hidden;
}

.media-tab-container {
  padding: 0 var(--ss-space-md);
  height: calc(var(--ss-space-lg) * 3);
  grid-template-columns: 2fr auto;
}

.media-tab-container h4 {
  margin: 0;
  line-height: 1;
}

.media-tabs-content {
  margin: 0 auto;
}

.ss_bigtab {
  height: 3em;
  text-transform: uppercase;
  color: var(--ss-blue5);
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  background: var(--ss-blue3);
  min-width: 8em;
  padding: var(--ss-space-micro);
  cursor: pointer;
  /* box-shadow: none !important; */
  box-shadow: var(--ss-box-shadow-1) !important;
}

.ss_bigtab img {
  height: 1.5em;
}

.ss_bigtab:hover {
  color: var(--ss-blue1);
}

.ss_bigtab:hover > img {
  opacity: 0.75;
}

.ss_bigtab.selected > img {
  opacity: 1;
  filter: drop-shadow(var(--ss-btn-common-txt-shadow));
}

.ss_bigtab > img {
  opacity: 0.5;
}

.ss_bigtab.selected {
  background: var(--ss-yolk);
  color: var(--ss-white);
  border-color: var(--ss-white);
  box-shadow: 0.05em 0.05em 0.3em var(--ss-blue4), inset -0.1em -0.1em 0.3em var(--ss-yolk2), inset 0.1em 0.1em 0.3em var(--ss-yolk0) !important;
}

.ss_bigtab_icon {
  pointer-events: none;
}

/* ----------------------------------------------------------------- Buttons -- */
#btn_horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: var(--ss-space-lg);
}

.ss_button {
  font-family: "Nunito", sans-serif;
  border-radius: var(--border-radius);
  border-width: var(--ss-common-border-width);
  border-style: solid;
  border-color: var(--ss-blue5);
  background: var(--ss-blue3);
  color: var(--ss-white);
  text-align: center;
  font-weight: 700;
  line-height: 1em;
  padding: var(--ss-space-sm) var(--ss-space-lg);
  box-shadow: 0.1em 0.1em 3px var(--ss-blue4);
  margin: 0 0 var(--ss-space-md) 0;
  cursor: pointer;
  /* white-space: nowrap; */
  text-shadow: var(--ss-btn-common-txt-shadow);
}

.ss_button:disabled:hover {
  cursor: not-allowed;
}

.ss_button:disabled {
  opacity: 0.5;
}

.ss_button_as_text {
  background: none;
  border: 0;
  font-family: "Nunito", sans-serif;
}

.ss_button_as_text:hover {
  cursor: pointer;
}

#btn_horizontal:not(.pause-popup--btn-group) .ss_button {
  margin: 0 var(--ss-space-md) 0 0;
}

#btn_horizontal:not(.pause-popup--btn-group) .ss_button:first-child {
  margin-left: var(--ss-space-md) !important;
}

.btn_green {
  background: var(--ss-green1);
  border-color: var(--ss-green2);
  text-shadow: 0.08em 0.08em 0.05em rgba(0, 0, 0, 0.6);
  letter-spacing: 0.05em;
}

.btn_red {
  background-color: var(--ss-red-btn-fill);
  border-color: var(--ss-red-btn-outline);
}

.btn_pink {
  background-color: var(--ss-pink);
  border-color: var(--ss-pink1);
}

.btn_blue {
  background-color: var(--ss-blue3);
  border-color: var(--ss-blue5);
}

.btn_gray {
  background-color: var(--ss-gray1);
  border-color: var(--ss-gray2);
}

.btn_blue_light, .btn-selected {
  background-color: var(--ss-blue7);
  border-color: var(--ss-blue5);
}

.btn_yolk {
  background: var(--ss-yolk);
  border-color: var(--ss-brown);
}

.btn_vip-button {
  background: var(--ss-vip-blue);
  border-color: var(--ss-blue5);
}

.btn_toggleoff {
  color: var(--ss-blue5) !important;
  text-shadow: none !important;
}

.btn_toggleoff:hover {
  color: var(--ss-blue1) !important;
}

.btn_toggleon {
  border-color: var(--ss-white) !important;
  color: var(--ss-white) !important;
  background: var(--ss-yolk) !important;
  text-shadow: var(--ss-btn-common-txt-shadow);
  box-shadow: 0.05em 0.05em 0.3em var(--ss-blue4), inset -0.1em -0.1em 0.3em var(--ss-yolk2), inset 0.1em 0.1em 0.3em var(--ss-yolk0) !important;
}

.btn_medium {
  font-size: 1.3em;
  padding: var(--ss-space-md) var(--ss-space-md);
  border-radius: 0.3em;
  font-family: "Sigmar One", Sans-Serif;
  font-weight: 100;
  min-width: 9em;
  text-transform: uppercase;
}

.btn_big {
  height: 1.8em;
  font-size: 2em;
  padding: 0 var(--ss-space-sm);
  border-radius: var(--ss-border-radius-sm);
  font-family: "Sigmar One", Sans-Serif;
  font-weight: 100;
  text-transform: uppercase;
  border-width: calc(var(--ss-common-border-width) / 2);
}

.btn_play_w_friends {
  line-height: 1;
}

.btn_game_mode {
  line-height: 1.3;
}

#play_game > .btn_game_mode {
  top: 20px;
}

.btn_game_mode h3, .btn_game_mode p {
  margin: 0 !important;
  padding-left: 0.55em;
}

.btn_game_mode h3 {
  font-size: 0.434em;
}

.btn_game_mode p {
  font-family: Nunito, sans-serif;
  font-size: 0.355em;
  font-weight: 700;
}

.btn_game_mode .open-close {
  right: var(--ss-space-md);
}

.btn_game_mode .open-close i {
  font-size: calc(var(--ss-space-lg) * 2);
  transition: transform 0.3s ease-in-out;
  color: var(--ss-blue5);
}

.btn_height_auto {
  height: auto;
}

.btn_sm {
  width: auto;
  font-size: 0.7em;
  text-shadow: var(--ss-btn-common-txt-shadow-blur);
  border-width: 0.24em;
  min-width: 7em;
}

.btn_md {
  min-width: 8em;
}

.btn_lg {
  min-width: 15em;
}

.btn_wfull {
  width: 100% !important;
}

.btn-media {
  font-size: 60%;
  min-width: auto;
}

.btn-twitch {
  background: var(--twitch-lt-purple);
  border-color: var(--ss-twitch);
}

.btn-twitch:hover {
  background: var(--ss-twitch);
  border-color: var(--twitch-lt-purple);
}

.twitch-btn-pink:hover {
  background: var(--twitch-dk-pink);
}

.twitch-btn-purple {
  background-color: var(--twitch-lt-purple);
  border: 0.15em solid var(--twitch-dk-purple);
}

.twitch-btn-purple:hover {
  background: var(--twitch-dk-purple);
}

.btn-account-w-icon,
.btn-account-status {
  height: calc(var(--ss-space-lg) * 3);
  padding: 0;
  margin: 0 0 0 calc(var(--ss-space-lg) / 3);
}

.btn-account-status.btn_vip svg {
  width: 2.4em;
  height: 2.4em;
  vertical-align: bottom;
  fill: var(--ss-white);
  filter: drop-shadow(var(--ss-btn-common-txt-shadow));
}

.btn-account-w-icon {
  width: calc(var(--ss-space-lg) * 3);
}

.btn-account-w-icon i {
  font-size: 1.3em;
}

.btn-fullscreen {
  width: 1.3em;
  height: 1.3em;
  fill: currentColor;
}

.btn-account-status {
  width: 11em;
}

.btn-purchase {
  font-size: 1.3em;
}

.btn_tutorial {
  max-width: 12em;
  margin-top: 0.6em;
}

.numberArrow {
  width: 1.5em;
  margin-bottom: -0.6em;
}

.ss_smtab {
  color: var(--ss-blue3);
  display: block;
  border: 0;
  background: var(--ss-blue2);
  cursor: pointer;
  width: calc(var(--ss-space-lg) * 1.7);
  height: calc(var(--ss-space-lg) * 1.7);
  display: grid;
  align-items: center;
}

.ss_smtab.selected, .ss_smtab:hover {
  background: var(--ss-white);
}

.btn_server {
  top: 4em;
  left: 0;
}

.ss_button_cg_user {
  background: var(--cg-brand-bg);
  border: 0;
  padding: 0 0.6em;
}

/* .media-tabs-content.front_panel.tab-news-active {
	height: 17.5em;	
} */
/* ----------------------------------------------------------------- Global -- */
:root {
  --select-border: #777;
  --select-focus: blue;
  --select-arrow: var(--select-border);
  --ss-transparent: #00000000;
  --ss-black: #000;
  --ss-adblocker-text: #003449;
  --ss-white: #FFFFFF;
  --ss-offwhite: #FFF3E4;
  --ss-yellow0:#F7FFC1;
  --ss-yellow: #FAF179;
  --ss-yolk0: #f1c59a;
  --ss-yolk: #F79520;
  --ss-yolk2: #d97611;
  --ss-red0: #e29092;
  --ss-red: #d15354;
  --ss-red2: #801919;
  --ss-egg-org: #EE2524;
  --ss-red-bright: #EF3C39;
  --ss-pink: #EC008C;
  --ss-pink1: #b9006e;
  --ss-pink-light: #ff3aaf;
  --ss-pink-dark: #a7098c;
  --ss-brown: #924e0c;
  --ss-blue00: #abe3f6;
  --ss-blue0: #c8edf8;
  --ss-blue1: #95E2FE;
  --ss-blue2: #5EBBD9;
  --ss-blue3: #0B93BD;
  --ss-blue4: #0E7697;
  --ss-blue5: #0C576F;
  --ss-blue6: #8dd3ea;
  --ss-blue7: #00c0ff;
  --ss-blue8: #1192BC;
  --ss-green0: #87ddbb;
  --ss-green1: #13BA65;
  --ss-green2: #046306;
  --ss-green-login: #13ba65;
  --ss-orange1: #F79520;
  --ss-vip-blue: #0E7FFF;
  --ss-vip-pink: #FF5AF5;
  --ss-vip-brown: #9F5600;
  --ss-vip-yellow: #FFFC00;
  --ss-vip-red: #EE2B2D;
  --ss-vip-purple: #40008F;
  --ss-premium-dark-green: #048726;
  --ss-vip-gold: linear-gradient(to right, #D1A943, #CFCDAF, #CC8630, #D1AA44, #CC8630);
  --ss-vip-store-bg: linear-gradient(to right bottom, #fffbee, #fff3ca, #ffeaa5, #ffe180, #ffd759, #f4c843, #eab82a, #dfa900, #c79200, #ae7d00, #966800, #7e5400);
  --ss-gold: #FED838;
  --ss-gray1: #999;
  --ss-gray2: #555;
  --ss-clear: rgba(255, 255, 255, 0);
  --ss-blue2clear: rgba(94, 186, 217, 0);
  --ss-blue2alpha7: rgba(94, 186, 217, .7);
  --ss-white-60: rgba(255,255,255,.6);
  --ss-white-90: rgba(255,255,255,.9);
  --ss-twitch: #6441a5;
  --twitch-color: #6441a5;
  --twitch-yellow: #FFFE61;
  --twitch-pink: #F00DC9;
  --twitch-dk-pink: #c00aa0;
  --twitch-lt-purple: #9146FF;
  --twitch-dk-purple: #40008F;
  --twitch-xtr-dk-purple: #1e0043;
  --cg-brand-80: #8668ff;
  --cg-brand-100: #6842ff;
  --cg-brand-120: #5335cc;
  --cg-brand-bg: rgba(33, 34, 51, 1);
  --egg-pack-small-bg: linear-gradient(146deg, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(0,249,255,1) 50%);
  --egg-pack-md-bg: linear-gradient(146deg, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(216,158,252,1) 50%);
  --egg-pack-lg-bg: linear-gradient(146deg, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(252,174,201,1) 50%);
  --ss-premium-gradient: linear-gradient(to right bottom, #f2f047, #d5ed40, #b7e93d, #97e53f, #71e044, #5ad744, #40cd44, #19c444, #14b43c, #0fa535, #0a962d, #048726);
  --bundle-color: #FF57DD;
  --bundle-text-color: #7A23C6;
  /* Redsign colors */
  --ss-orange: #F7941D;
  --ss-brown-2: #894B00;
  --ss-vip: #FFF000;
  --ss-red-btn-fill: #E81616;
  --ss-red-btn-outline: #881A1A;
  --ss-limited: #ffb3e8;
  --ss-limited-txt: #ff1bba;
  --ss-premium: #87ec4a;
  --ss-premium-txt: #204908;
  --ss-vip-txt: #676000;
  --ss-darkoverlay: rgba(0, 0, 0, 0.6);
  --ss-darkoverlay2: rgba(0, 0, 0, 0.2);
  --ss-lightoverlay: linear-gradient(#1c90b5, #50acca, var(--ss-blue00), var(--ss-blue00));
  --ss-lightbackground: linear-gradient(var(--ss-blue1), var(--ss-blue2) );
  --ss-popupbackground: linear-gradient(to bottom, #1192bc, #3ea2c7, #5bb2d2, #75c3de, #8dd3ea);
  --ss-blueblend1: linear-gradient(#349ec1, #5fbad8);
  --ss-scrollmask1: linear-gradient(var(--ss-blue2clear), var(--ss-blue00));
  --ss-scrollmask2: linear-gradient(rgba(56, 158, 192, 0), #389EC0);
  --ss-fieldbg: linear-gradient(#91CADB, #ffffff, #ffffff, #ffffff, #ffffff);
  --ss-nugSecs: 3600s;
  --ss-me-player-bg: rgba(247,149,32,.8);
  --ss-team-blue-light: rgb(0, 255, 255);
  --ss-team-blue-light-trans: rgb(0, 255, 255, 0.8);
  --ss-team-blue-dark: rgb(12, 87, 111);
  --ss-team-blue-dark-trans: rgb(12, 87, 111, 0.8);
  --ss-team-red-light: rgb(245, 62, 64);
  --ss-team-red-light-trans: rgb(245, 62, 64, 0.8);
  --ss-team-red-dark: rgb(133, 0, 0);
  --ss-team-red-dark-trans: rgb(133, 0, 0, 0.8);
  --ss-big-message-border-color: rgb(0, 0, 0);
  --ss-header-height: 10em;
  --ss-footer-height: 4em;
  --ss-main-width: 90em;
  --ss-min-width: 68em;
  --ss-space-xxxxl: calc(var(--ss-space-lg)*4);
  --ss-space-xxl: 2.3em;
  --ss-space-xl: 1.5em;
  --ss-space-lg: 1em;
  --ss-space-md: calc(var(--ss-space-lg)/2);
  --ss-space-sm: calc(var(--ss-space-md)/1.5);
  --ss-space-xs: calc(var(--ss-space-sm)/2);
  --ss-space-micro: calc(var(--ss-space-xs)/2);
  --border-radius: 0.4em;
  --ss-border-radius-sm: 0.2em;
  --ss-common-border-width: .2em;
  /* Element dimensions */
  --ss-logo-width: calc(var(--ss-space-lg)*14);
  --ss-menu-width: calc(var(--ss-logo-width) - var(--ss-space-lg));
  --ss-main-sidebar-width: 16em;
  --ss-sidebar-width: calc(var(--ss-space-lg)*18.2);
  --ss-aside-panel-width: 20em;
  --ss-item-mask-height: calc(var(--ss-space-lg)*4);
  --ss-item-mask-width: calc(var(--ss-aside-panel-width) - 1.3em);
  --ss-item-box: calc(var(--ss-space-lg)*5.5);
  --ss-account-panel-height: calc(var(--ss-space-lg)*4);
  --ss-chat-wrapper-width: 14.5em;
  --ss--chat-height: 14.5em;
  --ss-chat-height-accouncement: 16.5em;
  --ss-media-social-width: 17.7em;
  --paused-ui-scale: .6;
  --paused-ui-vip-scale: .9;
  --chw-bubble-width: 9em;
  --chw-bubble-height: 3.3em;
  --home-screen-r-padding: .68em;
  --social-icons-dimen: calc(var(--ss-space-lg)*2);
  /* shadows */
  --ss-box-shadow-1: .16em .16em 0 rgba(11, 147, 189,.5);
  --ss-box-shadow-2: .15em .15em 0 rgba(11, 147, 189,.9);
  --ss-box-shadow-3: .15em .15em 0 rgba(217,118,17,.9);
  --ss-text-shadow-1: .1em .1em 0 rgba(11, 147, 189,.8);
  --ss-shadow: rgba(0,0,0,.4);
  --ss-blueshadow: #0a577187;
  --ss-btn-common-txt-shadow: .1em .1em 0 rgb(0 0 0 / 30%);
  --ss-btn-common-txt-shadow-blur: .1em .1em .5em rgb(0 0 0 / 30%);
  --ss-btn-dark-shadow: .15em .15em 0 rgba(0, 0, 0,.3);
  --ss-shadow-filter: drop-shadow(var(--ss-btn-common-txt-shadow));
  /* button bevel */
  --ss-btn-light-bevel: inset 0 .15em .2em;
  --ss-btn-dark-bevel: inset -.1em -.15em .1em;
  --ss-border-blue5: var(--ss-common-border-width) solid var(--ss-blue5);
  --ss-type-icon-size: 2.8em;
  --ss-equip-icon-size: 4em;
  --ss-media-stats-height: 30.5em;
  --gauge-timer-sec: 2deg;
  --gauge-value-start: 0deg;
  --gauge-value-end: 180deg;
  --gauge-value: 180deg;
  --gauge-shadow-blur: 2em;
  --player-score-width: 12em;
}

* {
  box-sizing: border-box; /* For Your Health */
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  font-size: 1.95vh;
  scrollbar-width: var(--ss-space-md);
  scrollbar-color: var(--ss-blue3) var(--ss-blue4);
}

*::-moz-selection {
  background: var(--ss-blue5);
  color: var(--ss-white);
}

*::-webkit-selection {
  background: var(--ss-blue5);
  color: var(--ss-white);
}

*::selection {
  background: var(--ss-blue5);
  color: var(--ss-white);
}

.text-uppercase {
  text-transform: uppercase;
}

.height-100vh {
  height: 100vh;
}

html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  background: var(--ss-lightoverlay) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  font-family: "Nunito", sans-serif;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

a {
  color: var(--ss-white);
}

a:hover {
  color: var(--ss-yolk0);
}

p {
  font-weight: 600;
}

hr {
  width: 100%;
  border: none;
  border-top: var(--ss-space-sm) solid var(--ss-white);
  height: var(--ss-space-md);
}

hr.blue {
  border-top: 1px solid var(--ss-blue4);
}

.font-sigmar {
  font-family: "Sigmar One", Sans-Serif;
}

.font-nunito {
  font-family: "Nunito", sans-serif;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "Sigmar One", Sans-Serif;
  font-weight: 100;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ss-blue3);
}

h1, .h1 {
  font-size: 1.6em;
}

h2, .h2 {
  font-size: 1.4em;
}

h3, .h3 {
  font-size: 1.2em;
}

h4, .h4 {
  font-size: 1em;
}

h5, .h5 {
  font-size: 1.5em;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--ss-yolk);
}

h6, .h6 {
  text-transform: capitalize;
  font-size: 1.2em;
  line-height: 1em;
  color: var(--ss-white);
}

.h-short {
  line-height: 1.5em;
}

.h2-title {
  color: var(--ss-white);
}

h4.shaded {
  background: var(--ss-blue5);
  color: var(--ss-blue2);
  width: 90%;
  text-align: center;
  margin: var(--ss-space-md) 0;
}

.font-size-sm {
  font-size: var(--ss-space-sm);
}

.font-size-md {
  font-size: var(--ss-space-md);
}

.font-size-lg {
  font-size: calc(var(--ss-space-md) * 1.5);
}

hr {
  height: 1px;
  border: none;
  border-top: 1px solid var(--ss-white);
}

.nowrap {
  white-space: nowrap;
}

/* -----------------------------------------------------------------  centering utility */
.center_h {
  margin: 0 auto;
}

.centered, .centered_x, .centered_y {
  position: absolute;
}

.centered {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.centered_x {
  left: 50%;
  transform: translate(-50%, 0);
}

.centered_y {
  top: 50%;
  transform: translateY(-50%);
}

.top-0 {
  top: 0;
}

.top-1 {
  top: 1em;
}

.bottom-0 {
  bottom: 0;
}

.bottom-1 {
  bottom: 1em;
}

.bottom-3 {
  bottom: 3em;
}

.bottom-2 {
  bottom: 3em;
}

.right-0 {
  right: 0;
}

.left-0 {
  left: 0;
}

/* Widths */
.fullwidth {
  width: 100% !important;
  min-width: 100% !important;
}

.full-width-height {
  width: 100% !important;
  height: 100% !important;
}

.width-auto {
  width: auto !important;
}

.width_1 {
  width: 1em;
}

.width_xs {
  min-width: 8em;
}

.width_sm {
  min-width: 10em;
}

.width_md {
  min-width: 15em;
}

.width_lg {
  min-width: 20em;
}

.width_xl {
  min-width: 40em;
}

.width_xxl {
  min-width: 60em;
}

/* border radius */
.roundme_sm {
  border-radius: var(--ss-space-sm);
}

.roundme_md {
  border-radius: var(--ss-space-md);
}

.roundme_lg {
  border-radius: var(--ss-space-lg);
}

.roundme_sm_top-bottom_right {
  border-radius: var(--ss-space-sm) 0 0 var(--ss-space-sm);
}

.roundme_sm_top-bottom_left {
  border-radius: 0 var(--ss-space-sm) var(--ss-space-sm) 0;
}

/* -----------------------------------------------------------------  margin utility */
.nospace {
  margin: 0 !important;
  padding: 0 !important;
}

.margin-0 {
  margin: 0 !important;
}

.margin-top-none {
  margin-top: 0 !important;
}

.margin-bottom-none {
  margin-bottom: 0 !important;
}

.margins_sm {
  margin: var(--ss-space-sm);
}

.margins_md {
  margin: var(--ss-space-md);
}

.margins_lg {
  margin: var(--ss-space-lg);
}

.ss_marginright_micro {
  margin-right: var(--ss-space-micro) !important;
}

.ss_marginleft_micro {
  margin-left: var(--ss-space-micro) !important;
}

.ss_margintop_micro {
  margin-top: var(--ss-space-micro) !important;
}

.ss_marginbottom_micro {
  margin-bottom: var(--ss-space-micro) !important;
}

.ss_marginright_xs {
  margin-right: var(--ss-space-xs) !important;
}

.ss_marginleft_xs {
  margin-left: var(--ss-space-xs) !important;
}

.ss_margintop_xs {
  margin-top: var(--ss-space-xs) !important;
}

.ss_marginbottom_xs {
  margin-bottom: var(--ss-space-xs) !important;
}

.ss_marginright_sm {
  margin-right: var(--ss-space-sm) !important;
}

.ss_marginleft_sm {
  margin-left: var(--ss-space-sm) !important;
}

.ss_margintop_sm {
  margin-top: var(--ss-space-sm) !important;
}

.ss_marginbottom_sm {
  margin-bottom: var(--ss-space-sm) !important;
}

.ss_marginright {
  margin-right: var(--ss-space-md) !important;
}

.ss_marginleft {
  margin-left: var(--ss-space-md) !important;
}

.ss_margintop {
  margin-top: var(--ss-space-md) !important;
}

.ss_marginbottom {
  margin-bottom: var(--ss-space-md) !important;
}

.ss_marginright_lg {
  margin-right: var(--ss-space-lg) !important;
}

.ss_marginleft_lg {
  margin-left: var(--ss-space-lg) !important;
}

.ss_margintop_lg {
  margin-top: var(--ss-space-lg) !important;
}

.ss_marginbottom_lg {
  margin-bottom: var(--ss-space-lg) !important;
}

.ss_marginright_xl {
  margin-right: var(--ss-space-xl) !important;
}

.ss_marginleft_xl {
  margin-left: var(--ss-space-xl) !important;
}

.ss_margintop_xl {
  margin-top: var(--ss-space-xl) !important;
}

.ss_marginbottom_xl {
  margin-bottom: var(--ss-space-xl) !important;
}

.ss_margintop_xxxxl {
  margin-top: var(--ss-space-xxxxl) !important;
}

/* -----------------------------------------------------------------  padding utility */
.paddings_sm {
  padding: var(--ss-space-sm);
}

.paddings_md {
  padding: var(--ss-space-md);
}

.paddings_lg {
  padding: var(--ss-space-lg);
}

.paddings_xl {
  padding: var(--ss-space-xl);
}

.ss_paddingright_micro {
  padding-right: var(--ss-space-micro) !important;
}

.ss_paddingleft_micro {
  padding-left: var(--ss-space-micro) !important;
}

.ss_paddingtop_micro {
  padding-top: var(--ss-space-micro) !important;
}

.ss_paddingbottom_micro {
  padding-bottom: var(--ss-space-micro) !important;
}

.ss_paddingright_sm {
  padding-right: var(--ss-space-sm) !important;
}

.ss_paddingleft_sm {
  padding-left: var(--ss-space-sm) !important;
}

.ss_paddingtop_sm {
  padding-top: var(--ss-space-sm) !important;
}

.ss_paddingbottom_sm {
  padding-bottom: var(--ss-space-sm) !important;
}

.ss_paddingright {
  padding-right: var(--ss-space-md) !important;
}

.ss_paddingleft {
  padding-left: var(--ss-space-md) !important;
}

.ss_paddingtop {
  padding-top: var(--ss-space-md) !important;
}

.ss_paddingbottom {
  padding-bottom: var(--ss-space-md) !important;
}

.ss_paddingright_lg {
  padding-right: var(--ss-space-lg) !important;
}

.ss_paddingleft_lg {
  padding-left: var(--ss-space-lg) !important;
}

.ss_paddingtop_lg {
  padding-top: var(--ss-space-lg) !important;
}

.ss_paddingbottom_lg {
  padding-bottom: var(--ss-space-lg) !important;
}

.ss_paddingright_xl {
  padding-right: var(--ss-space-xl) !important;
}

.ss_paddingleft_xl {
  padding-left: var(--ss-space-xl) !important;
}

.ss_paddingtop_xl {
  padding-top: var(--ss-space-xl) !important;
}

.ss_paddingbottom_xl {
  padding-bottom: var(--ss-space-xl) !important;
}

.ss_paddingtop_xxxxl {
  padding-top: var(--ss-space-xxxxl) !important;
}

.ss_paddingright_sm {
  padding-right: var(--ss-space-sm) !important;
}

.ss_paddingleft_sm {
  padding-left: var(--ss-space-sm) !important;
}

.ss_paddingtop_sm {
  padding-top: var(--ss-space-sm) !important;
}

.ss_paddingbottom_sm {
  padding-bottom: var(--ss-space-sm) !important;
}

.ss_paddingright_xs {
  padding-right: var(--ss-space-xs) !important;
}

.ss_paddingleft_xs {
  padding-left: var(--ss-space-xs) !important;
}

.ss_paddingtop_xs {
  padding-top: var(--ss-space-xs) !important;
}

.ss_paddingbottom_xs {
  padding-bottom: var(--ss-space-xs) !important;
}

.hideme {
  display: none !important;
}

.visibility-hidden {
  visibility: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.clickme {
  cursor: pointer;
}

.clickme:active {
  cursor: wait;
}

button:focus {
  outline: none;
}

.clickme:focus {
  outline: none;
}

/* -----------------------------------------------------------------  icon utility */
.icon-md {
  height: 1.5em;
}

/* -----------------------------------------------------------------  text utility */
.list-no-style {
  list-style: none;
}

/* -----------------------------------------------------------------  button utility */
.interactive-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text_white {
  color: var(--ss-white) !important;
}

.text_blue1 {
  color: var(--ss-blue1) !important;
}

.text_blue3 {
  color: var(--ss-blue3) !important;
}

.text_blue4 {
  color: var(--ss-blue4) !important;
}

.text_blue5 {
  color: var(--ss-blue5) !important;
}

.text_blue8 {
  color: var(--ss-blue8) !important;
}

.text_brown {
  color: var(--ss-vip-brown) !important;
}

.text_yolk {
  color: var(--ss-yolk) !important;
}

.text_red {
  color: #e33 !important;
}

.text_orange {
  color: #e73;
}

.text_yellow {
  color: var(--ss-vip);
}

.text_yellow_bright {
  color: var(--ss-vip-yellow);
}

.text_yolk {
  color: var(--ss-orange);
}

.text_green {
  color: #3b8;
}

.text_blue {
  color: #86c8ff;
}

.text_darkblue {
  color: var(--ss-blue5);
}

.text_darkgreen {
  color: #066509;
}

.text_purple {
  color: #c39;
}

.text_grey {
  color: #ccc;
}

.text_twitch_yellow {
  color: var(--twitch-yellow);
}

.text_gold {
  color: var(--ss-gold);
}

.text_vip_blue {
  color: var(--ss-vip-blue);
}

.text_vip_pink {
  color: var(--ss-vip-pink);
}

.text_vip_yellow {
  color: var(--ss-vip-yellow);
}

.text-twitch-yellow {
  color: var(--twitch-yellow);
}

.font-600 {
  font-weight: 600;
}

.font-700 {
  font-weight: 700;
}

.font-800 {
  font-weight: 800;
}

.line-height-1 {
  line-height: 1;
}

.line-height-1-2 {
  line-height: 1.2;
}

.shadow_blue2 {
  text-shadow: var(--ss-space-xs) var(--ss-space-xs) var(--ss-blue2);
}

.shadow_blue2_micro {
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-blue2);
}

.shadow_blue4 {
  text-shadow: var(--ss-space-xs) var(--ss-space-xs) var(--ss-blue4);
}

.shadow_grey {
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

.shadow_bluebig4 {
  text-shadow: var(--ss-space-xs) var(--ss-space-xs) var(--ss-blue3);
}

.shadow_bluebig5 {
  text-shadow: var(--ss-box-shadow-1);
}

.shadow_blue4big {
  text-shadow: var(--ss-space-xs) var(--ss-space-xs) var(--ss-blue4);
}

.shadow_blue5big {
  text-shadow: var(--ss-space-xs) var(--ss-space-xs) var(--ss-blue5);
}

.text_shadow_1 {
  text-shadow: var(--ss-box-shadow-2);
}

.shadow_red {
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-red2);
}

.text-shadow-black-40 {
  text-shadow: var(--ss-btn-common-txt-shadow) !important;
}

.text-shadow-outline-blue {
  text-shadow: -2px -2px 0 var(--ss-blue3), 2px -2px 0 var(--ss-blue3), -2px 2px 0 var(--ss-blue3), 2px 2px 0 var(--ss-blue3), 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.5);
}

.shadow-filter {
  filter: var(--ss-shadow-filter);
}

.text-shadow-none {
  text-shadow: none;
}

.title-shadow {
  text-shadow: 2px 2px 0 var(--twitch-dk-purple), 2px -2px 0 var(--twitch-dk-purple), -2px 2px 0 var(--twitch-dk-purple), -2px -2px 0 var(--twitch-dk-purple), 2px 0px 0 var(--twitch-dk-purple), 0px 2px 0 var(--twitch-dk-purple), -2px 0px 0 var(--twitch-dk-purple), 0px -2px 0 var(--twitch-dk-purple), 0.2em 0.15em 0 var(--twitch-dk-purple);
}

/* -----------------------------------------------------------------  background utility */
.bg_blue {
  background-color: var(--ss-blue0) !important;
}

.bg_blue1 {
  background-color: var(--ss-blue1) !important;
}

.bg_blue2 {
  background-color: var(--ss-blue2) !important;
}

.bg_blue3 {
  background-color: var(--ss-blue3) !important;
}

.bg_blue5 {
  background-color: var(--ss-blue5) !important;
}

.bg_blue6 {
  background-color: var(--ss-blue6) !important;
}

.bg_red {
  background-color: var(--ss-red-bright) !important;
}

.bg_yellow {
  background-color: var(--ss-vip-yellow) !important;
}

.bg_green {
  background-color: var(--ss-green1) !important;
}

.bg_white {
  background: var(--ss-white);
}

.bg-darkgreen {
  background-color: var(--ss-green2);
}

.bg-limited {
  background-color: var(--ss-limited-txt);
}

.bg-dark-w-gradient {
  background-image: var(--ss-popupbackground);
}

/* opacity  */
.opacity-7 {
  opacity: 0.7;
}

.error_text {
  color: var(--ss-white);
  border-radius: var(--ss-space-sm);
  padding: var(--space-md);
  background: var(--ss-red);
  font-weight: bold;
  text-align: center;
  width: 100%;
}

.border-blue5 {
  border: var(--ss-border-blue5);
}

#videoAdContainer {
  z-index: 100;
}

/* overflow utility */
.overflow-hidden {
  overflow: hidden;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

/* -----------------------------------------------------------------  SVG Utilities */
.fill-white {
  fill: var(--ss-white);
}

/* -----------------------------------------------------------------  Bevels */
.bevel_blue_light {
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) rgb(0, 173, 230), var(--ss-btn-light-bevel) rgb(103, 217, 255);
}

.bevel_blue {
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) rgb(8, 110, 141), var(--ss-btn-light-bevel) rgb(0, 173, 230);
}

.bevel_gray {
  box-shadow: none;
}

.bevel_pink {
  border-color: var(--ss-pink-dark);
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) var(--ss-pink-dark), var(--ss-btn-light-bevel) var(--ss-pink-light);
}

.bevel_blue.selected, .bevel_blue:active {
  box-shadow: 0.05em 0.05em 0.3em var(--ss-blue4), inset -0.1em -0.1em 0.3em var(--ss-blue2), inset 0.02em 0.02em 0.2em var(--ss-blue4);
}

.common-box-shadow {
  box-shadow: var(--ss-box-shadow-1);
}

/* .phb-active-bg .common-box-shadow {
	box-shadow: .15em .15em 0 rgba(0, 0, 0,.3), inset -0.1em -0.1em 0.1em rgba(0, 0 , 0, .1), inset 0.1em 0.1em 0.1em rgba(0, 0 , 0, .1);
}

.phb-active-bg .bevel_yolk {
	box-shadow: .15em .15em 0 rgba(0, 0, 0,.3), inset -0.1em -0.1em 0.1em rgba(0, 0 , 0, .1), inset 0.1em 0.1em 0.1em rgba(0, 0 , 0, .1),
	var(--ss-btn-dark-bevel) var(--ss-yolk2),
	var(--ss-btn-light-bevel) var(--ss-yolk0)
} */
.bevel_yolk {
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) var(--ss-yolk2), var(--ss-btn-light-bevel) var(--ss-yolk0);
}

.bevel_yolk.selected, .bevel_yolk:active {
  box-shadow: 0.05em 0.05em 0.3em var(--ss-blue4), inset -0.1em -0.1em 0.3em var(--ss-yolk0), inset 0.1em 0.1em 0.3em var(--ss-yolk2);
}

.bevel_red {
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) rgb(209, 20, 20), var(--ss-btn-light-bevel) var(--ss-red0);
}

.bevel_red.selected, .bevel_red:active {
  box-shadow: 0.05em 0.05em 0.3em var(--ss-blue4), inset -0.1em -0.1em 0.3em var(--ss-red0), inset 0.1em 0.1em 0.3em var(--ss-red2);
}

.bevel_green {
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) rgb(14, 140, 76), var(--ss-btn-light-bevel) var(--ss-green0);
}

.bevel_green.selected, .bevel_green:active {
  box-shadow: 0.05em 0.05em 0.3em var(--ss-blue4), inset -0.1em -0.1em 0.3em var(--ss-green0), inset 0.1em 0.1em 0.3em var(--ss-green2);
}

.bevel_twitch {
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) var(--ss-twitch1), var(--ss-btn-light-bevel) var(--ss-twitch0);
}

.bevel_blue:hover,
.bevel_blue_light:hover,
.bevel_yolk:hover,
.bevel_pink:hover {
  box-shadow: var(--ss-box-shadow-1);
}

.bevel_green:hover,
.bevel_blue:hover,
.bevel_blue_light:hover,
.bevel_yolk:hover,
.bevel_red:hover,
.ss_button_join:hover {
  box-shadow: var(--ss-box-shadow-1), inset -0.1em -0.1em 0.1em rgba(0, 0, 0, 0.1), inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.1);
}

/* Img utilities */
.vertical-align-middle {
  vertical-align: middle;
}

/* -----------------------------------------------------------------  box utility */
.box_blue2 {
  padding: var(--ss-space-lg);
  background-color: var(--ss-blue2);
}

.box_blue3 {
  padding: var(--ss-space-lg) var(--ss-space-lg) var(--ss-space-lg) var(--ss-space-lg);
  background-color: var(--ss-blue2);
  border: var(--ss-space-sm) solid var(--ss-blue4);
}

.box_blue4 {
  padding: var(--ss-space-lg);
  background-color: #3ebae1;
  border: var(--ss-space-sm) solid var(--ss-blue4);
  min-width: 14em;
}

.box_light {
  padding: var(--ss-space-lg);
  background-color: var(--ss-blue2);
  margin-bottom: var(--ss-space-md);
  text-align: left;
}

.box_light ul {
  margin: 0;
  padding: 0 0 0 2em;
}

/* -----------------------------------------------------------------  position utility */
.box_relative {
  position: relative;
}

.box_absolute {
  position: absolute;
}

.box_fixed {
  position: fixed;
}

/* -----------------------------------------------------------------  overlow utility */
.overflow-visible {
  overflow: visible;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

/* -----------------------------------------------------------------  display utility */
.display-block {
  display: block;
}

.display-inline {
  display: inline !important;
}

.display-grid {
  display: grid;
}

/* -----------------------------------------------------------------  grid utility */
.grid-auto-flow-column {
  grid-auto-flow: column;
}

.grid-column-7-eq {
  grid-template-columns: repeat(7, 1fr);
}

.grid-column-6-eq {
  grid-template-columns: repeat(6, 1fr);
}

.grid-column-5-eq {
  grid-template-columns: repeat(5, 1fr);
}

.grid-column-4-eq {
  grid-template-columns: repeat(4, 1fr);
}

.grid-column-3-eq {
  grid-template-columns: repeat(3, 1fr);
}

.grid-column-2-eq {
  grid-template-columns: repeat(2, 1fr);
}

.grid-column-1-eq {
  grid-template-columns: 1fr;
}

.grid-column-1-2 {
  grid-template-columns: 1fr 2fr;
}

.grid-column-1-4 {
  grid-template-columns: 1fr 4fr;
}

.grid-column-2-1 {
  grid-template-columns: 2fr 1fr;
}

.grid-column-1-auto {
  grid-template-columns: 1fr auto;
}

.grid-column-auto-1 {
  grid-template-columns: auto 1fr;
}

.grid-span-2-start-1 {
  grid-column: 1/span 2;
}

.grid-span-2-start-2 {
  grid-column: 2/span 2;
}

.grid-span-column-all {
  grid-column: 1/-1;
}

.grid-gap-space-lg {
  grid-gap: var(--ss-space-lg);
}

.justify-items-center {
  justify-items: center;
}

.justify-self-center {
  justify-self: center;
}

.justify-items-strech {
  justify-items: stretch;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: end;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-self-center {
  justify-self: center;
}

.justify-self-end {
  justify-self: end;
}

.justify-self-start {
  justify-self: start;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-end {
  align-items: end;
}

.align-content-start {
  align-content: start;
}

.align-content-space-between {
  align-content: space-between;
}

.gap-micro {
  gap: calc(var(--ss-space-lg) / 3);
}

.gap-sm {
  gap: calc(var(--ss-space-lg) / 2.5);
}

.gap-1 {
  gap: var(--ss-space-lg);
}

.gap-2 {
  gap: calc(var(--ss-space-lg) * 2);
}

.gap-3 {
  gap: calc(var(--ss-space-lg) * 3);
}

/* ----------------------------------------------------------------- Flex Standards -- */
.f_col {
  display: flex;
  flex-direction: column;
  /*justify-content: space-between; */
}

.f_row {
  display: flex;
  flex-direction: row;
  /*justify-content: space-between; */
}

.f-grow-full {
  flex: 0 1 100%;
}

.f_justify_start {
  justify-content: flex-start !important;
}

.f_center {
  align-items: center !important;
  justify-content: center !important;
}

.f_start {
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.j_start {
  justify-content: flex-start !important;
}

.f_end {
  align-items: flex-end !important;
  justify-content: flex-end !important;
}

.f_end_only {
  justify-content: flex-end;
}

.f_space_between {
  justify-content: space-between;
}

.f_wrap-wrap {
  flex-wrap: wrap;
}

/* -----------------------------------------------------------------  overlays */
.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.overlay_light {
  background-image: var(--ss-lightoverlay);
  z-index: 6;
}

.overlay_dark {
  z-index: 6;
  background-image: none;
  background-color: var(--ss-darkoverlay);
}

.overlay_game {
  z-index: 6;
  background-image: none;
  background-color: var(--ss-darkoverlay2);
}

/* ----------------------------------------------------------------- LoadingScreen -- */
.load_screen {
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  background-image: var(--ss-lightoverlay);
}

.load_message {
  color: var(--ss-blue4);
  margin-top: 5em;
  margin-bottom: 3.5em;
}

.load_message.tips {
  margin: 1.5em auto;
}

.load_eggcontainer {
  position: relative;
  height: 3rem;
  transform: scale(4);
}

.spinner-tips.tipMsg {
  bottom: 37em;
  background: var(--ss-white);
  padding: 1em 2em;
  border-radius: 10em;
  max-width: 28em;
  transition: height 1s ease-in-out;
}
.spinner-tips.tipMsg p {
  margin: 0;
}
.spinner-tips.tipMsg:after {
  content: "";
  position: absolute;
  left: 0.5em;
  width: 0;
  height: 0;
  border: 1.188em solid transparent;
  border-top-color: var(--ss-white);
  border-bottom: 0;
  border-left: 0;
  left: 36%;
  bottom: -0.4em;
  transform: rotate(300deg);
}
.spinner-tips.LoadingMsgs {
  bottom: 4em;
}
.spinner-tips.LoadingMsgs p {
  color: #643219 !important;
  text-shadow: none !important;
}

.spinner-tips img {
  width: 7em;
  align-self: end;
}

.spinner-tips p {
  position: relative;
}

/* ----------------------------------------------------------------- Equipment / Store -- */
#equip_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  padding: 0 1em;
  position: relative;
  /* margin-top: 2.5em; */
}

#equip_panelhead > button {
  margin: var(--ss-space-micro);
}

.search-settings {
  left: 0;
  top: 0;
}

.equip_panelhead,
.item-search-wrap {
  width: 18.6em;
}

.equip_panel {
  display: flex;
  flex-direction: column;
  padding: 0 var(--ss-space-sm) var(--ss-space-sm);
}

.left_panel {
  margin-top: 0.6em;
}

.equip_panel.left_panel,
.equip_panel.right_panel {
  margin-top: calc(var(--ss-account-panel-height) + 2.5em);
}

.equip_panel.right_panel {
  width: var(--ss-aside-panel-width);
}

.panel_tabs {
  width: 35em;
}

.equip_panel h5 {
  color: var(--ss-blue2);
}

.middle_panel {
  margin-top: var(--ss-account-panel-height);
  justify-content: space-between;
}

.screen-inventory .middle_panel {
  justify-content: end;
}

.screen-skins #equip_weapon_panel {
  position: absolute;
  bottom: 2.7em;
}

#stamp-controls {
  position: relative;
  top: -5.5em;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: end;
  align-items: center;
  gap: 0.25em;
}
#stamp-controls .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.25em;
}
#stamp-controls .preview {
  box-sizing: border-box;
  height: 4em;
  width: 4em;
  cursor: pointer;
}
#stamp-controls .preview .canvas {
  width: 4em;
  height: 4em;
}
#stamp-controls .button {
  box-sizing: border-box;
  background-color: var(--ss-blue8);
  height: 4em;
  width: 4em;
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  border-radius: var(--ss-space-md);
  cursor: pointer;
  box-shadow: var(--ss-box-shadow-1), var(--ss-btn-dark-bevel) #086e8d, var(--ss-btn-light-bevel) #00ade6;
}
#stamp-controls .button .arrow {
  width: 2em;
  height: 2em;
  margin-top: 0.25em;
  fill: #a9e4f7;
}
#stamp-controls .button .arrow.left {
  transform: rotate(-90deg);
}
#stamp-controls .button .arrow.right {
  transform: rotate(90deg);
}
#stamp-controls .button .arrow.down {
  transform: rotate(180deg);
}
#stamp-controls .button:hover {
  box-shadow: var(--ss-box-shadow-1);
}

.stamp-mid-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.stamp-bottom-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.stamp-position-preview {
  display: inline;
}

.right_panel {
  margin-top: -0.05em;
}

#equip_timerem {
  height: 4.9em;
  font-weight: bold;
  color: var(--ss-white);
  padding: var(--ss-space-lg);
  margin-left: 1em;
  text-align: center;
  text-transform: uppercase;
}

#equip_timerem {
  font-size: 1em;
}

#equip_timerem:first-line {
  font-size: 1.2em;
}

#equip_arrow {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 2em !important;
  margin-top: -4em;
}

#equip_arrow img {
  width: 3em;
  height: 4em;
}

.home-main-wrapper {
  width: calc(100vw - var(--ss-aside-panel-width));
  grid-template-columns: auto var(--ss-aside-panel-width);
  top: 0;
  right: 0;
}

#equip_sidebox h3 {
  text-align: center;
  color: var(--ss-blue4);
}

.ico_itemtype {
  border-width: var(--ss-common-border-width);
  border-style: solid;
  border-color: var(--ss-blue3);
  width: var(--ss-type-icon-size);
  height: var(--ss-type-icon-size);
  margin: 0 var(--ss-space-micro) 0.25em var(--ss-space-micro);
  background: var(--ss-blue3);
  box-sizing: border-box;
}

.ico_itemtype svg {
  opacity: 0.8;
  fill: var(--ss-white);
  width: 2.5em;
  height: 2.5em;
}

.ico_itemtype svg:hover, .ico_itemtype.selected svg {
  opacity: 1;
}

.ico_itemtype:hover, #equip_itemtype .selected, .ico_itemtype.selected {
  border-color: var(--ss-white);
}

#equip_itemtype .selected, .ico_itemtype.selected {
  background: var(--ss-yolk);
}

.ico_itemtype.no-tags {
  cursor: not-allowed;
  opacity: 0.4;
}

.equip-item-type-filter {
  width: calc(var(--ss-space-lg) * 2.5);
  margin-left: calc(var(--ss-type-icon-size) * -2);
}

.premium-item-type {
  line-height: 3;
  text-align: center;
  color: var(--ss-white);
}

.equip_icon {
  width: var(--ss-equip-icon-size);
  height: var(--ss-equip-icon-size);
  bottom: 0;
  /* background-size: 5em !important;
  background-position: center !important;
  background-repeat: no-repeat; */
}

.secondary .equip_icon, .primary .equip_icon, .giveStuffPopup-content .equip_icon {
  filter: drop-shadow(0 2mm 0 rgba(10, 87, 113, 0.4));
}

/* .equip_icon_primary {
	background-image: url('../img/ico_weaponPrimary_faded.webp') !important;
}

.equip_icon_secondary {
	background-image: url('../img/ico_weaponSecondary_faded.webp') !important;
} */
.equip_icon_no_item img {
  opacity: 0.5;
}

.equip_icon_no_item:hover img {
  opacity: 1;
}

/* .equip_icon_hat {
	background-image: url('../img/inventory-icons/ico_hat.svg') !important;
}

.equip_icon_stamp {
	background-image: url('../img/ico_stamp_faded.webp') !important;
} */
#equip_banner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: var(--ss-space-sm) var(--ss-space-md) var(--ss-space-sm) var(--ss-space-md);
}

#equip_banner img {
  width: 100%;
  height: 4.5em;
}

#equip_buttons {
  text-align: center;
}

.equip_purchase_items {
  padding-right: var(--ss-space-md);
}

.limited-msg-wrapper {
  height: var(--ss-type-icon-size);
  margin-bottom: 0.25em;
}

.egg-give-stuff {
  text-align: center;
  margin: 0 auto;
}

.egg-give-stuff h2 {
  color: var(--ss-white);
}

.egg-color-select {
  background: var(--ss-lightbackground);
  padding: var(--ss-space-md);
  margin-bottom: calc(var(--ss-space-lg) * 2);
  margin-top: var(--ss-space-lg);
  border: 0.2em solid var(--ss-blue5);
  width: 30em;
}

.egg-color-select .fa-stack {
  width: 1.4em;
}

.egg-color-select i {
  font-size: 1.7em;
}

.egg-color-select .fa-caret-up {
  bottom: -0.9em;
}

.egg-color-select .fa-lock {
  font-size: 1em;
}

.egg-color-select .fa-caret-down {
  top: -0.3em;
  font-size: 2.2em;
}

.color-select-arrow {
  bottom: -1.5em;
  width: 1.5em;
}

.egg-color-icon {
  text-shadow: 0.13em 0.13em 0 rgba(0, 0, 0, 0.3);
}

.egg-color-icon:hover {
  cursor: pointer;
  background-color: var(--ss-blue5);
}

/* ----------------------------------------------------------------- Equip & Store Grid -- */
#equip_screen #mainHead {
  margin-right: 0.65em;
}

#item_mask {
  width: calc(var(--ss-item-mask-width) - 0.3em);
  height: var(--ss-item-mask-height);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--ss-scrollmask1);
  pointer-events: none;
  z-index: 2;
  /* border-bottom: .05em solid var(--ss-blue1); */
}

#item_grid {
  /* padding-bottom: 3em; */
  height: calc(36em - var(--ss-item-mask-height) - 2.45em);
}

#equip_panel_middle > .panel_tabs {
  margin-top: 3em;
}

#equip_panel_middle #item_grid, #equip_panel_middle #item_grid {
  height: auto;
}

/* .screen-featured #equip_grid, .screen-limited #equip_grid {
	height: 7em;
} */
.screen-featured .morestuff, .screen-limited .morestuff {
  display: none;
}

.morestuff {
  border-width: var(--ss-common-border-width);
  border-style: solid;
}

.limited-un-vaulted #equip_grid {
  padding: 0;
  grid-auto-flow: column;
}

#equip_grid {
  padding-bottom: 2.5em;
}

#equip_grid .morestuff svg {
  width: 3em;
  height: 3em;
  margin-right: 0.5em;
}

.equip_special {
  position: absolute;
  top: var(--ss-space-sm);
  left: 0;
  font-size: 0.75em;
  text-align: center;
  width: 100%;
}

.equip_cost {
  margin: 0.2em 0;
  width: 5em;
}

.equip_cost, .equip_egg {
  font-size: 0.8em;
}

.equip_cost .fa-dollar-sign {
  font-size: 1.1em;
}

.egg-price-egg {
  height: 1em;
  width: 1em;
}

.premium-item-cost {
  margin: 0.2em;
  font-weight: 800;
}

.ru .equip-cost-is-owned {
  white-space: nowrap;
  font-size: 0.5em;
}

.premium-item-cost i {
  margin: 0.2em;
}

.price-tag-wrap {
  height: 2.06em;
}

.btn_buy_now {
  letter-spacing: 0.04em;
}

#equip_grid .grid-item {
  font-weight: bold;
  color: var(--ss-blue5);
  width: var(--ss-item-box);
  height: var(--ss-item-box);
  padding: var(--ss-space-micro);
}

#equip_grid .grid-item:not(.morestuff) {
  background: var(--ss-blue1);
  border: var(--ss-common-border-width) solid var(--ss-blue5);
}

#equip_grid .grid-item.is-premium {
  background: rgb(242, 240, 71);
  background: linear-gradient(to right bottom, #f2f047, #d5ed40, #b7e93d, #97e53f, #71e044, #5ad744, #40cd44, #19c444, #14b43c, #0fa535, #0a962d, #048726);
}

.is-premium .equip-item-banner {
  color: var(--ss-premium-txt);
  background: var(--ss-premium);
}

.item-tag-limited .equip-item-banner {
  color: var(--ss-limited-txt);
  background: var(--ss-limited);
}

#equip_grid .grid-item.item-tag-limited {
  background: rgb(255, 191, 237);
  background: linear-gradient(to right bottom, #ffbfed, #ffa8e6, #ff90df, #ff76d6, #ff57cd, #f945c4, #f32ebc, #ed00b3, #e000a9, #d2009f, #c50095, #b8008b);
}

.item-tag-vipitem .equip-item-banner {
  color: var(--ss-vip-txt);
  background: var(--ss-vip);
  padding: 0.3em 3em;
}

#equip_grid .vip-svg-icon-wrap {
  width: 2em;
  position: absolute;
  top: -0.2em;
  left: 0;
}

.item-tag-vipitem svg {
  fill: var(--ss-vip-txt);
}

.item-tag-vipitem.highlight .vip-svg-icon {
  fill: var(--ss-white);
}

#equip_grid .grid-item.item-tag-vipitem {
  background: rgb(255, 255, 255);
  background: linear-gradient(to right bottom, #fffbee, #fff3ca, #ffeaa5, #ffe180, #ffd759, #f4c843, #eab82a, #dfa900, #c79200, #ae7d00, #966800, #7e5400);
  border-color: #ffd800;
}

#equip_grid .grid-item.item-tag-vipitem.highlight {
  border-color: var(--ss-white);
}

#equip_grid .tool-tip > span p {
  font-size: 0.8em;
}

.equip-main-item-grid #equip_grid .tool-tip > span {
  top: -2.3em;
  width: 6.5em;
  min-width: 6.5em;
  min-width: 6.5em;
  z-index: 2;
  text-wrap: wrap;
}

.equip-main-item-grid #equip_grid .tool-tip.tooltip-bottom > span {
  bottom: -2.5em;
  top: auto;
}

.equip-main-item-grid #equip_grid div .tool-tip > span,
.equip-main-item-grid #equip_grid div .tool-tip > span:after,
.equip-main-item-grid #equip_grid div:nth-child(3n+3) .tool-tip > span,
.equip-main-item-grid #equip_grid div:nth-child(3n+3) .tool-tip > span:after {
  top: 50%;
  left: auto;
}

.equip-main-item-grid #equip_grid div .tool-tip > span {
  transform: translate(75%, -50%);
  display: grid;
}

.equip-main-item-grid #equip_grid div .tool-tip > span:after {
  transform: translate(-75%, -50%) rotate(90deg);
}

.equip-main-item-grid #equip_grid div:nth-child(3n+3) .tool-tip > span {
  transform: translate(-100%, -50%);
}

.equip-main-item-grid #equip_grid div:nth-child(3n+3) .tool-tip > span:after {
  transform: translateY(-50%) rotate(270deg);
  right: -12%;
}

.equip-main-item-grid #equip_grid .tool-tip > span h4 {
  font-size: 0.7em;
}

.equip-main-item-grid #equip_grid .tool-tip > span:after {
  transform: translate(-50%, 33%);
}

.equip-main-item-grid #equip_grid .tool-tip.tooltip-bottom > span:after {
  transform: translate(-50%, -319%) rotate(180deg);
}

.equip-main-item-grid #equip_grid .tool-tip.tooltip-left > span:after {
  /* transform: translate(-50%, -319%) rotate(180deg); */
}

.equip-item-banner {
  bottom: 0.85em;
  clip-path: polygon(1% 0%, 101% 0%, 77% 100%, 25% 100%);
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.3em 2em;
  position: absolute;
  right: -2.2em;
  transform: rotate(-45deg);
  z-index: 1;
}

.equip-item-banner.shadow {
  bottom: 0.5em;
  opacity: 0.4;
  background: var(--ss-blue5);
}

.equip-item-banner.shadow span {
  font-size: 0.75em;
}

#equip_grid .grid-item:hover,
#equip_grid .highlight {
  border-color: var(--ss-white);
}

#equip_grid .highlight {
  background: var(--ss-yolk) !important;
}

#equip_grid .equip-vip-icon {
  width: 2em;
  height: 2em;
  vertical-align: bottom;
}

#equip_grid .egg-stroke {
  fill: var(--ss-blue5);
}

#equip_grid .egg-fill {
  fill: var(--ss-yolk);
}

#equip_grid .highlight .egg-stroke {
  fill: var(--ss-white);
}

#equip_grid .highlight .equip_cost, #equip_grid .highlight .equip_egg, #equip_grid .highlight .fa-egg {
  color: var(--ss-white);
}

#equip_grid .unavailable {
  background: var(--ss-red);
  border: var(--ss-space-sm) solid var(--ss-blue3);
  color: var(--ss-red2);
}

#equip_grid .unavailable .equip_egg {
  color: var(--ss-red2);
}

#equip_grid .equip_egg {
  color: var(--ss-yolk);
}

.soldout, .soldout:hover {
  border: var(--ss-space-sm) solid var(--ss-white) !important;
  width: 17em !important;
  height: 95% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none !important;
  color: var(--ss-white) !important;
  font-family: "Sigmar One", Sans-Serif;
  font-weight: bold;
  text-transform: uppercase;
}

.soldout_head {
  font-size: 2.5em;
  transform: rotate(-6deg);
  margin-bottom: var(--ss-space-md);
}

.soldout_text {
  transform: rotate(6deg);
  font-size: 1.3em;
  line-height: 1.1em;
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------- Equip & Store Grid -- */
.equip_color {
  font-size: 2.4em;
  mask-image: image(url(img/ico_chicken.png), skyblue);
  margin: 0em;
  padding: 0.1em;
  cursor: pointer;
  border-radius: var(--ss-space-sm);
}

.equip_color:hover {
  background: var(--ss-blue5);
}

.equip_color.selected {
  background: var(--ss-yolk) !important;
}

#equip_equippedslots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 13em;
  overflow-x: hidden;
  overflow-y: hidden;
}

#equip_equippedslots .equip_item {
  background: var(--ss-blue2);
  width: 6em;
  height: 6em;
  margin: var(--ss-space-sm);
  border: var(--ss-space-sm) solid var(--ss-blue4);
  box-shadow: inset 0em 0em 1em var(--ss-blue3), inset 0em 0em 3em var(--ss-blue5);
}

#equip_equippedslots .equip_item:hover {
  background: var(--ss-yolk);
  border: var(--ss-space-sm) solid var(--ss-white);
  box-shadow: inset 0em 0em 3em var(--ss-yolk0);
}

#equip_equippedslots .equip_smallprice {
  display: none;
}

/* ----------------------------------------------------------------- Buy Items -- */
#buyItemPopup {
  z-index: 2003 !important;
  width: 23em;
}

#buyItemPopup h1, #physicalUnlockPopup h1 {
  font-family: "Nunito", sans-serif;
  font-size: 2.5em;
  font-weight: bold;
  color: var(--ss-white);
}

#buyItemPopup .egg_icon, #physicalUnlockPopup .egg_icon {
  height: 2.5em;
  line-height: 0em;
}

/* ----------------------------------------------------------------- Panels -- */
.front_panel {
  margin: 0 auto;
  min-width: 21.2em;
  max-width: 21.2em;
}

.front_panel-events img {
  height: auto;
  width: 10em;
  margin: 0 auto;
  transition: opacity 0.2s ease-in-out;
}

.front_panel-events button {
  max-width: none;
  padding-right: 4em !important;
}

.front_panel-events button span,
.front_panel-events button i {
  font-size: 1em;
}

.front_panel-events button img {
  width: 2em;
  right: 0.5em;
  top: -0.8em;
  transform: rotate(20deg);
}

.front_panel-events img.events-twitch-drop:hover {
  opacity: 0.8;
  cursor: pointer;
}

.front_panel {
  border: var(--ss-space-sm) solid var(--ss-blue3);
  margin-top: 0.6em;
  background-image: var(--ss-blueblend1);
  padding: var(--ss-space-lg);
}

.front_panel button:disabled,
.front_panel button[disabled],
.ss_bigtab:disabled {
  background: var(--ss-blue5) !important;
  border-color: var(--ss-blue5);
  color: #333;
  box-shadow: none !important;
  text-shadow: none;
  cursor: not-allowed;
  opacity: 0.3;
}

/* ----------------------------------------------------------------- Account -- */
#account_panel {
  position: absolute;
  padding: var(--ss-space-md);
  padding-right: var(--home-screen-r-padding);
  z-index: 5;
  top: 0;
  right: 0;
  height: var(---ss-account-panel-height);
}

.game-screen #account_panel {
  pointer-events: none;
}
.game-screen.is-paused #account_panel {
  pointer-events: all;
}

.home-screen #account_panel,
.home-screen .secondary-aside {
  padding-right: 0;
}

#account_bottom {
  margin-top: var(--ss-space-sm);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

#account_bottom .ss_select, #account_left .ss_select {
  width: 100%;
}

.account_icon {
  margin: 0 0 0 var(--ss-space-sm);
  height: 2.3em;
  background: var(--ss-white);
}

.account_icon.account_icon-item {
  background: var(--ss-pink);
}

.attention_btn {
  position: absolute;
  right: 0.3em;
  top: -0.5em;
  font-size: 0.4em;
  border: 0;
}

.account_icon:hover {
  background: var(--ss-blue1);
}

.account_eggs {
  display: flex;
  height: 2.3em;
  text-align: right;
  padding: 0.05em var(--ss-space-lg) 0 var(--ss-space-md);
  text-shadow: none;
  position: relative;
}

.egg_icon {
  height: 1.6em;
  margin: var(--ss-space-micro) var(--ss-space-sm) 0 0;
}

.egg_count {
  width: auto;
  font-size: 1.7em;
  font-weight: bold;
  color: var(--ss-white);
}

.egg_count {
  display: inline-block;
}

.egg_count_formatted {
  opacity: 1;
}

.egg_count_total {
  position: absolute;
  opacity: 0;
  white-space: nowrap;
  visibility: hidden;
}

.egg_count_container.has_egg_count_total:hover .egg_count_formatted {
  position: absolute;
  opacity: 0;
}

.egg_count_container.has_egg_count_total:hover .egg_count_total {
  opacity: 1;
  position: relative;
  visibility: visible;
}

#loginButton {
  margin-left: var(--ss-space-sm);
  width: 7em;
}

#account_loggedin {
  background: var(--ss-blue2);
  color: var(--ss-white) !important;
  text-align: center;
  margin-top: -0.1em;
  padding: 0.1em 1em;
  font-weight: bold;
}

#player_photo {
  margin-left: var(--ss-space-sm);
}

#player_photo img {
  width: auto;
  height: auto;
  max-width: 3em;
  max-height: 3em;
}

.account-panel-twitch {
  bottom: 0em;
  right: -0.3em;
  width: 1.2em;
  height: 1.2em;
  text-align: center;
  color: var(--ss-white);
  background-color: var(--ss-twitch);
}

.account-panel-twitch:hover {
  opacity: 0.8;
  cursor: pointer;
}

.account-panel-twitch i {
  font-size: 0.8em;
}

/* events */
.double-eggs img {
  height: calc(var(--ss-account-panel-height) - 1em);
}

#account_panel .svg-icon {
  fill: var(--ss-blue1);
  width: 1.5em;
  height: 1.5em;
}

/* ----------------------------------------------------------------- Media tabs -- */
.panel_streamer {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* .is-vip .media-tab-scroll {
    height: 29.5em;
} */
#stream_mask {
  position: absolute;
  bottom: 0;
  /* left: 0.25em; */
  right: 1.1em;
  height: 2em;
  background: var(--ss-scrollmask2);
  width: 100%;
  pointer-events: none;
}

.stream_head {
  background-color: var(--ss-blue2);
  background-repeat: no-repeat;
  background-position-x: var(--ss-space-sm);
  background-position-y: 0.2em;
  background-size: 1.8em;
  padding: 0.1em 0.4em 0.1em 2.4em;
  font-family: "Sigmar One", Sans-Serif;
  font-weight: bold;
  font-size: 1em;
  color: var(--ss-white);
  margin-bottom: var(--ss-space-md);
  white-space: nowrap;
}

.ico_twitch {
  background-image: url("../img/ico_twitch.webp");
}

.ico_youtube {
  background-image: url("../img/ico_youtube.webp");
}

.no-stream {
  min-height: 100%;
  display: flex;
  align-items: center;
  /* background: var(--ss-blue3); */
  padding: 0 0.5em;
  color: white;
}

.no-stream p {
  font-size: 1.2em;
  letter-spacing: 0.05em;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-blueshadow);
  font-weight: 900;
  line-height: 1.2;
}

.no-stream strong {
  font-size: 1.2em;
  text-transform: uppercase;
  font-family: "Sigmar One", Sans-Serif;
}

#stream_scroll {
  /* height: 6.5em; */
  padding-right: var(--ss-space-md);
}

.stream_img {
  margin: 0 calc(var(--ss-space-md) / 2) var(--ss-space-sm) 0;
  float: left;
}

.stream_item a {
  color: var(--ss-blue5);
  text-decoration: none;
}

.stream_viewers {
  padding: 0;
  margin: 0;
  font-weight: 200;
  font-size: 0.9em;
}

.btn_media-nav {
  min-width: auto;
  background: none;
  box-shadow: none;
  border: none;
}

.btn_media-nav i {
  font-size: 0.7em;
}

.changelog_content {
  overflow-y: auto;
  height: 24em;
  padding: var(--ss-space-lg);
  color: var(--ss-blue4);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.4);
}

#changelogPopup h3 {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
}

/* ----------------------------------------------------------------- News Feed -- */
.news-container {
  position: relative;
  min-height: 16em;
  max-height: 17.5em;
}

#news_feed {
  position: relative;
  padding-top: var(--ss-space-sm);
  display: block;
  margin: 0 auto;
}

.news_mask {
  position: absolute;
  bottom: 0;
  left: 0.25em;
  height: 2em;
  background: var(--ss-scrollmask1);
  width: 100%;
  pointer-events: none;
}

#news_scroll,
.media-tab-scroll {
  padding-right: var(--ss-space-sm);
  width: 100%;
}

.news-panel.v_scroll {
  height: 17.9em;
}

.news_img,
.stream_img {
  width: calc(var(--ss-space-lg) * 2.5);
  height: calc(var(--ss-space-lg) * 2.5);
}

.news_img {
  margin: 0 var(--ss-space-md) 0 0;
}

.media-item {
  color: var(--ss-blue5);
  text-align: left;
  height: 4em;
  margin: 0;
  padding: 0 var(--ss-space-sm);
  display: flex;
  transition: opacity 0.2s ease-in-out;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.media-item-border {
  border-bottom: calc(var(--ss-common-border-width) / 1.5) solid var(--ss-blue3);
}

.media-item a {
  align-items: center;
  width: 100%;
}

.media-item p {
  line-height: 1.3em;
  margin: 0;
  font-size: 0.7em;
  font-weight: 700;
  width: 13em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab-content .media-item:nth-child(even) {
  background: var(--ss-blue1);
}

.tab-content.media-item-border:last-child {
  border: 0;
}

.media-item:hover {
  opacity: 0.7;
}

.ytube-item strong {
  font-size: 0.85em;
  font-weight: 900;
}

.ytube-item .image-wrap {
  width: 7em;
}

.ytube-item .image-wrap img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ytube-item .content-wrap {
  width: 100%;
}

.image-wrap {
  object-fit: cover;
}

.news_banner {
  width: 21.2em;
  height: 13em;
  max-width: 100%;
  margin-top: var(--ss-space-sm);
  border: var(--ss-space-sm) solid var(--ss-blue3);
  cursor: pointer;
}

#big-house-ad {
  display: flex;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  background: var(--ss-darkoverlay);
}

.splash_ad_image {
  border: 1em solid var(--ss-white);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  height: 35em;
}

.splash_ad_close {
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  top: 50% !important;
  right: 50% !important;
  margin-top: -19em;
  margin-right: -25em;
  cursor: pointer;
}

.house-wrap {
  margin: 0;
}

/* ----------------------------------------------------------------- Title screen ad -- */
.house-small {
  width: 350px;
  min-height: 250px;
  overflow: hidden;
  z-index: 5;
  top: 48vh;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1717px) {
  .house-small {
    left: auto;
    right: -1.5em;
    transform: none;
  }
  .playing-crazy-games .house-small {
    right: 0.5em !important;
  }
}
.playing-crazy-games .house-small {
  right: -3em !important;
}
@media screen and (max-width: 1128px) {
  .playing-crazy-games .house-small {
    margin-top: -4em;
  }
}

.house-small iframe {
  display: block;
  margin: 0 auto;
}

.house-ad-wrapper {
  max-width: 15em;
}

/* ----------------------------------------------------------------- Title screen ad and news responsive -- */
@media screen and (max-height: 690px) {
  /* #news_feed,
  .front_panel {
  	min-width:300px;
  	max-width: 300px;
  } */
  #news_feed,
  .house-ad-small iframe {
    margin: 0;
  }
}
/* @media screen and ( max-height: 520px ) {
	#news_scroll {
		height: 5.8em;
	}
} */
@media screen and (max-height: 480px) {
  /* #news_scroll {
  	height: 28em;
  } */
  .house-ad-small {
    display: none;
  }
}
/* ----------------------------------------------------------------- Private Game -- */
#private_left {
  width: 17em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#createPrivateGame h3 {
  line-height: 1em;
  margin-bottom: var(--ss-space-sm) !important;
}

#private_left .ss_select {
  width: 15em;
}

#private_maps {
  position: relative;
  border: solid var(--ss-common-border-width) var(--ss-blue5);
  background-repeat: no-repeat;
  background-size: cover;
}

#private_maps img {
  width: 100%;
  height: auto;
}

#private_maps #mapThumb {
  display: block;
}

.create-game-map-select {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
}

.create-game-header {
  grid-area: 1/1/2/3;
  margin: 0;
}

.create-game-header, .create-game-map-search {
  align-self: end;
}

.create-game-map-search {
  grid-area: 1/3/1/3;
}

.create-game-map-search input {
  margin-bottom: 0;
}

.create-game-map-search input, .create-game-map-btn-random {
  height: 100%;
}

.create-game-map-btn-random {
  padding: 0.1em 0.6em;
}

.create-game-map-search label,
.item-search-label {
  right: 0.5em;
  z-index: 1;
}

.create-game-map-search .fa-times-circle:hover {
  color: var(--ss-red) !important;
  cursor: pointer;
}

#private_maps {
  grid-area: 2/1/5/3;
}

.btn-1 {
  grid-area: 2/3/4/3;
}

.btn-2 {
  grid-area: 3/3/3/3;
}

.btn-3 {
  grid-area: 4/3/4/3;
}

.btn-4 {
  grid-area: 4/1/5/3;
}

.btn-1, .btn-2, .btn-3 {
  margin-bottom: 0;
  width: 6em;
}

.btn-3 svg {
  width: 1.5em;
  height: 1.5em;
}

#private_maps #mapNav {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  display: flex;
  z-index: 10;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.map-arrows {
  background: none;
  width: 2em;
  height: 2em;
  border: none;
  text-shadow: var(--ss-box-shadow-2);
  transition: text-shadow 0.3s ease-in-out;
}

.map-arrows:hover {
  text-shadow: var(--ss-box-shadow-3);
}

.map-arrows:active {
  text-shadow: none;
}

.map-arrows:active i {
  font-size: 2.8em;
}

#private_maps #mapText {
  margin: 0;
  padding: 0;
  line-height: 1em;
  text-align: center;
  color: var(--ss-white);
  word-wrap: break-word;
}

.map_playercount {
  bottom: 0.2em;
  right: var(--ss-space-md);
}

.map_playercount img {
  width: 1.5em !important;
}

#gameOptionsPopup .weapon-grid, #gameOptionsPopup #weapon_select {
  width: auto;
}

/* ----------------------------------------------------------------- Play Panel -- */
#stats_panel {
  width: 24.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.stats-container {
  max-height: 55vh;
  padding-bottom: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
}

.stat-wrapper {
  max-width: 98%;
}

.stat-wrapper p {
  margin: 0;
  font-size: 0.9em;
}

.stat-wrapper .stat:nth-child(even) > div {
  background-color: #77cbe6;
}

.stat-wrapper .stat:nth-child(odd) > div {
  background-color: var(--ss-blue3);
}

#stat_item {
  flex: 0 0 48%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: var(--ss-blue0);
  margin: 0 0 var(--ss-space-sm) 0;
  color: var(--ss-white);
  font-weight: bold;
  flex: 0 0 10em;
}

#stat_item h4 {
  font-size: 0.8em;
  font-weight: bold;
  margin: 0.4em var(--ss-space-md);
  padding: 0;
  color: var(--ss-blue2);
  font-family: "Nunito", sans-serif;
}

.stat_stat {
  color: var(--ss-blue5);
  margin-right: var(--ss-space-md);
  font-size: 1.2em;
}

.stats-grid {
  grid-template-columns: 35% 1fr 1fr;
}

.stats-grid-other {
  grid-template-columns: 10em 1fr 1fr;
}

.stat-grid-main-header {
  border-bottom: 0.2em solid var(--ss-blue3);
}

.stat-grid-main-header h3 {
  margin: 0;
  padding: 0;
}

#play_game {
  width: 100%;
  margin-top: var(--ss-account-panel-height);
  height: calc(100vh - var(--ss-account-panel-height));
  /* z-index: 2; */
}

#play_game h3 {
  margin: var(--ss-space-sm) 0 0 0;
}

#play_game .front_panel {
  margin: 0 auto;
}

.play-panel-region-select {
  width: 6em;
  top: 0;
}

#panel_front_play {
  height: 35.5em;
  /* margin-top: -7.3em; */
}

#panel_front_egg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-size: contain;
  width: 28.8em;
  min-width: 25.8em;
  padding-bottom: 1.5em;
  height: 80vh;
}

#panel_front_play #event-notifications img {
  width: 10em;
}

.play-panel-btn-group {
  margin-bottom: calc(var(--ss-space-lg) * 3);
  bottom: -1em;
}
.play-panel-btn-group button {
  width: 6em;
  white-space: normal;
}
.play-panel-btn-group button span {
  font-size: 0.5em;
}
.play-panel-btn-group button.play-button span {
  font-size: 0.7em;
}

@media screen and (max-width: 1128px) {
  .playing-crazy-games .play-panel-btn-group {
    left: 18em;
  }
  .playing-crazy-games .is-vip .play-panel-btn-group {
    left: 50%;
  }
}
/* ----------------------------------------------------------------- Egg Shop -- */
.btn_buy_item img {
  width: 0.8em;
}

.screen-shop .right_panel {
  padding-right: var(--ss-space-md);
}

.eggshop_subtitle {
  font-weight: bold;
  line-height: 1.2em;
  margin: 0 0 var(--ss-space-lg);
  font-size: 1.3em;
}

.eggshop_subtitle span {
  font-size: 1em;
  color: var(--ss-red-btn-fill);
}

.eggshop_pricebox {
  font-size: 1em;
  font-weight: 900;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
  line-height: 1;
}

.eggshop_pricebox span.eggshop-currency-type {
  font-size: 0.7em;
  font-weight: 700;
}

.eggshop_pricebox span.eggshop-dollar-sign {
  font-size: 0.7em;
  vertical-align: super;
}

.eggshop_goldchicken_right .eggshop_pricebox {
  width: 12.3em !important;
}

.eggshop_bigtitle {
  font-size: 0.8em !important;
}

.eggshop_chicken_box {
  align-items: center;
}

.eggshop_chicken_box li {
  text-align: left;
  font-size: 1.5em;
}

.eggshop_image {
  height: 5em;
  margin: 0 auto;
}

.eggshop_chicken {
  height: 12em;
  margin: 0;
}

#eggshop_banner {
  position: absolute;
  top: 0.5em;
  left: -0.65em;
  display: flex;
  flex-direction: row;
  background-color: var(--ss-yolk);
  box-shadow: -0.25em 0.25em 0 0 rgba(0, 0, 0, 0.2);
}

#eggshop_banner.sale {
  background-color: var(--ss-red);
}

#eggshop_banner.sale, .single-egg-store-item-is-item #eggshop_banner {
  padding-left: 0.5em;
}

.single-egg-store-item-is-currency {
  border: var(--ss-border-blue5);
  padding: var(--ss-space-sm);
  display: grid;
  height: 6em;
}
.single-egg-store-item-is-currency .single-egg-store-info {
  justify-content: center;
}

.single-egg-store-item.egg_pack_small, .single-egg-store-item.egg_pack_giant {
  background: var(--egg-pack-small-bg);
}

.single-egg-store-item.egg_pack_medium {
  background: var(--egg-pack-md-bg);
}

.single-egg-store-item.egg_pack_large {
  background: var(--egg-pack-lg-bg);
}

.single-egg-store-item {
  margin-bottom: var(--ss-space-sm);
}
.single-egg-store-item .eggshop_image:hover {
  cursor: pointer;
}
.single-egg-store-item s {
  opacity: 0.5;
  font-size: 0.9em;
}
.single-egg-store-item h6 img {
  width: 2em;
  height: auto;
}
.single-egg-store-item.single-egg-store-item-is-bundle .single-egg-store-header, .single-egg-store-item.single-egg-store-item-is-pass .single-egg-store-header, .single-egg-store-item.single-egg-store-item-is-item .single-egg-store-header {
  font-family: "Nunito", sans-serif;
  font-size: 1em;
  display: block;
  width: 10em;
  font-weight: 700;
  padding: 0.3em !important;
  position: relative;
}
.single-egg-store-item.single-egg-store-item-is-bundle .single-egg-store-header:before, .single-egg-store-item.single-egg-store-item-is-pass .single-egg-store-header:before, .single-egg-store-item.single-egg-store-item-is-item .single-egg-store-header:before {
  content: "";
  position: absolute;
  transform: skew(31deg);
  height: 100%;
  width: 1em;
  top: 0;
  left: -0.1em;
}
.single-egg-store-item.single-egg-store-item-is-bundle header, .single-egg-store-item.single-egg-store-item-is-pass header, .single-egg-store-item.single-egg-store-item-is-item header {
  display: flex;
  justify-content: end;
}
.single-egg-store-item.single-egg-store-item-is-bundle .single-egg-store-price, .single-egg-store-item.single-egg-store-item-is-pass .single-egg-store-price, .single-egg-store-item.single-egg-store-item-is-item .single-egg-store-price {
  width: 15em;
}
.single-egg-store-item.single-egg-store-item-is-bundle .eggshop_image, .single-egg-store-item.single-egg-store-item-is-pass .eggshop_image, .single-egg-store-item.single-egg-store-item-is-item .eggshop_image {
  position: absolute;
  height: auto;
  width: 8em;
  left: -3em;
}
.single-egg-store-item.single-egg-store-item-is-bundle .eggshop_subtitle, .single-egg-store-item.single-egg-store-item-is-pass .eggshop_subtitle, .single-egg-store-item.single-egg-store-item-is-item .eggshop_subtitle {
  font-size: 0.9em;
  width: 12em;
  justify-self: end;
  margin-top: 0.2em !important;
}
.single-egg-store-item.single-egg-store-item-is-item {
  background: var(--ss-premium-gradient);
  border: var(--ss-common-border-width) solid var(--ss-premium-dark-green);
}
.single-egg-store-item.single-egg-store-item-is-item .single-egg-store-header {
  background-color: var(--ss-premium-dark-green);
  padding-right: 1.5em !important;
  width: auto;
}
.single-egg-store-item.single-egg-store-item-is-item .single-egg-store-header:before {
  background-color: var(--ss-premium-dark-green);
}
.single-egg-store-item.single-egg-store-item-is-item .single-egg-store-info,
.single-egg-store-item.single-egg-store-item-is-item .single-egg-store-wrapper {
  width: 16em;
}
.single-egg-store-item.single-egg-store-item-is-bundle, .single-egg-store-item.single-egg-store-item-is-pass {
  overflow: visible;
}
.single-egg-store-item.single-egg-store-item-is-bundle .single-egg-store-header, .single-egg-store-item.single-egg-store-item-is-pass .single-egg-store-header {
  background-color: var(--bundle-color);
  color: var(--bundle-text-color);
}
.single-egg-store-item.single-egg-store-item-is-bundle .single-egg-store-header:before, .single-egg-store-item.single-egg-store-item-is-pass .single-egg-store-header:before {
  background-color: var(--bundle-color);
}

/*  Bundles */
#bundlePopup, .single-egg-store-item.single-egg-store-item-is-bundle {
  background-image: linear-gradient(to bottom, #6a14d1, #9200bf, #ab00ae, #bd029e, #c82090);
  border: var(--ss-common-border-width) solid var(--bundle-color);
  overflow: visible;
}

#equip_grid .tool-tip > span {
  top: -3em;
  bottom: auto;
  text-wrap: nowrap;
  width: auto;
  min-width: 20em;
  max-width: 26em;
  z-index: 1;
}

.single-egg-store-item.single-egg-store-item-is-bundle .single-egg-store-header {
  text-align: center;
}

.single-egg-store-item.single-egg-store-item-is-pass {
  height: 7em;
  border: var(--ss-common-border-width) solid var(--ss-blue5);
}
.single-egg-store-item.single-egg-store-item-is-pass .pass-title-img {
  width: 10em;
  margin: 0.75em auto 0.25em;
  display: block;
}
.single-egg-store-item.single-egg-store-item-is-pass .single-egg-store-price {
  width: 15em;
  margin: 0.25em 0 auto 4em;
}
.single-egg-store-item.single-egg-store-item-is-pass .eggshop_image {
  height: auto;
  width: 11em;
  left: -2em;
  top: 3.4em;
}

.egg-store-item-type {
  width: 1.2em;
  height: 1em;
  fill: var(--ss-white);
}

.btn_store:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sale-desc {
  left: 0;
  border-bottom: 1.9em solid var(--ss-red-bright);
  border-left: 0 solid transparent;
  border-right: 1.3em solid transparent;
  height: 0;
  font-size: 0.6em;
  font-style: italic;
  min-width: 12em;
  padding-left: 0.5em;
  color: var(--ss-white);
  line-height: 2;
  font-weight: 700;
}

#bundlePopup #equip_grid {
  grid-template-columns: repeat(2, 1fr) !important;
  padding-bottom: 0;
}

#bundlePopup #popup_title {
  text-shadow: var(--ss-btn-common-txt-shadow);
}

#bundlePopup .equip-item-banner {
  bottom: 0.85em;
  clip-path: polygon(-6% 0%, 107% 0%, 77% 97%, 25% 100%);
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.3em 2em;
  position: absolute;
  right: -2.2em;
  transform: rotate(-45deg);
  z-index: 1;
}

#bundlePopup .equip-item-banner.shadow {
  bottom: 0.8em;
  right: -1.3em;
}

#bundlePopup .tool-tip > span:after, #bundlePopup.tool-tip div.tool-tip--bubble:after {
  left: 50%;
  top: auto;
  transform: translate(-50%, 0);
}

.bundle-popup-img {
  width: 16em;
  left: -10em;
}

#popupEggStoreSingle {
  background: none;
  border: 0;
}

#eggshop_banner img {
  width: 2em;
  height: 2em;
}

#eggshop_banner:after {
  content: "";
  position: absolute;
  right: -0.9em;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 1em solid var(--ss-yolk);
  border-right: 1em solid transparent;
}

#eggshop_banner:after {
  content: "";
  position: absolute;
  right: -0.9em;
  top: 0;
  width: 0;
  height: 0;
  border-top: 1em solid var(--ss-yolk);
  border-right: 1em solid transparent;
}

.sale#eggshop_banner:after {
  border-bottom-color: var(--ss-red);
  border-top-color: var(--ss-red);
}

.eggshop_banner_mid {
  text-align: left;
  font-weight: bold;
  font-size: 0.9em;
  line-height: 2.4em;
  white-space: nowrap;
  color: var(--ss-yellow0);
  padding-right: 0.75em;
  min-width: 8em;
  height: 2.2em;
}

.eggshop_megatitle {
  background: none !important;
  color: var(--ss-white) !important;
  font-size: 2.5em;
  line-height: 1em;
  width: auto !important;
}

.eggshop_pricebox.slashed {
  font-size: 0.8em;
  color: rgba(12, 87, 111, 0.6);
  position: relative;
}

.eggshop_pricebox.slashed::after {
  position: absolute;
  top: 50%;
  left: -0.3em;
  width: 61%;
  height: 0.1em;
  background: var(--ss-blue5);
  transform: translate(0%, -50%);
  content: "";
}

.single-egg-store-item-is-item .eggshop_banner_mid,
.single-egg-store-item-is-item #eggshop_banner {
  background-color: var(--ss-pink);
}

.single-egg-store-item-is-item #eggshop_banner:after {
  border-top: 1em solid var(--ss-pink);
  border-bottom: 1em solid var(--ss-pink);
}

.single-egg-store-item-purchased {
  background: var(--ss-red);
  clip-path: polygon(4.5% 0%, 100% 0%, 96% 100%, 0% 100%);
  transform: rotate(-10deg);
  width: 8em;
  position: absolute;
  left: -0.6em;
  padding: 0.3em;
  font-style: italic;
  font-size: 1.9em;
  box-shadow: 0.4em 0.4em 0 var(--ss-blueshadow);
  font-weight: 600;
  text-transform: uppercase;
}

.egg-store-sale-notify button {
  background-color: var(--ss-red);
  border: 0;
  color: var(--ss-white);
  text-transform: uppercase;
  box-shadow: 0.1em 0.1em 0 var(--ss-blueshadow);
  margin-right: var(--ss-space-sm);
}

.egg-store-sale-notify button:hover {
  background-color: var(--ss-red-bright);
  cursor: pointer;
}

.egg-store-sale-notify .text {
  display: block;
  font-size: 0.6em;
  font-family: "Sigmar One", Sans-Serif;
  line-height: 1;
}

.egg-store-sale-notify.white-blue button {
  background-color: var(--ss-white);
  color: var(--ss-blue3);
}

.egg-store-sale-notify.white-blue button:hover {
  color: var(--ss-white);
  background-color: var(--ss-blue3);
}

.btn_store.is_item_btn {
  height: 2.1em;
}
.btn_store svg {
  width: 1.2em;
  height: 1.2em;
  fill: #fff;
  filter: drop-shadow(0.1em 0.1em 0.1em rgba(0, 0, 0, 0.5));
}

/* ----------------------------------------------------------------- Chicken Anim -- */
#showBuyPassDialogButton {
  pointer-events: none;
}

.buyPassChickenSpeechTail {
  position: absolute;
  bottom: 0em;
  left: 0em;
  margin-left: -2.5em;
  margin-bottom: 2em;
  width: 3em !important;
}

#buyPassChickenSpeech,
.tool-tip > span,
.tool-tip div.tool-tip--bubble,
.tool-tip > span:after,
.tool-tip div.tool-tip--bubble:after,
.header-notify {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  font-size: 1em;
  text-align: center;
  color: var(--ss-yolk);
  background: var(--ss-white);
  border-radius: var(--ss-space-lg);
  box-shadow: 0.25em 0.25em 0em 0.1em var(--ss-blue2);
  min-height: 4em;
  height: auto;
}

#buyPassChickenSpeech {
  position: absolute;
  bottom: 5em;
  left: 8.5em;
  font-weight: bold;
  line-height: 1em;
  width: 15em;
  pointer-events: none;
  animation-timing-function: cubic-bezier();
  animation-name: popVisible;
  animation-iteration-count: infinite;
  animation-delay: 1s;
  animation-duration: 10s;
  animation-fill-mode: both;
}

.new #buyPassChickenSpeech {
  bottom: 4em;
  left: 10.6em;
}

.chicken_popup_image {
  height: 10em;
}

#chicken_panel {
  bottom: var(--ss-space-lg);
  left: var(--ss-space-lg);
  height: 10em;
  position: fixed;
}

#chicken_panel img {
  width: 9em;
  position: absolute;
  bottom: 0;
  left: var(--ss-space-md);
}

/* #chicken_panel.new {
	bottom: -1em;
    left: -1em;	
} */
#chicken_panel.new img {
  left: 0;
  width: auto;
}

#chicken_panel.new .nugget-chick {
  width: 4.8em;
  left: 3.5em;
  bottom: 3em;
}

#chicken_panel.new .upgraded-nugget {
  width: 8em;
}

#chicken_panel.new .starburst {
  width: 12em;
}

/* Nugget popup */
#miniGameFrame {
  margin-bottom: 4em;
}

/* Nugget timer */
.chicken-panel--upgraded {
  position: fixed;
  left: 2.5em;
  bottom: 2.5em;
}

.chicken-panel--no-upgraded {
  position: fixed;
  left: 0;
  bottom: 0;
}

.nugget-timer--wrapper, .nugget-timer--wrapper * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* .nugget-timer--wrapper:after {
    content: '';
    position: fixed;
    width: 9.7em;
    height: 9.7em;
    border: .3em solid var(--ss-yellow);
    border-radius: 100%;
    z-index: 1000;
    bottom: 1em;
    left: .8em;
}

.nugget-timer--wrapper:before {
	content: '';
    position: fixed;
    width: 7.1em;
    height: 7.1em;
    border: .3em solid var(--ss-yellow);
    border-radius: 100%;
    z-index: 50;
    bottom: 2.1em;
    left: 2.1em;
} */
.nugget-timer--wrapper {
  width: 8.1em;
  height: 8.1em;
}

.nugget-timer--wrapper .timer,
.nugget-timer--wrapper .timer-background,
.nugget-timer--wrapper .mask {
  border-style: solid;
  border-width: 1em;
  animation-iteration-count: 1 !important;
}

.nugget-timer--wrapper .timer {
  width: 50%;
  height: 100%;
  transform-origin: 100% 50%;
  position: absolute;
  border-color: var(--ss-yolk);
}

.nugget-timer--wrapper .spinner {
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  z-index: 200;
  border-right: none;
  animation: rota var(--ss-nugSecs) linear infinite;
}

.nugget-timer--wrapper:hover .spinner,
.nugget-timer--wrapper:hover .filler,
.nugget-timer--wrapper:hover .mask {
  animation-play-state: running;
}

.nugget-timer--wrapper .filler {
  border-radius: 0 100% 100% 0/0 50% 50% 0;
  left: 50%;
  opacity: 0;
  z-index: 100;
  animation: opa var(--ss-nugSecs) steps(1, end) infinite reverse;
  border-left: none;
}

.nugget-timer--wrapper .timer-background {
  width: 100%;
  height: 100%;
  position: absolute;
  background: none;
  border-color: var(--ss-blue3);
  border-radius: 100%;
  z-index: 100;
}

.nugget-timer--wrapper .mask {
  width: 50%;
  height: 100%;
  position: absolute;
  background: inherit;
  border-color: var(--ss-blue3);
  border-radius: 100% 0 0 100%/50% 0 0 50%;
  border-right: none;
  opacity: 1;
  z-index: 300;
  animation: opa var(--ss-nugSecs) steps(1, end) infinite;
}

#subStorePopup {
  padding-left: 5em;
  padding-right: 5em;
  border: 0;
  height: 100vh;
  background: 0 0;
  width: 61em;
}

#vipEnded .popup_sm_content {
  text-shadow: 1px 2px 10px black;
}

.vip-club-background {
  top: 8.9em;
  width: 61em;
}

.vip-club-water-mark {
  width: 27em;
}

#subStorePopup .popup_close {
  top: 5.5em;
  right: 5.5em;
  z-index: 2;
}

.vip-club {
  color: var(--ss-vip-brown);
  width: 31em;
  top: 30em;
}
.vip-club .value {
  font-size: 0.7em;
  font-weight: 900;
}
.vip-club .one-month-membership .value {
  color: rgb(125, 71, 42);
}
.vip-club .three-month-membership .value {
  color: rgb(80, 98, 102);
}
.vip-club .twelve-month-membership .value {
  color: rgb(137, 107, 33);
}
.vip-club .payment-options {
  width: 18em;
}

.vip-club-cta {
  position: relative;
  margin: 2em auto 0 1em;
}

.vip-club-cta .sub-name,
.vip-club-cta button {
  position: absolute;
  z-index: 1;
}

.vip-club-cta button {
  right: 2em;
  top: 10em;
}

.vip-club-cta .sub-name {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  bottom: 0;
  width: 100%;
  padding: var(--ss-space-md) var(--ss-space-sm);
  color: var(--ss-white);
  background-color: var(--ss-vip-blue);
  /* text-shadow: 1px 1px 5px rgba(0,0,0,.6); */
}

.vip-club-cta img {
  width: 13.8em;
}

.vip-club-cta img.egg-org-img {
  border: var(--ss-space-sm) solid var(--ss-egg-org);
}

.vip-club-cta img:hover {
  cursor: pointer;
  opacity: 0.8;
}

.vip-club-log-content--outer {
  background-color: var(--ss-white);
  padding: var(--ss-space-md) var(--ss-space-xl);
  box-shadow: 0 0 1em 0.5em rgba(0, 0, 0, 0.4);
}

.vip-club--logo {
  position: relative;
}
.vip-club--logo img {
  width: 11em;
}

.vip-club-water-mark img {
  max-width: 100%;
}

/* @media only screen and (max-width: 1800px) {
	.vip-club--logo img{
		left: -8em;
	}
} */
.vip-club-log-content--outer h2 {
  margin: 0;
  color: var(--ss-yolk);
  -webkit-text-stroke: 0.1em var(--ss-vip-brown);
  text-align: center;
}

.vip-club-log-content--outer h2 {
  font-size: 2em;
}

.vip-club-log-content--outer h2 span {
  font-size: 1.2em;
  color: var(--ss-vip-yellow);
}

.vip-club--content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 700;
  gap: 0.2em;
}
.vip-club--content li {
  font-size: 0.8em;
  grid-template-columns: 1.8em auto;
  gap: 0.5em;
}
.vip-club--content li span {
  font-size: 1em;
}
.vip-club--content li span img {
  width: 1em;
  vertical-align: middle;
  filter: drop-shadow(0.2em 0.2em 0 rgba(0, 0, 0, 0.3));
}

.vip-club-star {
  width: 1.4em;
}

.vip-club--content .text-orange {
  color: var(--ss-yolk);
  font-size: 1em;
}

.vip-club--content .more {
  font-size: 1.5em;
  color: var(--ss-yolk);
  text-transform: uppercase;
  margin: 0;
}

.vip-club-items--outer {
  margin: 0 auto;
}

.vip-item {
  background-position: center center;
  background-repeat: no-repeat;
}
.vip-item h3 {
  margin: 0;
  line-height: 1;
  text-transform: capitalize;
  font-size: 0.8em;
}
.vip-item .price-tag,
.vip-item .ss_button {
  margin: 0.5em 0 0;
}
.vip-item .price-tag {
  font-size: 1.7em;
  font-weight: 900;
  margin: 0.1em 0;
  display: inline-block;
  padding: 0;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) 0.3em var(--ss-shadow);
  color: var(--ss-vip-yellow);
  line-height: 1;
}
.vip-item .price-tag--cents {
  vertical-align: super;
}
.vip-item img {
  width: 9em;
  height: auto;
}
.vip-item button {
  font-size: 0.7em;
}
.vip-item button:disabled {
  background: 0;
  box-shadow: none;
  border: 0;
  cursor: default;
}
.vip-item .vip-banner.p_egg_shop_purchased span {
  font-size: 0.5em;
  margin: 2.3em 0 0 2em;
}

.vip-item--inner .banner {
  font-size: 0.8em;
}

.vip-banner {
  background: url("../img/vip-club/vip-banner.webp") no-repeat;
  position: absolute;
  top: -0.009em;
  right: 0;
  height: 5em;
  width: 4em;
}

.vip-banner span {
  display: block;
  color: var(--ss-white);
  font-weight: bold;
  transform: rotate(45deg);
  line-height: 1;
  text-transform: uppercase;
  font-size: 0.7em;
  margin: 1em 0 0 1.5em;
}

.banner.p_egg_shop_bestvalue,
.banner.p_egg_shop_bestvalue:before,
.banner.p_egg_shop_bestvalue:after {
  background: var(--ss-team-red-light);
}

.banner.p_egg_shop_purchased,
.banner.p_egg_shop_purchased:before,
.banner.p_egg_shop_purchased:after {
  background: var(--ss-green1);
}

.banner {
  margin: 0;
  padding: 0;
  color: var(--ss-yellow0);
  padding: 0.3em 0;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(30%) translateY(0%) rotate(45deg);
  transform-origin: top left;
  box-shadow: -0.15em 0.15em 5px 0 rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  font-weight: 600;
}

.banner:before,
.banner:after {
  content: "";
  position: absolute;
  top: 0;
  margin: 0 -1px; /* tweak */
  width: 100%;
  height: 100%;
}

.banner:before {
  right: 100%;
}

.subscription-plans {
  margin: 0 auto;
}

.vip-club-has-plan .plan-details.vip-club-log-content--outer {
  width: auto;
}

.plan-details.vip-club-log-content--outer {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--ss-space-sm);
  width: 31em;
}

.plan-details h5, .plan-details .plan-expiry {
  margin: 0;
  font-size: 1em;
}

.subscription-details {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.manage-details {
  font-size: 0.5em;
}

.manage-details i {
  font-size: 1em;
}

.is-vip-item {
  background: var(--ss-vip-gold);
  box-shadow: none;
  color: var(--ss-black);
  padding: 0.4em 2em;
  text-align: center;
  width: 8.3em;
}

.vip-get-btn {
  font-style: italic;
  box-shadow: 0.16em 0.16em 0 rgba(0, 0, 0, 0.2), var(--ss-btn-dark-bevel) var(--ss-yolk2), var(--ss-btn-light-bevel) var(--ss-yolk0);
}

.vip-get-btn svg {
  width: 1.8em;
  fill: var(--ss-white);
  margin-left: 0.2em;
}

/* .vip-get-btn span {
display: block;
   margin-right: 1.7em;
 } */
.btn_vip {
  padding: 0 var(--ss-space-sm);
  display: flex;
}

.btn_vip img {
  width: 2.5em;
  margin-right: var(--ss-space-sm);
}

.btn_vip.has-sub img {
  width: 2.5em;
  margin-right: 0;
}

.black-friday-banner {
  left: 50%;
  position: absolute;
  max-width: 30em;
  transform: translate(-50%, 7%);
  z-index: 10;
}

@keyframes rota {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes opa {
  0% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
/* ----------------------------------------------------------------- Footer -- */
#mainFooter {
  display: flex;
  flex-direction: row;
  height: var(--ss-footer-height);
  margin: 0 auto;
  text-align: center;
  font-size: 0.8em;
  letter-spacing: 0.01em;
  min-width: var(--ss-min-width);
  bottom: 0;
}

.game-info {
  min-width: 70em;
  padding: 1em 10em;
}

.game-info .eggIcon {
  color: #FFF;
  padding-top: 0.3em;
}

.game-info a {
  color: var(--ss-black);
}

.game-info li {
  font-weight: 600;
}

#mainFooter, .main-footer {
  width: 100%;
}

.main-footer {
  align-items: center;
  margin-top: var(--ss-space-md);
}

.main-footer--logo-blue-wiz-mini {
  width: 4.5em;
  opacity: 0.6;
  vertical-align: middle;
}

#footer_links_panel a,
#footer_links_panel button {
  position: relative;
  font-size: 0.8em;
  color: var(--ss-blue3);
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
}

.footer-nav button {
  margin: 0 var(--ss-space-sm);
}

.social-icons {
  display: flex;
  margin: 0 auto;
}

.social-icons .tool-tip {
  margin: 0;
}

.social-icons .tool-tip > span,
.social-icons .tool-tip div.tool-tip--bubble {
  width: 10.5em;
  text-transform: uppercase;
  left: auto;
  right: 0;
  transform: none;
  bottom: -3.7em;
}

.social-icons .tool-tip > span:after, .social-icons .tool-tip div.tool-tip--bubble:after {
  z-index: 1;
  left: auto;
  top: -13.6em;
  right: 3px;
  transform: rotate(180deg) translate(12px, 16px);
  filter: drop-shadow(-3px 3px 0 var(--ss-blue2));
  border-right: 0.3rem solid transparent;
  border-left: 0.3rem solid transparent;
}

.social-icons section {
  font-size: 0.6em;
}

.discord-bubble-img {
  position: absolute;
  left: -0.1em;
  bottom: -0.7em;
  width: 3.4em;
  height: auto;
}

.social-icons .tool-tip--text {
  padding: 0.6em 0.5em 0.5em 0em;
}

.discord .tool-tip div.tool-tip--bubble {
  left: -2em;
}

.discord .tool-tip div.tool-tip--bubble:after {
  left: 68%;
}

.tool-tip--image {
  overflow: hidden;
  border-radius: 1em;
  width: 4.3em;
}

.tool-tip--text {
  padding: 0.6em 0.5em 0.5em 0.5em;
}

.social_icon {
  height: 3em;
}

.social_icons .icon-wrap {
  height: var(--social-icons-dimen);
  width: var(--social-icons-dimen);
}

.social-media a {
  text-decoration: none;
}

.social-media a:hover {
  color: var(--ss-white) !important;
}

.social_icons .fab,
.social_icons .fas {
  font-size: 1.2em;
}

/*-- One Signal position and size -- */
.onesignal-bell-launcher-button {
  width: 6.2vh !important;
  height: 6.2vh !important;
}

#onesignal-bell-container {
  bottom: 0.1vh !important;
  right: 0.1vh !important;
  display: none !important;
}

/* ----------------------------------------------------------------- Server Stuff -- */
#region_list_item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: var(--ss-space-sm);
  font-weight: bold;
}

.regionName {
  width: 13em;
  padding: 0 var(--ss-space-sm) 0 var(--ss-space-xl);
  text-align: left;
  white-space: nowrap;
}

.regionPingWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 10.75em;
  margin: 0;
  padding: var(--ss-space-xs) var(--ss-space-sm);
  background: var(--ss-blue4);
}

.pingBar {
  display: inline-block;
  height: 0.75em;
  border-radius: 0.25em;
}

.redPing {
  background-color: var(--ss-red);
}

.yellowPing {
  background-color: var(--ss-yolk);
}

.greenPing {
  background-color: var(--ss-green1);
}

.orangePing {
  background-color: var(--ss-orange1);
}

.regionPingNumber {
  width: 3em;
  text-align: right;
}

/* ----------------------------------------------------------------- Settings Popup -- */
#joinPrivateGamePopup {
  background-image: none;
  border: 0;
  width: 36em;
  margin-top: -4em;
  padding: 0;
}

#joinPrivateGamePopup .popup_close {
  top: 0.5em;
  right: -0.5em;
}

#joinPrivateGamePopup.join-request-only .popup_close {
  top: 1em;
}

#joinPrivateGamePopup #popupInnards {
  margin-top: 2em;
  min-height: auto;
}

/* #joinPrivateGamePopup .inner-wrapper {
	background-color: var(--ss-blue3);
	padding: var(--ss-space-md) var(--ss-space-xxl) var(--ss-space-lg);
} */
.play-panel-panels {
  width: 38em;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--ss-space-xl);
  color: var(--ss-white);
  background-image: var(--ss-popupbackground);
  border: var(--ss-common-border-width) solid var(--ss-blue5);
}

.play-panel-panels-join {
  margin-top: var(--ss-space-md);
}

.play-panel-panels-join h1, .create-game-header {
  font-size: 1.2em;
}

#createPrivateGame {
  width: 100%;
}

#popupInnards {
  min-height: 25em;
}

#settings_right {
  margin-left: 3em;
}

.settings-section {
  width: 35em;
}

.settings-footer .ss_button {
  white-space: normal;
  height: 3em;
}

/* Settings popup */
#settingsPopup h2, #settingsPopup h3, #settingsPopup h4 {
  color: var(--ss-blue5);
}

/* ----------------------------------------------------------------- Popup Window -- */
.popup_window {
  z-index: 2000;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--ss-space-lg);
  color: var(--ss-white);
  background-image: var(--ss-popupbackground);
  border: var(--ss-common-border-width) solid var(--ss-blue5);
}

.popup_window:not(#pausePopup) {
  z-index: 2002;
}

.popup_xl {
  background: var(--ss-lightbackground);
  border: var(--ss-space-sm) solid var(--ss-blue3);
  width: 67em !important;
  padding: var(--ss-space-xxl);
}

.popup_xl h1 {
  color: var(--ss-white);
}

.popup_lg {
  padding: var(--ss-space-xxl);
}

.popup_lg h1 {
  color: var(--ss-white);
  text-shadow: var(--ss-box-shadow-2);
}

.popup_md {
  border: var(--ss-space-sm) solid var(--ss-blue3);
  background: var(--ss-blue2);
  min-width: 20em;
}

.popup_sm {
  min-width: 20em;
  font-weight: bold;
}

.popup_sm_content {
  text-align: center;
  /* padding: var(--ss-space-xl); */
  font-weight: bold;
  max-width: 30em;
  line-height: 1.2em;
}

.popup_window:not(#joinPrivateGamePopup) .popup_sm h3 {
  color: var(--ss-white);
  padding: 0;
  margin: 0;
  margin: 0 var(--ss-space-xl) !important;
  font-size: 1.5em;
}

.popup_sm__item_desc {
  max-width: 23em;
  line-height: 1.2em;
  margin-bottom: var(--ss-space-sm);
}

.popup_close {
  position: absolute;
  top: var(--ss-space-sm);
  right: var(--ss-space-md);
  padding: 0;
  background-color: transparent;
  border: none;
  width: 2em;
  height: 2em;
  text-shadow: var(--ss-box-shadow-2);
  transition: all 0.2s ease-in-out;
}

.popup_close:hover {
  text-shadow: var(--ss-box-shadow-3);
}

.popup_close:active {
  text-shadow: none;
}

.popup_close:active i {
  font-size: 1.5em;
}

.popup_window #buttonsHorizontal {
  margin-top: 1em;
}

#popupInnards {
  margin: 0;
  margin-bottom: var(--ss-space-md);
}

/* ----------------------------------------------------------------- FAQ / Feedback -- */
#helpPopup {
  min-width: 48em;
}

#feedback_panel {
  height: 30em;
  padding: 1em;
  overflow: auto;
  overflow-x: hidden;
}

#feedback_panel h1 {
  background: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

#feedback_panel h3 {
  color: var(--ss-blue5);
}

#feedback_panel hr {
  border: none;
  border-top: 2px solid var(--ss-blue4);
}

#feedback_panel p, #feedback_panel li {
  color: var(--ss-blue5);
  font-weight: 600;
}

#feedback_panel .ss_field {
  width: 50%;
  height: 2.5em;
}

#feedback_panel textarea {
  width: 100% !important;
  height: 9em !important;
  resize: none;
}

.photo-booth .paper-doll-click-container:hover {
  cursor: move; /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.photo-booth .paper-doll-click-container:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

#photoBooth {
  height: calc(100% - 2em);
}

#photoBooth .screens-menu {
  height: 100%;
}

#photoBooth strong {
  font-size: 1em;
}

#photoBooth-instructions li {
  font-size: 0.75em;
  text-transform: none;
}

.btn_pb_icon {
  width: 3em;
  height: 3em;
  min-width: auto;
  padding: 0;
  margin: 0.3em;
}

.btn_pb_icon .ico_itemtype {
  margin: 0;
}

.ph-egg-hide {
  height: auto;
  padding: var(--ss-space-sm);
  border: 0.1em solid var(--ss-blue5);
}

.ph-egg-hide > div {
  width: 70%;
}

.ph-egg-hide .ss-dropdown-select {
  margin-bottom: 0.3em !important;
}

.photo-booth-map-section .option-box ul {
  max-height: none;
}

.photo-booth-map-section .option-box,
#photoBooth-egg-sizes .option-box {
  z-index: 100;
}

.btn-open-photo-booth:disabled {
  filter: grayscale(80%);
}

#screenshotPopup .popup_sm_content {
  max-width: 35em;
}

.photo-booth-screen-grab img {
  max-width: 100%;
  width: auto;
  max-height: 25em;
}

.pb-title {
  line-height: 1;
}

.pb-title-img {
  width: 2em;
}

.pb-title-img-flip {
  transform: rotateY(180deg);
}

.pb-vignette {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 200px rgba(0, 0, 0, 0.9) inset;
}

.pb-vignette-setting {
  padding: 0;
}

.pb-vignette-setting .ss_checkbox {
  height: 1.9em;
}

.pb-vignette-setting .ss-dropdown-select {
  margin: 0 !important;
}

.photo-booth .paper-doll-click-container {
  height: 28em;
  width: 39em;
}

/**
 * Tooltip Styles
 */
/* Add this attribute to the element that needs a tooltip */
.tool-tip {
  /* position: relative; */
  z-index: 2;
  cursor: pointer;
  margin: 0 0.2em;
  transition: opacity ease-in-out 0.3s;
}

/* Hide the tooltip content by default */
.tool-tip > span,
.tool-tip .tool-tip--bubble {
  transition: opacity ease-in-out 0.3s;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.tool-tip > span,
.tool-tip div.tool-tip--bubble {
  position: absolute;
  min-height: 2rem;
  width: 20em;
  font-weight: 600;
  line-height: 1.3;
  display: block;
  transform: translateX(-50%);
  left: 50%;
  bottom: 5.5em;
}

.steam .tool-tip div.tool-tip--bubble {
  left: -212%;
}

.steam .tool-tip div.tool-tip--bubble:after {
  left: 82.5%;
}

.twitch .tool-tip div.tool-tip--bubble {
  left: -6.3em;
}

.twitch .tool-tip div.tool-tip--bubble:after {
  left: 95.5%;
  top: 94%;
}

.tool-tip > span strong,
.tool-tip .tool-tip--bubble strong {
  font-weight: 800;
  display: block !important;
  font-size: 1em;
}

/* Triangle hack to make tooltip look like a speech bubble */
.tool-tip > span:after,
.tool-tip div.tool-tip--bubble:after {
  background: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 0;
  border-top: 1rem solid var(--ss-white);
  border-right: 0.4rem solid transparent;
  border-left: 0.4rem solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  filter: drop-shadow(4px 4px 0 var(--ss-blue2));
}

/* Show tooltip content on hover */
.tool-tip.active > span,
.tool-tip:hover span,
.tool-tip:hover,
.tool-tip.active .tool-tip--bubble,
.tool-tip.active .tool-tip--bubble:after,
.tool-tip:hover .tool-tip--bubble,
.tool-tip:hover .tool-tip--bubble:after,
.tool-tip .tool-tip--bubble:after,
.tool-tip .tool-tip--bubble:hover {
  visibility: visible;
  opacity: 1;
}

.tool-tip--right > span {
  bottom: 60%;
  left: 215%;
  z-index: 300;
}

.tool-tip--right span:after {
  bottom: auto;
  top: 18px;
  left: -16px;
  -webkit-transform: rotate(65deg);
  transform: rotate(65deg);
}

/** ---------------------------------------------- VIP Club */
.vip-club-cta,
#subStorePopup,
#giveStuffPopup.vip,
#vipEnded.vip,
#giveStuffPopup.vip .grid-item {
  border-color: var(--ss-yolk);
}

.give-stuff-icon img {
  width: 10em;
  position: absolute;
  top: -5.5em;
  left: 50%;
  transform: translate(-50%, 0);
}

.popup-title-vip {
  color: var(--ss-white);
  text-shadow: 0 0 10px var(--ss-black);
}

.popup-title-twitch {
  color: purple;
}

#giveStuffPopup.twitchDrops .items-container,
.popup-items-vip {
  margin-bottom: 0.5em;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 33em;
}

#giveStuffPopup.vip .grid-item .equip-item-banner {
  display: none;
}

#giveStuffPopup.vip .grid-item {
  background: var(--ss-blue1);
  height: 10em;
  min-width: 10em;
  width: 10em;
  padding: 1em;
  margin: 0 0.5em 1em;
  border: var(--ss-space-sm) var(--ss-yolk) solid;
}

#subStorePopup,
#giveStuffPopup.vip,
#vipEnded.vip {
  background-size: cover;
  background-position: 50% 0;
}

#giveStuffPopup.vip,
#vipEnded.vip {
  background: var(--ss-vip-store-bg);
}

.giveStuffPopup-content.twitchDrops,
#giveStuffPopup.twitchDrops footer {
  padding: var(--ss-space-xxl);
}

.giveStuffPopup-content .items-container:not(.popup-items-vip) .centered {
  top: -3em;
  left: auto;
  transform: none;
  position: relative;
}

.twitchDrops .giveStuffPopup-content .items-container:not(.popup-items-vip) .centered {
  width: 6em !important;
  height: auto !important;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.twitchDrops .giveStuffPopup-content .item-name {
  bottom: 0.5em !important;
  color: white !important;
  font-size: 0.8em !important;
}

.twitchDrops .egg-give-stuff > img {
  width: 7.5em;
}

.twitchDrops .egg-give-stuff h2 {
  margin: -1.3em 0 0 0;
}

.twitch-btn-wrap {
  z-index: 5;
  top: 12.7em;
  left: var(--ss-aside-panel-width);
}

.twitch-btn {
  font-size: 1em;
  width: 14.5em;
}

.twitch-btn-status {
  margin-left: 0.5em;
}

.twitch-btn img {
  left: -1em;
  width: 4em;
  top: -2em;
  transform: rotate(346deg);
}

.giveStuffPopup-content #popup_title {
  margin: 1em 0 4em;
}

#giveStuffPopup.twitchDrops #popup_title {
  margin: 0;
}

.giveStuffPopup-content .item-tag-vipitem .equip-vip-icon {
  position: absolute;
  top: 0;
  left: 0.3em;
  height: 3em;
  width: 3em;
}

.giveStuffPopup-content .common-box-shadow {
  box-shadow: none;
}

#giveStuffPopup.twitchDrops {
  padding: 0;
  background: var(--twitch-lt-purple);
  border-color: var(--twitch-yellow);
}

#giveStuffPopup.twitchDrops {
  background-image: url("../img/twitch-drops/twitch-reward-popup-bg.png");
  background-size: cover;
}

#giveStuffPopup.twitchDrops .items-container {
  margin-right: auto;
  margin-left: auto;
}

#giveStuffPopup:not(.twitchDrops) .items-container .grid-item {
  margin: 0 auto;
}

#giveStuffPopup.twitchDrops .grid-item {
  margin-right: auto;
  margin-left: auto;
}

#giveStuffPopup.twitchDrops .egg-give-stuff,
#giveStuffPopup.twitchDrops .grid-item {
  width: 9em;
  height: 9em;
  max-width: 9em;
  max-height: 9em;
  min-width: 9em;
  min-height: 9em;
  border: 0.5em solid;
  margin-bottom: 1em;
  border-radius: var(--ss-space-lg);
  background-color: var(--twitch-dk-pink);
}

#giveStuffPopup.twitchDrops footer {
  padding-bottom: 1em;
  background-color: var(--twitch-yellow);
}

#giveStuffPopup.twitchDrops #popup_title,
#giveStuffPopup.twitchDrops footer {
  padding-top: 1em;
}

#giveStuffPopup.twitchDrops #popup_title #giveStuffPopup.twitchDrops footer p {
  color: var(--twitch-dk-purple);
}

#giveStuffPopup.twitchDrops .twitch-btn {
  font-size: 1em;
}

#giveStuffPopup .item-name {
  position: absolute;
  bottom: 0.75em;
  transform: translate(-50%, 0);
  left: 50%;
  font-size: 1em;
  padding: 0;
  margin: 0;
  width: 100%;
  line-height: 1;
  color: var(--ss-blue5);
}

#giveStuffPopup .equip-item-banner {
  display: none;
}

.incentivized-egg-chick {
  z-index: 2;
}

#chicknWinner .incentivized-egg-chick.centered {
  top: 6em;
  width: 10em;
}

#chicknWinner .equip_cost,
#chicknWinner .equip-cost-is-owned {
  display: none !important;
}

.egg-chick-wrapper {
  margin: var(--ss-space-lg) auto;
  height: 15em;
  align-items: end;
  min-width: 51em;
}

.egg-chick-wrapper h2 {
  bottom: -0.5em;
  top: auto;
}

.egg-chick-box {
  width: auto;
  height: 19em;
}

.egg-chick-box img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.chw-reward-amount {
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 1.5em;
  -webkit-animation: incentivizedslidein 0.5s ease-in-out;
  -moz-animation: incentivizedslidein 0.5s ease-in-out;
  -o-animation: incentivizedslidein 0.5s ease-in-out;
  -ms-animation: incentivizedslidein 0.5s ease-in-out;
  animation: incentivizedslidein 0.5s ease-in-out;
  z-index: 3;
}

.chw-reward-amount .chw-winner-egg {
  height: 4em;
  width: 4em;
}

.chw-reward-amount h2 {
  font-family: "Nunito", sans-serif;
  font-size: 3em;
  font-weight: 600;
  color: var(--ss-white);
}

.chw-winner-egg {
  display: inline !important;
  vertical-align: top;
  margin-left: -1em !important;
}

.incentivized-egg-shadow {
  width: 20em;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 0;
}

.hideme.incentivized-show {
  display: block !important;
}

.cyborg-egg {
  margin-top: 5em !important;
}

.nugget-footer {
  z-index: 8;
}

.chickn-winner-clicked {
  -webkit-animation: jello 0.6s infinite linear;
  -moz-animation: jello 0.6s infinite linear;
  -o-animation: jello 0.6s infinite linear;
  -ms-animation: jello 0.6s infinite linear;
  animation: jello 0.6s infinite linear;
}

.chw-icon-watch-ads {
  width: 1em;
  height: 1em;
  vertical-align: bottom;
  filter: var(--ss-shadow-filter);
}

.chw-popup-title {
  -webkit-text-stroke: 0.08em var(--ss-vip-red);
}

.chw-popup-img {
  width: 35em;
}

@keyframes jello {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes incentivizedslidein {
  0% {
    opacity: 0;
    transform: translateY(250px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Chickn Winner progress */
.chw-progress-wrapper {
  margin: var(--ss-space-md) auto 0;
  width: 25em;
  /* height: calc(var(--ss-space-lg)*3); */
  position: absolute;
  right: 0;
  top: 18em;
}

.chw-progress-bar-wrap {
  width: auto;
  height: auto;
  background-color: var(--ss-blue5);
  box-shadow: var(--ss-btn-dark-shadow) !important;
}

.chw-progress-bar-wrap-popup {
  width: 95%;
}

.chw-progress-bar-wrap-popup {
  height: 3em;
  padding: 0;
}

.chw-progress-bar-wrap-popup,
.chw-progress-bar-wrap {
  overflow: hidden;
}

.chw-progress-bar-msg {
  font-weight: 900;
  color: var(--ss-white);
  font-size: 0.8em;
  width: 18em;
}
.chw-progress-bar-msg span {
  font-size: 1em;
}

.chw-progress-bar-inner,
.chw-progress-bar-inner-popup {
  height: 6em;
  width: 0%;
  background: var(--ss-blue1);
  border: 0;
  transition: all 0.3s linear;
}

.chw-progress-bar-inner-popup {
  height: 100%;
}

.chw-progress-bar-wrap-complete {
  border-color: var(--ss-brown);
}
.chw-progress-bar-wrap-complete .chw-progress-bar-inner {
  background: var(--ss-yolk);
}
.chw-progress-bar-wrap-complete .chw-progress-bar-inner.chw-ready {
  width: 100% !important;
}

.chw-progress-bar-wrap-complete .chw-progress-bar-msg {
  color: var(--ss-white);
}

.chw-progress-img {
  width: 3em;
  top: 0;
  height: auto;
}

#game_screen .chw-chick {
  position: absolute;
}

.chw-chick {
  left: -1em;
  z-index: 1;
  top: -1.25em;
  width: 4em;
  left: -3em;
  top: -4em;
  width: 9em;
}

.chw-eggs {
  right: 0;
  width: 5.2em;
  top: -0.8em;
  height: auto;
}

.chw-circular-timer-container .ss_button {
  margin: 0;
  position: absolute;
  right: 0;
  bottom: -1.5em;
}
.chw-circular-timer-container .ss_button.chw-limit-reached {
  bottom: -2.5em;
  display: flex;
  align-items: center;
  line-height: 1.6;
  gap: 0.3em;
}

#chw-circular-timer-outer {
  display: block;
  width: 3em;
  height: 3.5em;
  border-radius: 50%;
}

#chw-circular-timer-inner {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  color: var(--ss-white);
  font-size: 1.2em;
  transform: translateY(-3.45em);
}

.chw-circular-timer-bar {
  transform-origin: center;
  transform: rotate(90deg);
  fill: transparent;
  stroke: var(--ss-yolk);
  stroke-width: 3em;
  stroke-dasharray: 14.4513em;
  transition: all 0.3s ease-in-out;
}

.chw-circular-timer-bar-inner {
  fill: orange;
}

.chw-circular-timer-svg {
  transform: translateX(-6em) scale(0.3) translateY(-7em);
}

.chw-bubble-wrap {
  top: -1.65em;
  left: 1em;
}

.chw-circular-timer-container {
  background: var(--ss-white);
  opacity: 1;
  width: var(--chw-bubble-width);
  height: var(--chw-bubble-height);
  align-items: center;
  position: relative;
  border-radius: 0.5em;
  padding: 0.4em 1em;
  z-index: 3;
  top: -1.6em;
  left: 3em;
}

.chw-circular-timer-container-shadow {
  background: rgba(11, 147, 189, 0.5);
  opacity: 1;
  width: var(--chw-bubble-width);
  height: var(--chw-bubble-height);
  align-items: center;
  position: relative;
  border-radius: 0.5em;
  padding: 0.4em 1em;
  z-index: 2;
  position: absolute;
  left: 3.2em;
  bottom: 1.4em;
  z-index: 1;
}

.speech-tail {
  content: "";
  position: absolute;
  background: var(--ss-white);
  bottom: -0.7em;
  left: -0.8em;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  box-shadow: 0.6em 0.6em 0 0 var(--ss-white), 0.7em 0.9em 0 0 var(--ss-blue2);
  background: 0;
  transform: rotate(344deg);
  z-index: 2;
  position: absolute;
  bottom: 2.6em;
  left: 1em;
}

.chw-bubble-wrap,
.chw-circular-timer-container,
.chw-circular-timer-container-shadow {
  transition: opacity 0.3s ease-in-out;
}

.chw-home-screen-max-watched {
  gap: 1em;
}

.chw-bubble-wrap {
  opacity: 0;
}
.game-screen .chw-bubble-wrap {
  transform: scale(0.8);
}

.chw-home-timer:hover .chw-bubble-wrap,
.is-ready.chw-bubble-wrap {
  opacity: 1;
}

.chw-circular-timer-countdown {
  font-weight: 900;
  line-height: 1;
  color: var(--ss-yolk);
  font-size: 0.9em;
}

.chw-circular-timer-container.grid-column-1-2 .chw-circular-timer-countdown {
  font-size: 0.7em;
}

.chw-pie-num {
  line-height: 0.8;
}

.chw-pie-remaining {
  font-size: 0.8em;
  text-transform: uppercase;
}

.chw-home-timer {
  width: 10em;
  bottom: calc(var(--ss-space-lg) * 3);
  position: absolute;
  bottom: 2em;
  left: 1em;
}
.game-screen .chw-home-timer {
  bottom: 16em;
  z-index: 2;
}
.has-announcement .chw-home-timer {
  bottom: 20em;
}

.chw-home-timer-chick {
  width: 9em;
  /* width: 4em; */
  /* transform: translate(0, 2.5em); */
  /* transform: translate(0, -3.8em); */
  transform: translate(-2em, -6.1em);
}

.chw-loot-img {
  width: 4.5em;
}

#chw-pie {
  width: 2.23em;
}

.chw-bubble-tail {
  width: 2em;
  bottom: 0.4em;
  left: 4.5em;
}

.chw-home-screen-timer {
  margin: 0 auto;
  display: flex;
}

.chw-home-screen-max-watched .chw-bubble-tail {
  display: none;
}

/** incentivized ad egg game **/
.btn_shiny {
  z-index: 2;
  width: auto;
  margin: 0 auto;
}

#chickenNugget header {
  height: 4em;
  font-size: 170%;
}

#chickenNugget .chickn-winner-title {
  color: var(--ss-white);
  background: none;
}

#chickenNugget .grid-item canvas {
  width: 12em !important;
  height: 12em !important;
  position: relative !important;
  transform: none !important;
  top: 0 !important;
  left: auto !important;
}

#chickenNugget .grid-item {
  box-shadow: none;
}

#goldChickenPopup.popup_window {
  padding: 0;
  border: 0;
  background: 0;
}

#shellshockers_chicken_nugget_banner_ad {
  margin: 1em auto 0;
}

#announcement_message {
  font-weight: bold;
  line-height: 1.2;
}

#announcement_message::after {
  content: "";
  display: block;
  height: 0.15em;
  width: 7em;
  background: var(--ss-white);
  margin: 0.2em 0 0.3em;
}

.is-paused #announcement_message {
  padding: var(--ss-space-md) var(--ss-space-md) 0;
}

.select {
  appearance: none;
  background-color: transparent;
  /* border: none; */
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
}

.select-box-wrap {
  position: relative;
  width: 100%;
  height: 2.5em;
  background: var(--ss-white);
  border-radius: var(--ss-space-sm);
}

.select, .select-box-wrap label {
  position: absolute;
  height: 2.6em;
}

.select-box-wrap:hover label,
.select:hover {
  box-shadow: none;
  cursor: pointer;
}

.select-box-wrap label {
  right: 0;
  width: 2.6em;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 0.2em solid var(--ss-blue4) !important;
}

.select {
  display: block;
  width: 99%;
  box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  appearance: none;
  padding: var(--ss-space-sm) var(--ss-space-md);
  border-right: 0;
  z-index: 1;
  box-shadow: none;
}

/* Hide arrow icon in IE browsers */
.select::-ms-expand {
  display: none;
}

.homescreen-main-wrapper {
  height: 100vh;
  grid-template-columns: auto var(--ss-aside-panel-width);
}
.homescreen-main-wrapper #weapon_select {
  bottom: 8em;
}

@media screen and (max-width: 1128px) {
  .playing-crazy-games .homescreen-main-wrapper #weapon_select {
    left: 21em;
  }
  .playing-crazy-games .is-vip .homescreen-main-wrapper #weapon_select {
    left: 50%;
  }
}
.secondary-aside {
  /* padding-right: var(--ss-space-md); */
  padding-right: var(--home-screen-r-padding);
  width: var(--ss-aside-panel-width);
  right: 0;
  top: calc(var(--ss-space-lg) * 4);
  height: calc(100vh - 7em);
  z-index: 5;
}

.home-screen .secondary-aside {
  max-height: 74vh;
}

.secondary-aside-wrap {
  width: var(--ss-media-social-width);
}

.screens-menu {
  width: var(--ss-main-sidebar-width);
}

.screens-menu-btn-return {
  right: 0;
  top: 7.2em;
  font-weight: 800;
  width: 13em;
  line-height: 1.9;
  position: absolute;
  top: -3.5em;
}
.screens-menu-btn-return.ru, .screens-menu-btn-return.es, .screens-menu-btn-return.nl, .screens-menu-btn-return.de, .screens-menu-btn-return.pt {
  line-height: 0.9;
}
.screens-menu-btn-return svg {
  height: 1.5em;
  width: 1.5em;
}

.main-menu {
  width: var(--ss-menu-width);
  margin-top: calc(var(--ss-space-lg) * 2.95 + var(--ss-space-lg));
}

.main-menu-button {
  border: 0;
  color: var(--ss-blue3);
  padding: 0.3em var(--ss-space-md) var(--ss-space-md) calc(var(--ss-space-lg) * 1.5);
  margin-top: 0.3em;
  transform: translateX(-0.5em);
  transition: transform 0.2s ease-in-out;
  background: none;
}

.main-menu-button .menu-icon {
  width: 1.2em;
  height: 1.2em;
  margin-right: var(--ss-space-md);
  fill: var(--ss-blue3);
  margin-bottom: 0.2em;
}

.icon-star {
  position: absolute;
  fill: var(--ss-yellow);
  stroke: var(--ss-yolk);
  stroke-width: 3px;
  height: 2em;
  width: 2em;
  pointer-events: none;
  animation: pulse 1000ms infinite;
}

.icon-star.top-left {
  top: -0.7em;
  left: -0.8em;
}

.icon-star.left {
  left: -1.8em;
  top: 0.01em;
}

@keyframes pulse {
  0% {
    transform: scale(1) rotate(35deg);
  }
  10% {
    transform: scale(1.5) rotate(35deg);
  }
  20% {
    transform: scale(1) rotate(35deg);
  }
  40% {
    transform: scale(1.5) rotate(35deg);
  }
  60% {
    transform: scale(1) rotate(35deg);
  }
  100% {
    transform: scale(1) rotate(35deg);
  }
}
.main-menu-button:hover {
  cursor: pointer;
}

.main-menu-button:hover,
.main-menu-button.current-screen,
.ss_name {
  transform: translateX(calc(var(--ss-space-lg) / 1.2));
}

.ss_name {
  width: var(--ss-menu-width);
  top: -3.2em;
  margin-left: var(--ss-space-lg);
}

.main-menu-button.current-screen {
  color: var(--ss-white);
  text-shadow: var(--ss-btn-common-txt-shadow);
}

.main-menu-button:hover .menu-icon,
.main-menu-button.current-screen .menu-icon {
  transform: rotate(5deg);
  fill: var(--ss-white);
  filter: var(--ss-shadow-filter);
}

.main-menu-button .fa-star {
  right: -1.1em;
  transform: rotate(10deg) !important;
}

.main-menu-button svg {
  z-index: -1;
  width: 15em;
  height: auto;
}

.main-menu-button.back {
  margin-top: var(--ss-space-lg);
  background: var(--ss-red);
  color: var(--ss-white);
}

.main-nav-item-bg {
  fill: var(--ss-blue1);
  stroke: var(--ss-blue5);
  stroke-width: var(--ss-common-border-width) !important;
}

.main-menu-button:hover {
  color: var(--ss-white);
}

.main-menu-button:hover .main-nav-item-bg, .current-screen .main-nav-item-bg {
  fill: var(--ss-yolk);
  stroke: var(--ss-white);
  color: var(--ss-white);
}

.ab-test-inventory-flow {
  top: 0;
  width: 20em;
  min-width: auto;
  transform: none;
}
.ab-test-inventory-flow .egg_icon {
  margin: 0;
  padding: 0;
}
.ab-test-inventory-flow p {
  text-shadow: var(--ss-btn-common-txt-shadow);
  font-family: "Nunito";
  font-size: 1em;
  text-transform: none;
  text-align: left;
  line-height: 1.5;
}
.screens-menu-btn-return .ab-test-inventory-flow {
  right: -21.5em;
  left: auto;
}
.shop-menu-item .ab-test-inventory-flow {
  left: 14em;
  transform: none;
}
.equip-tab-skins .ab-test-inventory-flow {
  left: -8.5em;
  top: 4em;
}
.type-selector-grenade .ab-test-inventory-flow {
  left: auto;
  right: 3.5em;
}
.item-tag-wero .ab-test-inventory-flow {
  left: 4em;
  top: -9em;
  width: 10em;
}
.btn_buy_item .ab-test-inventory-flow {
  bottom: 0;
  top: auto;
  left: -21em;
}

.ab-test-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 3em !important;
  height: auto !important;
  opacity: 1 !important;
}
.screens-menu-btn-return .ab-test-arrow {
  transform: scaleX(-1);
  left: -1.5em;
}
.item-tag-wero .ab-test-arrow {
  right: 8.5em;
  left: auto;
  bottom: -1.5em;
  top: auto;
  transform: rotate(90deg);
}
.type-selector-grenade .ab-test-arrow {
  left: 18em;
}
.shop-menu-item .ab-test-arrow {
  transform: scaleX(-1);
  left: -1.5em;
}
.equip-tab-skins .ab-test-arrow {
  right: 0;
  left: auto;
  transform: rotate(275deg);
  top: -1.5em;
}
.btn_buy_item .ab-test-arrow {
  top: auto;
  bottom: 0;
  left: auto;
  right: -1.5em;
}

@keyframes pulse-arrow {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(0.95);
  }
}
#showGameModePopup .select-box-wrap {
  width: 20em;
}

.btn_dropdown {
  min-width: 4.5em;
  text-shadow: none;
  border-radius: var(--ss-border-radius-sm);
}

.option-box {
  padding: var(--ss-space-md) 0;
  bottom: 4em;
  right: -50%;
  z-index: 1;
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  box-shadow: 0.26em 0.26em 0 rgba(11, 147, 189, 0.5);
}

.option-box ul {
  /* overflow-y: auto; */
  max-height: 10em;
}

.option-box li {
  grid-template-columns: 1.25em auto;
  font-size: 0.71em;
  font-weight: 700;
  min-height: 1.5em;
  padding: 0.3em var(--ss-space-lg);
}

.fr .option-box li {
  font-size: 0.6em;
}

.option-box li.regions-select {
  grid-template-columns: 1.25em auto 3.25em;
}

.option-box li.regions-select div {
  font-size: unset;
}

.option-box li:hover {
  background: rgba(17, 146, 188, 0.5);
}

.option-box-checkmark {
  width: 1em;
  height: 1em;
}

.option-box .selected i, .option-box .selected svg path {
  color: var(--twitch-yellow);
  fill: var(--twitch-yellow);
  -webkit-text-fill-color: var(--twitch-yellow); /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 0.12em;
  -webkit-text-stroke-color: var(--ss-blue5);
  stroke: var(--ss-blue5);
}

.option-box.pos-bottom {
  top: 3.8em;
  bottom: auto;
  right: auto;
  left: 0;
  width: 100%;
}

.option-box.pos-right {
  bottom: auto;
  top: -0.17em;
  right: -12em;
  width: 11.5em;
}

/* PROFILE */
.profile-page-content {
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  margin-top: 7em;
  height: calc(100vh - 10em);
}

.profile-page-content .ss_smtab {
  width: 5em;
}

.profile-page-content .media-tab-container {
  background: none;
  grid-template-columns: 1fr 1fr;
  width: 12em;
}

.stats-box {
  margin: 0 auto;
}

.stat-loading {
  background-color: var(--ss-blue5);
  height: 56vh;
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 0.8;
  width: 100%;
}

.stats-loading {
  top: var(--ss-space-md);
}

.profile-name {
  background: none;
  border: 0;
  font-size: 1.6em;
}

.profile-name:focus {
  width: 11em;
  border: 2px solid white;
}

.account-create-date {
  font-size: 0.8em;
}

.account-create-date strong {
  font-size: 1em;
}

@media (max-width: 1701px) {
  .profile-page-content {
    min-width: 41em;
  }
  .profile-stat-wrap {
    min-height: 30em;
    max-height: 30em;
  }
}
.profile-no-stats {
  width: 98%;
  height: 100%;
}

.stat-wrapper.soldout {
  width: 100% !important;
  border: 0 !important;
}

/* Tutorial */
#tutorialPopup {
  background-image: linear-gradient(to bottom, #5ebbd9, #4fb0d0, #40a5c7, #2e9abe, #178fb5);
}

#tutorialPopup .popup_sm_content {
  max-width: none;
  width: 40em;
  padding: 2em 2em 0;
}

.tutorial-keyboard {
  width: 19em;
}

.tutorial-pointer {
  font-size: 75%;
}

.tutorial-content {
  grid-template-columns: auto 2fr;
}

.tutorial-egg {
  width: 5em;
}

.tutorial-list li {
  line-height: 1.2;
  padding: 0.4em 1.8rem;
  background-position: 0 center;
  background-size: 1.3rem;
  background-repeat: no-repeat;
  background-image: url(/img/tutorial/ss_tutorial_Star.webp);
  font-size: 90%;
}

.tutorial-labels {
  grid-template-columns: 25em 7em;
  width: 32em;
  margin: 1.5em auto;
}

.tutorial-labels span:not(.tutorial-special-keys) {
  font-size: 80%;
  color: var(--ss-vip-yellow);
  line-height: 1.2;
  text-align: center;
}

.tutorial-shift {
  top: 8.2em;
  left: 2.3em;
}

.tutorial-spacebar {
  top: 11.5em;
  left: 9em;
}

.tutorial-move-right,
.tutorial-move-down {
  top: 10em;
}

.tutorial-move-down {
  left: 11.5em;
}

.tutorial-move-right {
  left: 15.5em;
}

.tutorial-move-left {
  top: 5.7em;
  left: -0.5em;
}

.tutorial-reload,
.tutorial-grenade {
  top: 1.5em;
}

.tutorial-grenade {
  left: 0;
}

.tutorial-reload,
.tutorial-melee,
.tutorial-jump {
  left: 24.3em;
}

.tutorial-melee {
  top: 5.5em;
}

.tutorial-shoot,
.tutorial-move-up,
.tutorial-swap-weapons {
  top: -1.5em;
}

.tutorial-swap-weapons {
  left: 15em;
}

.tutorial-shoot {
  left: 32.3em;
}

.tutorial-move-up {
  left: 9.5em;
}

.tutorial-jump {
  top: 14.5em;
}

.tutorial-aim {
  top: 10.5em;
  left: -2.4em;
}

.tutorial-key-top {
  top: 1.1em;
}

.tutorial-q {
  left: 5em;
}

.tutorial-w {
  left: 8.2em;
}

.tutorial-e {
  left: 11.5em;
}

.tutorial-r {
  left: 14.6em;
}

.tutorial-key-bottom {
  top: 4.4em;
}

.tutorial-a {
  left: 6em;
}

.tutorial-f {
  left: 15.5em;
}

.tutorial-s {
  left: 9.2em;
}

.tutorial-d {
  left: 12.3em;
}

.tutorial-mouse {
  max-width: 100%;
  height: auto;
}

/* Notifications */
#notificationPopup {
  background: none;
  border: 0;
}

#notificationPopup.popup_lg h1 {
  min-height: 2em;
  line-height: 1.2;
}

.notify-group {
  height: 36em;
  width: 23em;
  padding: var(--ss-space-lg);
  color: var(--ss-white);
  background-image: var(--ss-popupbackground);
  border: var(--ss-common-border-width) solid var(--ss-blue5);
}

.notify-group-subscription {
  background: var(--ss-vip-store-bg);
}

.notification-content .equip_icon.centered {
  position: relative;
  transform: none;
  top: auto;
  bottom: auto;
  left: auto;
  height: 13em !important;
  width: auto !important;
  margin: 0 auto;
  display: block;
}

.notify-group {
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}

.notify-group-items .common-box-shadow {
  box-shadow: none;
}

.notify-group .item-name {
  color: var(--ss-blue5) !important;
  font-size: 1.6em !important;
  margin-top: 0;
}

.notify-group-subscription.notify-group-items .item-name,
#notificationPopup.popup_lg .notify-group-subscription h1,
#notificationPopup.popup_lg .notify-group-eggs h1 {
  color: var(--ss-vip-brown) !important;
  text-shadow: none;
}

#notificationPopup.popup_lg .notify-group-eggs h1 {
  color: var(--ss-blue5) !important;
}

.notify-group-items .equip-item-banner {
  position: relative;
}

.notify-group-items .notification-banner img {
  width: 12em;
  margin: 0 auto;
  display: block;
}

.notify-group .is-vip .equip-vip-icon {
  position: absolute;
  top: -0.2em;
  left: 0em;
  width: 1.7em;
  height: 1.7em;
  z-index: 2;
}

.notify-group .equip-item-banner {
  z-index: 1;
  bottom: auto;
  transform: none;
  clip-path: none;
  left: 0;
  text-align: center;
  width: 8em;
  padding: 0.5em 0 0.5em 1em;
  font-size: 1em;
}

.notify-group .equip-vip-icon {
  display: none;
}

.notify-group .vip-emblem {
  width: 6em;
  top: -2em;
}

.notify-group .notification-banner-icon {
  background: green;
  padding: 0.4em;
  border-radius: 100%;
  left: -1.6em;
  width: 3em;
  height: 3em;
  display: flex;
}

.notify-group .notification-banner-icon,
.notify-group .equip-item-banner {
  border: 0.2em solid var(--ss-blue5);
}

.notify-group button {
  min-width: auto;
  width: auto;
  font-size: 1.5em;
  text-shadow: none;
}

.notify-group button.popup_close {
  top: 0.4em;
  right: 0.7em;
  font-size: 1em;
}

.notify-group button .fa-caret-right {
  margin-left: 0.2em;
}

.notify-group .egg-give-stuff h2 {
  font-size: 3em;
  color: var(--ss-red-btn-fill);
  margin: 0;
}

.notify-group .egg-give-stuff .egg-img {
  width: 2em;
}

.notify-group.egg_pack_small {
  background: var(--egg-pack-small-bg);
}

.notify-group.egg_pack_medium {
  background: var(--egg-pack-md-bg);
}

.notify-group.egg_pack_large {
  background: var(--egg-pack-lg-bg);
}

.notification-banner svg {
  transform: rotate(335deg);
  color: var(--ss-blue5);
  fill: var(--ss-blue3);
  outline: beige;
  stroke: aliceblue;
  stroke-width: 0.2em;
  width: 2.4em;
  height: 2em;
}

.notify-group .equip-item-banner.shadow {
  display: none;
}

.chlg-icon {
  width: 9em;
}

.notify-group-challenges {
  height: auto;
}

.notify-group-challenges-checkmark-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 6em solid var(--ss-pink);
  border-right: 6em solid transparent;
  border-top-left-radius: var(--ss-space-md);
}

.notify-group-challenges-checkmark-wrap svg {
  width: 3em;
  height: 3em;
  position: absolute;
  top: -5.5em;
  left: 0.4em;
}

.notify-group.notify-group-challenges .ss_button {
  width: 15em;
  font-size: 1em;
  display: block;
  margin: 0 auto var(--ss-space-lg);
}

/* Free Games */
.free-games-logo {
  width: 14em;
  margin-left: 1em;
}

.free-games-title {
  line-height: 1.1;
}

/* Firebase signin */
.firebaseui-card-header {
  display: none !important;
}

.firebaseui-container .mdl-shadow--2dp, .firebaseui-container .mdl-card, .firebaseui-container {
  box-shadow: none !important;
  background: none !important;
}

#firebaseui-auth-container {
  width: 24em;
}

#firebaseSignInPopup #btn_horizontal {
  display: none !important;
}

.firebaseui-form-actions {
  display: flex !important;
  justify-content: center;
}

.mdl-card {
  min-height: auto !important;
}

.mdl-textfield--floating-label.is-dirty .mdl-textfield__label, .mdl-textfield__label {
  color: var(--ss-white) !important;
  top: 0 !important;
  font-size: 16px !important;
}

.firebaseui-card-actions {
  padding: 0;
}

.firebaseui-input-floating-button {
  top: 27px !important;
  width: 36px !important;
}

/* Challenges */
.player-challenges-container {
  width: 100%;
  background: rgb(0, 192, 255);
  background: linear-gradient(-124deg, rgb(0, 192, 255) 0%, rgb(17, 146, 188) 100%);
}

.player-challenge-single-wrap {
  grid-template-columns: 4em 2fr;
}

.player-challenges-container .player-challenge-single {
  border-bottom: var(--ss-common-border-width) solid var(--ss-blue3);
  height: 5.3em;
}

.player-challenges-container .player-challenge-single:last-child {
  border-bottom: 0;
}

.player-challenge-single-progress {
  grid-template-columns: 70% auto;
}

.player-challenge-single-progress-wrap, .player-challenge-single-progress-bar {
  height: 0.5em;
}

.player-challenge-single-content {
  order: 1;
}

.player-challenge-single-content-icon {
  order: 0;
}

.player-challenge-single-reward {
  font-weight: bold;
  color: var(--ss-white);
  font-size: 0.7em;
}

.player-challenge-single-reward img {
  width: 0.7em;
}

.player-challenge-single-icon img {
  width: 3.9em;
}

.player-challenge-single-action .btn_sm {
  min-width: auto;
}

.player-challenge-single-action .bevel_pink {
  border-color: var(--ss-pink1);
}

.player-challenge-single-action .btn_sm i {
  font-size: 0.9em;
}

.media-tab-challenges {
  grid-template-columns: auto 1fr !important;
}

.media-tab-challenges p {
  font-size: 0.8em;
}

#game_screen .media-tab-challenges p {
  width: 8.4em;
}

.media-tab-challenges span {
  min-width: 1.4em;
  display: inline-block;
}

.player-challenge-single-action .bevel_pink span {
  font-size: 1em;
}

.player-challenge-single-action-btn:disabled {
  opacity: 0.2;
}

.player-challenge-single-action-claimed {
  background: var(--ss-blue5);
  width: 35%;
  padding: 0.2em 0 0.2em 1em;
  position: absolute;
  bottom: 0;
  right: 0;
  transform-origin: bottom left;
  -ms-transform: skew(-30deg, 0deg);
  -webkit-transform: skew(-30deg, 0deg);
  transform: skew(-30deg, 0deg);
  overflow: hidden;
}

.player-challenge-claimed {
  transform: skew(30deg, 0deg);
}

.player-challenge-single-action-claimed,
.player-challenge-single-action-claimed:before {
  height: 1.8em;
}

/* .player-challenge-single-action-claimed:before {
	content: '';
    position: absolute;
	background: var(--ss-blue5);
	transform: skew(340deg);
    width: 1em;
	bottom: .03em;
    left: -0.5em;
} */
.player-challenge-tool-tip .tool-tip-text {
  top: -0.5em;
  width: 7em;
  right: 1em;
  left: auto;
  line-height: 0.9;
  font-size: 0.8em;
}

.player-challenge-tool-tip .tool-tip > span:after {
  right: -0.7rem;
}

.tool-tip > span:after, .tool-tip div.tool-tip--bubble:after {
  top: 30%;
  transform: rotate(270deg);
  left: auto;
}

.player-challenge-single .checkmark-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 3em solid var(--ss-pink);
  border-right: 3em solid transparent;
}

.player-challenge-single .checkmark-wrap svg {
  width: 1.4em;
  height: 1.4em;
  position: absolute;
  top: -2.8em;
  left: 0.4em;
}

#welcomeBundlePopup {
  padding: 0;
  background: 0;
  border: 0;
}
#welcomeBundlePopup img {
  width: 50em;
}
#welcomeBundlePopup img:hover {
  cursor: pointer;
}

.hvsm-animation {
  animation: hvsm-animation var(--gauge-timer-sec) alternate cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hvsm-paused {
  animation-play-state: paused;
}

.hvsm-dashboard {
  width: 12.7em;
  top: 6em;
}

.hvsm-character-area {
  transition: opacity 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 2em;
  height: 2em;
  border-radius: 100%;
}

.hvsm-heroes-area-glow {
  left: -9.3em;
  top: 3em;
  box-shadow: 0 0 60px 30px #0ff, 0 0 100px 60px #00DCFF, 0 0 140px 90px #fff; /* outer cyan */
}

.hvsm-monsters-area-glow {
  right: -10em;
  top: 3em;
  box-shadow: 0 0 40px var(--gauge-shadow-blur) var(--ss-red-btn-fill);
}

.hvsm-popup-desc {
  align-self: center;
}

.hvsm-popup-item-grid-wrap {
  width: 100%;
  height: 100%;
  padding: 0;
}

.hvsm-popup-item-grid-wrap .equip_purchase_items {
  padding: 0;
}

.hvsm-popup-item-grid-wrap h1 {
  font-size: 1.6em;
  line-height: 1.3;
}

.hvsm-popup-item-grid #equip_grid {
  flex-wrap: wrap;
  max-width: 12em;
  padding-bottom: 1em;
  gap: 0.7em;
}

.hvsm-popup-item-grid h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.hvsm-popup-item-grid img {
  max-width: 100%;
  height: auto;
}

.hvsm-popup-item-grid .equip_cost {
  display: none;
}

.hvsm-popup-open {
  top: 4em;
}

/* .hvsm-popup-heroes-column #equip_grid .grid-item,
#equip_grid .grid-item.item-tag-heroes {
	background-image: linear-gradient(to right bottom, #47f2e8, #00e5f3, #00d7fc, #00c7ff, #00b6ff, #00a9f5, #009ceb, #008fe0, #0085c9, #007ab3, #006f9d, #046487);
}

.hvsm-popup-monsters-column #equip_grid .grid-item,
#equip_grid .grid-item.item-tag-monsters {
	background-image: linear-gradient(to right bottom, #ff5154, #f84f51, #f14e4f, #ea4c4c, #e34a4a, #d94443, #d03e3c, #c63835, #b72c28, #a7201c, #98120f, #890000);
} */
/* .hvsm-popup-monsters-column #equip_grid .grid-item:not(:hover),
#equip_grid .grid-item.item-tag-monsters:not(:hover) {
	border-color: var(--ss-red-btn-fill);
} */
@keyframes hvsm-animation {
  0% {
    transform: translate(-50%, 0) scale(-1) rotate(var(--gauge-value-start));
  }
  100% {
    transform: translate(-50%, 0) scale(-1) rotate(var(--gauge-value));
  }
}
.gauge-meter {
  top: 7em;
  z-index: 5;
  height: 8em;
  width: 28em;
}
#egg-org-meter-popup .gauge-meter {
  top: auto;
}

/* // ss-shell-meter */
.ss-shell-meter .gauge {
  width: 15em;
  height: 10em;
  position: relative;
  min-width: 28em;
  min-height: 10em;
}

.ss-shell-meter .gauge:hover {
  cursor: pointer;
}

.ss-shell-meter .gauge .needle {
  transform-origin: bottom center;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  bottom: 0;
  width: 4em;
  height: 25em;
  margin-bottom: -4%;
  left: 50%;
  transform: translate(-50%, 0) rotate(var(--gauge-value)) scale(-1);
}

.ss-shell-meter .gauge .meter-gauge {
  width: 30em;
}

.ss-shell-meter .gauge .needle img {
  top: 3.7em;
  width: 2.1em;
}

.ss-shell-meter .glow {
  position: absolute;
  width: 8.2em;
  top: 2.1em;
}
.ss-shell-meter .blue {
  right: -0.9em;
}
.ss-shell-meter .red {
  left: -0.9em;
}

#factionPopup {
  width: 35em;
  height: 48em;
}

.factions-popup-no-account {
  bottom: 5em;
  width: 20em;
  z-index: 500;
}

.faction-popup-faction-img {
  opacity: 0.5;
}
.faction-popup-faction-img.faction-active {
  opacity: 1;
}

.faction-popup-title {
  line-height: 1.1;
}

.factions-egg-org-logo {
  width: 5em;
  top: -0.8em;
}

.faction-egg-assasins,
.notify-group-eggOrg {
  border-color: #FF4029;
  background: linear-gradient(0deg, #982313 0%, #000000 44%);
}

.faction-egg-masters {
  border-color: #66BBFE;
  background: linear-gradient(0deg, #0B93BD 0%, #000000 44%);
}

.factions-types-wrap {
  top: 7em;
}
.factions-types-wrap > div {
  left: 45%;
}

/* Faction Area Styles */
/* Animation Styles */
.faction-animation {
  animation: faction-rotate var(--faction-timer-sec, 0.5s) ease-out forwards;
}

.faction-paused {
  animation-play-state: paused;
}

@keyframes faction-rotate {
  from {
    transform: rotate(var(--faction-value-start, 180deg));
  }
  to {
    transform: rotate(var(--faction-value, 180deg));
  }
}
/* Faction Labels */
.faction-labels {
  display: flex;
  justify-content: space-between;
  width: 14em;
  bottom: -0.9em;
}

.faction-0-label {
  background-color: #66BBFE;
  color: white;
}

.faction-1-label {
  background-color: #982313;
  color: white;
}

.faction-label {
  font-weight: bold;
  padding: 0.1em 0.2em;
  width: 6.5em;
  border: 0.15em solid #333;
  transition: all 0.1s ease-in-out;
}
.faction-label img {
  width: 0.9em;
  margin-right: 0.3em;
}
.faction-label span {
  font-size: 1em;
}

.tool-tip-text.faction-tooltip {
  bottom: -2em;
  z-index: 3;
  width: 13em;
}

.tool-tip > span.faction-tooltip:after {
  top: -39%;
  transform: rotate(180deg) translate(-50%, 0);
  left: 44%;
}

.faction-label-txt {
  font-size: 0.6em;
}

.faction-txt-red {
  color: #FF4029;
}

.faction-txt-blue {
  color: #66BBFE;
}

#faction-a .faction-img {
  width: 23em;
}
#faction-a .ss_button {
  right: 3.5em;
}

#faction-b .faction-img {
  width: 19.5em;
}
#faction-b .ss_button {
  left: 2.5em;
}

.ss_join_faction_button,
.faction-switch-cost {
  color: var(--ss-brown) !important;
}

.ss_join_faction_button,
.faction-switch-cost,
.ss_equip_faction_button {
  text-shadow: none;
}

.ss_equip_faction_button,
.ss_join_faction_button {
  box-shadow: var(--ss-btn-dark-shadow);
}

.ss_join_faction_button {
  bottom: -3em;
}

.ss_equip_faction_button {
  background-color: #66BBFE !important;
  color: var(--ss-blue5) !important;
  bottom: -2.5em;
}

.faction-switch-cost {
  background: var(--ss-offwhite);
  margin-top: 0.3em;
  padding: 0.2em 0.3em;
  border: 0.2em solid var(--ss-brown);
}
.faction-switch-cost img {
  width: 1em;
  height: auto;
}

.faction-logo {
  bottom: 1em;
  right: 1em;
  width: 6em;
}
.faction-logo:hover {
  cursor: pointer;
}

.factions-game-score {
  width: 30em;
  top: 1.8em;
  z-index: 6;
}
.factions-game-score .faction-label {
  width: 5.5em;
}
.factions-game-score .faction-1-label .faction-game-logo {
  left: -1.2em;
}
.factions-game-score .faction-0-label .faction-game-logo {
  right: -1.2em;
}
.factions-game-score .faction-game-logo {
  width: 2em;
}
.factions-game-score .tool-tip-text.faction-tooltip {
  bottom: 0;
  top: auto;
  left: 0;
  transform: translateX(-92%) scale(0.7);
}
.factions-game-score .tool-tip > span.faction-tooltip:after {
  top: auto;
  transform: rotate(270deg) translate(50%, 0);
  bottom: 0;
  right: -6%;
  left: auto;
}

.text-factions-a {
  color: #66BBFE;
}

.text-factions-b {
  color: #FF4029;
}

.faction-hover {
  width: 10em;
  margin-left: -1.75em;
}

#notificationPopup .notify-group-eggOrg h1 {
  text-shadow: none;
}
#notificationPopup p, #notificationPopup .notify-group .item-name {
  color: var(--ss-white) !important;
}

/* --------------------- Stuff ----------------*/
#ss_background {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  /* background: var(--ss-lightoverlay) no-repeat center center fixed; */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

/* ----------------------------------------------------------------- Scrolling -- */
::-webkit-scrollbar {
  width: 0.7em;
  height: 1em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}

::-webkit-scrollbar,
::-webkit-scrollbar-track {
  background: var(--ss-blue3);
}

::-webkit-scrollbar-thumb {
  height: 0.6em;
  border: 0.1em solid var(--ss-blue4);
  background-clip: padding-box;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
  background-color: var(--ss-blue1);
  /* -webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05);
  box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05); */
}

::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.v_scroll {
  overflow-y: auto;
  overflow-x: hidden;
}

.noscroll, .noScrollIngame {
  overflow: hidden;
}

/* ----------------------------------------------------------------- Main content-- */
.main-content {
  width: 100%;
  grid-template-columns: var(--ss-aside-panel-width) 1fr;
}

.main-aside {
  width: 15em;
  z-index: 2;
}

.game-screen .main-aside {
  pointer-events: none;
}
.game-screen.is-paused .main-aside {
  pointer-events: all;
}

/* ----------------------------------------------------------------- gdpr -- */
.gdpr_banner {
  position: absolute;
  bottom: 0em;
  left: 0;
  width: 100%;
  background-color: var(--ss-blue5);
  border-top: 0.1em solid var(--ss-blue0);
  color: var(--ss-white);
  font-weight: bold;
  z-index: 10000000000;
  padding: var(--ss-space-md);
}

.gdpr_banner a {
  color: var(--ss-red0);
  font-size: 1em;
}

.gdpr_banner div {
  font-size: 1em;
}

/* ----------------------------------------------------------------- Logo -- */
.home-screen-logo {
  filter: drop-shadow(1mm 2mm 0mm rgba(0, 0, 0, 0.3));
}

#logo {
  width: calc(var(--ss-space-lg) * 13);
  height: auto;
  pointer-events: auto;
  margin: var(--ss-space-lg) 0 var(--ss-space-lg) var(--ss-space-lg);
}

.egg-org-logo {
  height: auto;
  width: 10em;
  position: absolute;
  bottom: 0;
  transform: translate(-8em, 2em) rotate(8deg);
}

/* ----------------------------------------------------------------- Egg / Equip -- */
.item-search-label .fa-search {
  position: absolute;
  right: 0;
  bottom: -0.3em;
}

#equip_weapon_panel {
  margin-bottom: var(--ss-account-panel-height);
}

.screen-inventory #equip_weapon_panel {
  margin-bottom: 0;
}

#weapon_select {
  zoom: 0.85;
  width: 30em;
}

.pause-container #weapon_select {
  width: auto;
  margin-bottom: 0 !important;
}

.weapon_img {
  box-sizing: border-box;
  background-color: var(--ss-blue3);
  height: 4em;
  width: 4em;
  border: var(--ss-common-border-width) solid var(--ss-blue3);
  fill: var(--ss-white);
  cursor: pointer;
}

.pause-container .weapon_img {
  width: 3em;
  height: 3em;
}

.weapon-grid {
  width: 16em;
}

.weapon_img:hover, #weapon_select .weapon_selected {
  border: var(--ss-common-border-width) solid var(--ss-white);
  box-shadow: var(--ss-box-shadow-1);
}

#weapon_select .weapon_selected {
  background-color: var(--ss-yolk);
}

#weapon_select .weapon_disabled {
  background-image: url("../img/svg-icons/ico-disabled.svg");
  fill: var(--ss-blue1);
  border-color: var(--ss-blue2);
  background-color: var(--ss-blue2);
}

#weapon_select .noclick {
  cursor: not-allowed;
}

#popupGoldenChicken #popupInnards:first-of-type {
  margin-right: var(--ss-space-lg);
}

/* #popupInnards li {
	font-weight: bold;
	font-size: 1em;
	width: 13em;
} */
.pause-bg {
  background: var(--ss-lightoverlay) no-repeat;
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  padding: 0;
  text-align: center;
  min-width: 20em;
  width: 100%;
}

.flex-auto {
  flex: 1 0 auto;
}

.pause-bg h3 {
  background: none;
  margin: var(--ss-space-md) 0 0 0;
  padding: 0;
  font-weight: 100;
  font-size: 1.2em;
  color: var(--ss-white);
}

.blueTeam {
  color: var(--ss-white) !important;
}

.redTeam {
  color: var(--ss-white) !important;
}

/* ----------------------------------------------------------------- Pause Button Classes -- */
.pauseButtons {
  display: flex;
  flex-direction: column;
  padding-right: 1em;
  flex: 0 0 14em;
}

.pauseButtons button {
  text-align: left;
  width: 13em;
  margin: 0 0 var(--ss-space-sm) 0;
  margin-bottom: 0.5em;
  height: 2.3em;
}

#pauseButtons .ss_button {
  min-width: 12em;
}

/* ----------------------------------------------------------------- Language Specific Stuff -- */
#app.zh h1, #app.zh h2, #app.zh h3, #app.zh h4, #app.zh h5, #app.zh h6 {
  font-weight: bold;
}

#app.ko h1, #app.ko h2, #app.ko h3, #app.ko h4, #app.ko h5, #app.ko h6 {
  font-weight: bold;
}

#app.ru h1, #app.ru h2, #app.ru h3, #app.ru h4, #app.ru h5, #app.ru h6 {
  font-weight: bold;
}

#app.ko #footer_links_panel a, #app.zh #footer_links_panel a {
  font-weight: 600 !important;
}

#app.ko #buyPassChickenSpeech, #app.zh #buyPassChickenSpeech {
  line-height: 1.2em;
}

#app.ru .ss_bigtab {
  font-weight: bold;
}

/* ----------------------------------------------------------------- Responsive Stuff -- */
@media (max-aspect-ratio: 4/3) {
  .ss_bigtab {
    min-width: 6em;
  }
  .ico_itemtype {
    width: 3.25em;
    height: 3.25em;
    margin-bottom: 0.25em;
  }
}
/* ----------------------------------------------------------------- Dev Classes -- */
.devborder {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  border: 1px solid #F00;
}

.devbutton {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 50%;
  margin-right: -100px;
  padding: 5px;
  width: 200px;
}

.devad {
  width: 100%;
  height: 4em;
  margin: 0;
}

.firebaseID {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -10em;
  width: 20em;
  text-align: center;
}

/* ----------------------------------------------------------------- Dev Classes -- */
/* #anonWarningPopup {
	background: var(--ss-yolk);
	border-color: var(--ss-brown);
}
#anonWarningPopup .popup_sm_content {
	text-align: left;
}
#anonWarningPopup #popup_title.shadow_blue4 {
	background: var(--ss-yolk2);
	padding: .2em 1em !important;
	text-shadow: none;
} */
#anonWarningPopup .egg_icon {
  vertical-align: middle;
}

/* ----------------------------------------------------------------- ASC video player -- */
.video_ad_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.ima-controls-div {
  display: none !important;
}

.paper-doll-click-container {
  height: 26em;
  width: 25em;
}

/* 
#event-notifications {
	margin-top: -3.9em;
} */
/* Ad blocker 8 */
.ad-blocker-popup {
  position: relative;
  z-index: 4;
}

/* .wrapper .spinner,
.wrapper .filler,
.wrapper.mask {
	animation-delay: -1500s;
} */
.twitchDrops .item-name {
  bottom: 0;
}

/** ---------------------------------------------- Localization layouts */
.ru .vip-item--inner {
  padding: 1em 0;
}

.ru .vip-item .ss_button {
  font-size: 0.8em;
}

.zh .vip-item--inner .banner {
  width: 4em;
}

.ko .vip-item,
.zh .vip-item {
  display: flex;
  justify-content: center;
}

@keyframes swing {
  0% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(-12deg);
  }
}
/* adBlockerVideo */
#adBlockerVideo {
  background: var(--ss-white);
  border: 0;
  padding: 0;
  border-radius: 0 !important;
  max-width: 32em;
}

#adBlockerVideo p {
  color: var(--ss-adblocker-text);
  margin: 0;
  padding: 1em 2em;
  font-weight: 700;
  font-size: 1.1em;
}

#adBlockerVideo img {
  width: 100%;
  height: auto;
}

/* NEW HOME SCREENS */
/* .main-screens-wrapper {
	grid-template-columns: auto var(--ss-sidebar-width);
} */
/* ICONS */
.map-avg-size-icon {
  width: 1.5em;
  height: 1.5em;
}

.gameCanvas {
  background: none;
  width: 100%;
  height: 100%;
  margin: 0;
  top: auto;
  right: auto;
  bottom: auto;
  position: absolute;
  pointer-events: none;
  transition: height 0.3s ease-in-out, width 0.3s ease-in-out;
  overflow: hidden;
}

.is-paused .gameCanvas canvas {
  pointer-events: none;
}

.gameCanvas {
  transition: margin 0.3s ease-in-out, width 0.3s ease-in-out, height 0.3s ease-in-out, left 0.3s ease-in-out;
  transform-origin: left top;
  transform: translate(0, 0);
  left: 0;
}

#best_streak_container {
  position: absolute;
  top: var(--ss-space-sm);
  left: 50%;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  z-index: 6;
}

#best_streak_container h1 {
  margin: 0;
  padding: 0;
  display: inline;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
  font-family: "Nunito", sans-serif !important;
  font-size: 2.5em !important;
  color: var(--ss-white) !important;
  font-weight: bold !important;
  text-transform: lowercase;
  padding-left: 1.25em;
  padding-top: 0em;
  background-image: url(../img/ico_streak.webp);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
}

#teamScores {
  top: 0;
  display: none;
  z-index: 6;
}

#teamScores .vs {
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

#weaponBox {
  display: none;
  position: absolute;
  right: 0.75em;
  bottom: 0.5em;
  text-align: right;
}

#grenades {
  padding-bottom: 0;
  margin-bottom: 0;
}

#grenades img {
  width: 3.25em;
  height: auto;
}

#weaponName {
  text-align: right;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  line-height: 0;
  display: none;
}

#ammo {
  text-align: right;
  font-size: 3.25em;
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  line-height: 1em;
  margin: 0;
  padding-right: 1.2em;
  padding-top: 0em;
  margin-bottom: 0.1em;
  background-image: url(../img/ico_ammo.webp);
  background-position: right center;
  background-size: contain;
  background-repeat: no-repeat;
}

#hitMarkerContainer {
  position: absolute;
  left: 50%;
  top: 50%;
}

.hitMarker {
  position: absolute;
  width: 20em;
  height: 20em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: radial-gradient(150% 100% at 50% 56%, transparent 52%, red 55%);
  animation: 2s hitMarker forwards;
}

@keyframes hitMarker {
  0% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#healthContainer {
  position: absolute;
  left: 50%;
  bottom: 1em;
  transform: translateX(-50%);
  display: inline-block;
  width: 6em;
  height: 6em;
  background: var(--ss-blue5);
  border-radius: 50%;
  text-align: center;
}

#healthContainer.hard-boiled {
  width: 7.1em;
  height: 7.1em;
}

/* #healthContainer {
    position: absolute;
    left: 50%;
    bottom: 1em;
    transform: translateX(-50%);
    display: inline-block;
    width: 6.4em;
    height: 6.4em;
    background: var(--ss-blue5);
    border-radius: 50%;
	text-align: center;
} */
#healthHp {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  color: var(--ss-white);
  font-size: 1.2em;
}

.healthBar-area {
  transform-origin: center;
  transform: rotate(90deg);
  fill: transparent;
  transition: all 0.3s ease-in-out;
  stroke-width: 1em;
}

.healthBar {
  stroke: white;
  stroke-dasharray: 14.4513em;
}

.healthBar-hardBoiled {
  stroke: var(--ss-team-blue-light);
  stroke-dasharray: 18em;
}

.healthBar-hardBoiled-stroke {
  stroke: var(--ss-blue5);
  stroke-dasharray: 15.4em;
}

.healthYolk {
  fill: orange;
}

.healthSvg {
  width: 100%;
  height: 100%;
}

#hardBoiledContainer {
  position: absolute;
  left: 50%;
  bottom: 1em;
  transform: translateX(-50%);
  display: inline-block;
  width: 6em;
  height: 6em;
  text-align: center;
}

#hardBoiledValue {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  color: var(--ss-white);
  font-size: 1.6em;
  transform: translateY(-2.6em);
}

#hardBoiledShieldContainer {
  width: 100%;
  height: 100%;
}

.hardBoiledShield {
  position: absolute;
  transform: translateX(-50%);
  height: 100%;
}

.egg-breaker-icon {
  width: 2em;
  fill: var(--ss-vip);
}

.shell-streak-restock-icon {
  height: 2em;
}

.egg-breaker-wrap {
  bottom: 1em;
  transform: translate(65%, -50%);
  left: 50%;
}

.egg-breaker-timer {
  font-size: 0.8em;
  font-weight: 900;
  color: var(--ss-blue5);
}

.egg-breaker-container {
  grid-template-columns: 2em 1fr;
  position: relative;
  gap: 0.3em;
  height: 2.5em;
}

.egg-breaker-msg {
  line-height: 1;
  color: var(--ss-vip);
  font-weight: 700;
  font-size: 0.7em;
  align-self: center;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

.egg-breaker-msg .x-two-msg {
  display: block;
}

.x-two-msg span {
  font-size: 0.5em;
}

#eggBreakerContainer {
  position: absolute;
  left: calc(50% + 9em);
  bottom: 1em;
  transform: scale(4) translateY(-3em);
  transform-origin: 50% 100%;
  width: 6em;
  height: 6em;
}

#eggBreakerContainer.on {
  visibility: visible;
  transform: scale(1) translateY(0);
  transition: 1s;
}

#eggBreakerContainer.off {
  visibility: hidden;
}

#eggBreakerIcon {
  position: absolute;
  height: 100%;
}

#eggBreakerTimer {
  position: absolute;
  color: white;
  text-shadow: var(--ss-yolk) 0 0 0.1em, black 0 0.1em 0.2em;
  font-size: 2.5em;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  text-align: center;
  width: 100%;
  top: 24%;
}

.shell-streak-restock-icon {
  width: 2em;
}

.is-paused #shellStreakContainer {
  transform: scale(0.7) translateX(-11em);
  left: calc(var(--ss-menu-width) + var(--player-score-width) + 5em);
  top: 0.5em;
}

.is-paused.is-vip #shellStreakContainer {
  transform: scale(0.7) translateX(-5em);
}

.is-vip:not(.is-paused) #shellStreakContainer {
  left: 16em;
}

#shellStreakContainer {
  position: absolute;
  top: 0.6em;
  left: calc(var(--player-score-width) + 2em);
  z-index: 6;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

#shellStreakCaption {
  font-size: 1.1em;
  color: var(--ss-white);
  margin: 0;
}

#shellStreakCaptionStreak {
  font-size: 3em;
  line-height: 0;
  transition: all 0.15s ease-in-out;
  transform: scale(1) rotate(0);
}

#shellStreakCaptionStreak span {
  font-size: 0.6em;
}

.streak-blow-out {
  transform: scale(1.5) rotate(-22deg);
}

.streak-blow-out.hard-boiled {
  transform: scale(1.5) rotate(-22deg);
  color: var(--ss-blue2);
}

#shellStreakMessage {
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
  font-size: 1em;
  margin: 0;
}

/* #shellStreakContainer.appear {
    visibility: visible;
    transform: scale(1);
	transition: ease-in-out transform 0.5s;
} */
.shellStreakCaptionWrap {
  line-height: 1;
  font-size: 0.9em;
}

#grenadeThrowContainer {
  position: absolute;
  display: flex;
  visibility: hidden;
  align-items: flex-end;
  top: 50%;
  left: 50%;
  transform: translate(-6em, -3em);
  width: 1em;
  height: 6em;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0.3em;
  padding: 0.25em;
}

#grenadeThrow {
  width: 100%;
  height: 50%;
  border-radius: 0.05em;
  background: white;
}

.in-game-notification {
  padding: 1em;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
  background: rgba(0, 0, 0, 0.25);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
}

.in-game-notification.light-dark {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(0, 0, 0) 100%);
}

#killBox, #deathBox {
  display: none;
  width: 20em;
  bottom: 20%;
  color: var(--ss-white);
  text-align: center;
}

#kill-death-box {
  width: 20em;
  bottom: 20%;
  color: var(--ss-white);
  text-align: center;
  transform: translate(-50%, 0) scale(1);
  transition: all 0.3s;
}

.kill-death-msg {
  transition: all 0.2s ease-in-out;
}

@keyframes shellStreakMessage {
  from {
    transform: scale(0) rotate(0deg);
    opacity: 1;
  }
  10% {
    transform: scale(2) rotate(360deg);
    opacity: 1;
  }
  15% {
    transform: scale(1) rotate(360deg);
  }
  85% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(360deg);
  }
  to {
    opacity: 0;
    transform: scale(1) translateY(10em) rotate(360deg);
  }
}
#cts-message.in-game-notification {
  right: 1.5em;
  padding: 0.5em 1.5em 0.5em 0;
}

#cts-message .icon-spatula {
  display: block;
  position: static;
  width: 2em;
  height: 4em;
  transform: rotate(10deg);
  fill: var(--ss-gold);
}

#cts-message .team-title {
  line-height: 1;
}

#cts-message.red .team-title {
  color: var(--ss-team-red-light) !important;
  text-shadow: 0.1em 0.1em 0 var(--ss-team-red-dark);
}

#cts-message.blue .team-title {
  color: var(--ss-team-blue-light) !important;
  text-shadow: 0.1em 0.1em 0 var(--ss-team-blue-dark);
}

#cts-message.blue .icon-spatula {
  fill: var(--ss-team-blue-light);
  filter: drop-shadow(0.1em 0.1em 0 var(--ss-team-blue-dark));
}

#cts-message.red .icon-spatula {
  fill: var(--ss-team-red-light);
  filter: drop-shadow(0.1em 0.1em 0 var(--ss-team-red-dark));
}

#KILL_STREAK {
  font-style: italic;
}

#KILL_STREAK,
.game-start-loading-message,
.game-start-loading-message h3 {
  text-align: center;
}

.game-start-loading-message,
.game-start-loading-message h3 {
  width: 100%;
  display: block;
}

.game-start-loading-message,
.btn__respawning {
  min-height: 7em;
}

#kill-death-box .killed h3, #kill-death-box .died h2 {
  font-weight: 900;
  margin: 0;
  color: var(--ss-white);
}

#kill-death-box .killed h3 {
  margin: 0.2em 0 0;
}

#kill-death-box .killed h2 {
  line-height: 1em;
  margin: 0;
  font-weight: 600;
  color: var(--ss-yellow);
  font-family: "Nunito", sans-serif;
  text-transform: none !important;
}

#kill-death-box .h1 {
  font-size: 3em;
  top: -1em;
}

#kill-death-box .h1 span {
  font-size: 0.6em;
}

/* #deathBox {
	position: absolute;
	display: none;
	width: 100%;
	top: 20%;
	color: #fff;
	text-align: center;
} */
.kill-death-box-img {
  top: -1em;
  width: 2.3em;
}

#gameMessage {
  position: absolute;
  visibility: hidden;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  z-index: 6;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

#gameMessage.show {
  visibility: visible;
  animation: 2.5s gameMessage forwards;
}

#gameMessage.hide {
  visibility: hidden;
}

@keyframes gameMessage {
  0% {
    transform: translateX(-50%) scale(0);
  }
  10% {
    transform: translateX(-50%) scale(1.4);
  }
  15% {
    transform: translateX(-50%) scale(1);
  }
  20% {
    transform: translateX(-50%) scale(1.2);
  }
  25% {
    transform: translateX(-50%) scale(1);
  }
  30% {
    transform: translateX(-50%) scale(1.1);
  }
  35% {
    transform: translateX(-50%) scale(1);
  }
  90% {
    transform: translateX(-50%) scale(1);
  }
  100% {
    transform: translateX(-50%) scale(0);
    visibility: hidden;
  }
}
#game_screen #event-notifications {
  margin: 0;
  position: absolute;
  z-index: 5;
  top: 0.8em;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#game_screen #event-notifications img {
  height: 3em;
  width: auto;
}

#playerChallengeComplete {
  top: 10%;
  text-align: center;
  z-index: 6;
  color: var(--ss-white);
}

#playerChallengeImg {
  width: 6.5em;
  height: auto;
}

/* Player challenges */
.player-challenges-aside {
  width: 100%;
}

.pause-container .player-challenges-aside {
  justify-self: end;
  /* height: 16.7em; */
}

.pause-container .player-challenges-aside,
.pause-ad-wrap {
  width: 20em;
}

#playerList {
  display: table;
  border-collapse: separate;
  border-spacing: 0.2em;
  position: absolute;
  left: 1em;
  top: 1em;
  z-index: 6;
  width: var(--player-score-width);
}

.player__container {
  margin: var(--ss-space-lg) var(--ss-space-lg) 0 var(--ss-space-lg);
  height: 50vh;
  flex: 0 0 200px;
  max-width: 200px;
  align-self: flex-start;
  position: absolute;
  top: 0;
  left: 0;
}

#pause-screen-player-list .player__container {
  margin: 0;
  position: relative;
  width: 100%;
  height: calc(100% - 6em);
  flex: none;
  overflow-x: hidden;
  max-width: none;
  overflow-y: scroll;
  padding-right: 1em;
  box-sizing: content-box;
}

#pause-screen-player-list.pause-screen-free-for-all .player__container {
  height: calc(100% - 2em);
}

#pause-screen-player-list {
  padding-left: var(--ss-space-lg);
  overflow: hidden;
  justify-content: space-between;
  min-height: 32em;
}

#pause-screen-player-list #playerList {
  display: flex;
  flex-direction: column;
  z-index: 6;
  position: relative;
  width: calc(100% - 1em);
}

#pause-screen-player-list .playerSlot--name-score {
  width: 100%;
}

#playerList {
  display: table;
  border-collapse: separate;
  border-spacing: 0.2em;
  position: relative;
  left: 0;
  top: 0;
  z-index: 6;
}

.playerSlot {
  position: relative;
  margin-bottom: 0.2em;
}

.playerSlot--icons {
  width: 3.5em;
  display: block;
  position: absolute;
  right: -3.8em;
  top: 0;
  color: var(--ss-white);
}

.playerSlot--icons .red {
  color: red;
}

.playerSlot--icons .hidden {
  display: none;
}

.playerSlot--icons i {
  margin-right: 0.2em;
}

.playerSlot--icons .vip-egg {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.playerSlot--name {
  overflow: hidden;
}

.playerSlot--name-score {
  display: block;
  width: 12em;
  padding: 0.05em 0.5em 0.05em 0.5em;
  border-radius: 0.2em;
  overflow: hidden;
  font-weight: 600;
}

.playerSlot--score {
  font-weight: 900;
  padding-left: 1em;
}

.playerSlot--name-score,
.btn-container {
  display: flex !important;
  justify-content: space-between !important;
  white-space: nowrap;
}

.playerSlot-player-is-me {
  background: var(--ss-me-player-bg);
  color: var(--ss-white-90);
}

.playerSlot-player-is-me.playerSlot-me-red {
  background: var(--ss-team-red-light);
  color: var(--ss-team-red-dark);
}

.playerSlot-player-is-me.playerSlot-me-blue {
  background: var(--ss-team-blue-light-trans);
  color: var(--ss-team-blue-dark);
}

.playerSlot-player-is-them {
  color: var(--ss-white-60);
}

.playerSlot-them {
  background: var(--ss-shadow);
}

.playerSlot-them-blue {
  background: var(--ss-team-blue-dark-trans);
  color: var(--ss-team-blue-light-trans);
}

.playerSlot-them-red {
  background: var(--ss-team-red-dark-trans);
  color: var(--ss-team-red-light-trans);
}

.playerSlot-spectating {
  border: solid 3px white;
}

.player-action-vip-img img {
  width: 5em;
}

.vip-member-wrapper {
  margin: 1em auto;
}

.chat-wrapper {
  pointer-events: none;
}
.is-paused .chat-wrapper {
  left: 0;
  pointer-events: all;
}

.chat-wrapper.pause-ui-element {
  bottom: var(--ss-space-lg);
  width: 30%;
  left: 1em;
  z-index: 2;
}

.is-paused .pause-ui-element.chat-hidden.has-announcement {
  height: auto;
}

.is-paused #chatIn {
  position: absolute;
  display: block;
  width: 11em;
  left: var(--ss-space-md);
}

.is-paused .chat-container {
  display: block;
  height: calc(var(--ss--chat-height) - 3.5em);
  margin-right: var(--ss-space-md);
  margin-left: var(--ss-space-md);
  overflow-x: hidden;
  margin-top: var(--ss-space-md);
}

.chat {
  color: var(--ss-white);
  text-shadow: 0.05em 0.05em 0px rgba(0, 0, 0, 0.35);
  z-index: 5;
  font-weight: bold;
}

.is-paused .chat-item:first-child.chat-pinned-item {
  color: #fff100;
  font-weight: bold;
  background-color: #5B9DB3;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.chat-pinned-item {
  color: #fff100;
}

.chat-item {
  hyphens: auto;
}

.chat-player-name {
  font-weight: bold;
}

#chatOut {
  display: none;
  bottom: 2.5em;
  left: 1em;
}

#chatIn {
  display: none;
  color: #fff100;
  bottom: 1em;
  left: 1em;
  width: 100%;
  border: none;
  background: none;
  font-family: "Nunito";
  font-weight: bold;
}

#readouts, #serverAndMapInfo {
  display: block;
  text-align: right;
  color: var(--ss-white);
  font-weight: bold;
  clear: both;
  font-size: 1.3em !important;
  text-transform: uppercase;
  line-height: 1em;
  white-space: nowrap;
  z-index: 5;
}

.is-paused #readouts {
  position: relative;
  top: 0;
}

#readouts div {
  display: inline;
  margin-left: 0.1em;
}

#scopeBorder {
  box-sizing: initial;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0px;
  left: 0px;
  pointer-events: none;
  overflow-x: hidden;
}

#maskleft, #maskright {
  background: var(--ss-black);
  flex: 1;
}

#maskmiddle {
  background: url("../img/scope.webp") center center no-repeat;
  background-size: contain;
  width: 100vh;
  height: 100vh;
}

.crosshair {
  position: absolute;
  transform-origin: 50% top;
  top: 50%;
  border: solid 0.05em black;
  height: 0.8em;
  margin-bottom: 0.12em;
  opacity: 0.7;
}

.crosshair.normal {
  left: calc(50% - 0.15em);
  background: white;
  width: 0.3em;
}

.crosshair.powerful {
  left: calc(50% - 0.25em);
  background: red;
  width: 0.5em;
}

#reticleDot {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: white;
  border: solid 0.05em black;
  width: 0.3em;
  height: 0.3em;
  opacity: 0.7;
}

#redDotReticle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--ss-yolk);
  width: 0.7em;
  height: 0.7em;
  border-radius: 100%;
}

#shotReticleContainer {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  overflow-x: hidden;
}

#reticleContainer {
  width: 6em;
  height: 6em;
  pointer-events: none;
}

#crosshairContainer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: perspective(0px);
}

.shotReticle {
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  transform-origin: center;
  background: transparent;
  border: solid;
  border-radius: 30%;
}

.shotReticle:nth-child(odd) {
  transform: translate(-50%, 33%) rotate(0deg);
  width: 4em;
  height: 60%;
}

.shotReticle:nth-child(2n) {
  transform: translateX(-50%) rotate(90deg);
  width: 2.5em;
  height: 100%;
}

.shotReticle.fill.normal {
  border-color: white;
  border-left: solid transparent;
  border-right: solid transparent;
  border-width: 0.18em;
  padding: 0.18em;
}

.shotReticle.fill.powerful {
  border-color: red;
  border-left: solid transparent;
  border-right: solid transparent;
  border-width: 0.3em;
  padding: 0.1em;
}

.shotReticle.border.normal {
  border-color: black;
  border-left: solid transparent;
  border-right: solid transparent;
  border-width: 0.2em;
}

.shotReticle.border.powerful {
  border-color: black;
  border-left: solid transparent;
  border-right: solid transparent;
  border-width: 0.4em;
}

@keyframes armed {
  0% {
    transform: translate(-50%, -50%) scale(1.25);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes unarmed {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
#readyBrackets {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
}

#readyBrackets.ready {
  animation: armed 0.2s linear;
  width: 4em;
  height: 4em;
  border-color: rgb(0, 255, 0);
}

#readyBrackets.notReady {
  animation: unarmed 0.2s linear;
  width: 8em;
  height: 8em;
  border-color: rgb(255, 0, 0);
}

.readyBracket {
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  border: solid;
  border-color: inherit;
  border-width: 0.3em 0 0 0.3em;
  transform-origin: top left;
}

.readyBracket:nth-child(1) {
  left: 100%;
  transform: rotate(90deg);
}

.readyBracket:nth-child(2) {
  left: 100%;
  top: 100%;
  transform: rotate(180deg);
}

.readyBracket:nth-child(3) {
  top: 100%;
  transform: rotate(270deg);
}

#spatulaPlayer {
  display: none;
  position: absolute;
  width: 2.8em;
  left: 50%;
  bottom: 1.4em;
  transform: translateX(-8.5em) rotate(10deg);
  transform-origin: center bottom;
  fill: var(--ss-gold);
}

#spatulaPlayer.capture {
  display: block;
  animation: spatulaPlayerCapture 0.5s ease-in-out;
}

#spatulaPlayer.drop {
  display: none;
}

@keyframes spatulaPlayerCapture {
  from {
    opacity: 0;
    transform: translate(0, 0) scale(6) rotate(10deg);
  }
  to {
    opacity: 1;
    transform: translate(-8.5em, 0) scale(1) rotate(10deg);
  }
}
#captureContainer {
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 0.6em;
  transform: translateX(-50%) scale(var(--paused-ui-scale));
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

#captureCenter {
  display: inline-block;
  text-align: center;
}

#captureBarContainer {
  width: 20em;
  height: 3em;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 2em 2em 2em 2em;
  border: solid 0.5em rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

#captureBar {
  width: 19em;
  height: 3em;
  transform-origin: left;
  transform: scaleX(100%);
}

#captureBarText {
  color: white;
  font-size: 1.25em;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

.captureCrown {
  height: 3em;
}

.captureScoreContainer {
  display: inline-block;
  text-align: center;
}

.captureScore {
  color: white;
  font-size: 1.5em;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

#captureBar.empty {
  visibility: hidden;
}

#captureBar.contested {
  animation: contestedBar 300ms infinite alternate;
}

@keyframes contestedBar {
  0% {
    background: var(--ss-team-blue-light);
  }
  100% {
    background: var(--ss-team-red-light);
  }
}
#captureBar.takeover {
  background: white;
}

#captureBar.blue {
  background: var(--ss-team-blue-light);
}

#captureBar.red {
  background: var(--ss-team-red-light);
}

#captureBar.blueAbandoned {
  background: var(--ss-team-blue-dark);
}

#captureBar.redAbandoned {
  background: var(--ss-team-red-dark);
}

#captureIconContainer {
  position: fixed;
  transform: translate(-50%, -50%);
  visibility: hidden;
}

#captureIconContainer.on {
  visibility: visible;
}

#captureInsideContainer {
  transform: translate(-50%, -50%);
  text-align: center;
}

#captureIconCaption {
  color: white;
  font-size: 1.5em;
  font-weight: 900;
  transform: translateY(-0.2em);
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

#captureIcon.empty {
  fill: black;
}

#captureIcon.contested {
  animation: contestedIcon 300ms infinite alternate;
}

@keyframes contestedIcon {
  0% {
    fill: var(--ss-team-blue-light);
  }
  100% {
    fill: var(--ss-team-red-light);
  }
}
#captureIcon.takeover {
  fill: rgb(225, 225, 225);
}

#captureIcon.blue {
  fill: var(--ss-team-blue-light);
}

#captureIcon.red {
  fill: var(--ss-team-red-light);
}

#captureIcon.blueAbandoned {
  fill: var(--ss-team-blue-dark);
}

#captureIcon.redAbandoned {
  fill: var(--ss-team-red-dark);
}

#captureIcon {
  position: absolute;
  height: 3em;
  top: 3.8em;
  left: 1.1em;
}

#captureRingBackground {
  position: absolute;
  width: 6.5em;
  height: 6.5em;
  border: solid 0.5em black;
  box-shadow: 0 0 0 0.15em inset rgba(0, 0, 0, 0.5), 0 0 0 0.15em rgba(0, 0, 0, 0.5);
  border-radius: 7em;
}

#captureRingContainer {
  position: relative;
  width: 6.5em;
  height: 6.5em;
  overflow: hidden;
  transform: translateY(20%);
}

#captureRing {
  position: absolute;
  width: 6.5em;
  height: 6.5em;
  border: solid 0.5em red;
  border-radius: 7em;
  transform: translateY(-20%);
}

#captureRing.empty {
  visibility: hidden;
}

#captureRing.contested {
  animation: contestedRing 300ms infinite alternate;
}

@keyframes contestedRing {
  0% {
    border-color: var(--ss-team-blue-light);
  }
  100% {
    border-color: var(--ss-team-red-light);
  }
}
#captureRing.takeover {
  border-color: rgb(225, 225, 225);
}

#captureRing.blue {
  border-color: var(--ss-team-blue-light);
}

#captureRing.red {
  border-color: var(--ss-team-red-light);
}

#captureRing.blueAbandoned {
  border-color: var(--ss-team-blue-dark);
}

#captureRing.redAbandoned {
  border-color: var(--ss-team-red-dark);
}

#bigMessageContainer {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}

#bigMessage {
  position: absolute;
  left: 50%;
  animation: bigMessage 4500ms linear 300ms forwards;
  visibility: hidden;
}

.bigMessageText {
  white-space: nowrap;
  font-family: "Sigmar One", sans-serif;
  font-size: 6em;
  font-style: italic;
}

@keyframes bigMessage {
  0% {
    visibility: visible;
    transform: scaleX(0) translateX(50vw);
    transform-origin: center;
    opacity: 0;
  }
  7% {
    transform: scaleX(1) translateX(-47%);
    transform-origin: center;
    opacity: 1;
  }
  93% {
    transform: scaleX(1) translateX(-53%);
    opacity: 1;
  }
  100% {
    transform: translateX(-100vw);
    transform-origin: left;
    opacity: 0;
  }
}
#bigMessageCaption {
  margin-top: 5.5em;
  font-size: 1.5em;
  font-weight: bold;
  animation: bigMessageCaption 3400ms linear 1000ms forwards;
  visibility: hidden;
  color: rgb(255, 192, 50);
}

@keyframes bigMessageCaption {
  0% {
    visibility: visible;
    opacity: 0;
    transform: scale(0);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  95% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
#bigMessageBar {
  position: absolute;
  width: 100%;
  height: 14em;
  background: white;
  border-top: solid white 1em;
  border-bottom: solid white 1em;
  animation: bigMessageBar 5000ms ease-out forwards;
  transform-origin: top;
  box-shadow: 0 0 1em rgb(255, 255, 255);
}

@keyframes bigMessageBar {
  0% {
    transform: scale(0, 0.1) translateY(-50%) perspective(1px) translateZ(0);
  }
  5% {
    transform: scale(1, 0.1) translateY(-50%) perspective(1px) translateZ(0);
    background: white;
    border-color: white;
  }
  10% {
    transform: scaleY(1) translateY(-50%) perspective(1px) translateZ(0);
    background: rgba(0, 0, 0, 0.75);
    border-color: var(--ss-big-message-border-color);
  }
  95% {
    transform: scaleY(1) translateY(-50%) perspective(1px) translateZ(0);
    background: rgba(0, 0, 0, 0.75);
    border-color: var(--ss-big-message-border-color);
  }
  100% {
    transform: scale(1, 0) translateY(-50%) perspective(1px) translateZ(0);
    background: white;
    border-color: white;
  }
}
.teamScore {
  /* position: absolute; */
  /* width: 12vh;
  height: 8vh;
  top: 0.5em;
  padding: 2vh;
  box-sizing: border-box;
  border: solid rgba(0, 0, 0, 0.5);
  text-shadow: none;
  text-align: center;
  z-index: 6; */
}

/* .teamScore.red {
	border-radius: 7vh 5vh 5vh 7vh / 4vh 4vh 4vh 4vh;
	border-right-width: 4vh;
	transform: translateX(-22vh);
}

.teamScore.blue {
	border-radius: 5vh 7vh 7vh 5vh / 4vh 4vh 4vh 4vh;
	border-left-width: 4vh;
	transform: translateX(10vh);
} */
.teamScore.active {
  opacity: 1;
}

.teamScore.inactive {
  opacity: 0.5;
}

.teamScore .fas {
  font-size: 3.5em;
}

.teamScore.red i {
  color: var(--ss-team-red-light);
}

.teamScore.red .number {
  color: var(--ss-team-red-dark);
}

/* .teamScore.red.inactive {
	color: #f00;
} */
.teamScore.blue i {
  color: var(--ss-team-blue-light);
}

.teamScore.blue .number {
  color: var(--ss-team-blue-dark);
}

/* .teamScore.blue.inactive {
	color: #0af;
	background: rgba(0, 32, 64, 0.7);
} */
.teamScore .number {
  margin: 0;
  font-size: 1.5em;
  top: 0.6em;
}

.teamLetter.red {
  position: absolute;
  font-size: 3vh;
  right: -0.9em;
  font-weight: bold;
  color: var(--ss-team-red-dark);
}

.teamLetter.blue {
  position: absolute;
  font-size: 3vh;
  left: -0.9em;
  font-weight: bold;
  color: var(--ss-team-blue-dark);
}

#pausePopup.popup_lg {
  /* width: 100vw;
     height: 100vh;
     border-radius: 0; */
  border: 0;
  padding: 0;
  margin: 0;
  /* background: var(--ss-lightoverlay) no-repeat center center fixed; */
  background: none;
  top: 23em;
}

#pausePopup .canvas-wrapper.is-paused .gameCanvas {
  top: 0;
}

.switch-teams-btn {
  order: 2;
}

.pause-screen-wrapper {
  /* height: calc(100vh - 1em); */
  /* transform: scale(1.6); */
}

.pause-screen-wrapper-no-vip .pause-ad-wrap {
  grid-template-columns: 18em minmax(300px, 350px);
}

.pause-screen-wrapper-no-vip {
  grid-template-rows: 4em auto minmax(250px, auto);
}

.pause-screen-wrapper-is-vip {
  grid-template-columns: var(--ss-sidebar-width) minmax(26em, auto);
  grid-template-rows: calc(var(--ss-space-lg) * 5) auto auto auto;
}

.pause-screen-wrapper-is-vip .pause-popup--container {
  grid-row: span 2;
}

.pause-screen-wrapper-is-vip .chw-progress-wrapper {
  margin: var(--ss-space-lg) 0;
}

.pause-container .chw-progress-bar-wrap {
  height: 2.75em;
  cursor: auto;
}

.pause-ad-wrap {
  width: 100%;
  justify-self: start;
  align-content: start;
  gap: 0.1em;
}

.chw-progress-bar-wrap:hover p,
.chw-progress-bar-wrap:hover .chw-ready.chw-progress-bar-inner {
  cursor: pointer;
}

.chw-progress-bar-wrap:hover .chw-ready.chw-progress-bar-inner {
  transition: background-color 0.1s ease-in-out;
  background-color: var(--ss-yolk2);
}

.chw-egg-bundle {
  top: 1.25em;
  right: -1em;
  height: 5em;
}

.pause-screen-wrapper-no-vip, .pause-screen-wrapper-is-vip .pause-screen-header {
  grid-template-columns: var(--ss-sidebar-width) minmax(26em, auto) minmax(315px, 15em);
}

.pause-screen-wrapper-no-vip .pause-screen-header {
  grid-template-columns: var(--ss-sidebar-width) minmax(26em, auto) var(--ss-sidebar-width);
}

.pause-screen-wrapper-is-vip .pause-screen-header {
  grid-template-columns: var(--ss-sidebar-width) auto auto;
}

.pause-popup--container {
  width: 100%;
  margin: 0 auto;
  opacity: 0;
}

.pause-popup--container #chickenBadge {
  top: auto;
  bottom: 0;
  right: 1em;
  height: auto;
  width: 8em;
}

.is-paused .pause-popup--container {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
  transition-delay: 0.3s;
}

.paused-game-ui {
  top: 0;
  height: 100vh;
  pointer-events: none;
}
.is-paused .paused-game-ui {
  pointer-events: all;
}

/* .is-paused .paused-game-ui {
	height: calc(100vh - var(--ss-account-panel-height) - 2em);
} */
/* .pause-screen-content {
    width: 28em;
    height: 10em;
} */
.pause-screen-ui {
  z-index: 7;
}

.pause-popup--container #game-ui {
  z-index: 1;
  transform: scale(0.5) translateX(-50%);
  position: absolute;
  left: 50%;
}

.pause-screen-wrapper-is-vip .pause-popup--container #game-ui {
  transform: scale(0.7) translateX(-50%);
}

.pause-popup--container #bestStreak {
  background-color: transparent;
}

.pause-screen-content .weapon-select--title h1 {
  padding: 0;
  margin: 0 0 0.5em !important;
  background: none;
  line-height: 1;
}

.pause-game-weapon-select p {
  display: none;
}

.pause-btn-group .ss_button {
  text-align: left;
  margin: 0 0 var(--ss-space-sm) 0;
  margin-bottom: 0.5em;
  height: 2.3em;
}

.pause-screen-header {
  padding-right: var(--ss-space-lg);
  padding-top: 0.6em;
  right: 0;
  width: calc(100vw - var(--ss-main-sidebar-width));
  height: var(--ss-account-panel-height);
}

.pause-screen-play-btn {
  bottom: 5em;
  top: auto;
}

#pausePopup .fa-play {
  font-size: 0.9em;
  padding-right: 0.2em;
}

#game-play-switch {
  margin-top: 0;
  gap: 0.5em;
}

.game-play-switch .ss_button {
  margin-bottom: 0;
}

.weapon-select--title h1 {
  color: var(--ss-white);
  font-size: 1.3em;
  background: none;
  margin-bottom: var(--ss-space-md);
}

@media only screen and (min-width: 1420px) {
  #inGameScaler {
    margin: 0 auto;
    float: none;
  }
}
#pausePopupInnards {
  width: 100%;
}

#pauseAdPlacement,
.pauseFiller {
  position: relative;
  z-index: 10;
  margin-right: auto;
  margin-left: auto;
}

#pauseAdPlacement {
  top: 50%;
  display: flex;
  transform: translate(0, -50%);
}

.pause-screen-header .pauseFiller .display-ad-container {
  width: 468px;
  height: 60px;
  position: fixed !important;
  left: 50%;
  transform: translate(-50%, 0);
}

.pauseFiller.shellshockers-respawn-banner-3-pr #pauseAdPlacement iframe,
.pauseFiller iframe,
.pauseFiller .display-ad-container > div,
.display-ad-container > div > div,
.display-ad-container > img {
  margin: 0 auto;
  display: block !important;
}

.pause-container {
  z-index: 4;
  margin-left: -5em;
  top: 1em;
  transform: translate(-50%, 0);
}
.is-vip .pause-container {
  top: 50%;
  transform: translate(-50%, -50%);
}
.playing-crazy-games .pause-container.centered {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.is-paused:not(.is-vip) .gameCanvas .pause-container.centered_x {
  bottom: 17em;
}

#btn_horizontal.pause-popup--btn-group {
  flex-direction: column;
  /* max-width: 17.5em; */
  min-height: 6em;
  margin-top: 0;
}

.pause-popup--btn-group .ss_button.btn__respawning,
#btn_horizontal.pause-popup--btn-group {
  margin-right: auto;
  margin-left: auto;
}

.btn__respawning {
  border-radius: var(--ss-space-sm);
  border: none;
  background: var(--ss-yolk);
  color: var(--ss-white);
  text-align: center;
  font-weight: bold;
  line-height: 1em;
  padding: var(--ss-space-sm) var(--ss-space-lg);
  margin: 0 auto var(--ss-space-md) auto;
  white-space: nowrap;
}

.btn-respawn {
  min-width: 6em;
  width: 100%;
  margin-bottom: 0;
}

.btn-dark-bevel.bevel_green, #vipEnded .bevel_green {
  box-shadow: var(--ss-btn-dark-shadow), var(--ss-btn-dark-bevel) rgb(14, 140, 76), var(--ss-btn-light-bevel) var(--ss-green0);
}

.btn-dark-bevel.bevel_red, #vipEnded {
  box-shadow: var(--ss-btn-dark-shadow), var(--ss-btn-dark-bevel) rgb(209, 20, 20), var(--ss-btn-light-bevel) var(--ss-red0);
}

.btn-dark-bevel.bevel_red, #vipEnded .bevel_red {
  box-shadow: var(--ss-btn-dark-shadow), var(--ss-btn-dark-bevel) rgb(209, 20, 20), var(--ss-btn-light-bevel) var(--ss-red0);
}

.btn-dark-bevel.bevel_blue {
  box-shadow: var(--ss-btn-dark-shadow), var(--ss-btn-dark-bevel) rgb(8, 110, 141), var(--ss-btn-light-bevel) rgb(0, 173, 230);
}

.btn-respawn.bevel_green:hover,
.btn-respawn.bevel_red:hover,
.btn-respawn.bevel_blue:hover {
  box-shadow: var(--ss-btn-dark-shadow), inset -0.1em -0.1em 0.1em rgba(0, 0, 0, 0.1), inset 0.1em 0.1em 0.1em rgba(0, 0, 0, 0.1);
}

.btn-respawn i {
  font-size: 0.9em;
  margin-right: 0.3em;
}

.btn-respawn .fa-flag {
  font-size: 1.3em;
}

.fa-flag {
  font-style: italic;
}

.pause-screen-btn-spectate {
  position: absolute;
  bottom: var(--ss-space-lg);
  right: var(--ss-space-lg);
  margin: 0;
  min-width: auto;
  border-radius: 100%;
  width: 4em;
  height: 4em;
  text-align: center;
  padding: 0;
  box-shadow: var(--ss-btn-dark-shadow), var(--ss-btn-dark-bevel) rgb(8, 110, 141), var(--ss-btn-light-bevel) rgb(0, 173, 230) !important;
}

.btn_team_switch {
  /* max-width: 7.5em; */
  line-height: 1;
}

.btn_team_switch .team-switch-text {
  white-space: normal;
}

.btn_team_switch i {
  font-style: italic;
}

/* .btn_team_switch span {
	display: block;
} */
#pausePopupWrap {
  position: relative;
  height: calc(100vh - 60px);
  margin-top: 60px;
  pointer-events: none;
}
.is-paused #pausePopupWrap {
  pointer-events: all;
}

#respawn-group {
  grid-template-columns: 1fr 1fr;
  /* align-items: end;  if larger */
  gap: 1em;
}

@media only screen and (max-width: 1128px) and (max-height: 615px) {
  #respawn-group {
    max-height: 480px;
  }
}
@media (max-width: 1300px) {
  #respawn-group {
    align-items: end;
    min-width: 728px;
  }
}
/* Display ads */
.respawn-container {
  margin: 0 auto;
  z-index: 2000;
}

.respawn-one {
  min-height: 300px;
}

.respawn-one .shellshockers-respawn-banner-pr {
  margin: 25px auto 0;
}

/* .respawn-two, #shellshockers_respawn_banner_2_ad {
	width: 160px;
} */
.respawn-two {
  min-height: 250px;
  /* grid-template-rows: calc(var(--ss-space-lg)* 3.7) auto; */
}

body > #shellshockers_respawn_banner-new {
  position: absolute;
}

body > #shellshockers_respawn_banner-new > div {
  position: absolute;
}

#shellshockers_respawn_banner_2_ad {
  width: 336px;
  height: 280px;
  overflow: hidden;
}

#shellshock-io_respawn_three {
  min-width: 728px;
  height: 90px;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.playing-crazy-games #shellshock-io_respawn_three {
  display: none;
}

.playing-crazy-games .display-ad-header {
  display: none;
}

#shellshockers_respawn_banner-new_ad {
  width: 970px;
  height: 250px;
  margin-top: -10px;
  overflow: hidden;
}
.playing-crazy-games #shellshockers_respawn_banner-new_ad {
  width: 728px;
  height: 90px;
}
@media only screen and (min-width: 1300px) {
  .playing-crazy-games #shellshockers_respawn_banner-new_ad {
    width: 970px;
    height: 250px;
  }
}

/* #shellshockers_respawn_banner-new_ad,
#shellshockers_respawn_banner_2_ad {
	background-color: #fff;
} */
.crazygames-banner-container > * {
  margin: 0 auto;
  display: block;
}

.respawn-two {
  grid-template-rows: calc(var(--ss-space-lg) * 3.7) auto;
}

.playing-crazy-games #shellshockers_titlescreen_wrap {
  width: 300px;
  height: 250px;
  overflow: hidden;
}

/* Crazy games */
/* smaller screens */
@media only screen and (max-width: 1128px) and (max-height: 615px) {
  #pausePopupWrap {
    margin-top: 4em !important;
  }
  .playing-crazy-games #pausePopupWrap {
    margin-top: 7em !important;
  }
}
#respawn-ad-one {
  width: 100%;
  grid-column: 1/span 2;
}

/* Breakpoint for screens with a width of at least 600px and a height of at least 400px */
.display-ad-header {
  top: var(--ss-space-md);
  z-index: 5;
  grid-column: 1/span 2;
}
.display-ad-header iframe {
  display: block !important;
  margin: 0 auto !important;
}

#options_panel {
  position: absolute;
  padding: var(--ss-space-md);
  padding-left: var(--ss-main-sidebar-width);
  z-index: 4;
  top: 0;
  left: 0;
  height: var(---ss-account-panel-height);
}

.is-paused #captureContainer, .is-paused #best_streak_container {
  transform: translateX(-50%) scale(var(--paused-ui-scale));
}

.is-paused .player-list-wrapper {
  transform: scale(var(--paused-ui-scale));
  top: 0;
  position: absolute;
  left: calc(var(--ss-menu-width) + 1em);
}

.is-paused.is-vip .player-list-wrapper {
  transform: scale(var(--paused-ui-vip-scale));
  top: 0;
  position: absolute;
}

.is-paused .pause-ui-element {
  background-color: #5B9DB3;
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  bottom: 0;
  width: var(--ss-chat-wrapper-width);
  height: var(--ss--chat-height);
  left: 0;
}

.is-paused #announcement_message.has-announcement {
  height: 16.5em;
}

/* CrazyGames */
@media (max-height: 660px) and (max-width: 1128px) {
  .is-paused:not(.is-vip) .pause-popup--container {
    top: 3em;
  }
}
#killTicker {
  position: absolute;
  text-align: right;
  right: 1em;
  top: 10em;
  height: 7em;
  transform-origin: top right;
  text-shadow: var(--ss-space-micro) var(--ss-space-micro) var(--ss-shadow);
}

#spectate {
  display: none;
  position: absolute;
  right: 1em;
  bottom: 1em;
  text-align: center;
  padding: 0.5em 1em 0.5em 1em;
  border-radius: 0.3em;
  font-weight: bold;
  color: var(--ss-white);
  background: rgba(0, 0, 0, 0.3);
}

#spectate h1 {
  font-size: 2em;
  color: var(--ss-white);
}

#serverAndMapInfo h5, #readouts h5 {
  color: var(--ss-blue1);
}

.is-paused #serverAndMapInfo {
  position: relative;
}

#inGameUI {
  position: absolute;
  top: 4em;
  right: 0.5em;
  top: 5em;
  padding: 1em;
  background-color: rgba(12, 87, 111, 0.5);
  border: var(--ss-common-border-width) solid var(--ss-blue5);
  pointer-events: none;
}

#game_screen:not(.is-paused) #inGameUI {
  top: 2.5em;
}

/* .is-paused:not(.is-vip) #inGameUI {
	right: 1.5em;
    top: 5em;
    padding: 1em;
} */
.is-vip #inGameUI.pause-ui-element {
  position: absolute;
  right: 2em;
  top: 4em;
  background: none;
  border: 0;
}

#inGameUI .title {
  font-size: 0.8em;
  color: #f7ef1d;
}

#inGameUI .name {
  font-size: 0.6em;
  line-height: 1;
  margin: 0 0 0.5em;
  padding: 0;
  /* text-shadow: 0.1em 0.1em 0.2em var(--ss-blue5);
  font-weight: 700; */
}

/* 
.is-paused #inGameUI {
    right: 3em;
    top: 7em;
} */
#game_account_panel {
  z-index: 6;
  width: auto;
  position: absolute;
  top: var(--ss-space-sm);
  right: var(--ss-space-sm);
}

#chickenBadge {
  position: absolute;
  bottom: 3em;
  right: 3em;
}

#chickenBadge img {
  width: 8em;
}

#inGameScaler, #inGameScaler .pause-btn-group {
  margin-right: 1em;
}

#inGameScaler {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/** start refactoring css */
.w-shrinkauto {
  flex: 1 0 auto;
}

.cta-welcome-bundle {
  left: 1em;
  bottom: 14.9em;
  width: 13.8em;
}
.cta-welcome-bundle img {
  max-width: 100%;
}
.cta-welcome-bundle img:hover {
  cursor: pointer;
  opacity: 0.8;
}

/*# sourceMappingURL=style.min.css.map */
