@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: Arial;
}
/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}
/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  box-sizing: content-box;
}
/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  box-sizing: border-box;
}
/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}
/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}
/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}
/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}
/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}
/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}
/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}
.bg-center {
  background-position: center;
}
.bg-auto {
  background-size: auto;
}
.bg-cover {
  background-size: cover;
}
.bg-contain {
  background-size: contain;
}
.bg-norepeat {
  background-repeat: no-repeat;
}
.rounded-full {
  border-radius: 999999px;
}
.rounded-02 {
  border-radius: 0.2rem;
}
.border-solid {
  border-style: solid;
}
.outline-solid {
  outline-style: solid;
}
.cursor-pointer {
  cursor: pointer;
}
.transition {
  transition: all 0.2s linear;
}
.transition-3 {
  transition: all 0.3s linear;
}
.transition-1 {
  transition: all 0.1s linear;
}
.no-transition {
  transition: none !important;
}
.no-transition-for-all {
  transition: none !important;
}
.no-transition-for-all * {
  transition: none !important;
}
.border-0 {
  border-width: 0rem;
}
.outline-0 {
  outline-width: 0rem;
}
.border-0\.1 {
  border-width: 0.1rem;
}
.outline-0\.1 {
  outline-width: 0.1rem;
}
.border-0\.2 {
  border-width: 0.2rem;
}
.outline-0\.2 {
  outline-width: 0.2rem;
}
.border-0\.3 {
  border-width: 0.3rem;
}
.outline-0\.3 {
  outline-width: 0.3rem;
}
.border-0\.4 {
  border-width: 0.4rem;
}
.outline-0\.4 {
  outline-width: 0.4rem;
}
.border-0\.5 {
  border-width: 0.5rem;
}
.outline-0\.5 {
  outline-width: 0.5rem;
}
.border-0\.6 {
  border-width: 0.6rem;
}
.outline-0\.6 {
  outline-width: 0.6rem;
}
.border-0\.7 {
  border-width: 0.7rem;
}
.outline-0\.7 {
  outline-width: 0.7rem;
}
.border-0\.8 {
  border-width: 0.8rem;
}
.outline-0\.8 {
  outline-width: 0.8rem;
}
.border-0\.9 {
  border-width: 0.9rem;
}
.outline-0\.9 {
  outline-width: 0.9rem;
}
.border-1 {
  border-width: 1rem;
}
.outline-1 {
  outline-width: 1rem;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.text-transparent {
  color: transparent;
}
.bg-transparent {
  background-color: transparent;
}
.bg-fill-transparent {
  background: transparent;
}
.border-transparent {
  border-color: transparent;
}
.outline-transparent {
  outline-color: transparent;
}
.focus-text-transparent.focus {
  color: transparent;
}
.focus-bg-transparent.focus {
  background-color: transparent;
}
.focus-border-transparent.focus {
  border-color: transparent;
}
.cursor > .cursor-text-transparent {
  color: transparent;
}
.cursor > .cursor-bg-transparent {
  background-color: transparent;
}
.cursor > .cursor-border-transparent {
  border-color: transparent;
}
.focus > .focus-text-transparent {
  color: transparent;
}
.focus > .focus-bg-transparent {
  background-color: transparent;
}
.focus > .focus-border-transparent {
  border-color: transparent;
}
.border-left-transparent {
  border-left-color: transparent;
}
.border-right-transparent {
  border-right-color: transparent;
}
.border-top-transparent {
  border-top-color: transparent;
}
.border-bottom-transparent {
  border-bottom-color: transparent;
}
.text-primary {
  color: #eeeeee;
}
.bg-primary {
  background-color: #eeeeee;
}
.bg-fill-primary {
  background: #eeeeee;
}
.border-primary {
  border-color: #eeeeee;
}
.outline-primary {
  outline-color: #eeeeee;
}
.focus-text-primary.focus {
  color: #eeeeee;
}
.focus-bg-primary.focus {
  background-color: #eeeeee;
}
.focus-border-primary.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-primary {
  color: #eeeeee;
}
.cursor > .cursor-bg-primary {
  background-color: #eeeeee;
}
.cursor > .cursor-border-primary {
  border-color: #eeeeee;
}
.focus > .focus-text-primary {
  color: #eeeeee;
}
.focus > .focus-bg-primary {
  background-color: #eeeeee;
}
.focus > .focus-border-primary {
  border-color: #eeeeee;
}
.border-left-primary {
  border-left-color: #eeeeee;
}
.border-right-primary {
  border-right-color: #eeeeee;
}
.border-top-primary {
  border-top-color: #eeeeee;
}
.border-bottom-primary {
  border-bottom-color: #eeeeee;
}
.text-selector {
  color: #7ebb0a;
}
.bg-selector {
  background-color: #7ebb0a;
}
.bg-fill-selector {
  background: #7ebb0a;
}
.border-selector {
  border-color: #7ebb0a;
}
.outline-selector {
  outline-color: #7ebb0a;
}
.focus-text-selector.focus {
  color: #7ebb0a;
}
.focus-bg-selector.focus {
  background-color: #7ebb0a;
}
.focus-border-selector.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-selector {
  color: #7ebb0a;
}
.cursor > .cursor-bg-selector {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-selector {
  border-color: #7ebb0a;
}
.focus > .focus-text-selector {
  color: #7ebb0a;
}
.focus > .focus-bg-selector {
  background-color: #7ebb0a;
}
.focus > .focus-border-selector {
  border-color: #7ebb0a;
}
.border-left-selector {
  border-left-color: #7ebb0a;
}
.border-right-selector {
  border-right-color: #7ebb0a;
}
.border-top-selector {
  border-top-color: #7ebb0a;
}
.border-bottom-selector {
  border-bottom-color: #7ebb0a;
}
.text-selectorInactive {
  color: rgba(238, 238, 238, 0.2);
}
.bg-selectorInactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.bg-fill-selectorInactive {
  background: rgba(238, 238, 238, 0.2);
}
.border-selectorInactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.outline-selectorInactive {
  outline-color: rgba(238, 238, 238, 0.2);
}
.focus-text-selectorInactive.focus {
  color: rgba(238, 238, 238, 0.2);
}
.focus-bg-selectorInactive.focus {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-border-selectorInactive.focus {
  border-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-text-selectorInactive {
  color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-bg-selectorInactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-border-selectorInactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-text-selectorInactive {
  color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-bg-selectorInactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-border-selectorInactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.border-left-selectorInactive {
  border-left-color: rgba(238, 238, 238, 0.2);
}
.border-right-selectorInactive {
  border-right-color: rgba(238, 238, 238, 0.2);
}
.border-top-selectorInactive {
  border-top-color: rgba(238, 238, 238, 0.2);
}
.border-bottom-selectorInactive {
  border-bottom-color: rgba(238, 238, 238, 0.2);
}
.text-gradientSelector {
  color: #46ffff;
}
.bg-gradientSelector {
  background-color: #46ffff;
}
.bg-fill-gradientSelector {
  background: #46ffff;
}
.border-gradientSelector {
  border-color: #46ffff;
}
.outline-gradientSelector {
  outline-color: #46ffff;
}
.focus-text-gradientSelector.focus {
  color: #46ffff;
}
.focus-bg-gradientSelector.focus {
  background-color: #46ffff;
}
.focus-border-gradientSelector.focus {
  border-color: #46ffff;
}
.cursor > .cursor-text-gradientSelector {
  color: #46ffff;
}
.cursor > .cursor-bg-gradientSelector {
  background-color: #46ffff;
}
.cursor > .cursor-border-gradientSelector {
  border-color: #46ffff;
}
.focus > .focus-text-gradientSelector {
  color: #46ffff;
}
.focus > .focus-bg-gradientSelector {
  background-color: #46ffff;
}
.focus > .focus-border-gradientSelector {
  border-color: #46ffff;
}
.border-left-gradientSelector {
  border-left-color: #46ffff;
}
.border-right-gradientSelector {
  border-right-color: #46ffff;
}
.border-top-gradientSelector {
  border-top-color: #46ffff;
}
.border-bottom-gradientSelector {
  border-bottom-color: #46ffff;
}
.text-selectorMainMenu {
  color: rgba(0, 0, 0, 0);
}
.bg-selectorMainMenu {
  background-color: rgba(0, 0, 0, 0);
}
.bg-fill-selectorMainMenu {
  background: rgba(0, 0, 0, 0);
}
.border-selectorMainMenu {
  border-color: rgba(0, 0, 0, 0);
}
.outline-selectorMainMenu {
  outline-color: rgba(0, 0, 0, 0);
}
.focus-text-selectorMainMenu.focus {
  color: rgba(0, 0, 0, 0);
}
.focus-bg-selectorMainMenu.focus {
  background-color: rgba(0, 0, 0, 0);
}
.focus-border-selectorMainMenu.focus {
  border-color: rgba(0, 0, 0, 0);
}
.cursor > .cursor-text-selectorMainMenu {
  color: rgba(0, 0, 0, 0);
}
.cursor > .cursor-bg-selectorMainMenu {
  background-color: rgba(0, 0, 0, 0);
}
.cursor > .cursor-border-selectorMainMenu {
  border-color: rgba(0, 0, 0, 0);
}
.focus > .focus-text-selectorMainMenu {
  color: rgba(0, 0, 0, 0);
}
.focus > .focus-bg-selectorMainMenu {
  background-color: rgba(0, 0, 0, 0);
}
.focus > .focus-border-selectorMainMenu {
  border-color: rgba(0, 0, 0, 0);
}
.border-left-selectorMainMenu {
  border-left-color: rgba(0, 0, 0, 0);
}
.border-right-selectorMainMenu {
  border-right-color: rgba(0, 0, 0, 0);
}
.border-top-selectorMainMenu {
  border-top-color: rgba(0, 0, 0, 0);
}
.border-bottom-selectorMainMenu {
  border-bottom-color: rgba(0, 0, 0, 0);
}
.text-secondary {
  color: #212121;
}
.bg-secondary {
  background-color: #212121;
}
.bg-fill-secondary {
  background: #212121;
}
.border-secondary {
  border-color: #212121;
}
.outline-secondary {
  outline-color: #212121;
}
.focus-text-secondary.focus {
  color: #212121;
}
.focus-bg-secondary.focus {
  background-color: #212121;
}
.focus-border-secondary.focus {
  border-color: #212121;
}
.cursor > .cursor-text-secondary {
  color: #212121;
}
.cursor > .cursor-bg-secondary {
  background-color: #212121;
}
.cursor > .cursor-border-secondary {
  border-color: #212121;
}
.focus > .focus-text-secondary {
  color: #212121;
}
.focus > .focus-bg-secondary {
  background-color: #212121;
}
.focus > .focus-border-secondary {
  border-color: #212121;
}
.border-left-secondary {
  border-left-color: #212121;
}
.border-right-secondary {
  border-right-color: #212121;
}
.border-top-secondary {
  border-top-color: #212121;
}
.border-bottom-secondary {
  border-bottom-color: #212121;
}
.text-homescreenSelector {
  color: #7ebb0a;
}
.bg-homescreenSelector {
  background-color: #7ebb0a;
}
.bg-fill-homescreenSelector {
  background: #7ebb0a;
}
.border-homescreenSelector {
  border-color: #7ebb0a;
}
.outline-homescreenSelector {
  outline-color: #7ebb0a;
}
.focus-text-homescreenSelector.focus {
  color: #7ebb0a;
}
.focus-bg-homescreenSelector.focus {
  background-color: #7ebb0a;
}
.focus-border-homescreenSelector.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-homescreenSelector {
  color: #7ebb0a;
}
.cursor > .cursor-bg-homescreenSelector {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-homescreenSelector {
  border-color: #7ebb0a;
}
.focus > .focus-text-homescreenSelector {
  color: #7ebb0a;
}
.focus > .focus-bg-homescreenSelector {
  background-color: #7ebb0a;
}
.focus > .focus-border-homescreenSelector {
  border-color: #7ebb0a;
}
.border-left-homescreenSelector {
  border-left-color: #7ebb0a;
}
.border-right-homescreenSelector {
  border-right-color: #7ebb0a;
}
.border-top-homescreenSelector {
  border-top-color: #7ebb0a;
}
.border-bottom-homescreenSelector {
  border-bottom-color: #7ebb0a;
}
.text-homescreenSelectorInactive {
  color: rgb(55, 56, 56);
}
.bg-homescreenSelectorInactive {
  background-color: rgb(55, 56, 56);
}
.bg-fill-homescreenSelectorInactive {
  background: rgb(55, 56, 56);
}
.border-homescreenSelectorInactive {
  border-color: rgb(55, 56, 56);
}
.outline-homescreenSelectorInactive {
  outline-color: rgb(55, 56, 56);
}
.focus-text-homescreenSelectorInactive.focus {
  color: rgb(55, 56, 56);
}
.focus-bg-homescreenSelectorInactive.focus {
  background-color: rgb(55, 56, 56);
}
.focus-border-homescreenSelectorInactive.focus {
  border-color: rgb(55, 56, 56);
}
.cursor > .cursor-text-homescreenSelectorInactive {
  color: rgb(55, 56, 56);
}
.cursor > .cursor-bg-homescreenSelectorInactive {
  background-color: rgb(55, 56, 56);
}
.cursor > .cursor-border-homescreenSelectorInactive {
  border-color: rgb(55, 56, 56);
}
.focus > .focus-text-homescreenSelectorInactive {
  color: rgb(55, 56, 56);
}
.focus > .focus-bg-homescreenSelectorInactive {
  background-color: rgb(55, 56, 56);
}
.focus > .focus-border-homescreenSelectorInactive {
  border-color: rgb(55, 56, 56);
}
.border-left-homescreenSelectorInactive {
  border-left-color: rgb(55, 56, 56);
}
.border-right-homescreenSelectorInactive {
  border-right-color: rgb(55, 56, 56);
}
.border-top-homescreenSelectorInactive {
  border-top-color: rgb(55, 56, 56);
}
.border-bottom-homescreenSelectorInactive {
  border-bottom-color: rgb(55, 56, 56);
}
.text-contentDelegateColor {
  color: #7ebb0a;
}
.bg-contentDelegateColor {
  background-color: #7ebb0a;
}
.bg-fill-contentDelegateColor {
  background: #7ebb0a;
}
.border-contentDelegateColor {
  border-color: #7ebb0a;
}
.outline-contentDelegateColor {
  outline-color: #7ebb0a;
}
.focus-text-contentDelegateColor.focus {
  color: #7ebb0a;
}
.focus-bg-contentDelegateColor.focus {
  background-color: #7ebb0a;
}
.focus-border-contentDelegateColor.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-contentDelegateColor {
  color: #7ebb0a;
}
.cursor > .cursor-bg-contentDelegateColor {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-contentDelegateColor {
  border-color: #7ebb0a;
}
.focus > .focus-text-contentDelegateColor {
  color: #7ebb0a;
}
.focus > .focus-bg-contentDelegateColor {
  background-color: #7ebb0a;
}
.focus > .focus-border-contentDelegateColor {
  border-color: #7ebb0a;
}
.border-left-contentDelegateColor {
  border-left-color: #7ebb0a;
}
.border-right-contentDelegateColor {
  border-right-color: #7ebb0a;
}
.border-top-contentDelegateColor {
  border-top-color: #7ebb0a;
}
.border-bottom-contentDelegateColor {
  border-bottom-color: #7ebb0a;
}
.text-contentDelegateColorInactive {
  color: rgba(55, 71, 79, 0.9);
}
.bg-contentDelegateColorInactive {
  background-color: rgba(55, 71, 79, 0.9);
}
.bg-fill-contentDelegateColorInactive {
  background: rgba(55, 71, 79, 0.9);
}
.border-contentDelegateColorInactive {
  border-color: rgba(55, 71, 79, 0.9);
}
.outline-contentDelegateColorInactive {
  outline-color: rgba(55, 71, 79, 0.9);
}
.focus-text-contentDelegateColorInactive.focus {
  color: rgba(55, 71, 79, 0.9);
}
.focus-bg-contentDelegateColorInactive.focus {
  background-color: rgba(55, 71, 79, 0.9);
}
.focus-border-contentDelegateColorInactive.focus {
  border-color: rgba(55, 71, 79, 0.9);
}
.cursor > .cursor-text-contentDelegateColorInactive {
  color: rgba(55, 71, 79, 0.9);
}
.cursor > .cursor-bg-contentDelegateColorInactive {
  background-color: rgba(55, 71, 79, 0.9);
}
.cursor > .cursor-border-contentDelegateColorInactive {
  border-color: rgba(55, 71, 79, 0.9);
}
.focus > .focus-text-contentDelegateColorInactive {
  color: rgba(55, 71, 79, 0.9);
}
.focus > .focus-bg-contentDelegateColorInactive {
  background-color: rgba(55, 71, 79, 0.9);
}
.focus > .focus-border-contentDelegateColorInactive {
  border-color: rgba(55, 71, 79, 0.9);
}
.border-left-contentDelegateColorInactive {
  border-left-color: rgba(55, 71, 79, 0.9);
}
.border-right-contentDelegateColorInactive {
  border-right-color: rgba(55, 71, 79, 0.9);
}
.border-top-contentDelegateColorInactive {
  border-top-color: rgba(55, 71, 79, 0.9);
}
.border-bottom-contentDelegateColorInactive {
  border-bottom-color: rgba(55, 71, 79, 0.9);
}
.text-normal {
  color: #8bc34a;
}
.bg-normal {
  background-color: #8bc34a;
}
.bg-fill-normal {
  background: #8bc34a;
}
.border-normal {
  border-color: #8bc34a;
}
.outline-normal {
  outline-color: #8bc34a;
}
.focus-text-normal.focus {
  color: #8bc34a;
}
.focus-bg-normal.focus {
  background-color: #8bc34a;
}
.focus-border-normal.focus {
  border-color: #8bc34a;
}
.cursor > .cursor-text-normal {
  color: #8bc34a;
}
.cursor > .cursor-bg-normal {
  background-color: #8bc34a;
}
.cursor > .cursor-border-normal {
  border-color: #8bc34a;
}
.focus > .focus-text-normal {
  color: #8bc34a;
}
.focus > .focus-bg-normal {
  background-color: #8bc34a;
}
.focus > .focus-border-normal {
  border-color: #8bc34a;
}
.border-left-normal {
  border-left-color: #8bc34a;
}
.border-right-normal {
  border-right-color: #8bc34a;
}
.border-top-normal {
  border-top-color: #8bc34a;
}
.border-bottom-normal {
  border-bottom-color: #8bc34a;
}
.text-warning {
  color: #fbc02d;
}
.bg-warning {
  background-color: #fbc02d;
}
.bg-fill-warning {
  background: #fbc02d;
}
.border-warning {
  border-color: #fbc02d;
}
.outline-warning {
  outline-color: #fbc02d;
}
.focus-text-warning.focus {
  color: #fbc02d;
}
.focus-bg-warning.focus {
  background-color: #fbc02d;
}
.focus-border-warning.focus {
  border-color: #fbc02d;
}
.cursor > .cursor-text-warning {
  color: #fbc02d;
}
.cursor > .cursor-bg-warning {
  background-color: #fbc02d;
}
.cursor > .cursor-border-warning {
  border-color: #fbc02d;
}
.focus > .focus-text-warning {
  color: #fbc02d;
}
.focus > .focus-bg-warning {
  background-color: #fbc02d;
}
.focus > .focus-border-warning {
  border-color: #fbc02d;
}
.border-left-warning {
  border-left-color: #fbc02d;
}
.border-right-warning {
  border-right-color: #fbc02d;
}
.border-top-warning {
  border-top-color: #fbc02d;
}
.border-bottom-warning {
  border-bottom-color: #fbc02d;
}
.text-error {
  color: #ff7043;
}
.bg-error {
  background-color: #ff7043;
}
.bg-fill-error {
  background: #ff7043;
}
.border-error {
  border-color: #ff7043;
}
.outline-error {
  outline-color: #ff7043;
}
.focus-text-error.focus {
  color: #ff7043;
}
.focus-bg-error.focus {
  background-color: #ff7043;
}
.focus-border-error.focus {
  border-color: #ff7043;
}
.cursor > .cursor-text-error {
  color: #ff7043;
}
.cursor > .cursor-bg-error {
  background-color: #ff7043;
}
.cursor > .cursor-border-error {
  border-color: #ff7043;
}
.focus > .focus-text-error {
  color: #ff7043;
}
.focus > .focus-bg-error {
  background-color: #ff7043;
}
.focus > .focus-border-error {
  border-color: #ff7043;
}
.border-left-error {
  border-left-color: #ff7043;
}
.border-right-error {
  border-right-color: #ff7043;
}
.border-top-error {
  border-top-color: #ff7043;
}
.border-bottom-error {
  border-bottom-color: #ff7043;
}
.text-userfeed-central {
  color: rgba(33, 33, 33, 0.8);
}
.bg-userfeed-central {
  background-color: rgba(33, 33, 33, 0.8);
}
.bg-fill-userfeed-central {
  background: rgba(33, 33, 33, 0.8);
}
.border-userfeed-central {
  border-color: rgba(33, 33, 33, 0.8);
}
.outline-userfeed-central {
  outline-color: rgba(33, 33, 33, 0.8);
}
.focus-text-userfeed-central.focus {
  color: rgba(33, 33, 33, 0.8);
}
.focus-bg-userfeed-central.focus {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus-border-userfeed-central.focus {
  border-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-text-userfeed-central {
  color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-bg-userfeed-central {
  background-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-border-userfeed-central {
  border-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-text-userfeed-central {
  color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-bg-userfeed-central {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-border-userfeed-central {
  border-color: rgba(33, 33, 33, 0.8);
}
.border-left-userfeed-central {
  border-left-color: rgba(33, 33, 33, 0.8);
}
.border-right-userfeed-central {
  border-right-color: rgba(33, 33, 33, 0.8);
}
.border-top-userfeed-central {
  border-top-color: rgba(33, 33, 33, 0.8);
}
.border-bottom-userfeed-central {
  border-bottom-color: rgba(33, 33, 33, 0.8);
}
.text-userfeed-neighbour {
  color: rgba(33, 33, 33, 0.5);
}
.bg-userfeed-neighbour {
  background-color: rgba(33, 33, 33, 0.5);
}
.bg-fill-userfeed-neighbour {
  background: rgba(33, 33, 33, 0.5);
}
.border-userfeed-neighbour {
  border-color: rgba(33, 33, 33, 0.5);
}
.outline-userfeed-neighbour {
  outline-color: rgba(33, 33, 33, 0.5);
}
.focus-text-userfeed-neighbour.focus {
  color: rgba(33, 33, 33, 0.5);
}
.focus-bg-userfeed-neighbour.focus {
  background-color: rgba(33, 33, 33, 0.5);
}
.focus-border-userfeed-neighbour.focus {
  border-color: rgba(33, 33, 33, 0.5);
}
.cursor > .cursor-text-userfeed-neighbour {
  color: rgba(33, 33, 33, 0.5);
}
.cursor > .cursor-bg-userfeed-neighbour {
  background-color: rgba(33, 33, 33, 0.5);
}
.cursor > .cursor-border-userfeed-neighbour {
  border-color: rgba(33, 33, 33, 0.5);
}
.focus > .focus-text-userfeed-neighbour {
  color: rgba(33, 33, 33, 0.5);
}
.focus > .focus-bg-userfeed-neighbour {
  background-color: rgba(33, 33, 33, 0.5);
}
.focus > .focus-border-userfeed-neighbour {
  border-color: rgba(33, 33, 33, 0.5);
}
.border-left-userfeed-neighbour {
  border-left-color: rgba(33, 33, 33, 0.5);
}
.border-right-userfeed-neighbour {
  border-right-color: rgba(33, 33, 33, 0.5);
}
.border-top-userfeed-neighbour {
  border-top-color: rgba(33, 33, 33, 0.5);
}
.border-bottom-userfeed-neighbour {
  border-bottom-color: rgba(33, 33, 33, 0.5);
}
.text-userfeed-other {
  color: rgba(33, 33, 33, 0.7);
}
.bg-userfeed-other {
  background-color: rgba(33, 33, 33, 0.7);
}
.bg-fill-userfeed-other {
  background: rgba(33, 33, 33, 0.7);
}
.border-userfeed-other {
  border-color: rgba(33, 33, 33, 0.7);
}
.outline-userfeed-other {
  outline-color: rgba(33, 33, 33, 0.7);
}
.focus-text-userfeed-other.focus {
  color: rgba(33, 33, 33, 0.7);
}
.focus-bg-userfeed-other.focus {
  background-color: rgba(33, 33, 33, 0.7);
}
.focus-border-userfeed-other.focus {
  border-color: rgba(33, 33, 33, 0.7);
}
.cursor > .cursor-text-userfeed-other {
  color: rgba(33, 33, 33, 0.7);
}
.cursor > .cursor-bg-userfeed-other {
  background-color: rgba(33, 33, 33, 0.7);
}
.cursor > .cursor-border-userfeed-other {
  border-color: rgba(33, 33, 33, 0.7);
}
.focus > .focus-text-userfeed-other {
  color: rgba(33, 33, 33, 0.7);
}
.focus > .focus-bg-userfeed-other {
  background-color: rgba(33, 33, 33, 0.7);
}
.focus > .focus-border-userfeed-other {
  border-color: rgba(33, 33, 33, 0.7);
}
.border-left-userfeed-other {
  border-left-color: rgba(33, 33, 33, 0.7);
}
.border-right-userfeed-other {
  border-right-color: rgba(33, 33, 33, 0.7);
}
.border-top-userfeed-other {
  border-top-color: rgba(33, 33, 33, 0.7);
}
.border-bottom-userfeed-other {
  border-bottom-color: rgba(33, 33, 33, 0.7);
}
.text-subscription-success {
  color: #64dd17;
}
.bg-subscription-success {
  background-color: #64dd17;
}
.bg-fill-subscription-success {
  background: #64dd17;
}
.border-subscription-success {
  border-color: #64dd17;
}
.outline-subscription-success {
  outline-color: #64dd17;
}
.focus-text-subscription-success.focus {
  color: #64dd17;
}
.focus-bg-subscription-success.focus {
  background-color: #64dd17;
}
.focus-border-subscription-success.focus {
  border-color: #64dd17;
}
.cursor > .cursor-text-subscription-success {
  color: #64dd17;
}
.cursor > .cursor-bg-subscription-success {
  background-color: #64dd17;
}
.cursor > .cursor-border-subscription-success {
  border-color: #64dd17;
}
.focus > .focus-text-subscription-success {
  color: #64dd17;
}
.focus > .focus-bg-subscription-success {
  background-color: #64dd17;
}
.focus > .focus-border-subscription-success {
  border-color: #64dd17;
}
.border-left-subscription-success {
  border-left-color: #64dd17;
}
.border-right-subscription-success {
  border-right-color: #64dd17;
}
.border-top-subscription-success {
  border-top-color: #64dd17;
}
.border-bottom-subscription-success {
  border-bottom-color: #64dd17;
}
.text-subscription-warning {
  color: #ff7043;
}
.bg-subscription-warning {
  background-color: #ff7043;
}
.bg-fill-subscription-warning {
  background: #ff7043;
}
.border-subscription-warning {
  border-color: #ff7043;
}
.outline-subscription-warning {
  outline-color: #ff7043;
}
.focus-text-subscription-warning.focus {
  color: #ff7043;
}
.focus-bg-subscription-warning.focus {
  background-color: #ff7043;
}
.focus-border-subscription-warning.focus {
  border-color: #ff7043;
}
.cursor > .cursor-text-subscription-warning {
  color: #ff7043;
}
.cursor > .cursor-bg-subscription-warning {
  background-color: #ff7043;
}
.cursor > .cursor-border-subscription-warning {
  border-color: #ff7043;
}
.focus > .focus-text-subscription-warning {
  color: #ff7043;
}
.focus > .focus-bg-subscription-warning {
  background-color: #ff7043;
}
.focus > .focus-border-subscription-warning {
  border-color: #ff7043;
}
.border-left-subscription-warning {
  border-left-color: #ff7043;
}
.border-right-subscription-warning {
  border-right-color: #ff7043;
}
.border-top-subscription-warning {
  border-top-color: #ff7043;
}
.border-bottom-subscription-warning {
  border-bottom-color: #ff7043;
}
.text-font-primary {
  color: #eeeeee;
}
.bg-font-primary {
  background-color: #eeeeee;
}
.bg-fill-font-primary {
  background: #eeeeee;
}
.border-font-primary {
  border-color: #eeeeee;
}
.outline-font-primary {
  outline-color: #eeeeee;
}
.focus-text-font-primary.focus {
  color: #eeeeee;
}
.focus-bg-font-primary.focus {
  background-color: #eeeeee;
}
.focus-border-font-primary.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-font-primary {
  color: #eeeeee;
}
.cursor > .cursor-bg-font-primary {
  background-color: #eeeeee;
}
.cursor > .cursor-border-font-primary {
  border-color: #eeeeee;
}
.focus > .focus-text-font-primary {
  color: #eeeeee;
}
.focus > .focus-bg-font-primary {
  background-color: #eeeeee;
}
.focus > .focus-border-font-primary {
  border-color: #eeeeee;
}
.border-left-font-primary {
  border-left-color: #eeeeee;
}
.border-right-font-primary {
  border-right-color: #eeeeee;
}
.border-top-font-primary {
  border-top-color: #eeeeee;
}
.border-bottom-font-primary {
  border-bottom-color: #eeeeee;
}
.text-font-secondary {
  color: #cccccc;
}
.bg-font-secondary {
  background-color: #cccccc;
}
.bg-fill-font-secondary {
  background: #cccccc;
}
.border-font-secondary {
  border-color: #cccccc;
}
.outline-font-secondary {
  outline-color: #cccccc;
}
.focus-text-font-secondary.focus {
  color: #cccccc;
}
.focus-bg-font-secondary.focus {
  background-color: #cccccc;
}
.focus-border-font-secondary.focus {
  border-color: #cccccc;
}
.cursor > .cursor-text-font-secondary {
  color: #cccccc;
}
.cursor > .cursor-bg-font-secondary {
  background-color: #cccccc;
}
.cursor > .cursor-border-font-secondary {
  border-color: #cccccc;
}
.focus > .focus-text-font-secondary {
  color: #cccccc;
}
.focus > .focus-bg-font-secondary {
  background-color: #cccccc;
}
.focus > .focus-border-font-secondary {
  border-color: #cccccc;
}
.border-left-font-secondary {
  border-left-color: #cccccc;
}
.border-right-font-secondary {
  border-right-color: #cccccc;
}
.border-top-font-secondary {
  border-top-color: #cccccc;
}
.border-bottom-font-secondary {
  border-bottom-color: #cccccc;
}
.text-font-buttonText {
  color: #eeeeee;
}
.bg-font-buttonText {
  background-color: #eeeeee;
}
.bg-fill-font-buttonText {
  background: #eeeeee;
}
.border-font-buttonText, .checkbox-button-knob.checked.focus,
.checkbox-button-knob-checked-focus,
.focus > .checkbox-button-knob.checked,
.focus > .checkbox-button-knob-checked, .checkbox-button-knob.focus,
.checkbox-button-knob-focus,
.focus > .checkbox-button-knob, .radio-button-knob.checked.focus,
.radio-button-knob-checked-focus,
.focus > .radio-button-knob.checked,
.focus > .radio-button-knob-checked, .radio-button-knob.focus,
.radio-button-knob-focus,
.focus > .radio-button-knob {
  border-color: #eeeeee;
}
.outline-font-buttonText {
  outline-color: #eeeeee;
}
.focus-text-font-buttonText.focus {
  color: #eeeeee;
}
.focus-bg-font-buttonText.focus {
  background-color: #eeeeee;
}
.focus-border-font-buttonText.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-font-buttonText {
  color: #eeeeee;
}
.cursor > .cursor-bg-font-buttonText {
  background-color: #eeeeee;
}
.cursor > .cursor-border-font-buttonText {
  border-color: #eeeeee;
}
.focus > .focus-text-font-buttonText {
  color: #eeeeee;
}
.focus > .focus-bg-font-buttonText {
  background-color: #eeeeee;
}
.focus > .focus-border-font-buttonText {
  border-color: #eeeeee;
}
.border-left-font-buttonText {
  border-left-color: #eeeeee;
}
.border-right-font-buttonText {
  border-right-color: #eeeeee;
}
.border-top-font-buttonText {
  border-top-color: #eeeeee;
}
.border-bottom-font-buttonText {
  border-bottom-color: #eeeeee;
}
.text-font-active {
  color: #7ebb0a;
}
.bg-font-active {
  background-color: #7ebb0a;
}
.bg-fill-font-active {
  background: #7ebb0a;
}
.border-font-active {
  border-color: #7ebb0a;
}
.outline-font-active {
  outline-color: #7ebb0a;
}
.focus-text-font-active.focus {
  color: #7ebb0a;
}
.focus-bg-font-active.focus {
  background-color: #7ebb0a;
}
.focus-border-font-active.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-font-active {
  color: #7ebb0a;
}
.cursor > .cursor-bg-font-active {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-font-active {
  border-color: #7ebb0a;
}
.focus > .focus-text-font-active {
  color: #7ebb0a;
}
.focus > .focus-bg-font-active {
  background-color: #7ebb0a;
}
.focus > .focus-border-font-active {
  border-color: #7ebb0a;
}
.border-left-font-active {
  border-left-color: #7ebb0a;
}
.border-right-font-active {
  border-right-color: #7ebb0a;
}
.border-top-font-active {
  border-top-color: #7ebb0a;
}
.border-bottom-font-active {
  border-bottom-color: #7ebb0a;
}
.text-button-inactive {
  color: rgba(238, 238, 238, 0.2);
}
.bg-button-inactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.bg-fill-button-inactive {
  background: rgba(238, 238, 238, 0.2);
}
.border-button-inactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.outline-button-inactive {
  outline-color: rgba(238, 238, 238, 0.2);
}
.focus-text-button-inactive.focus {
  color: rgba(238, 238, 238, 0.2);
}
.focus-bg-button-inactive.focus {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-border-button-inactive.focus {
  border-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-text-button-inactive {
  color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-bg-button-inactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-border-button-inactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-text-button-inactive {
  color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-bg-button-inactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-border-button-inactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.border-left-button-inactive {
  border-left-color: rgba(238, 238, 238, 0.2);
}
.border-right-button-inactive {
  border-right-color: rgba(238, 238, 238, 0.2);
}
.border-top-button-inactive {
  border-top-color: rgba(238, 238, 238, 0.2);
}
.border-bottom-button-inactive {
  border-bottom-color: rgba(238, 238, 238, 0.2);
}
.text-button-active {
  color: #7ebb0a;
}
.bg-button-active {
  background-color: #7ebb0a;
}
.bg-fill-button-active {
  background: #7ebb0a;
}
.border-button-active {
  border-color: #7ebb0a;
}
.outline-button-active {
  outline-color: #7ebb0a;
}
.focus-text-button-active.focus {
  color: #7ebb0a;
}
.focus-bg-button-active.focus {
  background-color: #7ebb0a;
}
.focus-border-button-active.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-button-active {
  color: #7ebb0a;
}
.cursor > .cursor-bg-button-active {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-button-active {
  border-color: #7ebb0a;
}
.focus > .focus-text-button-active {
  color: #7ebb0a;
}
.focus > .focus-bg-button-active {
  background-color: #7ebb0a;
}
.focus > .focus-border-button-active {
  border-color: #7ebb0a;
}
.border-left-button-active {
  border-left-color: #7ebb0a;
}
.border-right-button-active {
  border-right-color: #7ebb0a;
}
.border-top-button-active {
  border-top-color: #7ebb0a;
}
.border-bottom-button-active {
  border-bottom-color: #7ebb0a;
}
.text-button-moreActive {
  color: #7ebb0a;
}
.bg-button-moreActive {
  background-color: #7ebb0a;
}
.bg-fill-button-moreActive {
  background: #7ebb0a;
}
.border-button-moreActive {
  border-color: #7ebb0a;
}
.outline-button-moreActive {
  outline-color: #7ebb0a;
}
.focus-text-button-moreActive.focus {
  color: #7ebb0a;
}
.focus-bg-button-moreActive.focus {
  background-color: #7ebb0a;
}
.focus-border-button-moreActive.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-button-moreActive {
  color: #7ebb0a;
}
.cursor > .cursor-bg-button-moreActive {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-button-moreActive {
  border-color: #7ebb0a;
}
.focus > .focus-text-button-moreActive {
  color: #7ebb0a;
}
.focus > .focus-bg-button-moreActive {
  background-color: #7ebb0a;
}
.focus > .focus-border-button-moreActive {
  border-color: #7ebb0a;
}
.border-left-button-moreActive {
  border-left-color: #7ebb0a;
}
.border-right-button-moreActive {
  border-right-color: #7ebb0a;
}
.border-top-button-moreActive {
  border-top-color: #7ebb0a;
}
.border-bottom-button-moreActive {
  border-bottom-color: #7ebb0a;
}
.text-button-moreInactive {
  color: rgba(238, 238, 238, 0.2);
}
.bg-button-moreInactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.bg-fill-button-moreInactive {
  background: rgba(238, 238, 238, 0.2);
}
.border-button-moreInactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.outline-button-moreInactive {
  outline-color: rgba(238, 238, 238, 0.2);
}
.focus-text-button-moreInactive.focus {
  color: rgba(238, 238, 238, 0.2);
}
.focus-bg-button-moreInactive.focus {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-border-button-moreInactive.focus {
  border-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-text-button-moreInactive {
  color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-bg-button-moreInactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-border-button-moreInactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-text-button-moreInactive {
  color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-bg-button-moreInactive {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-border-button-moreInactive {
  border-color: rgba(238, 238, 238, 0.2);
}
.border-left-button-moreInactive {
  border-left-color: rgba(238, 238, 238, 0.2);
}
.border-right-button-moreInactive {
  border-right-color: rgba(238, 238, 238, 0.2);
}
.border-top-button-moreInactive {
  border-top-color: rgba(238, 238, 238, 0.2);
}
.border-bottom-button-moreInactive {
  border-bottom-color: rgba(238, 238, 238, 0.2);
}
.text-statusbar-background {
  color: rgba(33, 33, 33, 0.8);
}
.bg-statusbar-background {
  background-color: rgba(33, 33, 33, 0.8);
}
.bg-fill-statusbar-background {
  background: rgba(33, 33, 33, 0.8);
}
.border-statusbar-background {
  border-color: rgba(33, 33, 33, 0.8);
}
.outline-statusbar-background {
  outline-color: rgba(33, 33, 33, 0.8);
}
.focus-text-statusbar-background.focus {
  color: rgba(33, 33, 33, 0.8);
}
.focus-bg-statusbar-background.focus {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus-border-statusbar-background.focus {
  border-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-text-statusbar-background {
  color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-bg-statusbar-background {
  background-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-border-statusbar-background {
  border-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-text-statusbar-background {
  color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-bg-statusbar-background {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-border-statusbar-background {
  border-color: rgba(33, 33, 33, 0.8);
}
.border-left-statusbar-background {
  border-left-color: rgba(33, 33, 33, 0.8);
}
.border-right-statusbar-background {
  border-right-color: rgba(33, 33, 33, 0.8);
}
.border-top-statusbar-background {
  border-top-color: rgba(33, 33, 33, 0.8);
}
.border-bottom-statusbar-background {
  border-bottom-color: rgba(33, 33, 33, 0.8);
}
.text-scrollbar-inactive {
  color: #eeeeee;
}
.bg-scrollbar-inactive {
  background-color: #eeeeee;
}
.bg-fill-scrollbar-inactive {
  background: #eeeeee;
}
.border-scrollbar-inactive {
  border-color: #eeeeee;
}
.outline-scrollbar-inactive {
  outline-color: #eeeeee;
}
.focus-text-scrollbar-inactive.focus {
  color: #eeeeee;
}
.focus-bg-scrollbar-inactive.focus {
  background-color: #eeeeee;
}
.focus-border-scrollbar-inactive.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-scrollbar-inactive {
  color: #eeeeee;
}
.cursor > .cursor-bg-scrollbar-inactive {
  background-color: #eeeeee;
}
.cursor > .cursor-border-scrollbar-inactive {
  border-color: #eeeeee;
}
.focus > .focus-text-scrollbar-inactive {
  color: #eeeeee;
}
.focus > .focus-bg-scrollbar-inactive {
  background-color: #eeeeee;
}
.focus > .focus-border-scrollbar-inactive {
  border-color: #eeeeee;
}
.border-left-scrollbar-inactive {
  border-left-color: #eeeeee;
}
.border-right-scrollbar-inactive {
  border-right-color: #eeeeee;
}
.border-top-scrollbar-inactive {
  border-top-color: #eeeeee;
}
.border-bottom-scrollbar-inactive {
  border-bottom-color: #eeeeee;
}
.text-scrollbar-active {
  color: #7ebb0a;
}
.bg-scrollbar-active {
  background-color: #7ebb0a;
}
.bg-fill-scrollbar-active {
  background: #7ebb0a;
}
.border-scrollbar-active {
  border-color: #7ebb0a;
}
.outline-scrollbar-active {
  outline-color: #7ebb0a;
}
.focus-text-scrollbar-active.focus {
  color: #7ebb0a;
}
.focus-bg-scrollbar-active.focus {
  background-color: #7ebb0a;
}
.focus-border-scrollbar-active.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-scrollbar-active {
  color: #7ebb0a;
}
.cursor > .cursor-bg-scrollbar-active {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-scrollbar-active {
  border-color: #7ebb0a;
}
.focus > .focus-text-scrollbar-active {
  color: #7ebb0a;
}
.focus > .focus-bg-scrollbar-active {
  background-color: #7ebb0a;
}
.focus > .focus-border-scrollbar-active {
  border-color: #7ebb0a;
}
.border-left-scrollbar-active {
  border-left-color: #7ebb0a;
}
.border-right-scrollbar-active {
  border-right-color: #7ebb0a;
}
.border-top-scrollbar-active {
  border-top-color: #7ebb0a;
}
.border-bottom-scrollbar-active {
  border-bottom-color: #7ebb0a;
}
.text-scrollbar-background {
  color: rgba(238, 238, 238, 0.2);
}
.bg-scrollbar-background {
  background-color: rgba(238, 238, 238, 0.2);
}
.bg-fill-scrollbar-background {
  background: rgba(238, 238, 238, 0.2);
}
.border-scrollbar-background {
  border-color: rgba(238, 238, 238, 0.2);
}
.outline-scrollbar-background {
  outline-color: rgba(238, 238, 238, 0.2);
}
.focus-text-scrollbar-background.focus {
  color: rgba(238, 238, 238, 0.2);
}
.focus-bg-scrollbar-background.focus {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-border-scrollbar-background.focus {
  border-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-text-scrollbar-background {
  color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-bg-scrollbar-background {
  background-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-border-scrollbar-background {
  border-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-text-scrollbar-background {
  color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-bg-scrollbar-background {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-border-scrollbar-background {
  border-color: rgba(238, 238, 238, 0.2);
}
.border-left-scrollbar-background {
  border-left-color: rgba(238, 238, 238, 0.2);
}
.border-right-scrollbar-background {
  border-right-color: rgba(238, 238, 238, 0.2);
}
.border-top-scrollbar-background {
  border-top-color: rgba(238, 238, 238, 0.2);
}
.border-bottom-scrollbar-background {
  border-bottom-color: rgba(238, 238, 238, 0.2);
}
.text-menu-background {
  color: rgba(33, 33, 33, 0.3);
}
.bg-menu-background {
  background-color: rgba(33, 33, 33, 0.3);
}
.bg-fill-menu-background {
  background: rgba(33, 33, 33, 0.3);
}
.border-menu-background {
  border-color: rgba(33, 33, 33, 0.3);
}
.outline-menu-background {
  outline-color: rgba(33, 33, 33, 0.3);
}
.focus-text-menu-background.focus {
  color: rgba(33, 33, 33, 0.3);
}
.focus-bg-menu-background.focus {
  background-color: rgba(33, 33, 33, 0.3);
}
.focus-border-menu-background.focus {
  border-color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-text-menu-background {
  color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-bg-menu-background {
  background-color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-border-menu-background {
  border-color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-text-menu-background {
  color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-bg-menu-background {
  background-color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-border-menu-background {
  border-color: rgba(33, 33, 33, 0.3);
}
.border-left-menu-background {
  border-left-color: rgba(33, 33, 33, 0.3);
}
.border-right-menu-background {
  border-right-color: rgba(33, 33, 33, 0.3);
}
.border-top-menu-background {
  border-top-color: rgba(33, 33, 33, 0.3);
}
.border-bottom-menu-background {
  border-bottom-color: rgba(33, 33, 33, 0.3);
}
.text-filter-active {
  color: rgba(33, 33, 33, 0.4);
}
.bg-filter-active {
  background-color: rgba(33, 33, 33, 0.4);
}
.bg-fill-filter-active {
  background: rgba(33, 33, 33, 0.4);
}
.border-filter-active {
  border-color: rgba(33, 33, 33, 0.4);
}
.outline-filter-active {
  outline-color: rgba(33, 33, 33, 0.4);
}
.focus-text-filter-active.focus {
  color: rgba(33, 33, 33, 0.4);
}
.focus-bg-filter-active.focus {
  background-color: rgba(33, 33, 33, 0.4);
}
.focus-border-filter-active.focus {
  border-color: rgba(33, 33, 33, 0.4);
}
.cursor > .cursor-text-filter-active {
  color: rgba(33, 33, 33, 0.4);
}
.cursor > .cursor-bg-filter-active {
  background-color: rgba(33, 33, 33, 0.4);
}
.cursor > .cursor-border-filter-active {
  border-color: rgba(33, 33, 33, 0.4);
}
.focus > .focus-text-filter-active {
  color: rgba(33, 33, 33, 0.4);
}
.focus > .focus-bg-filter-active {
  background-color: rgba(33, 33, 33, 0.4);
}
.focus > .focus-border-filter-active {
  border-color: rgba(33, 33, 33, 0.4);
}
.border-left-filter-active {
  border-left-color: rgba(33, 33, 33, 0.4);
}
.border-right-filter-active {
  border-right-color: rgba(33, 33, 33, 0.4);
}
.border-top-filter-active {
  border-top-color: rgba(33, 33, 33, 0.4);
}
.border-bottom-filter-active {
  border-bottom-color: rgba(33, 33, 33, 0.4);
}
.text-filter-inactive {
  color: rgba(33, 33, 33, 0.3);
}
.bg-filter-inactive {
  background-color: rgba(33, 33, 33, 0.3);
}
.bg-fill-filter-inactive {
  background: rgba(33, 33, 33, 0.3);
}
.border-filter-inactive {
  border-color: rgba(33, 33, 33, 0.3);
}
.outline-filter-inactive {
  outline-color: rgba(33, 33, 33, 0.3);
}
.focus-text-filter-inactive.focus {
  color: rgba(33, 33, 33, 0.3);
}
.focus-bg-filter-inactive.focus {
  background-color: rgba(33, 33, 33, 0.3);
}
.focus-border-filter-inactive.focus {
  border-color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-text-filter-inactive {
  color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-bg-filter-inactive {
  background-color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-border-filter-inactive {
  border-color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-text-filter-inactive {
  color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-bg-filter-inactive {
  background-color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-border-filter-inactive {
  border-color: rgba(33, 33, 33, 0.3);
}
.border-left-filter-inactive {
  border-left-color: rgba(33, 33, 33, 0.3);
}
.border-right-filter-inactive {
  border-right-color: rgba(33, 33, 33, 0.3);
}
.border-top-filter-inactive {
  border-top-color: rgba(33, 33, 33, 0.3);
}
.border-bottom-filter-inactive {
  border-bottom-color: rgba(33, 33, 33, 0.3);
}
.text-dialog-background {
  color: #212121;
}
.bg-dialog-background {
  background-color: #212121;
}
.bg-fill-dialog-background {
  background: #212121;
}
.border-dialog-background {
  border-color: #212121;
}
.outline-dialog-background {
  outline-color: #212121;
}
.focus-text-dialog-background.focus {
  color: #212121;
}
.focus-bg-dialog-background.focus {
  background-color: #212121;
}
.focus-border-dialog-background.focus {
  border-color: #212121;
}
.cursor > .cursor-text-dialog-background {
  color: #212121;
}
.cursor > .cursor-bg-dialog-background {
  background-color: #212121;
}
.cursor > .cursor-border-dialog-background {
  border-color: #212121;
}
.focus > .focus-text-dialog-background {
  color: #212121;
}
.focus > .focus-bg-dialog-background {
  background-color: #212121;
}
.focus > .focus-border-dialog-background {
  border-color: #212121;
}
.border-left-dialog-background {
  border-left-color: #212121;
}
.border-right-dialog-background {
  border-right-color: #212121;
}
.border-top-dialog-background {
  border-top-color: #212121;
}
.border-bottom-dialog-background {
  border-bottom-color: #212121;
}
.text-dialog-shadow {
  color: rgba(80, 80, 80, 0.8);
}
.bg-dialog-shadow {
  background-color: rgba(80, 80, 80, 0.8);
}
.bg-fill-dialog-shadow {
  background: rgba(80, 80, 80, 0.8);
}
.border-dialog-shadow {
  border-color: rgba(80, 80, 80, 0.8);
}
.outline-dialog-shadow {
  outline-color: rgba(80, 80, 80, 0.8);
}
.focus-text-dialog-shadow.focus {
  color: rgba(80, 80, 80, 0.8);
}
.focus-bg-dialog-shadow.focus {
  background-color: rgba(80, 80, 80, 0.8);
}
.focus-border-dialog-shadow.focus {
  border-color: rgba(80, 80, 80, 0.8);
}
.cursor > .cursor-text-dialog-shadow {
  color: rgba(80, 80, 80, 0.8);
}
.cursor > .cursor-bg-dialog-shadow {
  background-color: rgba(80, 80, 80, 0.8);
}
.cursor > .cursor-border-dialog-shadow {
  border-color: rgba(80, 80, 80, 0.8);
}
.focus > .focus-text-dialog-shadow {
  color: rgba(80, 80, 80, 0.8);
}
.focus > .focus-bg-dialog-shadow {
  background-color: rgba(80, 80, 80, 0.8);
}
.focus > .focus-border-dialog-shadow {
  border-color: rgba(80, 80, 80, 0.8);
}
.border-left-dialog-shadow {
  border-left-color: rgba(80, 80, 80, 0.8);
}
.border-right-dialog-shadow {
  border-right-color: rgba(80, 80, 80, 0.8);
}
.border-top-dialog-shadow {
  border-top-color: rgba(80, 80, 80, 0.8);
}
.border-bottom-dialog-shadow {
  border-bottom-color: rgba(80, 80, 80, 0.8);
}
.text-player-background {
  color: rgba(96, 96, 96, 0.7);
}
.bg-player-background {
  background-color: rgba(96, 96, 96, 0.7);
}
.bg-fill-player-background {
  background: rgba(96, 96, 96, 0.7);
}
.border-player-background {
  border-color: rgba(96, 96, 96, 0.7);
}
.outline-player-background {
  outline-color: rgba(96, 96, 96, 0.7);
}
.focus-text-player-background.focus {
  color: rgba(96, 96, 96, 0.7);
}
.focus-bg-player-background.focus {
  background-color: rgba(96, 96, 96, 0.7);
}
.focus-border-player-background.focus {
  border-color: rgba(96, 96, 96, 0.7);
}
.cursor > .cursor-text-player-background {
  color: rgba(96, 96, 96, 0.7);
}
.cursor > .cursor-bg-player-background {
  background-color: rgba(96, 96, 96, 0.7);
}
.cursor > .cursor-border-player-background {
  border-color: rgba(96, 96, 96, 0.7);
}
.focus > .focus-text-player-background {
  color: rgba(96, 96, 96, 0.7);
}
.focus > .focus-bg-player-background {
  background-color: rgba(96, 96, 96, 0.7);
}
.focus > .focus-border-player-background {
  border-color: rgba(96, 96, 96, 0.7);
}
.border-left-player-background {
  border-left-color: rgba(96, 96, 96, 0.7);
}
.border-right-player-background {
  border-right-color: rgba(96, 96, 96, 0.7);
}
.border-top-player-background {
  border-top-color: rgba(96, 96, 96, 0.7);
}
.border-bottom-player-background {
  border-bottom-color: rgba(96, 96, 96, 0.7);
}
.text-player-top-background {
  color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.bg-player-top-background {
  background-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.bg-fill-player-top-background {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.border-player-top-background {
  border-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.outline-player-top-background {
  outline-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.focus-text-player-top-background.focus {
  color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.focus-bg-player-top-background.focus {
  background-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.focus-border-player-top-background.focus {
  border-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.cursor > .cursor-text-player-top-background {
  color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.cursor > .cursor-bg-player-top-background {
  background-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.cursor > .cursor-border-player-top-background {
  border-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.focus > .focus-text-player-top-background {
  color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.focus > .focus-bg-player-top-background {
  background-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.focus > .focus-border-player-top-background {
  border-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.border-left-player-top-background {
  border-left-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.border-right-player-top-background {
  border-right-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.border-top-player-top-background {
  border-top-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.border-bottom-player-top-background {
  border-bottom-color: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(96, 96, 96, 0) 99%);
}
.text-player-bottom-background {
  color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.bg-player-bottom-background {
  background-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.bg-fill-player-bottom-background {
  background: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.border-player-bottom-background {
  border-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.outline-player-bottom-background {
  outline-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.focus-text-player-bottom-background.focus {
  color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.focus-bg-player-bottom-background.focus {
  background-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.focus-border-player-bottom-background.focus {
  border-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.cursor > .cursor-text-player-bottom-background {
  color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.cursor > .cursor-bg-player-bottom-background {
  background-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.cursor > .cursor-border-player-bottom-background {
  border-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.focus > .focus-text-player-bottom-background {
  color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.focus > .focus-bg-player-bottom-background {
  background-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.focus > .focus-border-player-bottom-background {
  border-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.border-left-player-bottom-background {
  border-left-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.border-right-player-bottom-background {
  border-right-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.border-top-player-bottom-background {
  border-top-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.border-bottom-player-bottom-background {
  border-bottom-color: linear-gradient(180deg, rgba(96, 96, 96, 0) 0, rgba(0, 0, 0, 0.8) 22rem);
}
.text-player-buttons {
  color: rgba(33, 33, 33, 0.8);
}
.bg-player-buttons {
  background-color: rgba(33, 33, 33, 0.8);
}
.bg-fill-player-buttons {
  background: rgba(33, 33, 33, 0.8);
}
.border-player-buttons {
  border-color: rgba(33, 33, 33, 0.8);
}
.outline-player-buttons {
  outline-color: rgba(33, 33, 33, 0.8);
}
.focus-text-player-buttons.focus {
  color: rgba(33, 33, 33, 0.8);
}
.focus-bg-player-buttons.focus {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus-border-player-buttons.focus {
  border-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-text-player-buttons {
  color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-bg-player-buttons {
  background-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-border-player-buttons {
  border-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-text-player-buttons {
  color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-bg-player-buttons {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-border-player-buttons {
  border-color: rgba(33, 33, 33, 0.8);
}
.border-left-player-buttons {
  border-left-color: rgba(33, 33, 33, 0.8);
}
.border-right-player-buttons {
  border-right-color: rgba(33, 33, 33, 0.8);
}
.border-top-player-buttons {
  border-top-color: rgba(33, 33, 33, 0.8);
}
.border-bottom-player-buttons {
  border-bottom-color: rgba(33, 33, 33, 0.8);
}
.text-player-dropList {
  color: rgba(33, 33, 33, 0.8);
}
.bg-player-dropList {
  background-color: rgba(33, 33, 33, 0.8);
}
.bg-fill-player-dropList {
  background: rgba(33, 33, 33, 0.8);
}
.border-player-dropList {
  border-color: rgba(33, 33, 33, 0.8);
}
.outline-player-dropList {
  outline-color: rgba(33, 33, 33, 0.8);
}
.focus-text-player-dropList.focus {
  color: rgba(33, 33, 33, 0.8);
}
.focus-bg-player-dropList.focus {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus-border-player-dropList.focus {
  border-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-text-player-dropList {
  color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-bg-player-dropList {
  background-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-border-player-dropList {
  border-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-text-player-dropList {
  color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-bg-player-dropList {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-border-player-dropList {
  border-color: rgba(33, 33, 33, 0.8);
}
.border-left-player-dropList {
  border-left-color: rgba(33, 33, 33, 0.8);
}
.border-right-player-dropList {
  border-right-color: rgba(33, 33, 33, 0.8);
}
.border-top-player-dropList {
  border-top-color: rgba(33, 33, 33, 0.8);
}
.border-bottom-player-dropList {
  border-bottom-color: rgba(33, 33, 33, 0.8);
}
.text-player-progressBarActive {
  color: #7ebb0a;
}
.bg-player-progressBarActive {
  background-color: #7ebb0a;
}
.bg-fill-player-progressBarActive {
  background: #7ebb0a;
}
.border-player-progressBarActive {
  border-color: #7ebb0a;
}
.outline-player-progressBarActive {
  outline-color: #7ebb0a;
}
.focus-text-player-progressBarActive.focus {
  color: #7ebb0a;
}
.focus-bg-player-progressBarActive.focus {
  background-color: #7ebb0a;
}
.focus-border-player-progressBarActive.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-player-progressBarActive {
  color: #7ebb0a;
}
.cursor > .cursor-bg-player-progressBarActive {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-player-progressBarActive {
  border-color: #7ebb0a;
}
.focus > .focus-text-player-progressBarActive {
  color: #7ebb0a;
}
.focus > .focus-bg-player-progressBarActive {
  background-color: #7ebb0a;
}
.focus > .focus-border-player-progressBarActive {
  border-color: #7ebb0a;
}
.border-left-player-progressBarActive {
  border-left-color: #7ebb0a;
}
.border-right-player-progressBarActive {
  border-right-color: #7ebb0a;
}
.border-top-player-progressBarActive {
  border-top-color: #7ebb0a;
}
.border-bottom-player-progressBarActive {
  border-bottom-color: #7ebb0a;
}
.text-player-progressBarInactive {
  color: #212121;
}
.bg-player-progressBarInactive {
  background-color: #212121;
}
.bg-fill-player-progressBarInactive {
  background: #212121;
}
.border-player-progressBarInactive {
  border-color: #212121;
}
.outline-player-progressBarInactive {
  outline-color: #212121;
}
.focus-text-player-progressBarInactive.focus {
  color: #212121;
}
.focus-bg-player-progressBarInactive.focus {
  background-color: #212121;
}
.focus-border-player-progressBarInactive.focus {
  border-color: #212121;
}
.cursor > .cursor-text-player-progressBarInactive {
  color: #212121;
}
.cursor > .cursor-bg-player-progressBarInactive {
  background-color: #212121;
}
.cursor > .cursor-border-player-progressBarInactive {
  border-color: #212121;
}
.focus > .focus-text-player-progressBarInactive {
  color: #212121;
}
.focus > .focus-bg-player-progressBarInactive {
  background-color: #212121;
}
.focus > .focus-border-player-progressBarInactive {
  border-color: #212121;
}
.border-left-player-progressBarInactive {
  border-left-color: #212121;
}
.border-right-player-progressBarInactive {
  border-right-color: #212121;
}
.border-top-player-progressBarInactive {
  border-top-color: #212121;
}
.border-bottom-player-progressBarInactive {
  border-bottom-color: #212121;
}
.text-player-progressBarAdsActive {
  color: rgba(231, 193, 10, 0.5);
}
.bg-player-progressBarAdsActive {
  background-color: rgba(231, 193, 10, 0.5);
}
.bg-fill-player-progressBarAdsActive {
  background: rgba(231, 193, 10, 0.5);
}
.border-player-progressBarAdsActive {
  border-color: rgba(231, 193, 10, 0.5);
}
.outline-player-progressBarAdsActive {
  outline-color: rgba(231, 193, 10, 0.5);
}
.focus-text-player-progressBarAdsActive.focus {
  color: rgba(231, 193, 10, 0.5);
}
.focus-bg-player-progressBarAdsActive.focus {
  background-color: rgba(231, 193, 10, 0.5);
}
.focus-border-player-progressBarAdsActive.focus {
  border-color: rgba(231, 193, 10, 0.5);
}
.cursor > .cursor-text-player-progressBarAdsActive {
  color: rgba(231, 193, 10, 0.5);
}
.cursor > .cursor-bg-player-progressBarAdsActive {
  background-color: rgba(231, 193, 10, 0.5);
}
.cursor > .cursor-border-player-progressBarAdsActive {
  border-color: rgba(231, 193, 10, 0.5);
}
.focus > .focus-text-player-progressBarAdsActive {
  color: rgba(231, 193, 10, 0.5);
}
.focus > .focus-bg-player-progressBarAdsActive {
  background-color: rgba(231, 193, 10, 0.5);
}
.focus > .focus-border-player-progressBarAdsActive {
  border-color: rgba(231, 193, 10, 0.5);
}
.border-left-player-progressBarAdsActive {
  border-left-color: rgba(231, 193, 10, 0.5);
}
.border-right-player-progressBarAdsActive {
  border-right-color: rgba(231, 193, 10, 0.5);
}
.border-top-player-progressBarAdsActive {
  border-top-color: rgba(231, 193, 10, 0.5);
}
.border-bottom-player-progressBarAdsActive {
  border-bottom-color: rgba(231, 193, 10, 0.5);
}
.text-player-progressBarAdsInactive {
  color: rgba(33, 33, 33, 0.3);
}
.bg-player-progressBarAdsInactive {
  background-color: rgba(33, 33, 33, 0.3);
}
.bg-fill-player-progressBarAdsInactive {
  background: rgba(33, 33, 33, 0.3);
}
.border-player-progressBarAdsInactive {
  border-color: rgba(33, 33, 33, 0.3);
}
.outline-player-progressBarAdsInactive {
  outline-color: rgba(33, 33, 33, 0.3);
}
.focus-text-player-progressBarAdsInactive.focus {
  color: rgba(33, 33, 33, 0.3);
}
.focus-bg-player-progressBarAdsInactive.focus {
  background-color: rgba(33, 33, 33, 0.3);
}
.focus-border-player-progressBarAdsInactive.focus {
  border-color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-text-player-progressBarAdsInactive {
  color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-bg-player-progressBarAdsInactive {
  background-color: rgba(33, 33, 33, 0.3);
}
.cursor > .cursor-border-player-progressBarAdsInactive {
  border-color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-text-player-progressBarAdsInactive {
  color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-bg-player-progressBarAdsInactive {
  background-color: rgba(33, 33, 33, 0.3);
}
.focus > .focus-border-player-progressBarAdsInactive {
  border-color: rgba(33, 33, 33, 0.3);
}
.border-left-player-progressBarAdsInactive {
  border-left-color: rgba(33, 33, 33, 0.3);
}
.border-right-player-progressBarAdsInactive {
  border-right-color: rgba(33, 33, 33, 0.3);
}
.border-top-player-progressBarAdsInactive {
  border-top-color: rgba(33, 33, 33, 0.3);
}
.border-bottom-player-progressBarAdsInactive {
  border-bottom-color: rgba(33, 33, 33, 0.3);
}
.text-player-progressBarPosition {
  color: #eeeeee;
}
.bg-player-progressBarPosition {
  background-color: #eeeeee;
}
.bg-fill-player-progressBarPosition {
  background: #eeeeee;
}
.border-player-progressBarPosition {
  border-color: #eeeeee;
}
.outline-player-progressBarPosition {
  outline-color: #eeeeee;
}
.focus-text-player-progressBarPosition.focus {
  color: #eeeeee;
}
.focus-bg-player-progressBarPosition.focus {
  background-color: #eeeeee;
}
.focus-border-player-progressBarPosition.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-player-progressBarPosition {
  color: #eeeeee;
}
.cursor > .cursor-bg-player-progressBarPosition {
  background-color: #eeeeee;
}
.cursor > .cursor-border-player-progressBarPosition {
  border-color: #eeeeee;
}
.focus > .focus-text-player-progressBarPosition {
  color: #eeeeee;
}
.focus > .focus-bg-player-progressBarPosition {
  background-color: #eeeeee;
}
.focus > .focus-border-player-progressBarPosition {
  border-color: #eeeeee;
}
.border-left-player-progressBarPosition {
  border-left-color: #eeeeee;
}
.border-right-player-progressBarPosition {
  border-right-color: #eeeeee;
}
.border-top-player-progressBarPosition {
  border-top-color: #eeeeee;
}
.border-bottom-player-progressBarPosition {
  border-bottom-color: #eeeeee;
}
.text-player-progressBarAdvertisement {
  color: rgba(11, 11, 11, 0.5);
}
.bg-player-progressBarAdvertisement {
  background-color: rgba(11, 11, 11, 0.5);
}
.bg-fill-player-progressBarAdvertisement {
  background: rgba(11, 11, 11, 0.5);
}
.border-player-progressBarAdvertisement {
  border-color: rgba(11, 11, 11, 0.5);
}
.outline-player-progressBarAdvertisement {
  outline-color: rgba(11, 11, 11, 0.5);
}
.focus-text-player-progressBarAdvertisement.focus {
  color: rgba(11, 11, 11, 0.5);
}
.focus-bg-player-progressBarAdvertisement.focus {
  background-color: rgba(11, 11, 11, 0.5);
}
.focus-border-player-progressBarAdvertisement.focus {
  border-color: rgba(11, 11, 11, 0.5);
}
.cursor > .cursor-text-player-progressBarAdvertisement {
  color: rgba(11, 11, 11, 0.5);
}
.cursor > .cursor-bg-player-progressBarAdvertisement {
  background-color: rgba(11, 11, 11, 0.5);
}
.cursor > .cursor-border-player-progressBarAdvertisement {
  border-color: rgba(11, 11, 11, 0.5);
}
.focus > .focus-text-player-progressBarAdvertisement {
  color: rgba(11, 11, 11, 0.5);
}
.focus > .focus-bg-player-progressBarAdvertisement {
  background-color: rgba(11, 11, 11, 0.5);
}
.focus > .focus-border-player-progressBarAdvertisement {
  border-color: rgba(11, 11, 11, 0.5);
}
.border-left-player-progressBarAdvertisement {
  border-left-color: rgba(11, 11, 11, 0.5);
}
.border-right-player-progressBarAdvertisement {
  border-right-color: rgba(11, 11, 11, 0.5);
}
.border-top-player-progressBarAdvertisement {
  border-top-color: rgba(11, 11, 11, 0.5);
}
.border-bottom-player-progressBarAdvertisement {
  border-bottom-color: rgba(11, 11, 11, 0.5);
}
.text-player-darkGradient {
  color: rgba(0, 0, 0, 0.8);
}
.bg-player-darkGradient {
  background-color: rgba(0, 0, 0, 0.8);
}
.bg-fill-player-darkGradient {
  background: rgba(0, 0, 0, 0.8);
}
.border-player-darkGradient {
  border-color: rgba(0, 0, 0, 0.8);
}
.outline-player-darkGradient {
  outline-color: rgba(0, 0, 0, 0.8);
}
.focus-text-player-darkGradient.focus {
  color: rgba(0, 0, 0, 0.8);
}
.focus-bg-player-darkGradient.focus {
  background-color: rgba(0, 0, 0, 0.8);
}
.focus-border-player-darkGradient.focus {
  border-color: rgba(0, 0, 0, 0.8);
}
.cursor > .cursor-text-player-darkGradient {
  color: rgba(0, 0, 0, 0.8);
}
.cursor > .cursor-bg-player-darkGradient {
  background-color: rgba(0, 0, 0, 0.8);
}
.cursor > .cursor-border-player-darkGradient {
  border-color: rgba(0, 0, 0, 0.8);
}
.focus > .focus-text-player-darkGradient {
  color: rgba(0, 0, 0, 0.8);
}
.focus > .focus-bg-player-darkGradient {
  background-color: rgba(0, 0, 0, 0.8);
}
.focus > .focus-border-player-darkGradient {
  border-color: rgba(0, 0, 0, 0.8);
}
.border-left-player-darkGradient {
  border-left-color: rgba(0, 0, 0, 0.8);
}
.border-right-player-darkGradient {
  border-right-color: rgba(0, 0, 0, 0.8);
}
.border-top-player-darkGradient {
  border-top-color: rgba(0, 0, 0, 0.8);
}
.border-bottom-player-darkGradient {
  border-bottom-color: rgba(0, 0, 0, 0.8);
}
.text-player-lightGradient {
  color: rgba(96, 96, 96, 0);
}
.bg-player-lightGradient {
  background-color: rgba(96, 96, 96, 0);
}
.bg-fill-player-lightGradient {
  background: rgba(96, 96, 96, 0);
}
.border-player-lightGradient {
  border-color: rgba(96, 96, 96, 0);
}
.outline-player-lightGradient {
  outline-color: rgba(96, 96, 96, 0);
}
.focus-text-player-lightGradient.focus {
  color: rgba(96, 96, 96, 0);
}
.focus-bg-player-lightGradient.focus {
  background-color: rgba(96, 96, 96, 0);
}
.focus-border-player-lightGradient.focus {
  border-color: rgba(96, 96, 96, 0);
}
.cursor > .cursor-text-player-lightGradient {
  color: rgba(96, 96, 96, 0);
}
.cursor > .cursor-bg-player-lightGradient {
  background-color: rgba(96, 96, 96, 0);
}
.cursor > .cursor-border-player-lightGradient {
  border-color: rgba(96, 96, 96, 0);
}
.focus > .focus-text-player-lightGradient {
  color: rgba(96, 96, 96, 0);
}
.focus > .focus-bg-player-lightGradient {
  background-color: rgba(96, 96, 96, 0);
}
.focus > .focus-border-player-lightGradient {
  border-color: rgba(96, 96, 96, 0);
}
.border-left-player-lightGradient {
  border-left-color: rgba(96, 96, 96, 0);
}
.border-right-player-lightGradient {
  border-right-color: rgba(96, 96, 96, 0);
}
.border-top-player-lightGradient {
  border-top-color: rgba(96, 96, 96, 0);
}
.border-bottom-player-lightGradient {
  border-bottom-color: rgba(96, 96, 96, 0);
}
.text-mediapanel-focused {
  color: rgba(238, 238, 238, 0.1);
}
.bg-mediapanel-focused {
  background-color: rgba(238, 238, 238, 0.1);
}
.bg-fill-mediapanel-focused {
  background: rgba(238, 238, 238, 0.1);
}
.border-mediapanel-focused {
  border-color: rgba(238, 238, 238, 0.1);
}
.outline-mediapanel-focused {
  outline-color: rgba(238, 238, 238, 0.1);
}
.focus-text-mediapanel-focused.focus {
  color: rgba(238, 238, 238, 0.1);
}
.focus-bg-mediapanel-focused.focus {
  background-color: rgba(238, 238, 238, 0.1);
}
.focus-border-mediapanel-focused.focus {
  border-color: rgba(238, 238, 238, 0.1);
}
.cursor > .cursor-text-mediapanel-focused {
  color: rgba(238, 238, 238, 0.1);
}
.cursor > .cursor-bg-mediapanel-focused {
  background-color: rgba(238, 238, 238, 0.1);
}
.cursor > .cursor-border-mediapanel-focused {
  border-color: rgba(238, 238, 238, 0.1);
}
.focus > .focus-text-mediapanel-focused {
  color: rgba(238, 238, 238, 0.1);
}
.focus > .focus-bg-mediapanel-focused {
  background-color: rgba(238, 238, 238, 0.1);
}
.focus > .focus-border-mediapanel-focused {
  border-color: rgba(238, 238, 238, 0.1);
}
.border-left-mediapanel-focused {
  border-left-color: rgba(238, 238, 238, 0.1);
}
.border-right-mediapanel-focused {
  border-right-color: rgba(238, 238, 238, 0.1);
}
.border-top-mediapanel-focused {
  border-top-color: rgba(238, 238, 238, 0.1);
}
.border-bottom-mediapanel-focused {
  border-bottom-color: rgba(238, 238, 238, 0.1);
}
.text-mediapanel-normal {
  color: rgba(33, 33, 33, 0.4);
}
.bg-mediapanel-normal {
  background-color: rgba(33, 33, 33, 0.4);
}
.bg-fill-mediapanel-normal {
  background: rgba(33, 33, 33, 0.4);
}
.border-mediapanel-normal {
  border-color: rgba(33, 33, 33, 0.4);
}
.outline-mediapanel-normal {
  outline-color: rgba(33, 33, 33, 0.4);
}
.focus-text-mediapanel-normal.focus {
  color: rgba(33, 33, 33, 0.4);
}
.focus-bg-mediapanel-normal.focus {
  background-color: rgba(33, 33, 33, 0.4);
}
.focus-border-mediapanel-normal.focus {
  border-color: rgba(33, 33, 33, 0.4);
}
.cursor > .cursor-text-mediapanel-normal {
  color: rgba(33, 33, 33, 0.4);
}
.cursor > .cursor-bg-mediapanel-normal {
  background-color: rgba(33, 33, 33, 0.4);
}
.cursor > .cursor-border-mediapanel-normal {
  border-color: rgba(33, 33, 33, 0.4);
}
.focus > .focus-text-mediapanel-normal {
  color: rgba(33, 33, 33, 0.4);
}
.focus > .focus-bg-mediapanel-normal {
  background-color: rgba(33, 33, 33, 0.4);
}
.focus > .focus-border-mediapanel-normal {
  border-color: rgba(33, 33, 33, 0.4);
}
.border-left-mediapanel-normal {
  border-left-color: rgba(33, 33, 33, 0.4);
}
.border-right-mediapanel-normal {
  border-right-color: rgba(33, 33, 33, 0.4);
}
.border-top-mediapanel-normal {
  border-top-color: rgba(33, 33, 33, 0.4);
}
.border-bottom-mediapanel-normal {
  border-bottom-color: rgba(33, 33, 33, 0.4);
}
.text-mediapanel-disable {
  color: rgba(33, 33, 33, 0.7);
}
.bg-mediapanel-disable {
  background-color: rgba(33, 33, 33, 0.7);
}
.bg-fill-mediapanel-disable {
  background: rgba(33, 33, 33, 0.7);
}
.border-mediapanel-disable {
  border-color: rgba(33, 33, 33, 0.7);
}
.outline-mediapanel-disable {
  outline-color: rgba(33, 33, 33, 0.7);
}
.focus-text-mediapanel-disable.focus {
  color: rgba(33, 33, 33, 0.7);
}
.focus-bg-mediapanel-disable.focus {
  background-color: rgba(33, 33, 33, 0.7);
}
.focus-border-mediapanel-disable.focus {
  border-color: rgba(33, 33, 33, 0.7);
}
.cursor > .cursor-text-mediapanel-disable {
  color: rgba(33, 33, 33, 0.7);
}
.cursor > .cursor-bg-mediapanel-disable {
  background-color: rgba(33, 33, 33, 0.7);
}
.cursor > .cursor-border-mediapanel-disable {
  border-color: rgba(33, 33, 33, 0.7);
}
.focus > .focus-text-mediapanel-disable {
  color: rgba(33, 33, 33, 0.7);
}
.focus > .focus-bg-mediapanel-disable {
  background-color: rgba(33, 33, 33, 0.7);
}
.focus > .focus-border-mediapanel-disable {
  border-color: rgba(33, 33, 33, 0.7);
}
.border-left-mediapanel-disable {
  border-left-color: rgba(33, 33, 33, 0.7);
}
.border-right-mediapanel-disable {
  border-right-color: rgba(33, 33, 33, 0.7);
}
.border-top-mediapanel-disable {
  border-top-color: rgba(33, 33, 33, 0.7);
}
.border-bottom-mediapanel-disable {
  border-bottom-color: rgba(33, 33, 33, 0.7);
}
.text-mediapanel-unavailable {
  color: rgba(238, 238, 238, 0.4);
}
.bg-mediapanel-unavailable {
  background-color: rgba(238, 238, 238, 0.4);
}
.bg-fill-mediapanel-unavailable {
  background: rgba(238, 238, 238, 0.4);
}
.border-mediapanel-unavailable {
  border-color: rgba(238, 238, 238, 0.4);
}
.outline-mediapanel-unavailable {
  outline-color: rgba(238, 238, 238, 0.4);
}
.focus-text-mediapanel-unavailable.focus {
  color: rgba(238, 238, 238, 0.4);
}
.focus-bg-mediapanel-unavailable.focus {
  background-color: rgba(238, 238, 238, 0.4);
}
.focus-border-mediapanel-unavailable.focus {
  border-color: rgba(238, 238, 238, 0.4);
}
.cursor > .cursor-text-mediapanel-unavailable {
  color: rgba(238, 238, 238, 0.4);
}
.cursor > .cursor-bg-mediapanel-unavailable {
  background-color: rgba(238, 238, 238, 0.4);
}
.cursor > .cursor-border-mediapanel-unavailable {
  border-color: rgba(238, 238, 238, 0.4);
}
.focus > .focus-text-mediapanel-unavailable {
  color: rgba(238, 238, 238, 0.4);
}
.focus > .focus-bg-mediapanel-unavailable {
  background-color: rgba(238, 238, 238, 0.4);
}
.focus > .focus-border-mediapanel-unavailable {
  border-color: rgba(238, 238, 238, 0.4);
}
.border-left-mediapanel-unavailable {
  border-left-color: rgba(238, 238, 238, 0.4);
}
.border-right-mediapanel-unavailable {
  border-right-color: rgba(238, 238, 238, 0.4);
}
.border-top-mediapanel-unavailable {
  border-top-color: rgba(238, 238, 238, 0.4);
}
.border-bottom-mediapanel-unavailable {
  border-bottom-color: rgba(238, 238, 238, 0.4);
}
.text-mediapanel-darkGradient {
  color: #cc0000;
}
.bg-mediapanel-darkGradient {
  background-color: #cc0000;
}
.bg-fill-mediapanel-darkGradient {
  background: #cc0000;
}
.border-mediapanel-darkGradient {
  border-color: #cc0000;
}
.outline-mediapanel-darkGradient {
  outline-color: #cc0000;
}
.focus-text-mediapanel-darkGradient.focus {
  color: #cc0000;
}
.focus-bg-mediapanel-darkGradient.focus {
  background-color: #cc0000;
}
.focus-border-mediapanel-darkGradient.focus {
  border-color: #cc0000;
}
.cursor > .cursor-text-mediapanel-darkGradient {
  color: #cc0000;
}
.cursor > .cursor-bg-mediapanel-darkGradient {
  background-color: #cc0000;
}
.cursor > .cursor-border-mediapanel-darkGradient {
  border-color: #cc0000;
}
.focus > .focus-text-mediapanel-darkGradient {
  color: #cc0000;
}
.focus > .focus-bg-mediapanel-darkGradient {
  background-color: #cc0000;
}
.focus > .focus-border-mediapanel-darkGradient {
  border-color: #cc0000;
}
.border-left-mediapanel-darkGradient {
  border-left-color: #cc0000;
}
.border-right-mediapanel-darkGradient {
  border-right-color: #cc0000;
}
.border-top-mediapanel-darkGradient {
  border-top-color: #cc0000;
}
.border-bottom-mediapanel-darkGradient {
  border-bottom-color: #cc0000;
}
.text-mediapanel-lightGradient {
  color: black;
}
.bg-mediapanel-lightGradient {
  background-color: black;
}
.bg-fill-mediapanel-lightGradient {
  background: black;
}
.border-mediapanel-lightGradient {
  border-color: black;
}
.outline-mediapanel-lightGradient {
  outline-color: black;
}
.focus-text-mediapanel-lightGradient.focus {
  color: black;
}
.focus-bg-mediapanel-lightGradient.focus {
  background-color: black;
}
.focus-border-mediapanel-lightGradient.focus {
  border-color: black;
}
.cursor > .cursor-text-mediapanel-lightGradient {
  color: black;
}
.cursor > .cursor-bg-mediapanel-lightGradient {
  background-color: black;
}
.cursor > .cursor-border-mediapanel-lightGradient {
  border-color: black;
}
.focus > .focus-text-mediapanel-lightGradient {
  color: black;
}
.focus > .focus-bg-mediapanel-lightGradient {
  background-color: black;
}
.focus > .focus-border-mediapanel-lightGradient {
  border-color: black;
}
.border-left-mediapanel-lightGradient {
  border-left-color: black;
}
.border-right-mediapanel-lightGradient {
  border-right-color: black;
}
.border-top-mediapanel-lightGradient {
  border-top-color: black;
}
.border-bottom-mediapanel-lightGradient {
  border-bottom-color: black;
}
.text-grid-background {
  color: rgba(33, 33, 33, 0.8);
}
.bg-grid-background {
  background-color: rgba(33, 33, 33, 0.8);
}
.bg-fill-grid-background {
  background: rgba(33, 33, 33, 0.8);
}
.border-grid-background {
  border-color: rgba(33, 33, 33, 0.8);
}
.outline-grid-background {
  outline-color: rgba(33, 33, 33, 0.8);
}
.focus-text-grid-background.focus {
  color: rgba(33, 33, 33, 0.8);
}
.focus-bg-grid-background.focus {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus-border-grid-background.focus {
  border-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-text-grid-background {
  color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-bg-grid-background {
  background-color: rgba(33, 33, 33, 0.8);
}
.cursor > .cursor-border-grid-background {
  border-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-text-grid-background {
  color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-bg-grid-background {
  background-color: rgba(33, 33, 33, 0.8);
}
.focus > .focus-border-grid-background {
  border-color: rgba(33, 33, 33, 0.8);
}
.border-left-grid-background {
  border-left-color: rgba(33, 33, 33, 0.8);
}
.border-right-grid-background {
  border-right-color: rgba(33, 33, 33, 0.8);
}
.border-top-grid-background {
  border-top-color: rgba(33, 33, 33, 0.8);
}
.border-bottom-grid-background {
  border-bottom-color: rgba(33, 33, 33, 0.8);
}
.text-virtualkeyboard-buttonBackground {
  color: rgba(126, 187, 10, 0.1);
}
.bg-virtualkeyboard-buttonBackground {
  background-color: rgba(126, 187, 10, 0.1);
}
.bg-fill-virtualkeyboard-buttonBackground {
  background: rgba(126, 187, 10, 0.1);
}
.border-virtualkeyboard-buttonBackground {
  border-color: rgba(126, 187, 10, 0.1);
}
.outline-virtualkeyboard-buttonBackground {
  outline-color: rgba(126, 187, 10, 0.1);
}
.focus-text-virtualkeyboard-buttonBackground.focus {
  color: rgba(126, 187, 10, 0.1);
}
.focus-bg-virtualkeyboard-buttonBackground.focus {
  background-color: rgba(126, 187, 10, 0.1);
}
.focus-border-virtualkeyboard-buttonBackground.focus {
  border-color: rgba(126, 187, 10, 0.1);
}
.cursor > .cursor-text-virtualkeyboard-buttonBackground {
  color: rgba(126, 187, 10, 0.1);
}
.cursor > .cursor-bg-virtualkeyboard-buttonBackground {
  background-color: rgba(126, 187, 10, 0.1);
}
.cursor > .cursor-border-virtualkeyboard-buttonBackground {
  border-color: rgba(126, 187, 10, 0.1);
}
.focus > .focus-text-virtualkeyboard-buttonBackground {
  color: rgba(126, 187, 10, 0.1);
}
.focus > .focus-bg-virtualkeyboard-buttonBackground {
  background-color: rgba(126, 187, 10, 0.1);
}
.focus > .focus-border-virtualkeyboard-buttonBackground {
  border-color: rgba(126, 187, 10, 0.1);
}
.border-left-virtualkeyboard-buttonBackground {
  border-left-color: rgba(126, 187, 10, 0.1);
}
.border-right-virtualkeyboard-buttonBackground {
  border-right-color: rgba(126, 187, 10, 0.1);
}
.border-top-virtualkeyboard-buttonBackground {
  border-top-color: rgba(126, 187, 10, 0.1);
}
.border-bottom-virtualkeyboard-buttonBackground {
  border-bottom-color: rgba(126, 187, 10, 0.1);
}
.text-virtualkeyboard-highlightButtonBackground {
  color: #7ebb0a;
}
.bg-virtualkeyboard-highlightButtonBackground {
  background-color: #7ebb0a;
}
.bg-fill-virtualkeyboard-highlightButtonBackground {
  background: #7ebb0a;
}
.border-virtualkeyboard-highlightButtonBackground {
  border-color: #7ebb0a;
}
.outline-virtualkeyboard-highlightButtonBackground {
  outline-color: #7ebb0a;
}
.focus-text-virtualkeyboard-highlightButtonBackground.focus {
  color: #7ebb0a;
}
.focus-bg-virtualkeyboard-highlightButtonBackground.focus {
  background-color: #7ebb0a;
}
.focus-border-virtualkeyboard-highlightButtonBackground.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-virtualkeyboard-highlightButtonBackground {
  color: #7ebb0a;
}
.cursor > .cursor-bg-virtualkeyboard-highlightButtonBackground {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-virtualkeyboard-highlightButtonBackground {
  border-color: #7ebb0a;
}
.focus > .focus-text-virtualkeyboard-highlightButtonBackground {
  color: #7ebb0a;
}
.focus > .focus-bg-virtualkeyboard-highlightButtonBackground {
  background-color: #7ebb0a;
}
.focus > .focus-border-virtualkeyboard-highlightButtonBackground {
  border-color: #7ebb0a;
}
.border-left-virtualkeyboard-highlightButtonBackground {
  border-left-color: #7ebb0a;
}
.border-right-virtualkeyboard-highlightButtonBackground {
  border-right-color: #7ebb0a;
}
.border-top-virtualkeyboard-highlightButtonBackground {
  border-top-color: #7ebb0a;
}
.border-bottom-virtualkeyboard-highlightButtonBackground {
  border-bottom-color: #7ebb0a;
}
.text-virtualkeyboard-activeLetter {
  color: #eeeeee;
}
.bg-virtualkeyboard-activeLetter {
  background-color: #eeeeee;
}
.bg-fill-virtualkeyboard-activeLetter {
  background: #eeeeee;
}
.border-virtualkeyboard-activeLetter {
  border-color: #eeeeee;
}
.outline-virtualkeyboard-activeLetter {
  outline-color: #eeeeee;
}
.focus-text-virtualkeyboard-activeLetter.focus {
  color: #eeeeee;
}
.focus-bg-virtualkeyboard-activeLetter.focus {
  background-color: #eeeeee;
}
.focus-border-virtualkeyboard-activeLetter.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-virtualkeyboard-activeLetter {
  color: #eeeeee;
}
.cursor > .cursor-bg-virtualkeyboard-activeLetter {
  background-color: #eeeeee;
}
.cursor > .cursor-border-virtualkeyboard-activeLetter {
  border-color: #eeeeee;
}
.focus > .focus-text-virtualkeyboard-activeLetter {
  color: #eeeeee;
}
.focus > .focus-bg-virtualkeyboard-activeLetter {
  background-color: #eeeeee;
}
.focus > .focus-border-virtualkeyboard-activeLetter {
  border-color: #eeeeee;
}
.border-left-virtualkeyboard-activeLetter {
  border-left-color: #eeeeee;
}
.border-right-virtualkeyboard-activeLetter {
  border-right-color: #eeeeee;
}
.border-top-virtualkeyboard-activeLetter {
  border-top-color: #eeeeee;
}
.border-bottom-virtualkeyboard-activeLetter {
  border-bottom-color: #eeeeee;
}
.text-virtualkeyboard-inactiveLetter {
  color: #a3a3a3;
}
.bg-virtualkeyboard-inactiveLetter {
  background-color: #a3a3a3;
}
.bg-fill-virtualkeyboard-inactiveLetter {
  background: #a3a3a3;
}
.border-virtualkeyboard-inactiveLetter {
  border-color: #a3a3a3;
}
.outline-virtualkeyboard-inactiveLetter {
  outline-color: #a3a3a3;
}
.focus-text-virtualkeyboard-inactiveLetter.focus {
  color: #a3a3a3;
}
.focus-bg-virtualkeyboard-inactiveLetter.focus {
  background-color: #a3a3a3;
}
.focus-border-virtualkeyboard-inactiveLetter.focus {
  border-color: #a3a3a3;
}
.cursor > .cursor-text-virtualkeyboard-inactiveLetter {
  color: #a3a3a3;
}
.cursor > .cursor-bg-virtualkeyboard-inactiveLetter {
  background-color: #a3a3a3;
}
.cursor > .cursor-border-virtualkeyboard-inactiveLetter {
  border-color: #a3a3a3;
}
.focus > .focus-text-virtualkeyboard-inactiveLetter {
  color: #a3a3a3;
}
.focus > .focus-bg-virtualkeyboard-inactiveLetter {
  background-color: #a3a3a3;
}
.focus > .focus-border-virtualkeyboard-inactiveLetter {
  border-color: #a3a3a3;
}
.border-left-virtualkeyboard-inactiveLetter {
  border-left-color: #a3a3a3;
}
.border-right-virtualkeyboard-inactiveLetter {
  border-right-color: #a3a3a3;
}
.border-top-virtualkeyboard-inactiveLetter {
  border-top-color: #a3a3a3;
}
.border-bottom-virtualkeyboard-inactiveLetter {
  border-bottom-color: #a3a3a3;
}
.text-virtualkeyboard-highlightActiveLetter {
  color: #eeeeee;
}
.bg-virtualkeyboard-highlightActiveLetter {
  background-color: #eeeeee;
}
.bg-fill-virtualkeyboard-highlightActiveLetter {
  background: #eeeeee;
}
.border-virtualkeyboard-highlightActiveLetter {
  border-color: #eeeeee;
}
.outline-virtualkeyboard-highlightActiveLetter {
  outline-color: #eeeeee;
}
.focus-text-virtualkeyboard-highlightActiveLetter.focus {
  color: #eeeeee;
}
.focus-bg-virtualkeyboard-highlightActiveLetter.focus {
  background-color: #eeeeee;
}
.focus-border-virtualkeyboard-highlightActiveLetter.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-virtualkeyboard-highlightActiveLetter {
  color: #eeeeee;
}
.cursor > .cursor-bg-virtualkeyboard-highlightActiveLetter {
  background-color: #eeeeee;
}
.cursor > .cursor-border-virtualkeyboard-highlightActiveLetter {
  border-color: #eeeeee;
}
.focus > .focus-text-virtualkeyboard-highlightActiveLetter {
  color: #eeeeee;
}
.focus > .focus-bg-virtualkeyboard-highlightActiveLetter {
  background-color: #eeeeee;
}
.focus > .focus-border-virtualkeyboard-highlightActiveLetter {
  border-color: #eeeeee;
}
.border-left-virtualkeyboard-highlightActiveLetter {
  border-left-color: #eeeeee;
}
.border-right-virtualkeyboard-highlightActiveLetter {
  border-right-color: #eeeeee;
}
.border-top-virtualkeyboard-highlightActiveLetter {
  border-top-color: #eeeeee;
}
.border-bottom-virtualkeyboard-highlightActiveLetter {
  border-bottom-color: #eeeeee;
}
.text-virtualkeyboard-highlightInactiveLetter {
  color: #546e7a;
}
.bg-virtualkeyboard-highlightInactiveLetter {
  background-color: #546e7a;
}
.bg-fill-virtualkeyboard-highlightInactiveLetter {
  background: #546e7a;
}
.border-virtualkeyboard-highlightInactiveLetter {
  border-color: #546e7a;
}
.outline-virtualkeyboard-highlightInactiveLetter {
  outline-color: #546e7a;
}
.focus-text-virtualkeyboard-highlightInactiveLetter.focus {
  color: #546e7a;
}
.focus-bg-virtualkeyboard-highlightInactiveLetter.focus {
  background-color: #546e7a;
}
.focus-border-virtualkeyboard-highlightInactiveLetter.focus {
  border-color: #546e7a;
}
.cursor > .cursor-text-virtualkeyboard-highlightInactiveLetter {
  color: #546e7a;
}
.cursor > .cursor-bg-virtualkeyboard-highlightInactiveLetter {
  background-color: #546e7a;
}
.cursor > .cursor-border-virtualkeyboard-highlightInactiveLetter {
  border-color: #546e7a;
}
.focus > .focus-text-virtualkeyboard-highlightInactiveLetter {
  color: #546e7a;
}
.focus > .focus-bg-virtualkeyboard-highlightInactiveLetter {
  background-color: #546e7a;
}
.focus > .focus-border-virtualkeyboard-highlightInactiveLetter {
  border-color: #546e7a;
}
.border-left-virtualkeyboard-highlightInactiveLetter {
  border-left-color: #546e7a;
}
.border-right-virtualkeyboard-highlightInactiveLetter {
  border-right-color: #546e7a;
}
.border-top-virtualkeyboard-highlightInactiveLetter {
  border-top-color: #546e7a;
}
.border-bottom-virtualkeyboard-highlightInactiveLetter {
  border-bottom-color: #546e7a;
}
.text-placeholder-main {
  color: rgba(33, 33, 33, 0.9);
}
.bg-placeholder-main {
  background-color: rgba(33, 33, 33, 0.9);
}
.bg-fill-placeholder-main {
  background: rgba(33, 33, 33, 0.9);
}
.border-placeholder-main {
  border-color: rgba(33, 33, 33, 0.9);
}
.outline-placeholder-main {
  outline-color: rgba(33, 33, 33, 0.9);
}
.focus-text-placeholder-main.focus {
  color: rgba(33, 33, 33, 0.9);
}
.focus-bg-placeholder-main.focus {
  background-color: rgba(33, 33, 33, 0.9);
}
.focus-border-placeholder-main.focus {
  border-color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-text-placeholder-main {
  color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-bg-placeholder-main {
  background-color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-border-placeholder-main {
  border-color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-text-placeholder-main {
  color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-bg-placeholder-main {
  background-color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-border-placeholder-main {
  border-color: rgba(33, 33, 33, 0.9);
}
.border-left-placeholder-main {
  border-left-color: rgba(33, 33, 33, 0.9);
}
.border-right-placeholder-main {
  border-right-color: rgba(33, 33, 33, 0.9);
}
.border-top-placeholder-main {
  border-top-color: rgba(33, 33, 33, 0.9);
}
.border-bottom-placeholder-main {
  border-bottom-color: rgba(33, 33, 33, 0.9);
}
.text-placeholder-activeHomeList {
  color: rgba(0, 0, 0, 0.4);
}
.bg-placeholder-activeHomeList {
  background-color: rgba(0, 0, 0, 0.4);
}
.bg-fill-placeholder-activeHomeList {
  background: rgba(0, 0, 0, 0.4);
}
.border-placeholder-activeHomeList {
  border-color: rgba(0, 0, 0, 0.4);
}
.outline-placeholder-activeHomeList {
  outline-color: rgba(0, 0, 0, 0.4);
}
.focus-text-placeholder-activeHomeList.focus {
  color: rgba(0, 0, 0, 0.4);
}
.focus-bg-placeholder-activeHomeList.focus {
  background-color: rgba(0, 0, 0, 0.4);
}
.focus-border-placeholder-activeHomeList.focus {
  border-color: rgba(0, 0, 0, 0.4);
}
.cursor > .cursor-text-placeholder-activeHomeList {
  color: rgba(0, 0, 0, 0.4);
}
.cursor > .cursor-bg-placeholder-activeHomeList {
  background-color: rgba(0, 0, 0, 0.4);
}
.cursor > .cursor-border-placeholder-activeHomeList {
  border-color: rgba(0, 0, 0, 0.4);
}
.focus > .focus-text-placeholder-activeHomeList {
  color: rgba(0, 0, 0, 0.4);
}
.focus > .focus-bg-placeholder-activeHomeList {
  background-color: rgba(0, 0, 0, 0.4);
}
.focus > .focus-border-placeholder-activeHomeList {
  border-color: rgba(0, 0, 0, 0.4);
}
.border-left-placeholder-activeHomeList {
  border-left-color: rgba(0, 0, 0, 0.4);
}
.border-right-placeholder-activeHomeList {
  border-right-color: rgba(0, 0, 0, 0.4);
}
.border-top-placeholder-activeHomeList {
  border-top-color: rgba(0, 0, 0, 0.4);
}
.border-bottom-placeholder-activeHomeList {
  border-bottom-color: rgba(0, 0, 0, 0.4);
}
.text-placeholder-tnt {
  color: #abdbfe;
}
.bg-placeholder-tnt {
  background-color: #abdbfe;
}
.bg-fill-placeholder-tnt {
  background: #abdbfe;
}
.border-placeholder-tnt {
  border-color: #abdbfe;
}
.outline-placeholder-tnt {
  outline-color: #abdbfe;
}
.focus-text-placeholder-tnt.focus {
  color: #abdbfe;
}
.focus-bg-placeholder-tnt.focus {
  background-color: #abdbfe;
}
.focus-border-placeholder-tnt.focus {
  border-color: #abdbfe;
}
.cursor > .cursor-text-placeholder-tnt {
  color: #abdbfe;
}
.cursor > .cursor-bg-placeholder-tnt {
  background-color: #abdbfe;
}
.cursor > .cursor-border-placeholder-tnt {
  border-color: #abdbfe;
}
.focus > .focus-text-placeholder-tnt {
  color: #abdbfe;
}
.focus > .focus-bg-placeholder-tnt {
  background-color: #abdbfe;
}
.focus > .focus-border-placeholder-tnt {
  border-color: #abdbfe;
}
.border-left-placeholder-tnt {
  border-left-color: #abdbfe;
}
.border-right-placeholder-tnt {
  border-right-color: #abdbfe;
}
.border-top-placeholder-tnt {
  border-top-color: #abdbfe;
}
.border-bottom-placeholder-tnt {
  border-bottom-color: #abdbfe;
}
.text-placeholder-ivi {
  color: #ff0047;
}
.bg-placeholder-ivi {
  background-color: #ff0047;
}
.bg-fill-placeholder-ivi {
  background: #ff0047;
}
.border-placeholder-ivi {
  border-color: #ff0047;
}
.outline-placeholder-ivi {
  outline-color: #ff0047;
}
.focus-text-placeholder-ivi.focus {
  color: #ff0047;
}
.focus-bg-placeholder-ivi.focus {
  background-color: #ff0047;
}
.focus-border-placeholder-ivi.focus {
  border-color: #ff0047;
}
.cursor > .cursor-text-placeholder-ivi {
  color: #ff0047;
}
.cursor > .cursor-bg-placeholder-ivi {
  background-color: #ff0047;
}
.cursor > .cursor-border-placeholder-ivi {
  border-color: #ff0047;
}
.focus > .focus-text-placeholder-ivi {
  color: #ff0047;
}
.focus > .focus-bg-placeholder-ivi {
  background-color: #ff0047;
}
.focus > .focus-border-placeholder-ivi {
  border-color: #ff0047;
}
.border-left-placeholder-ivi {
  border-left-color: #ff0047;
}
.border-right-placeholder-ivi {
  border-right-color: #ff0047;
}
.border-top-placeholder-ivi {
  border-top-color: #ff0047;
}
.border-bottom-placeholder-ivi {
  border-bottom-color: #ff0047;
}
.text-placeholder-megogo {
  color: #000000;
}
.bg-placeholder-megogo {
  background-color: #000000;
}
.bg-fill-placeholder-megogo {
  background: #000000;
}
.border-placeholder-megogo {
  border-color: #000000;
}
.outline-placeholder-megogo {
  outline-color: #000000;
}
.focus-text-placeholder-megogo.focus {
  color: #000000;
}
.focus-bg-placeholder-megogo.focus {
  background-color: #000000;
}
.focus-border-placeholder-megogo.focus {
  border-color: #000000;
}
.cursor > .cursor-text-placeholder-megogo {
  color: #000000;
}
.cursor > .cursor-bg-placeholder-megogo {
  background-color: #000000;
}
.cursor > .cursor-border-placeholder-megogo {
  border-color: #000000;
}
.focus > .focus-text-placeholder-megogo {
  color: #000000;
}
.focus > .focus-bg-placeholder-megogo {
  background-color: #000000;
}
.focus > .focus-border-placeholder-megogo {
  border-color: #000000;
}
.border-left-placeholder-megogo {
  border-left-color: #000000;
}
.border-right-placeholder-megogo {
  border-right-color: #000000;
}
.border-top-placeholder-megogo {
  border-top-color: #000000;
}
.border-bottom-placeholder-megogo {
  border-bottom-color: #000000;
}
.text-placeholder-amediateka {
  color: #000000;
}
.bg-placeholder-amediateka {
  background-color: #000000;
}
.bg-fill-placeholder-amediateka {
  background: #000000;
}
.border-placeholder-amediateka {
  border-color: #000000;
}
.outline-placeholder-amediateka {
  outline-color: #000000;
}
.focus-text-placeholder-amediateka.focus {
  color: #000000;
}
.focus-bg-placeholder-amediateka.focus {
  background-color: #000000;
}
.focus-border-placeholder-amediateka.focus {
  border-color: #000000;
}
.cursor > .cursor-text-placeholder-amediateka {
  color: #000000;
}
.cursor > .cursor-bg-placeholder-amediateka {
  background-color: #000000;
}
.cursor > .cursor-border-placeholder-amediateka {
  border-color: #000000;
}
.focus > .focus-text-placeholder-amediateka {
  color: #000000;
}
.focus > .focus-bg-placeholder-amediateka {
  background-color: #000000;
}
.focus > .focus-border-placeholder-amediateka {
  border-color: #000000;
}
.border-left-placeholder-amediateka {
  border-left-color: #000000;
}
.border-right-placeholder-amediateka {
  border-right-color: #000000;
}
.border-top-placeholder-amediateka {
  border-top-color: #000000;
}
.border-bottom-placeholder-amediateka {
  border-bottom-color: #000000;
}
.text-placeholder-youtube {
  color: #c4c4c4;
}
.bg-placeholder-youtube {
  background-color: #c4c4c4;
}
.bg-fill-placeholder-youtube {
  background: #c4c4c4;
}
.border-placeholder-youtube {
  border-color: #c4c4c4;
}
.outline-placeholder-youtube {
  outline-color: #c4c4c4;
}
.focus-text-placeholder-youtube.focus {
  color: #c4c4c4;
}
.focus-bg-placeholder-youtube.focus {
  background-color: #c4c4c4;
}
.focus-border-placeholder-youtube.focus {
  border-color: #c4c4c4;
}
.cursor > .cursor-text-placeholder-youtube {
  color: #c4c4c4;
}
.cursor > .cursor-bg-placeholder-youtube {
  background-color: #c4c4c4;
}
.cursor > .cursor-border-placeholder-youtube {
  border-color: #c4c4c4;
}
.focus > .focus-text-placeholder-youtube {
  color: #c4c4c4;
}
.focus > .focus-bg-placeholder-youtube {
  background-color: #c4c4c4;
}
.focus > .focus-border-placeholder-youtube {
  border-color: #c4c4c4;
}
.border-left-placeholder-youtube {
  border-left-color: #c4c4c4;
}
.border-right-placeholder-youtube {
  border-right-color: #c4c4c4;
}
.border-top-placeholder-youtube {
  border-top-color: #c4c4c4;
}
.border-bottom-placeholder-youtube {
  border-bottom-color: #c4c4c4;
}
.text-placeholder-image {
  color: rgba(33, 33, 33, 0.9);
}
.bg-placeholder-image {
  background-color: rgba(33, 33, 33, 0.9);
}
.bg-fill-placeholder-image {
  background: rgba(33, 33, 33, 0.9);
}
.border-placeholder-image {
  border-color: rgba(33, 33, 33, 0.9);
}
.outline-placeholder-image {
  outline-color: rgba(33, 33, 33, 0.9);
}
.focus-text-placeholder-image.focus {
  color: rgba(33, 33, 33, 0.9);
}
.focus-bg-placeholder-image.focus {
  background-color: rgba(33, 33, 33, 0.9);
}
.focus-border-placeholder-image.focus {
  border-color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-text-placeholder-image {
  color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-bg-placeholder-image {
  background-color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-border-placeholder-image {
  border-color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-text-placeholder-image {
  color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-bg-placeholder-image {
  background-color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-border-placeholder-image {
  border-color: rgba(33, 33, 33, 0.9);
}
.border-left-placeholder-image {
  border-left-color: rgba(33, 33, 33, 0.9);
}
.border-right-placeholder-image {
  border-right-color: rgba(33, 33, 33, 0.9);
}
.border-top-placeholder-image {
  border-top-color: rgba(33, 33, 33, 0.9);
}
.border-bottom-placeholder-image {
  border-bottom-color: rgba(33, 33, 33, 0.9);
}
.text-item-backgroundInactive {
  color: #4e5c6a;
}
.bg-item-backgroundInactive {
  background-color: #4e5c6a;
}
.bg-fill-item-backgroundInactive {
  background: #4e5c6a;
}
.border-item-backgroundInactive {
  border-color: #4e5c6a;
}
.outline-item-backgroundInactive {
  outline-color: #4e5c6a;
}
.focus-text-item-backgroundInactive.focus {
  color: #4e5c6a;
}
.focus-bg-item-backgroundInactive.focus {
  background-color: #4e5c6a;
}
.focus-border-item-backgroundInactive.focus {
  border-color: #4e5c6a;
}
.cursor > .cursor-text-item-backgroundInactive {
  color: #4e5c6a;
}
.cursor > .cursor-bg-item-backgroundInactive {
  background-color: #4e5c6a;
}
.cursor > .cursor-border-item-backgroundInactive {
  border-color: #4e5c6a;
}
.focus > .focus-text-item-backgroundInactive {
  color: #4e5c6a;
}
.focus > .focus-bg-item-backgroundInactive {
  background-color: #4e5c6a;
}
.focus > .focus-border-item-backgroundInactive {
  border-color: #4e5c6a;
}
.border-left-item-backgroundInactive {
  border-left-color: #4e5c6a;
}
.border-right-item-backgroundInactive {
  border-right-color: #4e5c6a;
}
.border-top-item-backgroundInactive {
  border-top-color: #4e5c6a;
}
.border-bottom-item-backgroundInactive {
  border-bottom-color: #4e5c6a;
}
.text-item-background {
  color: #eeeeee;
}
.bg-item-background {
  background-color: #eeeeee;
}
.bg-fill-item-background {
  background: #eeeeee;
}
.border-item-background {
  border-color: #eeeeee;
}
.outline-item-background {
  outline-color: #eeeeee;
}
.focus-text-item-background.focus {
  color: #eeeeee;
}
.focus-bg-item-background.focus {
  background-color: #eeeeee;
}
.focus-border-item-background.focus {
  border-color: #eeeeee;
}
.cursor > .cursor-text-item-background {
  color: #eeeeee;
}
.cursor > .cursor-bg-item-background {
  background-color: #eeeeee;
}
.cursor > .cursor-border-item-background {
  border-color: #eeeeee;
}
.focus > .focus-text-item-background {
  color: #eeeeee;
}
.focus > .focus-bg-item-background {
  background-color: #eeeeee;
}
.focus > .focus-border-item-background {
  border-color: #eeeeee;
}
.border-left-item-background {
  border-left-color: #eeeeee;
}
.border-right-item-background {
  border-right-color: #eeeeee;
}
.border-top-item-background {
  border-top-color: #eeeeee;
}
.border-bottom-item-background {
  border-bottom-color: #eeeeee;
}
.text-grid-text-past {
  color: rgba(238, 238, 238, 0.9);
}
.bg-grid-text-past {
  background-color: rgba(238, 238, 238, 0.9);
}
.bg-fill-grid-text-past {
  background: rgba(238, 238, 238, 0.9);
}
.border-grid-text-past {
  border-color: rgba(238, 238, 238, 0.9);
}
.outline-grid-text-past {
  outline-color: rgba(238, 238, 238, 0.9);
}
.focus-text-grid-text-past.focus {
  color: rgba(238, 238, 238, 0.9);
}
.focus-bg-grid-text-past.focus {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus-border-grid-text-past.focus {
  border-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-text-grid-text-past {
  color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-bg-grid-text-past {
  background-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-border-grid-text-past {
  border-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-text-grid-text-past {
  color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-bg-grid-text-past {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-border-grid-text-past {
  border-color: rgba(238, 238, 238, 0.9);
}
.border-left-grid-text-past {
  border-left-color: rgba(238, 238, 238, 0.9);
}
.border-right-grid-text-past {
  border-right-color: rgba(238, 238, 238, 0.9);
}
.border-top-grid-text-past {
  border-top-color: rgba(238, 238, 238, 0.9);
}
.border-bottom-grid-text-past {
  border-bottom-color: rgba(238, 238, 238, 0.9);
}
.text-grid-text-active {
  color: rgba(238, 238, 238, 0.9);
}
.bg-grid-text-active {
  background-color: rgba(238, 238, 238, 0.9);
}
.bg-fill-grid-text-active {
  background: rgba(238, 238, 238, 0.9);
}
.border-grid-text-active {
  border-color: rgba(238, 238, 238, 0.9);
}
.outline-grid-text-active {
  outline-color: rgba(238, 238, 238, 0.9);
}
.focus-text-grid-text-active.focus {
  color: rgba(238, 238, 238, 0.9);
}
.focus-bg-grid-text-active.focus {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus-border-grid-text-active.focus {
  border-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-text-grid-text-active {
  color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-bg-grid-text-active {
  background-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-border-grid-text-active {
  border-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-text-grid-text-active {
  color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-bg-grid-text-active {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-border-grid-text-active {
  border-color: rgba(238, 238, 238, 0.9);
}
.border-left-grid-text-active {
  border-left-color: rgba(238, 238, 238, 0.9);
}
.border-right-grid-text-active {
  border-right-color: rgba(238, 238, 238, 0.9);
}
.border-top-grid-text-active {
  border-top-color: rgba(238, 238, 238, 0.9);
}
.border-bottom-grid-text-active {
  border-bottom-color: rgba(238, 238, 238, 0.9);
}
.text-grid-text-now {
  color: rgba(238, 238, 238, 0.9);
}
.bg-grid-text-now {
  background-color: rgba(238, 238, 238, 0.9);
}
.bg-fill-grid-text-now {
  background: rgba(238, 238, 238, 0.9);
}
.border-grid-text-now {
  border-color: rgba(238, 238, 238, 0.9);
}
.outline-grid-text-now {
  outline-color: rgba(238, 238, 238, 0.9);
}
.focus-text-grid-text-now.focus {
  color: rgba(238, 238, 238, 0.9);
}
.focus-bg-grid-text-now.focus {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus-border-grid-text-now.focus {
  border-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-text-grid-text-now {
  color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-bg-grid-text-now {
  background-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-border-grid-text-now {
  border-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-text-grid-text-now {
  color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-bg-grid-text-now {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-border-grid-text-now {
  border-color: rgba(238, 238, 238, 0.9);
}
.border-left-grid-text-now {
  border-left-color: rgba(238, 238, 238, 0.9);
}
.border-right-grid-text-now {
  border-right-color: rgba(238, 238, 238, 0.9);
}
.border-top-grid-text-now {
  border-top-color: rgba(238, 238, 238, 0.9);
}
.border-bottom-grid-text-now {
  border-bottom-color: rgba(238, 238, 238, 0.9);
}
.text-grid-text-feature {
  color: rgba(238, 238, 238, 0.9);
}
.bg-grid-text-feature {
  background-color: rgba(238, 238, 238, 0.9);
}
.bg-fill-grid-text-feature {
  background: rgba(238, 238, 238, 0.9);
}
.border-grid-text-feature {
  border-color: rgba(238, 238, 238, 0.9);
}
.outline-grid-text-feature {
  outline-color: rgba(238, 238, 238, 0.9);
}
.focus-text-grid-text-feature.focus {
  color: rgba(238, 238, 238, 0.9);
}
.focus-bg-grid-text-feature.focus {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus-border-grid-text-feature.focus {
  border-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-text-grid-text-feature {
  color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-bg-grid-text-feature {
  background-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-border-grid-text-feature {
  border-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-text-grid-text-feature {
  color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-bg-grid-text-feature {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-border-grid-text-feature {
  border-color: rgba(238, 238, 238, 0.9);
}
.border-left-grid-text-feature {
  border-left-color: rgba(238, 238, 238, 0.9);
}
.border-right-grid-text-feature {
  border-right-color: rgba(238, 238, 238, 0.9);
}
.border-top-grid-text-feature {
  border-top-color: rgba(238, 238, 238, 0.9);
}
.border-bottom-grid-text-feature {
  border-bottom-color: rgba(238, 238, 238, 0.9);
}
.text-grid-background-past {
  color: black;
}
.bg-grid-background-past {
  background-color: black;
}
.bg-fill-grid-background-past {
  background: black;
}
.border-grid-background-past {
  border-color: black;
}
.outline-grid-background-past {
  outline-color: black;
}
.focus-text-grid-background-past.focus {
  color: black;
}
.focus-bg-grid-background-past.focus {
  background-color: black;
}
.focus-border-grid-background-past.focus {
  border-color: black;
}
.cursor > .cursor-text-grid-background-past {
  color: black;
}
.cursor > .cursor-bg-grid-background-past {
  background-color: black;
}
.cursor > .cursor-border-grid-background-past {
  border-color: black;
}
.focus > .focus-text-grid-background-past {
  color: black;
}
.focus > .focus-bg-grid-background-past {
  background-color: black;
}
.focus > .focus-border-grid-background-past {
  border-color: black;
}
.border-left-grid-background-past {
  border-left-color: black;
}
.border-right-grid-background-past {
  border-right-color: black;
}
.border-top-grid-background-past {
  border-top-color: black;
}
.border-bottom-grid-background-past {
  border-bottom-color: black;
}
.text-grid-background-active {
  color: #7ebb0a;
}
.bg-grid-background-active {
  background-color: #7ebb0a;
}
.bg-fill-grid-background-active {
  background: #7ebb0a;
}
.border-grid-background-active {
  border-color: #7ebb0a;
}
.outline-grid-background-active {
  outline-color: #7ebb0a;
}
.focus-text-grid-background-active.focus {
  color: #7ebb0a;
}
.focus-bg-grid-background-active.focus {
  background-color: #7ebb0a;
}
.focus-border-grid-background-active.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-grid-background-active {
  color: #7ebb0a;
}
.cursor > .cursor-bg-grid-background-active {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-grid-background-active {
  border-color: #7ebb0a;
}
.focus > .focus-text-grid-background-active {
  color: #7ebb0a;
}
.focus > .focus-bg-grid-background-active {
  background-color: #7ebb0a;
}
.focus > .focus-border-grid-background-active {
  border-color: #7ebb0a;
}
.border-left-grid-background-active {
  border-left-color: #7ebb0a;
}
.border-right-grid-background-active {
  border-right-color: #7ebb0a;
}
.border-top-grid-background-active {
  border-top-color: #7ebb0a;
}
.border-bottom-grid-background-active {
  border-bottom-color: #7ebb0a;
}
.text-grid-background-now {
  color: #292929;
}
.bg-grid-background-now {
  background-color: #292929;
}
.bg-fill-grid-background-now {
  background: #292929;
}
.border-grid-background-now {
  border-color: #292929;
}
.outline-grid-background-now {
  outline-color: #292929;
}
.focus-text-grid-background-now.focus {
  color: #292929;
}
.focus-bg-grid-background-now.focus {
  background-color: #292929;
}
.focus-border-grid-background-now.focus {
  border-color: #292929;
}
.cursor > .cursor-text-grid-background-now {
  color: #292929;
}
.cursor > .cursor-bg-grid-background-now {
  background-color: #292929;
}
.cursor > .cursor-border-grid-background-now {
  border-color: #292929;
}
.focus > .focus-text-grid-background-now {
  color: #292929;
}
.focus > .focus-bg-grid-background-now {
  background-color: #292929;
}
.focus > .focus-border-grid-background-now {
  border-color: #292929;
}
.border-left-grid-background-now {
  border-left-color: #292929;
}
.border-right-grid-background-now {
  border-right-color: #292929;
}
.border-top-grid-background-now {
  border-top-color: #292929;
}
.border-bottom-grid-background-now {
  border-bottom-color: #292929;
}
.text-grid-background-feature {
  color: #444444;
}
.bg-grid-background-feature {
  background-color: #444444;
}
.bg-fill-grid-background-feature {
  background: #444444;
}
.border-grid-background-feature {
  border-color: #444444;
}
.outline-grid-background-feature {
  outline-color: #444444;
}
.focus-text-grid-background-feature.focus {
  color: #444444;
}
.focus-bg-grid-background-feature.focus {
  background-color: #444444;
}
.focus-border-grid-background-feature.focus {
  border-color: #444444;
}
.cursor > .cursor-text-grid-background-feature {
  color: #444444;
}
.cursor > .cursor-bg-grid-background-feature {
  background-color: #444444;
}
.cursor > .cursor-border-grid-background-feature {
  border-color: #444444;
}
.focus > .focus-text-grid-background-feature {
  color: #444444;
}
.focus > .focus-bg-grid-background-feature {
  background-color: #444444;
}
.focus > .focus-border-grid-background-feature {
  border-color: #444444;
}
.border-left-grid-background-feature {
  border-left-color: #444444;
}
.border-right-grid-background-feature {
  border-right-color: #444444;
}
.border-top-grid-background-feature {
  border-top-color: #444444;
}
.border-bottom-grid-background-feature {
  border-bottom-color: #444444;
}
.text-grid-background-channel {
  color: rgba(238, 238, 238, 0.2);
}
.bg-grid-background-channel {
  background-color: rgba(238, 238, 238, 0.2);
}
.bg-fill-grid-background-channel {
  background: rgba(238, 238, 238, 0.2);
}
.border-grid-background-channel {
  border-color: rgba(238, 238, 238, 0.2);
}
.outline-grid-background-channel {
  outline-color: rgba(238, 238, 238, 0.2);
}
.focus-text-grid-background-channel.focus {
  color: rgba(238, 238, 238, 0.2);
}
.focus-bg-grid-background-channel.focus {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-border-grid-background-channel.focus {
  border-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-text-grid-background-channel {
  color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-bg-grid-background-channel {
  background-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-border-grid-background-channel {
  border-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-text-grid-background-channel {
  color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-bg-grid-background-channel {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-border-grid-background-channel {
  border-color: rgba(238, 238, 238, 0.2);
}
.border-left-grid-background-channel {
  border-left-color: rgba(238, 238, 238, 0.2);
}
.border-right-grid-background-channel {
  border-right-color: rgba(238, 238, 238, 0.2);
}
.border-top-grid-background-channel {
  border-top-color: rgba(238, 238, 238, 0.2);
}
.border-bottom-grid-background-channel {
  border-bottom-color: rgba(238, 238, 238, 0.2);
}
.text-grid-background-time {
  color: rgba(238, 238, 238, 0.2);
}
.bg-grid-background-time {
  background-color: rgba(238, 238, 238, 0.2);
}
.bg-fill-grid-background-time {
  background: rgba(238, 238, 238, 0.2);
}
.border-grid-background-time {
  border-color: rgba(238, 238, 238, 0.2);
}
.outline-grid-background-time {
  outline-color: rgba(238, 238, 238, 0.2);
}
.focus-text-grid-background-time.focus {
  color: rgba(238, 238, 238, 0.2);
}
.focus-bg-grid-background-time.focus {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-border-grid-background-time.focus {
  border-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-text-grid-background-time {
  color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-bg-grid-background-time {
  background-color: rgba(238, 238, 238, 0.2);
}
.cursor > .cursor-border-grid-background-time {
  border-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-text-grid-background-time {
  color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-bg-grid-background-time {
  background-color: rgba(238, 238, 238, 0.2);
}
.focus > .focus-border-grid-background-time {
  border-color: rgba(238, 238, 238, 0.2);
}
.border-left-grid-background-time {
  border-left-color: rgba(238, 238, 238, 0.2);
}
.border-right-grid-background-time {
  border-right-color: rgba(238, 238, 238, 0.2);
}
.border-top-grid-background-time {
  border-top-color: rgba(238, 238, 238, 0.2);
}
.border-bottom-grid-background-time {
  border-bottom-color: rgba(238, 238, 238, 0.2);
}
.text-grid-border {
  color: rgba(116, 116, 116, 0.3);
}
.bg-grid-border {
  background-color: rgba(116, 116, 116, 0.3);
}
.bg-fill-grid-border {
  background: rgba(116, 116, 116, 0.3);
}
.border-grid-border {
  border-color: rgba(116, 116, 116, 0.3);
}
.outline-grid-border {
  outline-color: rgba(116, 116, 116, 0.3);
}
.focus-text-grid-border.focus {
  color: rgba(116, 116, 116, 0.3);
}
.focus-bg-grid-border.focus {
  background-color: rgba(116, 116, 116, 0.3);
}
.focus-border-grid-border.focus {
  border-color: rgba(116, 116, 116, 0.3);
}
.cursor > .cursor-text-grid-border {
  color: rgba(116, 116, 116, 0.3);
}
.cursor > .cursor-bg-grid-border {
  background-color: rgba(116, 116, 116, 0.3);
}
.cursor > .cursor-border-grid-border {
  border-color: rgba(116, 116, 116, 0.3);
}
.focus > .focus-text-grid-border {
  color: rgba(116, 116, 116, 0.3);
}
.focus > .focus-bg-grid-border {
  background-color: rgba(116, 116, 116, 0.3);
}
.focus > .focus-border-grid-border {
  border-color: rgba(116, 116, 116, 0.3);
}
.border-left-grid-border {
  border-left-color: rgba(116, 116, 116, 0.3);
}
.border-right-grid-border {
  border-right-color: rgba(116, 116, 116, 0.3);
}
.border-top-grid-border {
  border-top-color: rgba(116, 116, 116, 0.3);
}
.border-bottom-grid-border {
  border-bottom-color: rgba(116, 116, 116, 0.3);
}
.text-separator {
  color: rgba(238, 238, 238, 0.3);
}
.bg-separator {
  background-color: rgba(238, 238, 238, 0.3);
}
.bg-fill-separator {
  background: rgba(238, 238, 238, 0.3);
}
.border-separator {
  border-color: rgba(238, 238, 238, 0.3);
}
.outline-separator {
  outline-color: rgba(238, 238, 238, 0.3);
}
.focus-text-separator.focus {
  color: rgba(238, 238, 238, 0.3);
}
.focus-bg-separator.focus {
  background-color: rgba(238, 238, 238, 0.3);
}
.focus-border-separator.focus {
  border-color: rgba(238, 238, 238, 0.3);
}
.cursor > .cursor-text-separator {
  color: rgba(238, 238, 238, 0.3);
}
.cursor > .cursor-bg-separator {
  background-color: rgba(238, 238, 238, 0.3);
}
.cursor > .cursor-border-separator {
  border-color: rgba(238, 238, 238, 0.3);
}
.focus > .focus-text-separator {
  color: rgba(238, 238, 238, 0.3);
}
.focus > .focus-bg-separator {
  background-color: rgba(238, 238, 238, 0.3);
}
.focus > .focus-border-separator {
  border-color: rgba(238, 238, 238, 0.3);
}
.border-left-separator {
  border-left-color: rgba(238, 238, 238, 0.3);
}
.border-right-separator {
  border-right-color: rgba(238, 238, 238, 0.3);
}
.border-top-separator {
  border-top-color: rgba(238, 238, 238, 0.3);
}
.border-bottom-separator {
  border-bottom-color: rgba(238, 238, 238, 0.3);
}
.text-grid-line-now {
  color: rgba(238, 238, 238, 0.9);
}
.bg-grid-line-now {
  background-color: rgba(238, 238, 238, 0.9);
}
.bg-fill-grid-line-now {
  background: rgba(238, 238, 238, 0.9);
}
.border-grid-line-now {
  border-color: rgba(238, 238, 238, 0.9);
}
.outline-grid-line-now {
  outline-color: rgba(238, 238, 238, 0.9);
}
.focus-text-grid-line-now.focus {
  color: rgba(238, 238, 238, 0.9);
}
.focus-bg-grid-line-now.focus {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus-border-grid-line-now.focus {
  border-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-text-grid-line-now {
  color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-bg-grid-line-now {
  background-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-border-grid-line-now {
  border-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-text-grid-line-now {
  color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-bg-grid-line-now {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-border-grid-line-now {
  border-color: rgba(238, 238, 238, 0.9);
}
.border-left-grid-line-now {
  border-left-color: rgba(238, 238, 238, 0.9);
}
.border-right-grid-line-now {
  border-right-color: rgba(238, 238, 238, 0.9);
}
.border-top-grid-line-now {
  border-top-color: rgba(238, 238, 238, 0.9);
}
.border-bottom-grid-line-now {
  border-bottom-color: rgba(238, 238, 238, 0.9);
}
.text-player-thumb-back {
  color: rgba(33, 33, 33, 0.9);
}
.bg-player-thumb-back {
  background-color: rgba(33, 33, 33, 0.9);
}
.bg-fill-player-thumb-back {
  background: rgba(33, 33, 33, 0.9);
}
.border-player-thumb-back {
  border-color: rgba(33, 33, 33, 0.9);
}
.outline-player-thumb-back {
  outline-color: rgba(33, 33, 33, 0.9);
}
.focus-text-player-thumb-back.focus {
  color: rgba(33, 33, 33, 0.9);
}
.focus-bg-player-thumb-back.focus {
  background-color: rgba(33, 33, 33, 0.9);
}
.focus-border-player-thumb-back.focus {
  border-color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-text-player-thumb-back {
  color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-bg-player-thumb-back {
  background-color: rgba(33, 33, 33, 0.9);
}
.cursor > .cursor-border-player-thumb-back {
  border-color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-text-player-thumb-back {
  color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-bg-player-thumb-back {
  background-color: rgba(33, 33, 33, 0.9);
}
.focus > .focus-border-player-thumb-back {
  border-color: rgba(33, 33, 33, 0.9);
}
.border-left-player-thumb-back {
  border-left-color: rgba(33, 33, 33, 0.9);
}
.border-right-player-thumb-back {
  border-right-color: rgba(33, 33, 33, 0.9);
}
.border-top-player-thumb-back {
  border-top-color: rgba(33, 33, 33, 0.9);
}
.border-bottom-player-thumb-back {
  border-bottom-color: rgba(33, 33, 33, 0.9);
}
.text-player-thumb-text {
  color: #7ebb0a;
}
.bg-player-thumb-text {
  background-color: #7ebb0a;
}
.bg-fill-player-thumb-text {
  background: #7ebb0a;
}
.border-player-thumb-text {
  border-color: #7ebb0a;
}
.outline-player-thumb-text {
  outline-color: #7ebb0a;
}
.focus-text-player-thumb-text.focus {
  color: #7ebb0a;
}
.focus-bg-player-thumb-text.focus {
  background-color: #7ebb0a;
}
.focus-border-player-thumb-text.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-player-thumb-text {
  color: #7ebb0a;
}
.cursor > .cursor-bg-player-thumb-text {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-player-thumb-text {
  border-color: #7ebb0a;
}
.focus > .focus-text-player-thumb-text {
  color: #7ebb0a;
}
.focus > .focus-bg-player-thumb-text {
  background-color: #7ebb0a;
}
.focus > .focus-border-player-thumb-text {
  border-color: #7ebb0a;
}
.border-left-player-thumb-text {
  border-left-color: #7ebb0a;
}
.border-right-player-thumb-text {
  border-right-color: #7ebb0a;
}
.border-top-player-thumb-text {
  border-top-color: #7ebb0a;
}
.border-bottom-player-thumb-text {
  border-bottom-color: #7ebb0a;
}
.text-player-thumb-text-back {
  color: rgba(238, 238, 238, 0.9);
}
.bg-player-thumb-text-back {
  background-color: rgba(238, 238, 238, 0.9);
}
.bg-fill-player-thumb-text-back {
  background: rgba(238, 238, 238, 0.9);
}
.border-player-thumb-text-back {
  border-color: rgba(238, 238, 238, 0.9);
}
.outline-player-thumb-text-back {
  outline-color: rgba(238, 238, 238, 0.9);
}
.focus-text-player-thumb-text-back.focus {
  color: rgba(238, 238, 238, 0.9);
}
.focus-bg-player-thumb-text-back.focus {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus-border-player-thumb-text-back.focus {
  border-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-text-player-thumb-text-back {
  color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-bg-player-thumb-text-back {
  background-color: rgba(238, 238, 238, 0.9);
}
.cursor > .cursor-border-player-thumb-text-back {
  border-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-text-player-thumb-text-back {
  color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-bg-player-thumb-text-back {
  background-color: rgba(238, 238, 238, 0.9);
}
.focus > .focus-border-player-thumb-text-back {
  border-color: rgba(238, 238, 238, 0.9);
}
.border-left-player-thumb-text-back {
  border-left-color: rgba(238, 238, 238, 0.9);
}
.border-right-player-thumb-text-back {
  border-right-color: rgba(238, 238, 238, 0.9);
}
.border-top-player-thumb-text-back {
  border-top-color: rgba(238, 238, 238, 0.9);
}
.border-bottom-player-thumb-text-back {
  border-bottom-color: rgba(238, 238, 238, 0.9);
}
.text-splash-loader {
  color: #7ebb0a;
}
.bg-splash-loader {
  background-color: #7ebb0a;
}
.bg-fill-splash-loader {
  background: #7ebb0a;
}
.border-splash-loader {
  border-color: #7ebb0a;
}
.outline-splash-loader {
  outline-color: #7ebb0a;
}
.focus-text-splash-loader.focus {
  color: #7ebb0a;
}
.focus-bg-splash-loader.focus {
  background-color: #7ebb0a;
}
.focus-border-splash-loader.focus {
  border-color: #7ebb0a;
}
.cursor > .cursor-text-splash-loader {
  color: #7ebb0a;
}
.cursor > .cursor-bg-splash-loader {
  background-color: #7ebb0a;
}
.cursor > .cursor-border-splash-loader {
  border-color: #7ebb0a;
}
.focus > .focus-text-splash-loader {
  color: #7ebb0a;
}
.focus > .focus-bg-splash-loader {
  background-color: #7ebb0a;
}
.focus > .focus-border-splash-loader {
  border-color: #7ebb0a;
}
.border-left-splash-loader {
  border-left-color: #7ebb0a;
}
.border-right-splash-loader {
  border-right-color: #7ebb0a;
}
.border-top-splash-loader {
  border-top-color: #7ebb0a;
}
.border-bottom-splash-loader {
  border-bottom-color: #7ebb0a;
}
.text-splash-loader-inactive {
  color: rgba(126, 187, 10, 0.2);
}
.bg-splash-loader-inactive {
  background-color: rgba(126, 187, 10, 0.2);
}
.bg-fill-splash-loader-inactive {
  background: rgba(126, 187, 10, 0.2);
}
.border-splash-loader-inactive {
  border-color: rgba(126, 187, 10, 0.2);
}
.outline-splash-loader-inactive {
  outline-color: rgba(126, 187, 10, 0.2);
}
.focus-text-splash-loader-inactive.focus {
  color: rgba(126, 187, 10, 0.2);
}
.focus-bg-splash-loader-inactive.focus {
  background-color: rgba(126, 187, 10, 0.2);
}
.focus-border-splash-loader-inactive.focus {
  border-color: rgba(126, 187, 10, 0.2);
}
.cursor > .cursor-text-splash-loader-inactive {
  color: rgba(126, 187, 10, 0.2);
}
.cursor > .cursor-bg-splash-loader-inactive {
  background-color: rgba(126, 187, 10, 0.2);
}
.cursor > .cursor-border-splash-loader-inactive {
  border-color: rgba(126, 187, 10, 0.2);
}
.focus > .focus-text-splash-loader-inactive {
  color: rgba(126, 187, 10, 0.2);
}
.focus > .focus-bg-splash-loader-inactive {
  background-color: rgba(126, 187, 10, 0.2);
}
.focus > .focus-border-splash-loader-inactive {
  border-color: rgba(126, 187, 10, 0.2);
}
.border-left-splash-loader-inactive {
  border-left-color: rgba(126, 187, 10, 0.2);
}
.border-right-splash-loader-inactive {
  border-right-color: rgba(126, 187, 10, 0.2);
}
.border-top-splash-loader-inactive {
  border-top-color: rgba(126, 187, 10, 0.2);
}
.border-bottom-splash-loader-inactive {
  border-bottom-color: rgba(126, 187, 10, 0.2);
}
.d-flex {
  display: flex !important;
}
.d-none {
  display: none !important;
}
.d-block {
  display: block !important;
}
.d-inline-block {
  display: inline-block !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.absolute {
  position: absolute;
}
.block {
  display: block !important;
}
.none {
  display: none;
}
.none-for-all {
  display: none !important;
}
.none-for-all * {
  display: none !important;
}
.none-imp {
  display: none !important;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.inline-block {
  display: inline-block;
  position: relative;
}
.inline-middle {
  vertical-align: middle;
}
.absolute {
  position: absolute;
}
.absolute-imp {
  position: absolute !important;
}
.child-relative > * {
  position: relative;
}
.child-static > *, base-tv-program-details .program-items-wrapper > * {
  position: static;
}
.all-child-static * {
  position: static;
}
.child-inline-block > * {
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.child-block > *, base-tv-program-details .program-items-wrapper > *, .popup-content > * {
  display: block;
  position: relative;
}
.child-inline > * {
  display: inline;
  position: relative;
  vertical-align: top;
}
.child-hspaceby-0dp > * {
  margin-left: 0rem;
}
.child-hspaceby-0dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-0dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-1dp > * {
  margin-left: 0.06rem;
}
.child-hspaceby-1dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-1dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-2dp > * {
  margin-left: 0.12rem;
}
.child-hspaceby-2dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-2dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-3dp > * {
  margin-left: 0.18rem;
}
.child-hspaceby-3dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-3dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-4dp > * {
  margin-left: 0.23rem;
}
.child-hspaceby-4dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-4dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-5dp > * {
  margin-left: 0.29rem;
}
.child-hspaceby-5dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-5dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-6dp > * {
  margin-left: 0.35rem;
}
.child-hspaceby-6dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-6dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-7dp > * {
  margin-left: 0.41rem;
}
.child-hspaceby-7dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-7dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-8dp > * {
  margin-left: 0.47rem;
}
.child-hspaceby-8dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-8dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-9dp > * {
  margin-left: 0.53rem;
}
.child-hspaceby-9dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-9dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-10dp > * {
  margin-left: 0.59rem;
}
.child-hspaceby-10dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-10dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-11dp > * {
  margin-left: 0.64rem;
}
.child-hspaceby-11dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-11dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-12dp > * {
  margin-left: 0.7rem;
}
.child-hspaceby-12dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-12dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-13dp > * {
  margin-left: 0.76rem;
}
.child-hspaceby-13dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-13dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-14dp > * {
  margin-left: 0.82rem;
}
.child-hspaceby-14dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-14dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-15dp > * {
  margin-left: 0.88rem;
}
.child-hspaceby-15dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-15dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-16dp > * {
  margin-left: 0.94rem;
}
.child-hspaceby-16dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-16dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-17dp > * {
  margin-left: 1rem;
}
.child-hspaceby-17dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-17dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-18dp > * {
  margin-left: 1.05rem;
}
.child-hspaceby-18dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-18dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-19dp > * {
  margin-left: 1.11rem;
}
.child-hspaceby-19dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-19dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-20dp > * {
  margin-left: 1.17rem;
}
.child-hspaceby-20dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-20dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-21dp > * {
  margin-left: 1.23rem;
}
.child-hspaceby-21dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-21dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-22dp > * {
  margin-left: 1.29rem;
}
.child-hspaceby-22dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-22dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-23dp > * {
  margin-left: 1.35rem;
}
.child-hspaceby-23dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-23dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-24dp > * {
  margin-left: 1.41rem;
}
.child-hspaceby-24dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-24dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-25dp > * {
  margin-left: 1.46rem;
}
.child-hspaceby-25dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-25dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-26dp > * {
  margin-left: 1.52rem;
}
.child-hspaceby-26dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-26dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-27dp > * {
  margin-left: 1.58rem;
}
.child-hspaceby-27dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-27dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-28dp > * {
  margin-left: 1.64rem;
}
.child-hspaceby-28dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-28dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-29dp > * {
  margin-left: 1.7rem;
}
.child-hspaceby-29dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-29dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-30dp > * {
  margin-left: 1.76rem;
}
.child-hspaceby-30dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-30dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-31dp > * {
  margin-left: 1.82rem;
}
.child-hspaceby-31dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-31dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-32dp > * {
  margin-left: 1.87rem;
}
.child-hspaceby-32dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-32dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-33dp > * {
  margin-left: 1.93rem;
}
.child-hspaceby-33dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-33dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-34dp > * {
  margin-left: 1.99rem;
}
.child-hspaceby-34dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-34dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-35dp > * {
  margin-left: 2.05rem;
}
.child-hspaceby-35dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-35dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-36dp > * {
  margin-left: 2.11rem;
}
.child-hspaceby-36dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-36dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-37dp > * {
  margin-left: 2.17rem;
}
.child-hspaceby-37dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-37dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-38dp > * {
  margin-left: 2.23rem;
}
.child-hspaceby-38dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-38dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-39dp > * {
  margin-left: 2.28rem;
}
.child-hspaceby-39dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-39dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-40dp > * {
  margin-left: 2.34rem;
}
.child-hspaceby-40dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-40dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-41dp > * {
  margin-left: 2.4rem;
}
.child-hspaceby-41dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-41dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-42dp > * {
  margin-left: 2.46rem;
}
.child-hspaceby-42dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-42dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-43dp > * {
  margin-left: 2.52rem;
}
.child-hspaceby-43dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-43dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-44dp > * {
  margin-left: 2.58rem;
}
.child-hspaceby-44dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-44dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-45dp > * {
  margin-left: 2.64rem;
}
.child-hspaceby-45dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-45dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-46dp > * {
  margin-left: 2.69rem;
}
.child-hspaceby-46dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-46dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-47dp > * {
  margin-left: 2.75rem;
}
.child-hspaceby-47dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-47dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-48dp > * {
  margin-left: 2.81rem;
}
.child-hspaceby-48dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-48dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-49dp > * {
  margin-left: 2.87rem;
}
.child-hspaceby-49dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-49dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-50dp > * {
  margin-left: 2.93rem;
}
.child-hspaceby-50dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-50dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-51dp > * {
  margin-left: 2.99rem;
}
.child-hspaceby-51dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-51dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-52dp > * {
  margin-left: 3.05rem;
}
.child-hspaceby-52dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-52dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-53dp > * {
  margin-left: 3.1rem;
}
.child-hspaceby-53dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-53dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-54dp > * {
  margin-left: 3.16rem;
}
.child-hspaceby-54dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-54dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-55dp > * {
  margin-left: 3.22rem;
}
.child-hspaceby-55dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-55dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-56dp > * {
  margin-left: 3.28rem;
}
.child-hspaceby-56dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-56dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-57dp > * {
  margin-left: 3.34rem;
}
.child-hspaceby-57dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-57dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-58dp > * {
  margin-left: 3.4rem;
}
.child-hspaceby-58dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-58dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-59dp > * {
  margin-left: 3.46rem;
}
.child-hspaceby-59dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-59dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-60dp > * {
  margin-left: 3.51rem;
}
.child-hspaceby-60dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-60dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-61dp > * {
  margin-left: 3.57rem;
}
.child-hspaceby-61dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-61dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-62dp > * {
  margin-left: 3.63rem;
}
.child-hspaceby-62dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-62dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-63dp > * {
  margin-left: 3.69rem;
}
.child-hspaceby-63dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-63dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-64dp > * {
  margin-left: 3.75rem;
}
.child-hspaceby-64dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-64dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-65dp > * {
  margin-left: 3.81rem;
}
.child-hspaceby-65dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-65dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-66dp > * {
  margin-left: 3.87rem;
}
.child-hspaceby-66dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-66dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-67dp > * {
  margin-left: 3.92rem;
}
.child-hspaceby-67dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-67dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-68dp > * {
  margin-left: 3.98rem;
}
.child-hspaceby-68dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-68dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-69dp > * {
  margin-left: 4.04rem;
}
.child-hspaceby-69dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-69dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-70dp > * {
  margin-left: 4.1rem;
}
.child-hspaceby-70dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-70dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-71dp > * {
  margin-left: 4.16rem;
}
.child-hspaceby-71dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-71dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-72dp > * {
  margin-left: 4.22rem;
}
.child-hspaceby-72dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-72dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-73dp > * {
  margin-left: 4.28rem;
}
.child-hspaceby-73dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-73dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-74dp > * {
  margin-left: 4.33rem;
}
.child-hspaceby-74dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-74dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-75dp > * {
  margin-left: 4.39rem;
}
.child-hspaceby-75dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-75dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-76dp > * {
  margin-left: 4.45rem;
}
.child-hspaceby-76dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-76dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-77dp > * {
  margin-left: 4.51rem;
}
.child-hspaceby-77dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-77dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-78dp > * {
  margin-left: 4.57rem;
}
.child-hspaceby-78dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-78dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-79dp > * {
  margin-left: 4.63rem;
}
.child-hspaceby-79dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-79dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-80dp > * {
  margin-left: 4.69rem;
}
.child-hspaceby-80dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-80dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-81dp > * {
  margin-left: 4.74rem;
}
.child-hspaceby-81dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-81dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-82dp > * {
  margin-left: 4.8rem;
}
.child-hspaceby-82dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-82dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-83dp > * {
  margin-left: 4.86rem;
}
.child-hspaceby-83dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-83dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-84dp > * {
  margin-left: 4.92rem;
}
.child-hspaceby-84dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-84dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-85dp > * {
  margin-left: 4.98rem;
}
.child-hspaceby-85dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-85dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-86dp > * {
  margin-left: 5.04rem;
}
.child-hspaceby-86dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-86dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-87dp > * {
  margin-left: 5.1rem;
}
.child-hspaceby-87dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-87dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-88dp > * {
  margin-left: 5.15rem;
}
.child-hspaceby-88dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-88dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-89dp > * {
  margin-left: 5.21rem;
}
.child-hspaceby-89dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-89dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-90dp > * {
  margin-left: 5.27rem;
}
.child-hspaceby-90dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-90dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-91dp > * {
  margin-left: 5.33rem;
}
.child-hspaceby-91dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-91dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-92dp > * {
  margin-left: 5.39rem;
}
.child-hspaceby-92dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-92dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-93dp > * {
  margin-left: 5.45rem;
}
.child-hspaceby-93dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-93dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-94dp > * {
  margin-left: 5.51rem;
}
.child-hspaceby-94dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-94dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-95dp > * {
  margin-left: 5.56rem;
}
.child-hspaceby-95dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-95dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-96dp > * {
  margin-left: 5.62rem;
}
.child-hspaceby-96dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-96dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-97dp > * {
  margin-left: 5.68rem;
}
.child-hspaceby-97dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-97dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-98dp > * {
  margin-left: 5.74rem;
}
.child-hspaceby-98dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-98dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-99dp > * {
  margin-left: 5.8rem;
}
.child-hspaceby-99dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-99dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-100dp > * {
  margin-left: 5.86rem;
}
.child-hspaceby-100dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-100dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-101dp > * {
  margin-left: 5.92rem;
}
.child-hspaceby-101dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-101dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-102dp > * {
  margin-left: 5.97rem;
}
.child-hspaceby-102dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-102dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-103dp > * {
  margin-left: 6.03rem;
}
.child-hspaceby-103dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-103dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-104dp > * {
  margin-left: 6.09rem;
}
.child-hspaceby-104dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-104dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-105dp > * {
  margin-left: 6.15rem;
}
.child-hspaceby-105dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-105dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-106dp > * {
  margin-left: 6.21rem;
}
.child-hspaceby-106dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-106dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-107dp > * {
  margin-left: 6.27rem;
}
.child-hspaceby-107dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-107dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-108dp > * {
  margin-left: 6.33rem;
}
.child-hspaceby-108dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-108dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-109dp > * {
  margin-left: 6.38rem;
}
.child-hspaceby-109dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-109dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-110dp > * {
  margin-left: 6.44rem;
}
.child-hspaceby-110dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-110dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-111dp > * {
  margin-left: 6.5rem;
}
.child-hspaceby-111dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-111dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-112dp > * {
  margin-left: 6.56rem;
}
.child-hspaceby-112dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-112dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-113dp > * {
  margin-left: 6.62rem;
}
.child-hspaceby-113dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-113dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-114dp > * {
  margin-left: 6.68rem;
}
.child-hspaceby-114dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-114dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-115dp > * {
  margin-left: 6.73rem;
}
.child-hspaceby-115dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-115dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-116dp > * {
  margin-left: 6.79rem;
}
.child-hspaceby-116dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-116dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-117dp > * {
  margin-left: 6.85rem;
}
.child-hspaceby-117dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-117dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-118dp > * {
  margin-left: 6.91rem;
}
.child-hspaceby-118dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-118dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-119dp > * {
  margin-left: 6.97rem;
}
.child-hspaceby-119dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-119dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-120dp > * {
  margin-left: 7.03rem;
}
.child-hspaceby-120dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-120dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-121dp > * {
  margin-left: 7.09rem;
}
.child-hspaceby-121dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-121dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-122dp > * {
  margin-left: 7.14rem;
}
.child-hspaceby-122dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-122dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-123dp > * {
  margin-left: 7.2rem;
}
.child-hspaceby-123dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-123dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-124dp > * {
  margin-left: 7.26rem;
}
.child-hspaceby-124dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-124dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-125dp > * {
  margin-left: 7.32rem;
}
.child-hspaceby-125dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-125dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-126dp > * {
  margin-left: 7.38rem;
}
.child-hspaceby-126dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-126dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-127dp > * {
  margin-left: 7.44rem;
}
.child-hspaceby-127dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-127dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-128dp > * {
  margin-left: 7.5rem;
}
.child-hspaceby-128dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-128dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-129dp > * {
  margin-left: 7.55rem;
}
.child-hspaceby-129dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-129dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-130dp > * {
  margin-left: 7.61rem;
}
.child-hspaceby-130dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-130dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-131dp > * {
  margin-left: 7.67rem;
}
.child-hspaceby-131dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-131dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-132dp > * {
  margin-left: 7.73rem;
}
.child-hspaceby-132dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-132dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-133dp > * {
  margin-left: 7.79rem;
}
.child-hspaceby-133dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-133dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-134dp > * {
  margin-left: 7.85rem;
}
.child-hspaceby-134dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-134dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-135dp > * {
  margin-left: 7.91rem;
}
.child-hspaceby-135dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-135dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-136dp > * {
  margin-left: 7.96rem;
}
.child-hspaceby-136dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-136dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-137dp > * {
  margin-left: 8.02rem;
}
.child-hspaceby-137dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-137dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-138dp > * {
  margin-left: 8.08rem;
}
.child-hspaceby-138dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-138dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-139dp > * {
  margin-left: 8.14rem;
}
.child-hspaceby-139dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-139dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-140dp > * {
  margin-left: 8.2rem;
}
.child-hspaceby-140dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-140dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-141dp > * {
  margin-left: 8.26rem;
}
.child-hspaceby-141dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-141dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-142dp > * {
  margin-left: 8.32rem;
}
.child-hspaceby-142dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-142dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-143dp > * {
  margin-left: 8.37rem;
}
.child-hspaceby-143dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-143dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-144dp > * {
  margin-left: 8.43rem;
}
.child-hspaceby-144dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-144dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-145dp > * {
  margin-left: 8.49rem;
}
.child-hspaceby-145dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-145dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-146dp > * {
  margin-left: 8.55rem;
}
.child-hspaceby-146dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-146dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-147dp > * {
  margin-left: 8.61rem;
}
.child-hspaceby-147dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-147dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-148dp > * {
  margin-left: 8.67rem;
}
.child-hspaceby-148dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-148dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-149dp > * {
  margin-left: 8.73rem;
}
.child-hspaceby-149dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-149dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-150dp > * {
  margin-left: 8.78rem;
}
.child-hspaceby-150dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-150dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-151dp > * {
  margin-left: 8.84rem;
}
.child-hspaceby-151dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-151dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-152dp > * {
  margin-left: 8.9rem;
}
.child-hspaceby-152dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-152dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-153dp > * {
  margin-left: 8.96rem;
}
.child-hspaceby-153dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-153dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-154dp > * {
  margin-left: 9.02rem;
}
.child-hspaceby-154dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-154dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-155dp > * {
  margin-left: 9.08rem;
}
.child-hspaceby-155dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-155dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-156dp > * {
  margin-left: 9.14rem;
}
.child-hspaceby-156dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-156dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-157dp > * {
  margin-left: 9.19rem;
}
.child-hspaceby-157dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-157dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-158dp > * {
  margin-left: 9.25rem;
}
.child-hspaceby-158dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-158dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-159dp > * {
  margin-left: 9.31rem;
}
.child-hspaceby-159dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-159dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-160dp > * {
  margin-left: 9.37rem;
}
.child-hspaceby-160dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-160dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-161dp > * {
  margin-left: 9.43rem;
}
.child-hspaceby-161dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-161dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-162dp > * {
  margin-left: 9.49rem;
}
.child-hspaceby-162dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-162dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-163dp > * {
  margin-left: 9.55rem;
}
.child-hspaceby-163dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-163dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-164dp > * {
  margin-left: 9.6rem;
}
.child-hspaceby-164dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-164dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-165dp > * {
  margin-left: 9.66rem;
}
.child-hspaceby-165dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-165dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-166dp > * {
  margin-left: 9.72rem;
}
.child-hspaceby-166dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-166dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-167dp > * {
  margin-left: 9.78rem;
}
.child-hspaceby-167dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-167dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-168dp > * {
  margin-left: 9.84rem;
}
.child-hspaceby-168dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-168dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-169dp > * {
  margin-left: 9.9rem;
}
.child-hspaceby-169dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-169dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-170dp > * {
  margin-left: 9.96rem;
}
.child-hspaceby-170dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-170dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-171dp > * {
  margin-left: 10.01rem;
}
.child-hspaceby-171dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-171dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-172dp > * {
  margin-left: 10.07rem;
}
.child-hspaceby-172dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-172dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-173dp > * {
  margin-left: 10.13rem;
}
.child-hspaceby-173dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-173dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-174dp > * {
  margin-left: 10.19rem;
}
.child-hspaceby-174dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-174dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-175dp > * {
  margin-left: 10.25rem;
}
.child-hspaceby-175dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-175dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-176dp > * {
  margin-left: 10.31rem;
}
.child-hspaceby-176dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-176dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-177dp > * {
  margin-left: 10.37rem;
}
.child-hspaceby-177dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-177dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-178dp > * {
  margin-left: 10.42rem;
}
.child-hspaceby-178dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-178dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-179dp > * {
  margin-left: 10.48rem;
}
.child-hspaceby-179dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-179dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-180dp > * {
  margin-left: 10.54rem;
}
.child-hspaceby-180dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-180dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-181dp > * {
  margin-left: 10.6rem;
}
.child-hspaceby-181dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-181dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-182dp > * {
  margin-left: 10.66rem;
}
.child-hspaceby-182dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-182dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-183dp > * {
  margin-left: 10.72rem;
}
.child-hspaceby-183dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-183dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-184dp > * {
  margin-left: 10.78rem;
}
.child-hspaceby-184dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-184dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-185dp > * {
  margin-left: 10.83rem;
}
.child-hspaceby-185dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-185dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-186dp > * {
  margin-left: 10.89rem;
}
.child-hspaceby-186dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-186dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-187dp > * {
  margin-left: 10.95rem;
}
.child-hspaceby-187dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-187dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-188dp > * {
  margin-left: 11.01rem;
}
.child-hspaceby-188dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-188dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-189dp > * {
  margin-left: 11.07rem;
}
.child-hspaceby-189dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-189dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-190dp > * {
  margin-left: 11.13rem;
}
.child-hspaceby-190dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-190dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-191dp > * {
  margin-left: 11.19rem;
}
.child-hspaceby-191dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-191dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-192dp > * {
  margin-left: 11.24rem;
}
.child-hspaceby-192dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-192dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-193dp > * {
  margin-left: 11.3rem;
}
.child-hspaceby-193dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-193dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-194dp > * {
  margin-left: 11.36rem;
}
.child-hspaceby-194dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-194dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-195dp > * {
  margin-left: 11.42rem;
}
.child-hspaceby-195dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-195dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-196dp > * {
  margin-left: 11.48rem;
}
.child-hspaceby-196dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-196dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-197dp > * {
  margin-left: 11.54rem;
}
.child-hspaceby-197dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-197dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-198dp > * {
  margin-left: 11.6rem;
}
.child-hspaceby-198dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-198dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-199dp > * {
  margin-left: 11.65rem;
}
.child-hspaceby-199dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-199dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-200dp > * {
  margin-left: 11.71rem;
}
.child-hspaceby-200dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-200dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-201dp > * {
  margin-left: 11.77rem;
}
.child-hspaceby-201dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-201dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-202dp > * {
  margin-left: 11.83rem;
}
.child-hspaceby-202dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-202dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-203dp > * {
  margin-left: 11.89rem;
}
.child-hspaceby-203dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-203dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-204dp > * {
  margin-left: 11.95rem;
}
.child-hspaceby-204dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-204dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-205dp > * {
  margin-left: 12.01rem;
}
.child-hspaceby-205dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-205dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-206dp > * {
  margin-left: 12.06rem;
}
.child-hspaceby-206dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-206dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-207dp > * {
  margin-left: 12.12rem;
}
.child-hspaceby-207dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-207dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-208dp > * {
  margin-left: 12.18rem;
}
.child-hspaceby-208dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-208dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-209dp > * {
  margin-left: 12.24rem;
}
.child-hspaceby-209dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-209dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-210dp > * {
  margin-left: 12.3rem;
}
.child-hspaceby-210dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-210dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-211dp > * {
  margin-left: 12.36rem;
}
.child-hspaceby-211dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-211dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-212dp > * {
  margin-left: 12.42rem;
}
.child-hspaceby-212dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-212dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-213dp > * {
  margin-left: 12.47rem;
}
.child-hspaceby-213dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-213dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-214dp > * {
  margin-left: 12.53rem;
}
.child-hspaceby-214dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-214dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-215dp > * {
  margin-left: 12.59rem;
}
.child-hspaceby-215dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-215dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-216dp > * {
  margin-left: 12.65rem;
}
.child-hspaceby-216dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-216dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-217dp > * {
  margin-left: 12.71rem;
}
.child-hspaceby-217dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-217dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-218dp > * {
  margin-left: 12.77rem;
}
.child-hspaceby-218dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-218dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-219dp > * {
  margin-left: 12.83rem;
}
.child-hspaceby-219dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-219dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-220dp > * {
  margin-left: 12.88rem;
}
.child-hspaceby-220dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-220dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-221dp > * {
  margin-left: 12.94rem;
}
.child-hspaceby-221dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-221dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-222dp > * {
  margin-left: 13rem;
}
.child-hspaceby-222dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-222dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-223dp > * {
  margin-left: 13.06rem;
}
.child-hspaceby-223dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-223dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-224dp > * {
  margin-left: 13.12rem;
}
.child-hspaceby-224dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-224dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-225dp > * {
  margin-left: 13.18rem;
}
.child-hspaceby-225dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-225dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-226dp > * {
  margin-left: 13.24rem;
}
.child-hspaceby-226dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-226dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-227dp > * {
  margin-left: 13.29rem;
}
.child-hspaceby-227dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-227dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-228dp > * {
  margin-left: 13.35rem;
}
.child-hspaceby-228dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-228dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-229dp > * {
  margin-left: 13.41rem;
}
.child-hspaceby-229dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-229dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-230dp > * {
  margin-left: 13.47rem;
}
.child-hspaceby-230dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-230dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-231dp > * {
  margin-left: 13.53rem;
}
.child-hspaceby-231dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-231dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-232dp > * {
  margin-left: 13.59rem;
}
.child-hspaceby-232dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-232dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-233dp > * {
  margin-left: 13.65rem;
}
.child-hspaceby-233dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-233dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-234dp > * {
  margin-left: 13.7rem;
}
.child-hspaceby-234dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-234dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-235dp > * {
  margin-left: 13.76rem;
}
.child-hspaceby-235dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-235dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-236dp > * {
  margin-left: 13.82rem;
}
.child-hspaceby-236dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-236dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-237dp > * {
  margin-left: 13.88rem;
}
.child-hspaceby-237dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-237dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-238dp > * {
  margin-left: 13.94rem;
}
.child-hspaceby-238dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-238dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-239dp > * {
  margin-left: 14rem;
}
.child-hspaceby-239dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-239dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-240dp > * {
  margin-left: 14.06rem;
}
.child-hspaceby-240dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-240dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-241dp > * {
  margin-left: 14.11rem;
}
.child-hspaceby-241dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-241dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-242dp > * {
  margin-left: 14.17rem;
}
.child-hspaceby-242dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-242dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-243dp > * {
  margin-left: 14.23rem;
}
.child-hspaceby-243dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-243dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-244dp > * {
  margin-left: 14.29rem;
}
.child-hspaceby-244dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-244dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-245dp > * {
  margin-left: 14.35rem;
}
.child-hspaceby-245dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-245dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-246dp > * {
  margin-left: 14.41rem;
}
.child-hspaceby-246dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-246dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-247dp > * {
  margin-left: 14.47rem;
}
.child-hspaceby-247dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-247dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-248dp > * {
  margin-left: 14.52rem;
}
.child-hspaceby-248dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-248dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-249dp > * {
  margin-left: 14.58rem;
}
.child-hspaceby-249dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-249dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-250dp > * {
  margin-left: 14.64rem;
}
.child-hspaceby-250dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-250dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-251dp > * {
  margin-left: 14.7rem;
}
.child-hspaceby-251dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-251dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-252dp > * {
  margin-left: 14.76rem;
}
.child-hspaceby-252dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-252dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-253dp > * {
  margin-left: 14.82rem;
}
.child-hspaceby-253dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-253dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-254dp > * {
  margin-left: 14.88rem;
}
.child-hspaceby-254dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-254dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-255dp > * {
  margin-left: 14.93rem;
}
.child-hspaceby-255dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-255dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-256dp > * {
  margin-left: 14.99rem;
}
.child-hspaceby-256dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-256dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-257dp > * {
  margin-left: 15.05rem;
}
.child-hspaceby-257dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-257dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-258dp > * {
  margin-left: 15.11rem;
}
.child-hspaceby-258dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-258dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-259dp > * {
  margin-left: 15.17rem;
}
.child-hspaceby-259dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-259dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-260dp > * {
  margin-left: 15.23rem;
}
.child-hspaceby-260dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-260dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-261dp > * {
  margin-left: 15.29rem;
}
.child-hspaceby-261dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-261dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-262dp > * {
  margin-left: 15.34rem;
}
.child-hspaceby-262dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-262dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-263dp > * {
  margin-left: 15.4rem;
}
.child-hspaceby-263dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-263dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-264dp > * {
  margin-left: 15.46rem;
}
.child-hspaceby-264dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-264dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-265dp > * {
  margin-left: 15.52rem;
}
.child-hspaceby-265dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-265dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-266dp > * {
  margin-left: 15.58rem;
}
.child-hspaceby-266dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-266dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-267dp > * {
  margin-left: 15.64rem;
}
.child-hspaceby-267dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-267dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-268dp > * {
  margin-left: 15.7rem;
}
.child-hspaceby-268dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-268dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-269dp > * {
  margin-left: 15.75rem;
}
.child-hspaceby-269dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-269dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-270dp > * {
  margin-left: 15.81rem;
}
.child-hspaceby-270dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-270dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-271dp > * {
  margin-left: 15.87rem;
}
.child-hspaceby-271dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-271dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-272dp > * {
  margin-left: 15.93rem;
}
.child-hspaceby-272dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-272dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-273dp > * {
  margin-left: 15.99rem;
}
.child-hspaceby-273dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-273dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-274dp > * {
  margin-left: 16.05rem;
}
.child-hspaceby-274dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-274dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-275dp > * {
  margin-left: 16.11rem;
}
.child-hspaceby-275dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-275dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-276dp > * {
  margin-left: 16.16rem;
}
.child-hspaceby-276dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-276dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-277dp > * {
  margin-left: 16.22rem;
}
.child-hspaceby-277dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-277dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-278dp > * {
  margin-left: 16.28rem;
}
.child-hspaceby-278dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-278dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-279dp > * {
  margin-left: 16.34rem;
}
.child-hspaceby-279dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-279dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-280dp > * {
  margin-left: 16.4rem;
}
.child-hspaceby-280dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-280dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-281dp > * {
  margin-left: 16.46rem;
}
.child-hspaceby-281dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-281dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-282dp > * {
  margin-left: 16.52rem;
}
.child-hspaceby-282dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-282dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-283dp > * {
  margin-left: 16.57rem;
}
.child-hspaceby-283dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-283dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-284dp > * {
  margin-left: 16.63rem;
}
.child-hspaceby-284dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-284dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-285dp > * {
  margin-left: 16.69rem;
}
.child-hspaceby-285dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-285dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-286dp > * {
  margin-left: 16.75rem;
}
.child-hspaceby-286dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-286dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-287dp > * {
  margin-left: 16.81rem;
}
.child-hspaceby-287dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-287dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-288dp > * {
  margin-left: 16.87rem;
}
.child-hspaceby-288dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-288dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-289dp > * {
  margin-left: 16.93rem;
}
.child-hspaceby-289dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-289dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-290dp > * {
  margin-left: 16.98rem;
}
.child-hspaceby-290dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-290dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-291dp > * {
  margin-left: 17.04rem;
}
.child-hspaceby-291dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-291dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-292dp > * {
  margin-left: 17.1rem;
}
.child-hspaceby-292dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-292dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-293dp > * {
  margin-left: 17.16rem;
}
.child-hspaceby-293dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-293dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-294dp > * {
  margin-left: 17.22rem;
}
.child-hspaceby-294dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-294dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-295dp > * {
  margin-left: 17.28rem;
}
.child-hspaceby-295dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-295dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-296dp > * {
  margin-left: 17.34rem;
}
.child-hspaceby-296dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-296dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-297dp > * {
  margin-left: 17.39rem;
}
.child-hspaceby-297dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-297dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-298dp > * {
  margin-left: 17.45rem;
}
.child-hspaceby-298dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-298dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-299dp > * {
  margin-left: 17.51rem;
}
.child-hspaceby-299dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-299dp > *.child-0 {
  margin-left: 0;
}
.child-hspaceby-300dp > * {
  margin-left: 17.57rem;
}
.child-hspaceby-300dp > *:first-child {
  margin-left: 0;
}
.child-hspaceby-300dp > *.child-0 {
  margin-left: 0;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-auto {
  overflow: auto;
}
.hidden {
  visibility: hidden;
}
.w-auto {
  width: auto;
}
.h-auto {
  height: auto;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-3 {
  z-index: 3;
}
.z-5 {
  z-index: 5;
}
.z-10, base-channels-programs .date-header {
  z-index: 10;
}
.z-10-imp {
  z-index: 10 !important;
}
.z-20 {
  z-index: 20;
}
.z-30 {
  z-index: 30;
}
.z-100 {
  z-index: 100;
}
.z-200 {
  z-index: 200;
}
.z-300 {
  z-index: 300;
}
.z-400 {
  z-index: 400;
}
.z-500 {
  z-index: 500;
}
.z-popup {
  z-index: 1100;
}
.z-toast {
  z-index: 2000;
}
.z-splash {
  z-index: 1000;
}
.z-statusbar {
  z-index: 200;
}
.centered-x {
  left: 50%;
  transform: translateX(-50%);
}
.centered-y {
  top: 50%;
  transform: translateY(-50%);
}
.centered {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.child-centered-x > * {
  left: 50%;
  transform: translateX(-50%);
}
.child-centered-y > * {
  top: 50%;
  transform: translateY(-50%);
}
.child-centered > * {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.full {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.safe {
  left: 3.75rem;
  right: 3.75rem;
  top: 3.75rem;
  bottom: 3.75rem;
}
.safe-statusbar {
  left: 3.75rem;
  right: 3.75rem;
  top: 4.2rem;
  bottom: 3.75rem;
}
.l-safe {
  left: 3.75rem;
}
.r-safe {
  right: 3.75rem;
}
.pl-safe {
  padding-left: 3.75rem;
}
.pr-safe {
  padding-right: 3.75rem;
}
.t-safe {
  top: 3.75rem;
}
.b-safe {
  bottom: 3.75rem;
}
.mt-safe {
  margin-top: 3.75rem;
}
.mb-safe {
  margin-bottom: 3.75rem;
}
.l-unsafe {
  left: -3.75rem;
}
.r-unsafe {
  right: -3.75rem;
}
.t-unsafe {
  top: -3.75rem;
}
.b-unsafe {
  bottom: -3.75rem;
}
.unsafe {
  left: -3.75rem;
  right: -3.75rem;
  top: -3.75rem;
  bottom: -3.75rem;
}
.opacity-0 {
  opacity: 0;
}
.opacity-1 {
  opacity: 1;
}
.opacity-07 {
  opacity: 0.7;
}
.opacity-05 {
  opacity: 0.5;
}
.opacity-0-with-transition {
  opacity: 0;
  transition: opacity 1s linear;
}
.opacity-1-with-transition {
  opacity: 1;
  transition: opacity 1s linear;
}
.p-M {
  padding: 0.5rem;
}
.px-M {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-M {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.pl-M {
  padding-left: 0.5rem;
}
.pr-M {
  padding-right: 0.5rem;
}
.pb-M {
  padding-bottom: 0.5rem;
}
.pt-M {
  padding-top: 0.5rem;
}
.m-M {
  margin: 0.5rem;
}
.mx-M {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.my-M {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.ml-M {
  margin-left: 0.5rem;
}
.mr-M {
  margin-right: 0.5rem;
}
.mb-M {
  margin-bottom: 0.5rem;
}
.mt-M {
  margin-top: 0.5rem;
}
.l-M {
  left: 0.5rem;
}
.r-M {
  right: 0.5rem;
}
.t-M {
  top: 0.5rem;
}
.b-M {
  bottom: 0.5rem;
}
.l--M {
  left: -0.5rem;
}
.r--M {
  right: -0.5rem;
}
.t--M {
  top: -0.5rem;
}
.b--M {
  bottom: -0.5rem;
}
.w-M {
  width: 0.5rem;
}
.h-M {
  height: 0.5rem;
}
.lh-M {
  line-height: 0.5rem;
}
.p-N {
  padding: 0.625rem;
}
.px-N {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.py-N {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.pl-N {
  padding-left: 0.625rem;
}
.pr-N {
  padding-right: 0.625rem;
}
.pb-N {
  padding-bottom: 0.625rem;
}
.pt-N {
  padding-top: 0.625rem;
}
.m-N {
  margin: 0.625rem;
}
.mx-N {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}
.my-N {
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.ml-N {
  margin-left: 0.625rem;
}
.mr-N {
  margin-right: 0.625rem;
}
.mb-N {
  margin-bottom: 0.625rem;
}
.mt-N {
  margin-top: 0.625rem;
}
.l-N {
  left: 0.625rem;
}
.r-N {
  right: 0.625rem;
}
.t-N {
  top: 0.625rem;
}
.b-N {
  bottom: 0.625rem;
}
.l--N {
  left: -0.625rem;
}
.r--N {
  right: -0.625rem;
}
.t--N {
  top: -0.625rem;
}
.b--N {
  bottom: -0.625rem;
}
.w-N {
  width: 0.625rem;
}
.h-N {
  height: 0.625rem;
}
.lh-N {
  line-height: 0.625rem;
}
.p-R {
  padding: 0.8125rem;
}
.px-R {
  padding-left: 0.8125rem;
  padding-right: 0.8125rem;
}
.py-R {
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}
.pl-R {
  padding-left: 0.8125rem;
}
.pr-R {
  padding-right: 0.8125rem;
}
.pb-R {
  padding-bottom: 0.8125rem;
}
.pt-R {
  padding-top: 0.8125rem;
}
.m-R {
  margin: 0.8125rem;
}
.mx-R {
  margin-left: 0.8125rem;
  margin-right: 0.8125rem;
}
.my-R {
  margin-top: 0.8125rem;
  margin-bottom: 0.8125rem;
}
.ml-R {
  margin-left: 0.8125rem;
}
.mr-R {
  margin-right: 0.8125rem;
}
.mb-R {
  margin-bottom: 0.8125rem;
}
.mt-R {
  margin-top: 0.8125rem;
}
.l-R {
  left: 0.8125rem;
}
.r-R {
  right: 0.8125rem;
}
.t-R {
  top: 0.8125rem;
}
.b-R {
  bottom: 0.8125rem;
}
.l--R {
  left: -0.8125rem;
}
.r--R {
  right: -0.8125rem;
}
.t--R {
  top: -0.8125rem;
}
.b--R {
  bottom: -0.8125rem;
}
.w-R {
  width: 0.8125rem;
}
.h-R {
  height: 0.8125rem;
}
.lh-R {
  line-height: 0.8125rem;
}
.p-A {
  padding: 1rem;
}
.px-A {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-A {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pl-A {
  padding-left: 1rem;
}
.pr-A {
  padding-right: 1rem;
}
.pb-A {
  padding-bottom: 1rem;
}
.pt-A {
  padding-top: 1rem;
}
.m-A {
  margin: 1rem;
}
.mx-A {
  margin-left: 1rem;
  margin-right: 1rem;
}
.my-A {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.ml-A {
  margin-left: 1rem;
}
.mr-A {
  margin-right: 1rem;
}
.mb-A {
  margin-bottom: 1rem;
}
.mt-A {
  margin-top: 1rem;
}
.l-A {
  left: 1rem;
}
.r-A {
  right: 1rem;
}
.t-A {
  top: 1rem;
}
.b-A {
  bottom: 1rem;
}
.l--A {
  left: -1rem;
}
.r--A {
  right: -1rem;
}
.t--A {
  top: -1rem;
}
.b--A {
  bottom: -1rem;
}
.w-A {
  width: 1rem;
}
.h-A {
  height: 1rem;
}
.lh-A {
  line-height: 1rem;
}
.p-F {
  padding: 1.75rem;
}
.px-F {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.py-F {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.pl-F {
  padding-left: 1.75rem;
}
.pr-F {
  padding-right: 1.75rem;
}
.pb-F {
  padding-bottom: 1.75rem;
}
.pt-F {
  padding-top: 1.75rem;
}
.m-F {
  margin: 1.75rem;
}
.mx-F {
  margin-left: 1.75rem;
  margin-right: 1.75rem;
}
.my-F {
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}
.ml-F {
  margin-left: 1.75rem;
}
.mr-F {
  margin-right: 1.75rem;
}
.mb-F {
  margin-bottom: 1.75rem;
}
.mt-F {
  margin-top: 1.75rem;
}
.l-F {
  left: 1.75rem;
}
.r-F {
  right: 1.75rem;
}
.t-F {
  top: 1.75rem;
}
.b-F {
  bottom: 1.75rem;
}
.l--F {
  left: -1.75rem;
}
.r--F {
  right: -1.75rem;
}
.t--F {
  top: -1.75rem;
}
.b--F {
  bottom: -1.75rem;
}
.w-F {
  width: 1.75rem;
}
.h-F {
  height: 1.75rem;
}
.lh-F {
  line-height: 1.75rem;
}
.p-G {
  padding: 2.25rem;
}
.px-G {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.py-G {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.pl-G {
  padding-left: 2.25rem;
}
.pr-G {
  padding-right: 2.25rem;
}
.pb-G {
  padding-bottom: 2.25rem;
}
.pt-G {
  padding-top: 2.25rem;
}
.m-G {
  margin: 2.25rem;
}
.mx-G {
  margin-left: 2.25rem;
  margin-right: 2.25rem;
}
.my-G {
  margin-top: 2.25rem;
  margin-bottom: 2.25rem;
}
.ml-G {
  margin-left: 2.25rem;
}
.mr-G {
  margin-right: 2.25rem;
}
.mb-G {
  margin-bottom: 2.25rem;
}
.mt-G {
  margin-top: 2.25rem;
}
.l-G {
  left: 2.25rem;
}
.r-G {
  right: 2.25rem;
}
.t-G {
  top: 2.25rem;
}
.b-G {
  bottom: 2.25rem;
}
.l--G {
  left: -2.25rem;
}
.r--G {
  right: -2.25rem;
}
.t--G {
  top: -2.25rem;
}
.b--G {
  bottom: -2.25rem;
}
.w-G {
  width: 2.25rem;
}
.h-G {
  height: 2.25rem;
}
.lh-G {
  line-height: 2.25rem;
}
.p-B {
  padding: 3rem;
}
.px-B {
  padding-left: 3rem;
  padding-right: 3rem;
}
.py-B {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pl-B {
  padding-left: 3rem;
}
.pr-B {
  padding-right: 3rem;
}
.pb-B {
  padding-bottom: 3rem;
}
.pt-B {
  padding-top: 3rem;
}
.m-B {
  margin: 3rem;
}
.mx-B {
  margin-left: 3rem;
  margin-right: 3rem;
}
.my-B {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.ml-B {
  margin-left: 3rem;
}
.mr-B {
  margin-right: 3rem;
}
.mb-B {
  margin-bottom: 3rem;
}
.mt-B {
  margin-top: 3rem;
}
.l-B {
  left: 3rem;
}
.r-B {
  right: 3rem;
}
.t-B {
  top: 3rem;
}
.b-B {
  bottom: 3rem;
}
.l--B {
  left: -3rem;
}
.r--B {
  right: -3rem;
}
.t--B {
  top: -3rem;
}
.b--B {
  bottom: -3rem;
}
.w-B {
  width: 3rem;
}
.h-B {
  height: 3rem;
}
.lh-B {
  line-height: 3rem;
}
.p-2M {
  padding: 1rem;
}
.px-2M {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2M {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pl-2M {
  padding-left: 1rem;
}
.pr-2M {
  padding-right: 1rem;
}
.pb-2M {
  padding-bottom: 1rem;
}
.pt-2M {
  padding-top: 1rem;
}
.m-2M {
  margin: 1rem;
}
.mx-2M {
  margin-left: 1rem;
  margin-right: 1rem;
}
.my-2M {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.ml-2M {
  margin-left: 1rem;
}
.mr-2M {
  margin-right: 1rem;
}
.mb-2M {
  margin-bottom: 1rem;
}
.mt-2M {
  margin-top: 1rem;
}
.l-2M {
  left: 1rem;
}
.r-2M {
  right: 1rem;
}
.t-2M {
  top: 1rem;
}
.b-2M {
  bottom: 1rem;
}
.l--2M {
  left: -1rem;
}
.r--2M {
  right: -1rem;
}
.t--2M {
  top: -1rem;
}
.b--2M {
  bottom: -1rem;
}
.w-2M {
  width: 1rem;
}
.h-2M {
  height: 1rem;
}
.lh-2M {
  line-height: 1rem;
}
.p-2N {
  padding: 1.25rem;
}
.px-2N {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.py-2N {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.pl-2N {
  padding-left: 1.25rem;
}
.pr-2N {
  padding-right: 1.25rem;
}
.pb-2N {
  padding-bottom: 1.25rem;
}
.pt-2N {
  padding-top: 1.25rem;
}
.m-2N {
  margin: 1.25rem;
}
.mx-2N {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.my-2N {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.ml-2N {
  margin-left: 1.25rem;
}
.mr-2N {
  margin-right: 1.25rem;
}
.mb-2N {
  margin-bottom: 1.25rem;
}
.mt-2N {
  margin-top: 1.25rem;
}
.l-2N {
  left: 1.25rem;
}
.r-2N {
  right: 1.25rem;
}
.t-2N {
  top: 1.25rem;
}
.b-2N {
  bottom: 1.25rem;
}
.l--2N {
  left: -1.25rem;
}
.r--2N {
  right: -1.25rem;
}
.t--2N {
  top: -1.25rem;
}
.b--2N {
  bottom: -1.25rem;
}
.w-2N {
  width: 1.25rem;
}
.h-2N {
  height: 1.25rem;
}
.lh-2N {
  line-height: 1.25rem;
}
.p-2R {
  padding: 1.625rem;
}
.px-2R {
  padding-left: 1.625rem;
  padding-right: 1.625rem;
}
.py-2R {
  padding-top: 1.625rem;
  padding-bottom: 1.625rem;
}
.pl-2R {
  padding-left: 1.625rem;
}
.pr-2R {
  padding-right: 1.625rem;
}
.pb-2R {
  padding-bottom: 1.625rem;
}
.pt-2R {
  padding-top: 1.625rem;
}
.m-2R {
  margin: 1.625rem;
}
.mx-2R {
  margin-left: 1.625rem;
  margin-right: 1.625rem;
}
.my-2R {
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
}
.ml-2R {
  margin-left: 1.625rem;
}
.mr-2R {
  margin-right: 1.625rem;
}
.mb-2R {
  margin-bottom: 1.625rem;
}
.mt-2R {
  margin-top: 1.625rem;
}
.l-2R {
  left: 1.625rem;
}
.r-2R {
  right: 1.625rem;
}
.t-2R {
  top: 1.625rem;
}
.b-2R {
  bottom: 1.625rem;
}
.l--2R {
  left: -1.625rem;
}
.r--2R {
  right: -1.625rem;
}
.t--2R {
  top: -1.625rem;
}
.b--2R {
  bottom: -1.625rem;
}
.w-2R {
  width: 1.625rem;
}
.h-2R {
  height: 1.625rem;
}
.lh-2R {
  line-height: 1.625rem;
}
.p-2A {
  padding: 2rem;
}
.px-2A {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-2A {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pl-2A {
  padding-left: 2rem;
}
.pr-2A {
  padding-right: 2rem;
}
.pb-2A {
  padding-bottom: 2rem;
}
.pt-2A {
  padding-top: 2rem;
}
.m-2A {
  margin: 2rem;
}
.mx-2A {
  margin-left: 2rem;
  margin-right: 2rem;
}
.my-2A {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.ml-2A {
  margin-left: 2rem;
}
.mr-2A {
  margin-right: 2rem;
}
.mb-2A {
  margin-bottom: 2rem;
}
.mt-2A {
  margin-top: 2rem;
}
.l-2A {
  left: 2rem;
}
.r-2A {
  right: 2rem;
}
.t-2A {
  top: 2rem;
}
.b-2A {
  bottom: 2rem;
}
.l--2A {
  left: -2rem;
}
.r--2A {
  right: -2rem;
}
.t--2A {
  top: -2rem;
}
.b--2A {
  bottom: -2rem;
}
.w-2A {
  width: 2rem;
}
.h-2A {
  height: 2rem;
}
.lh-2A {
  line-height: 2rem;
}
.p-2F {
  padding: 3.5rem;
}
.px-2F {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}
.py-2F {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.pl-2F {
  padding-left: 3.5rem;
}
.pr-2F {
  padding-right: 3.5rem;
}
.pb-2F {
  padding-bottom: 3.5rem;
}
.pt-2F {
  padding-top: 3.5rem;
}
.m-2F {
  margin: 3.5rem;
}
.mx-2F {
  margin-left: 3.5rem;
  margin-right: 3.5rem;
}
.my-2F {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.ml-2F {
  margin-left: 3.5rem;
}
.mr-2F {
  margin-right: 3.5rem;
}
.mb-2F {
  margin-bottom: 3.5rem;
}
.mt-2F {
  margin-top: 3.5rem;
}
.l-2F {
  left: 3.5rem;
}
.r-2F {
  right: 3.5rem;
}
.t-2F {
  top: 3.5rem;
}
.b-2F {
  bottom: 3.5rem;
}
.l--2F {
  left: -3.5rem;
}
.r--2F {
  right: -3.5rem;
}
.t--2F {
  top: -3.5rem;
}
.b--2F {
  bottom: -3.5rem;
}
.w-2F {
  width: 3.5rem;
}
.h-2F {
  height: 3.5rem;
}
.lh-2F {
  line-height: 3.5rem;
}
.p-2G {
  padding: 4.5rem;
}
.px-2G {
  padding-left: 4.5rem;
  padding-right: 4.5rem;
}
.py-2G {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.pl-2G {
  padding-left: 4.5rem;
}
.pr-2G {
  padding-right: 4.5rem;
}
.pb-2G {
  padding-bottom: 4.5rem;
}
.pt-2G {
  padding-top: 4.5rem;
}
.m-2G {
  margin: 4.5rem;
}
.mx-2G {
  margin-left: 4.5rem;
  margin-right: 4.5rem;
}
.my-2G {
  margin-top: 4.5rem;
  margin-bottom: 4.5rem;
}
.ml-2G {
  margin-left: 4.5rem;
}
.mr-2G {
  margin-right: 4.5rem;
}
.mb-2G {
  margin-bottom: 4.5rem;
}
.mt-2G {
  margin-top: 4.5rem;
}
.l-2G {
  left: 4.5rem;
}
.r-2G {
  right: 4.5rem;
}
.t-2G {
  top: 4.5rem;
}
.b-2G {
  bottom: 4.5rem;
}
.l--2G {
  left: -4.5rem;
}
.r--2G {
  right: -4.5rem;
}
.t--2G {
  top: -4.5rem;
}
.b--2G {
  bottom: -4.5rem;
}
.w-2G {
  width: 4.5rem;
}
.h-2G {
  height: 4.5rem;
}
.lh-2G {
  line-height: 4.5rem;
}
.p-2B {
  padding: 6rem;
}
.px-2B {
  padding-left: 6rem;
  padding-right: 6rem;
}
.py-2B {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.pl-2B {
  padding-left: 6rem;
}
.pr-2B {
  padding-right: 6rem;
}
.pb-2B {
  padding-bottom: 6rem;
}
.pt-2B {
  padding-top: 6rem;
}
.m-2B {
  margin: 6rem;
}
.mx-2B {
  margin-left: 6rem;
  margin-right: 6rem;
}
.my-2B {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.ml-2B {
  margin-left: 6rem;
}
.mr-2B {
  margin-right: 6rem;
}
.mb-2B {
  margin-bottom: 6rem;
}
.mt-2B {
  margin-top: 6rem;
}
.l-2B {
  left: 6rem;
}
.r-2B {
  right: 6rem;
}
.t-2B {
  top: 6rem;
}
.b-2B {
  bottom: 6rem;
}
.l--2B {
  left: -6rem;
}
.r--2B {
  right: -6rem;
}
.t--2B {
  top: -6rem;
}
.b--2B {
  bottom: -6rem;
}
.w-2B {
  width: 6rem;
}
.h-2B {
  height: 6rem;
}
.lh-2B {
  line-height: 6rem;
}
.p-statusbar {
  padding: 4.2rem;
}
.px-statusbar {
  padding-left: 4.2rem;
  padding-right: 4.2rem;
}
.py-statusbar {
  padding-top: 4.2rem;
  padding-bottom: 4.2rem;
}
.pl-statusbar {
  padding-left: 4.2rem;
}
.pr-statusbar {
  padding-right: 4.2rem;
}
.pb-statusbar {
  padding-bottom: 4.2rem;
}
.pt-statusbar {
  padding-top: 4.2rem;
}
.m-statusbar {
  margin: 4.2rem;
}
.mx-statusbar {
  margin-left: 4.2rem;
  margin-right: 4.2rem;
}
.my-statusbar {
  margin-top: 4.2rem;
  margin-bottom: 4.2rem;
}
.ml-statusbar {
  margin-left: 4.2rem;
}
.mr-statusbar {
  margin-right: 4.2rem;
}
.mb-statusbar {
  margin-bottom: 4.2rem;
}
.mt-statusbar {
  margin-top: 4.2rem;
}
.l-statusbar {
  left: 4.2rem;
}
.r-statusbar {
  right: 4.2rem;
}
.t-statusbar {
  top: 4.2rem;
}
.b-statusbar {
  bottom: 4.2rem;
}
.l--statusbar {
  left: -4.2rem;
}
.r--statusbar {
  right: -4.2rem;
}
.t--statusbar {
  top: -4.2rem;
}
.b--statusbar {
  bottom: -4.2rem;
}
.w-statusbar {
  width: 4.2rem;
}
.h-statusbar {
  height: 4.2rem;
}
.lh-statusbar {
  line-height: 4.2rem;
}
.p-safe-w {
  padding: 3.75rem;
}
.px-safe-w {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
.py-safe-w {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.pl-safe-w {
  padding-left: 3.75rem;
}
.pr-safe-w {
  padding-right: 3.75rem;
}
.pb-safe-w {
  padding-bottom: 3.75rem;
}
.pt-safe-w {
  padding-top: 3.75rem;
}
.m-safe-w {
  margin: 3.75rem;
}
.mx-safe-w {
  margin-left: 3.75rem;
  margin-right: 3.75rem;
}
.my-safe-w {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
.ml-safe-w {
  margin-left: 3.75rem;
}
.mr-safe-w {
  margin-right: 3.75rem;
}
.mb-safe-w {
  margin-bottom: 3.75rem;
}
.mt-safe-w {
  margin-top: 3.75rem;
}
.l-safe-w {
  left: 3.75rem;
}
.r-safe-w {
  right: 3.75rem;
}
.t-safe-w {
  top: 3.75rem;
}
.b-safe-w {
  bottom: 3.75rem;
}
.l--safe-w {
  left: -3.75rem;
}
.r--safe-w {
  right: -3.75rem;
}
.t--safe-w {
  top: -3.75rem;
}
.b--safe-w {
  bottom: -3.75rem;
}
.w-safe-w {
  width: 3.75rem;
}
.h-safe-w {
  height: 3.75rem;
}
.lh-safe-w {
  line-height: 3.75rem;
}
.p-safe-h {
  padding: 3.75rem;
}
.px-safe-h {
  padding-left: 3.75rem;
  padding-right: 3.75rem;
}
.py-safe-h {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}
.pl-safe-h {
  padding-left: 3.75rem;
}
.pr-safe-h {
  padding-right: 3.75rem;
}
.pb-safe-h {
  padding-bottom: 3.75rem;
}
.pt-safe-h {
  padding-top: 3.75rem;
}
.m-safe-h {
  margin: 3.75rem;
}
.mx-safe-h {
  margin-left: 3.75rem;
  margin-right: 3.75rem;
}
.my-safe-h {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
.ml-safe-h {
  margin-left: 3.75rem;
}
.mr-safe-h {
  margin-right: 3.75rem;
}
.mb-safe-h {
  margin-bottom: 3.75rem;
}
.mt-safe-h {
  margin-top: 3.75rem;
}
.l-safe-h {
  left: 3.75rem;
}
.r-safe-h {
  right: 3.75rem;
}
.t-safe-h {
  top: 3.75rem;
}
.b-safe-h {
  bottom: 3.75rem;
}
.l--safe-h {
  left: -3.75rem;
}
.r--safe-h {
  right: -3.75rem;
}
.t--safe-h {
  top: -3.75rem;
}
.b--safe-h {
  bottom: -3.75rem;
}
.w-safe-h {
  width: 3.75rem;
}
.h-safe-h {
  height: 3.75rem;
}
.lh-safe-h {
  line-height: 3.75rem;
}
.p-auto {
  padding: auto;
}
.px-auto {
  padding-left: auto;
  padding-right: auto;
}
.py-auto {
  padding-top: auto;
  padding-bottom: auto;
}
.pl-auto {
  padding-left: auto;
}
.pr-auto {
  padding-right: auto;
}
.pb-auto {
  padding-bottom: auto;
}
.pt-auto {
  padding-top: auto;
}
.m-auto {
  margin: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}
.mb-auto {
  margin-bottom: auto;
}
.mt-auto {
  margin-top: auto;
}
.l-auto {
  left: auto;
}
.r-auto {
  right: auto;
}
.t-auto {
  top: auto;
}
.b-auto {
  bottom: auto;
}
.l--auto {
  left: -auto;
}
.r--auto {
  right: -auto;
}
.t--auto {
  top: -auto;
}
.b--auto {
  bottom: -auto;
}
.w-auto {
  width: auto;
}
.h-auto {
  height: auto;
}
.lh-auto {
  line-height: auto;
}
.ml--1 {
  margin-left: -1rem;
}
.mr--1 {
  margin-right: -1rem;
}
.mt--1 {
  margin-top: -1rem;
}
.mb--1 {
  margin-bottom: -1rem;
}
.mx--1 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.my--1 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.ml--0\.9 {
  margin-left: -0.9rem;
}
.mr--0\.9 {
  margin-right: -0.9rem;
}
.mt--0\.9 {
  margin-top: -0.9rem;
}
.mb--0\.9 {
  margin-bottom: -0.9rem;
}
.mx--0\.9 {
  margin-left: -0.9rem;
  margin-right: -0.9rem;
}
.my--0\.9 {
  margin-top: -0.9rem;
  margin-bottom: -0.9rem;
}
.ml--0\.8 {
  margin-left: -0.8rem;
}
.mr--0\.8 {
  margin-right: -0.8rem;
}
.mt--0\.8 {
  margin-top: -0.8rem;
}
.mb--0\.8 {
  margin-bottom: -0.8rem;
}
.mx--0\.8 {
  margin-left: -0.8rem;
  margin-right: -0.8rem;
}
.my--0\.8 {
  margin-top: -0.8rem;
  margin-bottom: -0.8rem;
}
.ml--0\.7 {
  margin-left: -0.7rem;
}
.mr--0\.7 {
  margin-right: -0.7rem;
}
.mt--0\.7 {
  margin-top: -0.7rem;
}
.mb--0\.7 {
  margin-bottom: -0.7rem;
}
.mx--0\.7 {
  margin-left: -0.7rem;
  margin-right: -0.7rem;
}
.my--0\.7 {
  margin-top: -0.7rem;
  margin-bottom: -0.7rem;
}
.ml--0\.6 {
  margin-left: -0.6rem;
}
.mr--0\.6 {
  margin-right: -0.6rem;
}
.mt--0\.6 {
  margin-top: -0.6rem;
}
.mb--0\.6 {
  margin-bottom: -0.6rem;
}
.mx--0\.6 {
  margin-left: -0.6rem;
  margin-right: -0.6rem;
}
.my--0\.6 {
  margin-top: -0.6rem;
  margin-bottom: -0.6rem;
}
.ml--0\.5 {
  margin-left: -0.5rem;
}
.mr--0\.5 {
  margin-right: -0.5rem;
}
.mt--0\.5 {
  margin-top: -0.5rem;
}
.mb--0\.5 {
  margin-bottom: -0.5rem;
}
.mx--0\.5 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.my--0\.5 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.ml--0\.4 {
  margin-left: -0.4rem;
}
.mr--0\.4 {
  margin-right: -0.4rem;
}
.mt--0\.4 {
  margin-top: -0.4rem;
}
.mb--0\.4 {
  margin-bottom: -0.4rem;
}
.mx--0\.4 {
  margin-left: -0.4rem;
  margin-right: -0.4rem;
}
.my--0\.4 {
  margin-top: -0.4rem;
  margin-bottom: -0.4rem;
}
.ml--0\.3 {
  margin-left: -0.3rem;
}
.mr--0\.3 {
  margin-right: -0.3rem;
}
.mt--0\.3 {
  margin-top: -0.3rem;
}
.mb--0\.3 {
  margin-bottom: -0.3rem;
}
.mx--0\.3 {
  margin-left: -0.3rem;
  margin-right: -0.3rem;
}
.my--0\.3 {
  margin-top: -0.3rem;
  margin-bottom: -0.3rem;
}
.ml--0\.2 {
  margin-left: -0.2rem;
}
.mr--0\.2 {
  margin-right: -0.2rem;
}
.mt--0\.2 {
  margin-top: -0.2rem;
}
.mb--0\.2 {
  margin-bottom: -0.2rem;
}
.mx--0\.2 {
  margin-left: -0.2rem;
  margin-right: -0.2rem;
}
.my--0\.2 {
  margin-top: -0.2rem;
  margin-bottom: -0.2rem;
}
.ml--0\.1 {
  margin-left: -0.1rem;
}
.mr--0\.1 {
  margin-right: -0.1rem;
}
.mt--0\.1 {
  margin-top: -0.1rem;
}
.mb--0\.1 {
  margin-bottom: -0.1rem;
}
.mx--0\.1 {
  margin-left: -0.1rem;
  margin-right: -0.1rem;
}
.my--0\.1 {
  margin-top: -0.1rem;
  margin-bottom: -0.1rem;
}
.ml-0 {
  margin-left: 0rem;
}
.mr-0 {
  margin-right: 0rem;
}
.mt-0 {
  margin-top: 0rem;
}
.mb-0 {
  margin-bottom: 0rem;
}
.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}
.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.ml-0\.1 {
  margin-left: 0.1rem;
}
.mr-0\.1 {
  margin-right: 0.1rem;
}
.mt-0\.1 {
  margin-top: 0.1rem;
}
.mb-0\.1 {
  margin-bottom: 0.1rem;
}
.mx-0\.1 {
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}
.my-0\.1 {
  margin-top: 0.1rem;
  margin-bottom: 0.1rem;
}
.ml-0\.2 {
  margin-left: 0.2rem;
}
.mr-0\.2 {
  margin-right: 0.2rem;
}
.mt-0\.2 {
  margin-top: 0.2rem;
}
.mb-0\.2 {
  margin-bottom: 0.2rem;
}
.mx-0\.2 {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
}
.my-0\.2 {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
.ml-0\.3 {
  margin-left: 0.3rem;
}
.mr-0\.3 {
  margin-right: 0.3rem;
}
.mt-0\.3 {
  margin-top: 0.3rem;
}
.mb-0\.3 {
  margin-bottom: 0.3rem;
}
.mx-0\.3 {
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
.my-0\.3 {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.ml-0\.4 {
  margin-left: 0.4rem;
}
.mr-0\.4 {
  margin-right: 0.4rem;
}
.mt-0\.4 {
  margin-top: 0.4rem;
}
.mb-0\.4 {
  margin-bottom: 0.4rem;
}
.mx-0\.4 {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}
.my-0\.4 {
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
.ml-0\.5 {
  margin-left: 0.5rem;
}
.mr-0\.5 {
  margin-right: 0.5rem;
}
.mt-0\.5 {
  margin-top: 0.5rem;
}
.mb-0\.5 {
  margin-bottom: 0.5rem;
}
.mx-0\.5 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.my-0\.5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.ml-0\.6 {
  margin-left: 0.6rem;
}
.mr-0\.6 {
  margin-right: 0.6rem;
}
.mt-0\.6 {
  margin-top: 0.6rem;
}
.mb-0\.6 {
  margin-bottom: 0.6rem;
}
.mx-0\.6 {
  margin-left: 0.6rem;
  margin-right: 0.6rem;
}
.my-0\.6 {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}
.ml-0\.7 {
  margin-left: 0.7rem;
}
.mr-0\.7 {
  margin-right: 0.7rem;
}
.mt-0\.7 {
  margin-top: 0.7rem;
}
.mb-0\.7 {
  margin-bottom: 0.7rem;
}
.mx-0\.7 {
  margin-left: 0.7rem;
  margin-right: 0.7rem;
}
.my-0\.7 {
  margin-top: 0.7rem;
  margin-bottom: 0.7rem;
}
.ml-0\.8 {
  margin-left: 0.8rem;
}
.mr-0\.8 {
  margin-right: 0.8rem;
}
.mt-0\.8 {
  margin-top: 0.8rem;
}
.mb-0\.8 {
  margin-bottom: 0.8rem;
}
.mx-0\.8 {
  margin-left: 0.8rem;
  margin-right: 0.8rem;
}
.my-0\.8 {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}
.ml-0\.9 {
  margin-left: 0.9rem;
}
.mr-0\.9 {
  margin-right: 0.9rem;
}
.mt-0\.9 {
  margin-top: 0.9rem;
}
.mb-0\.9 {
  margin-bottom: 0.9rem;
}
.mx-0\.9 {
  margin-left: 0.9rem;
  margin-right: 0.9rem;
}
.my-0\.9 {
  margin-top: 0.9rem;
  margin-bottom: 0.9rem;
}
.ml-1 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 1rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.pl-0 {
  padding-left: 0rem;
}
.pr-0 {
  padding-right: 0rem;
}
.pt-0 {
  padding-top: 0rem;
}
.pb-0 {
  padding-bottom: 0rem;
}
.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}
.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.pl-0\.1 {
  padding-left: 0.1rem;
}
.pr-0\.1 {
  padding-right: 0.1rem;
}
.pt-0\.1 {
  padding-top: 0.1rem;
}
.pb-0\.1 {
  padding-bottom: 0.1rem;
}
.px-0\.1 {
  padding-left: 0.1rem;
  padding-right: 0.1rem;
}
.py-0\.1 {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}
.pl-0\.2 {
  padding-left: 0.2rem;
}
.pr-0\.2 {
  padding-right: 0.2rem;
}
.pt-0\.2 {
  padding-top: 0.2rem;
}
.pb-0\.2 {
  padding-bottom: 0.2rem;
}
.px-0\.2 {
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.py-0\.2 {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.pl-0\.3 {
  padding-left: 0.3rem;
}
.pr-0\.3 {
  padding-right: 0.3rem;
}
.pt-0\.3 {
  padding-top: 0.3rem;
}
.pb-0\.3 {
  padding-bottom: 0.3rem;
}
.px-0\.3 {
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.py-0\.3 {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.pl-0\.4 {
  padding-left: 0.4rem;
}
.pr-0\.4 {
  padding-right: 0.4rem;
}
.pt-0\.4 {
  padding-top: 0.4rem;
}
.pb-0\.4 {
  padding-bottom: 0.4rem;
}
.px-0\.4 {
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}
.py-0\.4 {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.pl-0\.5 {
  padding-left: 0.5rem;
}
.pr-0\.5 {
  padding-right: 0.5rem;
}
.pt-0\.5 {
  padding-top: 0.5rem;
}
.pb-0\.5 {
  padding-bottom: 0.5rem;
}
.px-0\.5 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-0\.5 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.pl-0\.6 {
  padding-left: 0.6rem;
}
.pr-0\.6 {
  padding-right: 0.6rem;
}
.pt-0\.6 {
  padding-top: 0.6rem;
}
.pb-0\.6 {
  padding-bottom: 0.6rem;
}
.px-0\.6 {
  padding-left: 0.6rem;
  padding-right: 0.6rem;
}
.py-0\.6 {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}
.pl-0\.7 {
  padding-left: 0.7rem;
}
.pr-0\.7 {
  padding-right: 0.7rem;
}
.pt-0\.7 {
  padding-top: 0.7rem;
}
.pb-0\.7 {
  padding-bottom: 0.7rem;
}
.px-0\.7 {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
.py-0\.7 {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.pl-0\.8 {
  padding-left: 0.8rem;
}
.pr-0\.8 {
  padding-right: 0.8rem;
}
.pt-0\.8 {
  padding-top: 0.8rem;
}
.pb-0\.8 {
  padding-bottom: 0.8rem;
}
.px-0\.8 {
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.py-0\.8 {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.pl-0\.9 {
  padding-left: 0.9rem;
}
.pr-0\.9 {
  padding-right: 0.9rem;
}
.pt-0\.9 {
  padding-top: 0.9rem;
}
.pb-0\.9 {
  padding-bottom: 0.9rem;
}
.px-0\.9 {
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}
.py-0\.9 {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}
.pl-1 {
  padding-left: 1rem;
}
.pr-1 {
  padding-right: 1rem;
}
.pt-1 {
  padding-top: 1rem;
}
.pb-1 {
  padding-bottom: 1rem;
}
.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.ml--40 {
  margin-left: -40rem;
}
.mr--40 {
  margin-right: -40rem;
}
.mt--40 {
  margin-top: -40rem;
}
.mb--40 {
  margin-bottom: -40rem;
}
.mx--40 {
  margin-left: -40rem;
  margin-right: -40rem;
}
.my--40 {
  margin-top: -40rem;
  margin-bottom: -40rem;
}
.ml--39 {
  margin-left: -39rem;
}
.mr--39 {
  margin-right: -39rem;
}
.mt--39 {
  margin-top: -39rem;
}
.mb--39 {
  margin-bottom: -39rem;
}
.mx--39 {
  margin-left: -39rem;
  margin-right: -39rem;
}
.my--39 {
  margin-top: -39rem;
  margin-bottom: -39rem;
}
.ml--38 {
  margin-left: -38rem;
}
.mr--38 {
  margin-right: -38rem;
}
.mt--38 {
  margin-top: -38rem;
}
.mb--38 {
  margin-bottom: -38rem;
}
.mx--38 {
  margin-left: -38rem;
  margin-right: -38rem;
}
.my--38 {
  margin-top: -38rem;
  margin-bottom: -38rem;
}
.ml--37 {
  margin-left: -37rem;
}
.mr--37 {
  margin-right: -37rem;
}
.mt--37 {
  margin-top: -37rem;
}
.mb--37 {
  margin-bottom: -37rem;
}
.mx--37 {
  margin-left: -37rem;
  margin-right: -37rem;
}
.my--37 {
  margin-top: -37rem;
  margin-bottom: -37rem;
}
.ml--36 {
  margin-left: -36rem;
}
.mr--36 {
  margin-right: -36rem;
}
.mt--36 {
  margin-top: -36rem;
}
.mb--36 {
  margin-bottom: -36rem;
}
.mx--36 {
  margin-left: -36rem;
  margin-right: -36rem;
}
.my--36 {
  margin-top: -36rem;
  margin-bottom: -36rem;
}
.ml--35 {
  margin-left: -35rem;
}
.mr--35 {
  margin-right: -35rem;
}
.mt--35 {
  margin-top: -35rem;
}
.mb--35 {
  margin-bottom: -35rem;
}
.mx--35 {
  margin-left: -35rem;
  margin-right: -35rem;
}
.my--35 {
  margin-top: -35rem;
  margin-bottom: -35rem;
}
.ml--34 {
  margin-left: -34rem;
}
.mr--34 {
  margin-right: -34rem;
}
.mt--34 {
  margin-top: -34rem;
}
.mb--34 {
  margin-bottom: -34rem;
}
.mx--34 {
  margin-left: -34rem;
  margin-right: -34rem;
}
.my--34 {
  margin-top: -34rem;
  margin-bottom: -34rem;
}
.ml--33 {
  margin-left: -33rem;
}
.mr--33 {
  margin-right: -33rem;
}
.mt--33 {
  margin-top: -33rem;
}
.mb--33 {
  margin-bottom: -33rem;
}
.mx--33 {
  margin-left: -33rem;
  margin-right: -33rem;
}
.my--33 {
  margin-top: -33rem;
  margin-bottom: -33rem;
}
.ml--32 {
  margin-left: -32rem;
}
.mr--32 {
  margin-right: -32rem;
}
.mt--32 {
  margin-top: -32rem;
}
.mb--32 {
  margin-bottom: -32rem;
}
.mx--32 {
  margin-left: -32rem;
  margin-right: -32rem;
}
.my--32 {
  margin-top: -32rem;
  margin-bottom: -32rem;
}
.ml--31 {
  margin-left: -31rem;
}
.mr--31 {
  margin-right: -31rem;
}
.mt--31 {
  margin-top: -31rem;
}
.mb--31 {
  margin-bottom: -31rem;
}
.mx--31 {
  margin-left: -31rem;
  margin-right: -31rem;
}
.my--31 {
  margin-top: -31rem;
  margin-bottom: -31rem;
}
.ml--30 {
  margin-left: -30rem;
}
.mr--30 {
  margin-right: -30rem;
}
.mt--30 {
  margin-top: -30rem;
}
.mb--30 {
  margin-bottom: -30rem;
}
.mx--30 {
  margin-left: -30rem;
  margin-right: -30rem;
}
.my--30 {
  margin-top: -30rem;
  margin-bottom: -30rem;
}
.ml--29 {
  margin-left: -29rem;
}
.mr--29 {
  margin-right: -29rem;
}
.mt--29 {
  margin-top: -29rem;
}
.mb--29 {
  margin-bottom: -29rem;
}
.mx--29 {
  margin-left: -29rem;
  margin-right: -29rem;
}
.my--29 {
  margin-top: -29rem;
  margin-bottom: -29rem;
}
.ml--28 {
  margin-left: -28rem;
}
.mr--28 {
  margin-right: -28rem;
}
.mt--28 {
  margin-top: -28rem;
}
.mb--28 {
  margin-bottom: -28rem;
}
.mx--28 {
  margin-left: -28rem;
  margin-right: -28rem;
}
.my--28 {
  margin-top: -28rem;
  margin-bottom: -28rem;
}
.ml--27 {
  margin-left: -27rem;
}
.mr--27 {
  margin-right: -27rem;
}
.mt--27 {
  margin-top: -27rem;
}
.mb--27 {
  margin-bottom: -27rem;
}
.mx--27 {
  margin-left: -27rem;
  margin-right: -27rem;
}
.my--27 {
  margin-top: -27rem;
  margin-bottom: -27rem;
}
.ml--26 {
  margin-left: -26rem;
}
.mr--26 {
  margin-right: -26rem;
}
.mt--26 {
  margin-top: -26rem;
}
.mb--26 {
  margin-bottom: -26rem;
}
.mx--26 {
  margin-left: -26rem;
  margin-right: -26rem;
}
.my--26 {
  margin-top: -26rem;
  margin-bottom: -26rem;
}
.ml--25 {
  margin-left: -25rem;
}
.mr--25 {
  margin-right: -25rem;
}
.mt--25 {
  margin-top: -25rem;
}
.mb--25 {
  margin-bottom: -25rem;
}
.mx--25 {
  margin-left: -25rem;
  margin-right: -25rem;
}
.my--25 {
  margin-top: -25rem;
  margin-bottom: -25rem;
}
.ml--24 {
  margin-left: -24rem;
}
.mr--24 {
  margin-right: -24rem;
}
.mt--24 {
  margin-top: -24rem;
}
.mb--24 {
  margin-bottom: -24rem;
}
.mx--24 {
  margin-left: -24rem;
  margin-right: -24rem;
}
.my--24 {
  margin-top: -24rem;
  margin-bottom: -24rem;
}
.ml--23 {
  margin-left: -23rem;
}
.mr--23 {
  margin-right: -23rem;
}
.mt--23 {
  margin-top: -23rem;
}
.mb--23 {
  margin-bottom: -23rem;
}
.mx--23 {
  margin-left: -23rem;
  margin-right: -23rem;
}
.my--23 {
  margin-top: -23rem;
  margin-bottom: -23rem;
}
.ml--22 {
  margin-left: -22rem;
}
.mr--22 {
  margin-right: -22rem;
}
.mt--22 {
  margin-top: -22rem;
}
.mb--22 {
  margin-bottom: -22rem;
}
.mx--22 {
  margin-left: -22rem;
  margin-right: -22rem;
}
.my--22 {
  margin-top: -22rem;
  margin-bottom: -22rem;
}
.ml--21 {
  margin-left: -21rem;
}
.mr--21 {
  margin-right: -21rem;
}
.mt--21 {
  margin-top: -21rem;
}
.mb--21 {
  margin-bottom: -21rem;
}
.mx--21 {
  margin-left: -21rem;
  margin-right: -21rem;
}
.my--21 {
  margin-top: -21rem;
  margin-bottom: -21rem;
}
.ml--20 {
  margin-left: -20rem;
}
.mr--20 {
  margin-right: -20rem;
}
.mt--20 {
  margin-top: -20rem;
}
.mb--20 {
  margin-bottom: -20rem;
}
.mx--20 {
  margin-left: -20rem;
  margin-right: -20rem;
}
.my--20 {
  margin-top: -20rem;
  margin-bottom: -20rem;
}
.ml--19 {
  margin-left: -19rem;
}
.mr--19 {
  margin-right: -19rem;
}
.mt--19 {
  margin-top: -19rem;
}
.mb--19 {
  margin-bottom: -19rem;
}
.mx--19 {
  margin-left: -19rem;
  margin-right: -19rem;
}
.my--19 {
  margin-top: -19rem;
  margin-bottom: -19rem;
}
.ml--18 {
  margin-left: -18rem;
}
.mr--18 {
  margin-right: -18rem;
}
.mt--18 {
  margin-top: -18rem;
}
.mb--18 {
  margin-bottom: -18rem;
}
.mx--18 {
  margin-left: -18rem;
  margin-right: -18rem;
}
.my--18 {
  margin-top: -18rem;
  margin-bottom: -18rem;
}
.ml--17 {
  margin-left: -17rem;
}
.mr--17 {
  margin-right: -17rem;
}
.mt--17 {
  margin-top: -17rem;
}
.mb--17 {
  margin-bottom: -17rem;
}
.mx--17 {
  margin-left: -17rem;
  margin-right: -17rem;
}
.my--17 {
  margin-top: -17rem;
  margin-bottom: -17rem;
}
.ml--16 {
  margin-left: -16rem;
}
.mr--16 {
  margin-right: -16rem;
}
.mt--16 {
  margin-top: -16rem;
}
.mb--16 {
  margin-bottom: -16rem;
}
.mx--16 {
  margin-left: -16rem;
  margin-right: -16rem;
}
.my--16 {
  margin-top: -16rem;
  margin-bottom: -16rem;
}
.ml--15 {
  margin-left: -15rem;
}
.mr--15 {
  margin-right: -15rem;
}
.mt--15 {
  margin-top: -15rem;
}
.mb--15 {
  margin-bottom: -15rem;
}
.mx--15 {
  margin-left: -15rem;
  margin-right: -15rem;
}
.my--15 {
  margin-top: -15rem;
  margin-bottom: -15rem;
}
.ml--14 {
  margin-left: -14rem;
}
.mr--14 {
  margin-right: -14rem;
}
.mt--14 {
  margin-top: -14rem;
}
.mb--14 {
  margin-bottom: -14rem;
}
.mx--14 {
  margin-left: -14rem;
  margin-right: -14rem;
}
.my--14 {
  margin-top: -14rem;
  margin-bottom: -14rem;
}
.ml--13 {
  margin-left: -13rem;
}
.mr--13 {
  margin-right: -13rem;
}
.mt--13 {
  margin-top: -13rem;
}
.mb--13 {
  margin-bottom: -13rem;
}
.mx--13 {
  margin-left: -13rem;
  margin-right: -13rem;
}
.my--13 {
  margin-top: -13rem;
  margin-bottom: -13rem;
}
.ml--12 {
  margin-left: -12rem;
}
.mr--12 {
  margin-right: -12rem;
}
.mt--12 {
  margin-top: -12rem;
}
.mb--12 {
  margin-bottom: -12rem;
}
.mx--12 {
  margin-left: -12rem;
  margin-right: -12rem;
}
.my--12 {
  margin-top: -12rem;
  margin-bottom: -12rem;
}
.ml--11 {
  margin-left: -11rem;
}
.mr--11 {
  margin-right: -11rem;
}
.mt--11 {
  margin-top: -11rem;
}
.mb--11 {
  margin-bottom: -11rem;
}
.mx--11 {
  margin-left: -11rem;
  margin-right: -11rem;
}
.my--11 {
  margin-top: -11rem;
  margin-bottom: -11rem;
}
.ml--10 {
  margin-left: -10rem;
}
.mr--10 {
  margin-right: -10rem;
}
.mt--10 {
  margin-top: -10rem;
}
.mb--10 {
  margin-bottom: -10rem;
}
.mx--10 {
  margin-left: -10rem;
  margin-right: -10rem;
}
.my--10 {
  margin-top: -10rem;
  margin-bottom: -10rem;
}
.ml--9 {
  margin-left: -9rem;
}
.mr--9 {
  margin-right: -9rem;
}
.mt--9 {
  margin-top: -9rem;
}
.mb--9 {
  margin-bottom: -9rem;
}
.mx--9 {
  margin-left: -9rem;
  margin-right: -9rem;
}
.my--9 {
  margin-top: -9rem;
  margin-bottom: -9rem;
}
.ml--8 {
  margin-left: -8rem;
}
.mr--8 {
  margin-right: -8rem;
}
.mt--8 {
  margin-top: -8rem;
}
.mb--8 {
  margin-bottom: -8rem;
}
.mx--8 {
  margin-left: -8rem;
  margin-right: -8rem;
}
.my--8 {
  margin-top: -8rem;
  margin-bottom: -8rem;
}
.ml--7 {
  margin-left: -7rem;
}
.mr--7 {
  margin-right: -7rem;
}
.mt--7 {
  margin-top: -7rem;
}
.mb--7 {
  margin-bottom: -7rem;
}
.mx--7 {
  margin-left: -7rem;
  margin-right: -7rem;
}
.my--7 {
  margin-top: -7rem;
  margin-bottom: -7rem;
}
.ml--6 {
  margin-left: -6rem;
}
.mr--6 {
  margin-right: -6rem;
}
.mt--6 {
  margin-top: -6rem;
}
.mb--6 {
  margin-bottom: -6rem;
}
.mx--6 {
  margin-left: -6rem;
  margin-right: -6rem;
}
.my--6 {
  margin-top: -6rem;
  margin-bottom: -6rem;
}
.ml--5 {
  margin-left: -5rem;
}
.mr--5 {
  margin-right: -5rem;
}
.mt--5 {
  margin-top: -5rem;
}
.mb--5 {
  margin-bottom: -5rem;
}
.mx--5 {
  margin-left: -5rem;
  margin-right: -5rem;
}
.my--5 {
  margin-top: -5rem;
  margin-bottom: -5rem;
}
.ml--4 {
  margin-left: -4rem;
}
.mr--4 {
  margin-right: -4rem;
}
.mt--4 {
  margin-top: -4rem;
}
.mb--4 {
  margin-bottom: -4rem;
}
.mx--4 {
  margin-left: -4rem;
  margin-right: -4rem;
}
.my--4 {
  margin-top: -4rem;
  margin-bottom: -4rem;
}
.ml--3 {
  margin-left: -3rem;
}
.mr--3 {
  margin-right: -3rem;
}
.mt--3 {
  margin-top: -3rem;
}
.mb--3 {
  margin-bottom: -3rem;
}
.mx--3 {
  margin-left: -3rem;
  margin-right: -3rem;
}
.my--3 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}
.ml--2 {
  margin-left: -2rem;
}
.mr--2 {
  margin-right: -2rem;
}
.mt--2 {
  margin-top: -2rem;
}
.mb--2 {
  margin-bottom: -2rem;
}
.mx--2 {
  margin-left: -2rem;
  margin-right: -2rem;
}
.my--2 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.ml--1 {
  margin-left: -1rem;
}
.mr--1 {
  margin-right: -1rem;
}
.mt--1 {
  margin-top: -1rem;
}
.mb--1 {
  margin-bottom: -1rem;
}
.mx--1 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.my--1 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.ml-0 {
  margin-left: 0rem;
}
.mr-0 {
  margin-right: 0rem;
}
.mt-0 {
  margin-top: 0rem;
}
.mb-0 {
  margin-bottom: 0rem;
}
.mx-0 {
  margin-left: 0rem;
  margin-right: 0rem;
}
.my-0 {
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.ml-1 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 1rem;
}
.mt-1 {
  margin-top: 1rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mx-1 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.ml-2 {
  margin-left: 2rem;
}
.mr-2 {
  margin-right: 2rem;
}
.mt-2 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mx-2 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.ml-3 {
  margin-left: 3rem;
}
.mr-3 {
  margin-right: 3rem;
}
.mt-3 {
  margin-top: 3rem;
}
.mb-3 {
  margin-bottom: 3rem;
}
.mx-3 {
  margin-left: 3rem;
  margin-right: 3rem;
}
.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.ml-4 {
  margin-left: 4rem;
}
.mr-4 {
  margin-right: 4rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mb-4 {
  margin-bottom: 4rem;
}
.mx-4 {
  margin-left: 4rem;
  margin-right: 4rem;
}
.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.ml-5 {
  margin-left: 5rem;
}
.mr-5 {
  margin-right: 5rem;
}
.mt-5 {
  margin-top: 5rem;
}
.mb-5 {
  margin-bottom: 5rem;
}
.mx-5 {
  margin-left: 5rem;
  margin-right: 5rem;
}
.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.ml-6 {
  margin-left: 6rem;
}
.mr-6 {
  margin-right: 6rem;
}
.mt-6 {
  margin-top: 6rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
.mx-6 {
  margin-left: 6rem;
  margin-right: 6rem;
}
.my-6 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.ml-7 {
  margin-left: 7rem;
}
.mr-7 {
  margin-right: 7rem;
}
.mt-7 {
  margin-top: 7rem;
}
.mb-7 {
  margin-bottom: 7rem;
}
.mx-7 {
  margin-left: 7rem;
  margin-right: 7rem;
}
.my-7 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.ml-8 {
  margin-left: 8rem;
}
.mr-8 {
  margin-right: 8rem;
}
.mt-8 {
  margin-top: 8rem;
}
.mb-8 {
  margin-bottom: 8rem;
}
.mx-8 {
  margin-left: 8rem;
  margin-right: 8rem;
}
.my-8 {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.ml-9 {
  margin-left: 9rem;
}
.mr-9 {
  margin-right: 9rem;
}
.mt-9 {
  margin-top: 9rem;
}
.mb-9 {
  margin-bottom: 9rem;
}
.mx-9 {
  margin-left: 9rem;
  margin-right: 9rem;
}
.my-9 {
  margin-top: 9rem;
  margin-bottom: 9rem;
}
.ml-10 {
  margin-left: 10rem;
}
.mr-10 {
  margin-right: 10rem;
}
.mt-10 {
  margin-top: 10rem;
}
.mb-10 {
  margin-bottom: 10rem;
}
.mx-10 {
  margin-left: 10rem;
  margin-right: 10rem;
}
.my-10 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.ml-11 {
  margin-left: 11rem;
}
.mr-11 {
  margin-right: 11rem;
}
.mt-11 {
  margin-top: 11rem;
}
.mb-11 {
  margin-bottom: 11rem;
}
.mx-11 {
  margin-left: 11rem;
  margin-right: 11rem;
}
.my-11 {
  margin-top: 11rem;
  margin-bottom: 11rem;
}
.ml-12 {
  margin-left: 12rem;
}
.mr-12 {
  margin-right: 12rem;
}
.mt-12 {
  margin-top: 12rem;
}
.mb-12 {
  margin-bottom: 12rem;
}
.mx-12 {
  margin-left: 12rem;
  margin-right: 12rem;
}
.my-12 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.ml-13 {
  margin-left: 13rem;
}
.mr-13 {
  margin-right: 13rem;
}
.mt-13 {
  margin-top: 13rem;
}
.mb-13 {
  margin-bottom: 13rem;
}
.mx-13 {
  margin-left: 13rem;
  margin-right: 13rem;
}
.my-13 {
  margin-top: 13rem;
  margin-bottom: 13rem;
}
.ml-14 {
  margin-left: 14rem;
}
.mr-14 {
  margin-right: 14rem;
}
.mt-14 {
  margin-top: 14rem;
}
.mb-14 {
  margin-bottom: 14rem;
}
.mx-14 {
  margin-left: 14rem;
  margin-right: 14rem;
}
.my-14 {
  margin-top: 14rem;
  margin-bottom: 14rem;
}
.ml-15 {
  margin-left: 15rem;
}
.mr-15 {
  margin-right: 15rem;
}
.mt-15 {
  margin-top: 15rem;
}
.mb-15 {
  margin-bottom: 15rem;
}
.mx-15 {
  margin-left: 15rem;
  margin-right: 15rem;
}
.my-15 {
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.ml-16 {
  margin-left: 16rem;
}
.mr-16 {
  margin-right: 16rem;
}
.mt-16 {
  margin-top: 16rem;
}
.mb-16 {
  margin-bottom: 16rem;
}
.mx-16 {
  margin-left: 16rem;
  margin-right: 16rem;
}
.my-16 {
  margin-top: 16rem;
  margin-bottom: 16rem;
}
.ml-17 {
  margin-left: 17rem;
}
.mr-17 {
  margin-right: 17rem;
}
.mt-17 {
  margin-top: 17rem;
}
.mb-17 {
  margin-bottom: 17rem;
}
.mx-17 {
  margin-left: 17rem;
  margin-right: 17rem;
}
.my-17 {
  margin-top: 17rem;
  margin-bottom: 17rem;
}
.ml-18 {
  margin-left: 18rem;
}
.mr-18 {
  margin-right: 18rem;
}
.mt-18 {
  margin-top: 18rem;
}
.mb-18 {
  margin-bottom: 18rem;
}
.mx-18 {
  margin-left: 18rem;
  margin-right: 18rem;
}
.my-18 {
  margin-top: 18rem;
  margin-bottom: 18rem;
}
.ml-19 {
  margin-left: 19rem;
}
.mr-19 {
  margin-right: 19rem;
}
.mt-19 {
  margin-top: 19rem;
}
.mb-19 {
  margin-bottom: 19rem;
}
.mx-19 {
  margin-left: 19rem;
  margin-right: 19rem;
}
.my-19 {
  margin-top: 19rem;
  margin-bottom: 19rem;
}
.ml-20 {
  margin-left: 20rem;
}
.mr-20 {
  margin-right: 20rem;
}
.mt-20 {
  margin-top: 20rem;
}
.mb-20 {
  margin-bottom: 20rem;
}
.mx-20 {
  margin-left: 20rem;
  margin-right: 20rem;
}
.my-20 {
  margin-top: 20rem;
  margin-bottom: 20rem;
}
.ml-21 {
  margin-left: 21rem;
}
.mr-21 {
  margin-right: 21rem;
}
.mt-21 {
  margin-top: 21rem;
}
.mb-21 {
  margin-bottom: 21rem;
}
.mx-21 {
  margin-left: 21rem;
  margin-right: 21rem;
}
.my-21 {
  margin-top: 21rem;
  margin-bottom: 21rem;
}
.ml-22 {
  margin-left: 22rem;
}
.mr-22 {
  margin-right: 22rem;
}
.mt-22 {
  margin-top: 22rem;
}
.mb-22 {
  margin-bottom: 22rem;
}
.mx-22 {
  margin-left: 22rem;
  margin-right: 22rem;
}
.my-22 {
  margin-top: 22rem;
  margin-bottom: 22rem;
}
.ml-23 {
  margin-left: 23rem;
}
.mr-23 {
  margin-right: 23rem;
}
.mt-23 {
  margin-top: 23rem;
}
.mb-23 {
  margin-bottom: 23rem;
}
.mx-23 {
  margin-left: 23rem;
  margin-right: 23rem;
}
.my-23 {
  margin-top: 23rem;
  margin-bottom: 23rem;
}
.ml-24 {
  margin-left: 24rem;
}
.mr-24 {
  margin-right: 24rem;
}
.mt-24 {
  margin-top: 24rem;
}
.mb-24 {
  margin-bottom: 24rem;
}
.mx-24 {
  margin-left: 24rem;
  margin-right: 24rem;
}
.my-24 {
  margin-top: 24rem;
  margin-bottom: 24rem;
}
.ml-25 {
  margin-left: 25rem;
}
.mr-25 {
  margin-right: 25rem;
}
.mt-25 {
  margin-top: 25rem;
}
.mb-25 {
  margin-bottom: 25rem;
}
.mx-25 {
  margin-left: 25rem;
  margin-right: 25rem;
}
.my-25 {
  margin-top: 25rem;
  margin-bottom: 25rem;
}
.ml-26 {
  margin-left: 26rem;
}
.mr-26 {
  margin-right: 26rem;
}
.mt-26 {
  margin-top: 26rem;
}
.mb-26 {
  margin-bottom: 26rem;
}
.mx-26 {
  margin-left: 26rem;
  margin-right: 26rem;
}
.my-26 {
  margin-top: 26rem;
  margin-bottom: 26rem;
}
.ml-27 {
  margin-left: 27rem;
}
.mr-27 {
  margin-right: 27rem;
}
.mt-27 {
  margin-top: 27rem;
}
.mb-27 {
  margin-bottom: 27rem;
}
.mx-27 {
  margin-left: 27rem;
  margin-right: 27rem;
}
.my-27 {
  margin-top: 27rem;
  margin-bottom: 27rem;
}
.ml-28 {
  margin-left: 28rem;
}
.mr-28 {
  margin-right: 28rem;
}
.mt-28 {
  margin-top: 28rem;
}
.mb-28 {
  margin-bottom: 28rem;
}
.mx-28 {
  margin-left: 28rem;
  margin-right: 28rem;
}
.my-28 {
  margin-top: 28rem;
  margin-bottom: 28rem;
}
.ml-29 {
  margin-left: 29rem;
}
.mr-29 {
  margin-right: 29rem;
}
.mt-29 {
  margin-top: 29rem;
}
.mb-29 {
  margin-bottom: 29rem;
}
.mx-29 {
  margin-left: 29rem;
  margin-right: 29rem;
}
.my-29 {
  margin-top: 29rem;
  margin-bottom: 29rem;
}
.ml-30 {
  margin-left: 30rem;
}
.mr-30 {
  margin-right: 30rem;
}
.mt-30 {
  margin-top: 30rem;
}
.mb-30 {
  margin-bottom: 30rem;
}
.mx-30 {
  margin-left: 30rem;
  margin-right: 30rem;
}
.my-30 {
  margin-top: 30rem;
  margin-bottom: 30rem;
}
.ml-31 {
  margin-left: 31rem;
}
.mr-31 {
  margin-right: 31rem;
}
.mt-31 {
  margin-top: 31rem;
}
.mb-31 {
  margin-bottom: 31rem;
}
.mx-31 {
  margin-left: 31rem;
  margin-right: 31rem;
}
.my-31 {
  margin-top: 31rem;
  margin-bottom: 31rem;
}
.ml-32 {
  margin-left: 32rem;
}
.mr-32 {
  margin-right: 32rem;
}
.mt-32 {
  margin-top: 32rem;
}
.mb-32 {
  margin-bottom: 32rem;
}
.mx-32 {
  margin-left: 32rem;
  margin-right: 32rem;
}
.my-32 {
  margin-top: 32rem;
  margin-bottom: 32rem;
}
.ml-33 {
  margin-left: 33rem;
}
.mr-33 {
  margin-right: 33rem;
}
.mt-33 {
  margin-top: 33rem;
}
.mb-33 {
  margin-bottom: 33rem;
}
.mx-33 {
  margin-left: 33rem;
  margin-right: 33rem;
}
.my-33 {
  margin-top: 33rem;
  margin-bottom: 33rem;
}
.ml-34 {
  margin-left: 34rem;
}
.mr-34 {
  margin-right: 34rem;
}
.mt-34 {
  margin-top: 34rem;
}
.mb-34 {
  margin-bottom: 34rem;
}
.mx-34 {
  margin-left: 34rem;
  margin-right: 34rem;
}
.my-34 {
  margin-top: 34rem;
  margin-bottom: 34rem;
}
.ml-35 {
  margin-left: 35rem;
}
.mr-35 {
  margin-right: 35rem;
}
.mt-35 {
  margin-top: 35rem;
}
.mb-35 {
  margin-bottom: 35rem;
}
.mx-35 {
  margin-left: 35rem;
  margin-right: 35rem;
}
.my-35 {
  margin-top: 35rem;
  margin-bottom: 35rem;
}
.ml-36 {
  margin-left: 36rem;
}
.mr-36 {
  margin-right: 36rem;
}
.mt-36 {
  margin-top: 36rem;
}
.mb-36 {
  margin-bottom: 36rem;
}
.mx-36 {
  margin-left: 36rem;
  margin-right: 36rem;
}
.my-36 {
  margin-top: 36rem;
  margin-bottom: 36rem;
}
.ml-37 {
  margin-left: 37rem;
}
.mr-37 {
  margin-right: 37rem;
}
.mt-37 {
  margin-top: 37rem;
}
.mb-37 {
  margin-bottom: 37rem;
}
.mx-37 {
  margin-left: 37rem;
  margin-right: 37rem;
}
.my-37 {
  margin-top: 37rem;
  margin-bottom: 37rem;
}
.ml-38 {
  margin-left: 38rem;
}
.mr-38 {
  margin-right: 38rem;
}
.mt-38 {
  margin-top: 38rem;
}
.mb-38 {
  margin-bottom: 38rem;
}
.mx-38 {
  margin-left: 38rem;
  margin-right: 38rem;
}
.my-38 {
  margin-top: 38rem;
  margin-bottom: 38rem;
}
.ml-39 {
  margin-left: 39rem;
}
.mr-39 {
  margin-right: 39rem;
}
.mt-39 {
  margin-top: 39rem;
}
.mb-39 {
  margin-bottom: 39rem;
}
.mx-39 {
  margin-left: 39rem;
  margin-right: 39rem;
}
.my-39 {
  margin-top: 39rem;
  margin-bottom: 39rem;
}
.ml-40 {
  margin-left: 40rem;
}
.mr-40 {
  margin-right: 40rem;
}
.mt-40 {
  margin-top: 40rem;
}
.mb-40 {
  margin-bottom: 40rem;
}
.mx-40 {
  margin-left: 40rem;
  margin-right: 40rem;
}
.my-40 {
  margin-top: 40rem;
  margin-bottom: 40rem;
}
.pl-0 {
  padding-left: 0rem;
}
.pr-0 {
  padding-right: 0rem;
}
.pt-0 {
  padding-top: 0rem;
}
.pb-0 {
  padding-bottom: 0rem;
}
.px-0 {
  padding-left: 0rem;
  padding-right: 0rem;
}
.py-0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
.pl-1 {
  padding-left: 1rem;
}
.pr-1 {
  padding-right: 1rem;
}
.pt-1 {
  padding-top: 1rem;
}
.pb-1 {
  padding-bottom: 1rem;
}
.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pl-2 {
  padding-left: 2rem;
}
.pr-2 {
  padding-right: 2rem;
}
.pt-2 {
  padding-top: 2rem;
}
.pb-2 {
  padding-bottom: 2rem;
}
.px-2 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pl-3 {
  padding-left: 3rem;
}
.pr-3 {
  padding-right: 3rem;
}
.pt-3 {
  padding-top: 3rem;
}
.pb-3 {
  padding-bottom: 3rem;
}
.px-3 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.pl-4 {
  padding-left: 4rem;
}
.pr-4 {
  padding-right: 4rem;
}
.pt-4 {
  padding-top: 4rem;
}
.pb-4 {
  padding-bottom: 4rem;
}
.px-4 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.py-4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.pl-5 {
  padding-left: 5rem;
}
.pr-5 {
  padding-right: 5rem;
}
.pt-5 {
  padding-top: 5rem;
}
.pb-5 {
  padding-bottom: 5rem;
}
.px-5 {
  padding-left: 5rem;
  padding-right: 5rem;
}
.py-5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pl-6 {
  padding-left: 6rem;
}
.pr-6 {
  padding-right: 6rem;
}
.pt-6 {
  padding-top: 6rem;
}
.pb-6 {
  padding-bottom: 6rem;
}
.px-6 {
  padding-left: 6rem;
  padding-right: 6rem;
}
.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.pl-7 {
  padding-left: 7rem;
}
.pr-7 {
  padding-right: 7rem;
}
.pt-7 {
  padding-top: 7rem;
}
.pb-7 {
  padding-bottom: 7rem;
}
.px-7 {
  padding-left: 7rem;
  padding-right: 7rem;
}
.py-7 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.pl-8 {
  padding-left: 8rem;
}
.pr-8 {
  padding-right: 8rem;
}
.pt-8 {
  padding-top: 8rem;
}
.pb-8 {
  padding-bottom: 8rem;
}
.px-8 {
  padding-left: 8rem;
  padding-right: 8rem;
}
.py-8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.pl-9 {
  padding-left: 9rem;
}
.pr-9 {
  padding-right: 9rem;
}
.pt-9 {
  padding-top: 9rem;
}
.pb-9 {
  padding-bottom: 9rem;
}
.px-9 {
  padding-left: 9rem;
  padding-right: 9rem;
}
.py-9 {
  padding-top: 9rem;
  padding-bottom: 9rem;
}
.pl-10 {
  padding-left: 10rem;
}
.pr-10 {
  padding-right: 10rem;
}
.pt-10 {
  padding-top: 10rem;
}
.pb-10 {
  padding-bottom: 10rem;
}
.px-10 {
  padding-left: 10rem;
  padding-right: 10rem;
}
.py-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.pl-11 {
  padding-left: 11rem;
}
.pr-11 {
  padding-right: 11rem;
}
.pt-11 {
  padding-top: 11rem;
}
.pb-11 {
  padding-bottom: 11rem;
}
.px-11 {
  padding-left: 11rem;
  padding-right: 11rem;
}
.py-11 {
  padding-top: 11rem;
  padding-bottom: 11rem;
}
.pl-12 {
  padding-left: 12rem;
}
.pr-12 {
  padding-right: 12rem;
}
.pt-12 {
  padding-top: 12rem;
}
.pb-12 {
  padding-bottom: 12rem;
}
.px-12 {
  padding-left: 12rem;
  padding-right: 12rem;
}
.py-12 {
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.pl-13 {
  padding-left: 13rem;
}
.pr-13 {
  padding-right: 13rem;
}
.pt-13 {
  padding-top: 13rem;
}
.pb-13 {
  padding-bottom: 13rem;
}
.px-13 {
  padding-left: 13rem;
  padding-right: 13rem;
}
.py-13 {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.pl-14 {
  padding-left: 14rem;
}
.pr-14 {
  padding-right: 14rem;
}
.pt-14 {
  padding-top: 14rem;
}
.pb-14 {
  padding-bottom: 14rem;
}
.px-14 {
  padding-left: 14rem;
  padding-right: 14rem;
}
.py-14 {
  padding-top: 14rem;
  padding-bottom: 14rem;
}
.pl-15 {
  padding-left: 15rem;
}
.pr-15 {
  padding-right: 15rem;
}
.pt-15 {
  padding-top: 15rem;
}
.pb-15 {
  padding-bottom: 15rem;
}
.px-15 {
  padding-left: 15rem;
  padding-right: 15rem;
}
.py-15 {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
.pl-16 {
  padding-left: 16rem;
}
.pr-16 {
  padding-right: 16rem;
}
.pt-16 {
  padding-top: 16rem;
}
.pb-16 {
  padding-bottom: 16rem;
}
.px-16 {
  padding-left: 16rem;
  padding-right: 16rem;
}
.py-16 {
  padding-top: 16rem;
  padding-bottom: 16rem;
}
.pl-17 {
  padding-left: 17rem;
}
.pr-17 {
  padding-right: 17rem;
}
.pt-17 {
  padding-top: 17rem;
}
.pb-17 {
  padding-bottom: 17rem;
}
.px-17 {
  padding-left: 17rem;
  padding-right: 17rem;
}
.py-17 {
  padding-top: 17rem;
  padding-bottom: 17rem;
}
.pl-18 {
  padding-left: 18rem;
}
.pr-18 {
  padding-right: 18rem;
}
.pt-18 {
  padding-top: 18rem;
}
.pb-18 {
  padding-bottom: 18rem;
}
.px-18 {
  padding-left: 18rem;
  padding-right: 18rem;
}
.py-18 {
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.pl-19 {
  padding-left: 19rem;
}
.pr-19 {
  padding-right: 19rem;
}
.pt-19 {
  padding-top: 19rem;
}
.pb-19 {
  padding-bottom: 19rem;
}
.px-19 {
  padding-left: 19rem;
  padding-right: 19rem;
}
.py-19 {
  padding-top: 19rem;
  padding-bottom: 19rem;
}
.pl-20 {
  padding-left: 20rem;
}
.pr-20 {
  padding-right: 20rem;
}
.pt-20 {
  padding-top: 20rem;
}
.pb-20 {
  padding-bottom: 20rem;
}
.px-20 {
  padding-left: 20rem;
  padding-right: 20rem;
}
.py-20 {
  padding-top: 20rem;
  padding-bottom: 20rem;
}
.pl-21 {
  padding-left: 21rem;
}
.pr-21 {
  padding-right: 21rem;
}
.pt-21 {
  padding-top: 21rem;
}
.pb-21 {
  padding-bottom: 21rem;
}
.px-21 {
  padding-left: 21rem;
  padding-right: 21rem;
}
.py-21 {
  padding-top: 21rem;
  padding-bottom: 21rem;
}
.pl-22 {
  padding-left: 22rem;
}
.pr-22 {
  padding-right: 22rem;
}
.pt-22 {
  padding-top: 22rem;
}
.pb-22 {
  padding-bottom: 22rem;
}
.px-22 {
  padding-left: 22rem;
  padding-right: 22rem;
}
.py-22 {
  padding-top: 22rem;
  padding-bottom: 22rem;
}
.pl-23 {
  padding-left: 23rem;
}
.pr-23 {
  padding-right: 23rem;
}
.pt-23 {
  padding-top: 23rem;
}
.pb-23 {
  padding-bottom: 23rem;
}
.px-23 {
  padding-left: 23rem;
  padding-right: 23rem;
}
.py-23 {
  padding-top: 23rem;
  padding-bottom: 23rem;
}
.pl-24 {
  padding-left: 24rem;
}
.pr-24 {
  padding-right: 24rem;
}
.pt-24 {
  padding-top: 24rem;
}
.pb-24 {
  padding-bottom: 24rem;
}
.px-24 {
  padding-left: 24rem;
  padding-right: 24rem;
}
.py-24 {
  padding-top: 24rem;
  padding-bottom: 24rem;
}
.pl-25 {
  padding-left: 25rem;
}
.pr-25 {
  padding-right: 25rem;
}
.pt-25 {
  padding-top: 25rem;
}
.pb-25 {
  padding-bottom: 25rem;
}
.px-25 {
  padding-left: 25rem;
  padding-right: 25rem;
}
.py-25 {
  padding-top: 25rem;
  padding-bottom: 25rem;
}
.pl-26 {
  padding-left: 26rem;
}
.pr-26 {
  padding-right: 26rem;
}
.pt-26 {
  padding-top: 26rem;
}
.pb-26 {
  padding-bottom: 26rem;
}
.px-26 {
  padding-left: 26rem;
  padding-right: 26rem;
}
.py-26 {
  padding-top: 26rem;
  padding-bottom: 26rem;
}
.pl-27 {
  padding-left: 27rem;
}
.pr-27 {
  padding-right: 27rem;
}
.pt-27 {
  padding-top: 27rem;
}
.pb-27 {
  padding-bottom: 27rem;
}
.px-27 {
  padding-left: 27rem;
  padding-right: 27rem;
}
.py-27 {
  padding-top: 27rem;
  padding-bottom: 27rem;
}
.pl-28 {
  padding-left: 28rem;
}
.pr-28 {
  padding-right: 28rem;
}
.pt-28 {
  padding-top: 28rem;
}
.pb-28 {
  padding-bottom: 28rem;
}
.px-28 {
  padding-left: 28rem;
  padding-right: 28rem;
}
.py-28 {
  padding-top: 28rem;
  padding-bottom: 28rem;
}
.pl-29 {
  padding-left: 29rem;
}
.pr-29 {
  padding-right: 29rem;
}
.pt-29 {
  padding-top: 29rem;
}
.pb-29 {
  padding-bottom: 29rem;
}
.px-29 {
  padding-left: 29rem;
  padding-right: 29rem;
}
.py-29 {
  padding-top: 29rem;
  padding-bottom: 29rem;
}
.pl-30 {
  padding-left: 30rem;
}
.pr-30 {
  padding-right: 30rem;
}
.pt-30 {
  padding-top: 30rem;
}
.pb-30 {
  padding-bottom: 30rem;
}
.px-30 {
  padding-left: 30rem;
  padding-right: 30rem;
}
.py-30 {
  padding-top: 30rem;
  padding-bottom: 30rem;
}
.pl-31 {
  padding-left: 31rem;
}
.pr-31 {
  padding-right: 31rem;
}
.pt-31 {
  padding-top: 31rem;
}
.pb-31 {
  padding-bottom: 31rem;
}
.px-31 {
  padding-left: 31rem;
  padding-right: 31rem;
}
.py-31 {
  padding-top: 31rem;
  padding-bottom: 31rem;
}
.pl-32 {
  padding-left: 32rem;
}
.pr-32 {
  padding-right: 32rem;
}
.pt-32 {
  padding-top: 32rem;
}
.pb-32 {
  padding-bottom: 32rem;
}
.px-32 {
  padding-left: 32rem;
  padding-right: 32rem;
}
.py-32 {
  padding-top: 32rem;
  padding-bottom: 32rem;
}
.pl-33 {
  padding-left: 33rem;
}
.pr-33 {
  padding-right: 33rem;
}
.pt-33 {
  padding-top: 33rem;
}
.pb-33 {
  padding-bottom: 33rem;
}
.px-33 {
  padding-left: 33rem;
  padding-right: 33rem;
}
.py-33 {
  padding-top: 33rem;
  padding-bottom: 33rem;
}
.pl-34 {
  padding-left: 34rem;
}
.pr-34 {
  padding-right: 34rem;
}
.pt-34 {
  padding-top: 34rem;
}
.pb-34 {
  padding-bottom: 34rem;
}
.px-34 {
  padding-left: 34rem;
  padding-right: 34rem;
}
.py-34 {
  padding-top: 34rem;
  padding-bottom: 34rem;
}
.pl-35 {
  padding-left: 35rem;
}
.pr-35 {
  padding-right: 35rem;
}
.pt-35 {
  padding-top: 35rem;
}
.pb-35 {
  padding-bottom: 35rem;
}
.px-35 {
  padding-left: 35rem;
  padding-right: 35rem;
}
.py-35 {
  padding-top: 35rem;
  padding-bottom: 35rem;
}
.pl-36 {
  padding-left: 36rem;
}
.pr-36 {
  padding-right: 36rem;
}
.pt-36 {
  padding-top: 36rem;
}
.pb-36 {
  padding-bottom: 36rem;
}
.px-36 {
  padding-left: 36rem;
  padding-right: 36rem;
}
.py-36 {
  padding-top: 36rem;
  padding-bottom: 36rem;
}
.pl-37 {
  padding-left: 37rem;
}
.pr-37 {
  padding-right: 37rem;
}
.pt-37 {
  padding-top: 37rem;
}
.pb-37 {
  padding-bottom: 37rem;
}
.px-37 {
  padding-left: 37rem;
  padding-right: 37rem;
}
.py-37 {
  padding-top: 37rem;
  padding-bottom: 37rem;
}
.pl-38 {
  padding-left: 38rem;
}
.pr-38 {
  padding-right: 38rem;
}
.pt-38 {
  padding-top: 38rem;
}
.pb-38 {
  padding-bottom: 38rem;
}
.px-38 {
  padding-left: 38rem;
  padding-right: 38rem;
}
.py-38 {
  padding-top: 38rem;
  padding-bottom: 38rem;
}
.pl-39 {
  padding-left: 39rem;
}
.pr-39 {
  padding-right: 39rem;
}
.pt-39 {
  padding-top: 39rem;
}
.pb-39 {
  padding-bottom: 39rem;
}
.px-39 {
  padding-left: 39rem;
  padding-right: 39rem;
}
.py-39 {
  padding-top: 39rem;
  padding-bottom: 39rem;
}
.pl-40 {
  padding-left: 40rem;
}
.pr-40 {
  padding-right: 40rem;
}
.pt-40 {
  padding-top: 40rem;
}
.pb-40 {
  padding-bottom: 40rem;
}
.px-40 {
  padding-left: 40rem;
  padding-right: 40rem;
}
.py-40 {
  padding-top: 40rem;
  padding-bottom: 40rem;
}
.w-auto {
  width: auto;
}
.h-auto {
  height: auto;
}
.m-auto {
  margin: auto;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.w-0p {
  width: 0%;
}
.h-0p {
  height: 0%;
}
.w-1p {
  width: 1%;
}
.h-1p {
  height: 1%;
}
.w-2p {
  width: 2%;
}
.h-2p {
  height: 2%;
}
.w-3p {
  width: 3%;
}
.h-3p {
  height: 3%;
}
.w-4p {
  width: 4%;
}
.h-4p {
  height: 4%;
}
.w-5p {
  width: 5%;
}
.h-5p {
  height: 5%;
}
.w-6p {
  width: 6%;
}
.h-6p {
  height: 6%;
}
.w-7p {
  width: 7%;
}
.h-7p {
  height: 7%;
}
.w-8p {
  width: 8%;
}
.h-8p {
  height: 8%;
}
.w-9p {
  width: 9%;
}
.h-9p {
  height: 9%;
}
.w-10p {
  width: 10%;
}
.h-10p {
  height: 10%;
}
.w-11p {
  width: 11%;
}
.h-11p {
  height: 11%;
}
.w-12p {
  width: 12%;
}
.h-12p {
  height: 12%;
}
.w-13p {
  width: 13%;
}
.h-13p {
  height: 13%;
}
.w-14p {
  width: 14%;
}
.h-14p {
  height: 14%;
}
.w-15p {
  width: 15%;
}
.h-15p {
  height: 15%;
}
.w-16p {
  width: 16%;
}
.h-16p {
  height: 16%;
}
.w-17p {
  width: 17%;
}
.h-17p {
  height: 17%;
}
.w-18p {
  width: 18%;
}
.h-18p {
  height: 18%;
}
.w-19p {
  width: 19%;
}
.h-19p {
  height: 19%;
}
.w-20p {
  width: 20%;
}
.h-20p {
  height: 20%;
}
.w-21p {
  width: 21%;
}
.h-21p {
  height: 21%;
}
.w-22p {
  width: 22%;
}
.h-22p {
  height: 22%;
}
.w-23p {
  width: 23%;
}
.h-23p {
  height: 23%;
}
.w-24p {
  width: 24%;
}
.h-24p {
  height: 24%;
}
.w-25p {
  width: 25%;
}
.h-25p {
  height: 25%;
}
.w-26p {
  width: 26%;
}
.h-26p {
  height: 26%;
}
.w-27p {
  width: 27%;
}
.h-27p {
  height: 27%;
}
.w-28p {
  width: 28%;
}
.h-28p {
  height: 28%;
}
.w-29p {
  width: 29%;
}
.h-29p {
  height: 29%;
}
.w-30p {
  width: 30%;
}
.h-30p {
  height: 30%;
}
.w-31p {
  width: 31%;
}
.h-31p {
  height: 31%;
}
.w-32p {
  width: 32%;
}
.h-32p {
  height: 32%;
}
.w-33p {
  width: 33%;
}
.h-33p {
  height: 33%;
}
.w-34p {
  width: 34%;
}
.h-34p {
  height: 34%;
}
.w-35p {
  width: 35%;
}
.h-35p {
  height: 35%;
}
.w-36p {
  width: 36%;
}
.h-36p {
  height: 36%;
}
.w-37p {
  width: 37%;
}
.h-37p {
  height: 37%;
}
.w-38p {
  width: 38%;
}
.h-38p {
  height: 38%;
}
.w-39p {
  width: 39%;
}
.h-39p {
  height: 39%;
}
.w-40p {
  width: 40%;
}
.h-40p {
  height: 40%;
}
.w-41p {
  width: 41%;
}
.h-41p {
  height: 41%;
}
.w-42p {
  width: 42%;
}
.h-42p {
  height: 42%;
}
.w-43p {
  width: 43%;
}
.h-43p {
  height: 43%;
}
.w-44p {
  width: 44%;
}
.h-44p {
  height: 44%;
}
.w-45p {
  width: 45%;
}
.h-45p {
  height: 45%;
}
.w-46p {
  width: 46%;
}
.h-46p {
  height: 46%;
}
.w-47p {
  width: 47%;
}
.h-47p {
  height: 47%;
}
.w-48p {
  width: 48%;
}
.h-48p {
  height: 48%;
}
.w-49p {
  width: 49%;
}
.h-49p {
  height: 49%;
}
.w-50p {
  width: 50%;
}
.h-50p {
  height: 50%;
}
.w-51p {
  width: 51%;
}
.h-51p {
  height: 51%;
}
.w-52p {
  width: 52%;
}
.h-52p {
  height: 52%;
}
.w-53p {
  width: 53%;
}
.h-53p {
  height: 53%;
}
.w-54p {
  width: 54%;
}
.h-54p {
  height: 54%;
}
.w-55p {
  width: 55%;
}
.h-55p {
  height: 55%;
}
.w-56p {
  width: 56%;
}
.h-56p {
  height: 56%;
}
.w-57p {
  width: 57%;
}
.h-57p {
  height: 57%;
}
.w-58p {
  width: 58%;
}
.h-58p {
  height: 58%;
}
.w-59p {
  width: 59%;
}
.h-59p {
  height: 59%;
}
.w-60p {
  width: 60%;
}
.h-60p {
  height: 60%;
}
.w-61p {
  width: 61%;
}
.h-61p {
  height: 61%;
}
.w-62p {
  width: 62%;
}
.h-62p {
  height: 62%;
}
.w-63p {
  width: 63%;
}
.h-63p {
  height: 63%;
}
.w-64p {
  width: 64%;
}
.h-64p {
  height: 64%;
}
.w-65p {
  width: 65%;
}
.h-65p {
  height: 65%;
}
.w-66p {
  width: 66%;
}
.h-66p {
  height: 66%;
}
.w-67p {
  width: 67%;
}
.h-67p {
  height: 67%;
}
.w-68p {
  width: 68%;
}
.h-68p {
  height: 68%;
}
.w-69p {
  width: 69%;
}
.h-69p {
  height: 69%;
}
.w-70p {
  width: 70%;
}
.h-70p {
  height: 70%;
}
.w-71p {
  width: 71%;
}
.h-71p {
  height: 71%;
}
.w-72p {
  width: 72%;
}
.h-72p {
  height: 72%;
}
.w-73p {
  width: 73%;
}
.h-73p {
  height: 73%;
}
.w-74p {
  width: 74%;
}
.h-74p {
  height: 74%;
}
.w-75p {
  width: 75%;
}
.h-75p {
  height: 75%;
}
.w-76p {
  width: 76%;
}
.h-76p {
  height: 76%;
}
.w-77p {
  width: 77%;
}
.h-77p {
  height: 77%;
}
.w-78p {
  width: 78%;
}
.h-78p {
  height: 78%;
}
.w-79p {
  width: 79%;
}
.h-79p {
  height: 79%;
}
.w-80p {
  width: 80%;
}
.h-80p {
  height: 80%;
}
.w-81p {
  width: 81%;
}
.h-81p {
  height: 81%;
}
.w-82p {
  width: 82%;
}
.h-82p {
  height: 82%;
}
.w-83p {
  width: 83%;
}
.h-83p {
  height: 83%;
}
.w-84p {
  width: 84%;
}
.h-84p {
  height: 84%;
}
.w-85p {
  width: 85%;
}
.h-85p {
  height: 85%;
}
.w-86p {
  width: 86%;
}
.h-86p {
  height: 86%;
}
.w-87p {
  width: 87%;
}
.h-87p {
  height: 87%;
}
.w-88p {
  width: 88%;
}
.h-88p {
  height: 88%;
}
.w-89p {
  width: 89%;
}
.h-89p {
  height: 89%;
}
.w-90p {
  width: 90%;
}
.h-90p {
  height: 90%;
}
.w-91p {
  width: 91%;
}
.h-91p {
  height: 91%;
}
.w-92p {
  width: 92%;
}
.h-92p {
  height: 92%;
}
.w-93p {
  width: 93%;
}
.h-93p {
  height: 93%;
}
.w-94p {
  width: 94%;
}
.h-94p {
  height: 94%;
}
.w-95p {
  width: 95%;
}
.h-95p {
  height: 95%;
}
.w-96p {
  width: 96%;
}
.h-96p {
  height: 96%;
}
.w-97p {
  width: 97%;
}
.h-97p {
  height: 97%;
}
.w-98p {
  width: 98%;
}
.h-98p {
  height: 98%;
}
.w-99p {
  width: 99%;
}
.h-99p {
  height: 99%;
}
.w-100p {
  width: 100%;
}
.h-100p {
  height: 100%;
}
.w-0\/2 {
  width: 0%;
}
.h-0\/2 {
  height: 0%;
}
.ml-0\/2 {
  margin-left: 0%;
}
.mr-0\/2 {
  margin-right: 0%;
}
.mt-0\/2 {
  margin-top: 0%;
}
.mb-0\/2 {
  margin-bottom: 0%;
}
.l-0\/2 {
  left: 0%;
}
.t-0\/2 {
  top: 0%;
}
.w-1\/2 {
  width: 50%;
}
.h-1\/2 {
  height: 50%;
}
.ml-1\/2 {
  margin-left: 50%;
}
.mr-1\/2 {
  margin-right: 50%;
}
.mt-1\/2 {
  margin-top: 50%;
}
.mb-1\/2 {
  margin-bottom: 50%;
}
.l-1\/2 {
  left: 50%;
}
.t-1\/2 {
  top: 50%;
}
.w-2\/2 {
  width: 100%;
}
.h-2\/2 {
  height: 100%;
}
.ml-2\/2 {
  margin-left: 100%;
}
.mr-2\/2 {
  margin-right: 100%;
}
.mt-2\/2 {
  margin-top: 100%;
}
.mb-2\/2 {
  margin-bottom: 100%;
}
.l-2\/2 {
  left: 100%;
}
.t-2\/2 {
  top: 100%;
}
.w-0\/3 {
  width: 0%;
}
.h-0\/3 {
  height: 0%;
}
.ml-0\/3 {
  margin-left: 0%;
}
.mr-0\/3 {
  margin-right: 0%;
}
.mt-0\/3 {
  margin-top: 0%;
}
.mb-0\/3 {
  margin-bottom: 0%;
}
.l-0\/3 {
  left: 0%;
}
.t-0\/3 {
  top: 0%;
}
.w-1\/3 {
  width: 33.3333333333%;
}
.h-1\/3 {
  height: 33.3333333333%;
}
.ml-1\/3 {
  margin-left: 33.3333333333%;
}
.mr-1\/3 {
  margin-right: 33.3333333333%;
}
.mt-1\/3 {
  margin-top: 33.3333333333%;
}
.mb-1\/3 {
  margin-bottom: 33.3333333333%;
}
.l-1\/3 {
  left: 33.3333333333%;
}
.t-1\/3 {
  top: 33.3333333333%;
}
.w-2\/3 {
  width: 66.6666666667%;
}
.h-2\/3 {
  height: 66.6666666667%;
}
.ml-2\/3 {
  margin-left: 66.6666666667%;
}
.mr-2\/3 {
  margin-right: 66.6666666667%;
}
.mt-2\/3 {
  margin-top: 66.6666666667%;
}
.mb-2\/3 {
  margin-bottom: 66.6666666667%;
}
.l-2\/3 {
  left: 66.6666666667%;
}
.t-2\/3 {
  top: 66.6666666667%;
}
.w-3\/3 {
  width: 100%;
}
.h-3\/3 {
  height: 100%;
}
.ml-3\/3 {
  margin-left: 100%;
}
.mr-3\/3 {
  margin-right: 100%;
}
.mt-3\/3 {
  margin-top: 100%;
}
.mb-3\/3 {
  margin-bottom: 100%;
}
.l-3\/3 {
  left: 100%;
}
.t-3\/3 {
  top: 100%;
}
.w-0\/4 {
  width: 0%;
}
.h-0\/4 {
  height: 0%;
}
.ml-0\/4 {
  margin-left: 0%;
}
.mr-0\/4 {
  margin-right: 0%;
}
.mt-0\/4 {
  margin-top: 0%;
}
.mb-0\/4 {
  margin-bottom: 0%;
}
.l-0\/4 {
  left: 0%;
}
.t-0\/4 {
  top: 0%;
}
.w-1\/4 {
  width: 25%;
}
.h-1\/4 {
  height: 25%;
}
.ml-1\/4 {
  margin-left: 25%;
}
.mr-1\/4 {
  margin-right: 25%;
}
.mt-1\/4 {
  margin-top: 25%;
}
.mb-1\/4 {
  margin-bottom: 25%;
}
.l-1\/4 {
  left: 25%;
}
.t-1\/4 {
  top: 25%;
}
.w-2\/4 {
  width: 50%;
}
.h-2\/4 {
  height: 50%;
}
.ml-2\/4 {
  margin-left: 50%;
}
.mr-2\/4 {
  margin-right: 50%;
}
.mt-2\/4 {
  margin-top: 50%;
}
.mb-2\/4 {
  margin-bottom: 50%;
}
.l-2\/4 {
  left: 50%;
}
.t-2\/4 {
  top: 50%;
}
.w-3\/4 {
  width: 75%;
}
.h-3\/4 {
  height: 75%;
}
.ml-3\/4 {
  margin-left: 75%;
}
.mr-3\/4 {
  margin-right: 75%;
}
.mt-3\/4 {
  margin-top: 75%;
}
.mb-3\/4 {
  margin-bottom: 75%;
}
.l-3\/4 {
  left: 75%;
}
.t-3\/4 {
  top: 75%;
}
.w-4\/4 {
  width: 100%;
}
.h-4\/4 {
  height: 100%;
}
.ml-4\/4 {
  margin-left: 100%;
}
.mr-4\/4 {
  margin-right: 100%;
}
.mt-4\/4 {
  margin-top: 100%;
}
.mb-4\/4 {
  margin-bottom: 100%;
}
.l-4\/4 {
  left: 100%;
}
.t-4\/4 {
  top: 100%;
}
.l--80 {
  left: -80rem;
}
.r--80 {
  right: -80rem;
}
.l--79 {
  left: -79rem;
}
.r--79 {
  right: -79rem;
}
.l--78 {
  left: -78rem;
}
.r--78 {
  right: -78rem;
}
.l--77 {
  left: -77rem;
}
.r--77 {
  right: -77rem;
}
.l--76 {
  left: -76rem;
}
.r--76 {
  right: -76rem;
}
.l--75 {
  left: -75rem;
}
.r--75 {
  right: -75rem;
}
.l--74 {
  left: -74rem;
}
.r--74 {
  right: -74rem;
}
.l--73 {
  left: -73rem;
}
.r--73 {
  right: -73rem;
}
.l--72 {
  left: -72rem;
}
.r--72 {
  right: -72rem;
}
.l--71 {
  left: -71rem;
}
.r--71 {
  right: -71rem;
}
.l--70 {
  left: -70rem;
}
.r--70 {
  right: -70rem;
}
.l--69 {
  left: -69rem;
}
.r--69 {
  right: -69rem;
}
.l--68 {
  left: -68rem;
}
.r--68 {
  right: -68rem;
}
.l--67 {
  left: -67rem;
}
.r--67 {
  right: -67rem;
}
.l--66 {
  left: -66rem;
}
.r--66 {
  right: -66rem;
}
.l--65 {
  left: -65rem;
}
.r--65 {
  right: -65rem;
}
.l--64 {
  left: -64rem;
}
.r--64 {
  right: -64rem;
}
.l--63 {
  left: -63rem;
}
.r--63 {
  right: -63rem;
}
.l--62 {
  left: -62rem;
}
.r--62 {
  right: -62rem;
}
.l--61 {
  left: -61rem;
}
.r--61 {
  right: -61rem;
}
.l--60 {
  left: -60rem;
}
.r--60 {
  right: -60rem;
}
.l--59 {
  left: -59rem;
}
.r--59 {
  right: -59rem;
}
.l--58 {
  left: -58rem;
}
.r--58 {
  right: -58rem;
}
.l--57 {
  left: -57rem;
}
.r--57 {
  right: -57rem;
}
.l--56 {
  left: -56rem;
}
.r--56 {
  right: -56rem;
}
.l--55 {
  left: -55rem;
}
.r--55 {
  right: -55rem;
}
.l--54 {
  left: -54rem;
}
.r--54 {
  right: -54rem;
}
.l--53 {
  left: -53rem;
}
.r--53 {
  right: -53rem;
}
.l--52 {
  left: -52rem;
}
.r--52 {
  right: -52rem;
}
.l--51 {
  left: -51rem;
}
.r--51 {
  right: -51rem;
}
.l--50 {
  left: -50rem;
}
.r--50 {
  right: -50rem;
}
.l--49 {
  left: -49rem;
}
.r--49 {
  right: -49rem;
}
.l--48 {
  left: -48rem;
}
.r--48 {
  right: -48rem;
}
.l--47 {
  left: -47rem;
}
.r--47 {
  right: -47rem;
}
.l--46 {
  left: -46rem;
}
.r--46 {
  right: -46rem;
}
.l--45 {
  left: -45rem;
}
.r--45 {
  right: -45rem;
}
.l--44 {
  left: -44rem;
}
.r--44 {
  right: -44rem;
}
.l--43 {
  left: -43rem;
}
.r--43 {
  right: -43rem;
}
.l--42 {
  left: -42rem;
}
.r--42 {
  right: -42rem;
}
.l--41 {
  left: -41rem;
}
.r--41 {
  right: -41rem;
}
.l--40 {
  left: -40rem;
}
.r--40 {
  right: -40rem;
}
.l--39 {
  left: -39rem;
}
.r--39 {
  right: -39rem;
}
.l--38 {
  left: -38rem;
}
.r--38 {
  right: -38rem;
}
.l--37 {
  left: -37rem;
}
.r--37 {
  right: -37rem;
}
.l--36 {
  left: -36rem;
}
.r--36 {
  right: -36rem;
}
.l--35 {
  left: -35rem;
}
.r--35 {
  right: -35rem;
}
.l--34 {
  left: -34rem;
}
.r--34 {
  right: -34rem;
}
.l--33 {
  left: -33rem;
}
.r--33 {
  right: -33rem;
}
.l--32 {
  left: -32rem;
}
.r--32 {
  right: -32rem;
}
.l--31 {
  left: -31rem;
}
.r--31 {
  right: -31rem;
}
.l--30 {
  left: -30rem;
}
.r--30 {
  right: -30rem;
}
.l--29 {
  left: -29rem;
}
.r--29 {
  right: -29rem;
}
.l--28 {
  left: -28rem;
}
.r--28 {
  right: -28rem;
}
.l--27 {
  left: -27rem;
}
.r--27 {
  right: -27rem;
}
.l--26 {
  left: -26rem;
}
.r--26 {
  right: -26rem;
}
.l--25 {
  left: -25rem;
}
.r--25 {
  right: -25rem;
}
.l--24 {
  left: -24rem;
}
.r--24 {
  right: -24rem;
}
.l--23 {
  left: -23rem;
}
.r--23 {
  right: -23rem;
}
.l--22 {
  left: -22rem;
}
.r--22 {
  right: -22rem;
}
.l--21 {
  left: -21rem;
}
.r--21 {
  right: -21rem;
}
.l--20 {
  left: -20rem;
}
.r--20 {
  right: -20rem;
}
.l--19 {
  left: -19rem;
}
.r--19 {
  right: -19rem;
}
.l--18 {
  left: -18rem;
}
.r--18 {
  right: -18rem;
}
.l--17 {
  left: -17rem;
}
.r--17 {
  right: -17rem;
}
.l--16 {
  left: -16rem;
}
.r--16 {
  right: -16rem;
}
.l--15 {
  left: -15rem;
}
.r--15 {
  right: -15rem;
}
.l--14 {
  left: -14rem;
}
.r--14 {
  right: -14rem;
}
.l--13 {
  left: -13rem;
}
.r--13 {
  right: -13rem;
}
.l--12 {
  left: -12rem;
}
.r--12 {
  right: -12rem;
}
.l--11 {
  left: -11rem;
}
.r--11 {
  right: -11rem;
}
.l--10 {
  left: -10rem;
}
.r--10 {
  right: -10rem;
}
.l--9 {
  left: -9rem;
}
.r--9 {
  right: -9rem;
}
.l--8 {
  left: -8rem;
}
.r--8 {
  right: -8rem;
}
.l--7 {
  left: -7rem;
}
.r--7 {
  right: -7rem;
}
.l--6 {
  left: -6rem;
}
.r--6 {
  right: -6rem;
}
.l--5 {
  left: -5rem;
}
.r--5 {
  right: -5rem;
}
.l--4 {
  left: -4rem;
}
.r--4 {
  right: -4rem;
}
.l--3 {
  left: -3rem;
}
.r--3 {
  right: -3rem;
}
.l--2 {
  left: -2rem;
}
.r--2 {
  right: -2rem;
}
.l--1 {
  left: -1rem;
}
.r--1 {
  right: -1rem;
}
.l-0 {
  left: 0rem;
}
.r-0 {
  right: 0rem;
}
.l-1 {
  left: 1rem;
}
.r-1 {
  right: 1rem;
}
.l-2 {
  left: 2rem;
}
.r-2 {
  right: 2rem;
}
.l-3 {
  left: 3rem;
}
.r-3 {
  right: 3rem;
}
.l-4 {
  left: 4rem;
}
.r-4 {
  right: 4rem;
}
.l-5 {
  left: 5rem;
}
.r-5 {
  right: 5rem;
}
.l-6 {
  left: 6rem;
}
.r-6 {
  right: 6rem;
}
.l-7 {
  left: 7rem;
}
.r-7 {
  right: 7rem;
}
.l-8 {
  left: 8rem;
}
.r-8 {
  right: 8rem;
}
.l-9 {
  left: 9rem;
}
.r-9 {
  right: 9rem;
}
.l-10 {
  left: 10rem;
}
.r-10 {
  right: 10rem;
}
.l-11 {
  left: 11rem;
}
.r-11 {
  right: 11rem;
}
.l-12 {
  left: 12rem;
}
.r-12 {
  right: 12rem;
}
.l-13 {
  left: 13rem;
}
.r-13 {
  right: 13rem;
}
.l-14 {
  left: 14rem;
}
.r-14 {
  right: 14rem;
}
.l-15 {
  left: 15rem;
}
.r-15 {
  right: 15rem;
}
.l-16 {
  left: 16rem;
}
.r-16 {
  right: 16rem;
}
.l-17 {
  left: 17rem;
}
.r-17 {
  right: 17rem;
}
.l-18 {
  left: 18rem;
}
.r-18 {
  right: 18rem;
}
.l-19 {
  left: 19rem;
}
.r-19 {
  right: 19rem;
}
.l-20 {
  left: 20rem;
}
.r-20 {
  right: 20rem;
}
.l-21 {
  left: 21rem;
}
.r-21 {
  right: 21rem;
}
.l-22 {
  left: 22rem;
}
.r-22 {
  right: 22rem;
}
.l-23 {
  left: 23rem;
}
.r-23 {
  right: 23rem;
}
.l-24 {
  left: 24rem;
}
.r-24 {
  right: 24rem;
}
.l-25 {
  left: 25rem;
}
.r-25 {
  right: 25rem;
}
.l-26 {
  left: 26rem;
}
.r-26 {
  right: 26rem;
}
.l-27 {
  left: 27rem;
}
.r-27 {
  right: 27rem;
}
.l-28 {
  left: 28rem;
}
.r-28 {
  right: 28rem;
}
.l-29 {
  left: 29rem;
}
.r-29 {
  right: 29rem;
}
.l-30 {
  left: 30rem;
}
.r-30 {
  right: 30rem;
}
.l-31 {
  left: 31rem;
}
.r-31 {
  right: 31rem;
}
.l-32 {
  left: 32rem;
}
.r-32 {
  right: 32rem;
}
.l-33 {
  left: 33rem;
}
.r-33 {
  right: 33rem;
}
.l-34 {
  left: 34rem;
}
.r-34 {
  right: 34rem;
}
.l-35 {
  left: 35rem;
}
.r-35 {
  right: 35rem;
}
.l-36 {
  left: 36rem;
}
.r-36 {
  right: 36rem;
}
.l-37 {
  left: 37rem;
}
.r-37 {
  right: 37rem;
}
.l-38 {
  left: 38rem;
}
.r-38 {
  right: 38rem;
}
.l-39 {
  left: 39rem;
}
.r-39 {
  right: 39rem;
}
.l-40 {
  left: 40rem;
}
.r-40 {
  right: 40rem;
}
.l-41 {
  left: 41rem;
}
.r-41 {
  right: 41rem;
}
.l-42 {
  left: 42rem;
}
.r-42 {
  right: 42rem;
}
.l-43 {
  left: 43rem;
}
.r-43 {
  right: 43rem;
}
.l-44 {
  left: 44rem;
}
.r-44 {
  right: 44rem;
}
.l-45 {
  left: 45rem;
}
.r-45 {
  right: 45rem;
}
.l-46 {
  left: 46rem;
}
.r-46 {
  right: 46rem;
}
.l-47 {
  left: 47rem;
}
.r-47 {
  right: 47rem;
}
.l-48 {
  left: 48rem;
}
.r-48 {
  right: 48rem;
}
.l-49 {
  left: 49rem;
}
.r-49 {
  right: 49rem;
}
.l-50 {
  left: 50rem;
}
.r-50 {
  right: 50rem;
}
.l-51 {
  left: 51rem;
}
.r-51 {
  right: 51rem;
}
.l-52 {
  left: 52rem;
}
.r-52 {
  right: 52rem;
}
.l-53 {
  left: 53rem;
}
.r-53 {
  right: 53rem;
}
.l-54 {
  left: 54rem;
}
.r-54 {
  right: 54rem;
}
.l-55 {
  left: 55rem;
}
.r-55 {
  right: 55rem;
}
.l-56 {
  left: 56rem;
}
.r-56 {
  right: 56rem;
}
.l-57 {
  left: 57rem;
}
.r-57 {
  right: 57rem;
}
.l-58 {
  left: 58rem;
}
.r-58 {
  right: 58rem;
}
.l-59 {
  left: 59rem;
}
.r-59 {
  right: 59rem;
}
.l-60 {
  left: 60rem;
}
.r-60 {
  right: 60rem;
}
.l-61 {
  left: 61rem;
}
.r-61 {
  right: 61rem;
}
.l-62 {
  left: 62rem;
}
.r-62 {
  right: 62rem;
}
.l-63 {
  left: 63rem;
}
.r-63 {
  right: 63rem;
}
.l-64 {
  left: 64rem;
}
.r-64 {
  right: 64rem;
}
.l-65 {
  left: 65rem;
}
.r-65 {
  right: 65rem;
}
.l-66 {
  left: 66rem;
}
.r-66 {
  right: 66rem;
}
.l-67 {
  left: 67rem;
}
.r-67 {
  right: 67rem;
}
.l-68 {
  left: 68rem;
}
.r-68 {
  right: 68rem;
}
.l-69 {
  left: 69rem;
}
.r-69 {
  right: 69rem;
}
.l-70 {
  left: 70rem;
}
.r-70 {
  right: 70rem;
}
.l-71 {
  left: 71rem;
}
.r-71 {
  right: 71rem;
}
.l-72 {
  left: 72rem;
}
.r-72 {
  right: 72rem;
}
.l-73 {
  left: 73rem;
}
.r-73 {
  right: 73rem;
}
.l-74 {
  left: 74rem;
}
.r-74 {
  right: 74rem;
}
.l-75 {
  left: 75rem;
}
.r-75 {
  right: 75rem;
}
.l-76 {
  left: 76rem;
}
.r-76 {
  right: 76rem;
}
.l-77 {
  left: 77rem;
}
.r-77 {
  right: 77rem;
}
.l-78 {
  left: 78rem;
}
.r-78 {
  right: 78rem;
}
.l-79 {
  left: 79rem;
}
.r-79 {
  right: 79rem;
}
.l-80 {
  left: 80rem;
}
.r-80 {
  right: 80rem;
}
.w-0 {
  width: 0rem;
}
.mw-0 {
  min-width: 0rem;
}
.w-1 {
  width: 1rem;
}
.mw-1 {
  min-width: 1rem;
}
.w-2 {
  width: 2rem;
}
.mw-2 {
  min-width: 2rem;
}
.w-3 {
  width: 3rem;
}
.mw-3 {
  min-width: 3rem;
}
.w-4 {
  width: 4rem;
}
.mw-4 {
  min-width: 4rem;
}
.w-5 {
  width: 5rem;
}
.mw-5 {
  min-width: 5rem;
}
.w-6 {
  width: 6rem;
}
.mw-6 {
  min-width: 6rem;
}
.w-7 {
  width: 7rem;
}
.mw-7 {
  min-width: 7rem;
}
.w-8 {
  width: 8rem;
}
.mw-8 {
  min-width: 8rem;
}
.w-9 {
  width: 9rem;
}
.mw-9 {
  min-width: 9rem;
}
.w-10 {
  width: 10rem;
}
.mw-10 {
  min-width: 10rem;
}
.w-11 {
  width: 11rem;
}
.mw-11 {
  min-width: 11rem;
}
.w-12 {
  width: 12rem;
}
.mw-12 {
  min-width: 12rem;
}
.w-13 {
  width: 13rem;
}
.mw-13 {
  min-width: 13rem;
}
.w-14 {
  width: 14rem;
}
.mw-14 {
  min-width: 14rem;
}
.w-15 {
  width: 15rem;
}
.mw-15 {
  min-width: 15rem;
}
.w-16 {
  width: 16rem;
}
.mw-16 {
  min-width: 16rem;
}
.w-17 {
  width: 17rem;
}
.mw-17 {
  min-width: 17rem;
}
.w-18 {
  width: 18rem;
}
.mw-18 {
  min-width: 18rem;
}
.w-19 {
  width: 19rem;
}
.mw-19 {
  min-width: 19rem;
}
.w-20 {
  width: 20rem;
}
.mw-20 {
  min-width: 20rem;
}
.w-21 {
  width: 21rem;
}
.mw-21 {
  min-width: 21rem;
}
.w-22 {
  width: 22rem;
}
.mw-22 {
  min-width: 22rem;
}
.w-23 {
  width: 23rem;
}
.mw-23 {
  min-width: 23rem;
}
.w-24 {
  width: 24rem;
}
.mw-24 {
  min-width: 24rem;
}
.w-25 {
  width: 25rem;
}
.mw-25 {
  min-width: 25rem;
}
.w-26 {
  width: 26rem;
}
.mw-26 {
  min-width: 26rem;
}
.w-27 {
  width: 27rem;
}
.mw-27 {
  min-width: 27rem;
}
.w-28 {
  width: 28rem;
}
.mw-28 {
  min-width: 28rem;
}
.w-29 {
  width: 29rem;
}
.mw-29 {
  min-width: 29rem;
}
.w-30 {
  width: 30rem;
}
.mw-30 {
  min-width: 30rem;
}
.w-31 {
  width: 31rem;
}
.mw-31 {
  min-width: 31rem;
}
.w-32 {
  width: 32rem;
}
.mw-32 {
  min-width: 32rem;
}
.w-33 {
  width: 33rem;
}
.mw-33 {
  min-width: 33rem;
}
.w-34 {
  width: 34rem;
}
.mw-34 {
  min-width: 34rem;
}
.w-35 {
  width: 35rem;
}
.mw-35 {
  min-width: 35rem;
}
.w-36 {
  width: 36rem;
}
.mw-36 {
  min-width: 36rem;
}
.w-37 {
  width: 37rem;
}
.mw-37 {
  min-width: 37rem;
}
.w-38 {
  width: 38rem;
}
.mw-38 {
  min-width: 38rem;
}
.w-39 {
  width: 39rem;
}
.mw-39 {
  min-width: 39rem;
}
.w-40 {
  width: 40rem;
}
.mw-40 {
  min-width: 40rem;
}
.w-41 {
  width: 41rem;
}
.mw-41 {
  min-width: 41rem;
}
.w-42 {
  width: 42rem;
}
.mw-42 {
  min-width: 42rem;
}
.w-43 {
  width: 43rem;
}
.mw-43 {
  min-width: 43rem;
}
.w-44 {
  width: 44rem;
}
.mw-44 {
  min-width: 44rem;
}
.w-45 {
  width: 45rem;
}
.mw-45 {
  min-width: 45rem;
}
.w-46 {
  width: 46rem;
}
.mw-46 {
  min-width: 46rem;
}
.w-47 {
  width: 47rem;
}
.mw-47 {
  min-width: 47rem;
}
.w-48 {
  width: 48rem;
}
.mw-48 {
  min-width: 48rem;
}
.w-49 {
  width: 49rem;
}
.mw-49 {
  min-width: 49rem;
}
.w-50 {
  width: 50rem;
}
.mw-50 {
  min-width: 50rem;
}
.w-51 {
  width: 51rem;
}
.mw-51 {
  min-width: 51rem;
}
.w-52 {
  width: 52rem;
}
.mw-52 {
  min-width: 52rem;
}
.w-53 {
  width: 53rem;
}
.mw-53 {
  min-width: 53rem;
}
.w-54 {
  width: 54rem;
}
.mw-54 {
  min-width: 54rem;
}
.w-55 {
  width: 55rem;
}
.mw-55 {
  min-width: 55rem;
}
.w-56 {
  width: 56rem;
}
.mw-56 {
  min-width: 56rem;
}
.w-57 {
  width: 57rem;
}
.mw-57 {
  min-width: 57rem;
}
.w-58 {
  width: 58rem;
}
.mw-58 {
  min-width: 58rem;
}
.w-59 {
  width: 59rem;
}
.mw-59 {
  min-width: 59rem;
}
.w-60 {
  width: 60rem;
}
.mw-60 {
  min-width: 60rem;
}
.w-61 {
  width: 61rem;
}
.mw-61 {
  min-width: 61rem;
}
.w-62 {
  width: 62rem;
}
.mw-62 {
  min-width: 62rem;
}
.w-63 {
  width: 63rem;
}
.mw-63 {
  min-width: 63rem;
}
.w-64 {
  width: 64rem;
}
.mw-64 {
  min-width: 64rem;
}
.w-65 {
  width: 65rem;
}
.mw-65 {
  min-width: 65rem;
}
.w-66 {
  width: 66rem;
}
.mw-66 {
  min-width: 66rem;
}
.w-67 {
  width: 67rem;
}
.mw-67 {
  min-width: 67rem;
}
.w-68 {
  width: 68rem;
}
.mw-68 {
  min-width: 68rem;
}
.w-69 {
  width: 69rem;
}
.mw-69 {
  min-width: 69rem;
}
.w-70 {
  width: 70rem;
}
.mw-70 {
  min-width: 70rem;
}
.w-71 {
  width: 71rem;
}
.mw-71 {
  min-width: 71rem;
}
.w-72 {
  width: 72rem;
}
.mw-72 {
  min-width: 72rem;
}
.w-73 {
  width: 73rem;
}
.mw-73 {
  min-width: 73rem;
}
.w-74 {
  width: 74rem;
}
.mw-74 {
  min-width: 74rem;
}
.w-75 {
  width: 75rem;
}
.mw-75 {
  min-width: 75rem;
}
.w-76 {
  width: 76rem;
}
.mw-76 {
  min-width: 76rem;
}
.w-77 {
  width: 77rem;
}
.mw-77 {
  min-width: 77rem;
}
.w-78 {
  width: 78rem;
}
.mw-78 {
  min-width: 78rem;
}
.w-79 {
  width: 79rem;
}
.mw-79 {
  min-width: 79rem;
}
.w-80 {
  width: 80rem;
}
.mw-80 {
  min-width: 80rem;
}
.w-0-c {
  width: 0rem;
  left: 40rem;
}
.w-1-c {
  width: 1rem;
  left: 39.5rem;
}
.w-2-c {
  width: 2rem;
  left: 39rem;
}
.w-3-c {
  width: 3rem;
  left: 38.5rem;
}
.w-4-c {
  width: 4rem;
  left: 38rem;
}
.w-5-c {
  width: 5rem;
  left: 37.5rem;
}
.w-6-c {
  width: 6rem;
  left: 37rem;
}
.w-7-c {
  width: 7rem;
  left: 36.5rem;
}
.w-8-c {
  width: 8rem;
  left: 36rem;
}
.w-9-c {
  width: 9rem;
  left: 35.5rem;
}
.w-10-c {
  width: 10rem;
  left: 35rem;
}
.w-11-c {
  width: 11rem;
  left: 34.5rem;
}
.w-12-c {
  width: 12rem;
  left: 34rem;
}
.w-13-c {
  width: 13rem;
  left: 33.5rem;
}
.w-14-c {
  width: 14rem;
  left: 33rem;
}
.w-15-c {
  width: 15rem;
  left: 32.5rem;
}
.w-16-c {
  width: 16rem;
  left: 32rem;
}
.w-17-c {
  width: 17rem;
  left: 31.5rem;
}
.w-18-c {
  width: 18rem;
  left: 31rem;
}
.w-19-c {
  width: 19rem;
  left: 30.5rem;
}
.w-20-c {
  width: 20rem;
  left: 30rem;
}
.w-21-c {
  width: 21rem;
  left: 29.5rem;
}
.w-22-c {
  width: 22rem;
  left: 29rem;
}
.w-23-c {
  width: 23rem;
  left: 28.5rem;
}
.w-24-c {
  width: 24rem;
  left: 28rem;
}
.w-25-c {
  width: 25rem;
  left: 27.5rem;
}
.w-26-c {
  width: 26rem;
  left: 27rem;
}
.w-27-c {
  width: 27rem;
  left: 26.5rem;
}
.w-28-c {
  width: 28rem;
  left: 26rem;
}
.w-29-c {
  width: 29rem;
  left: 25.5rem;
}
.w-30-c {
  width: 30rem;
  left: 25rem;
}
.w-31-c {
  width: 31rem;
  left: 24.5rem;
}
.w-32-c {
  width: 32rem;
  left: 24rem;
}
.w-33-c {
  width: 33rem;
  left: 23.5rem;
}
.w-34-c {
  width: 34rem;
  left: 23rem;
}
.w-35-c {
  width: 35rem;
  left: 22.5rem;
}
.w-36-c {
  width: 36rem;
  left: 22rem;
}
.w-37-c {
  width: 37rem;
  left: 21.5rem;
}
.w-38-c {
  width: 38rem;
  left: 21rem;
}
.w-39-c {
  width: 39rem;
  left: 20.5rem;
}
.w-40-c {
  width: 40rem;
  left: 20rem;
}
.w-41-c {
  width: 41rem;
  left: 19.5rem;
}
.w-42-c {
  width: 42rem;
  left: 19rem;
}
.w-43-c {
  width: 43rem;
  left: 18.5rem;
}
.w-44-c {
  width: 44rem;
  left: 18rem;
}
.w-45-c {
  width: 45rem;
  left: 17.5rem;
}
.w-46-c {
  width: 46rem;
  left: 17rem;
}
.w-47-c {
  width: 47rem;
  left: 16.5rem;
}
.w-48-c {
  width: 48rem;
  left: 16rem;
}
.w-49-c {
  width: 49rem;
  left: 15.5rem;
}
.w-50-c {
  width: 50rem;
  left: 15rem;
}
.w-51-c {
  width: 51rem;
  left: 14.5rem;
}
.w-52-c {
  width: 52rem;
  left: 14rem;
}
.w-53-c {
  width: 53rem;
  left: 13.5rem;
}
.w-54-c {
  width: 54rem;
  left: 13rem;
}
.w-55-c {
  width: 55rem;
  left: 12.5rem;
}
.w-56-c {
  width: 56rem;
  left: 12rem;
}
.w-57-c {
  width: 57rem;
  left: 11.5rem;
}
.w-58-c {
  width: 58rem;
  left: 11rem;
}
.w-59-c {
  width: 59rem;
  left: 10.5rem;
}
.w-60-c {
  width: 60rem;
  left: 10rem;
}
.w-61-c {
  width: 61rem;
  left: 9.5rem;
}
.w-62-c {
  width: 62rem;
  left: 9rem;
}
.w-63-c {
  width: 63rem;
  left: 8.5rem;
}
.w-64-c {
  width: 64rem;
  left: 8rem;
}
.w-65-c {
  width: 65rem;
  left: 7.5rem;
}
.w-66-c {
  width: 66rem;
  left: 7rem;
}
.w-67-c {
  width: 67rem;
  left: 6.5rem;
}
.w-68-c {
  width: 68rem;
  left: 6rem;
}
.w-69-c {
  width: 69rem;
  left: 5.5rem;
}
.w-70-c {
  width: 70rem;
  left: 5rem;
}
.w-71-c {
  width: 71rem;
  left: 4.5rem;
}
.w-72-c {
  width: 72rem;
  left: 4rem;
}
.w-73-c {
  width: 73rem;
  left: 3.5rem;
}
.w-74-c {
  width: 74rem;
  left: 3rem;
}
.w-75-c {
  width: 75rem;
  left: 2.5rem;
}
.w-76-c {
  width: 76rem;
  left: 2rem;
}
.w-77-c {
  width: 77rem;
  left: 1.5rem;
}
.w-78-c {
  width: 78rem;
  left: 1rem;
}
.w-79-c {
  width: 79rem;
  left: 0.5rem;
}
.w-80-c {
  width: 80rem;
  left: 0rem;
}
.t--45 {
  top: -45rem;
}
.b--45 {
  bottom: -45rem;
}
.t--44 {
  top: -44rem;
}
.b--44 {
  bottom: -44rem;
}
.t--43 {
  top: -43rem;
}
.b--43 {
  bottom: -43rem;
}
.t--42 {
  top: -42rem;
}
.b--42 {
  bottom: -42rem;
}
.t--41 {
  top: -41rem;
}
.b--41 {
  bottom: -41rem;
}
.t--40 {
  top: -40rem;
}
.b--40 {
  bottom: -40rem;
}
.t--39 {
  top: -39rem;
}
.b--39 {
  bottom: -39rem;
}
.t--38 {
  top: -38rem;
}
.b--38 {
  bottom: -38rem;
}
.t--37 {
  top: -37rem;
}
.b--37 {
  bottom: -37rem;
}
.t--36 {
  top: -36rem;
}
.b--36 {
  bottom: -36rem;
}
.t--35 {
  top: -35rem;
}
.b--35 {
  bottom: -35rem;
}
.t--34 {
  top: -34rem;
}
.b--34 {
  bottom: -34rem;
}
.t--33 {
  top: -33rem;
}
.b--33 {
  bottom: -33rem;
}
.t--32 {
  top: -32rem;
}
.b--32 {
  bottom: -32rem;
}
.t--31 {
  top: -31rem;
}
.b--31 {
  bottom: -31rem;
}
.t--30 {
  top: -30rem;
}
.b--30 {
  bottom: -30rem;
}
.t--29 {
  top: -29rem;
}
.b--29 {
  bottom: -29rem;
}
.t--28 {
  top: -28rem;
}
.b--28 {
  bottom: -28rem;
}
.t--27 {
  top: -27rem;
}
.b--27 {
  bottom: -27rem;
}
.t--26 {
  top: -26rem;
}
.b--26 {
  bottom: -26rem;
}
.t--25 {
  top: -25rem;
}
.b--25 {
  bottom: -25rem;
}
.t--24 {
  top: -24rem;
}
.b--24 {
  bottom: -24rem;
}
.t--23 {
  top: -23rem;
}
.b--23 {
  bottom: -23rem;
}
.t--22 {
  top: -22rem;
}
.b--22 {
  bottom: -22rem;
}
.t--21 {
  top: -21rem;
}
.b--21 {
  bottom: -21rem;
}
.t--20 {
  top: -20rem;
}
.b--20 {
  bottom: -20rem;
}
.t--19 {
  top: -19rem;
}
.b--19 {
  bottom: -19rem;
}
.t--18 {
  top: -18rem;
}
.b--18 {
  bottom: -18rem;
}
.t--17 {
  top: -17rem;
}
.b--17 {
  bottom: -17rem;
}
.t--16 {
  top: -16rem;
}
.b--16 {
  bottom: -16rem;
}
.t--15 {
  top: -15rem;
}
.b--15 {
  bottom: -15rem;
}
.t--14 {
  top: -14rem;
}
.b--14 {
  bottom: -14rem;
}
.t--13 {
  top: -13rem;
}
.b--13 {
  bottom: -13rem;
}
.t--12 {
  top: -12rem;
}
.b--12 {
  bottom: -12rem;
}
.t--11 {
  top: -11rem;
}
.b--11 {
  bottom: -11rem;
}
.t--10 {
  top: -10rem;
}
.b--10 {
  bottom: -10rem;
}
.t--9 {
  top: -9rem;
}
.b--9 {
  bottom: -9rem;
}
.t--8 {
  top: -8rem;
}
.b--8 {
  bottom: -8rem;
}
.t--7 {
  top: -7rem;
}
.b--7 {
  bottom: -7rem;
}
.t--6 {
  top: -6rem;
}
.b--6 {
  bottom: -6rem;
}
.t--5 {
  top: -5rem;
}
.b--5 {
  bottom: -5rem;
}
.t--4 {
  top: -4rem;
}
.b--4 {
  bottom: -4rem;
}
.t--3 {
  top: -3rem;
}
.b--3 {
  bottom: -3rem;
}
.t--2 {
  top: -2rem;
}
.b--2 {
  bottom: -2rem;
}
.t--1 {
  top: -1rem;
}
.b--1 {
  bottom: -1rem;
}
.t-0 {
  top: 0rem;
}
.b-0 {
  bottom: 0rem;
}
.t-1 {
  top: 1rem;
}
.b-1 {
  bottom: 1rem;
}
.t-2 {
  top: 2rem;
}
.b-2 {
  bottom: 2rem;
}
.t-3 {
  top: 3rem;
}
.b-3 {
  bottom: 3rem;
}
.t-4 {
  top: 4rem;
}
.b-4 {
  bottom: 4rem;
}
.t-5 {
  top: 5rem;
}
.b-5 {
  bottom: 5rem;
}
.t-6 {
  top: 6rem;
}
.b-6 {
  bottom: 6rem;
}
.t-7 {
  top: 7rem;
}
.b-7 {
  bottom: 7rem;
}
.t-8 {
  top: 8rem;
}
.b-8 {
  bottom: 8rem;
}
.t-9 {
  top: 9rem;
}
.b-9 {
  bottom: 9rem;
}
.t-10 {
  top: 10rem;
}
.b-10 {
  bottom: 10rem;
}
.t-11 {
  top: 11rem;
}
.b-11 {
  bottom: 11rem;
}
.t-12 {
  top: 12rem;
}
.b-12 {
  bottom: 12rem;
}
.t-13 {
  top: 13rem;
}
.b-13 {
  bottom: 13rem;
}
.t-14 {
  top: 14rem;
}
.b-14 {
  bottom: 14rem;
}
.t-15 {
  top: 15rem;
}
.b-15 {
  bottom: 15rem;
}
.t-16 {
  top: 16rem;
}
.b-16 {
  bottom: 16rem;
}
.t-17 {
  top: 17rem;
}
.b-17 {
  bottom: 17rem;
}
.t-18 {
  top: 18rem;
}
.b-18 {
  bottom: 18rem;
}
.t-19 {
  top: 19rem;
}
.b-19 {
  bottom: 19rem;
}
.t-20 {
  top: 20rem;
}
.b-20 {
  bottom: 20rem;
}
.t-21 {
  top: 21rem;
}
.b-21 {
  bottom: 21rem;
}
.t-22 {
  top: 22rem;
}
.b-22 {
  bottom: 22rem;
}
.t-23 {
  top: 23rem;
}
.b-23 {
  bottom: 23rem;
}
.t-24 {
  top: 24rem;
}
.b-24 {
  bottom: 24rem;
}
.t-25 {
  top: 25rem;
}
.b-25 {
  bottom: 25rem;
}
.t-26 {
  top: 26rem;
}
.b-26 {
  bottom: 26rem;
}
.t-27 {
  top: 27rem;
}
.b-27 {
  bottom: 27rem;
}
.t-28 {
  top: 28rem;
}
.b-28 {
  bottom: 28rem;
}
.t-29 {
  top: 29rem;
}
.b-29 {
  bottom: 29rem;
}
.t-30 {
  top: 30rem;
}
.b-30 {
  bottom: 30rem;
}
.t-31 {
  top: 31rem;
}
.b-31 {
  bottom: 31rem;
}
.t-32 {
  top: 32rem;
}
.b-32 {
  bottom: 32rem;
}
.t-33 {
  top: 33rem;
}
.b-33 {
  bottom: 33rem;
}
.t-34 {
  top: 34rem;
}
.b-34 {
  bottom: 34rem;
}
.t-35 {
  top: 35rem;
}
.b-35 {
  bottom: 35rem;
}
.t-36 {
  top: 36rem;
}
.b-36 {
  bottom: 36rem;
}
.t-37 {
  top: 37rem;
}
.b-37 {
  bottom: 37rem;
}
.t-38 {
  top: 38rem;
}
.b-38 {
  bottom: 38rem;
}
.t-39 {
  top: 39rem;
}
.b-39 {
  bottom: 39rem;
}
.t-40 {
  top: 40rem;
}
.b-40 {
  bottom: 40rem;
}
.t-41 {
  top: 41rem;
}
.b-41 {
  bottom: 41rem;
}
.t-42 {
  top: 42rem;
}
.b-42 {
  bottom: 42rem;
}
.t-43 {
  top: 43rem;
}
.b-43 {
  bottom: 43rem;
}
.t-44 {
  top: 44rem;
}
.b-44 {
  bottom: 44rem;
}
.t-45 {
  top: 45rem;
}
.b-45 {
  bottom: 45rem;
}
.h-0 {
  height: 0rem;
}
.mh-0 {
  min-height: 0rem;
}
.h-1 {
  height: 1rem;
}
.mh-1 {
  min-height: 1rem;
}
.h-2 {
  height: 2rem;
}
.mh-2 {
  min-height: 2rem;
}
.h-3 {
  height: 3rem;
}
.mh-3 {
  min-height: 3rem;
}
.h-4 {
  height: 4rem;
}
.mh-4 {
  min-height: 4rem;
}
.h-5 {
  height: 5rem;
}
.mh-5 {
  min-height: 5rem;
}
.h-6 {
  height: 6rem;
}
.mh-6 {
  min-height: 6rem;
}
.h-7 {
  height: 7rem;
}
.mh-7 {
  min-height: 7rem;
}
.h-8 {
  height: 8rem;
}
.mh-8 {
  min-height: 8rem;
}
.h-9 {
  height: 9rem;
}
.mh-9 {
  min-height: 9rem;
}
.h-10 {
  height: 10rem;
}
.mh-10 {
  min-height: 10rem;
}
.h-11 {
  height: 11rem;
}
.mh-11 {
  min-height: 11rem;
}
.h-12 {
  height: 12rem;
}
.mh-12 {
  min-height: 12rem;
}
.h-13 {
  height: 13rem;
}
.mh-13 {
  min-height: 13rem;
}
.h-14 {
  height: 14rem;
}
.mh-14 {
  min-height: 14rem;
}
.h-15 {
  height: 15rem;
}
.mh-15 {
  min-height: 15rem;
}
.h-16 {
  height: 16rem;
}
.mh-16 {
  min-height: 16rem;
}
.h-17 {
  height: 17rem;
}
.mh-17 {
  min-height: 17rem;
}
.h-18 {
  height: 18rem;
}
.mh-18 {
  min-height: 18rem;
}
.h-19 {
  height: 19rem;
}
.mh-19 {
  min-height: 19rem;
}
.h-20 {
  height: 20rem;
}
.mh-20 {
  min-height: 20rem;
}
.h-21 {
  height: 21rem;
}
.mh-21 {
  min-height: 21rem;
}
.h-22 {
  height: 22rem;
}
.mh-22 {
  min-height: 22rem;
}
.h-23 {
  height: 23rem;
}
.mh-23 {
  min-height: 23rem;
}
.h-24 {
  height: 24rem;
}
.mh-24 {
  min-height: 24rem;
}
.h-25 {
  height: 25rem;
}
.mh-25 {
  min-height: 25rem;
}
.h-26 {
  height: 26rem;
}
.mh-26 {
  min-height: 26rem;
}
.h-27 {
  height: 27rem;
}
.mh-27 {
  min-height: 27rem;
}
.h-28 {
  height: 28rem;
}
.mh-28 {
  min-height: 28rem;
}
.h-29 {
  height: 29rem;
}
.mh-29 {
  min-height: 29rem;
}
.h-30 {
  height: 30rem;
}
.mh-30 {
  min-height: 30rem;
}
.h-31 {
  height: 31rem;
}
.mh-31 {
  min-height: 31rem;
}
.h-32 {
  height: 32rem;
}
.mh-32 {
  min-height: 32rem;
}
.h-33 {
  height: 33rem;
}
.mh-33 {
  min-height: 33rem;
}
.h-34 {
  height: 34rem;
}
.mh-34 {
  min-height: 34rem;
}
.h-35 {
  height: 35rem;
}
.mh-35 {
  min-height: 35rem;
}
.h-36 {
  height: 36rem;
}
.mh-36 {
  min-height: 36rem;
}
.h-37 {
  height: 37rem;
}
.mh-37 {
  min-height: 37rem;
}
.h-38 {
  height: 38rem;
}
.mh-38 {
  min-height: 38rem;
}
.h-39 {
  height: 39rem;
}
.mh-39 {
  min-height: 39rem;
}
.h-40 {
  height: 40rem;
}
.mh-40 {
  min-height: 40rem;
}
.h-41 {
  height: 41rem;
}
.mh-41 {
  min-height: 41rem;
}
.h-42 {
  height: 42rem;
}
.mh-42 {
  min-height: 42rem;
}
.h-43 {
  height: 43rem;
}
.mh-43 {
  min-height: 43rem;
}
.h-44 {
  height: 44rem;
}
.mh-44 {
  min-height: 44rem;
}
.h-45 {
  height: 45rem;
}
.mh-45 {
  min-height: 45rem;
}
.h-0-c {
  height: 0rem;
  top: 22.5rem;
}
.h-1-c {
  height: 1rem;
  top: 22rem;
}
.h-2-c {
  height: 2rem;
  top: 21.5rem;
}
.h-3-c {
  height: 3rem;
  top: 21rem;
}
.h-4-c {
  height: 4rem;
  top: 20.5rem;
}
.h-5-c {
  height: 5rem;
  top: 20rem;
}
.h-6-c {
  height: 6rem;
  top: 19.5rem;
}
.h-7-c {
  height: 7rem;
  top: 19rem;
}
.h-8-c {
  height: 8rem;
  top: 18.5rem;
}
.h-9-c {
  height: 9rem;
  top: 18rem;
}
.h-10-c {
  height: 10rem;
  top: 17.5rem;
}
.h-11-c {
  height: 11rem;
  top: 17rem;
}
.h-12-c {
  height: 12rem;
  top: 16.5rem;
}
.h-13-c {
  height: 13rem;
  top: 16rem;
}
.h-14-c {
  height: 14rem;
  top: 15.5rem;
}
.h-15-c {
  height: 15rem;
  top: 15rem;
}
.h-16-c {
  height: 16rem;
  top: 14.5rem;
}
.h-17-c {
  height: 17rem;
  top: 14rem;
}
.h-18-c {
  height: 18rem;
  top: 13.5rem;
}
.h-19-c {
  height: 19rem;
  top: 13rem;
}
.h-20-c {
  height: 20rem;
  top: 12.5rem;
}
.h-21-c {
  height: 21rem;
  top: 12rem;
}
.h-22-c {
  height: 22rem;
  top: 11.5rem;
}
.h-23-c {
  height: 23rem;
  top: 11rem;
}
.h-24-c {
  height: 24rem;
  top: 10.5rem;
}
.h-25-c {
  height: 25rem;
  top: 10rem;
}
.h-26-c {
  height: 26rem;
  top: 9.5rem;
}
.h-27-c {
  height: 27rem;
  top: 9rem;
}
.h-28-c {
  height: 28rem;
  top: 8.5rem;
}
.h-29-c {
  height: 29rem;
  top: 8rem;
}
.h-30-c {
  height: 30rem;
  top: 7.5rem;
}
.h-31-c {
  height: 31rem;
  top: 7rem;
}
.h-32-c {
  height: 32rem;
  top: 6.5rem;
}
.h-33-c {
  height: 33rem;
  top: 6rem;
}
.h-34-c {
  height: 34rem;
  top: 5.5rem;
}
.h-35-c {
  height: 35rem;
  top: 5rem;
}
.h-36-c {
  height: 36rem;
  top: 4.5rem;
}
.h-37-c {
  height: 37rem;
  top: 4rem;
}
.h-38-c {
  height: 38rem;
  top: 3.5rem;
}
.h-39-c {
  height: 39rem;
  top: 3rem;
}
.h-40-c {
  height: 40rem;
  top: 2.5rem;
}
.h-41-c {
  height: 41rem;
  top: 2rem;
}
.h-42-c {
  height: 42rem;
  top: 1.5rem;
}
.h-43-c {
  height: 43rem;
  top: 1rem;
}
.h-44-c {
  height: 44rem;
  top: 0.5rem;
}
.h-45-c {
  height: 45rem;
  top: 0rem;
}
.debug {
  outline: 1px solid red;
}
.debug2 {
  outline: 1px solid yellow;
}
.d-flex-inline {
  display: inline-flex;
}
.d-flex {
  display: flex;
}
.d-flex-col {
  display: flex;
  flex-direction: column;
}
.flex-grow-1 {
  flex: 1;
}
.text-b {
  font-weight: bold;
}
.text-xxsb, .movie-purchase-type-svod,
.movie-purchase-type-tvod,
.movie-purchase-type-avod {
  font-size: 0.875rem;
  font-weight: bold;
}
.text-xxs {
  font-size: 0.875rem;
  font-weight: normal;
}
.text-xsb {
  font-size: 1rem;
  font-weight: bold;
}
.text-xs {
  font-size: 1rem;
  font-weight: normal;
}
.text-sb {
  font-size: 1.125rem;
  font-weight: bold;
}
.text-s {
  font-size: 1.125rem;
  font-weight: normal;
}
.text-nb {
  font-size: 1.25rem;
  font-weight: bold;
}
.text-n {
  font-size: 1.25rem;
  font-weight: normal;
}
.text-l {
  font-size: 1.5rem;
  font-weight: normal;
}
.text-lb, base-channels-programs .date-header {
  font-size: 1.5rem;
  font-weight: bold;
}
.text-xlb {
  font-size: 2.125rem;
  font-weight: bold;
}
.text-xl {
  font-size: 2.125rem;
  font-weight: normal;
}
.text-xxl {
  font-size: 3.75rem;
  font-weight: normal;
}
.text-30 {
  font-size: 1.875rem;
}
.text-color-initial {
  color: initial;
}
.text-center, base-channels-programs .date-header {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-center, base-channels-programs .date-header {
  text-align: center;
}
.text-right {
  text-align: right;
}
.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.no-ellipsis-imp {
  white-space: normal !important;
  word-wrap: break-word;
}
.nowrap {
  white-space: nowrap;
}
.prewrap {
  white-space: pre-wrap;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.capitalize {
  text-transform: capitalize;
}
.capitalize-first {
  text-transform: lowercase;
}
.capitalize-first::first-letter {
  text-transform: capitalize;
}
.device-phone .text-l {
  font-size: 2rem;
  font-weight: normal;
}
.device-phone .text-lb, .device-phone base-channels-programs .date-header, base-channels-programs .device-phone .date-header {
  font-size: 2rem;
  font-weight: bold;
}
.device-phone .text-n {
  font-size: 1.66rem;
  font-weight: normal;
}
.device-phone .text-nb {
  font-size: 1.66rem;
  font-weight: bold;
}
.device-phone .text-xsb {
  font-size: 1.33rem;
  font-weight: bold;
}
.device-phone .text-xs {
  font-size: 1.33rem;
  font-weight: normal;
}
@font-face {
  font-family: "ProximaFont";
  src: url('assets/fonts/proxima/base_font');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "ProximaFont";
  src: url('assets/fonts/proxima/base_font_bold');
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "RobotoFont";
  src: url('assets/fonts/roboto/base_font');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "RobotoFont";
  src: url('assets/fonts/roboto/base_font_bold');
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GothamRnd";
  src: url('assets/fonts/gothamrnd/base_font');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "GothamRnd";
  src: url('assets/fonts/gothamrnd/base_font_bold');
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "MardotoFont";
  src: url('assets/fonts/mardoto/base_font');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "MardotoFont";
  src: url('assets/fonts/mardoto/base_font_bold');
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "Icons";
  src: url('fonts/icons.ttf');
  text-rendering: optimizeLegibility;
}
.button-small {
  font-size: 1.125rem;
}
.button-normal, .button-label-tooltip,
.button-label-tooltip-top,
.button-label-tooltip-bottom,
.button-spinner,
.button-transparent {
  font-weight: bold !important;
  white-space: nowrap;
  padding: 0.625rem 1rem;
  background-color: rgba(238, 238, 238, 0.2);
  cursor: pointer;
  color: #cccccc;
  border-radius: 0.2rem;
  min-height: 1.6rem;
}
.button-rounded {
  border-radius: 5rem;
  padding: 0.5rem 1rem;
}
.button-rounded-left {
  border-radius: 5rem 0 0 5rem;
  padding: 0.5rem 1rem;
}
.button-rounded-right {
  border-radius: 0 5rem 5rem 0;
  padding: 0.5rem 1rem;
}
.button-transparent {
  background-color: transparent;
}
.button-normal.button-focus, .button-label-tooltip,
.button-label-tooltip-top,
.button-label-tooltip-bottom, .button-normal.focus, .focus.button-label-tooltip,
.focus.button-label-tooltip-top,
.focus.button-label-tooltip-bottom,
.button-spinner.button-focus,
.button-spinner.focus {
  background-color: #7ebb0a;
  color: #eeeeee;
}
.button-spinner .button-spinner-inner {
  overflow: hidden;
  background-image: url('images/objects/wave_button.png') !important;
  background-size: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.8rem;
  height: 2.8rem;
}
.button-spinner .button-spinner-inner::before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 1800%;
  content: "";
  background-size: 100%;
  background-position: left;
  background-image: url('images/objects/wave_button.png');
  -webkit-animation-name: spinner-animation;
          animation-name: spinner-animation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: steps(17);
          animation-timing-function: steps(17);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.button-spinner.focus .button-spinner-inner {
  overflow: hidden;
  background-image: url('images/objects/wave_button_active.png') !important;
  background-size: 0;
}
.button-spinner.focus .button-spinner-inner::before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 1800%;
  content: "";
  background-size: 100%;
  background-position: left;
  background-image: url('images/objects/wave_button_active.png');
  -webkit-animation-name: spinner-animation;
          animation-name: spinner-animation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: steps(17);
          animation-timing-function: steps(17);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.button-spinner {
  color: transparent !important;
}
.button-spinner .button-icon, .button-spinner .button-absolute {
  visibility: hidden;
}
.button-spinner .button-label {
  color: transparent !important;
}
.button-icon, .button-absolute {
  width: 1.5625rem;
  height: 1.5625rem;
  background-position: center;
  background-size: contain;
  display: inline-block;
  background-repeat: no-repeat;
  margin-bottom: -0.4rem;
  position: relative;
}
.button-label {
  position: relative;
}
.icon ~ .button-label,
.icon-active ~ .button-label,
.icon-class ~ .button-label {
  margin-left: 0.625rem;
}
.buttons-v .button-normal, .buttons-v .button-label-tooltip,
.buttons-v .button-label-tooltip-top,
.buttons-v .button-label-tooltip-bottom,
.buttons-v .button-transparent {
  margin-bottom: 1rem;
  display: block;
  position: relative;
}
.buttons-h .button-normal, .buttons-h .button-label-tooltip,
.buttons-h .button-label-tooltip-top,
.buttons-h .button-label-tooltip-bottom,
.buttons-h .button-transparent {
  margin-right: 1rem;
  display: inline-block;
  position: relative;
}
.button-absolute {
  position: absolute;
}
.button-label-tooltip,
.button-label-tooltip-top,
.button-label-tooltip-bottom {
  background-color: #eeeeee;
  position: absolute;
  z-index: 2001;
  overflow: visible;
  color: #37474f;
  box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.3333333333);
}
.button-label-tooltip {
  display: none !important;
}
.button-label-tooltip-top {
  margin-bottom: 1.4rem;
}
.button-label-tooltip-bottom {
  margin-top: 1.4rem;
}
.button-label-tooltip-top::after,
.button-label-tooltip-bottom::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  margin-left: -0.7rem;
}
.button-label-tooltip-top::after {
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-top: 0.7rem solid #eeeeee;
  bottom: 0;
  margin-bottom: -0.7rem;
}
.button-label-tooltip-bottom::after {
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-bottom: 0.7rem solid #eeeeee;
  top: 0;
  margin-top: -0.7rem;
}
.button-arrow-right::after,
.button-arrow-left::after {
  width: 0;
  height: 0;
  border-top: 1.425rem solid transparent;
  border-bottom: 1.425rem solid transparent;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  display: block;
  content: "";
  position: absolute;
  top: 0;
}
.button-arrow-right::after {
  border-left: 1rem solid rgba(238, 238, 238, 0.2);
  right: -1rem;
}
.button-arrow-left::after {
  border-right: 1rem solid rgba(238, 238, 238, 0.2);
  left: -1rem;
}
.button-arrow-right,
.button-arrow-left {
  overflow: visible !important;
}
.button-arrow-right-focus::after {
  border-left: 1rem solid #7ebb0a;
}
.button-arrow-left-focus::after {
  border-right: 1rem solid #7ebb0a;
}
.popup {
  text-align: center;
  position: fixed;
  bottom: 0;
  height: 45rem;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  width: 80rem;
  z-index: 1100;
}
.popup::before {
  display: inline-block;
  height: 50%;
  content: " ";
  position: relative;
}
.popup-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(80, 80, 80, 0.8);
}
.popup-content-absolute,
.popup-content {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  text-align: initial;
  padding: 3rem;
  max-height: 37.5rem;
  background-color: #212121;
}
.popup.popup-new .popup-content {
  max-height: 40rem;
}
.popup.popup-new .popup-content, .popup.filter-popup-new .popup-content {
  padding: 0;
  box-shadow: 0 1rem 1.5rem 0 rgba(0, 0, 0, 0.2509803922);
  border-radius: 0.5rem;
}
.popup-content-default-width {
  width: 28.125rem;
}
.popup-content-max {
  width: 40.625rem;
}
.popup-fullscreen.semi > .popup-bg {
  opacity: 0.9;
}
.popup-fullscreen .popup-content {
  padding: 0;
  max-height: 100%;
}
.popup-fullscreen.semi > .popup-content {
  background-color: transparent;
}
.no-clickable-link {
  color: #7ebb0a;
}
.device-tablet .popup,
.device-phone .popup {
  height: 100vh;
  width: 100%;
}
.device-tablet .popup-content,
.device-tablet .popup-content-absolute,
.device-phone .popup-content,
.device-phone .popup-content-absolute {
  border-radius: 1rem;
  background-color: #373838;
}
.device-tablet .popup-content,
.device-phone .popup-content {
  box-sizing: border-box;
}
.device-tablet .popup-content .btn-cancel,
.device-phone .popup-content .btn-cancel {
  height: 4rem;
  margin-top: 2.5rem;
  margin-left: -2rem;
  margin-right: -2rem;
  border-top: 1px solid #757575;
}
.device-tablet .popup-bg,
.device-phone .popup-bg {
  background-color: #000;
}
.age-rating {
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  width: 5rem;
  height: 1.2rem;
}
.toast {
  left: 0;
  right: 0;
  top: 0;
  padding: 2rem 3.75rem 1rem;
  display: inline-block;
  background-color: #212121;
  box-shadow: 0 0 0.75rem 0 rgba(0, 0, 0, 0.3333333333);
  transition: opacity 0.3s linear, transform 0.3s linear;
  opacity: 0;
  transform: translate(0, -7rem);
}
.toast.toast-show {
  opacity: 1;
  transform: translate(0, 0);
}
.toast-icon {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.toast-label {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  max-width: 61.5rem;
  font-size: 1.125rem;
}
.toast-label pre {
  font-family: inherit;
}
.toast-header {
  display: inline-block;
  margin-right: 100%;
  position: relative;
  margin-bottom: -0.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  height: 2.7rem;
  max-width: 69.5rem;
  font-size: 2.125rem;
}
.movie-purchase-type-svod,
.movie-purchase-type-tvod,
.movie-purchase-type-avod {
  color: #cccccc;
  text-transform: uppercase;
  padding: 0rem 0.3rem;
  border-radius: 0.2rem;
}
.movie-purchase-type-svod {
  background-color: rgb(251, 140, 0);
}
.movie-purchase-type-tvod {
  background-color: rgb(30, 136, 229);
}
.movie-purchase-type-avod {
  background-color: rgb(251, 0, 67);
}
.radio-button-knob,
.checkbox-button-knob,
.radio-button-knob.checked,
.radio-button-knob-checked {
  display: inline-block;
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  margin-left: 0.625rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.checkbox-button-knob {
  background-image: url('images/icons/checkbox.png');
}
.checkbox-button-knob.checked,
.checkbox-button-knob-checked {
  background-image: url('images/icons/checkbox_selected.png');
}
.radio-button-knob:before {
  font-weight: normal !important;
  font-family: "LIME-STB" !important;
  font-size: 200%;
  position: absolute;
  left: -0.8rem;
  top: -0.8rem;
  content: "\e935";
}
.checkbox-button-knob.checked:before,
.radio-button-knob-checked:before {
  font-weight: normal !important;
  font-family: "LIME-STB" !important;
  font-size: 200%;
  position: absolute;
  left: -0.8rem;
  top: -0.8rem;
  content: "\e934";
}
.radio-button-text,
.checkbox-button-text {
  display: inline-block;
  position: relative;
  margin-left: 1rem;
}
.scrollbar {
  background-image: url('images/objects/menu_vertical_line.png');
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1px;
  z-index: 101;
}
.scrollbar-progress {
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  border-radius: 0.2rem;
  background-color: #fff;
}
.spinner {
  overflow: hidden;
  background-image: url('images/objects/loader_tv.png') !important;
  background-size: 0;
}
.spinner::before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 1800%;
  content: "";
  background-size: 100%;
  background-position: left;
  background-image: url('images/objects/loader_tv.png');
  -webkit-animation-name: spinner-animation;
          animation-name: spinner-animation;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: steps(17);
          animation-timing-function: steps(17);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.block-spinner {
  text-align: center;
  position: absolute;
  bottom: 0;
  height: 45rem;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  width: 80rem;
  z-index: 1500;
  transition: opacity 0.2s linear;
}
.block-spinner.block-spinner-off {
  opacity: 0;
  pointer-events: none;
}
.block-spinner.block-spinner-loading {
  opacity: 1;
  pointer-events: auto;
}
.block-spinner .block-spinner-bg {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.block-spinner .block-spinner-content {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.block-spinner::before {
  display: inline-block;
  height: 50%;
  content: " ";
  position: relative;
}
.device-mobile .block-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@-webkit-keyframes spinner-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-94.4444444444%);
  }
}
@keyframes spinner-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-94.4444444444%);
  }
}
.pin-input, .text-input {
  position: relative;
  border: 0.1rem solid rgba(238, 238, 238, 0.7);
  color: #eeeeee;
  background-color: rgba(33, 33, 33, 0.7);
  padding: 0.625rem 1rem;
  border-radius: 0.2rem;
  font-size: 1.25rem;
  height: 1.5rem;
}
.text-input.text-input-placeholder {
  color: rgba(238, 238, 238, 0.5);
}
.text-input-container {
  padding-right: 2.2rem;
}
.text-input.focus,
.text-input-focus,
.focus > .pin-input.focus,
.active > .pin-input.focus {
  border: 0.1rem solid rgba(126, 187, 10, 0.7);
}
.text-input-rounded {
  border-radius: 5rem;
  padding: 0.5rem 1rem;
}
.text-input.active,
.text-input-active {
  border: 0.1rem solid rgba(126, 187, 10, 0.3);
}
.text-input.error,
.text-input-error,
.text-input.focus.error {
  border: 0.1rem solid #ff7043;
}
.pin-input {
  text-align: center;
  width: 1rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  display: inline-block;
}
.pin-input.error,
.text-input.focus.error {
  border: 0.1rem solid #ff7043;
}
.pin-input-circle,
.pin-input-circle-active {
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  top: 0.7em;
  left: 1rem;
  border-radius: 1rem;
}
.pin-input-circle-active {
  display: none;
  opacity: 0.5;
}
.focus-item, .menu-item, .filter-item {
  font-size: 1.25rem;
  border-radius: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.focus-item.selected, .selected.menu-item, .selected.filter-item,
.focus-item-selected,
.menu-item-selected,
.filter-item-selected {
  border-radius: 0.2rem;
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-item.checked, .checked.menu-item, .checked.filter-item,
.focus-item-checked,
.menu-item-checked,
.filter-item-checked {
  border-radius: 0.2rem;
  background-color: transparent;
  color: #7ebb0a;
}
.focus-item.focus, .focus.menu-item, .focus.filter-item,
.focus-item-focus,
.menu-item-focus,
.filter-item-focus {
  border-radius: 0.2rem;
  background-color: #7ebb0a;
  color: #eeeeee;
}
.device-tablet .focus-item.selected, .device-tablet .selected.menu-item, .device-tablet .selected.filter-item,
.device-tablet .focus-item-selected,
.device-tablet .menu-item-selected,
.device-tablet .filter-item-selected,
.device-phone .focus-item.selected,
.device-phone .selected.menu-item,
.device-phone .selected.filter-item,
.device-phone .focus-item-selected,
.device-phone .menu-item-selected,
.device-phone .filter-item-selected {
  background-color: transparent;
}
.border-focus-item {
  box-shadow: none;
  border: 0.3rem solid #7ebb0a;
  border-radius: 0.3rem;
}
.filter-item {
  padding: 1rem;
}
.filter-item-icon {
  top: 50%;
  transform: translateY(-50%);
  width: 1.5625rem;
  height: 1.5625rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.filter-item-add-icon {
  padding-right: 3.5625rem;
}
.filter-item-add-icon .filter-item-icon {
  right: 1rem;
}
.filter-item-add-icon-left {
  padding-left: 3.5625rem;
}
.filter-item-add-icon-left .filter-item-icon {
  left: 1rem;
}
.design-2 .filter-item.focus {
  font-weight: bold;
  letter-spacing: -0.027;
}
.platform-type-wscobalt.design-2 .menu-item.focus,
.platform-type-krea.design-2 .menu-item.focus {
  font-weight: normal;
}
.focus-item, .menu-item, .filter-item {
  font-size: 1.25rem;
  border-radius: 0.2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.focus-item.selected, .selected.menu-item, .selected.filter-item,
.focus-item-selected,
.menu-item-selected,
.filter-item-selected {
  border-radius: 0.2rem;
  background-color: rgba(238, 238, 238, 0.2);
}
.focus-item.checked, .checked.menu-item, .checked.filter-item,
.focus-item-checked,
.menu-item-checked,
.filter-item-checked {
  border-radius: 0.2rem;
  background-color: transparent;
  color: #7ebb0a;
}
.focus-item.focus, .focus.menu-item, .focus.filter-item,
.focus-item-focus,
.menu-item-focus,
.filter-item-focus {
  border-radius: 0.2rem;
  background-color: #7ebb0a;
  color: #eeeeee;
}
.device-tablet .focus-item.selected, .device-tablet .selected.menu-item, .device-tablet .selected.filter-item,
.device-tablet .focus-item-selected,
.device-tablet .menu-item-selected,
.device-tablet .filter-item-selected,
.device-phone .focus-item.selected,
.device-phone .selected.menu-item,
.device-phone .selected.filter-item,
.device-phone .focus-item-selected,
.device-phone .menu-item-selected,
.device-phone .filter-item-selected {
  background-color: transparent;
}
.border-focus-item {
  box-shadow: none;
  border: 0.3rem solid #7ebb0a;
  border-radius: 0.3rem;
}
.menu-item {
  padding: 1rem;
}
.design-2 .menu-item.focus {
  font-weight: bold;
  letter-spacing: -0.027;
}
.platform-type-wscobalt.design-2 .menu-item.focus,
.platform-type-krea.design-2 .menu-item.focus {
  font-weight: normal;
}
.message-counter {
  border-radius: 50%;
  background-color: #eeeeee;
  color: #212121;
  text-align: center;
  line-height: 2rem;
  z-index: 100;
}
.message-counter.focus {
  border-radius: 50%;
  background-color: #7ebb0a;
  color: #212121;
  text-align: center;
  line-height: 2rem;
  z-index: 100;
}
.dropdown-right.dropdown,
.dropdown-right .dropdown {
  right: 0;
  left: initial !important;
}
.dropdown-container {
  position: relative;
}
.dropdown-container > * {
  display: block;
  position: relative;
}
.dropdown-container .dropdown {
  position: absolute;
  left: 0;
  padding: 2rem;
  text-align: left;
  top: 100%;
  background-color: #212121;
  border-radius: 0.2rem;
}
.dropdown-container .dropdown.dropdown-top {
  bottom: 100%;
  top: auto;
}
.dropdown-container .dropdown > * {
  display: block;
  position: relative;
}
.splash-progress-bar-fill {
  height: 100%;
  width: 5%;
  left: 0;
  background-color: #7ebb0a;
  border-radius: 0.2rem;
}
.quality-logo {
  position: relative;
  color: #f00;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 0;
}
.grid-background {
  background-color: rgba(33, 33, 33, 0.8);
}
.grid-background-past {
  background-color: black;
}
.grid-background-active {
  background-color: #7ebb0a;
}
.grid-background-now {
  background-color: #292929;
}
.grid-background-feature {
  background-color: #444444;
}
.grid-background-channel {
  background-color: rgba(238, 238, 238, 0.2);
}
.grid-background-time {
  background-color: rgba(238, 238, 238, 0.2);
}
.grid-border {
  border-color: rgba(116, 116, 116, 0.3);
}
.grid-text-past {
  color: rgba(238, 238, 238, 0.9);
}
.grid-text-active {
  color: rgba(238, 238, 238, 0.9);
}
.grid-text-now {
  color: rgba(238, 238, 238, 0.9);
}
.grid-text-feature {
  color: rgba(238, 238, 238, 0.9);
}
.grid-active-channel:after {
  display: block;
  position: absolute;
  width: 0.5rem;
  height: 100%;
  content: "";
  background-color: #7ebb0a;
  left: 0;
}
.grid-placeholder {
  z-index: 50;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
          animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  background-color: #292929;
  background: linear-gradient(to right, #292929 8%, #444444 18%, #292929 33%);
  background-size: 800px 104px;
}
@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
base-home-item-menu,
.base-home-item-menu {
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-duration: 150ms;
}
base-home-item-menu.focus .label,
.base-home-item-menu.focus .label {
  color: #7ebb0a;
}
base-home-item-menu .label,
.base-home-item-menu .label {
  left: 0;
  right: 0;
  text-align: center;
  margin-bottom: -0.8rem;
  bottom: 50%;
}
base-home-item-menu .icon,
.base-home-item-menu .icon {
  transform-origin: bottom;
  transition-property: transform;
  transition-duration: 150ms;
  background-position: center bottom;
  top: 0.5rem;
  bottom: 2.5rem;
  left: 2rem;
  right: 2rem;
}
base-home-item-menu .message-counter,
.base-home-item-menu .message-counter {
  right: 1.5rem;
  top: 0.8rem;
}
base-home-item-menu.label-with-icon .label,
.base-home-item-menu.label-with-icon .label {
  margin-bottom: 0;
  bottom: 0.5rem;
}
base-home-item-menu.icon-center .icon,
.base-home-item-menu.icon-center .icon {
  background-position: center center;
}
base-home-item-menu.focus,
.base-home-item-menu.focus {
  transform: scale(1.2);
  color: #7ebb0a;
  background-color: rgba(0, 0, 0, 0);
}
base-home-item-menu.show-back, base-home-item-menu.focus.show-back,
.base-home-item-menu.show-back,
.base-home-item-menu.focus.show-back {
  background-color: rgb(55, 56, 56);
}
base-home-item-menu.label-without-icon,
.base-home-item-menu.label-without-icon {
  text-align: center;
  background-color: transparent;
}
base-home-item-menu.label-without-icon .label,
.base-home-item-menu.label-without-icon .label {
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}
base-home-item-menu.label-without-icon.focus .label,
.base-home-item-menu.label-without-icon.focus .label {
  background-color: #7ebb0a;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
}
base-home-item-menu .message-notification,
.base-home-item-menu .message-notification {
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  background-color: rgba(55, 56, 56, 0.8);
  border-radius: 1rem;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
  top: -0.5rem;
  right: 0rem;
  position: absolute;
  display: inline-block;
}
base-tv {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
base-tv .filters-grid,
base-tv .subfilters-grid {
  top: 4rem;
}
.design-2 base-tv .filters-grid,
.design-2 base-tv .subfilters-grid {
  top: 2.3rem;
}
.design-2 base-tv base-item-filter:not(.with-icon-left) {
  padding-left: 1.5rem;
}
.design-2 base-tv .reset-all-filters-grid-item,
.design-2 base-tv .reset-subfilters-grid-item {
  padding-left: 3.7rem !important;
}
.design-2 base-tv .reset-all-filters-grid-item > .filter-item-icon,
.design-2 base-tv .reset-subfilters-grid-item > .filter-item-icon {
  left: 1.2rem !important;
}
.design-2 base-tv .subfilters-grid {
  margin-left: 0 !important;
}
base-tv-program-details .program-items-wrapper .name {
  height: 2.7rem;
}
base-tv-program-details .program-items-wrapper .image {
  margin-top: 1rem;
}
.design-2 base-tv-program-details .program-items-wrapper .image {
  margin-top: 0;
}
.design-2 base-tv-program-details .program-items-wrapper .name {
  margin-top: 1rem;
}
.design-2 base-tv-program-details .name {
  font-weight: bold;
}
base-channels-programs {
  height: 100%;
}
base-channels-programs .channels-grid-wrapper {
  left: 0;
  overflow: hidden;
  z-index: 30;
  top: 0;
  bottom: -3.75rem;
}
base-channels-programs .channels-grid-wrapper sml-nav-grid {
  top: 0;
  bottom: 0;
  left: 3rem;
  right: 0;
}
base-channels-programs.wide-channel .channels-grid-wrapper {
  top: 3rem;
}
base-channels-programs .scrollbar {
  z-index: 10;
  top: 3rem;
  bottom: 0;
}
base-channels-programs .programs-grid-wrapper {
  bottom: -3.75rem;
  z-index: 30;
  overflow: hidden;
  top: 5rem;
}
base-channels-programs .programs-grid-wrapper sml-nav-grid {
  top: 0;
}
base-channels-programs.tv-pane .programs-grid-wrapper {
  top: 5.4rem;
}
base-channels-programs .date-header {
  top: 0.8125rem;
}
base-channels-programs.tv-pane .programs-selected .cursor-line-channel,
base-channels-programs.tv-pane .programs-selected .cursor-line-tri {
  visibility: hidden;
}
base-channels-programs.tv-pane .programs-scrollbar {
  visibility: hidden;
}
base-channels-programs .cursor-line {
  top: 18.9rem;
}
base-channels-programs.tv-pane .cursor-line {
  top: 19.5rem;
}
base-channels-programs .cursor-circle {
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  position: absolute;
  left: 2.3rem;
  top: -1rem;
  z-index: 3;
  background-color: #7ebb0a;
}
base-channels-programs .cursor-circle.active {
  background-color: #7ebb0a;
}
base-channels-programs .cursor-line-channel {
  height: 4rem;
  position: absolute;
}
base-channels-programs .cursor-line-tri {
  display: none;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left-width: 1rem;
  border-left-style: solid;
  margin-left: -1px;
  z-index: 3;
  border-left-color: #7ebb0a;
}
base-channels-programs .cursor-line-program {
  height: 4rem;
  position: absolute;
}
base-channels-programs .cursor-line-channel,
base-channels-programs .cursor-line-program {
  background-color: rgba(238, 238, 238, 0.2);
  z-index: 2;
}
base-channels-programs .cursor-line-channel.active,
base-channels-programs .cursor-line-program.active {
  background-color: #7ebb0a;
}
.design-2 base-channels-programs .channels-grid-wrapper,
.design-2 base-channels-programs .programs-grid-wrapper,
.design-2 base-channels-programs .scrollbar {
  top: 2.3rem !important;
}
.design-2 base-channels-programs .scrollbar {
  z-index: 40 !important;
}
.design-2 base-channels-programs .date-header {
  top: -1rem;
}
base-movies {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
base-movies.reset-subfilters-at-bottom .reset-subfilters-button {
  display: none;
}
base-movies:not(.reset-subfilters-at-bottom) app-movies-sub-filter {
  margin-top: 4.5rem;
}
base-movies .feeds-wrapper {
  left: 3rem;
}
base-movies .feeds-wrapper .arrow-left {
  transform: translateX(-3rem);
}
base-movies .filters-grid,
base-movies .subfilters-grid {
  top: 4rem;
}
base-movies .reset-subfilters-grid-item,
base-movies .reset-all-filters-grid-item {
  font-weight: bold;
  color: #cccccc;
  transform: translateY(2rem);
}
base-movies.filters-selected #openFilters .icon:after,
base-movies.filters-selected #openFilters .icon-active:after {
  content: "•";
  color: #d5302c;
  position: absolute;
  right: 0;
  top: -30%;
}
base-movies .quick-filters-pane {
  left: 7rem;
  right: 8rem;
}
base-movies .movies-grid {
  left: 7rem;
  right: 6.5rem;
}
.design-2 base-movies .filters-grid,
.design-2 base-movies .subfilters-grid {
  top: 1.5rem;
}
.design-2 base-movies base-item-filter:not(.with-icon-left) {
  padding-left: 1.5rem;
}
.design-2 base-movies .reset-all-filters-grid-item,
.design-2 base-movies .reset-subfilters-grid-item {
  padding-left: 3.7rem !important;
}
.design-2 base-movies .reset-all-filters-grid-item > .filter-item-icon,
.design-2 base-movies .reset-subfilters-grid-item > .filter-item-icon {
  left: 1.2rem !important;
}
.design-2 base-movies .subfilters-grid {
  margin-left: 0 !important;
}
body,
html,
#root,
storybook-dynamic-app-root,
storybook-dynamic-app-root > ng-component {
  margin: 0;
  padding: 0;
  position: initial;
  overflow: hidden;
}
app-setup-wizard-wrapper,
.popup-fullscreen .popup-bg,
.app-background {
  background: rgb(0, 0, 0);
}
* {
  position: absolute;
  -webkit-user-select: none;
          user-select: none;
  outline: none;
}
.disable-animation *,
.disable-animation-force * {
  transition: none !important;
  transition-duration: 0s !important;
  -webkit-animation: none !important;
          animation: none !important;
  -webkit-animation-duration: 0s !important;
          animation-duration: 0s !important;
}
.player-container {
  position: relative;
  height: 100%;
  margin: 0 auto;
}
.video-container,
.ads-container,
.video-container > *,
.blackout-image {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.video-container > video {
  background-color: black;
}
.banner-trailer {
  transform: translate(0, -7rem);
}
.trailer-background {
  background-repeat: repeat-x !important;
  background-size: contain;
  background-position: top center;
  position: absolute;
  top: 0;
  height: 45rem;
  left: 0;
  right: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
.trailer-after-background {
  background-color: #000;
  position: absolute;
  bottom: 0;
  top: 45rem;
  left: 0;
  right: 0;
  pointer-events: none;
}
.banner-full-width {
  object-fit: fill !important;
}
span,
strong {
  position: initial;
}
#docs-root {
  position: initial;
}
#docs-root * {
  position: initial;
}
body.app,
html.app {
  font-size: 16px;
  font-family: "RobotoFont", "MardotoFont", sans-serif;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  margin: auto;
  padding: 0;
  color: #fff;
  background-color: #000;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  line-height: 1.3;
}
body.app.design-2,
html.app.design-2 {
  font-family: "RobotoFont", "MardotoFont", sans-serif;
}
body.app.device-phone, body.app.device-tablet,
html.app.device-phone,
html.app.device-tablet {
  font-family: "ProximaFont", "MardotoFont", sans-serif;
}
body.device-type-kreatv4stb,
body.device-type-kreatv4205stb {
  font-family: sans-serif !important;
}
body.device-type-kreatv4stb.design-2,
body.device-type-kreatv4205stb.design-2 {
  font-family: sans-serif !important;
}
body.device-type-kreatv4stb.device-phone, body.device-type-kreatv4stb.device-tablet,
body.device-type-kreatv4205stb.device-phone,
body.device-type-kreatv4205stb.device-tablet {
  font-family: sans-serif !important;
}
body.platform-type-wscobalt, body.platform-type-appletv, body.platform-type-amino {
  background-color: transparent;
}
body.platform-type-wscobalt .video-container > video, body.platform-type-appletv .video-container > video, body.platform-type-amino .video-container > video {
  background-color: transparent !important;
}
html.app {
  background-color: transparent;
}
#app-root-preloader,
app-root {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  font-size: 1.25rem;
}
.app-markup-preload {
  z-index: 999;
  background-color: #000;
}
.device-mobile .app-markup-preload,
.device-phone .app-markup-preload {
  background-color: #000 !important;
}
.splash-logo-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
}
.splash-logo {
  position: absolute;
  height: 10rem;
  width: 20rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url('images/splashes/logo.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
}
.device-mobile .splash-logo {
  top: 40%;
  width: 13rem;
  height: 14rem;
  background-image: url('images/splashes/logo_mobile.png');
}
.splash-progress-bar {
  position: absolute;
  height: 0.4rem;
  width: 20rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-top: 7rem;
  background-color: rgba(126, 187, 10, 0.2);
  border-radius: 0.2rem;
}
.device-mobile .splash-progress-bar {
  top: 40%;
  width: 13rem;
  margin-top: 9rem;
}
.ucom .device-mobile .splash-logo {
  width: 14rem;
  height: 18rem;
}
.ucom .device-mobile .splash-progress-bar {
  margin-top: 12rem;
}
.starnet .device-mobile .splash-logo {
  width: 22rem;
  height: 18rem;
}
.starnet .device-mobile .splash-progress-bar {
  width: 15rem;
  margin-top: 12rem;
}
.progress-bar {
  height: 0.4rem;
  background-color: rgba(126, 187, 10, 0.2);
  border-radius: 0.2rem;
}
.progress-bar-fill {
  height: 100%;
  width: 5%;
  left: 0;
  background-color: #7ebb0a;
  border-radius: 0.2rem;
}
.progress-bar-fill-itermediate {
  height: 100%;
  width: 35%;
  left: 0;
  background-color: #7ebb0a;
  border-radius: 0.2rem;
  -webkit-animation-name: intermediateProgress;
          animation-name: intermediateProgress;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
@-webkit-keyframes intermediateProgress {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(185%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes intermediateProgress {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(185%);
  }
  100% {
    transform: translateX(0);
  }
}
.browser.medianet .splash-logo {
  background-image: url('images/splashes/logo_web.png');
}
.webos.medianet .splash-logo,
.tizen.medianet .splash-logo,
.hisense.medianet .splash-logo,
.hisense.cobalt.androidtv .splash-logo {
  background-image: url('images/splashes/logo_lite.png');
}
storybook-dynamic-app-root > ng-component {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 16px;
  font-family: "RobotoFont", "MardotoFont", sans-serif;
  color: #eeeeee;
}
.design-2 storybook-dynamic-app-root > ng-component {
  font-family: "RobotoFont", "MardotoFont", sans-serif;
}
.device-phone storybook-dynamic-app-root > ng-component,
.device-tablet storybook-dynamic-app-root > ng-component {
  font-family: "ProximaFont", "MardotoFont", sans-serif;
}
.app-markup,
.app-markup-storybook {
  bottom: 0;
  height: 45rem;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  width: 80rem;
  text-align: initial;
  position: absolute;
  overflow: hidden;
}
.device-tablet .app-markup,
.device-tablet .app-markup-storybook,
.device-phone .app-markup,
.device-phone .app-markup-storybook {
  height: 100%;
  width: 100%;
}
.app-markup-storybook {
  outline: 1px solid red;
}
.shaka-text-container * {
  position: static;
}
.shaka-text-container,
#subtitle-block-text {
  position: absolute;
  bottom: 2rem;
  left: 0rem;
  right: 0rem;
  text-align: center;
  -webkit-writing-mode: horizontal-tb;
          writing-mode: horizontal-tb;
  color: rgb(255, 255, 255);
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
  font-size: 2.3333rem;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0;
  text-decoration: none;
  pointer-events: none;
  -webkit-user-select: none;
  word-break: break-word;
  white-space: pre;
}
.shaka-text-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.shaka-text-container div {
  width: 100%;
  position: static;
}
#subtitle-block {
  position: absolute;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.component-markup-storybook {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.debug {
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.8);
}
.simple-grid .nav-grid-item {
  height: auto !important;
  transform: initial !important;
  position: relative !important;
}
.simple-grid .nav-grid-item > * {
  position: relative;
  display: block;
  white-space: normal;
}
.device-mobile .live-badge {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #d5302c;
}
app-authorize,
app-setup-wizard-wrapper,
.popup-fullscreen .popup-bg,
.app-background {
  background: rgb(0, 0, 0);
}
