
/* Breakpoints */
/* Common Mixins */
/*
 * SVG styles and reset.
 * Pointer events are set to none due to an IE event.
 * Wrap all SVGs in a container and bind events to that container
 */
 #riotbar-bar svg, #riotbar-subbar .riotbar-footer svg, #riotbar-application-switcher svg {
    pointer-events: none;
  }
  #riotbar-bar svg.hide, #riotbar-subbar .riotbar-footer svg.hide, #riotbar-application-switcher svg.hide {
    display: none;
  }
  #riotbar-bar svg.block, #riotbar-subbar .riotbar-footer svg.block, #riotbar-application-switcher svg.block {
    display: block;
  }
  #riotbar-bar svg.inline-block, #riotbar-subbar .riotbar-footer svg.inline-block, #riotbar-application-switcher svg.inline-block {
    display: inline-block;
  }
  #riotbar-bar svg.float-left, #riotbar-subbar .riotbar-footer svg.float-left, #riotbar-application-switcher svg.float-left {
    float: left;
  }
  #riotbar-bar svg.float-right, #riotbar-subbar .riotbar-footer svg.float-right, #riotbar-application-switcher svg.float-right {
    float: right;
  }
  #riotbar-bar svg use, #riotbar-subbar .riotbar-footer svg use, #riotbar-application-switcher svg use {
    pointer-events: none;
  }
  
  .riotbar-root {
    position: static;
  }
  
  body.riotbar-present {
    margin: 0px;
    overflow-x: hidden;
    padding: 0px;
    position: static;
    margin-top: 80px;
  }
  
  .riotbar-clearfix {
    zoom: 1;
    /* ie 6/7 */
  }
  .riotbar-clearfix:before, .riotbar-clearfix:after {
    content: "";
    display: table;
  }
  .riotbar-clearfix:after {
    clear: both;
  }
  
  .riotbar-base-element {
    /* RiotBar Reset
       based on Eric Meyer's CSS Reset, but targeted within .riotbar
          - http://meyerweb.com/eric/tools/css/reset/
       Note
         - removed html & body selectors, which don't apply for .riotbar
         - To optimize the generated css, we have commented out some unused selectors
    */
    /* HTML5 display-role reset for older browsers */
    /*
      @TODO: do we want to size some things to the size of the content?
      - the locale switcher would be a good example of something where this would apply.
  
      We can creat a new class like this which can be applied to elements like the `riotbar-subbar` ...
         ... which perhaps should be renamed the `riotbar-document-bar`
  
      .riotbar-docwidth {
        width: 1000px;
        width: 100%;
        margin: 0 auto;
        padding: 0 10px;
      }
  
      This width attribute of this css would then become a configuration option,
      which apps could override.  We would use js to set the width property of the class.
      This way our templates and css can easily adapt to the various desktop page widths that we encounter.
      The configuration option might not be a simple width.  Perhaps, if we provide a breakpoint declaration
      system in the configs, then we cana more complex breakpoint system rule s
  
  
     */
  }
  .riotbar-base-element,
  .riotbar-base-element div, .riotbar-base-element span,
  .riotbar-base-element h1, .riotbar-base-element h2, .riotbar-base-element h3, .riotbar-base-element h4, .riotbar-base-element h5, .riotbar-base-element h6,
  .riotbar-base-element a,
  .riotbar-base-element img,
  .riotbar-base-element ol, .riotbar-base-element ul, .riotbar-base-element li,
  .riotbar-base-element strong, .riotbar-base-element em {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    vertical-align: baseline;
    /* prevent text selection */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Fix webkit fonts */
    -webkit-font-smoothing: antialiased;
  }
  .riotbar-base-element:lang(ar),
  .riotbar-base-element div:lang(ar), .riotbar-base-element span:lang(ar),
  .riotbar-base-element h1:lang(ar), .riotbar-base-element h2:lang(ar), .riotbar-base-element h3:lang(ar), .riotbar-base-element h4:lang(ar), .riotbar-base-element h5:lang(ar), .riotbar-base-element h6:lang(ar),
  .riotbar-base-element a:lang(ar),
  .riotbar-base-element img:lang(ar),
  .riotbar-base-element ol:lang(ar), .riotbar-base-element ul:lang(ar), .riotbar-base-element li:lang(ar),
  .riotbar-base-element strong:lang(ar), .riotbar-base-element em:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-base-element:lang(ru), .riotbar-base-element:lang(vi), .riotbar-base-element:lang(vn), .riotbar-base-element:lang(el), .riotbar-base-element:lang(gr), .riotbar-base-element:lang(th),
  .riotbar-base-element div:lang(ru),
  .riotbar-base-element div:lang(vi),
  .riotbar-base-element div:lang(vn),
  .riotbar-base-element div:lang(el),
  .riotbar-base-element div:lang(gr),
  .riotbar-base-element div:lang(th), .riotbar-base-element span:lang(ru), .riotbar-base-element span:lang(vi), .riotbar-base-element span:lang(vn), .riotbar-base-element span:lang(el), .riotbar-base-element span:lang(gr), .riotbar-base-element span:lang(th),
  .riotbar-base-element h1:lang(ru),
  .riotbar-base-element h1:lang(vi),
  .riotbar-base-element h1:lang(vn),
  .riotbar-base-element h1:lang(el),
  .riotbar-base-element h1:lang(gr),
  .riotbar-base-element h1:lang(th), .riotbar-base-element h2:lang(ru), .riotbar-base-element h2:lang(vi), .riotbar-base-element h2:lang(vn), .riotbar-base-element h2:lang(el), .riotbar-base-element h2:lang(gr), .riotbar-base-element h2:lang(th), .riotbar-base-element h3:lang(ru), .riotbar-base-element h3:lang(vi), .riotbar-base-element h3:lang(vn), .riotbar-base-element h3:lang(el), .riotbar-base-element h3:lang(gr), .riotbar-base-element h3:lang(th), .riotbar-base-element h4:lang(ru), .riotbar-base-element h4:lang(vi), .riotbar-base-element h4:lang(vn), .riotbar-base-element h4:lang(el), .riotbar-base-element h4:lang(gr), .riotbar-base-element h4:lang(th), .riotbar-base-element h5:lang(ru), .riotbar-base-element h5:lang(vi), .riotbar-base-element h5:lang(vn), .riotbar-base-element h5:lang(el), .riotbar-base-element h5:lang(gr), .riotbar-base-element h5:lang(th), .riotbar-base-element h6:lang(ru), .riotbar-base-element h6:lang(vi), .riotbar-base-element h6:lang(vn), .riotbar-base-element h6:lang(el), .riotbar-base-element h6:lang(gr), .riotbar-base-element h6:lang(th),
  .riotbar-base-element a:lang(ru),
  .riotbar-base-element a:lang(vi),
  .riotbar-base-element a:lang(vn),
  .riotbar-base-element a:lang(el),
  .riotbar-base-element a:lang(gr),
  .riotbar-base-element a:lang(th),
  .riotbar-base-element img:lang(ru),
  .riotbar-base-element img:lang(vi),
  .riotbar-base-element img:lang(vn),
  .riotbar-base-element img:lang(el),
  .riotbar-base-element img:lang(gr),
  .riotbar-base-element img:lang(th),
  .riotbar-base-element ol:lang(ru),
  .riotbar-base-element ol:lang(vi),
  .riotbar-base-element ol:lang(vn),
  .riotbar-base-element ol:lang(el),
  .riotbar-base-element ol:lang(gr),
  .riotbar-base-element ol:lang(th), .riotbar-base-element ul:lang(ru), .riotbar-base-element ul:lang(vi), .riotbar-base-element ul:lang(vn), .riotbar-base-element ul:lang(el), .riotbar-base-element ul:lang(gr), .riotbar-base-element ul:lang(th), .riotbar-base-element li:lang(ru), .riotbar-base-element li:lang(vi), .riotbar-base-element li:lang(vn), .riotbar-base-element li:lang(el), .riotbar-base-element li:lang(gr), .riotbar-base-element li:lang(th),
  .riotbar-base-element strong:lang(ru),
  .riotbar-base-element strong:lang(vi),
  .riotbar-base-element strong:lang(vn),
  .riotbar-base-element strong:lang(el),
  .riotbar-base-element strong:lang(gr),
  .riotbar-base-element strong:lang(th), .riotbar-base-element em:lang(ru), .riotbar-base-element em:lang(vi), .riotbar-base-element em:lang(vn), .riotbar-base-element em:lang(el), .riotbar-base-element em:lang(gr), .riotbar-base-element em:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-base-element:lang(ko), .riotbar-base-element:lang(kr),
  .riotbar-base-element div:lang(ko),
  .riotbar-base-element div:lang(kr), .riotbar-base-element span:lang(ko), .riotbar-base-element span:lang(kr),
  .riotbar-base-element h1:lang(ko),
  .riotbar-base-element h1:lang(kr), .riotbar-base-element h2:lang(ko), .riotbar-base-element h2:lang(kr), .riotbar-base-element h3:lang(ko), .riotbar-base-element h3:lang(kr), .riotbar-base-element h4:lang(ko), .riotbar-base-element h4:lang(kr), .riotbar-base-element h5:lang(ko), .riotbar-base-element h5:lang(kr), .riotbar-base-element h6:lang(ko), .riotbar-base-element h6:lang(kr),
  .riotbar-base-element a:lang(ko),
  .riotbar-base-element a:lang(kr),
  .riotbar-base-element img:lang(ko),
  .riotbar-base-element img:lang(kr),
  .riotbar-base-element ol:lang(ko),
  .riotbar-base-element ol:lang(kr), .riotbar-base-element ul:lang(ko), .riotbar-base-element ul:lang(kr), .riotbar-base-element li:lang(ko), .riotbar-base-element li:lang(kr),
  .riotbar-base-element strong:lang(ko),
  .riotbar-base-element strong:lang(kr), .riotbar-base-element em:lang(ko), .riotbar-base-element em:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  .riotbar-base-element ol, .riotbar-base-element ul {
    list-style: none;
  }
  .riotbar-base-element,
  .riotbar-base-element * {
    box-sizing: border-box;
    position: static;
    /* default to ensure overrides from other websites don't mess with us */
  }
  .riotbar-base-element .riotbar-pagewidth {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
  }
  .riotbar-base-element a,
  .riotbar-base-element a:link,
  .riotbar-base-element a:visited {
    text-decoration: none;
    color: #F9F9F9;
  }
  
  #riotbar-bar-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    border: 0;
    width: 100%;
  }
  #riotbar-bar-wrapper.riotbar-sticky {
    position: fixed;
    z-index: 10000;
  }
  
  #riotbar-bar {
    background-color: #111111;
    border-bottom: 2px solid #333333;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    font-size: 14px !important;
    font-weight: bold;
    height: 80px;
    line-height: normal;
    position: relative;
    text-align: left;
    width: 100%;
    z-index: 1;
  }
  #riotbar-bar .sub-menu-header-icon {
    color: #F9F9F9;
    display: inline-block;
  }
  #riotbar-bar .sub-menu-header-icon svg, #riotbar-bar .sub-menu-header-icon span {
    display: none;
    float: left;
  }
  #riotbar-bar:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-bar:lang(ru), #riotbar-bar:lang(vi), #riotbar-bar:lang(vn), #riotbar-bar:lang(el), #riotbar-bar:lang(gr), #riotbar-bar:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-bar:lang(ko), #riotbar-bar:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-bar .riotbar-navbar-separator {
    border-left: 2px solid #7E7E7E;
    display: inline-block;
    font-size: 14px;
    height: 30px;
    margin-left: 0.25em;
    margin-right: 0.25em;
    margin-top: 24px;
    vertical-align: top;
    opacity: 0.4;
  }
  #riotbar-bar .riotbar-navbar-separator.riotbar-title-separator {
    margin-right: 0.85em;
  }
  #riotbar-bar .riotbar-bar-content {
    text-align: center;
    height: 80px;
    flex: 1;
  }
  @media (max-width: 1024px) {
    #riotbar-bar .riotbar-bar-content {
      padding-left: 0;
    }
  }
  #riotbar-bar .riotbar-left-content, #riotbar-bar .riotbar-content {
    opacity: 1;
    transition: opacity 0.5s cubic-bezier(0.06, 0.81, 0, 0.98) 0s;
  }
  #riotbar-bar .riotbar-left-content {
    height: 80px;
    padding-top: 15px;
    padding-right: 30px;
  }
  @media (max-width: 1024px) {
    #riotbar-bar .riotbar-left-content {
      padding-right: 0;
    }
  }
  #riotbar-bar .riotbar-left-content:lang(ar) {
    padding-right: 10px;
    padding-left: 15px;
  }
  #riotbar-bar.sidebar-open .riotbar-bar-content, #riotbar-bar.sidebar-open .riotbar-left-content {
    opacity: 0.25;
  }
  #riotbar-bar .riotbar-right-mobile-content {
    display: none;
    right: 70px;
  }
  @media (max-width: 1024px) {
    #riotbar-bar .riotbar-right-mobile-content {
      display: block;
    }
    #riotbar-bar .riotbar-right-mobile-content #riotbar-service-status-messages {
      right: -10px;
    }
  }
  #riotbar-bar .riotbar-right-content, #riotbar-bar .riotbar-right-mobile-content {
    bottom: 0;
    top: 0;
  }
  @media (max-width: 1024px) {
    #riotbar-bar.riotbar-mobile-responsive .riotbar-right-content .riotbar-navmenu-dropdown {
      transform: translateX(100%);
      width: 315px;
      overflow-y: auto;
    }
  }
  #riotbar-bar .riotbar-right-content {
    padding-right: 16px;
    right: 0px;
  }
  @media (max-width: 1024px) {
    #riotbar-bar .riotbar-right-content {
      padding-right: 0;
      /* display:none; */
    }
    #riotbar-navmenu .riotbar-logo{
      margin-left: 10px;
    }
    #riotbar-bar .riotbar-right-content #riotbar-service-status, #riotbar-bar .riotbar-right-content #riotbar-account {
      display: none;
    }
  }
  #riotbar-bar .riotbar-right-content .riotbar-right-content-icons {
    margin: 0px 12px;
    float: left;
    white-space: nowrap;
    color: #F9F9F9;
  }
  #riotbar-bar .riotbar-right-content .riotbar-right-content-icons > div {
    float: left;
    padding: 0 8px;
  }
  #riotbar-bar .riotbar-right-content .riotbar-right-content-icons .lang-switch-trigger {
    cursor: pointer;
    display: block;
  }
  #riotbar-bar .riotbar-right-content .riotbar-right-content-icons:lang(ar) {
    float: right;
  }
  #riotbar-bar .riotbar-right-content .riotbar-right-content-icons .riotbar-navmenu-right-icon {
    float: left;
  }
  #riotbar-bar .riotbar-right-content .riotbar-right-content-icons .riotbar-navmenu-right-icon .lang-switch-trigger svg {
    margin-top: 32px;
    pointer-events: none;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown {
    background: #212121;
    border-top: 2px solid #262626;
    box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    opacity: 0;
    overflow: visible;
    padding-bottom: 18px;
    position: fixed;
    height: 100%;
    text-align: left;
    transform: translateY(-5%);
    top: 0px;
    right: 0;
    visibility: hidden;
    width: 460px;
    z-index: 10;
    transition: transform 300ms, opacity 300ms;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .lang-switch-dropdown {
    z-index: 11;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown a {
    padding-left: 18px;
    padding-right: 18px;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown.riotbar-click-active {
    visibility: visible;
    transform: translateX(0%);
    opacity: 1;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown.slide-out {
    visibility: visible;
    transform: translateX(100%);
    opacity: 1;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .sub-menu-header {
    height: 78px;
    background-color: #111111;
    border-bottom: 2px solid #262626;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .sub-menu-header a {
    cursor: pointer;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .sub-menu-header .sub-menu-header-text {
    font-size: 18px;
    position: absolute;
    top: 22px;
    left: 40px;
    color: #F9F9F9;
    text-overflow: ellipsis;
    max-width: 200px;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .sub-menu-header .sub-menu-back {
    position: absolute;
    top: 20px;
    height: 30px;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .sub-menu-header .sub-menu-back svg {
    display: inline-block;
    margin-top: 12px;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .sub-menu-header .sub-menu-close {
    position: absolute;
    top: 21px;
    right: 31px;
    width: 32px;
    height: 32px;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .sub-menu-header .sub-menu-close svg {
    position: absolute;
    top: 0;
    right: 0;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .side-menu-icon {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 10px;
    height: 10px;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-dropdown .side-menu-icon svg {
    display: block;
  }
  #riotbar-bar .riotbar-right-content .riotbar-navmenu-touchpoints, #riotbar-bar .riotbar-right-content .riotbar-navmenu-links {
    transition: opacity 0.2s linear;
  }
  #riotbar-bar .riotbar-right-content.riotbar-click-active .riotbar-navmenu-touchpoints {
    display: block;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    transition: color 1s cubic-bezier(0.06, 0.81, 0, 0.98);
    border-bottom: 1px solid #111111;
    cursor: pointer;
    letter-spacing: 0.1em;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link.disabled {
    color: #7E7E7E;
    cursor: default;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link.disabled svg {
    position: absolute;
    right: 25px;
    top: 25px;
    fill: #7E7E7E;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link.riotbar-active-link {
    background-color: #333333;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link:lang(ar) {
    letter-spacing: 0;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link.riotbar-active-link {
    color: #F9F9F9;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link:last-child {
    margin-bottom: 0;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link.show-auth-sub-menu {
    text-transform: none;
    background-color: #171717;
    letter-spacing: 0;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link.show-auth-sub-menu svg.arrow-down {
    margin-left: 10px;
    margin-bottom: 3px;
    transform: rotate(270deg);
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link .sideMenuIcons {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100px;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link .sideMenuIcons .lang-switch-trigger {
    width: 32px;
    height: 32px;
    position: absolute;
    right: 31px;
    top: 5px;
    padding: 0;
    border-radius: 16px;
    background-color: #212121;
  }
  #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link .sideMenuIcons .lang-switch-trigger svg {
    position: absolute;
    top: 9px;
    left: 9px;
  }
  #riotbar-bar .riotbar-right-content.riotbar-menu-transition .riotbar-navmenu-touchpoints, #riotbar-bar .riotbar-right-content.riotbar-menu-transition .riotbar-navmenu-links {
    opacity: 0;
  }
  #riotbar-bar .riotbar-right-content.riotbar-show-links .riotbar-navmenu-links {
    display: block;
  }
  #riotbar-bar #riotbar-mobile-nav {
    display: none;
    margin-right: 10px;
    margin-left: 10px;
  }
  #riotbar-bar #riotbar-mobile-nav a {
    margin-top: 23px;
    display: inline-block;
    cursor: pointer;
  }
  @media (max-width: 1024px) {
    #riotbar-bar #riotbar-mobile-nav {
      display: inline !important;
    }
  }
  
  #riotbar-subbar {
    position: relative;
    top: 0px;
    width: 100%;
    z-index: 10;
    /* this z-index is questionable, but is required to place it above the lolkit header */
    pointer-events: none;
    text-align: left;
  }
  #riotbar-subbar:lang(ar) {
    direction: rtl;
  }
  #riotbar-subbar .riotbar-subcontent {
    pointer-events: auto;
  }
  
  @media screen and (max-width: 1024px) {
    #riotbar-bar .riotbar-right-content a.riotbar-navmenu-link .sideMenuIcons .lang-switch-trigger {
      top: 12px;
      right: 30px;
    }
  }
  /** Global Keyframes **/
  /* Keyframes */
  /* Basic Fade-in effect */
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-moz-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /* Slide in from left animation */
  @keyframes slideInFromLeft {
    0% {
      left: -76vw;
    }
    100% {
      left: 0;
    }
  }
  @-moz-keyframes slideInFromLeft {
    0% {
      left: -76vw;
    }
    100% {
      left: 0;
    }
  }
  @-webkit-keyframes slideInFromLeft {
    0% {
      left: -76vw;
    }
    100% {
      left: 0;
    }
  }
  #riotbar-navbar {
    display: table;
    font-size: 0;
    height: 80px;
    margin-right: 0;
    max-width: 100%;
    opacity: 1;
    text-align: center;
  }
  @media (max-width: 1024px) {
    #riotbar-navbar {
      display: inline-block;
    }
  }
  #riotbar-navbar.fade-in {
    opacity: 0;
  }
  #riotbar-navbar.fade-in.ready {
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.06, 0.81, 0, 0.98) 0s;
  }
  #riotbar-navbar .link-out,
  #riotbar-navbar .link-out-white {
    margin-left: 4px;
  }
  #riotbar-navbar .link-out:lang(ar),
  #riotbar-navbar .link-out-white:lang(ar) {
    margin-left: 0;
    margin-right: 4px;
  }
  #riotbar-navbar .riotbar-explore-label {
    display: none;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container {
    display: inline-block;
    position: relative;
    height: 80px;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container:lang(ar) {
    direction: rtl;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subsubnav-menu-wrapper {
    position: relative;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subsubnav-menu {
    position: absolute;
    right: 0;
    left: 200px;
    top: 0;
    opacity: 0;
    min-width: 200px;
    background-color: #111111;
    display: none;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subsubnav-menu:lang(ar) {
    right: 200px;
    left: 0;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subsubnav-menu li:hover {
    background-color: #333333;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subsubnav-menu.subsubnav-active {
    opacity: 1;
    display: block;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-subnav-nested-menu {
    background-color: #111111;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-subnav-nested-menu li {
    padding-left: 15px;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 80px;
    background-color: #111111;
    text-align: left;
    font-size: 1rem;
    min-width: 200px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.06, 0.81, 0, 0.98) 0s, visibility 0s;
    display: none;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu li {
    text-align: left;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu li:lang(ar) {
    text-align: right;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu .riotbar-navbar-sub-link {
    padding: 12px 32px;
    width: 100%;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu li {
    color: #1d1d1d;
    border-bottom: solid 2px #111111;
    list-style-type: none;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu li:hover {
    cursor: pointer;
    background-color: #333333;
    color: #ffffff;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu li.no-linkage {
    cursor: default;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-subnav-menu li.no-linkage:hover {
    background-color: #111111;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container .riotbar-navbar-external-link {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-bottom: 5px;
    display: inline-block;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container svg.arrow-down {
    display: inline-block;
    margin-bottom: 1px;
    margin-left: 5px;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container svg.arrow-down:lang(ar) {
    margin-right: 5px;
    margin-left: 0;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container svg.hover {
    display: none;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container:hover svg.non-hover, #riotbar-navbar .riotbar-navbar-navitem-container.nav-dropdown-active svg.non-hover {
    display: none;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container:hover svg.hover, #riotbar-navbar .riotbar-navbar-navitem-container.nav-dropdown-active svg.hover {
    display: inline-block;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container.nav-dropdown-active .riotbar-navbar-subnav-menu {
    transition: opacity 0.5s cubic-bezier(0.06, 0.81, 0, 0.98) 0s, visibility 0s;
    opacity: 1;
    visibility: visible;
    display: block;
  }
  #riotbar-navbar .riotbar-navbar-navitem-container.nav-dropdown-overflow.hide {
    display: none;
  }
  #riotbar-navbar a {
    border-bottom: 2px solid transparent;
    color: #F9F9F9;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    line-height: 76px;
    margin: 0 0.85em;
    overflow: hidden;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 2px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 1s cubic-bezier(0.06, 0.81, 0, 0.98), border-color 0.5s cubic-bezier(0.06, 0.81, 0, 0.98);
  }
  #riotbar-navbar a:lang(ar) {
    letter-spacing: 0;
  }
  #riotbar-navbar a.riotbar-navbar-title {
    font-size: 18px;
    color: #F9F9F9;
    line-height: 80px;
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
    border: none;
  }
  #riotbar-navbar a.riotbar-navbar-title.mobile {
    display: none;
  }
  @media (max-width: 1024px) {
    #riotbar-navbar a.riotbar-navbar-title {
      display: none;
    }
    #riotbar-navbar a.riotbar-navbar-title.mobile {
      display: inline-block;
      margin-left: 20px;
      margin-right: 0;
      padding-right: 0;
      margin-top: -6px;
      vertical-align: middle;
    }
  }
  #riotbar-navbar a.riotbar-active-link {
    color: #F9F9F9;
  }
  #riotbar-navbar.riotbar-fade-left {
    margin-right: 10%;
    opacity: 0;
  }
  #riotbar-navbar.riotbar-fade-right {
    margin-right: -10%;
    opacity: 0;
  }
  @media (max-width: 1115px) {
    #riotbar-navbar a {
      margin: 0 0.6375em;
    }
    #riotbar-navbar .riotbar-navbar-separator.riotbar-title-separator {
      margin-right: 0.6375em;
    }
  }
  @media (max-width: 1024px) {
    #riotbar-navbar {
      position: static;
    }
    #riotbar-navbar .riotbar-navbar-separator,
  #riotbar-navbar .riotbar-navbar-link,
  #riotbar-navbar .riotbar-navbar-navitem-container {
      display: none;
    }
    #riotbar-navbar .riotbar-explore-label {
      display: block;
      line-height: 80px;
      height: 80px;
    }
    #riotbar-navbar .riotbar-explore-label svg {
      display: block;
      margin: 24px auto 0;
      max-height: 50px;
    }
    #riotbar-navbar .riotbar-explore-label img {
      max-height: 50px;
      vertical-align: middle;
      display: inline-block;
    }
  }
  #riotbar-navbar .riotbar-navbar-sub-link {
    border: none;
    line-height: 1.5em;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
  }
  
  #riotbar-navmenu {
    color: #F9F9F9;
    font-size: 14px;
    height: 50px;
  }
  #riotbar-navmenu .riotbar-explore {
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    font-weight: bold;
    height: 50px;
    line-height: 1;
    min-width: 36px;
  }
  #riotbar-navmenu .riotbar-logo {
    position: relative;
    display: inline-block;
    height: 50px;
    margin-left: 32px;
    width: 75px;
  }
  #riotbar-navmenu .riotbar-logo .riot-bar-fist-logo {
    width: 160px;
    height: 160px;
    background: url("https://lolstatic-a.akamaihd.net/riotbar/live/1.1.5/images/navigation/fistsprite.png") 0 -2400px no-repeat;
    transition: background-position 0.25s steps(15, end);
    transform: scale(0.33);
    position: absolute;
    top: -55px;
    left: -55px;
  }
  #riotbar-navmenu .riotbar-logo .riot-bar-fist-logo:hover, .riotbar-application-switcher-open #riotbar-navmenu .riotbar-logo .riot-bar-fist-logo {
    background-position: 0 0;
  }
  #riotbar-navmenu .riotbar-logo svg {
    position: absolute;
    top: 3px;
    left: 51px;
  }
  #riotbar-navmenu .riotbar-logo svg.hover {
    display: none;
  }
  #riotbar-navmenu .riotbar-logo svg.drop {
    margin-top: 22px !important;
    margin-bottom: 0;
    margin-left: 5px;
  }
  #riotbar-navmenu .riotbar-logo:hover svg.hover {
    display: inline-block;
  }
  #riotbar-navmenu .riotbar-logo:hover svg.non-hover {
    display: none;
  }
  #riotbar-navmenu .riotbar-navbar-separator.main-logo-separator {
    margin-left: 0;
    margin-right: 32px;
    margin-top: 10px;
  }
  #riotbar-navmenu .riotbar-navbar-separator.main-logo-separator:lang(ar) {
    margin-right: 0;
    margin-left: 32px;
  }
  @media (max-width: 1024px) {
    #riotbar-navmenu .riotbar-navbar-separator.main-logo-separator {
      display: none;
    }
  }
  #riotbar-navmenu .second-logo {
    display: inline-block;
    height: 50px;
  }
  #riotbar-navmenu .second-logo a {
    min-width: 38px;
    display: block;
  }
  #riotbar-navmenu .second-logo svg {
    margin-top: 9px;
    display: block;
  }
  @media (max-width: 1024px) {
    .riotbar-mobile-responsive #riotbar-navmenu {
      content: "sidebar";
    }
    .riotbar-mobile-responsive #riotbar-navmenu .second-logo {
      display: none;
    }
  }
  
  #riotbar-bar {
    border-bottom: 2px solid rgba(51, 51, 51, 0.25);
    display: -ms-flexbox;
    display: flex;
  }
  #riotbar-bar .riotbar-navmenu-category {
    overflow: visible;
    position: relative;
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
  }
  #riotbar-bar .riotbar-navmenu-category .black-side-menu-option {
    background-color: #111111 !important;
  }
  #riotbar-bar .riotbar-navmenu-category .riotbar-category-name {
    color: #f1e6d0;
    font-size: 14px;
    margin-bottom: 9px;
    text-transform: uppercase;
  }
  #riotbar-bar .riotbar-navmenu-category:before, #riotbar-bar .riotbar-navmenu-category:after {
    content: " ";
    display: table;
  }
  #riotbar-bar .riotbar-navmenu-category:after {
    clear: both;
  }
  
  #riotbar-account {
    float: left;
    white-space: nowrap;
  }
  #riotbar-account:after {
    clear: both;
  }
  #riotbar-account .riotbar-account-anonymous-link-wrapper {
    display: inline-block;
    height: 80px;
  }
  #riotbar-account .riotbar-anonymous-link {
    cursor: pointer;
    display: inline-block;
    margin: 20px 15px;
    transition: color 300ms cubic-bezier(0.06, 0.81, 0, 0.98);
    vertical-align: middle;
    font-size: 12px;
    text-transform: uppercase;
  }
  #riotbar-account .riotbar-anonymous-link.theme-button {
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    border-radius: 2px;
    line-height: 16px;
    height: 41px;
    padding: 12px 0;
    position: relative;
    min-width: 129px;
    max-width: 220px;
    z-index: 0;
    text-overflow: ellipsis;
  }
  #riotbar-account .riotbar-anonymous-link.theme-button:hover:before {
    opacity: 1;
  }
  .i18n-hu #riotbar-account .riotbar-anonymous-link.theme-button {
    font-size: 12px;
    letter-spacing: -0.6px;
  }
  #riotbar-account .riotbar-summoner-name {
    color: #F9F9F9;
    font-size: 16px;
    margin-top: 7px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  }
  #riotbar-account .riotbar-summoner-name:lang(ar) {
    line-height: 1.4em;
  }
  @media (max-width: 640px) {
    .riotbar-mobile-responsive #riotbar-account .riotbar-anonymous-link {
      display: none;
    }
    .riotbar-mobile-responsive #riotbar-account .riotbar-anonymous-link.riotbar-account-action {
      display: inline-block;
    }
  }
  
  #riotbar-account-bar {
    cursor: pointer;
    float: right;
    height: 80px;
    margin-top: 0;
    padding-top: 23px;
    padding-right: 16px;
    padding-left: 16px;
  }
  #riotbar-account-bar .riotbar-summoner-info {
    float: left;
    margin: -3px 0 -10px 0;
  }
  #riotbar-account-bar .riotbar-summoner-info svg {
    margin-left: 11px;
    margin-bottom: 2px;
    transition: transform 0.25s ease-out;
  }
  #riotbar-account-bar.active .riotbar-summoner-info svg {
    transform: rotate(180deg);
  }
  .riotbar-not-responsive #riotbar-account-bar:hover .riotbar-summoner-info svg {
    transform: rotate(180deg);
  }
  @media (min-width: 1025px) {
    .riotbar-mobile-responsive #riotbar-account-bar:hover .riotbar-summoner-info svg, .riotbar-mobile-responsive #riotbar-account-bar.YES .riotbar-summoner-info svg {
      transform: rotate(180deg);
    }
  }
  @media (max-width: 640px) {
    .riotbar-mobile-responsive #riotbar-account-bar {
      border-left: none;
    }
    .riotbar-mobile-responsive #riotbar-account-bar .riotbar-summoner-info {
      display: none;
    }
  }
  
  #riotbar-account-dropdown-plugins {
    height: 50px;
    position: absolute;
    right: 0;
    top: 12px;
  }
  
  #riotbar-account-dropdown {
    background: #111;
    border-top: 1px solid #262626;
    box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.5);
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    text-align: left;
    transform: translateY(-5%);
    transition: transform 300ms, opacity 300ms;
    top: 79px;
    right: 0;
    visibility: hidden;
    z-index: 10;
  }
  #riotbar-account-dropdown:lang(ar) {
    left: 0;
    right: auto;
  }
  #riotbar-account-dropdown .riotbar-account-info {
    border-bottom: 1px solid #262626;
    display: none;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
  #riotbar-account-dropdown .riotbar-account-info .riotbar-summoner-name {
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  @media (max-width: 640px) {
    .riotbar-mobile-responsive #riotbar-account-dropdown .riotbar-account-info {
      display: block;
    }
  }
  #riotbar-account.active #riotbar-account-dropdown {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    width: 200px;
  }
  @media (min-width: 1025px) {
    #riotbar-account-dropdown {
      width: 200px;
    }
    #riotbar-account:hover #riotbar-account-dropdown {
      opacity: 1;
      transform: translateX(0%);
      visibility: visible;
    }
  }
  @media (max-width: 1024px) {
    .riotbar-mobile-responsive #riotbar-account-dropdown {
      content: "sidebar";
      transform: none;
      transition: width 300ms, opacity 300ms;
      width: 0;
    }
  }
  
  #riotbar-account-dropdown-links {
    font-size: 0;
    position: relative;
    white-space: normal;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link {
    cursor: pointer;
    display: block;
    font-size: 12px;
    line-height: 1.5em;
    text-transform: uppercase;
    transition: color 300ms cubic-bezier(0.06, 0.81, 0, 0.98);
    width: 200px;
    padding: 15px 0 15px 15px;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link:lang(ar) {
    padding: 15px 15px 15px 0;
    text-align: right;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext {
    color: #a09a8e;
    display: block;
    font-size: 12px;
    text-transform: none;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
  }
  #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(ru), #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(vi), #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(vn), #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(el), #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(gr), #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(ko), #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link .riotbar-link-subtext:lang(ar) {
    text-align: right;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link:first-child {
    margin-top: 0;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link:last-child {
    margin-bottom: 0;
  }
  #riotbar-account-dropdown-links a.riotbar-account-link:hover {
    background-color: #333333;
  }
  
  #riotbar-account-warning {
    background-color: #352039;
    color: #F9F9F9;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    font-size: 12px;
    font-weight: 600;
    min-height: 20px;
    padding: 1px 0 0;
    position: absolute;
    width: 100%;
    margin: 0;
    text-align: center;
  }
  #riotbar-account-warning:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-account-warning:lang(ru), #riotbar-account-warning:lang(vi), #riotbar-account-warning:lang(vn), #riotbar-account-warning:lang(el), #riotbar-account-warning:lang(gr), #riotbar-account-warning:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-account-warning:lang(ko), #riotbar-account-warning:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-account-warning svg {
    display: inline-block;
    line-height: 16px;
    vertical-align: middle;
    margin: 0 15px 0 0;
  }
  #riotbar-account-warning svg:lang(ar) {
    margin: 0 0 0 15px;
  }
  #riotbar-account-warning a {
    display: inline-block;
    line-height: 16px;
    color: #F9F9F9;
    padding-bottom: 3px;
    padding-left: 10%;
    padding-right: 10%;
  }
  #riotbar-account-warning a span {
    margin-left: 10px;
    color: #F9F9F9;
  }
  
  #riotbar-alerts-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
  }
  #riotbar-alerts-container .riotbar-alert {
    background-color: #BE29CC;
    color: #F9F9F9;
    animation-name: alertSlideUp;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
  }
  #riotbar-alerts-container .riotbar-alert.riotbar-alert-is-closing {
    animation-name: alertSlideDown;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-inner {
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-inner {
      display: block;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    text-align: left;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ru), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(vi), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(vn), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(el), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(gr), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ko), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ar) {
    text-align: right;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-ctas-container {
    display: flex;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-title {
    padding: 0 0 10px 0;
    font-size: 1.6rem;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-logo {
    max-width: 280px;
    padding: 10px;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-logo img {
    width: 100%;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-body {
    font-size: 1.2rem;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container {
    padding: 10px 0;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container {
      flex-basis: 50%;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button {
    max-height: 68px;
    display: inline-block;
    cursor: pointer;
    padding: 20px 40px;
    margin: 10px 20px;
    background-color: #8E1F99;
    border-radius: 4px;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    white-space: nowrap;
    text-decoration: none;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(ru), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(vi), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(vn), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(el), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(gr), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(ko), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:hover {
    background-color: #7B1385;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:active {
    background-color: #670770;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button.riotbar-alert-button-secondary {
    background-color: #b41bc6;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button.riotbar-alert-button-secondary:hover {
    background-color: #b421be;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button.riotbar-alert-button-secondary:active {
    background-color: #b429b6;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button {
      margin: 10px 0;
    }
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-cta-filler {
      flex-basis: 25%;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container {
      flex-basis: 25%;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container svg {
    cursor: pointer;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container svg:hover {
    opacity: 0.7;
  }
  
  @keyframes alertSlideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0%);
    }
  }
  @keyframes alertSlideDown {
    from {
      transform: translateY(0%);
    }
    to {
      transform: translateY(100%);
    }
  }
  /* Legacy CSS -- to be deleted */
  #riotbar-alerts {
    position: relative;
    width: 100%;
    z-index: 10;
    /* Any immediate elements will fade in - these are the actual alerts */
  }
  #riotbar-alerts:lang(ar) {
    direction: rtl;
  }
  #riotbar-alerts > div,
  #riotbar-alerts > p,
  #riotbar-alerts > span {
    animation: fadeIn 0.75s;
  }
  #riotbar-alerts a:link,
  #riotbar-alerts a:visited {
    color: #71b5bd;
    text-decoration: none;
  }
  #riotbar-alerts a.active,
  #riotbar-alerts a:hover,
  #riotbar-alerts a:active {
    color: #ffffff;
  }
  #riotbar-alerts a.btn-gold-trim:link,
  #riotbar-alerts a.btn-gold-trim:visited {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    color: #dec58d;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
    text-decoration: none;
    display: inline;
    display: inline-block;
    cursor: pointer;
    background-color: #151515;
    background: linear-gradient(to bottom, #313131 0%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#313131", endColorstr="#000000",GradientType=0 );
    border: 1px solid #766e4c;
    text-transform: uppercase;
    margin: -2px 0 -2px 10px;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ar),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ru), #riotbar-alerts a.btn-gold-trim:link:lang(vi), #riotbar-alerts a.btn-gold-trim:link:lang(vn), #riotbar-alerts a.btn-gold-trim:link:lang(el), #riotbar-alerts a.btn-gold-trim:link:lang(gr), #riotbar-alerts a.btn-gold-trim:link:lang(th),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ru),
  #riotbar-alerts a.btn-gold-trim:visited:lang(vi),
  #riotbar-alerts a.btn-gold-trim:visited:lang(vn),
  #riotbar-alerts a.btn-gold-trim:visited:lang(el),
  #riotbar-alerts a.btn-gold-trim:visited:lang(gr),
  #riotbar-alerts a.btn-gold-trim:visited:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ko), #riotbar-alerts a.btn-gold-trim:link:lang(kr),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ko),
  #riotbar-alerts a.btn-gold-trim:visited:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ar),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ar) {
    margin: -2px 10px -2px 0;
  }
  #riotbar-alerts a.btn-gold-trim.active,
  #riotbar-alerts a.btn-gold-trim:hover,
  #riotbar-alerts a.btn-gold-trim:active {
    color: #f7da9b;
  }
  
  #riotbar-alerts-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
  }
  #riotbar-alerts-container .riotbar-alert {
    background-color: #BE29CC;
    color: #F9F9F9;
    animation-name: alertSlideUp;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
  }
  #riotbar-alerts-container .riotbar-alert.riotbar-alert-is-closing {
    animation-name: alertSlideDown;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-inner {
    padding: 40px;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-inner {
      display: block;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    text-align: left;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ru), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(vi), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(vn), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(el), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(gr), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ko), #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-content:lang(ar) {
    text-align: right;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-ctas-container {
    display: flex;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-title {
    padding: 0 0 10px 0;
    font-size: 1.6rem;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-logo {
    max-width: 280px;
    padding: 10px;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-logo img {
    width: 100%;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-body {
    font-size: 1.2rem;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container {
    padding: 10px 0;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container {
      flex-basis: 50%;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button {
    max-height: 68px;
    display: inline-block;
    cursor: pointer;
    padding: 20px 40px;
    margin: 10px 20px;
    background-color: #8E1F99;
    border-radius: 4px;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    white-space: nowrap;
    text-decoration: none;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(ru), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(vi), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(vn), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(el), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(gr), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(ko), #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:hover {
    background-color: #7B1385;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button:active {
    background-color: #670770;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button.riotbar-alert-button-secondary {
    background-color: #b41bc6;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button.riotbar-alert-button-secondary:hover {
    background-color: #b421be;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button.riotbar-alert-button-secondary:active {
    background-color: #b429b6;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-buttons-container .riotbar-alert-button {
      margin: 10px 0;
    }
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-cta-filler {
      flex-basis: 25%;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (max-width: 1024px) {
    #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container {
      flex-basis: 25%;
    }
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container svg {
    cursor: pointer;
  }
  #riotbar-alerts-container .riotbar-alert .riotbar-alert-close-container svg:hover {
    opacity: 0.7;
  }
  
  @keyframes alertSlideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0%);
    }
  }
  @keyframes alertSlideDown {
    from {
      transform: translateY(0%);
    }
    to {
      transform: translateY(100%);
    }
  }
  /* Legacy CSS -- to be deleted */
  #riotbar-alerts {
    position: relative;
    width: 100%;
    z-index: 10;
    /* Any immediate elements will fade in - these are the actual alerts */
  }
  #riotbar-alerts:lang(ar) {
    direction: rtl;
  }
  #riotbar-alerts > div,
  #riotbar-alerts > p,
  #riotbar-alerts > span {
    animation: fadeIn 0.75s;
  }
  #riotbar-alerts a:link,
  #riotbar-alerts a:visited {
    color: #71b5bd;
    text-decoration: none;
  }
  #riotbar-alerts a.active,
  #riotbar-alerts a:hover,
  #riotbar-alerts a:active {
    color: #ffffff;
  }
  #riotbar-alerts a.btn-gold-trim:link,
  #riotbar-alerts a.btn-gold-trim:visited {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    color: #dec58d;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 4px;
    text-decoration: none;
    display: inline;
    display: inline-block;
    cursor: pointer;
    background-color: #151515;
    background: linear-gradient(to bottom, #313131 0%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#313131", endColorstr="#000000",GradientType=0 );
    border: 1px solid #766e4c;
    text-transform: uppercase;
    margin: -2px 0 -2px 10px;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ar),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ru), #riotbar-alerts a.btn-gold-trim:link:lang(vi), #riotbar-alerts a.btn-gold-trim:link:lang(vn), #riotbar-alerts a.btn-gold-trim:link:lang(el), #riotbar-alerts a.btn-gold-trim:link:lang(gr), #riotbar-alerts a.btn-gold-trim:link:lang(th),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ru),
  #riotbar-alerts a.btn-gold-trim:visited:lang(vi),
  #riotbar-alerts a.btn-gold-trim:visited:lang(vn),
  #riotbar-alerts a.btn-gold-trim:visited:lang(el),
  #riotbar-alerts a.btn-gold-trim:visited:lang(gr),
  #riotbar-alerts a.btn-gold-trim:visited:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ko), #riotbar-alerts a.btn-gold-trim:link:lang(kr),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ko),
  #riotbar-alerts a.btn-gold-trim:visited:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-alerts a.btn-gold-trim:link:lang(ar),
  #riotbar-alerts a.btn-gold-trim:visited:lang(ar) {
    margin: -2px 10px -2px 0;
  }
  #riotbar-alerts a.btn-gold-trim.active,
  #riotbar-alerts a.btn-gold-trim:hover,
  #riotbar-alerts a.btn-gold-trim:active {
    color: #f7da9b;
  }
  
  #riotbar-application-switcher {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3000001;
    pointer-events: none;
    background-color: #F9F9F9;
    animation: fadeIn 0.25s forwards, appSwitcherSlideDown 0.2s forwards;
    height: 26vw;
    /** Custom event Tab CSS */
  }
  #riotbar-application-switcher:lang(ar) {
    direction: rtl;
  }
  #riotbar-application-switcher .riotbar-subcontent {
    pointer-events: auto;
    color: #111111;
    width: 100%;
    padding: 0;
  }
  #riotbar-application-switcher #riotbar-application-switcher-content {
    min-height: 320px;
    max-height: 620px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper {
    opacity: 0;
    animation: fadeIn 0.25s forwards;
    animation-delay: 0.2s;
    margin: 0;
    padding: 24px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper .mobile-caret {
    display: none;
  }
  #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper > span {
    margin: 0 16px;
    font-size: 24px;
    font-weight: 950;
    font-family: "Tahoma", sans-serif;
    cursor: pointer;
    color: #C7C7C7;
    transition: color 0.1s linear;
    display: inline-block;
  }
  @media screen and (max-width: 768px) {
    #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper > span {
      display: block;
      width: 100%;
    }
  }
  #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper > span:hover {
    color: #7E7E7E;
  }
  #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper > span.riotbar-application-selected-tab {
    color: #333333;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper {
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 32px 32px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper.riotbar-application-switcher-cards-wrapper-selected-event {
    display: flex;
    align-items: center;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card {
    float: left;
    padding: 0 0.4%;
    -webkit-animation: fadeIn 0.25s forwards;
    animation: fadeIn 0.25s forwards;
    opacity: 0;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card:nth-child(1) {
    animation-delay: 0.15s;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card:nth-child(2) {
    animation-delay: 0.2s;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card:nth-child(3) {
    animation-delay: 0.25s;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card:nth-child(4) {
    animation-delay: 0.3s;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card:nth-child(5) {
    animation-delay: 0.35s;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card:nth-child(6) {
    animation-delay: 0.4s;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card img:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card > a {
    display: block;
    position: relative;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card h4 {
    color: #7E7E7E;
    font-size: 11px;
    margin-top: 16px;
    font-weight: 800;
    letter-spacing: 0.03em;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card h4:lang(ar) {
    letter-spacing: 0;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card .riotbar-platform-availability-wrapper {
    color: #5f5c5c;
    margin-top: 8px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card .riotbar-platform-availability-wrapper .riotbar-platform-availability-icon-wrapper {
    float: left;
    padding-right: 8px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card .riotbar-platform-availability-wrapper .riotbar-platform-availability-icon-wrapper:lang(ar) {
    float: right;
    padding-right: 0;
    padding-left: 8px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card .riotbar-platform-availability-wrapper .riotbar-platform-availability-icon-wrapper .riotbar-application-platform-icon {
    height: 11px;
    width: 11px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card .riotbar-platform-availability-wrapper:after {
    content: " ";
    clear: both;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper:after {
    content: " ";
    clear: both;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-promo {
    width: 25%;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-game {
    width: 12.5%;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-custom_event {
    flex: 2;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore {
    width: 16.6%;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore .riotbar-application-switcher-card-image-wrapper {
    position: relative;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore .riotbar-application-card-title-wrapper {
    position: absolute;
    bottom: 8%;
    left: 8%;
    right: 8%;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore h4 {
    font-family: "Tahoma", sans-serif;
    font-weight: 900;
    color: #f9f9f9;
    font-size: 20px;
    line-height: 1.014rem;
    text-shadow: 1px 1px 1px rgba(51, 51, 51, 0.4);
    letter-spacing: -0.01rem;
    transition: transform 0.15s linear;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore h4:lang(ar) {
    letter-spacing: 0;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder {
    /* Shimmer styles here */
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder .riotbar-application-switcher-card-image-wrapper {
    width: 100%;
    height: 250px;
    position: relative;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder .riotbar-application-switcher-card-image-wrapper svg {
    position: absolute;
    left: calc(50% - 16px);
    top: calc(50% - 22px);
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder .riotbar-application-card-title-wrapper {
    width: 60%;
    height: 30px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder .riotbar-platform-availability-wrapper {
    width: 30%;
    height: 22px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder .riotbar-application-switcher-card-image-wrapper,
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder .riotbar-application-card-title-wrapper,
  #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-placeholder .riotbar-platform-availability-wrapper {
    animation-name: placeholderShimmer;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background: #7E7E7E;
    opacity: 0.1;
    background-image: linear-gradient(to right, #7E7E7E 0%, #C7C7C7 5%, #7E7E7E 10%, #7E7E7E 100%);
    background-size: 800px 104px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-arrow {
    position: absolute;
    top: -16px;
    left: 45px;
  }
  #riotbar-application-switcher .riotbar-application-switcher-arrow:lang(ar) {
    right: 45px;
    left: 0;
  }
  #riotbar-application-switcher .riotbar-application-switcher-mobile-header {
    display: none;
  }
  #riotbar-application-switcher #riotbar-application-switcher-desktop-close {
    position: absolute;
    top: 30px;
    right: 40px;
    cursor: pointer;
  }
  #riotbar-application-switcher #riotbar-application-switcher-desktop-close:lang(ar) {
    right: auto;
    left: 40px;
  }
  #riotbar-application-switcher #riotbar-application-switcher-desktop-close svg {
    vertical-align: middle;
    display: inline-block;
  }
  #riotbar-application-switcher #riotbar-application-switcher-desktop-visit-riot-games {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    margin-right: 10px;
    height: 24px;
    vertical-align: middle;
    line-height: 11px;
  }
  #riotbar-application-switcher #riotbar-application-switcher-desktop-visit-riot-games a {
    color: #111111;
  }
  #riotbar-application-switcher #riotbar-application-switcher-desktop-visit-riot-games:hover {
    background-color: rgba(53, 53, 53, 0.07);
  }
  #riotbar-application-switcher .custom-event-callout {
    flex: 3;
    padding: 2%;
  }
  #riotbar-application-switcher .custom-event-callout .custom-event-callout-image-wrapper img {
    width: 100%;
    height: 100%;
  }
  #riotbar-application-switcher .custom-event-callout .custom-event-callout-buttons {
    margin: 20px auto;
    text-align: center;
  }
  #riotbar-application-switcher .custom-event-callout .custom-event-callout-buttons a.custom-event-callout-btn {
    padding: 12px 0;
    line-height: 16px;
    height: 41px;
    border-radius: 2px;
    min-width: 129px;
    max-width: 220px;
    text-overflow: ellipsis;
    text-align: center;
    position: relative;
    display: inline-block;
    margin: 0 12px;
  }
  #riotbar-application-switcher .custom-event-callout-tagline {
    font-size: 12px;
    text-align: center;
    margin: 8px auto;
  }
  
  /* Pip */
  #riotbar-pip-container {
    margin: auto;
    position: absolute;
    padding: 5px;
    top: 0;
    right: 15px;
  }
  
  #riotbar-pip {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: #d13639;
  }
  
  #riotbar-pip-pulse {
    border-radius: 50%;
    background-color: #e82c29;
    animation: pulse 5s infinite;
  }
  
  /** Page Overlay */
  #riotbar-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #111111;
    opacity: 0;
    transition: opacity 0.15s;
  }
  
  body.riotbar-application-switcher-open #riotbar-page-overlay {
    z-index: 500;
    opacity: 0.7;
  }
  
  @media (max-width: 1024px) {
    body.riotbar-application-switcher-open {
      overflow-y: hidden;
    }
  
    #riotbar-application-switcher {
      width: 75vw;
      height: 100vh;
      left: -76vw;
      top: -80px;
      pointer-events: all;
      animation: slideInFromLeft 0.3s forwards;
      overflow-y: auto;
    }
    #riotbar-application-switcher .custom-event-callout {
      width: 100%;
    }
    #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper > span {
      font-size: 18px;
    }
    #riotbar-application-switcher #riotbar-application-switcher-desktop-close {
      display: none;
    }
    #riotbar-application-switcher .riotbar-application-switcher-arrow {
      display: none;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper {
      display: block;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper.riotbar-application-switcher-cards-wrapper-selected-event {
      display: block;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper.riotbar-switcher-cards-wrapper-selected-riot-games .riotbar-application-switcher-card {
      margin: 12px auto;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper.riotbar-switcher-cards-wrapper-selected-explore .riotbar-application-switcher-card {
      margin: 8px auto;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card h4 {
      font-size: 12px;
      margin: 6px 0px 0px;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-game {
      width: 50%;
      padding: 0 0.4%;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-promo {
      width: 100%;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore {
      width: 50%;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore h4 {
      font-size: 24px;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-custom_event {
      width: 100%;
      margin: 12px auto;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-custom_event h4 {
      font-size: 12px;
      margin: 6px 0px 0px;
    }
    #riotbar-application-switcher .riotbar-application-switcher-mobile-header {
      display: block;
      width: 100%;
      position: relative;
      padding: 24px;
      border-bottom: 1px solid #e8e8e8;
    }
    #riotbar-application-switcher .riotbar-application-switcher-mobile-header:after {
      content: " ";
      clear: both;
    }
    #riotbar-application-switcher .riotbar-application-switcher-mobile-logo-wrapper {
      display: inline-block;
      height: 32px;
    }
    #riotbar-application-switcher .riotbar-application-switcher-close {
      float: right;
      top: 32px;
      right: 32px;
      cursor: pointer;
      z-index: 300;
    }
  }
  @media (max-width: 768px) {
    #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper {
      margin: 4px 0 12px;
      padding: 16px 0;
      border-bottom: 1px solid #e8e8e8;
    }
    #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper > span {
      padding: 6px 0;
    }
    #riotbar-application-switcher .riotbar-application-switcher-tabs-wrapper .mobile-caret {
      width: 8px;
      height: 8px;
      float: right;
      margin-right: 20px;
      margin-top: 8px;
      display: block;
      transform: rotate(90deg);
      font-weight: 500;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper {
      overflow-y: hidden;
      overflow-x: auto;
      padding: 0 12px 32px;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card {
      padding: 4px 0;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card.riotbar-application-switcher-card-game:nth-child(3) {
      padding-right: 4px;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card.riotbar-application-switcher-card-game:nth-child(5) {
      padding-right: 4px;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper.riotbar-switcher-cards-wrapper-selected-explore div.riotbar-application-switcher-card {
      margin: 6px auto;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper.riotbar-switcher-cards-wrapper-selected-riot-games div.riotbar-application-switcher-card {
      margin: 12px auto;
      padding: 0 1.2%;
    }
    #riotbar-application-switcher .riotbar-application-switcher-cards-wrapper .riotbar-application-switcher-card-explore h4 {
      font-size: 14px;
    }
  }
  /* cards dropdown slide down effect */
  @keyframes appSwitcherSlideDown {
    0% {
      top: -80px;
    }
    100% {
      top: 0;
    }
  }
  @-moz-keyframes appSwitcherSlideDown {
    0% {
      top: -80px;
    }
    100% {
      top: 0;
    }
  }
  @-webkit-keyframes appSwitcherSlideDown {
    0% {
      top: -80px;
    }
    100% {
      top: 0;
    }
  }
  /* Card placeholder shimmer effect */
  @keyframes placeholderShimmer {
    0% {
      background-position: -600px 0;
    }
    100% {
      background-position: 600px 0;
    }
  }
  @-moz-keyframes placeholderShimmer {
    0% {
      background-position: -600px 0;
    }
    100% {
      background-position: 600px 0;
    }
  }
  @-webkit-keyframes placeholderShimmer {
    0% {
      background-position: -600px 0;
    }
    100% {
      background-position: 600px 0;
    }
  }
  @keyframes pulse {
    0% {
      opacity: 0.6;
      height: 8px;
      width: 8px;
      transition: opacity 0.5s linear;
    }
    50% {
      opacity: 0;
      transform: scale(2.5);
      transition: opacity 0.5s linear;
    }
    100% {
      opacity: 0;
      transition: opacity 0.5s ease;
    }
  }
  .localization-management-list {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    display: none;
    width: 240px;
    background-color: #F9F9F9;
    border-radius: 4px;
  }
  .localization-management-list:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .localization-management-list:lang(ru), .localization-management-list:lang(vi), .localization-management-list:lang(vn), .localization-management-list:lang(el), .localization-management-list:lang(gr), .localization-management-list:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .localization-management-list:lang(ko), .localization-management-list:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  .localization-management-list.active {
    display: block;
  }
  .localization-management-list ul {
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 12px;
    max-height: 360px;
    overflow-x: auto;
  }
  .localization-management-list ul:lang(ar) {
    direction: rtl;
    text-align: right;
  }
  .localization-management-list ul li {
    display: block;
    height: 40px;
    line-height: 40px;
    padding: 0;
    cursor: pointer;
  }
  .localization-management-list ul li .lang-name {
    text-transform: uppercase;
    display: inline-block;
    width: 20px;
  }
  .localization-management-list ul li a, .localization-management-list ul li a:visited, .localization-management-list ul li a:link {
    transition: color 0.3s linear;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #999999;
    width: 100%;
    padding: 0 0 0 20px;
  }
  .localization-management-list ul li a:lang(ar), .localization-management-list ul li a:visited:lang(ar), .localization-management-list ul li a:link:lang(ar) {
    padding: 0 20px 0 0;
  }
  .localization-management-list ul li a svg, .localization-management-list ul li a:visited svg, .localization-management-list ul li a:link svg {
    position: absolute;
    top: 35%;
    right: 20px;
    width: 14px;
    height: 12px;
    fill: #F9F9F9;
  }
  .localization-management-list ul li a svg:lang(ar), .localization-management-list ul li a:visited svg:lang(ar), .localization-management-list ul li a:link svg:lang(ar) {
    right: auto;
    left: 20px;
  }
  .localization-management-list ul li:hover a {
    color: #111111;
  }
  .localization-management-list ul li.active {
    cursor: default;
  }
  .localization-management-list ul li.active a {
    color: #c4202b;
  }
  
  .riotbar-locale .icon-lang-switch {
    position: relative;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
  }
  .riotbar-locale .icon-lang-switch:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-locale .icon-lang-switch:lang(ru), .riotbar-locale .icon-lang-switch:lang(vi), .riotbar-locale .icon-lang-switch:lang(vn), .riotbar-locale .icon-lang-switch:lang(el), .riotbar-locale .icon-lang-switch:lang(gr), .riotbar-locale .icon-lang-switch:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-locale .icon-lang-switch:lang(ko), .riotbar-locale .icon-lang-switch:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  .riotbar-locale .icon-lang-switch .lang-switch-dropdown {
    position: absolute;
    top: 90px;
    left: -115px;
    padding: 8px 0 8px 8px;
  }
  @media (max-width: 1024px) {
    .riotbar-locale .icon-lang-switch .lang-switch-dropdown {
      left: -155px;
    }
  }
  .riotbar-locale .icon-lang-switch .lang-switch-dropdown .lang-switch-caret {
    height: 0;
    position: absolute;
    width: 0;
    left: 113px;
    top: -20px;
    border: 10px solid transparent;
    border-bottom-color: #F9F9F9;
  }
  @media (max-width: 1024px) {
    .riotbar-locale .icon-lang-switch .lang-switch-dropdown .lang-switch-caret {
      left: 153px;
    }
  }
  .sideMenuIcons .riotbar-locale .icon-lang-switch .lang-switch-dropdown {
    top: 50px;
    right: 0;
    left: unset;
  }
  .sideMenuIcons .riotbar-locale .icon-lang-switch .lang-switch-dropdown:before {
    left: unset;
    right: 20px;
    top: -20px;
  }
  .riotbar-locale:lang(ar) {
    direction: rtl;
  }
  
  #riotbar-bar .riotbar-service-status-wrapper {
    margin-top: 28px;
    position: relative;
  }
  #riotbar-bar .riotbar-service-status-icon-wrapper {
    cursor: pointer;
  }
  #riotbar-bar .riotbar-service-status-icon-wrapper svg {
    display: block;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper {
    position: absolute;
    top: 40px;
    left: -180px;
    padding: 8px 0 8px 8px;
    width: 280px;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-caret {
    height: 0;
    position: absolute;
    width: 0;
    left: 140px;
    top: -11px;
    border: 10px solid transparent;
    border-bottom-color: #F9F9F9;
  }
  @media (max-width: 1024px) {
    #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-caret {
      left: 153px;
    }
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner {
    background-color: #F9F9F9;
    border-radius: 8px;
    padding: 20px;
    border: solid 1px #111111;
    font-weight: 500;
    font-size: 12px;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    color: #3D3D3D;
    white-space: pre-wrap;
    /* CSS3 */
    white-space: -moz-pre-wrap;
    /* Firefox */
    white-space: -pre-wrap;
    /* Opera <7 */
    white-space: -o-pre-wrap;
    /* Opera 7 */
    word-wrap: break-word;
    /* IE */
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(ru), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(vi), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(vn), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(el), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(gr), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(ko), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container {
    text-align: center;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a {
    color: #111111;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(ru), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(vi), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(vn), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(el), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(gr), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(ko), #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:visited {
    color: #111111;
  }
  #riotbar-bar .riotbar-service-status-popup-wrapper .riotbar-service-status-popup-inner .riotbar-service-status-view-all-container a:hover {
    text-decoration: underline;
  }
  #riotbar-bar .riotbar-service-status-message {
    margin: 5px 0;
    padding: 10px 0 15px 0;
    border-bottom: solid 1px rgba(168, 171, 171, 0.7);
  }
  #riotbar-bar .riotbar-service-status-message:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  #riotbar-bar .riotbar-service-status-message:first-child {
    padding-top: 0;
    margin-top: 0;
  }
  #riotbar-bar .riotbar-service-status-type {
    padding: 3px 18px;
    border-radius: 16px;
    border: solid 2px #111111;
    background-color: #F9F9F9;
    text-transform: uppercase;
  }
  #riotbar-bar .riotbar-service-status-type:lang(ar), #riotbar-bar .riotbar-service-status-type:lang(el), #riotbar-bar .riotbar-service-status-type:lang(ro), #riotbar-bar .riotbar-service-status-type:lang(ru), #riotbar-bar .riotbar-service-status-type:lang(tr) {
    text-transform: none;
  }
  #riotbar-bar .riotbar-service-status-type.riotbar-service-status-type-warning {
    background-color: #E69700;
    border-color: #E69700;
    color: #F9F9F9;
  }
  #riotbar-bar .riotbar-service-status-type.riotbar-service-status-type-critical {
    background-color: #BE29CC;
    border-color: #BE29CC;
    color: #F9F9F9;
  }
  #riotbar-bar .riotbar-service-status-product {
    margin: 12px 0 10px 0;
    font-size: 10px;
  }
  #riotbar-bar .riotbar-service-status-incident-title {
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    margin: 10px 0;
  }
  #riotbar-bar .riotbar-service-status-incident-description {
    font-size: 12px;
    margin: 10px 0;
    text-align: start;
    line-height: 120%;
  }
  #riotbar-bar .riotbar-service-status-incident-more-details {
    margin: 5px 0;
    color: #333333;
    font-weight: 700;
    cursor: pointer;
  }
  #riotbar-bar .riotbar-service-status-incident-more-details:hover {
    text-decoration: underline;
  }


  .theme-button {
    background-color: #986F45 !important;
  }
  .theme-button:hover {
    background-color: #D5934A !important;
  }

  .theme-button:active {
    background-color: #D5934A !important;
  }
  #riotbar-bar .riotbar-active-link {
    border-color: #D5934A !important;
  }

  .riotbar-navbar-link:hover {
    border-color: #D5934A !important;
  }

  #riotbar-navbar a:hover {
    border-bottom-color: #D5934A !important;
  }

  #riotbar-bar .nav-dropdown-active a {
    border-bottom-color: #D5934A;
  }

  #riotbar-bar .sub-menu-header-icon svg, #riotbar-bar .sub-menu-header-icon img{
    margin-top: 20px;
    margin-left: 15px;
    display: block;
    max-height: 50px;
  }



  .riotbar-footer {
    user-select: none;
    box-sizing: border-box;
  }
  .riotbar-footer * {
    box-sizing: border-box;
  }
  
  /* Breakpoints */
  /* Common Mixins */
  .riotbar-footer {
    text-align: center;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
  }
  .riotbar-footer:lang(ar) {
    direction: rtl;
  }
  .riotbar-footer:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-footer:lang(ru), .riotbar-footer:lang(vi), .riotbar-footer:lang(vn), .riotbar-footer:lang(el), .riotbar-footer:lang(gr), .riotbar-footer:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-footer:lang(ko), .riotbar-footer:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  
  /* If Riotbar footer is loaded, we can hide the cookie widget */
  .riotbar-present .osano-cm-widget {
    display: none;
  }
  
  .riotbar-footer-content {
    padding: 1px 5px;
  }
  .riotbar-footer-content.default-background {
    background-color: #111111;
    border-top: 2px solid rgba(51, 51, 51, 0.25);
  }
  .riotbar-footer-content > div {
    margin: 20px auto;
  }
  .riotbar-footer-content a.strong {
    font-weight: bold;
  } .riotbar-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  
  .riotbar-footer-links {
    user-select: none;
    box-sizing: border-box;
  }
  .riotbar-footer-links * {
    box-sizing: border-box;
  }
  
  /* Breakpoints */
  /* Common Mixins */
  .riotbar-footer-links {
    color: #7E7E7E;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
  }
  .riotbar-footer-links:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-footer-links:lang(ru), .riotbar-footer-links:lang(vi), .riotbar-footer-links:lang(vn), .riotbar-footer-links:lang(el), .riotbar-footer-links:lang(gr), .riotbar-footer-links:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-footer-links:lang(ko), .riotbar-footer-links:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  .riotbar-footer-links:lang(ar) {
    letter-spacing: 0;
  }
  .riotbar-footer-links ul li a {
    display: block;
    margin: 0 16px;
    padding: 0px;
    text-decoration: none;
    color: #7E7E7E;
    transition: all 0.2s linear;
  }
  .riotbar-footer-links ul li a:visited {
    color: #7E7E7E;
  }
  .riotbar-footer-links ul li a:hover, .riotbar-footer-links ul li a:active, .riotbar-footer-links ul li a:focus {
    color: #F9F9F9;
  }
  @media (max-width: 640px) {
    .riotbar-footer-links ul {
      flex-direction: column;
    }
    .riotbar-footer-links ul li a {
      margin: 16px 0;
    }
    .riotbar-footer-links ul li:first-child a {
      margin-top: 0;
    }
    .riotbar-footer-links ul li:last-child a {
      margin-bottom: 0;
    }
  } .riotbar-footer-sub-logo, .riotbar-footer-riot-logo {
    user-select: none;
    box-sizing: border-box;
  }
  .riotbar-footer-sub-logo *, .riotbar-footer-riot-logo * {
    box-sizing: border-box;
  }
  
  .riotbar-footer-riot-logo a .image-alt-text {
    opacity: 0;
    user-select: none;
    color: transparent;
    text-decoration: none;
  }
  
  .riotbar-footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .riotbar-footer-riot-logo {
    display: inline-block;
  }
  .riotbar-footer-riot-logo a {
    margin: auto;
    overflow: hidden;
    opacity: 0.9;
    transition: opacity 0.2s linear;
  }
  .riotbar-footer-riot-logo a:hover, .riotbar-footer-riot-logo a:active, .riotbar-footer-riot-logo a:focus {
    opacity: 1;
  }
  .riotbar-footer-sub-logo {
    display: inline-block;
    margin: 0 20px;
  } .riotbar-footer-riot-locale {
    user-select: none;
    box-sizing: border-box;
  }
  .riotbar-footer-riot-locale * {
    box-sizing: border-box;
  }
  
  /* Breakpoints */
  /* Common Mixins */
  .riotbar-footer-riot-locale {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    font-weight: 500;
    z-index: 100;
    position: relative;
    color: #F9F9F9;
    width: 600px;
  }
  .riotbar-footer-riot-locale button {
    outline: 0;
  }
  .riotbar-footer-riot-locale .localization-management-list ul {
    background-color: #F9F9F9;
  }
  .riotbar-footer-riot-locale .localization-management-list ul li a, .riotbar-footer-riot-locale .localization-management-list ul li a:visited, .riotbar-footer-riot-locale .localization-management-list ul li a:link {
    color: #7E7E7E;
  }
  .riotbar-footer-riot-locale .localization-management-list ul li:hover a {
    color: #333333;
  }
  .riotbar-footer-riot-locale .localization-management-list ul li.active {
    cursor: default;
  }
  .riotbar-footer-riot-locale:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-footer-riot-locale:lang(ru), .riotbar-footer-riot-locale:lang(vi), .riotbar-footer-riot-locale:lang(vn), .riotbar-footer-riot-locale:lang(el), .riotbar-footer-riot-locale:lang(gr), .riotbar-footer-riot-locale:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-footer-riot-locale:lang(ko), .riotbar-footer-riot-locale:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  @media (max-width: 1024px) {
    .riotbar-footer-riot-locale #footer-region-switcher-activate {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 10px;
    }
    .riotbar-footer-riot-locale .second.region-chooser-button-holder {
      display: block;
      margin: 0 !important;
    }
    .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list {
      left: 180px;
    }
  }
  .riotbar-footer-riot-locale .region-chooser-button {
    letter-spacing: 0;
    outline: 0;
    line-height: 48px;
  }
  .riotbar-footer-riot-locale .region-chooser-button svg {
    margin-top: 20px;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder {
    position: relative;
    display: inline-block;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder.second {
    margin: 0 0 0 8px;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder.second:lang(ar) {
    margin: 0 8px 0 0;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list {
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #F9F9F9;
    border-top: 0;
    border-radius: 5px;
    width: 100%;
    background-color: #F9F9F9;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list .active {
    display: none;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-region, .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-language {
    height: 48px;
    line-height: 48px;
    padding: 0 16px;
    font-weight: 800;
    font-size: 11px;
    color: #999999;
    text-align: left;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-region:lang(ar), .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-language:lang(ar) {
    text-align: right;
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-region svg, .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-language svg {
    margin-top: 20px;
    float: right;
    transform: rotate(180deg);
  }
  .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-region svg:lang(ar), .riotbar-footer-riot-locale .region-chooser-button-holder .region-select-list div.current-language svg:lang(ar) {
    float: left;
  }
  .riotbar-footer-riot-locale.active .riotbar-footer-region-changer {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.06, 0.81, 0, 0.98) 0s;
    background-color: #333333;
    text-align: left;
    padding-top: 48px;
    padding-left: 48px;
    padding-bottom: 44px;
    padding-right: 44px;
    width: 456px;
    position: absolute;
    bottom: -30px;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer:lang(ar) {
    direction: rtl;
    text-align: right;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer .header {
    font-size: 26px;
    margin-bottom: 29px;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer .region-changer-locale-close {
    position: absolute;
    right: 14px;
    top: 14px;
    cursor: pointer;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer .region-changer-locale-close:lang(ar) {
    right: auto;
    left: 14px;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer .region-changer-copy {
    color: #E8E8E8;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer .region-chooser-button-holder, .riotbar-footer-riot-locale .riotbar-footer-region-changer .region-changer-copy {
    margin-bottom: 29px;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer button {
    background-color: #282828;
  }
  .riotbar-footer-riot-locale .riotbar-footer-region-changer #switch-regions-now {
    color: #F9F9F9;
  }
  .riotbar-footer-riot-locale button {
    cursor: pointer;
    height: 48px;
    width: 248px;
    background-color: #282828;
    color: #7E7E7E;
    border-radius: 5px;
    border-width: 0;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
    text-align: left;
    padding: 0px 16px;
  }
  .riotbar-footer-riot-locale button:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-footer-riot-locale button:lang(ru), .riotbar-footer-riot-locale button:lang(vi), .riotbar-footer-riot-locale button:lang(vn), .riotbar-footer-riot-locale button:lang(el), .riotbar-footer-riot-locale button:lang(gr), .riotbar-footer-riot-locale button:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-footer-riot-locale button:lang(ko), .riotbar-footer-riot-locale button:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  .riotbar-footer-riot-locale button:lang(ar) {
    text-align: right;
  }
  .riotbar-footer-riot-locale button.go {
    color: #111111;
  }
  .riotbar-footer-riot-locale button svg {
    float: right;
    margin-top: 4px;
  }
  .riotbar-footer-riot-locale button svg:lang(ar) {
    float: left;
  }
  .riotbar-footer-riot-locale button svg path {
    fill: #7E7E7E;
  }
  
  @media screen and (max-width: 1024px) {
    .riotbar-footer-riot-locale {
      max-width: 100%;
    }
  } .riotbar-social-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  
  .riotbar-social-links {
    user-select: none;
    box-sizing: border-box;
  }
  .riotbar-social-links * {
    box-sizing: border-box;
  }
  
  .riotbar-social-links ul li a .image-alt-text {
    opacity: 0;
    user-select: none;
    color: transparent;
    text-decoration: none;
  }
  
  .riotbar-social-links ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .riotbar-social-links ul li a {
    display: block;
    margin: 4px;
    overflow: hidden;
    text-decoration: none;
    opacity: 0.3;
    transition: opacity 0.2s linear;
    cursor: pointer;
  }
  .riotbar-social-links ul li a .image-alt-text {
    display: inline-block;
    width: 0;
  }
  .riotbar-social-links ul li a:hover, .riotbar-social-links ul li a:active, .riotbar-social-links ul li a:focus {
    opacity: 1;
  }
  .riotbar-social-links ul li a svg {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .riotbar-social-links ul li a.link-social svg {
    width: 24px;
    height: 24px;
  } .riotbar-legal-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  
  .riotbar-legal-links {
    user-select: none;
    box-sizing: border-box;
  }
  .riotbar-legal-links * {
    box-sizing: border-box;
  }
  
  /* Breakpoints */
  /* Common Mixins */
  .riotbar-legal-links {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    font-weight: 500;
    font-size: 12px;
    color: #7E7E7E;
    text-align: center;
  }
  .riotbar-legal-links:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-legal-links:lang(ru), .riotbar-legal-links:lang(vi), .riotbar-legal-links:lang(vn), .riotbar-legal-links:lang(el), .riotbar-legal-links:lang(gr), .riotbar-legal-links:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-legal-links:lang(ko), .riotbar-legal-links:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  .riotbar-legal-links:lang(ar) {
    font-family: Tahoma, sans-serif;
  }
  .riotbar-legal-links ul {
    flex-wrap: wrap;
  }
  .riotbar-legal-links ul li span.updated {
    color: #ff0000;
    font-weight: bold;
    text-transform: uppercase;
  }
  .riotbar-legal-links ul li a {
    display: block;
    margin: 0 5px;
    text-decoration: underline;
    color: #7E7E7E;
    transition: all 0.2s linear;
  }
  .riotbar-legal-links ul li a:visited {
    color: #7E7E7E;
  }
  .riotbar-legal-links ul li a:hover, .riotbar-legal-links ul li a:active, .riotbar-legal-links ul li a:focus {
    color: #7E7E7E;
  }
  .riotbar-legal-links ul li a.bold {
    font-weight: bold;
  }
  .riotbar-legal-links ul li a.underline {
    text-decoration: underline;
  }
  .riotbar-legal-links ul li a.updated {
    display: inline;
  }
  .riotbar-legal-links ul li a.link-privacyPolicy {
    font-weight: bold;
  } /* Breakpoints */
  /* Common Mixins */
  .riotbar-copyright {
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
    font-weight: 500;
    font-size: 12px;
    line-height: 1.316;
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
    color: #7E7E7E;
    transition: color 0.2s linear;
    word-break: keep-all;
  }
  .riotbar-copyright:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-copyright:lang(ru), .riotbar-copyright:lang(vi), .riotbar-copyright:lang(vn), .riotbar-copyright:lang(el), .riotbar-copyright:lang(gr), .riotbar-copyright:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-copyright:lang(ko), .riotbar-copyright:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  .riotbar-copyright a {
    color: #7E7E7E;
    text-decoration: underline;
  }
  .riotbar-copyright a:hover, .riotbar-copyright a:active, .riotbar-copyright a:focus {
    color: #7E7E7E;
  }
  .riotbar-copyright:lang(ar) {
    font-family: Tahoma, sans-serif;
  }
  
  @media (max-width: 500px) {
    .riotbar-copyright {
      max-width: 310px;
    }
  } .riotbar-game-ratings {
    user-select: none;
    box-sizing: border-box;
  }
  .riotbar-game-ratings * {
    box-sizing: border-box;
  }
  
  .riotbar-game-ratings .riotbar-game-rating-logo .image-alt-text {
    opacity: 0;
    user-select: none;
    color: transparent;
    text-decoration: none;
  }
  
  /* Breakpoints */
  /* Common Mixins */
  .riotbar-game-ratings {
    font-weight: 500;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .riotbar-game-ratings .riotbar-game-rating {
    margin: 0 10px;
    max-width: 100%;
  }
  .riotbar-game-ratings .riotbar-game-rating-text-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }
  .riotbar-game-ratings .riotbar-game-rating-logo {
    display: block;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
    margin: 5px 0;
    max-width: 100%;
  }
  .riotbar-game-ratings .riotbar-game-rating-logo img {
    max-width: 100%;
  }
  .riotbar-game-ratings .riotbar-game-rating-text {
    display: inline-block;
    text-align: left;
    color: #efefef;
    margin-left: 6px;
    line-height: 19px;
    font-size: 15px;
    /* These custom font references are actually loaded in when the `customFonts` plugin is enabled */
    /* Main font by default */
    font-family: "Tahoma";
  }
  .riotbar-game-ratings .riotbar-game-rating-text:lang(ar) {
    font-family: "Cairo", Tahoma, sans-serif;
  }
  .riotbar-game-ratings .riotbar-game-rating-text:lang(ru), .riotbar-game-ratings .riotbar-game-rating-text:lang(vi), .riotbar-game-ratings .riotbar-game-rating-text:lang(vn), .riotbar-game-ratings .riotbar-game-rating-text:lang(el), .riotbar-game-ratings .riotbar-game-rating-text:lang(gr), .riotbar-game-ratings .riotbar-game-rating-text:lang(th) {
    font-family: "Neue Frutiger World W05", Tahoma, sans-serif;
  }
  .riotbar-game-ratings .riotbar-game-rating-text:lang(ko), .riotbar-game-ratings .riotbar-game-rating-text:lang(kr) {
    font-family: "RixSGo", Tahoma, sans-serif;
  }
  @media (max-width: 400px) {
    .riotbar-game-ratings .riotbar-game-rating-text {
      font-size: 12px;
    }
  }

  @media (max-width: 768px) {
    #riotbar-navmenu .riotbar-logo{
      margin-left: 10px;
    }
  }
/* 2026-09: Riot Games logo moi (giong valorant.vnggames.com) */
#riotbar-navmenu .riotbar-logo { width: 118px; }
#riotbar-navmenu .riotbar-logo .riot-bar-fist-logo-v2 { position: absolute; top: 9px; left: 0; width: 95px; height: 32px; }
#riotbar-navmenu .riotbar-logo svg { left: 97px; }
