@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper * {
  background-repeat: no-repeat;
}

.wrapper *:before, .wrapper *:after {
  background-repeat: inherit;
}

input {
  outline: none;
}

.d-none {
  display: none !important;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-grid {
  display: grid;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.disable-scrollbars {
  scrollbar-width: none;
}

.hidden-images {
  display: none;
}

img {
  max-width: 100%;
}

/* body {
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-focus-ring-color: rgba(255, 255, 255, 0);
	outline: none;

	-moz-user-select: none;
	-o-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	resize: none;

	-webkit-text-size-adjust: none;
} */
/* input,
textarea {
	-moz-user-select: text;
	-o-user-select: text;
	-khtml-user-select: text;
	-webkit-user-select: text;
	user-select: text;
	resize: none;
} */
.m-0 {
  margin: 0;
}

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

.mb-2 {
  margin-bottom: .5rem;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-2 {
  margin-top: .5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

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

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

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

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

.no-bullets {
  list-style-type: none;
  margin-left: 0;
  padding: 0;
}

.no-bullets li {
  margin: 0 !important;
  padding: 0;
}

.border-y {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

@font-face {
  font-family: "NationalPark";
  src: url(../fonts/NationalPark-Heavy.woff);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNextCyr";
  src: url(../fonts/AvenirNextCyr-Demi.woff);
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AvenirNextCyr";
  src: url(../fonts/AvenirNextCyr-Bold.woff);
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Pompadur";
  src: url(../fonts/Pompadur/AveniCons-DemiCons.woff);
}

.h4 {
  margin-bottom: .75rem;
}

.h5--v {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.btn {
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  border: none;
  padding: 5px;
  border-radius: 20px;
  color: #fff;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  cursor: pointer;
}

.btn:hover {
  opacity: .9;
}

.btns-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.btns-grid .btn:hover {
  opacity: .8;
}

.btns-grid--coupon {
  max-width: 350px;
  margin: 0 auto;
}

.btns-grid--coupon .btn {
  margin-left: initial !important;
  margin-right: initial !important;
  border-radius: 20px;
}

.btn--primary {
  background-color: var(--bar-blue);
}

.btn--confirm {
  background-color: var(--bar-green);
}

.btn--cancel {
  background-color: var(--bar-red);
}

.btn--secondary,
.btn--check, .btn--view-history, .btn--view-favorites, .btn--view-game-rules, .btn--view-coupons-history {
  border-radius: 10px;
  cursor: pointer;
}

.btn--secondary:hover,
.btn--check:hover, .btn--view-history:hover, .btn--view-favorites:hover, .btn--view-game-rules:hover, .btn--view-coupons-history:hover {
  opacity: .9;
}

.btn--square {
  display: none;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 0;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  cursor: pointer;
}

.btn--square:hover {
  opacity: .8;
  -webkit-box-shadow: var(--shadow-hover);
          box-shadow: var(--shadow-hover);
}

.btn--secondary,
.btn--check {
  background-color: var(--orange);
  color: #fff;
  padding: 10px;
}

.btn--view-qr {
  font-size: 0;
  position: absolute;
  left: 0;
  width: calc(76px);
  height: 100%;
  background-image: var(--icon-qr-scan);
  background-size: contain;
  background-position: center left;
  cursor: pointer;
  border-right: 1px solid #ccc;
  -webkit-box-shadow: 1px 0 2px #ccc;
          box-shadow: 1px 0 2px #ccc;
}

.btn--view-history {
  padding: calc(20px);
  color: #fff;
  background-image: var(--bg-blue);
  background-size: cover;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20px);
}

.btn--view-history:before {
  content: "";
  width: calc(65px);
  height: calc(65px);
  margin-right: calc(15px);
  background-image: var(--icon-btn-history);
}

.btn--view-favorites, .btn--view-game-rules {
  padding: calc(20px);
  color: #fff;
  background-image: var(--bg-favorite);
  background-size: cover;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20px);
}

.btn--view-favorites:before, .btn--view-game-rules:before {
  content: "";
  width: calc(50px);
  height: calc(50px);
  margin-right: calc(25px);
  background-image: var(--icon-star);
}

.btn--view-coupons-history {
  padding: calc(20px);
  color: #fff;
  background-image: var(--bg-home);
  background-size: cover;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20px);
}

.btn--view-coupons-history:before {
  content: "";
  width: calc(65px);
  height: calc(65px);
  margin-right: calc(15px);
  background-image: var(--icon-btn-coupons-history);
}

.btn--view-game-rules {
  background-color: var(--bg-orange);
}

.btn--view-game-rules:before {
  background-image: var(--icon-btn-game-rules);
  -webkit-filter: invert(1);
          filter: invert(1);
}

.btn--search-tir {
  color: #000;
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  background-color: #fff;
}

.btn--search-tir:hover {
  background-color: #f1f1f1;
}

:root {
  --overlay-bg: #f7f7f7;
  --overlay-link-c: #000;
}

.btn--menu {
  display: none;
  cursor: pointer;
}

.bar1, .bar2, .bar3 {
  width: 35px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-9px, 6px);
      -ms-transform: rotate(-45deg) translate(-9px, 6px);
          transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
      -ms-transform: rotate(45deg) translate(-8px, -8px);
          transform: rotate(45deg) translate(-8px, -8px);
}

.mobile-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  max-width: 300px;
  width: 100%;
  padding-top: 50px;
  padding-left: 20px;
  background-color: var(--overlay-bg);
  color: #fff;
  z-index: 999;
  -webkit-transform: translateX(-320px);
      -ms-transform: translateX(-320px);
          transform: translateX(-320px);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  overflow: auto;
}

.mobile-menu__item {
  color: var(--overlay-link-c);
  padding: 1rem 0.5rem 0.5rem;
  display: block;
  text-decoration: none;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  cursor: pointer;
}

.mobile-menu__item:hover {
  text-decoration: underline;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  z-index: 999999;
}

.overlay.is-open {
  visibility: visible;
}

.overlay.is-open .mobile-menu {
  visibility: visible;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 0 5px 15px black;
          box-shadow: 0 5px 15px black;
}

.overlay--langs {
  visibility: visible;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--bar-red);
  background-image: var(--icon-x);
  background-size: 14px;
  background-position: center;
  border-radius: 5px;
  padding: 12px;
  cursor: pointer;
  -webkit-transition: 25s;
  -o-transition: 25s;
  transition: 25s;
}

.overlay__close:hover {
  opacity: .8;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 9;
  background-size: 100vw;
  background-position: top;
  background-repeat: no-repeat;
  height: 150px;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  padding: 15px;
  overflow: hidden;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding: 15px 15px 10px;
  height: 120px;
  -webkit-transition: .05s;
  -o-transition: .05s;
  transition: .05s;
}

.header:before {
  position: absolute;
  content: "";
  height: 50vh;
  width: 100vw;
  background-size: 100vw;
  background-position: bottom;
  background-repeat: no-repeat;
  top: -5.5vh;
  z-index: -1;
}

.header .page-title {
  font-size: .8rem;
}

.header .btn--square,
.header .header__video {
  width: 44px;
  height: 44px;
}

.header__top, .header__body {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.header__top {
  height: 20px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  grid-column: span;
}

.header__subtitle {
  text-align: center;
}

.header__menu {
  display: none;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVgAAAFYCAYAAAAWbORAAAAC/ElEQVR4nO3OQQ1CQQDFwBWBG9zg38PHBJtHmpmk954DAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAP3lJkq50HknSleYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklRtPiBJ1eYDklTtfCRJVwIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+LG3JOlK55EkXWk+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnV5gOSVG0+IEnVzluSdCUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgB/7SJKudB5J0pXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JUbT4gSdXmA5JU7bwkSVcCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgT3wBVbhJF9AtQrIAAAAASUVORK5CYII=);
  -webkit-filter: invert(1);
          filter: invert(1);
  cursor: pointer;
}

.header__close, .header__back {
  cursor: pointer;
  background-size: contain !important;
  height: 100%;
}

.header__close:hover, .header__back:hover {
  opacity: .9;
}

.header__back {
  background-image: var(--icon-arr-back);
  background-size: 15px;
}

.header__close {
  background-image: var(--icon-x);
  background-size: 20px;
  background-position: center right;
}

.header__langs {
  display: none;
  text-align: right;
}

.header__body {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__favorite {
  display: inline-block;
  padding: 1px 5px 1px 20px;
  background-image: var(--icon-star);
  background-size: 17px;
  background-position: left center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .85rem;
  visibility: hidden;
}

.header__favorite:hover {
  opacity: .9;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.header__video {
  display: none;
  position: relative;
  background-color: #fff;
  background-image: var(--icon-video);
  border-radius: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 0;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  cursor: pointer;
}

.header__video:hover {
  opacity: .8;
  -webkit-box-shadow: var(--shadow-hover);
          box-shadow: var(--shadow-hover);
}

#headerSubtitleRules {
  display: none;
}

.lang {
  position: relative;
}

.lang__current {
  max-width: 115px;
  text-align: left;
  margin-left: auto;
  padding-left: 30px;
  font-size: .875rem;
  cursor: pointer;
}

.langs {
  position: relative;
  border-radius: 10px;
  background-color: #f6f6f6;
  padding: 50px 20px;
}

.langs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-gap: 30px 20px;
  width: 100%;
  max-width: 400px;
  list-style-type: none;
}

.langs-list__item {
  text-align: left;
  padding: 5px;
  padding-left: 50px;
  font-size: 0.875rem;
  background-size: 40px 30px !important;
  pointer-events: all;
  cursor: pointer;
}

.langs-list__item:hover {
  background-color: #eee;
}

.page-title {
  font-size: 1rem;
  font-weight: normal;
  color: #fff;
}

.h1 {
  color: #fff;
  font-weight: normal;
}

.favorite-tabs {
  display: none;
  grid-template-columns: 130px 130px;
  gap: 20px;
  color: #fff;
}

.favorite-tabs__item {
  border: 1px solid #fff;
  border-radius: 10px;
  text-align: center;
  padding: 5px;
  -webkit-transition: .125s;
  -o-transition: .125s;
  transition: .125s;
  cursor: pointer;
}

.favorite-tabs__item:hover, .favorite-tabs__item.is-active {
  color: #000;
  background-color: #fff;
}

[header_body="game"] {
  grid-template-columns: 1fr auto;
}

[header_body="game"] .header__favorite,
[header_body="game"] .header__rules,
[header_body="game"] .header__video {
  display: block;
}

/*
	 Flags
	 ========================================================================== */
[flag-icon] {
  background-size: 20px 15px;
  background-repeat: no-repeat;
  background-position: center left;
}

[flag-icon='ru'] {
  background-image: var(--icon-flag-ru);
}

[flag-icon='en'] {
  background-image: var(--icon-flag-en);
}

[flag-icon='es'] {
  background-image: var(--icon-flag-sp);
}

[flag-icon='fr'] {
  background-image: var(--icon-flag-fr);
}

[flag-icon='it'] {
  background-image: var(--icon-flag-it);
}

[flag-icon='kz'] {
  background-image: var(--icon-flag-kz);
}

[flag-icon='hy'] {
  background-image: var(--icon-flag-hy);
}

[flag-icon='sw'] {
  background-image: var(--icon-flag-sw);
}

.racings_item {
  display: grid;
  grid-gap: 7px;
  grid-auto-columns: 45px;
  grid-auto-flow: column;
}

[race_number] {
  height: 35px;
  font-size: 0;
  color: transparent;
  background-size: contain;
}

[table_game_id="59"] [race_number="1"],
[table_game_id="14"] [race_number="1"] {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%23FFFFFF;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='50' x2='128' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7V93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='63.9999' y1='0.5994' x2='63.9999' y2='98.2264'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7V92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='50' x2='121.7495' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3CradialGradient id='SVGID_4_' cx='-14.1637' cy='36.0601' r='52.0735' gradientTransform='matrix(0.9797 0 0 0.9928 77.8759 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C11A31'/%3E%3Cstop offset='5.061191e-02' style='stop-color:%23C31D35'/%3E%3Cstop offset='0.4348' style='stop-color:%23D32F53'/%3E%3Cstop offset='0.7646' style='stop-color:%23DD3A65'/%3E%3Cstop offset='1' style='stop-color:%23E03E6C'/%3E%3C/radialGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3H13.5c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3V86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='11.9025' cy='36.0601' r='50.898' gradientTransform='matrix(0.9904 0 0 0.9928 52.2116 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23E03E6C'/%3E%3Cstop offset='0.2354' style='stop-color:%23DD3A65'/%3E%3Cstop offset='0.5652' style='stop-color:%23D32F53'/%3E%3Cstop offset='0.9494' style='stop-color:%23C31D35'/%3E%3Cstop offset='1' style='stop-color:%23C11A31'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 V85.8z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M72,80.6H60.4V36.3c-4.2,4-9.2,7-15,8.9V34.5c2.9-1,6.2-2.9,9.9-5.7c3.6-2.8,6.1-6.1,7.3-9.8H72V80.6z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='112.2485' cy='47.0861' r='48.4685' gradientTransform='matrix(1.0089 0 0 0.9446 -49.2543 11.7805)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6H14.6c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="59"] [race_number="2"],
[table_game_id="14"] [race_number="2"] {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%23FFFFFF;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='50' x2='128' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7V93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='63.9999' y1='0.5994' x2='63.9999' y2='98.2264'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7V92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='50' x2='121.7495' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3ClinearGradient id='SVGID_4_' gradientUnits='userSpaceOnUse' x1='6.2135' y1='50' x2='121.7865' y2='50'%3E%3Cstop offset='0' style='stop-color:%2332BDF9'/%3E%3Cstop offset='0.2386' style='stop-color:%2330BAF6'/%3E%3Cstop offset='0.4418' style='stop-color:%232AAFED'/%3E%3Cstop offset='0.6319' style='stop-color:%23219EDD'/%3E%3Cstop offset='0.8142' style='stop-color:%231385C7'/%3E%3Cstop offset='0.9893' style='stop-color:%230165AB'/%3E%3Cstop offset='1' style='stop-color:%230063A9'/%3E%3C/linearGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3H13.5c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3V86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='8.6794' cy='36.0601' r='50.898' gradientTransform='matrix(0.9904 0 0 0.9928 55.4038 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23329EFB'/%3E%3Cstop offset='0.1784' style='stop-color:%232E97F7'/%3E%3Cstop offset='0.4286' style='stop-color:%232485EC'/%3E%3Cstop offset='0.7196' style='stop-color:%231468DA'/%3E%3Cstop offset='1' style='stop-color:%230044C5'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 V85.8z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M84.4,70.7v10.9H42.3c0.5-4.1,1.8-8.1,4.1-11.8c2.3-3.7,6.8-8.6,13.5-14.7c5.4-4.9,8.7-8.3,10-10.1 c1.7-2.4,2.5-4.8,2.5-7.2c0-2.6-0.7-4.6-2.2-6.1c-1.4-1.4-3.4-2.1-6-2.1c-2.5,0-4.5,0.7-6,2.2c-1.5,1.5-2.3,3.9-2.6,7.4l-12-1.2 c0.7-6.5,3-11.1,6.7-14c3.8-2.8,8.5-4.2,14.1-4.2c6.2,0,11,1.6,14.6,4.9c3.5,3.3,5.3,7.3,5.3,12.2c0,2.8-0.5,5.4-1.5,7.9 c-1,2.5-2.6,5.1-4.8,7.9c-1.5,1.8-4.1,4.4-7.9,7.8c-3.8,3.4-6.2,5.7-7.2,6.8c-1,1.1-1.8,2.2-2.5,3.3H84.4z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='109.0845' cy='47.0861' r='48.4685' gradientTransform='matrix(1.0089 0 0 0.9446 -46.0621 11.7805)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6H14.6c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="59"] [race_number="3"],
[table_game_id="14"] [race_number="3"] {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3C!-- Generator: Adobe Illustrator 22.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%231C1C1B;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='50' x2='128' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7V93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='63.9999' y1='0.5994' x2='63.9999' y2='98.2264'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7V92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='50' x2='121.7495' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103 c4,0,7.3,3.3,7.3,7.3V87.5z'/%3E%3CradialGradient id='SVGID_4_' cx='-21.1486' cy='36.0601' r='52.0735' gradientTransform='matrix(0.9797 0 0 0.9928 84.7189 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23E2E4E6'/%3E%3Cstop offset='0.1006' style='stop-color:%23E6E8EA'/%3E%3Cstop offset='0.6251' style='stop-color:%23F8F9F9'/%3E%3Cstop offset='1' style='stop-color:%23FFFFFF'/%3E%3C/radialGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3H13.5c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3V86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='4.9932' cy='36.0601' r='50.898' gradientTransform='matrix(0.9904 0 0 0.9928 59.0546 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23FFFFFF'/%3E%3Cstop offset='0.3749' style='stop-color:%23F8F9F9'/%3E%3Cstop offset='0.8994' style='stop-color:%23E6E8EA'/%3E%3Cstop offset='1' style='stop-color:%23E2E4E6'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6 c4,0,7.2,3.2,7.2,7.2V85.8z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M43,64.6l11.3-1.4c0.4,2.9,1.3,5,2.9,6.6c1.6,1.5,3.5,2.3,5.7,2.3c2.4,0,4.4-0.9,6.1-2.7 c1.7-1.8,2.5-4.3,2.5-7.3c0-2.9-0.8-5.2-2.4-6.9c-1.6-1.7-3.5-2.6-5.8-2.6c-1.5,0-3.3,0.3-5.4,0.9l1.3-9.4c3.2,0.1,5.6-0.6,7.2-2 c1.7-1.4,2.5-3.4,2.5-5.8c0-2-0.6-3.7-1.8-4.9c-1.2-1.2-2.8-1.8-4.9-1.8c-2,0-3.7,0.7-5.1,2.1c-1.4,1.4-2.3,3.4-2.6,6l-10.8-1.8 c0.7-3.7,1.9-6.6,3.4-8.8c1.5-2.2,3.6-3.9,6.3-5.2s5.7-1.9,9.1-1.9c5.7,0,10.3,1.8,13.8,5.4c2.9,3,4.3,6.3,4.3,10.1 c0,5.3-2.9,9.5-8.8,12.7c3.5,0.7,6.3,2.4,8.4,5c2.1,2.6,3.1,5.7,3.1,9.4c0,5.3-2,9.8-5.9,13.6c-3.9,3.7-8.8,5.6-14.6,5.6 c-5.5,0-10.1-1.6-13.7-4.7C45.7,73.8,43.6,69.7,43,64.6z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='105.4661' cy='47.0861' r='48.4685' gradientTransform='matrix(1.0089 0 0 0.9446 -42.4113 11.7805)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6H14.6c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="59"] [race_number="4"],
[table_game_id="14"] [race_number="4"] {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%23FFFFFF;%7D .st6%7Bopacity:0.61;fill:url(%23SVGID_6_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='50' x2='128' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7V93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='63.9999' y1='0.5994' x2='63.9999' y2='98.2264'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7V92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='50' x2='121.7495' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3CradialGradient id='SVGID_4_' cx='-24.8438' cy='36.0601' r='52.0735' gradientTransform='matrix(0.9797 0 0 0.9928 88.3389 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000'/%3E%3Cstop offset='0.1891' style='stop-color:%23131315'/%3E%3Cstop offset='0.5171' style='stop-color:%232F2F32'/%3E%3Cstop offset='0.7989' style='stop-color:%23404044'/%3E%3Cstop offset='1' style='stop-color:%2346464B'/%3E%3C/radialGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3H13.5c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3V86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='1.3381' cy='36.0601' r='50.898' gradientTransform='matrix(0.9904 0 0 0.9928 62.6747 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%2327272F'/%3E%3Cstop offset='0.2732' style='stop-color:%23222228'/%3E%3Cstop offset='0.6551' style='stop-color:%23131316'/%3E%3Cstop offset='1' style='stop-color:%23000000'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 V85.8z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M65,81.7V69.3H39.6V59l26.9-39h10v39h7.7v10.3h-7.7v12.4H65z M65,59V38L50.7,59H65z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='101.8781' cy='47.0861' r='48.4685' gradientTransform='matrix(1.0089 0 0 0.9446 -38.7912 11.7805)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23FFFFFF;stop-opacity:0.2'/%3E%3Cstop offset='0.1515' style='stop-color:%23FCFCFC;stop-opacity:0.2303'/%3E%3Cstop offset='0.2806' style='stop-color:%23F1F1F1;stop-opacity:0.2561'/%3E%3Cstop offset='0.4014' style='stop-color:%23E0E0E0;stop-opacity:0.2803'/%3E%3Cstop offset='0.5173' style='stop-color:%23C7C7C7;stop-opacity:0.3035'/%3E%3Cstop offset='0.6297' style='stop-color:%23A7A7A7;stop-opacity:0.3259'/%3E%3Cstop offset='0.7394' style='stop-color:%237F7F7F;stop-opacity:0.3479'/%3E%3Cstop offset='0.8469' style='stop-color:%23515151;stop-opacity:0.3694'/%3E%3Cstop offset='0.9502' style='stop-color:%231C1C1C;stop-opacity:0.39'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6H14.6c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="59"] [race_number="5"],
[table_game_id="14"] [race_number="5"] {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bopacity:0.6;fill:url(%23SVGID_5_);%7D .st5%7Bfill:%231C1C1B;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='50' x2='128' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7V93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='63.9999' y1='0.5994' x2='63.9999' y2='98.2264'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7V92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='50' x2='121.7495' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3ClinearGradient id='SVGID_4_' gradientUnits='userSpaceOnUse' x1='6.2135' y1='50' x2='121.7865' y2='50'%3E%3Cstop offset='0' style='stop-color:%23FFFF53'/%3E%3Cstop offset='0.1882' style='stop-color:%23FFFB4C'/%3E%3Cstop offset='0.452' style='stop-color:%23FEF03A'/%3E%3Cstop offset='0.7589' style='stop-color:%23FEDE1C'/%3E%3Cstop offset='1' style='stop-color:%23FDCD00'/%3E%3C/linearGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3H13.5c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3V86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='-1.5062' cy='36.0601' r='50.898' gradientTransform='matrix(0.9904 0 0 0.9928 65.4918 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23FDC801'/%3E%3Cstop offset='0.3515' style='stop-color:%23FDC101'/%3E%3Cstop offset='0.8431' style='stop-color:%23FDAF00'/%3E%3Cstop offset='1' style='stop-color:%23FDA800'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 V85.8z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st5' d='M42.7,63.8l11.9-1.2c0.3,2.7,1.3,4.8,3,6.3c1.7,1.6,3.6,2.3,5.8,2.3c2.5,0,4.6-1,6.3-3c1.7-2,2.6-5,2.6-9 c0-3.8-0.9-6.6-2.6-8.5c-1.7-1.9-3.9-2.8-6.7-2.8c-3.4,0-6.5,1.5-9.2,4.5L44.1,51l6.1-32h31.5v11H59.2l-1.9,10.4 c2.7-1.3,5.4-2,8.1-2c5.3,0,9.8,1.9,13.4,5.7c3.7,3.8,5.5,8.7,5.5,14.8c0,5.1-1.5,9.6-4.4,13.5c-4,5.4-9.6,8.1-16.8,8.1 c-5.7,0-10.4-1.5-14-4.6C45.5,73,43.4,68.9,42.7,63.8z'/%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='99.0859' cy='47.0861' r='48.4685' gradientTransform='matrix(1.0089 0 0 0.9446 -35.9741 11.7805)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6H14.6c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="59"] [race_number="6"],
[table_game_id="14"] [race_number="6"] {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bclip-path:url(%23SVGID_7_);fill:url(%23SVGID_8_);%7D .st6%7Bclip-path:url(%23SVGID_7_);fill:url(%23SVGID_9_);%7D .st7%7Bclip-path:url(%23SVGID_7_);fill:url(%23SVGID_10_);%7D .st8%7Bfill:%23C20030;%7D .st9%7Bfill:%23FFFFFF;%7D .st10%7Bopacity:0.37;fill:url(%23SVGID_11_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='50' x2='128' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7V93.3z' /%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='63.9999' y1='0.5994' x2='63.9999' y2='98.2264'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7V92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='50' x2='121.7495' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103 c4,0,7.3,3.3,7.3,7.3V87.5z'/%3E%3CradialGradient id='SVGID_4_' cx='-31.4171' cy='36.0601' r='52.0735' gradientTransform='matrix(0.9797 0 0 0.9928 94.7787 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23E2E4E6'/%3E%3Cstop offset='0.1006' style='stop-color:%23E6E8EA'/%3E%3Cstop offset='0.6251' style='stop-color:%23F8F9F9'/%3E%3Cstop offset='1' style='stop-color:%23FFFFFF'/%3E%3C/radialGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3H13.5c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3V86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='-5.164' cy='36.0601' r='50.898' gradientTransform='matrix(0.9904 0 0 0.9928 69.1145 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23FFFFFF'/%3E%3Cstop offset='0.3749' style='stop-color:%23F8F9F9'/%3E%3Cstop offset='0.8994' style='stop-color:%23E6E8EA'/%3E%3Cstop offset='1' style='stop-color:%23E2E4E6'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6 c4,0,7.2,3.2,7.2,7.2V85.8z'/%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_6_' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6 c4,0,7.2,3.2,7.2,7.2V85.8z'/%3E%3C/defs%3E%3CclipPath id='SVGID_7_'%3E%3Cuse xlink:href='%23SVGID_6_' style='overflow:visible;'/%3E%3C/clipPath%3E%3ClinearGradient id='SVGID_8_' gradientUnits='userSpaceOnUse' x1='63.0734' y1='5.2418' x2='63.0734' y2='29.3902'%3E%3Cstop offset='0' style='stop-color:%2327272F'/%3E%3Cstop offset='0.2732' style='stop-color:%23222228'/%3E%3Cstop offset='0.6551' style='stop-color:%23131316'/%3E%3Cstop offset='1' style='stop-color:%23000000'/%3E%3C/linearGradient%3E%3Crect x='5' y='5.2' class='st5' width='116.2' height='24.1'/%3E%3ClinearGradient id='SVGID_9_' gradientUnits='userSpaceOnUse' x1='63.0734' y1='94.7582' x2='63.0734' y2='98.6408'%3E%3Cstop offset='0' style='stop-color:%2327272F'/%3E%3Cstop offset='0.2732' style='stop-color:%23222228'/%3E%3Cstop offset='0.6551' style='stop-color:%23131316'/%3E%3Cstop offset='1' style='stop-color:%23000000'/%3E%3C/linearGradient%3E%3Crect x='4.3' y='94.8' class='st6' width='117.5' height='3.9'/%3E%3ClinearGradient id='SVGID_10_' gradientUnits='userSpaceOnUse' x1='63.0734' y1='51.6288' x2='63.0734' y2='76.0482'%3E%3Cstop offset='0' style='stop-color:%2327272F'/%3E%3Cstop offset='0.2732' style='stop-color:%23222228'/%3E%3Cstop offset='0.6551' style='stop-color:%23131316'/%3E%3Cstop offset='1' style='stop-color:%23000000'/%3E%3C/linearGradient%3E%3Crect x='4.3' y='51.6' class='st7' width='117.5' height='24.4'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath class='st8' d='M79.1,36.1l-10.6,1.2c-0.3-2.2-0.9-3.7-2-4.8c-1.1-1-2.5-1.5-4.2-1.5c-2.3,0-4.3,1-5.8,3.1 c-1.6,2.1-2.6,6.3-3,12.8c2.7-3.2,6.1-4.8,10.1-4.8c4.6,0,8.5,1.7,11.7,5.2c3.2,3.4,4.9,7.9,4.9,13.3c0,5.8-1.7,10.4-5.1,13.9 c-3.4,3.5-7.8,5.2-13.2,5.2c-5.8,0-10.5-2.2-14.2-6.6c-3.7-4.4-5.6-11.7-5.6-21.8c0-10.3,1.9-17.8,5.8-22.4 c3.9-4.6,8.9-6.9,15-6.9c4.3,0,7.9,1.2,10.7,3.6S78.3,31.5,79.1,36.1z M54.4,59.7c0,3.5,0.8,6.2,2.4,8.1 c1.6,1.9,3.5,2.9,5.6,2.9c2,0,3.7-0.8,5.1-2.3c1.3-1.6,2-4.1,2-7.7c0-3.7-0.7-6.4-2.2-8.1C65.8,50.9,64,50,61.9,50 c-2.1,0-3.9,0.8-5.3,2.4C55.1,54.1,54.4,56.5,54.4,59.7z'/%3E%3Cpath class='st9' d='M61.9,86.8c-7.8,0-14.6-3.2-19.6-9.2C37.4,71.8,35,63.2,35,51.2c0-12.2,2.5-21.1,7.5-27 c5.2-6.1,12.2-9.4,20.4-9.4c6,0,11.2,1.8,15.3,5.3c4.1,3.5,6.8,8.5,7.9,14.7c0.3,2-0.1,4-1.3,5.5c-0.9,1.3-2.2,2.1-3.7,2.6 c4.1,4.7,6.2,10.6,6.2,17.5c0,7.7-2.4,14.1-7.2,18.9C75.3,84.4,69.1,86.8,61.9,86.8z M62.6,63.6L62.6,63.6L62.6,63.6z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st8' d='M80.6,36.2l-11.3,1.1c-0.3-2.3-1-4-2.1-5.1c-1.2-1.1-2.7-1.7-4.5-1.7c-2.5,0-4.6,1.1-6.3,3.2 c-1.7,2.2-2.8,6.7-3.4,13.7c2.9-3.4,6.6-5,10.9-5c4.9,0,9,1.9,12.5,5.6c3.4,3.7,5.1,8.5,5.1,14.3c-0.1,6.2-1.9,11.1-5.6,14.8 c-3.7,3.7-8.4,5.5-14.2,5.5c-6.2-0.1-11.2-2.5-15.1-7.3c-3.9-4.8-5.8-12.6-5.7-23.4c0.1-11.1,2.2-19,6.4-23.9 c4.2-4.8,9.6-7.2,16.2-7.2c4.6,0,8.5,1.4,11.5,4C77.9,27.6,79.8,31.3,80.6,36.2z M53.9,61.2c0,3.8,0.8,6.7,2.5,8.7 c1.7,2.1,3.7,3.1,6,3.1c2.2,0,4-0.8,5.4-2.5c1.5-1.7,2.2-4.4,2.2-8.2c0-3.9-0.7-6.8-2.2-8.7C66.3,51.9,64.3,51,62,51 c-2.2,0-4.2,0.8-5.7,2.6C54.7,55.3,53.9,57.8,53.9,61.2z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_11_' cx='95.7452' cy='46.4463' r='48.4685' gradientTransform='matrix(1.0089 0 0 0.9446 -32.3514 11.7805)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st10' d='M121.2,86.5c0,4-2.6,5.9-7.4,5.9H14.8c-4.1,0-6.7-2.3-7.4-5.9c-0.2-0.8-0.1-11.7-0.1-12.6 c0,0,0.3-1.2,1.8-1.3c89-7.9,112.1-57.6,112.1-53.4V86.5z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

/* horses */
[table_game_id="15"] [race_number="1"],
[table_game_id="60"] [race_number="1"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%23FFFFFF;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='50' x2='128' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7V93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='63.9999' y1='0.5994' x2='63.9999' y2='98.2264'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7V92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='50' x2='121.7495' y2='50'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3CradialGradient id='SVGID_4_' cx='-14.1637' cy='36.0601' r='52.0735' gradientTransform='matrix(0.9797 0 0 0.9928 77.8759 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C11A31'/%3E%3Cstop offset='5.061191e-02' style='stop-color:%23C31D35'/%3E%3Cstop offset='0.4348' style='stop-color:%23D32F53'/%3E%3Cstop offset='0.7646' style='stop-color:%23DD3A65'/%3E%3Cstop offset='1' style='stop-color:%23E03E6C'/%3E%3C/radialGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3H13.5c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3V86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='11.9025' cy='36.0601' r='50.898' gradientTransform='matrix(0.9904 0 0 0.9928 52.2116 14.2013)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23E03E6C'/%3E%3Cstop offset='0.2354' style='stop-color:%23DD3A65'/%3E%3Cstop offset='0.5652' style='stop-color:%23D32F53'/%3E%3Cstop offset='0.9494' style='stop-color:%23C31D35'/%3E%3Cstop offset='1' style='stop-color:%23C11A31'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 V85.8z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M72,80.6H60.4V36.3c-4.2,4-9.2,7-15,8.9V34.5c2.9-1,6.2-2.9,9.9-5.7c3.6-2.8,6.1-6.1,7.3-9.8H72V80.6z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='112.2485' cy='47.0861' r='48.4685' gradientTransform='matrix(1.0089 0 0 0.9446 -49.2543 11.7805)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6H14.6c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="15"] [race_number="2"],
[table_game_id="60"] [race_number="2"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%231C1C1B;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);enable-background:new ;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='52' x2='128' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7 C128,6.7,128,93.3,128,93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='64.05' y1='101.4006' x2='64.05' y2='3.7736' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7L127.1,92.4L127.1,92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='52' x2='121.7495' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103 c4,0,7.3,3.3,7.3,7.3V87.5z'/%3E%3CradialGradient id='SVGID_4_' cx='-2.5522' cy='62.3953' r='52.0437' gradientTransform='matrix(0.9797 0 0 -0.9928 66.5504 111.9461)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23E2E4E6'/%3E%3Cstop offset='0.1006' style='stop-color:%23E6E8EA'/%3E%3Cstop offset='0.6251' style='stop-color:%23F8F9F9'/%3E%3Cstop offset='1' style='stop-color:%23FFFFFF'/%3E%3C/radialGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3h-101c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3L121.8,86.5L121.8,86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='13.6686' cy='62.3953' r='50.9323' gradientTransform='matrix(0.9904 0 0 -0.9928 50.4626 111.9461)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23FFFFFF'/%3E%3Cstop offset='0.3749' style='stop-color:%23F8F9F9'/%3E%3Cstop offset='0.8994' style='stop-color:%23E6E8EA'/%3E%3Cstop offset='1' style='stop-color:%23E2E4E6'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6 c4,0,7.2,3.2,7.2,7.2C121,14.2,121,85.8,121,85.8z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M84.4,70.7v10.9H42.3c0.5-4.1,1.8-8.1,4.1-11.8c2.3-3.7,6.8-8.6,13.5-14.7c5.4-4.9,8.7-8.3,10-10.1 c1.7-2.4,2.5-4.8,2.5-7.2c0-2.6-0.7-4.6-2.2-6.1c-1.4-1.4-3.4-2.1-6-2.1c-2.5,0-4.5,0.7-6,2.2s-2.3,3.9-2.6,7.4l-12-1.2 c0.7-6.5,3-11.1,6.7-14c3.8-2.8,8.5-4.2,14.1-4.2c6.2,0,11,1.6,14.6,4.9c3.5,3.3,5.3,7.3,5.3,12.2c0,2.8-0.5,5.4-1.5,7.9 s-2.6,5.1-4.8,7.9c-1.5,1.8-4.1,4.4-7.9,7.8c-3.8,3.4-6.2,5.7-7.2,6.8c-1,1.1-1.8,2.2-2.5,3.3L84.4,70.7L84.4,70.7z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='97.5773' cy='26.2702' r='48.4739' gradientTransform='matrix(1.0089 0 0 -0.9446 -34.4458 81.0391)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6h-99c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="15"] [race_number="3"],
[table_game_id="60"] [race_number="3"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%23FFFFFF;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);enable-background:new ;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='52' x2='128' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7 C128,6.7,128,93.3,128,93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='64.05' y1='101.4006' x2='64.05' y2='3.7736' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7L127.1,92.4L127.1,92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='52' x2='121.7495' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3ClinearGradient id='SVGID_4_' gradientUnits='userSpaceOnUse' x1='6.2' y1='52' x2='121.773' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%2332BDF9'/%3E%3Cstop offset='0.2386' style='stop-color:%2330BAF6'/%3E%3Cstop offset='0.4418' style='stop-color:%232AAFED'/%3E%3Cstop offset='0.6319' style='stop-color:%23219EDD'/%3E%3Cstop offset='0.8142' style='stop-color:%231385C7'/%3E%3Cstop offset='0.9893' style='stop-color:%230165AB'/%3E%3Cstop offset='1' style='stop-color:%230063A9'/%3E%3C/linearGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3h-101c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3L121.8,86.5L121.8,86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='17.3548' cy='62.3953' r='50.9323' gradientTransform='matrix(0.9904 0 0 -0.9928 46.8118 111.9461)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23329EFB'/%3E%3Cstop offset='0.1784' style='stop-color:%232E97F7'/%3E%3Cstop offset='0.4286' style='stop-color:%232485EC'/%3E%3Cstop offset='0.7196' style='stop-color:%231468DA'/%3E%3Cstop offset='1' style='stop-color:%230044C5'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 C121,14.2,121,85.8,121,85.8z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M43,64.6l11.3-1.4c0.4,2.9,1.3,5,2.9,6.6c1.6,1.5,3.5,2.3,5.7,2.3c2.4,0,4.4-0.9,6.1-2.7 c1.7-1.8,2.5-4.3,2.5-7.3c0-2.9-0.8-5.2-2.4-6.9s-3.5-2.6-5.8-2.6c-1.5,0-3.3,0.3-5.4,0.9l1.3-9.4c3.2,0.1,5.6-0.6,7.2-2 c1.7-1.4,2.5-3.4,2.5-5.8c0-2-0.6-3.7-1.8-4.9c-1.2-1.2-2.8-1.8-4.9-1.8c-2,0-3.7,0.7-5.1,2.1c-1.4,1.4-2.3,3.4-2.6,6l-10.8-1.8 c0.7-3.7,1.9-6.6,3.4-8.8s3.6-3.9,6.3-5.2s5.7-1.9,9.1-1.9c5.7,0,10.3,1.8,13.8,5.4c2.9,3,4.3,6.3,4.3,10.1 c0,5.3-2.9,9.5-8.8,12.7c3.5,0.7,6.3,2.4,8.4,5s3.1,5.7,3.1,9.4c0,5.3-2,9.8-5.9,13.6c-3.9,3.7-8.8,5.6-14.6,5.6 c-5.5,0-10.1-1.6-13.7-4.7C45.7,73.8,43.6,69.7,43,64.6z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='101.1959' cy='26.2702' r='48.4739' gradientTransform='matrix(1.0089 0 0 -0.9446 -38.0966 81.0391)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6h-99c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="15"] [race_number="4"],
[table_game_id="60"] [race_number="4"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bopacity:0.6;fill:url(%23SVGID_5_);enable-background:new ;%7D .st5%7Bfill:%231C1C1B;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);enable-background:new ;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='52' x2='128' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7 C128,6.7,128,93.3,128,93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='64.05' y1='101.4006' x2='64.05' y2='3.7736' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7L127.1,92.4L127.1,92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='52' x2='121.7495' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3ClinearGradient id='SVGID_4_' gradientUnits='userSpaceOnUse' x1='6.2' y1='52' x2='121.773' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23FFFF53'/%3E%3Cstop offset='0.1882' style='stop-color:%23FFFB4C'/%3E%3Cstop offset='0.452' style='stop-color:%23FEF03A'/%3E%3Cstop offset='0.7589' style='stop-color:%23FEDE1C'/%3E%3Cstop offset='1' style='stop-color:%23FDCD00'/%3E%3C/linearGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3h-101c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3L121.8,86.5L121.8,86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='7.169' cy='62.3953' r='50.9323' gradientTransform='matrix(0.9904 0 0 -0.9928 56.8998 111.9461)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23FDC801'/%3E%3Cstop offset='0.3515' style='stop-color:%23FDC101'/%3E%3Cstop offset='0.8431' style='stop-color:%23FDAF00'/%3E%3Cstop offset='1' style='stop-color:%23FDA800'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 C121,14.2,121,85.8,121,85.8z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M65,81.7V69.3H39.6V59l26.9-39h10v39h7.7v10.3h-7.7v12.4C76.5,81.7,65,81.7,65,81.7z M65,59V38L50.7,59H65z '/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='91.1969' cy='26.2702' r='48.4739' gradientTransform='matrix(1.0089 0 0 -0.9446 -28.0086 81.0391)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6h-99c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="15"] [race_number="5"],
[table_game_id="60"] [race_number="5"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%23FFFFFF;%7D .st6%7Bopacity:0.37;fill:url(%23SVGID_6_);enable-background:new ;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='52' x2='128' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7 C128,6.7,128,93.3,128,93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='64.05' y1='101.4006' x2='64.05' y2='3.7736' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7L127.1,92.4L127.1,92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='52' x2='121.7495' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3ClinearGradient id='SVGID_4_' gradientUnits='userSpaceOnUse' x1='6.2' y1='52' x2='121.773' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%2337EA20'/%3E%3Cstop offset='0.1811' style='stop-color:%2333E322'/%3E%3Cstop offset='0.4349' style='stop-color:%2329D129'/%3E%3Cstop offset='0.7302' style='stop-color:%2318B334'/%3E%3Cstop offset='1' style='stop-color:%23059240'/%3E%3C/linearGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3h-101c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3L121.8,86.5L121.8,86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='7.169' cy='62.3953' r='50.9323' gradientTransform='matrix(0.9904 0 0 -0.9928 56.8998 111.9461)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%2318D641'/%3E%3Cstop offset='0.1811' style='stop-color:%2316CF43'/%3E%3Cstop offset='0.4349' style='stop-color:%2311BD4A'/%3E%3Cstop offset='0.7302' style='stop-color:%23099F55'/%3E%3Cstop offset='1' style='stop-color:%23007E61'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 C121,14.2,121,85.8,121,85.8z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st5' d='M42.7,63.8l11.9-1.2c0.3,2.7,1.3,4.8,3,6.3c1.7,1.6,3.6,2.3,5.8,2.3c2.5,0,4.6-1,6.3-3s2.6-5,2.6-9 c0-3.8-0.9-6.6-2.6-8.5s-3.9-2.8-6.7-2.8c-3.4,0-6.5,1.5-9.2,4.5L44.1,51l6.1-32h31.5v11H59.2l-1.9,10.4c2.7-1.3,5.4-2,8.1-2 c5.3,0,9.8,1.9,13.4,5.7c3.7,3.8,5.5,8.7,5.5,14.8c0,5.1-1.5,9.6-4.4,13.5c-4,5.4-9.6,8.1-16.8,8.1c-5.7,0-10.4-1.5-14-4.6 C45.5,73,43.4,68.9,42.7,63.8z'/%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='91.1969' cy='26.2702' r='48.4739' gradientTransform='matrix(1.0089 0 0 -0.9446 -28.0086 81.0391)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000;stop-opacity:0.2'/%3E%3Cstop offset='0.928' style='stop-color:%23000000;stop-opacity:0.3856'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6h-99c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_game_id="15"] [race_number="6"],
[table_game_id="60"] [race_number="6"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 128 100' style='enable-background:new 0 0 128 100;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:url(%23SVGID_1_);%7D .st1%7Bfill:url(%23SVGID_2_);%7D .st2%7Bfill:url(%23SVGID_3_);%7D .st3%7Bfill:url(%23SVGID_4_);%7D .st4%7Bfill:url(%23SVGID_5_);%7D .st5%7Bfill:%23FFD400;%7D .st6%7Bopacity:0.61;fill:url(%23SVGID_6_);enable-background:new ;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='0' y1='52' x2='128' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st0' d='M128,93.3c0,3.7-3,6.7-6.7,6.7H6.7C3,100,0,97,0,93.3V6.7C0,3,3,0,6.7,0h114.6c3.7,0,6.7,3,6.7,6.7 C128,6.7,128,93.3,128,93.3z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='64.05' y1='101.4006' x2='64.05' y2='3.7736' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st1' d='M127.1,92.4c0,3.7-3,6.7-6.7,6.7H7.6c-3.7,0-6.7-3-6.7-6.7V7.6c0-3.7,3-6.7,6.7-6.7h112.9 c3.7,0,6.7,3,6.7,6.7L127.1,92.4L127.1,92.4z'/%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='5.4978' y1='52' x2='121.7495' y2='52' gradientTransform='matrix(1 0 0 -1 0 102)'%3E%3Cstop offset='0' style='stop-color:%23CCAC41'/%3E%3Cstop offset='0.2081' style='stop-color:%23FFFF8B'/%3E%3Cstop offset='0.5656' style='stop-color:%23C29C2F'/%3E%3Cstop offset='0.6689' style='stop-color:%23AD871F'/%3E%3Cstop offset='0.8238' style='stop-color:%23876001'/%3E%3Cstop offset='0.8422' style='stop-color:%238F6808'/%3E%3Cstop offset='0.8709' style='stop-color:%23A47E1B'/%3E%3Cstop offset='0.906' style='stop-color:%23C6A23A'/%3E%3Cstop offset='0.9223' style='stop-color:%23D8B54A'/%3E%3Cstop offset='1' style='stop-color:%23F7F498'/%3E%3C/linearGradient%3E%3Cpath class='st2' d='M122.8,87.5c0,4-3.2,7.3-7.3,7.3h-103c-4,0-7.3-3.3-7.3-7.3v-75c0-4,3.2-7.3,7.3-7.3h103c4,0,7.3,3.3,7.3,7.3 V87.5z'/%3E%3CradialGradient id='SVGID_4_' cx='-6.2472' cy='62.3953' r='52.0435' gradientTransform='matrix(0.9797 0 0 -0.9928 70.1704 111.9461)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23000000'/%3E%3Cstop offset='0.1891' style='stop-color:%23131315'/%3E%3Cstop offset='0.5171' style='stop-color:%232F2F32'/%3E%3Cstop offset='0.7989' style='stop-color:%23404044'/%3E%3Cstop offset='1' style='stop-color:%2346464B'/%3E%3C/radialGradient%3E%3Cpath class='st3' d='M121.8,86.5c0,4-3.2,7.3-7.3,7.3h-101c-4,0-7.3-3.3-7.3-7.3v-73c0-4,3.2-7.3,7.3-7.3h101.1 c4,0,7.3,3.3,7.3,7.3L121.8,86.5L121.8,86.5z'/%3E%3CradialGradient id='SVGID_5_' cx='10.0134' cy='62.3953' r='50.9323' gradientTransform='matrix(0.9904 0 0 -0.9928 54.0827 111.9461)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%2327272F'/%3E%3Cstop offset='0.2732' style='stop-color:%23222228'/%3E%3Cstop offset='0.6551' style='stop-color:%23131316'/%3E%3Cstop offset='1' style='stop-color:%23000000'/%3E%3C/radialGradient%3E%3Cpath class='st4' d='M121,85.8c0,4-3.2,7.2-7.2,7.2H14.2c-4,0-7.2-3.2-7.2-7.2V14.2c0-4,3.2-7.2,7.2-7.2h99.6c4,0,7.2,3.2,7.2,7.2 C121,14.2,121,85.8,121,85.8z'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='st5' d='M80.6,36.2l-11.3,1.1c-0.3-2.3-1-4-2.1-5.1c-1.2-1.1-2.7-1.7-4.5-1.7c-2.5,0-4.6,1.1-6.3,3.2 c-1.7,2.2-2.8,6.7-3.4,13.7c2.9-3.4,6.6-5,10.9-5c4.9,0,9,1.9,12.5,5.6c3.4,3.7,5.1,8.5,5.1,14.3c-0.1,6.2-1.9,11.1-5.6,14.8 s-8.4,5.5-14.2,5.5c-6.2-0.1-11.2-2.5-15.1-7.3s-5.8-12.6-5.7-23.4c0.1-11.1,2.2-19,6.4-23.9c4.2-4.8,9.6-7.2,16.2-7.2 c4.6,0,8.5,1.4,11.5,4C77.9,27.6,79.8,31.3,80.6,36.2z M53.9,61.2c0,3.8,0.8,6.7,2.5,8.7c1.7,2.1,3.7,3.1,6,3.1 c2.2,0,4-0.8,5.4-2.5c1.5-1.7,2.2-4.4,2.2-8.2c0-3.9-0.7-6.8-2.2-8.7C66.3,51.9,64.3,51,62,51c-2.2,0-4.2,0.8-5.7,2.6 C54.7,55.3,53.9,57.8,53.9,61.2z'/%3E%3C/g%3E%3C/g%3E%3CradialGradient id='SVGID_6_' cx='93.9892' cy='26.2702' r='48.4739' gradientTransform='matrix(1.0089 0 0 -0.9446 -30.8257 81.0391)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23FFFFFF;stop-opacity:0.2'/%3E%3Cstop offset='0.1515' style='stop-color:%23FCFCFC;stop-opacity:0.2303'/%3E%3Cstop offset='0.2806' style='stop-color:%23F1F1F1;stop-opacity:0.2561'/%3E%3Cstop offset='0.4014' style='stop-color:%23E0E0E0;stop-opacity:0.2803'/%3E%3Cstop offset='0.5173' style='stop-color:%23C7C7C7;stop-opacity:0.3035'/%3E%3Cstop offset='0.6297' style='stop-color:%23A7A7A7;stop-opacity:0.3259'/%3E%3Cstop offset='0.7394' style='stop-color:%237F7F7F;stop-opacity:0.3479'/%3E%3Cstop offset='0.8469' style='stop-color:%23515151;stop-opacity:0.3694'/%3E%3Cstop offset='0.9502' style='stop-color:%231C1C1C;stop-opacity:0.39'/%3E%3Cstop offset='1' style='stop-color:%23000000;stop-opacity:0.4'/%3E%3C/radialGradient%3E%3Cpath class='st6' d='M121,85.3c0,4-2.6,7.6-7.4,7.6h-99c-4.1,0-6.7-2.3-7.4-5.9C7,86.3,7,75.4,7,74.5c0,0,0.3-1.2,1.8-1.3 C97.9,65.3,121,15.6,121,19.8V85.3z'/%3E%3C/g%3E%3C/svg%3E%0A");
}

[table_name="keno"] [table_cell='data'],
[table_name="Keno"] [table_cell='data'] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
  grid-gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: .75rem;
  font-weight: bold;
}

.ball {
  height: 28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAABLCAYAAAA4TnrqAAAZ7klEQVR4Xt2cC7AfV13Hv+fs8/+471eeN0nbpCEECFAECpbS1EFwFBWtiKMOyOggUEYKWqRCoS1YCr5xnBF1VATtCKAwIlPbghboA1pN09C0adM8bpKb3OQ+/499nPMz97d75uze9d+bQFuKv7lndvfs/5+c/Zzf6/x29y+ICM8mWdh7y1UQgBBypm/HNXfgWSTPOKy5vX8w8bmvHLi2v1l/+aYNoxf7vl/buH4ogAghhAAgzNb8ARTju4+eaENHC8dPLhyenV/83C/85La/bW5/1/T/O1if+tjb3rR2fPC3168Z3rZ+/bqaEMigSAnBRCQDKkOSYBFmY8ZJ2Z9OcOzEdOfgEye+06zLWy676sZ//aGFdXrPLRP/dufU317y/M1XjIyMeIzB8eEGAxBCgliDNHTS4mNDRcjCPn8GuVAJGhET434ihaljxzuPPHbktt2vWP/rrHE/DLD+/o/e/vLx0cFP79qx5QLhNeE3xuE118NrjEK6NQsjF510sHD0HsRLx5FGLeg0RlGCej9vpRfAcfzsmCiHp3nfgCNotJcW6Dv/s/+uV71szc8ztGcjrFMP3Dxx9wNnvnrJru0vcPwmwqGLURuahHRDQAhuRkHKOwIghag1i/kj96I1vQerievX4df6GVzQGARIW3BaFaA9fBbaWob2rIH12T+7+lMveeHFb272jcnayDKkLRCOB7ECkIaGhASMz8q3Bl7cXkDcOoW5g3ciaZ/GuYiUDsLmMMK+EQS1Jog0wyOtQZRi5tRMsue7j93y02+95f0/UFjT9//+xIEnon2bJjcP14YvQH1kG5ygCZED0KTNnFhwgs/ycS9gatk0j3wL7Zn9OB+Rro++kQ2oNYchoEEFE330wP6pbVvCF7OWPdOwbv3zq9++a+fWP2kOrJV9618C6bg8m47jQbihddpsgj2AFaNgvg8QVNJlANH8UXROP8pBIG7PIunOQyURegmb//BFgIoRhh78MLSBgAhnzkwnx44d+bmXvf6D//qMwbrt0+/5u21bt/9y2D+J5tpdcLyAQ72KlxC35/nC3aAJL2zmwCwkKSSk40DI5SZhxYCEcdq8q1XCfoiFFJKlabRnHkZ3fgqdhbKSjO98I4QbsGZrnUK1puDLBCS0AQbSMR7c88AnL/2ZD7zjaYd1+2eufejCC7ftqA1uRmN8Bxw3AHhwCqD8gjoLAKUM0asNQjgupHTheD7AudVKMekAA+UdQcQ+Dlqh1xiT1jQWp76Dpen9cBvjGLpgN2DMW0jepzQComk4IrZmqSMceeJ/vvicV1/7M08brNv/4dqHLjgLqjG6DbXhCyEdHwDY/LDCD6mkDRW14db7EDZH2UyN+QHEYFh7hNUs7tc616QKIOPf8u9Z5CpuoXViL9y+TYAw4zCBRGb8VBcynYNOW8Y0cfjgnn07Ln/Xc59qWAxqy1lQ9eFtCAc2wAuaoDxU28zb+B8Bx3HhhnU2CaIcpBSAJkCUAOTmkRro5oSFaA97C0+EQNyaQxJ3DTQLDgKu50EghVo8xGZKpDFz5O7bN1/63iufMlh3fOa9X9+0Zftl9eGtCPrWwQ37AAJfoMzU3WqVFPDCBqQbQAhrVtzKICwk0hZLhYzoAUqU9shk/9JhjY7bcyAy3y9MoutBCkK68ASPX6sIB/Z/+5O7fuyaVX2YXF2j3v3xycmLLvOb6+DVRyG9EKR0lmkTQVMhixYSXn2QQzhg+ZCmio9SaQyVRuzrLKieQKr9VpmNFmWaqRXcoI7awBq4rl/JhVWaQpOE01wHIT0It46t21/89oPf/MSbvy9YX/qrd/3U+Pjkb7m1MSxHPuEEYDYqNoCyLcARzm8M8KCLw9NKF/0Pw0miLshAEqJiTr0PmQo3UdEtPs7HlKUlQd8oHNevYOf/W9bg1MchHQ/C68fg+I5PLe77g53fE6zD3/zQxPDQ0KfDxoAMh7ZkQKQHUkkGCTkoVigHbm0ARggGjGYTM70pa1NcgPekoKrn+C8DBVEAVybL5mUkaI5wFKYcmBB20oTfD+H3QXp1hP0bZVuvuet7gvXI4/O3jo6t76sNXQTBuZEPUqnRKDODHOX8ugUFC8qmBCCkSWS0yUpvUOXsXgjTU2VYhQziRjDiN4Y5jTE2a0SpFG5tnPedoB/9a3YNHL7vk184L1gH/+u6qzZs2HKZGwzC8ZoZUxJWUwysZdNrDtlh5SZJmgrap5HGXRvpSilGL27lc0afKj3WGKvAtSoR9Ruc75XNnjINc2pjXB9z/GVzfO5PsTmeM6wp9WfCqSMY2Fw0dG6MgDRrm9cYhq5GU2MGDCyNo4wZnkzEefbDJKpWh4SwoM0Z6BJLvzbAQIksRK0JQvrZEk26CAcvkB01+tVzgnXPF665Ye2ayTG3Pp5HmBQgh7WKRWeDcxuDdibtoNlUGYwB9VQIEar+SzAw6gHUnAdZ7EJKeGEfhOQjm0ArBRkMcuCSfhP9a1+0bn7vx65aFZaUtWsgfXj1MRAVaBIZPwTHrwPSMw7eNACUmynYR4E0niqhKjw8iR0XOGuLk8DRz3GL/kuYDzIo0gpOfQ0SZ/0fPimsb33+3TfU+9fVvMZYRp5S3to1lebM1wn7GZw2pkm8fuMZInacCbRKM4igczIlK6LnxZM9Pie4grcmGFk2TlAv+0W2IOKcC9CQToC+tT+ybm6FdrkoSBw7bxHSgxuMMByJJPtHSEHrBAIa7uAmpCqFFAKaBEiA94XQgBC5ViWQAud8QehtSpVjhnBuoMqaaAfEoBwv5HKPWSZRvsYVbo210QnHoeS6GwDcWoH16J3vu2J4ZM066Q/k0U8DOgEhZSC8ind8yKA/d9hkL1TkAyRCmsQAKUA4BgeDzwZEkFLC8rFmQJV4VwFlelcXyt0BTJk5u1lSEO4/evsvAfBQm7gM4ciLOVqGfUOIT34d/vALge7j22Yf/PjOoee9Z2/JDE+dbr8HTgNOMMxRREIVwn9GXTbGuK+a09gBKhVbd19xzqL6fRBzEGYreiBh4BVhKKRTds46jbiRWm4JBxvwecXnjeg04uR4YMsbkHYOYfGJv8fcI38BHS9BpwlkMAEdz0O4fSDVeXPFZ0kZXibdEMuNeXD4t/kSq2swZKaFGRhwRIyGtarohsgEgPJtrLLxUcVv9+ygbEIYgmY4ORRtJ7acp1iPycC0zoCq7NrCdbt5CQcAyeLDOP3gDejMPAinbxvSzkl4zQuhunM/V4L1yB3vu6LWGGs4waCtUnLKQBaY17R1KDsQC0RrqDTJs3djBibKM5ZKBk15nyYU+u1nuVnN4cZwSFXJonpMBeDZ/HehlYIRNxzA8HPejYGt70Bt7ApIp4bZ/X+OztHPQ0UzgFMDyWBy9sFbdhpYmJ3v/qxw6pBukyOcA6tVBpiojxq1BwsVz4PXfbCfZygWJK2acFIpQhJn1DqNbVnZjGW1xIIsqHIX2SqIEJBejZ18Y/0r4DY2or7+xzH03N9BbeJ1SNonoDpTDNRrbIJOo9cbB48ooivqgwEgHAZgTBACeeHOYcpaa3bQlHUWdIFYq+zxiggkqrEKptpZ+LxmjdG5uy8XAGkV32WRUTU1sb1co5eFeppTG7auBQLh2I/A9QMgPsq+T/ij0O1DlwO4iTWrVqtvlX4/CJQNhr9IdpacwI6GqgNM0yQLuwVvRCVjFdC8LZqk9SVKxVBsImxiJW2o/scAVVoPUBWY7OwrRut4dWj2ezprmuD2bed6l+P1QaXqYjbDA197/07Pb7jCqVlzoZT3tdZgZk6tNHNE5aZVyhDIhjNONYis1gjekDUzlUIlXZ495P7R8NGkLRSiKrRqq4KqBgbzQImtwxkD8OuMzwQBU701Ca1wmxsZltZqh5AuR0EDwuYpYGDCqxswUJoAKrkQhlUql4jigEVRU9gPpXGby7mc+ZfDp9nNJ4oq0Hr5LXOuCkoX+xhGOdoS3JAfAcgatF2qOX0MVHoDmHngI1dJrZKXOuEERzDApgxFZ05OuCIKksVAGmW7olINSueqrZIOkqjF+Q1xn531CrBcdL4eNefJgqs07i9Dyr+b4zZbmLq/DQJOMMBwis0k0shhsQaC9CBkAMAulImoDEx6BR9UFqWUzeIL2ASxWrIWRe05NjlNKh+s1YKewKhsVmYtSr01ywDiZvlbUKavVIRkMwuNlhtYPF6wkhBfv0o6r5GA4DoOiMrqnIMDbEGvegFp6R6fyDVKc3mmhbg7D51EdmazizET8+TAgAo0kAVXaURVC60kqhlsMj6yMlnGyVOhT0L6WcSUZxawW8jA3r8runIzQ9w0+xsVdxG1l9ikbKlYZqBAmbl15jnvYgD5jHK0yZLVKjCr0QUfQxVoVRoVOOUGspBhTZIVoZLXqYLJK5ucO9aXu1IUxmMGaCini6BkEap7EYSUnGM50jzMUU7I06TLGbJJD2ShQAdoAJKBSfAutAaklAyMi3G6uLimXnd3VgNmAFVhFE0xtwoTsYn7NYRJpPnCOM0oab+7sq7NC9L4CHQyn91AldKkAqU7z5arQposQacphGAADFATIDUYhJlZiCIwjqwMn7QEhMUkmIk9PvcylgVU3rfR1AQdkc0WdN5vklKmoBNee4oMktWsRhB3wZJCdU5BqkUAi5DSARiQmxcBncr6jaNb0s20jmtNgmcIWkJIZmSUCoIESBeBORBSQykzH9n3BQmbfhhlswDPTawzt9HQuARtNE3n41npjwmtw/+Ivi1vhMs3Mqz5ukHofyOOTl7MKYNx9pDZEkfkwFQLwqsZreKVe9xdAoE1I58VyQg1BKQgCymvQkKiSI+BCVqGStCamAZrGZYbY+Nmg5qAEFRdWYqcxZNqlwkmsH4xjeF4DkgR0u58HgUF4tlvQ0XH+LpJyIIvBVz2L1Agnl7JgAS8XKskpHBAOjKpAz9DoNOYtUnkkU9ShgkGmM61hZVMszlzxVUWfBgJkNQQSkBK8LksCyE4/Lkcmr25ygiNkN2pSNnsqOSXwN06r09mWqPjxfxcgnju3nwN2WDrStOEQesMlpwDRRBOgy8qG5bLmmWeyEMyD61G+RFGgPhzhojxAdKqzv8FjMFCg7cGPFijClomKIcmGZo0PpJEDq5cwqkIVZc9lO3k+zYt4nJ4Hp2T1knepgvfBekOKwxHQeGBdAyVdiDd4KuudP17hNaQjpurugBRACnzygKliE/diYiGMk2TArnR2TWfBkgWIxifKwFD7sOkwSko82NFLSOUoGkqPMYEPpd9zxbDqr7K7jKAcp6ojUPPklA316xolo/j+fsZste8GFqxf2XIOm0DEDOulO4+ihcAf9SYFkA+O3ykc+ic/HdQOgsaei2yxbZx3jkoBkqmfAMAZr8KTCAHLUGGHMFqGTJoIOSmLSAd/mx2ThCDFeglVN4j69AtpFLSyf1pdw66cxyUzjEsWdvIpRytuoxaxS1seOkH7nA3v/JDex/66vti6Ti+mXcSAdTCXsRn7oQR2XkC1HwOQMZ5axCsOVaBselZk2SNkCDmZs0yi3xUgsYbYYIJQdpKq52gFWZImirQdDYQhqRhYJUX6+niMa6+pksPIxeuYQkn5LyRCIjizimTZ0FQd4+UziXGf3ROPwB3gUFZWHN3IqlvN2GeL4qdd09gVkyUBFmNY7O0WlaFxn3mok0GbPI2serdawZUvOFSyubNeSCZf5z3VedxGHHq6yDdOnQ8m68To8cMLISh/5+k25cQCUSn74VKWnBEDYI6lnbnuxC6C40QMss28xmrADNZOfdbJLAmytzY6zFwAGVogAFXgsC8FVYXw6Xk7C1IA1GkEdL2NHTnCEh3rVa5fRDSZV9FAAKn9WWGeP3112Nx6q60O3/4V9Olx/hLOXpIvYiSiBBUuwBE1VtWAmVTsf1WbFok7MO3VKg0gwwT2w8DD+cjlaqDgUSFJY9qHcva0kOgZIZhef27EIzsgpDOsmZxPV6I+E0DG17VYlgDk68+eObAF9+pVVy3t71dOGqmzCqZhh68wk4degOrShUgAQbaiqifX1SREVUAVuiUP2PhEwwkKplhcvJurkCk898wKgt35JUIhrYDqs0W1p4/cvKCV/7e9aW1oRc0vqbS+A0yC+aA9KHkIBw9Z2GoeThnboMa/jHjKG1eAGuSWT1e5N28MDVmmcMRWYMxzVyTuUNaaIKgq7q56l2esnZZQKaWxkHm9H2gtMvFAugILP4YnMYmCDhIotk8CnT+CSy5GQLA0om79yXd+d80uTIxHReOmkVRZHwIeuAyQHgVDbOqILJt+S5QNSOiFZpGwta9QfaCiw3Uu1UPecc4+6Lfig7+JYS/Drq9H5ScAkuwAc31rwVRAhUtm+BJeE70+oGNl7dKsM52nFw4/B9XaZWMGZ9EwofQbQiKLRNSEOkSdPN5xmANE3NY5layLgL1gJajKYOzhTlLbVVHZcCYVq1CpFNfAHWmIIP1UK29gG4DTj/8scvhNrdAR2c4c1+cPXT31ss/+McVzWLtOn43pdHCT4jS03Ee5ArtEvFRINwC8kYNEgsM1m2ZBXHhAz2hGRhUBVet7fF+r1YByn0GvG4dQnL4LyCDScBpQLf+Gyz1CxBOvJpv3KTRDHTShtTT1wxv3v1Qz5cGDtz2tpkkjkbsbXiCkxyFTE+jJDJAOnkdtDMAK7bcwvUvkxfxYp23eZ8s3Q0SIt/CJpu86RVh+WQFSOW4Uq5RHcT7rgXUAmT9RTwA3bqfJ90dfTVqY5eC0ha0WsLizKOHnnvldZthxGqWlfb0vYtpvPATRHZQWjTgqGVYVDbH1n5Q/yXs26qDrGqZMc2qptnvWtMsJZjle45UbUDpXAUapW2kj9wEpDP5kuZiUHxkmRaosQv1kRcAbj90NMNvtzn65G+wVq32Osrjt1/9UBIv7dDaqrZI5+HEB6szGm5FuuGdKDHKsUjJMMpaBlQ0rbRYtmoFu2vLNKuKhV2Cpg7cDOo8arVk6CehZr8EHW5DOLEbjt8HSJ8rpAsz+x58/mtueD5WiIuqIGiOvjOdbd0uuTDHTEHuALQeh0xPoiii+yic4/8ANfEGkAhNr8nWc2g6Q6gNNEAboAaA0YCyydkIaEo755eVsunpI39dAiVkE0jOQLvjcIdeAuE1oIiANELUnkkaIb3pvF50OnzXtX/VXTr1FqIMmPFhTnc/hO6gIv5GpBuuBskARD1ekDAgRI6I+8raVvVRWY52vsLXtQzq8Y8B8VR5LP4GkOwHNS5CMLjVLqxJoTO77093vubmq88HFsvBO955KInbk2VgKZzugf8TGHlrode+BdqfMMB6QrOOWpRNFAVnf/6PSFrd6x4HHfojQM1Vx9B8KZQ/hmBwW+mJxKWZfY+94HUfveh7eoXu2L03XNGZP/plrdKaNsC4zKwgOw9bYOVpgx7+6bPtR02eU5FK5OSNLAKpapOoLqvQo/QnTn8dOPV5gOIqTFEDTbwJfthXeoGgM/9EXA/iyQtfdeP0ecKyMvWt33t/Z/HYjaRhL95fDx2dgmjvMcCqEl4INf5GUMBa1gMaMR6rbRZGVZus2faUZA5i6lNA93FUBVCiDzTwowiGL+H0wUxC0joGh2Z/Ydvum2/9vl/OPPrN6z4RLZ14t9YmaZQQ4Wao7kmIpW9zlt9LqHkp9OjroN1+43dXf9C7CgUldCvPpXOQJ78ILN2HXpLKEVD/KxAOP4+dvoDO+qM5IDly3fYrP37TU/ba75G73ntb3J69kvKiGREDy6qJS/dDxsfwZEKNl4CGLoOuba6Y5yrwDJ/KvoimIWa+Atm+H72E4CBxJ+EMvQxuOArpj4KSM3xOp0uIlo58+PmvvfmDT/kL5RZYUcO2gAEu7Yfo7FutOpdHoRcCA5dAhZuMtp2ziPgE5NzdkJ09EJxgsvQ0uzTciWBoZ/ZUsvAgpM+uI+lMQ+rT11185S03PW0/VXD0G9f+c9w+/QZNGqTz6OOth3AHoKNpUOtBvqBzFfLGOYrCG82Ogw0gbwRIFiCWtVVHEGoROLsvk6M4F9Hwkbib4PS/AF59YsX7igJJ+ygcLFhQTxMslmN3f+D93aXjN5K2K3vhjgDBGi7+685hUGsvhFrAMygMSbkbgOZz4NXXZ+9Ar3jpKVp4JAp83LBttwH19MJiOX7fjVdEC0e/rLSqgXJoogYEy4MMQSqG6k4BnUchklNsnk+TsPNWzihk4yKGBOEUIAne18kc4qVDU/VG369cePlNdzzzP9zznY9ORO2Zf0mjhZeSNg9eAMKfANxhHjRIQ8VzQHQU1D3E2vZ9gxMO+yN9tiHcDCccgwzH85RjRcJBCvHi43Cd+HNhvf/tm1/54ekf6E9CHbvnQ2+Ll45/QmtVsw+wOVyJFPw8pi2yq3geSGZA8WlQehpCR5w8CopgpJJEChck69AigPDGuKTi+P2Q3mDhx8vKb30J0kg6U9Ddk2fC5vDbLrz8IzaH+sHBslqWREsfSTunf7EIDfBZy6Q/AoK9u2xfEWkBvF3M+slWbygDwM+ii2VgTr36knkOxwAj3UXaPbkMqePX+j67dffHf+3Z+jN2vaERGBrcAUi335aqYOGVhyJAK14uJ102MwtMQ0VnoOOzLZ3vBPWhz/pB83cnX3H9s+1n7HpDU0nnrUl39tdV2p1kEEVwsgm4fZBOAyRrEMKBJvR+mx42/BOnLW3oeIE1Uifz8IL6Pi/o/8yWV330ph/qn948cd+NO1XafbNKWj+eRks7VlZEabnxYz717EAGnDwabSMVg3RkzTUX12/sO9v+3fXDv9n48uv3/n/7UVeW4/d++CqVRq8hHU/qNF2n0s4W0mnNwiuXW4RwOtIND0rpHXNcf49w/Hs2XvqhW/EMy/8Cr70FmXZaRvMAAAAASUVORK5CYII=");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 10px;
}

[table_name="lotto"] [table_cell='data'],
[table_name="Lotto"] [table_cell='data'] {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
  grid-gap: 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: .75rem;
  font-weight: bold;
}

.roulette_item {
  width: 35px;
  height: 35px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  border-radius: 5px;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
}

.roulette_item.red {
  background-color: #c90018;
}

.roulette_item.black {
  background-color: #000;
}

.roulette_item.green {
  background-color: #02a544;
}

.table[table_game_id="34"] .roulette_item:last-child {
  display: none;
}

.penalty_item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.penalty_item::before {
  content: "";
  display: inline-block;
  background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 78 78' style='enable-background:new 0 0 78 78;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M11.4,11.4C4.1,18.8,0,28.6,0,39c0,10.4,4.1,20.2,11.4,27.6S28.6,78,39,78c6.3,0,12.5-1.5,17.9-4.3 c2.5-1.2,4.7-2.7,6.6-4.3c1-0.9,2.1-1.8,3-2.7C73.9,59.2,78,49.4,78,39c0-10.4-4.1-20.2-11.4-27.6C59.2,4.1,49.4,0,39,0 C28.6,0,18.8,4.1,11.4,11.4z'/%3E%3C/g%3E%3Cg%3E%3Cpath d='M11.4,11.4C4.1,18.8,0,28.6,0,39c0,10.4,4.1,20.2,11.4,27.6S28.6,78,39,78c6.3,0,12.5-1.5,17.9-4.3 c2.5-1.2,4.7-2.7,6.6-4.3c1-0.9,2.1-1.8,3-2.7C73.9,59.2,78,49.4,78,39c0-10.4-4.1-20.2-11.4-27.6C59.2,4.1,49.4,0,39,0 C28.6,0,18.8,4.1,11.4,11.4z M67.5,15.7c-0.3-0.1-0.6-0.1-0.9-0.2l-0.9-0.1c-0.3-0.3-0.7-0.6-1.1-0.9c-0.3-0.2-0.6-0.5-1-0.8 c-0.4-0.3-0.7-0.6-1.1-0.9c-0.4-0.3-0.8-0.6-1.2-0.9c-0.4-0.3-0.9-0.6-1.3-0.9c-0.4-0.3-0.9-0.6-1.3-0.9c-0.4-0.3-0.9-0.5-1.3-0.8 c-0.8-0.5-1.6-1-2.3-1.4c-0.4-0.2-0.8-0.4-1.1-0.6l-0.6-1c-0.1-0.1-0.8-1.2-2.4-2.3C57.4,6.3,63.2,10.4,67.5,15.7z M75.9,39 c0,6.4-1.7,12.5-4.5,17.7c0-1-0.1-1.8-0.2-1.9L71,53.8c0.1-0.3,0.3-0.7,0.4-1.2c0.1-0.4,0.3-0.8,0.4-1.2c0.1-0.4,0.3-0.9,0.4-1.3 c0.1-0.5,0.3-1,0.4-1.5c0.1-0.5,0.3-1,0.4-1.5c0.1-0.5,0.3-1,0.4-1.5c0.1-0.5,0.2-1,0.3-1.5c0.2-1,0.4-1.9,0.5-2.6 c0.1-0.6,0.2-1.2,0.3-1.6l0.6-0.4c0.2-0.1,0.4-0.4,0.7-0.7C75.9,38.8,75.9,38.9,75.9,39z M2.1,39c0-0.7,0-1.5,0.1-2.2 c0.2,0.4,0.5,0.7,0.9,1c1.9,1.5,6,3.3,6.2,3.3l0.4,0.2c0.1,0.4,0.2,1,0.3,1.6c0.2,0.7,0.4,1.5,0.6,2.4c0.3,0.9,0.5,1.8,0.9,2.7 c0.3,0.9,0.6,1.8,1,2.7c0.3,0.9,0.7,1.7,1,2.3c0.2,0.6,0.5,1.1,0.7,1.4L13.9,55c-0.1,0.2-2.3,4.9-2.4,8.5 C5.7,57.1,2.1,48.4,2.1,39z M54.6,8.5c0.6,0.5,1.3,1.1,2.1,1.6c0.4,0.3,0.8,0.6,1.2,0.9c0.4,0.3,0.9,0.6,1.3,0.9 c0.4,0.3,0.9,0.6,1.3,0.9c0.4,0.3,0.9,0.5,1.3,0.8c0.4,0.3,0.8,0.5,1.2,0.7c0.4,0.2,0.8,0.4,1.1,0.6c0.3,0.2,0.6,0.3,0.8,0.5 l1,1.2c0.1,0.1,3.9,5.1,2,10.8l-0.1,0.2c-0.2,0-0.5,0-0.9,0.1c-1,0.1-2.2,0.3-3.5,0.6c-1.3,0.3-2.5,0.7-3.4,1 c-0.3,0.1-0.6,0.2-0.8,0.3l-0.2-0.2c-6.1-6.3-12.8-8.8-13.1-8.9l-0.3-0.1c0-0.3,0-0.7-0.1-1.1c-0.1-1.1-0.3-2.6-0.7-4 c-0.3-1.4-0.7-2.8-1.1-3.9c-0.1-0.4-0.3-0.7-0.4-1l0.2-0.3c0.1-0.1,2.5-2.9,7.5-2.9c0.4,0,0.8,0,1.2,0.1l0.9,0.1 C53.8,7.8,54.2,8.2,54.6,8.5z M72.5,45.3c-0.1,0.5-0.3,1-0.4,1.5c-0.1,0.5-0.3,1-0.4,1.5c-0.1,0.5-0.2,1-0.3,1.5 c-0.1,0.5-0.2,0.9-0.3,1.4c-0.1,0.4-0.2,0.9-0.2,1.2c-0.1,0.5-0.2,1-0.2,1.4l-0.7,0.7c-2.2,2.3-7.7,2.4-8.7,2.4 c-0.2,0-0.2,0-0.2,0l-0.3,0c-0.1-0.3-0.3-0.8-0.5-1.3c-0.2-0.6-0.5-1.3-0.9-2c-0.3-0.7-0.7-1.5-1.1-2.2c-0.4-0.7-0.8-1.5-1.2-2.1 c-0.4-0.7-0.8-1.3-1.2-1.8c-0.3-0.4-0.6-0.8-0.8-1.1l0.1-0.3c3.7-6.7,4.1-15.6,4.1-16l0,0c0.3,0,0.6,0,0.9-0.1 c1-0.1,2.2-0.3,3.5-0.6c1.3-0.3,2.5-0.7,3.4-1c0.3-0.1,0.5-0.2,0.8-0.3l0.3,0.2c0,0,3.8,2.7,5.7,10.7l0.2,1 c-0.1,0.4-0.3,0.8-0.5,1.3c-0.3,0.7-0.6,1.6-0.8,2.6C72.8,44.3,72.6,44.8,72.5,45.3z M30,57.2l-0.5,0c0,0-0.6,0.1-1.7,0.1 c-2.6,0-7.8-0.3-13-2.6l-0.4-0.2c-0.1-0.4-0.2-0.9-0.3-1.6c-0.2-0.7-0.4-1.5-0.6-2.4c-0.3-0.9-0.5-1.8-0.9-2.7 c-0.3-0.9-0.6-1.8-1-2.7c-0.3-0.9-0.7-1.7-1-2.3c-0.2-0.5-0.4-1-0.6-1.3l0.2-0.7c0-0.1,2.6-8.4,9.1-11.8l0.6-0.3 c0.3,0.1,0.8,0.2,1.2,0.4c0.7,0.2,1.4,0.4,2.2,0.6c0.8,0.2,1.7,0.4,2.6,0.5c0.9,0.2,1.8,0.3,2.6,0.4c0.8,0.1,1.6,0.2,2.3,0.2 c0.6,0.1,1.1,0.1,1.5,0.1l0.1,0.3l5.5,15l0.1,0.3c-0.3,0.3-0.7,0.7-1.1,1.2c-0.5,0.5-1,1.2-1.6,1.9c-0.6,0.7-1.2,1.4-1.7,2.2 c-0.6,0.8-1.1,1.5-1.6,2.3c-0.5,0.7-1,1.4-1.3,2.1C30.4,56.4,30.2,56.9,30,57.2z M18.6,15.1c0.6-0.4,1.3-0.8,2-1.3 c0.7-0.5,1.5-1.1,2.2-1.6c0.7-0.6,1.5-1.2,2.2-1.7c0.7-0.6,1.3-1.1,1.8-1.6c0.4-0.4,0.7-0.7,1-0.9l0,0.1l0.8-0.1 c0,0,1.5-0.2,3.6-0.2c3.2,0,7.6,0.5,10.5,2.9l0.5,0.4c0,0.3,0,0.6,0.1,0.9c0.1,1.1,0.3,2.6,0.7,4c0.3,1.4,0.7,2.8,1.1,3.9 c0.1,0.4,0.3,0.8,0.4,1.1l0,0c-7.7,3.9-12.6,9.4-12.8,9.6l-0.2,0.2c-0.4-0.1-0.9-0.3-1.4-0.4c-0.7-0.2-1.4-0.4-2.2-0.6 c-0.8-0.2-1.7-0.4-2.6-0.5c-0.9-0.2-1.8-0.3-2.6-0.4c-0.8-0.1-1.6-0.2-2.3-0.2c-0.6,0-1.1-0.1-1.5-0.1L19.7,28 c0-0.1-3.2-6.3-2.4-11.6l0.1-0.5C17.7,15.7,18.2,15.4,18.6,15.1z M27.8,7.2l0,0.4C27.5,7.7,27,8,26.5,8.3c-0.6,0.4-1.3,0.8-2,1.3 c-0.7,0.5-1.5,1.1-2.2,1.6c-0.7,0.6-1.5,1.2-2.2,1.7c-0.7,0.6-1.3,1.1-1.8,1.6c-0.4,0.3-0.7,0.7-1,0.9l-0.8,0 c-0.3,0-4.6,0.3-8.4,3.2c4.8-7.2,12-12.7,20.5-15.2C28.2,4.4,27.8,5.6,27.8,7.2z M36.5,69.5c-0.1-0.1-5.1-7.5-6.2-11.7l-0.1-0.4 c0.3-0.3,0.7-0.7,1.1-1.1c0.5-0.5,1-1.2,1.6-1.9c0.6-0.7,1.2-1.4,1.7-2.2c0.6-0.8,1.1-1.5,1.6-2.3c0.5-0.7,1-1.4,1.3-2.1 c0.4-0.6,0.6-1.1,0.8-1.4l0.3,0c2.6,0.4,5.4,0.6,8.1,0.6c4.7,0,7.8-0.5,8-0.6l0.1,0c0.1,0.3,0.3,0.8,0.5,1.3 c0.2,0.6,0.5,1.3,0.9,2c0.3,0.7,0.7,1.5,1.1,2.2c0.4,0.7,0.8,1.5,1.2,2.1c0.4,0.7,0.8,1.3,1.2,1.8c0.3,0.4,0.5,0.8,0.7,1l-0.2,0.4 c-3.2,9-9.2,11.5-9.2,11.5l-0.8,0.3l0.1,0.2c-0.4,0-0.9-0.1-1.5-0.1c-0.7-0.1-1.6-0.1-2.5-0.1c-0.9,0-1.9,0-2.8,0 c-1,0-1.9,0.1-2.8,0.1c-0.9,0.1-1.7,0.1-2.5,0.2c-0.7,0.1-1.2,0.2-1.6,0.2L36.5,69.5z M36.3,70.5l0.5-0.4l0,0 c0.4,0,0.9,0.1,1.5,0.1c0.7,0.1,1.6,0.1,2.5,0.1c0.9,0,1.9,0,2.8,0c1,0,1.9-0.1,2.8-0.1c0.9-0.1,1.7-0.1,2.5-0.2 c0.7-0.1,1.2-0.2,1.7-0.2l0.1,0.2c0.7,1.2,1.9,2.2,3,2.9c-4.5,2-9.5,3-14.7,3c-3.4,0-6.8-0.5-9.9-1.4 C31.4,73.9,33.8,72.6,36.3,70.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.football_item {
  display: grid;
  grid-auto-flow: column;
  max-width: 200px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
  text-align: center;
}

.comand_icon {
  width: 20px;
  height: 20px;
  background-position: center;
  margin: auto;
}

/* Football club icons */
[football1club_logo="REA"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23fff%7D.st1%7Bfill:%23213483%7D.st2%7Bfill:%23ebb10f%7D%3C/style%3E%3Cpath class='st0' d='M202.3 146.3c.6-29.7-16.2-57.5-42.2-71.9 2.2-2.3 4.7-4.9 5.4-5.5 3.4-2.4 7.2-4 11.3-4.7l5.7-1 2.6-.5-.1-2.6-.3-5.8c-.4-8.7-4.1-16.8-10.3-22.8a33.77 33.77 0 00-28.6-9 32.35 32.35 0 00-24.4-11.3c-9.4 0-18.4 4.2-24.5 11.4-1.9-.3-3.9-.5-5.9-.5-8.7 0-17 3.3-23.3 9.3-6.3 6-9.9 14.1-10.3 22.7l-.3 5.9-.1 2.6 2.6.4 5.8 1c3.9.7 7.5 2.1 10.8 4.3.7.7 3.1 3 5.2 5.3-26.5 14.3-43.7 42.4-43.8 72.6-.2 45.2 37.7 82.7 82.6 82.6 44.7-.1 83.1-37.4 82.1-82.5z'/%3E%3Cpath class='st0' d='M121.4 11.3c6.2 0 12.2 1.8 17.3 5.1 2.7 1.7 5 3.8 7.1 6.2 1.8-.3 3.5-.4 5.3-.4 8.7 0 17 3.3 23.3 9.4 6.3 6 9.9 14.1 10.3 22.8l.3 5.8.1 2.6-2.6.5-5.7 1c-4.1.7-7.9 2.3-11.3 4.7-.7.7-3.2 3.2-5.4 5.5 26 14.4 42.8 42.2 42.2 71.9 1 45.1-37.5 82.4-82.1 82.5h-.2c-44.9 0-82.6-37.5-82.5-82.6.1-30.2 17.2-58.3 43.8-72.5a91.4 91.4 0 00-5.2-5.3c-3.3-2.2-6.9-3.6-10.8-4.3l-5.8-1-2.6-.4.1-2.6.3-5.9c.4-8.7 4.1-16.7 10.3-22.7 6.3-6 14.6-9.3 23.3-9.3 2 0 3.9.2 5.9.5 6.2-7.3 15.2-11.5 24.6-11.5m0-9.3C111 2 101 5.9 93.4 13c-.8 0-1.6-.1-2.4-.1-11.1 0-21.6 4.2-29.7 11.9-8 7.7-12.7 18-13.2 29l-.3 5.9-.1 2.6-.4 8.2 8.1 1.4 2.6.4 5.8 1c.3.1.6.1.9.2-9.2 7-17 15.7-23.1 25.7a90.34 90.34 0 00-13.3 47c-.1 24.2 9.5 47.1 26.9 64.6a93.5 93.5 0 0029.2 19.9c11.4 4.9 23.3 7.4 35.6 7.4h.2c24.3-.1 48.3-10.3 65.6-28 17-17.4 26.2-40 25.7-63.7.3-16.1-4-32.2-12.4-46.4-6-10.1-13.8-18.9-23.1-26l2.4-.6 5.7-1 2.6-.5 8-1.4-.4-8.1-.1-2.6-.3-5.8c-.5-11.1-5.2-21.4-13.2-29-8-7.7-18.6-11.9-29.7-11.9h-1.8c-1.7-1.6-3.6-3-5.6-4.3-6.5-4.5-14.2-6.8-22.2-6.8z'/%3E%3Cpath class='st1' d='M202.3 146.3c1 45.1-37.5 82.4-82.1 82.5-44.9.1-82.8-37.4-82.6-82.6.2-43 34.9-81.9 82.3-82 47.6-.2 83.2 38.9 82.4 82.1z'/%3E%3Cpath class='st2' d='M198.5 146.3c.9 43-35.7 78.5-78.3 78.6-42.9.1-78.9-35.7-78.8-78.7.1-41 33.3-78.1 78.4-78.2 45.5-.1 79.5 37.2 78.7 78.3zm-78.3 69.6c37.8 0 69.5-31.5 69.4-69.2-.1-35.1-28.2-72.2-75.3-69-33.7 2.2-63.3 30.1-63.7 68.9-.4 37.8 31.6 69.3 69.6 69.3z'/%3E%3Cpath class='st2' d='M120 210.5c-34.8 1-64.3-29.3-64.2-64 0-34.6 29.3-65.2 66.1-64.3 34 .8 62.7 29.5 62.7 64.5-.2 34.6-29.7 64.9-64.6 63.8zm0-9c30.5 0 55.3-24.5 55.2-54.8-.1-30.1-23.5-55.3-55.3-55.2-32 .1-54.7 25.4-55 54.7a54.87 54.87 0 0055.1 55.3z'/%3E%3Cpath class='st2' d='M120 188.7c-23.9-1.3-42-17.9-42.1-42.1-.1-26.3 21.6-42 42.3-41.9 20.3.1 42 15.6 41.8 41.9 0 24.1-18.1 40.8-42 42.1zm0-9.9c18.6 0 32.6-13.9 32.7-32.3 0-18-14.7-32.8-32.6-32.8-17.9 0-32.6 14.8-32.7 32.7-.2 20.8 18.4 33.9 32.6 32.4z'/%3E%3Cpath class='st0' d='M148.7 151.4c.2-1.5.4-3.1.4-4.8.1-18.2-14.9-28.9-28.9-28.9-1.3 0-2.6.1-3.9.3l32.4 33.4zM91.4 141.3c-.3 1.7-.4 3.5-.4 5.4.1 16.7 12.6 28.2 29.1 29 1.8-.1 3.5-.3 5.1-.7l-33.8-33.7z'/%3E%3Cpath class='st0' d='M103.3 104.6c5.2-2.1 10.8-3.3 16.8-3.3 24.6 0 44.9 20.5 44.8 45.2 0 6.5-1.3 12.5-3.6 17.9l5 5.2c3.3-6.8 5.2-14.5 5.3-23.1.1-32.3-26.5-51.3-51.4-51.5-7.3 0-14.8 1.6-21.7 4.6l4.8 5zM137.7 187.6c-5.4 2.2-11.4 3.4-17.8 3.4-19.5 2.1-45.1-15.9-44.9-44.6 0-6.3 1.4-12.3 3.8-17.7l-5.3-5.3c-3.3 6.7-5.2 14.5-5.2 23.2.1 29.6 22.4 50 51.7 51.6 8.2-.5 15.9-2.4 22.7-5.6l-5-5z'/%3E%3Cpath class='st1' d='M159.8 61.4c-6.2-3-12.6-5.2-19.3-6.7-.7-.2-1.4-.3-2.1-.4l-.3-.1c-.8-.2-1.6-.3-2.4-.5l-.3-.1-2-.3c-.2 0-.4-.1-.5-.1h-.2c-.5-.1-1.1-.1-1.6-.2-.3 0-.6-.1-.9-.1-.5-.1-1-.1-1.5-.2h-.2c-.2 0-.5 0-.7-.1-2.6-.2-5.2-.3-7.7-.3-1.9 0-3.9.1-6 .2h-.3c-.2 0-.5 0-.7.1-.6 0-1.1.1-1.7.1h-.5c-3 .3-5.9.8-8.8 1.3h-.1c-6.8 1.4-13.5 3.6-19.8 6.5h-.1l-.1-.1c-4.5-3-9.4-5-14.7-5.9h-.2v-.2c.6-13 11.2-23.1 24.2-23.1 3.4 0 6.8.7 9.9 2.1 3.7-7.9 11.7-13 20.5-13 8.6 0 16.6 5 20.4 12.8a24.2 24.2 0 0133.6 21.2v.2h-.2c-5.8 1.4-11 3.5-15.7 6.9zm-29.7-8.8c.3 0 .6.1.9.1.5.1 1.1.1 1.6.2h.2c.2 0 .4 0 .6.1l2 .3.3.1c.8.1 1.6.3 2.4.5l.3.1c.7.1 1.4.3 2.1.4 6.6 1.5 13.1 3.7 19.1 6.7 4.6-3.3 9.7-5.4 15.3-6.4a23.83 23.83 0 00-23.8-22.6c-3.3 0-6.4.6-9.4 1.9l-.2.1-.1-.2a21.84 21.84 0 00-20-12.9c-8.7 0-16.6 5.1-20.2 12.9l-.1.2-.2-.1a23.76 23.76 0 00-33.7 20.4c5.3.9 10.2 2.9 14.6 5.9 6.3-2.9 13-5.1 19.9-6.5h.1c2.9-.6 5.8-1 8.7-1.3h.5c.6-.1 1.1-.1 1.7-.1.2 0 .5 0 .7-.1h.3c2.1-.1 4.1-.2 6-.2 2.6 0 5.2.1 7.8.3.2 0 .5 0 .7.1h.2c.7 0 1.2 0 1.7.1z'/%3E%3Cpath class='st2' d='M78.1 66.1s3.4 3.2 6 6.2c10.7-5.2 22.7-8.2 35.8-8.2 13.7 0 26.4 3.2 37.5 8.8 2.7-2.9 6.2-6.4 6.2-6.4 3.8-2.7 8.1-4.5 12.7-5.4l5.7-1-.3-5.8c-.4-7.9-3.7-15.3-9.4-20.8S159 25 151.1 25c-2.2 0-4.4.2-6.5.7-2.1-2.7-4.6-5.1-7.5-6.9a29.07 29.07 0 00-39 7.1c-2.3-.5-4.7-.8-7.1-.8-8 0-15.5 3-21.2 8.5-5.7 5.5-9.1 12.8-9.4 20.7l-.3 5.9 5.8 1c4.4.8 8.5 2.4 12.2 4.9zm13-34.4c3.6 0 6.9.8 10 2.2 3.5-7.7 11.3-13.1 20.4-13.1 9 0 16.7 5.2 20.3 12.8 2.9-1.2 6.1-1.9 9.5-1.9 12.9 0 23.5 10.2 24 23-5.7 1-10.9 3.3-15.4 6.5-6-2.9-12.4-5.2-19.2-6.7-.7-.2-1.4-.3-2.1-.4-.1 0-.2 0-.3-.1-.8-.2-1.6-.3-2.4-.5-.1 0-.2 0-.3-.1l-2-.3c-.3 0-.5-.1-.8-.1-.5-.1-1.1-.1-1.6-.2-.3 0-.6-.1-.9-.1-.5-.1-1-.1-1.5-.2-.3 0-.6-.1-.9-.1-2.5-.2-5-.3-7.5-.3h-.2c-2 0-4 .1-6 .2-.4 0-.7 0-1.1.1-.6 0-1.1.1-1.7.1h-.5a87.56 87.56 0 00-28.7 7.8c-4.4-2.9-9.4-5-14.8-5.9.2-12.5 10.8-22.7 23.7-22.7z'/%3E%3Cpath class='st1' d='M121.4 14.2c5.6 0 11.1 1.6 15.7 4.6 2.9 1.9 5.4 4.2 7.5 6.9 2.1-.5 4.3-.7 6.5-.7 8 0 15.5 3 21.2 8.5a30.5 30.5 0 019.4 20.8l.3 5.8-5.7 1c-4.6.8-8.9 2.6-12.7 5.4 0 0-3.5 3.5-6.2 6.4a82.36 82.36 0 00-37.3-8.8h-.2c-13 0-25.1 3-35.8 8.2-2.7-3-6-6.2-6-6.2-3.7-2.5-7.8-4.1-12.2-4.9l-5.8-1 .3-5.9c.4-7.9 3.7-15.3 9.4-20.7 5.7-5.5 13.3-8.5 21.2-8.5 2.4 0 4.8.3 7.1.8 5.4-7.2 14.1-11.7 23.3-11.7m-20.3 19.7c-3-1.4-6.4-2.2-10-2.2-12.9 0-23.4 10.2-24 22.9 5.4.9 10.4 3 14.8 5.9 6.2-2.9 12.9-5.1 19.9-6.5 2.9-.6 5.8-1 8.8-1.3h.5c.6-.1 1.1-.1 1.7-.1.4 0 .7 0 1.1-.1 2-.1 4-.2 6-.2h.2c2.5 0 5.1.1 7.5.3.3 0 .6.1.9.1.5 0 1 .1 1.5.2.3 0 .6.1.9.1.5.1 1.1.1 1.6.2.3 0 .5.1.8.1l2 .3c.1 0 .2 0 .3.1.8.1 1.6.3 2.4.5.1 0 .2 0 .3.1.7.1 1.4.3 2.1.4 6.8 1.5 13.2 3.8 19.2 6.7 4.5-3.2 9.8-5.5 15.4-6.5-.6-12.8-11.1-23-24-23-3.4 0-6.6.7-9.5 1.9A22.36 22.36 0 00121.2 21c-8.8-.2-16.6 5.2-20.1 12.9m20.3-22.6c-9.4 0-18.4 4.2-24.5 11.4-1.9-.3-3.9-.5-5.9-.5-8.7 0-17 3.3-23.3 9.3-6.3 6-9.9 14.1-10.3 22.7l-.3 5.9-.1 2.6 2.6.4 5.8 1c3.9.7 7.5 2.1 10.8 4.3.7.7 3.5 3.4 5.7 5.9l1.5 1.7 2-1c10.7-5.2 22.3-7.9 34.5-7.9h.2c12.7 0 24.8 2.9 36 8.5l2 1 1.5-1.6c2.3-2.4 5.2-5.4 5.9-6.1 3.4-2.4 7.2-4 11.3-4.7l5.7-1 2.6-.5-.1-2.6-.3-5.8c-.4-8.7-4.1-16.8-10.3-22.8a33.77 33.77 0 00-28.6-9 31.75 31.75 0 00-24.4-11.2z'/%3E%3Cpath d='M101.1 33.9c-3-1.4-6.4-2.2-10-2.2-12.9 0-23.4 10.2-24 22.9 5.4.9 10.4 3 14.8 5.9 6.2-2.9 12.9-5.1 19.9-6.5 2.9-.6 5.8-1 8.8-1.3h.5c.6-.1 1.1-.1 1.7-.1.4 0 .7 0 1.1-.1 2-.1 4-.2 6-.2h.2c2.5 0 5.1.1 7.5.3.3 0 .6.1.9.1.5 0 1 .1 1.5.2.3 0 .6.1.9.1.5.1 1.1.1 1.6.2.3 0 .5.1.8.1l2 .3c.1 0 .2 0 .3.1.8.1 1.6.3 2.4.5.1 0 .2 0 .3.1.7.1 1.4.3 2.1.4 6.8 1.5 13.2 3.8 19.2 6.7 4.5-3.2 9.8-5.5 15.4-6.5-.6-12.8-11.1-23-24-23-3.4 0-6.6.7-9.5 1.9A22.36 22.36 0 00121.2 21c-8.8-.2-16.6 5.2-20.1 12.9' fill='%23e42512'/%3E%3C/svg%3E");
}

[football1club_logo="ATL"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st1%7Bfill:%23fff%7D.st2%7Bfill:%23c60900%7D%3C/style%3E%3Cpath d='M193 177.1L122.4 231l-70.1-53.9a32.26 32.26 0 01-12.6-25.5V30.4c0-5.2 3.4-9.9 8.4-11.5C60.2 15.1 85.2 9 121.4 9c36.6 0 63 6.2 75.7 10.1a12 12 0 018.6 11.5v121c-.1 10-4.7 19.5-12.7 25.5z' fill='%23181866'/%3E%3Cpath class='st1' d='M52.8 154.2c1.5 4.2 4.1 7.9 7.7 10.7l61.2 47 61.7-47c5.7-4.4 9.1-11.1 9.1-18.3V48.4C144.2 84.9 89.3 126.6 52.8 154.2z'/%3E%3Cpath class='st2' d='M69.8 141.4c-6 4.5-11.7 8.9-17 12.9 1.5 4.2 4.1 7.9 7.7 10.7l9.3 7.1v-30.7zM175.5 170.9l7.9-6c5.7-4.4 9.1-11.1 9.1-18.3V48.4c-5.6 4.2-11.3 8.5-17 12.8v109.7zM112.2 109.2c-7.4 5.6-14.6 11.1-21.6 16.3V188l21.6 16.6v-95.4zM154.6 186.8V77.1c-7.2 5.5-14.4 10.9-21.6 16.3v109.9l21.6-16.5z'/%3E%3Cpath class='st1' d='M121.4 9c36.6 0 63 6.2 75.7 10.1a12 12 0 018.6 11.5v121c0 10-4.7 19.5-12.7 25.5L122.4 231l-70.1-53.9a32.26 32.26 0 01-12.6-25.5V30.4c0-5.2 3.4-9.9 8.4-11.5C60.2 15.1 85.2 9 121.4 9m0-7C84 2 58.1 8.4 45.9 12.3c-8 2.5-13.3 9.8-13.3 18.1v121.3c0 6 1.4 11.9 4 17.3 2.6 5.3 6.5 10.1 11.3 13.7l70.1 53.9c1.3 1 2.8 1.5 4.3 1.5s3-.5 4.3-1.4l70.6-53.9c4.8-3.6 8.7-8.4 11.3-13.8 2.7-5.4 4.1-11.4 4.1-17.3v-121c0-4.1-1.3-8-3.8-11.3-2.5-3.3-5.8-5.7-9.8-6.9C186.2 8.5 159 2 121.4 2z'/%3E%3Cpath class='st1' d='M165.8 37.1c-9.3-2.4-24.6-5.3-44.7-5.3-23.5 0-41.8 3.4-49.7 5.9-3.3 1-3.4 1.2-3.4 4.6v67.4s99.6-72.2 97.8-72.6z'/%3E%3C/svg%3E");
}

[football1club_logo="BAR"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st4%7Bfill:%23a23a55%7D.st5%7Bfill:%231b5aa0%7D.st6%7Bfill:%23a43655%7D.st7%7Bfill:%231d5a9f%7D%3C/style%3E%3Cpath d='M223.5 25.1c-28.1-1.9-56-5.2-82.9-14-6.6-2.2-12.8-5.8-19.2-8.7-.5-.3-1-.4-1.5-.4s-1 .2-1.5.4c-4.5 2.3-8.9 5.1-13.6 6.8C81.1 17.9 56.3 21.6 31.1 24c-4.9.5-15.4 1.2-15.7 1.2v103.6c0 11.1 1.6 30.3 2.3 33 7.2 28.6 25.1 46.9 53 55.7 10.7 3.4 21.5 6.7 31.9 10.8 5.9 2.4 11.2 6.5 16.8 9.8h1c10.4-8.6 22.9-12.7 35.6-16.7 7-2.2 14.1-4.1 20.9-6.8 25.1-10.1 40-28.8 45.7-55.2.4-2 1.9-19.5 1.9-26.3V51.6c-.2-2.1-.4-4.1-.5-6.2.2 2.1.4 4.1.5 6.2V25.3c-.3-.1-.5-.2-1-.2zm-6.3 113.6c-.1 10.1-1.7 20.7-5 30.2-6.9 20.5-21.8 33.7-42.3 40.5-9.4 3.2-19.1 5.7-28.4 9.1-6.4 2.4-12.4 5.9-18.6 8.7-1.5.7-3.7 1-5.2.4-11.8-4.6-23.5-9.6-35.3-14.2-5.8-2.3-11.9-3.6-17.6-6-25.2-10.7-39.1-30.3-41.3-57.2-1.5-17.7-.8-35.6-.8-53.4 0-20 .2-39.9.3-59.9v-4.6c9.5-1.1 18.7-2 27.9-3.2C73.8 26 96.3 21.6 117.6 12c1.4-.6 3.6-.5 5 .1 26.2 11.6 54.1 15.8 82.3 18.9 3.9.4 7.7.8 11.9 1.2.1 1.5.2 2.8.2 4.1.1 34 .6 68.2.2 102.4z' fill='%23262321'/%3E%3Cpath d='M216.7 32c.1 1.5.2 2.8.2 4.1.2 34.2.7 68.4.2 102.5-.1 10.1-1.7 20.7-5 30.2-6.9 20.5-21.8 33.7-42.3 40.5-9.4 3.2-19.1 5.7-28.4 9.1-6.4 2.4-12.4 5.9-18.6 8.7-1.5.7-3.7 1-5.2.4-11.8-4.6-23.5-9.6-35.3-14.2-5.8-2.3-11.9-3.6-17.6-6-25.2-10.7-39.1-30.3-41.3-57.2-1.5-17.7-.8-35.6-.8-53.4 0-20 .2-39.9.3-59.9v-4.6c9.5-1.1 18.7-2 27.9-3.2 22.9-3.1 45.4-7.5 66.7-17.1 1.4-.6 3.6-.5 5 .1 26.2 11.6 54.1 15.8 82.3 18.9 3.9.4 7.8.7 11.9 1.1zm-30.6 160.9c12.9-9.5 21.1-22.5 22.4-38.2 1.5-18.7.8-37.5 1-56.3 0-.2-.4-.5-.8-.9h-23.4c-.2-.2-.5-.2-.7 0h-24.4c-.2-.2-.4-.2-.6 0-8.8 0-17.7-.1-26.5-.1h-26.4c-8.8 0-17.7.1-26.5.1-.2-.2-.4-.2-.6 0H55.2c-.2-.2-.5-.2-.7 0H29.4c.6 19.9.2 39.4 2.2 58.6 1.5 15.1 9.7 27.6 22.2 36.7 7.8 6.4 16.7 10.3 26.4 12.6 8.8 1.3 17.6 2.7 26.4 4h26.5c8.8-1.3 17.6-2.7 26.4-4 9.9-2.2 18.8-6.1 26.6-12.5zM119.3 89.6V19.1C90.6 31.3 60.6 35.5 30.4 38.7v50.9h88.9zm1-70.5c0 21.1.1 45.3 0 66.4v4.1c26.8-.1 89.6.2 89.6.2s-.1-38.5-.1-51.5l-7.6-.6c-20.7-1.8-41-5.3-60.9-11.3-6.8-2-14-4.9-21-7.3z' fill='%23d9b32b'/%3E%3Cpath d='M119.3 89.6H30.4V38.7c30.2-3.2 60.2-7.4 88.9-19.6v70.5z' fill='%23fdfdfd'/%3E%3Cpath d='M120.3 19.1c7 2.4 14.2 5.3 21 7.4 19.9 5.9 40.2 9.5 60.9 11.3l7.6.6.1 51.5-89.6-.2V19.1z' fill='%23fef113'/%3E%3Cpath class='st4' d='M133.2 209.4c-9.5.8-18.3.8-26.5 0V97.3h26.4c.1 37.4.1 74.8.1 112.1z'/%3E%3Cpath class='st5' d='M106.8 97.4v112.1c-9-1.1-17.6-2.7-26.4-4 0-36-.1-72-.1-107.9 8.8-.1 17.6-.2 26.5-.2zM133.2 209.4V97.3c8.8 0 17.7.1 26.5.1 0 36-.1 72-.1 107.9-8.8 1.5-16.9 2.9-26.4 4.1z'/%3E%3Cpath class='st6' d='M80.3 97.5c0 36 .1 72 .1 107.9-9.7-2.3-18.7-6.1-26.4-12.6.2-1.9.5-3.9.5-5.8.1-29.9.1-59.7.2-89.6.2-.2.5-.2.7 0h24.4c.1-.1.3-.1.5.1zM159.7 205.4c0-36 .1-72 .1-107.9.2-.2.4-.2.6 0h24.4c.2-.2.5-.2.7 0 0 29.9.1 59.7.2 89.6 0 1.9.3 3.9.5 5.8-7.9 6.4-16.8 10.3-26.5 12.5z'/%3E%3Cpath class='st7' d='M54.6 97.5c0 29.9-.1 59.7-.2 89.6 0 1.9-.3 3.9-.5 5.8-12.5-9.2-20.7-21.7-22.2-36.7-1.9-19.2-1.5-38.7-2.2-58.6 9.2-.1 17.1-.1 25.1-.1zM186.1 192.9c-.2-1.9-.5-3.9-.5-5.8-.1-29.9-.1-59.7-.2-89.6h23.4c.4.4.8.6.8.9-.2 18.8.5 37.6-1 56.3-1.4 15.7-9.6 28.6-22.5 38.2z'/%3E%3Cpath class='st4' d='M79.7 97.5H55.3h24.4zM184.7 97.5h-24.4 24.4z'/%3E%3C/svg%3E");
}

[football1club_logo="BAY"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st1%7Bfill:%230d6fb6%7D%3C/style%3E%3Ccircle cx='120' cy='120' r='118' fill='%23fff'/%3E%3Cpath class='st1' d='M120 2C54.8 2 2 54.8 2 120s52.8 118 118 118 118-52.8 118-118S185.2 2 120 2zm0 231C57.6 233 7 182.4 7 120S57.6 7 120 7s113 50.6 113 113-50.6 113-113 113z'/%3E%3Cpath class='st1' d='M102.2 60.5V124l34.7 52.5v-63.9zM69 74.2v60.6l33.2 50.1v-61zM136.9 53.9v60.9l33.2 50.3v-61.3z'/%3E%3Cpath d='M120 11.9C60.3 11.9 11.9 60.3 11.9 120S60.3 228.1 120 228.1 228.1 179.7 228.1 120 179.7 11.9 120 11.9zm0 176a67.9 67.9 0 110-135.8 67.9 67.9 0 010 135.8z' fill='%23e43558'/%3E%3C/svg%3E");
}

[football1club_logo="JUV"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bclip-path:url(%23SVGID_2_)%7D%3C/style%3E%3Cpath d='M120 2C70.8 2 31 54.8 31 120s39.8 118 89 118 89-52.8 89-118S169.2 2 120 2zm0 225.2c-44.7 0-80.8-48-80.8-107.2S75.4 12.8 120 12.8s80.8 48 80.8 107.2-36.1 107.2-80.8 107.2z'/%3E%3Cdefs%3E%3Cellipse id='SVGID_1_' cx='120' cy='120' rx='80.8' ry='107.2'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath class='st0' d='M105.9 7.3H134v227.2h-28.1zM154.4 7.3h28.1v227.2h-28.1zM57.4 7.3h28.1v227.2H57.4z'/%3E%3C/svg%3E");
}

[football1club_logo="SEV"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cswitch%3E%3Cg%3E%3Cg id='Ebene_x5F_1'%3E%3Cg id='_102481144'%3E%3Cpath id='_104265104' fill='%23D66100' d='M165.6 22.6c-10.6-.3-21.4-2.6-32.1-6.7-3.7-1.4-7.3-3-11-4.8V11c-.1 0-.1 0-.1.1-.1 0-.1-.1-.1-.1v.1c-3.9 1.9-7.7 3.6-11.5 5-10.7 4-21.3 6.2-31.9 6.5-15.7.5-31.2-3.3-46.4-11.6v34.5c2.5 60.3 18.9 106.7 46.4 142.1 9.4 12.1 20 22.9 31.9 32.5 3.7 3 7.6 5.9 11.5 8.7v.2l.1-.1.1.1v-.2c3.7-2.7 7.4-5.4 11-8.3 11.9-9.6 22.6-20.4 32.1-32.5 27.7-35.5 44.2-82 46.8-142.6V11v-.1c-15.4 8.4-31 12.2-46.8 11.7z'/%3E%3Cpath id='_61470056' fill='%23FFF' d='M38.4 47.5c13.8-6.5 27.3-9.8 40.5-9.7 10.8.1 21.5 2.4 31.9 7.1 2.9 1.3 5.8 2.8 8.7 4.4v26.1c-3.1.3-6 1.3-8.7 2.6-6.2 3.3-10.8 9.2-12.3 16.2H44.1c-3.1-15.1-5-30.8-5.7-46.7z'/%3E%3Cpath id='_60888488' fill='%23FFF' d='M200.8 94.2h-55.2c-1.5-6.9-6-12.8-12.1-16.1a22.4 22.4 0 00-8.4-2.7V49.6c2.6-1.8 5.4-3.5 8.4-5 9.2-4.5 20.1-7.2 32.1-7.2 12.6-.1 26.4 2.8 40.5 9.6-.7 15.9-2.2 32.1-5.3 47.2z'/%3E%3Cpath id='_104253904' fill='%23CC000F' d='M206.7 42.8c-13.9-6.7-27.7-9.6-41.1-9.4a88.1 88.1 0 00-32.1 6.6c-3.8 1.6-7.5 3.4-11.1 5.4-.1 0-.1.1-.1.1v.1c-3.8-2.1-7.6-3.9-11.5-5.4-10.5-4.1-21.1-6.3-31.9-6.3-13.6-.1-27.3 3.2-40.7 9.9-.3-7.9-.3-15.4-.1-23.4l.2.1c13.5 5.6 27.1 8.3 40.6 8.1a99.4 99.4 0 0031.9-6c3.9-1.4 7.8-3 11.7-4.9 3.7 1.8 7.3 3.3 11.1 4.7 10.4 3.7 21.2 5.9 32.1 6.2 13.9.4 27.8-2.1 41.1-8.1.1 7.4.1 14.9-.1 22.3z'/%3E%3Cpath id='_60782928' fill='%23FFF' d='M59.8 99.9H45.3c3.5 15.2 8.2 29.9 14.5 43.9V99.9z'/%3E%3Cpath id='_102814592' fill='%23FFF' d='M87.4 99.9H73.6v69.6s0 .5 5.3 7.9c2.7 3.8 5.5 7.5 8.5 11.1V99.9z'/%3E%3Cpath id='_60302792' fill='%23FFF' d='M115.3 122.5a23.63 23.63 0 01-14.1-11v92c3.1 3 6.3 6 9.6 8.8 1.5 1.3 3 2.5 4.5 3.7v-93.5z'/%3E%3Cpath id='_103311056' fill='%23FFF' d='M143.2 111.1a24.36 24.36 0 01-14.1 11.4v94c1.5-1.2 3-2.5 4.5-3.7 3.3-2.8 6.5-5.7 9.6-8.7v-93z'/%3E%3Cpath id='_104354632' fill='%23FFF' d='M199.6 99.9h-15.1v45.2c-.5 1 10.3-21.6 15.1-45.2z'/%3E%3Cpath id='_103088520' fill='%23FFF' d='M170.7 99.9h-13.8v89.3c-1.6 1.9 4.5-5.4 8.7-11.3 1.8-2.5 3.4-5 5.1-7.5V99.9z'/%3E%3Cpath id='_60875672' fill='%23CC000F' d='M73.6 99.9v69.6c-5.2-8.2-9.8-16.8-13.8-25.7V99.9h13.8z'/%3E%3Cpath id='_60297632' fill='%23CC000F' d='M101.2 111.4v92.1c-4.9-4.8-9.5-9.8-13.8-15V99.9h10.5c.1 4.2 1.3 8.1 3.3 11.5z'/%3E%3Cpath id='_61457760' fill='%23CC000F' d='M129 122.4v94c-2.1 1.7-4.3 3.4-6.6 5.1-2.5-1.8-4.9-3.6-7.2-5.5v-93.5c2.1.6 4.4 1 6.8 1 2.5 0 4.8-.4 7-1.1z'/%3E%3Cpath id='_103306256' fill='%23CC000F' d='M156.9 99.9v89.3c-4.3 5.1-8.8 10.1-13.8 14.9v-93c1.9-3.3 2.9-7.1 3-11.2h10.8z'/%3E%3Cpath id='_102836376' fill='%23CC000F' d='M184.5 99.9v45.2c-4 8.7-8.5 17.2-13.8 25.3V99.9h13.8z'/%3E%3Cpath id='_104265104_2_' fill='%23FFF' d='M212.4 11s0 .1 0 0v34.5c-2.6 60.6-19.1 107.1-46.8 142.6a197.4 197.4 0 01-32.1 32.5c-3.6 2.9-7.2 5.6-11 8.3v.2c-.1 0-.1-.1-.1-.1-.1 0-.1.1-.1.1v-.2c-4-2.8-7.8-5.7-11.5-8.7-11.8-9.6-22.5-20.4-31.9-32.5-27.5-35.5-43.9-82-46.4-142.2V11.1 11C47 18.9 61.7 22.7 76.6 22.7h2.3c10.6-.3 21.2-2.5 31.9-6.5 3.9-1.4 7.7-3.1 11.5-5V11s.1 0 .1.1l.1-.1v.1c3.7 1.8 7.3 3.4 11 4.8 10.7 4.1 21.4 6.3 32.1 6.7h2.6c15 .1 29.7-3.7 44.2-11.6m0-9c-1.5 0-3 .4-4.3 1.1-13 7-26.4 10.6-39.9 10.6h-2.4-.1c-9.5-.3-19.2-2.3-29-6.1a96.5 96.5 0 01-8.9-3.9 9.05 9.05 0 00-5.3-1.7h-.1-.1c-2 0-3.8.6-5.3 1.7-3.3 1.6-6.4 2.9-9.4 4-9.7 3.7-19.4 5.7-28.9 5.9h-2.1C63.1 13.6 49.7 10 36.8 3c-1.4-.6-2.8-1-4.3-1-1.6 0-3.2.4-4.6 1.3a9.07 9.07 0 00-4.4 7.7v34.9c1.3 30.3 6.1 58.2 14.3 82.9 8 24 19.4 45.6 34 64.4 9.6 12.4 20.8 23.8 33.3 33.9 3.6 2.9 7.1 5.6 10.7 8.2.8.9 1.9 1.6 3 2.1s2.3.7 3.5.7H122.6a9.23 9.23 0 006.6-2.9c3.4-2.5 6.8-5 10-7.6a210.4 210.4 0 0033.5-33.9c14.7-19 26.3-40.7 34.3-64.7 8.3-24.8 13.1-52.7 14.4-83.2V10.9c0-3.2-1.7-6.1-4.4-7.7-1.4-.8-3-1.2-4.6-1.2z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/switch%3E%3C/svg%3E");
}

[football1club_logo="PSG"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23285b93%7D%3C/style%3E%3Ccircle class='st0' cx='120' cy='120' r='118'/%3E%3Ccircle cx='120' cy='120' r='108.5' fill='%23f8f8f9'/%3E%3Cdefs%3E%3Ccircle id='SVGID_1_' cx='120' cy='120' r='100.3'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_2_)'%3E%3Cpath class='st0' d='M31.6 170.9c-16.5-30-19-60.4-5.5-91.2C40.9 46.3 67.3 27 103.7 19.6 102.2 81 79.2 131.2 31.6 170.9zM208.5 170.9c-47.6-39.5-70.6-89.8-72.1-151.3 36.8 7.6 63.5 27.2 78 61.3 13.1 30.5 10.3 60.5-5.9 90z'/%3E%3Cpath d='M66.9 206.2c-12.7-8.1-22.3-17.9-30.4-30 1.2-1.1 2.3-2.2 3.5-3.2a206.4 206.4 0 0041.1-47.3c1-1.7 3.8-3.2 5.7-3.2 22.1-.2 44.2-.2 66.3 0 1.8 0 4.3 1.1 5.2 2.5 11.9 18.9 26.5 35.4 43.5 49.7.5.4.9.9 1.5 1.6-7.9 12.1-17.7 22-30.7 30.2 2.1-16.4-2-29.9-12.4-41.2-10.4-11.4-23.5-17-38.8-17.5-30.9-.8-58.2 24.1-54.5 58.4z' fill='%23e64549'/%3E%3Ccircle class='st0' cx='120.1' cy='199.6' r='46.1'/%3E%3Cpath d='M154.5 118.2H85.6c16.9-31 24.6-63.8 25.3-98.8h18.2c.9 35 8.4 67.8 25.4 98.8z' fill='%23e64347'/%3E%3C/g%3E%3C/svg%3E");
}

[football1club_logo="MAC"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cpath fill='%23FFF' d='M233.47 120c0 30.14-12 58.94-33.21 80.26s-50.12 33.21-80.26 33.21-58.94-12-80.26-33.21S6.53 150.14 6.53 120s12-58.94 33.21-80.26S89.86 6.53 120 6.53s58.94 12 80.26 33.21 33.21 50.12 33.21 80.26z'/%3E%3Cdefs%3E%3Cpath id='SVGID_1_' d='M0 0h240v240H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23SVGID_2_)' fill='none' stroke='red' stroke-width='3.82' d='M233.47 120c0 30.14-12 58.94-33.31 80.26s-50.2 33.21-80.35 33.21-59.04-12-80.35-33.21S6.24 150.14 6.24 120s12-58.94 33.31-80.26S89.76 6.53 119.9 6.53s59.04 12 80.36 33.21 33.21 50.12 33.21 80.26h0z'/%3E%3Cpath fill='%23002E60' d='M120 4.6c-30.62 0-60 12.2-81.6 33.8C16.7 60 4.6 89.38 4.6 120s12.2 60 33.8 81.6 50.98 33.8 81.6 33.8 60-12.2 81.6-33.8 33.8-50.98 33.8-81.6-12.1-60-33.8-81.6S150.62 4.6 120 4.6zm0 3.85c29.57 0 57.98 11.71 78.91 32.64s32.64 49.34 32.64 78.91-11.71 57.98-32.64 78.91-49.34 32.64-78.91 32.64-57.98-11.71-78.91-32.64S8.45 149.57 8.45 120s11.71-57.98 32.64-78.91S90.43 8.45 120 8.45z'/%3E%3Cdefs%3E%3Cpath id='SVGID_3_' d='M0 0h240v240H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_4_'%3E%3Cuse xlink:href='%23SVGID_3_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath clip-path='url(%23SVGID_4_)' fill='%23002E60' d='M119.9 240c-32.06 0-62.2-12.48-84.96-35.14C12.3 182.21-.29 152.06-.29 120S12.2 57.8 34.94 35.14A119.29 119.29 0 01119.9 0c32.07 0 62.3 12.48 84.96 35.14S240.1 87.94 240.1 120s-12.48 62.2-35.24 84.86S151.96 240 119.9 240zm0-227.04c-28.6 0-55.58 11.14-75.74 31.4A106 106 0 0012.76 120a106 106 0 0031.4 75.65c20.16 20.25 47.14 31.39 75.74 31.39s55.5-11.14 75.75-31.3 31.39-47.04 31.39-75.64-11.14-55.5-31.4-75.65a106.08 106.08 0 00-75.74-31.49z'/%3E%3Cpath fill='%23002E60' d='M51.55 49.73c-5.95 25.25-6.05 48.1-5.76 63.55-.38 70.75 51.94 92.74 74.21 99.46 22.27-6.72 74.6-28.7 74.2-99.46.3-15.55.2-38.3-5.75-63.55-34.37-6.05-55.3-5.47-68.45-5.57-13.15.2-34.08-.38-68.45 5.57z'/%3E%3Cpath fill='%237BB1DD' d='M179.9 132.1c.2 0 0 .38-.1.57-3.93 31.4-20.25 53.38-59.9 67.49-39.64-14.11-55.96-36.1-59.9-67.49 0-.19.1-.48-.1-.57.1-.1 120 0 120 0z'/%3E%3Cpath fill='%23FFF' d='M60.2 119.23c-.3-6.43-.2-13.34.38-20.54.67-11.23 1.34-24.29 4.7-39.27 26.02-4.7 43.58-4.6 54.82-4.9 11.13.3 28.8.3 54.81 4.9 3.36 14.98 4.03 28.04 4.7 39.27.49 7.3.68 14.11.39 20.64l-119.8-.1z'/%3E%3Cpath fill='%23E41819' d='M120 135.36l-25.92 18.82 9.89 30.52h32.06l9.89-30.52z'/%3E%3Cpath fill='%23EAAA00' d='M171.55 119.33a49.98 49.98 0 00-49.63-56.16 49.98 49.98 0 00-49.63 56.16h99.26z'/%3E%3C/svg%3E");
}

[football1club_logo="ARS"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cpath fill='%23CEA451' d='M120 0C95.65 0 50.7 6.34 27.9 19.58-2.23 126.24 38.67 198.82 120 240c81.33-41.18 122.23-114.05 92.1-220.42C189.2 6.34 144.35 0 120 0z'/%3E%3Cpath fill='%23023474' stroke='%23023474' stroke-width='.48' stroke-miterlimit='282' d='M120 12.77c-22.71 0-48.22 2.88-81.71 16.51C13.36 117.6 42.24 188.35 120 226.94c77.67-38.59 106.54-109.34 81.61-197.66-33.4-13.63-58.9-16.51-81.61-16.51h0z'/%3E%3Cpath fill='%23EF0107' d='M177.46 20.54c-18.87-5.85-38.79-7.87-57.56-8.06h-1.73c-18.57.2-35.51 2.02-55.72 8.16-19.16 90.43-5.78 160.03 57.55 206.2 63.33-46.17 76.7-115.86 57.46-206.3z'/%3E%3C/svg%3E");
}

[football1club_logo="DOR"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cswitch%3E%3Cg%3E%3Ccircle fill='%23F9E81C' cx='120' cy='120' r='114.1'/%3E%3Cpath fill='%23020200' d='M108 2.6c16.8-1.6 34 .1 50 5.6 21.5 7.3 40.6 21 54.7 38.8 13.9 17.5 22.6 39 24.8 61.2 1 12 .7 24.2-1.9 36-3.5 16.9-10.8 33.2-21.2 46.9a117.76 117.76 0 01-40.7 34.2c-16.5 8.5-35.1 12.9-53.7 12.7-19.5.2-38.9-4.8-56-14.1a118.94 118.94 0 01-47.5-47.1c-7.6-13.5-12.3-28.7-13.9-44.3-1.5-16.2-.2-33.1 5.1-48.6 6.9-22.4 21-42.4 39.5-56.9C64.5 13.4 86 4.8 108 2.6m-3.8 7.7a110.8 110.8 0 00-68.3 37.6c-12.4 14.6-21.1 32.2-24.7 51-2.2 10.2-1.8 20.9-1.6 31.3A110 110 0 0028.7 183c18.1 26.7 48.5 44.8 80.6 47.5 5.3.3 10.6.2 15.9.2 7.7 0 15.3-1.3 22.7-3.2a108.9 108.9 0 0041.9-21.3c23-18.7 38.2-46.9 40.4-76.5.1-9.6.7-19.6-1.4-29.1-3-17-10-33.3-20.5-47a108.7 108.7 0 00-43.1-34.4c-13.5-6-28.3-9.6-43.2-9.3-5.8-.3-11.9-.4-17.8.4'/%3E%3Cpath fill='%23020200' d='M109.9 21.8c14.1-1.3 28.4.1 41.8 4.7 18 6.1 34 17.5 45.7 32.4a98.03 98.03 0 0120.7 51.2c.8 10 .6 20.2-1.6 30.1-3 14.1-9 27.7-17.8 39.2-9 11.9-20.7 21.9-34 28.6a96.06 96.06 0 01-44.9 10.6c-16.3.2-32.6-4-46.9-11.8-16.6-9-30.6-22.8-39.7-39.4-6.3-11.3-10.3-24-11.6-37-1.2-13.6-.2-27.6 4.3-40.6A96.54 96.54 0 0159 42.3c14.6-11.4 32.5-18.6 50.9-20.5m-3.1 6.5c-22 3.1-42.8 14.6-57.1 31.4C39.3 71.9 32 86.6 29.1 102.3c-1.8 8.6-1.5 17.4-1.3 26.2 1.3 15.8 7 31.2 15.9 44.2 15.1 22.3 40.5 37.4 67.4 39.7 4.4.2 8.9.2 13.3.2 6.4 0 12.8-1.1 19-2.7 12.8-3.3 24.8-9.5 35-17.8 19.2-15.6 31.9-39.2 33.8-64 .1-8.1.6-16.4-1.2-24.3a91.81 91.81 0 00-17.1-39.3 91.84 91.84 0 00-36-28.8c-11.3-5-23.7-8.1-36.1-7.8-4.9-.2-10-.3-15 .4'/%3E%3Cpath fill='%23020200' d='M181.1 50.3c-16.4 52-32.7 104-49.1 156h-22.2c-5.1-15.7-10.1-31.3-15.2-47C83.3 124.7 72.2 90.1 61 55.4c-.5-1.5-1.3-2.9-2-4.3-.2-4 2.8-2.6 4.8-2.9 7.2 0 14.4.2 21.6-.1 3.6-.2 4.7 1.2 5.6 4.4 4.6 16 9.4 32 14.1 48 5 17 10.1 33.9 15.1 50.9h.9c10-34.4 19.9-68.6 30-103.4h27.6c.8.8 1.6 1.6 2.4 2.3z'/%3E%3C/g%3E%3C/switch%3E%3C/svg%3E");
}

[football1club_logo="MAU"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cswitch%3E%3Cg%3E%3Cpath fill='%23FFED00' d='M20.7 109.7c11.4 0 20.7 9.3 20.7 20.8s-9.3 20.8-20.7 20.8S0 141.9 0 130.4s9.3-20.7 20.7-20.7z'/%3E%3Cpath fill='%23E30512' d='M20.7 115.1c4.2 0 8.1 1.8 10.9 4.5s4.5 6.6 4.5 10.8c0 4.2-1.7 8-4.5 10.8s-6.6 4.5-10.9 4.5c-4.2 0-8-1.8-10.8-4.5a15.2 15.2 0 010-21.6c2.8-2.8 6.6-4.5 10.8-4.5z'/%3E%3Cpath fill='%23FFEC00' d='M20.7 147.1c-4.4 0-8.6-1.8-11.8-4.9S4 134.9 4 130.4s1.7-8.7 4.9-11.8c3.1-3.1 7.4-4.9 11.8-4.9s8.6 1.8 11.8 4.9 4.9 7.4 4.9 11.8-1.7 8.7-4.9 11.8a16.4 16.4 0 01-11.8 4.9zm0-30.6c-3.7 0-7.2 1.5-9.8 4.1-2.7 2.7-4.1 6.2-4.1 9.9s1.5 7.2 4.1 9.9a13.78 13.78 0 0023.6-9.9c0-3.7-1.5-7.2-4-9.9s-6-4.1-9.8-4.1z'/%3E%3Cpath fill='%23FFED00' d='M219.3 109.7c11.4 0 20.7 9.3 20.7 20.8s-9.3 20.8-20.7 20.8c-11.4 0-20.7-9.3-20.7-20.8-.1-11.5 9.2-20.8 20.7-20.8z'/%3E%3Cpath fill='%23FFED00' d='M56.3 153.8c-10.8-12.5-18.9-10.1-25.5-5.1-10.7 8.1-9 18.8-3 29 16.7 28.7 47.5 46.3 88.6 47.2 2.5.1 4.9.1 7.3 0 41-.9 72-18.5 88.7-47.2 5.9-10.1 7.6-20.9-3-29-6.6-5-14.7-7.6-25.5 5.1-16.4 19.2-36.9 30.2-60.7 31.5-2.2.1-4.3.1-6.6 0-23.8-1.4-44.1-12.5-60.3-31.5z'/%3E%3Cpath fill='%23E30512' d='M53.2 156.5l-.9-1.1-.9-1.1-.8-.8-.9-.7-.8-.8-.8-.6-.7-.6-.8-.4-.7-.4-.7-.4-.6-.2-.6-.3-.7-.2-.5-.1-.6-.1-.5-.1h-1.6l-.5.1-.5.1-.5.2-.5.2-.6.2-.5.1-.5.3-.5.3-.6.4-.5.2-.6.4-.6.4-.5.4-.8.7-.8.6-.6.7-.7.6-.5.7-.6.6-.3.7-.4.7-.4.7-.2.6-.3.6-.2.7-.2.7-.1.7-.1.7v2.2l.1.8.1.7.1.8.2.9.3.7.2.8.2.9.4.9.4.8.3.8.4 1 .5.8.4.9.6.9 1.5 2.5 1.6 2.5 1.7 2.4 1.8 2.3 1.8 2.3 2 2.3 1.9 2.1 2.1 2.1 2.1 1.9 2.2 2 2.3 1.9 2.4 1.8 2.5 1.7 2.5 1.7 2.6 1.5 2.6 1.5 2.7 1.4 2.8 1.4 2.8 1.2 2.9 1.2 3.1 1.1 3 1 3.1.9 3.3.9 3.2.8 3.4.6 3.3.6 3.5.5 3.5.4 3.6.4 3.6.2 3.7.1.5.1H123.5l3.7-.2 3.7-.2 3.5-.4 3.5-.4 3.5-.5 3.4-.6 3.3-.6 3.3-.7 3.3-1 3.1-.9 3-1 3.1-1.1 2.9-1.1 2.9-1.3 2.7-1.4 2.8-1.4 2.6-1.5 2.6-1.5 2.5-1.7 2.4-1.7 2.4-1.8 2.3-1.8 2.2-2 2.2-2 2-2.1 2-2.1 2-2.3 1.8-2.3 1.8-2.3 1.7-2.4 1.6-2.5 1.5-2.5.6-.9.4-.9.4-.8.5-1 .3-.8.4-.8.3-.9.3-.9.2-.8.3-.7.2-.9.1-.8.1-.7.1-.8v-2.2l-.1-.7-.1-.7-.2-.7-.2-.7-.3-.6-.2-.6-.4-.7-.4-.7-.4-.7-.5-.6-.5-.7-.7-.6-.6-.7-.8-.6-.8-.7-.5-.4-.6-.4-.6-.4-.5-.2-.6-.4-.5-.3-.5-.3-.5-.1-.6-.2-.5-.2-.5-.2-.5-.1-.5-.1h-1.6l-.5.1-.6.1-.6.1-.6.2-.6.3-.6.2-.7.4-.7.4-.8.4-.7.6-.8.6-.8.8-.9.7-.8.8-.9 1.1-.9 1.1-1.7 1.7-1.6 1.8-1.6 1.7-1.7 1.8-1.7 1.6-1.8 1.6-1.7 1.5-1.8 1.6-1.8 1.3-1.8 1.4-1.9 1.4-1.9 1.3-1.9 1.2-2 1.2-1.9 1.1-2 1.1-2 1-2.1 1-2 .9-2 .8-2.1.8-2.1.8-2.3.6-2.1.7-2.2.5-2.2.5-2.2.4-2.3.4-2.3.4-2.3.3-2.3.1-2.3.2H121.5l-.5.1h-2.2l-.4-.1h-1.8l-.5-.1-2.2-.1-2.3-.2-2.3-.3-2.2-.3-2.3-.5-2.2-.4-2.2-.5-2.1-.5-2.2-.7-2.1-.7-2.1-.8-2.1-.7-2.1-.9-2-.8-2-1.1-2-1-2-1-1.9-1.2-1.9-1.1L74 175l-1.8-1.3-1.9-1.3-1.8-1.4-1.8-1.3-1.8-1.6-1.7-1.5-1.8-1.5-1.6-1.7-1.7-1.7-1.6-1.7-1.7-1.8z'/%3E%3Cpath fill='%23FFEC00' d='M119.9 223.8h-3.6l-3.8-.1-3.7-.2-3.7-.4-3.6-.5-3.5-.5-3.5-.6-3.4-.6-3.3-.7-3.3-.8-3.2-.9-3.1-1-3-1.1-3-1.2-3-1.3-2.8-1.4-2.9-1.5-2.7-1.5-2.8-1.7-2.5-1.7-2.6-1.8-2.4-1.8-2.5-1.9-2.2-1.9-2.3-2.1-2.1-2.1-2-2.2-2-2.3-1.9-2.4-1.8-2.4-1.7-2.4-1.7-2.7-2.1-3.5-1-1.8-.8-1.8-.7-1.8-.6-1.8-.5-1.9-.3-1.8-.1-1.7.1-1.8.3-1.8.5-1.7.6-1.7.9-1.6 1.1-1.6.6-.8 1.5-1.5.8-.7 2-1.6 1.9-1.2 1.9-.9 1.3-.5 1.4-.3 1.4-.2h.6l1.5.1 1.5.3 1.6.6 1.6.7.8.5 1.7 1.2 1.7 1.5.9.8 1.9 1.9 4.1 4.6L60 160l1.7 1.7 1.7 1.6 1.7 1.6 1.7 1.5 1.7 1.5 1.7 1.4 1.7 1.3 1.7 1.3 1.8 1.3 1.8 1.2 1.8 1.1 1.8 1.1 1.9 1 1.9 1 1.9.9 1.9.8 2 .8 2 .7 2 .7 2 .6 2.1.6 2.1.6 2.1.5 2.1.5 2.2.4 2.2.4 2.2.3 2.2.2 6.4.3 2.5-.1 2.3-.2 2.2-.2 2.2-.3 2.2-.3 2.2-.4 2.1-.5 2.1-.5 2.1-.6 2.1-.6 2.1-.6 2-.7 2-.7 2-.8 2-.8 1.9-.9 1.9-1 1.9-1 1.9-1.1 1.8-1.1 1.8-1.2 1.8-1.3 1.8-1.3 1.7-1.4 1.7-1.4 1.7-1.5 1.7-1.5 3.3-3.1 3.2-3.3 5.1-5.6 1.9-1.8 1.8-1.5 1.7-1.2 1.7-.9.8-.4 1.6-.5 1.5-.3 1.3-.1 1.5.1 1.4.3 1.3.4 1.3.6 1.3.6 1.7 1.1 1.2.8 1 .8.8.7 1.5 1.5 1.2 1.6.6.8.8 1.6.6 1.7.5 1.7.3 1.7.1 1.7-.1 1.8-.3 1.8-.5 1.8-.6 1.8-.7 1.8-.8 1.8-1 1.8-.6.9-1.7 2.7-1.7 2.5-1.8 2.6-1.7 2.3-1.9 2.4-2 2.3-2 2.2-2.1 2.1-2.2 2.1-2.5 2-2.3 1.8-2.5 1.9-2.6 1.8-2.5 1.7-2.8 1.7-2.7 1.5-2.8 1.5-2.9 1.4-2.9 1.3-3.1 1.3-3 1.1-3.1 1-3.2.9-3.3.8-3.3.7-3.4.7-3.5.6-3.5.6-3.6.5-3.7.4-3.8.2-6.1-.2zm-.9-5.5h4.4l3.7-.1 3.6-.2 3.5-.3 3.5-.4 3.4-.5 3.3-.6 3.2-.6 3.2-.7 3.1-.8 3-.9 2.9-1 2.9-1 2.9-1.2 2.8-1.2 2.8-1.3 2.7-1.4 2.6-1.4 2.6-1.6 2.4-1.6 2.4-1.7 2.3-1.8 2.2-1.8 2.1-1.8 2.1-1.9 2-2 1.9-2.1 1.8-2.1 1.8-2.2 1.7-2.2 1.7-2.4 1.6-2.4 1.9-3.3 1.3-2.5.6-1.6.6-1.5.5-1.5.4-2 .1-1.2v-1.1l-.2-1.1-.3-1-.4-1-.6-1-.7-1-.5-.6-1.1-1.1-1.9-1.6-1.8-1.2-1.3-.6-1.2-.4-1-.2h-.5l-.8-.2-.7.2-.9.3-1.1.5-1.2.7-1.4 1-1.5 1.4-1.7 1.7-4.1 4.7-1.7 1.8-1.7 1.8-1.7 1.7-1.7 1.7-1.8 1.6-1.8 1.6-1.8 1.5-1.9 1.5-1.9 1.4-1.9 1.3-1.9 1.3-2 1.2-2 1.2-2 1.1-2.1 1-2.1 1-2.1.9-2.1.8-2.2.8-2.2.7-2.2.7-2.8.5-2.3.6-2.3.6-2.3.5-2.3.4-2.4.4-2.4.3-2.4.2-6.1.3-3.7-.1-2.3-.2-2.4-.2-2.3-.3-2.3-.4-2.3-.4-2.3-.5-2.3-.6-2.2-.6-2.2-.6-2.2-.7-2.2-.7-2.1-.8-2.1-.9-2.1-.9-2.1-1-2-1-2-1.1-2-1.1-2-1.2-1.9-1.3-1.9-1.3-1.9-1.4-1.8-1.4-1.8-1.5-1.8-1.5-1.8-1.6-1.7-1.7-1.7-1.7-1.7-1.8-1.7-1.8-1.7-1.8-2.5-2.9-1.7-1.7-1.5-1.4-1.4-1-1-.9-1-.6-.9-.3-.8-.1-.7-.1-1 .1-1.1.3-1.2.6-1.4.8-1.4 1-1.4 1.2-1.1 1.1-.8 1.1-.6 1-.5 1-.4 1-.4 1-.1 1.1v.6l.1 1.2.2 1.4.4 1.5.5 1.5.6 1.6.7 1.6.8 1.7.5.8L35 177l1.6 2.4 1.7 2.3L40 184l1.7 2.2 1.8 2.1 1.9 1.9 2 2 2.1 1.9 2.1 1.8 2.3 1.8 2.2 1.8 2.4 1.7 2.4 1.6 2.6 1.6 2.5 1.4 2.7 1.4 2.7 1.3 2.9 1.2 2.9 1.1 2.9 1.1 2.9 1 3 .9 3.1.8 3.2.7 3.2.6 3.3.6 3.4.5 3.5.4 3.5.3 3.6.2 6.2.4z'/%3E%3Cpath fill='%23E30512' d='M164.4 66.1H75.6v97.6l44.4 28.9 44.4-28.9z'/%3E%3Cpath fill='%23FFED00' d='M150.3 84.7H89.7v67.6l30.3 19.1 30.3-19.1v-48z'/%3E%3Cpath fill='%23FFED00' d='M14.8 80.3c27.6-18 36.7-48.8 72.6-60.7 18.7-6.2 48.2-6.1 66.7.5 34.7 12.3 44 42.5 71.2 60.2 0 13.9-5.1 27.3-16.2 31.5-9.7 3.6-20.3-6.4-26.9-15.2-11.7-15.7-22.6-27.3-34.9-34.1a55.75 55.75 0 00-52.9-.7c-12.9 6.7-24.2 18.7-36.3 35-6.6 8.9-17.3 18.8-26.9 15.2-11.2-4.4-16.4-17.8-16.4-31.7z'/%3E%3Cpath fill='%23E30512' d='M31.4 71.9l2.2-2.1 2-2.2 2-2.1 1.9-2.2 2-2.1 1.9-2.3 1.8-2.1 2-2.2 1.8-2.1 1.9-2.1 1.9-2.2 1.9-2 1.9-2 2.1-2 2-2 2.1-1.8 2.1-1.9 2.3-1.7 2.3-1.8 2.4-1.6 2.5-1.5 2.6-1.5 2.7-1.4 2.9-1.3 2.9-1.3 3.1-1.1 1.7-.4 1.7-.6 1.9-.4 1.8-.4 1.9-.5 2-.3 2-.3 2-.3 2.1-.3 2.1-.3 2.1-.1 2.2-.1 2.1-.1 2.2-.1 2.1-.1h2.2l2.2.1h2.2l2.2.1 2.2.2 2.1.1 2.1.2 2.1.3 2.1.3 2.1.3 1.9.3 1.9.4 1.9.5 1.9.4 1.7.5 1.8.5 1.6.6 3.1 1.1 2.8 1.3 2.8 1.3 2.6 1.4 2.5 1.4 2.4 1.6 2.4 1.7 2.2 1.6 2.2 1.8 2.1 1.8 2.1 2 2 1.8 1.9 2 1.9 2.1 1.9 2 1.9 2 1.9 2.2 1.8 2.1 1.8 2.1 1.9 2.2 1.9 2.1 1.9 2.2 2 2.2 1.9 2.1 2 2.1 2.1 2 2.2 2.1 2.2 2 2.4 1.9 2.4 2 2.5 1.8.8.6v.3l-.1 1.2v1.2l-.2 1.2-.1 1.2-.2 1.1-.3 1.1-.2 1.2-.2 1-.3 1.1-.4 1-.3 1-.4 1-.4 1.1-.4.9-.5.9-.5.8-.4.9-.6.8-.5.7-.6.8-.6.7-.6.6-.6.6-.7.6-.7.5-.6.6-.8.4-.8.4-.7.4-.9.3-.5.2-.7.2-.6.1H204l-.8-.1-.6-.2-.8-.2-.7-.2-.6-.2-.9-.4-.7-.4-.7-.3-.8-.5-.8-.6-.7-.4-.9-.7-.7-.5-.7-.7-.9-.6-.7-.7-.7-.7-.8-.7-.7-.8-.7-.8-.7-.7-.6-.9-.7-.7-.6-.8-.7-.8-.6-.8-1.1-1.5-1.1-1.4-1.1-1.4-1.1-1.4-1-1.4-1.1-1.4-1.1-1.3-1.1-1.4-1.1-1.3-1.1-1.2-1.2-1.2L172 78l-1.1-1.2-1.1-1.2-1.1-1.2-1.1-1.1-1.1-1.1-1.1-1.1-1.2-1-1.1-1-1.1-1-1.1-1-1.2-1-1.1-.9-1.2-.9-1.2-.8-1.1-.9-1.2-.8-1.2-.7-1.2-.8-1.2-.7-1.2-.7-1.7-1-1.7-.8-1.6-.7-1.8-.8-1.7-.6-1.7-.7-1.8-.5-1.7-.5-1.9-.4-1.7-.4-1.9-.4-1.7-.3-1.9-.1-1.8-.2-1.8-.1-1.9-.1H119l-1.8.1-1.8.1-1.8.2-1.9.1-1.8.3-1.8.4-1.8.4-1.7.4-1.8.5-1.8.6-1.8.6-1.7.7-1.7.8-1.7.7-1.7.8-1.3.8-1.3.6-1.2.8-1.2.8-1.2.8-1.3.8-1.2.9-1.2.9-1.2.9-1.2 1-1.2.9-1.2 1.1-1.2 1.1-1.1 1-1.2 1.1-1.2 1.1-1.1 1.2-1.2 1.1-1.1 1.3-1.2 1.2-1.1 1.2-1.1 1.3-1.2 1.4-1.1 1.3-1.1 1.3-1.2 1.4-1.1 1.4-1.2 1.5-1.1 1.4-1.2 1.5-1.1 1.5-1.1 1.5-.6.8-.7.8-.6.8-.7.7-.6.9-.7.7-.7.8-.7.8-.8.7-.7.7-.7.7-.9.6-.7.7-.7.5-.9.7-.7.4-.8.6-.8.5-.7.3-.8.4-.8.4-.7.2-.6.2-.8.2-.6.2-.8.1H34.2l-.6-.1-.7-.2-.5-.2-.9-.3-.8-.4-.7-.4-.8-.4-.6-.6-.7-.5-.7-.6-.6-.6-.7-.6-.5-.7-.6-.8-.5-.7-.6-.8-.4-.9-.5-.8-.5-.9-.4-.9-.4-1.1-.4-1-.3-1-.4-1-.3-1.1-.2-1-.2-1.2-.3-1.1-.2-1.1-.1-1.2-.2-1.2v-1.2l-.1-1.2v-.3l.8-.6 2.6-1.8 2.4-2 2.3-2 2.3-2z'/%3E%3Cpath fill='%23FFEC00' d='M204.5 111.3l-1.7-.2-.9-.2-1.7-.5-1.7-.7-1.7-.9-1.7-1-1.7-1.2-1.7-1.4-1.6-1.5-2.3-2.3-2.2-2.4-2-2.5-6.1-7.9-4.3-5.3-3.2-3.7-3.2-3.4-3.2-3.2-3.3-3-2.2-1.8-2.2-1.8-2.3-1.7-2.3-1.6-2.3-1.4-1.2-.6-1.6-.8-1.6-.7-1.7-.7-1.7-.7-1.6-.6-1.7-.6-1.7-.6-3.3-.9-1.7-.4-1.7-.4-1.7-.3-1.7-.2-1.7-.2-1.7-.1-1.7-.1h-1.7l-1.7.1-1.7.1-1.7.2-1.7.2-1.7.3-1.7.3-1.7.4-1.7.5-1.7.5-1.7.6-1.7.6-2 .4-1.7.7-1.7.7-2.8 1.6-2.4 1.4-2.4 1.6-2.4 1.7-2.3 1.9-2.3 1.8-3.4 3-3.4 3.3-3.4 3.5L67 83l-4.5 5.4-4.4 5.8-3 4-2.1 2.4-2.3 2.4-1.6 1.5-1.7 1.5-1.6 1.2-1.7 1.1-1.8 1-1.7.8-1.7.6-1.7.4-1.6.2-1.7-.1-.9-.2-.8-.2-1.7-.6-1.7-.9-.8-.6-1.7-1.2-1.5-1.4-1.4-1.6-1.3-1.7L21 101l-1.1-2-.9-2-.8-2.2-.6-2.2-.6-2.4-.5-2.4-.3-2.5-.2-3v-1.5l2-1.4 2.5-1.8 2.4-1.9 2.3-1.9 2.2-1.9 2.1-2 2.1-2.1 2-2.1 4-4.2 13.2-15 1.9-2.1 2-2 2-2 2.1-1.9 2.1-1.9 2.3-1.9 2.2-1.8 2.5-1.8 2.5-1.7 2.6-1.6 2.7-1.6 2.9-1.5 2.9-1.4 3.1-1.3 3.2-1.1 1.7-.6 3.7-1 3.9-.8 4-.7 4.2-.6 2.1-.2 4.4-.4 4.4-.2 2.2-.1h2.2l4.4.1 4.4.3 2.2.2 4.3.5 4.2.6 4 .7 1.9.5 3.8 1 3.6 1.1 3.1 1.2 3 1.3 2.9 1.4 2.8 1.5 2.6 1.6 2.6 1.8 2.4 1.7 2.2 1.7 2.2 1.8 2.2 1.8 2.1 1.9 2 1.9 2 2 3.9 4.2 5.6 6.4 7.4 8.6 3.9 4.2 2 2 2 2 2.1 2 2.2 1.9 2.3 1.9 2.3 1.8 3.1 2.3 1.3.8v3.2l-.3 2.4-.4 2.5-.5 2.4-.6 2.3-.7 2.3-.8 2.1-.9 1.9-1.1 2-1.2 1.8-1.3 1.6-1.5 1.5-1.6 1.3-.8.6-1.7 1-.9.5-1.7.6-.8.2-.8.1h-1.5zm-169.6-5.6h.5l.9-.1 1-.3 1.2-.4 1.3-.6 1.4-.8 1.4-.9 1.4-1 2.1-1.8 2.1-2 1.9-2.2 2.4-3 3.4-4.5 4.6-5.7 3.5-4.1 3.5-3.9 3.5-3.6 3.6-3.4 2.4-2.1 3.7-3 2.5-1.8 2.6-1.8 2.6-1.6 2.7-1.5 1.7-.8 1.7-.8 1.8-.8 1.7-.6 1.8-.6 1.9-.6 1.7-.5 1.8-.5 1.8-.4 1.9-.4 1.9-.3 2.2-.3 1.9-.2 1.9-.1 1.9-.1h1.9l1.9.1 1.9.1 1.9.2 2 .3 1.8.3 1.9.4 1.9.5 1.7.5 1.8.6 1.8.6 1.9.6 1.7.6 1.8.7 1.8.8 1.7.8 3 1.7 2.5 1.6 2.5 1.7 2.4 1.8 2.4 1.8 2.4 1.9 3.5 3.1 3.4 3.3 3.4 3.6 3.3 3.8 4.4 5.4 8.6 11 2 2.1 2.1 2 1.4 1.2 1.4 1.1 1.4.9 1.4.7 1.3.6 1.2.4 1 .3.9.1h.8l.7-.2 1.1-.4 1.3-.6.6-.4 1.1-.8 1.1-1 1-1.1 1-1.3.9-1.5.8-1.6.7-1.8.6-1.8.6-1.9.5-2 .4-2.1.4-3.2-2.2-1.6-2.4-1.9-2.4-2-2.3-2-2.2-2.1-2.1-2.1-2.1-2.1-4-4.3-13.1-14.9-3.8-4-1.9-1.9-1.9-1.8-2-1.8-2-1.8-2.1-1.8-2.1-1.7-2.2-1.6-2.3-1.5-2.4-1.4-2.6-1.4-2.7-1.3-2.8-1.2-2.9-1.1-3.2-1-3.5-.9-3.7-.7-3.9-.6-4-.6-2.1-.2-4.2-.3-4.2-.2H118l-4.2.1-4.2.3-4.1.4-4 .6-3.5.2-3.7.8-3.4.9-1.3.4-3 1.1-2.9 1.2-2.8 1.3-2.6 1.4-2.5 1.4-2.4 1.5-2.3 1.6-2.3 1.7-2.2 1.6-2.1 1.8-2 1.8-2 1.8-1.9 1.8-1.9 2-3.8 4.2-13.3 15.1-2 2.2-2.1 2.2-2.2 2.3-2.2 2-2.3 2.1-2.4 2-2.6 2-2.2 1.6.2 2.2.3 2.2.5 2.1.6 2 .6 1.8.7 1.8.8 1.7.9 1.6.9 1.4 1 1.2 1.1 1.1 1.1.9 1.2.7 1.3.6 1.1.4.7.2.3.1z'/%3E%3Cg%3E%3Cpath fill='%23E30512' d='M219.3 115.1c4.2 0 8.1 1.8 10.9 4.5s4.5 6.6 4.5 10.8c0 4.2-1.7 8-4.5 10.8s-6.6 4.5-10.9 4.5c-4.2 0-8-1.8-10.8-4.5a15.2 15.2 0 010-21.6c2.8-2.8 6.6-4.5 10.8-4.5z'/%3E%3Cpath fill='%23FFEC00' d='M219.3 147.1c-4.4 0-8.6-1.8-11.8-4.9s-4.9-7.4-4.9-11.8 1.7-8.7 4.9-11.8c3.1-3.1 7.4-4.9 11.8-4.9s8.6 1.8 11.8 4.9 4.9 7.4 4.9 11.8-1.7 8.7-4.9 11.8c-3.1 3.2-7.3 4.9-11.8 4.9zm0-30.6c-3.7 0-7.2 1.5-9.8 4.1-2.7 2.7-4.1 6.2-4.1 9.9s1.5 7.2 4 9.9a13.78 13.78 0 0023.6-9.9c0-3.7-1.5-7.2-4-9.9-2.4-2.7-5.9-4.1-9.7-4.1z'/%3E%3C/g%3E%3C/g%3E%3C/switch%3E%3C/svg%3E");
}

[football1club_logo="CHE"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cswitch%3E%3Cg%3E%3Ccircle fill='%23FFF' stroke='%23000' stroke-miterlimit='10' cx='120' cy='120' r='85.5'/%3E%3Cpath fill='%23BB8A1A' d='M107.8.6c17.1-1.6 34.6.1 50.9 5.7a120.4 120.4 0 0155.6 39.4c14.1 17.8 23 39.6 25.2 62.2 1 12.2.7 24.6-1.9 36.6-3.6 17.2-11 33.7-21.6 47.7a120.9 120.9 0 01-41.4 34.8c-16.8 8.6-35.7 13.1-54.6 12.9-19.8.2-39.6-4.9-57-14.3a120.99 120.99 0 01-48.3-47.9C7 164 2.2 148.5.6 132.7-.9 116.2.4 99.1 5.8 83.3c7-22.8 21.4-43.1 40.2-57.8C63.6 11.6 85.4 2.9 107.8.6M104 8.5c-26.8 3.8-52 17.7-69.5 38.2C21.9 61.5 13 79.4 9.4 98.5c-2.2 10.4-1.8 21.2-1.6 31.8 1.6 19.2 8.5 37.9 19.4 53.7 18.4 27.1 49.3 45.5 82 48.3 5.4.3 10.8.2 16.2.2 7.8 0 15.6-1.3 23.1-3.3 15.6-4 30.2-11.5 42.6-21.7 23.4-19 38.8-47.7 41.1-77.8.1-9.8.7-19.9-1.4-29.6-3-17.3-10.2-33.8-20.8-47.8a111.6 111.6 0 00-43.8-35c-13.7-6.1-28.8-9.8-43.9-9.5-6.1 0-12.3-.2-18.3.7'/%3E%3Cpath fill='%2300318A' d='M103.9 8.4c6.1-.9 12.3-.8 18.4-.8 15.1-.3 30.2 3.4 43.9 9.5a113.4 113.4 0 0143.8 35c10.6 13.9 17.9 30.5 20.9 47.8 2 9.7 1.5 19.8 1.4 29.6-2.2 30.1-17.6 58.9-41.1 77.9a114.5 114.5 0 01-42.7 21.7c-7.5 1.9-15.3 3.3-23.1 3.3-5.4 0-10.8.1-16.2-.2-32.7-2.8-63.6-21.1-82-48.3C16.3 168 9.4 149.3 7.8 130.2c-.3-10.6-.7-21.4 1.6-31.8C13 79.3 21.9 61.3 34.5 46.5a113.1 113.1 0 0169.4-38.1m13.8 31.1c-13.2.2-26.3 4-37.7 10.5a81.03 81.03 0 00-36.1 43.3c-4.2 11.6-5.4 24.1-4 36.3 2 17 9.6 33.5 21.6 45.8a80.1 80.1 0 0047.8 24.4c13.9 1.8 28.4.1 41.4-5.3 16.4-6.7 30.5-19.2 39.4-34.7 11-19 13.5-42.5 7.1-63.6-5.4-18.3-17.8-34.3-33.9-44.5a83.14 83.14 0 00-45.6-12.2'/%3E%3Cpath fill='%2300318A' d='M176.6 114c-1.8-2.4-4.5-4.5-7.5-4.8-4-.3-7.4 1.8-10.6 4.1.8-1.8 1.8-3.5 3.2-4.8 4.5-4.2 10.3-7 13.5-12.3 1.9-3.1 1.9-7.2.6-10.7-3.6-5.5-12.3-6.6-17.3-2.3-.7.8-1.5 1.8-2 2.6-.4 1.9-.4 4-.4 5.9.5-.6.9-1.4 1.4-2 .1-.1.1-.2.2-.3.8-.5 1.6-1 2.2-1.6 2.3-.8 4.5.7 5.2 2.8 0 1.5-.4 2.9-1.5 4.1-4.2 4.9-10.4 8.1-13 14.1-2 5.1.1 10.8 3.3 14.9 2.4 3.3 5.7 6.2 6.9 10.3.8 2.5.1 5.8-2.4 7.2-3 1.8-7 .8-9.9-.8-1.1-.7-2.1-1.5-3.1-2.3 0-.1-.1-.1-.1-.1-3.3-5.8-4.4-12.7-5.4-19.2-.4-3.8-3.3-6.7-2.7-10.6 2.7-.2 5.9-.1 8-2.3 1.7-1.5 1.8-3.8 1.8-5.8-.4-1.1-.9-2.2-1.4-3.3-1.5 1.3-2.9 2.4-5 2.5-1.8-.8-3.7-2.2-4.1-4.3-.8-2.7-.9-6.7 2-8.3 2.6-1.3 5.2.9 7.3 2.1-.2-1.4-.3-2.6-.4-4 0-1.1.1-2.1.1-3.2-1.5.1-2.8 0-4.3-.1-.5-2.3.7-5 2.8-6 1.7-.7 2.7 1 4 1.8 1.9-2.8 4.4-5.5 5.7-8.9-1.8-1.6-3.9-2.8-5-5.1-5.2-.8-11-1-15-4.9-1.8-1.5-2.2-3.7-3.7-5.3-2.8 1.6-6 4.1-5.4 7.6-2.9 0-6.2.4-7.9 3l-.7.5c.1.4.1 1.3 0 1.7 1.4.5 3.2.7 3.8 2.3 1 2.3-.2 4.7-1.4 6.7-1.4.4-2.6 1-4.1.8-1.7-.3-2.8-1.6-4.3-2.3v1c-.4 1.1-.8 2.2-.5 3.5.3 2.1 2.4 3.3 3.9 4.7-1.6 2.8-3.2 5.7-5.3 8.3-2.9-.1-5.7-.6-8.7-.9-.2-.2-.4-.3-.5-.5-2.2-1.5-4.8-2.2-7.2-3.2-.1-.1-.3-.1-.4-.2-.6-.9-1.3-1.8-2-2.6-1.2-.8-2.3-1.5-3.5-2 0-.2-.1-.4-.1-.6.7-1.9 2.8-2.4 4.3-3.8 4.5-3.5 5.8-10 3.6-15.3-2.8-4.8-9.3-7.6-14.4-4.9-.2.2-.3.3-.4.5-3.1 1.2-5.4 4-6.4 7.1-1.3 4.5.3 10 4.6 12.2 0 0 1.5.7 2.1 1.3-.9.4-1.9.8-2.7 1.5 1.5.4 2.6.6 4.2.7v2c-1.6-.1-3.5.2-4.3 1.8-.7 1-.3 2.3-.1 3.5.6 1.7-1.4 3.2-.4 4.9.6 1.6 1 3 1.8 4.5.8 1 2 1.1 3.2 1.3v.5c.2 8.3.1 16.4-.1 24.6-2.7 1.7-6.3 3-7 6.5-.1.9-.8 2.3.3 2.8l.2-.7.2-.3.8-.3c1.3-.3 2.4-.4 3.8-.5-.1.1-.1.2-.2.3-1.2.1-2.4.2-3.6.5.9 1.7.9 3.5 1.6 5.3l.2-.8c0-.1.1-.3.1-.4.5-.3 1.3-.8 1.8-1 .9-.3 1.8-.5 2.6-.7 0 .1 0 .2-.1.4-.9.2-1.7.4-2.5.7.5 2.7 2.3 5.2 2 8v15.2h-2.4v4.7h9.1v-4.7h-1.7v-16l1.6-.4c-.1-4.9 5.1-8 9.5-7.3 1.7.5 2.8 1.8 4.2 2.7 6.4-1.6 11.3-6.2 15.4-11.2 1 1.8 1.9 3.6 3 5.3.5.7.9 1.5 1.5 2.1 2.2-.8-9.9 5.7-14 9.5-3 3.1-6.2 7.2-5.3 11.9.5 2.4 3.5 3.3 4.3 5.5-.2 3.8-1 7.7-3.2 10.8-2.9 3.3-7.8 1.6-11.6 1.7-1.7.4-3.1 1.1-4.6 2-1.9 2.4-1.4 5.8-1.4 8.8-.1 1.3.4 2.3 1.3 3.2 0-.1.2.2.2.2 1.8.3 1-2.6 2.4-3.2.3-.2 1.4-.8 1.5-.7 2.1 0 2.7 1.8 3.2 3.5.4.3 1.1.8 1.6 1 0-.1.5.6.7.9.1-.3.4-1 .5-1.4a7.4 7.4 0 013.5-4.3h.7c1 1 1.8 2.1 2.4 3.4.6.6 1.4 1.3 2 1.8l.1-.2c.6-1.6.7-3.3 1.9-4.5 2-.8 4.9-.2 6.3-2.2 2.1-3.2 2.1-7.5 4.6-10.6 1.6-1.9 4-2.7 6.1-3.7.5-.2 1.1-.5 1.7-.7-1.1-.4-2.3-.8-3.5-1.4-2.3-1-4.6-3.5-3.5-6.1 1.8-4 6.3-6 10.5-6.6.1 0 .1.1.1.1.5 1.3.9 2.3 1.5 3.2 1.8 3.3 4.6 6.3 8.2 7.7 1 .3 2.1.7 3.1 1 .2.8.4 1.8.6 2.5.3 1.9.3 4 0 5.9-.2.9-.4 2.2-1.7 2.3-3.8.7-8.5.2-11.2 3.5-1.6 2.8-1.5 6.8.2 9.6l.2-.1c.2.3.6 1 .8 1.4.5-1.3.9-2.4 1.5-3.7.9-.5 1.8-1.1 2.9-1.2.6.1 1.5.3 1.8.3.6 1 1.1 2 1.7 2.9.2.3.6 1.1.8 1.4 0-.1 1.1-1 1.4-1.4.6-1.2 1.3-2.5 2.5-3 1.4.9 2.7 1.8 4.1 2.7l.2.2.4.4c0-.1.1-.1.1-.2.7-1.1 1.2-2.5 2.6-2.6 1.8-.3 4-.9 3.7-3.1-.5-7.6-.8-16.1 4-22.7.8-1.4 1.8-2.5 2.8-3.8-3.8.8-8.1 1-11.3-1.4-3.6-2.3-5.5-6.2-6.3-10.3 1.6.8 2.8 1.8 4.3 2.6.4.2 1.1.6 1.6.8 5 2 11 3 16 .4 4.2-2.2 5.8-7.5 4.5-11.9-1.3-5.4-5.4-9.1-8.5-13.4-.1-1.8-.1-1.8 0 0 .6-1.7 1.5-3.5 3.3-3.9 2.4-.9 4.9.8 5.8 3 .2 1.8.1 3.5.1 5.2.9-.4 1.9-.6 2.6-1.4l.5-.5c2.6-2.1 3.9-6.7 2.2-10.6zm-95.9 25c0-.1 0-.3.1-.4 1.5-.7 2.9-1.3 4.6-1.8v.3c-1.7.6-3.2 1.2-4.7 1.9zm27.8-29.3c-2.8 1.8-5.9 3.3-8.8 5.2-3.3 2.2-6.5 4.8-9.9 6.7-1.2.6-2.4 1.1-3.7 1.4-.1-7.4 0-16.5 0-23.7 2.8.7 5.8 1.3 8.7 2.3.2.1.4.6.3.5.3.6.5 1.4.7 1.8.2.8.4 1.7.2 2.4-.7 1-1.8 1.6-2.7 2.1-.1 0-.3.1-.4.1l.1.1c-.1.1 0 .1.1.1 1 1 1.9 1.8 3.1 2.6 2.1-.1 4.3 0 6.2-1 1.8-.9 3.2-2.4 4.6-4 .6.9 1.3 1.9 1.8 2.9-.1.2-.3.5-.3.5zm64.8 15.9c.2-1.4.5-2.7.6-4.1 0 1.4-.4 2.9-.6 4.1zM86.4 67.4c0-1.8-1.4-3.2-3.2-3.2-1.8 0-3.2 1.4-3.2 3.2 0 1.8 1.4 3.2 3.2 3.2 1.8 0 3.2-1.4 3.2-3.2z'/%3E%3Ccircle fill='%2300318A' cx='83' cy='167.2' r='4.4'/%3E%3Ccircle fill='%23FFF' cx='83.2' cy='67.4' r='3.2'/%3E%3Cpath fill='%23BB8A1A' d='M111.7 39.3c11.6-1.1 23.3.1 34.3 3.9 14.8 5 27.9 14.4 37.6 26.7 9.5 12 15.5 26.8 17 42 .7 8.3.4 16.6-1.3 24.7a79.3 79.3 0 01-14.6 32.2c-7.4 9.8-17 17.9-28 23.6-11.4 5.8-24.1 9-36.9 8.8a80.5 80.5 0 01-38.5-9.6 83 83 0 01-32.6-32.3c-5.2-9.4-8.5-19.9-9.5-30.6-1-11.2-.1-22.7 3.5-33.4a81.42 81.42 0 0127.2-39c12-9.5 26.7-15.4 41.8-17m-2.5 6.4a75.28 75.28 0 00-46.3 25.4 74.61 74.61 0 00-16.7 34.6c-1.6 7-1.2 14.1-1.1 21.2A74.6 74.6 0 0058 162.7c12.3 18.1 32.9 30.3 54.7 32.1 3.6.2 7.2.1 10.8.1 5.2 0 10.4-.9 15.4-2.1 10.4-2.6 20.1-7.7 28.4-14.4 15.7-12.7 25.9-31.8 27.3-51.9.1-6.6.5-13.2-.9-19.8-2-11.5-6.8-22.6-13.9-31.8a75.88 75.88 0 00-29.2-23.4c-9.1-4.1-19.2-6.5-29.3-6.3-3.9 0-8-.1-12.1.5'/%3E%3C/g%3E%3C/switch%3E%3C/svg%3E");
}

[football1club_logo="POR"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st2%7Bfill:%23174094%7D.st4%7Bfill:%231b3e92%7D.st5%7Bfill:%2310ace4%7D.st6%7Bfill:%23e73436%7D%3C/style%3E%3Cpath d='M193.9 106.6l-3.9-7.8-2.7 2.9c-1.9-4.1-4.1-8-6.6-11.7-2.6-3.7-8.5-9.3-9.2-9.9l-3.3-3.1-1.3.8-.8-.6c2.5-4.6 5-9.3 7.5-14 3.3-6.2 6.6-12.4 9.8-18.3l2.5-4.6-4.2-3.1-1.6-1.2h-2c-1.8 0-2 0-11.1 5.3C156.3 16.5 138.5 2 118.4 2c-19.8 0-37.3 14.6-47 38.5-7.8-4.9-8-4.9-9.9-4.9h-1.9l-5.9 4.1 2.3 4.7c3 6.1 6.2 12.5 9.3 18.8 2.3 4.5 4.5 9.1 6.7 13.5l-.5.3-1.4-.7-3.1 3.3-2.6 2.6c-2.2 2.1-4.5 4.4-6.3 7.1-3.3 4.8-6 9.8-8.3 15l-3-2c-6.9 7.8-31.3 68.2 8.4 108.7 11.3 12.2 23.7 18.7 37.7 19.6l-.7 3c3.6 1.6 12.3 4 21.4 4.3h7c4.9 0 20.1-1.5 25.1-4.9l4.6-3.1c5.7-.8 10.5-2.3 14.4-4.5 27.2-15.5 41.4-37.4 42.3-65.1.6-21.1-6.8-40.8-13.1-53.7z' fill='%23fff'/%3E%3Cpath d='M74.3 49.5c17.4-55.1 69.5-56 89.4.4-6.8 3.1-13.7 2.9-20.5.1-9.2-3.8-15.4-11-20.8-19-1-1.5-2-2.9-3.1-4.7-1.5 2.2-2.3 3.9-3.6 5.2-5.4 5.6-10.4 11.8-16.6 16.3-7.5 5.5-16.2 6.4-24.8 1.7z' fill='%2307a759'/%3E%3Cpath class='st2' d='M161.6 220c-6.2 3.5-15.6 5.1-29.6 4 1.5-.6 2.4-1 3.2-1.3 77.9-20.7 52.7-113 53.2-113.4 10.3 20.9 31.9 77.3-26.8 110.7zM51.2 106.2c-2.8 5.9-14.8 49.5 7.7 86.5 9.6 15.6 23.7 25.1 41.3 29.6 1.6.4 3.2.8 5.5 1.4-19.3 3.4-34-3.7-46.3-17-36.3-37-14-93.8-8.2-100.5z'/%3E%3Cpath d='M74.3 49.5c8.6 4.7 17.3 3.8 24.8-1.7 6.2-4.5 18.7-19.4 20.2-21.5 1.2 1.7 14.8 19.9 23.9 23.7 6.8 2.8 13.7 3 20.5-.1 4.3-2.4 14-8.1 14.2-7.9-6.3 11.9-13.4 25.1-19.8 37h-1.3c-25.4-12.5-50.8-12-76.2.1-.3 0-.6-.1-.9-.2-6-12.1-12.6-25.3-18.5-37.4.3-.1 9.2 5.6 13.1 8z' fill='%23fdcc29'/%3E%3Cpath class='st4' d='M72.7 84.3V169.6c0 10.7 4.5 15.5 14.9 16.5 1.3.1 3.1 1.8 3.5 3.1 3.2 11.1 7.2 21.7 16.6 30.6-16.6-3-29.9-9.7-40.2-22-10-12-15-26.2-17.3-41.5-3.6-22.8-.4-44.3 12.8-63.7 2.3-3.3 5.5-6 8.3-9 .4.2.9.4 1.4.7zM167.3 84.5s6 5.6 8.3 8.9c8.3 12 12.1 25.7 12.7 40.2.8 18.3-1.9 35.9-10.6 52.3-10 19-26 29.8-48.1 33.9 9.6-9.1 13.6-20 16.9-31.4.3-1.1 2.3-2.3 3.5-2.4 11.3-.7 16-5.5 16-16.8v-79-5c.5-.2.9-.4 1.3-.7z'/%3E%3Cpath class='st5' d='M160.5 86.5v45.6h-39.9V86.5h39.9z'/%3E%3Cpath class='st6' d='M78.2 132V86.4H118V132H78.2zM120.6 182.6v-47.7h40.1v16.3c0 6.7.1 13.5 0 20.2-.1 5.8-3.5 9.3-9.3 9.4-5.8.1-11.6-.2-17.4.1-4.4.3-8.8 1.1-13.4 1.7z'/%3E%3Cpath class='st5' d='M78 134.9h40.1v47.5c-6-.5-11.7-1.2-17.5-1.5-4.5-.2-9.1 0-13.6-.1-5.1-.1-8.8-3.5-8.9-8.4-.2-12.3-.1-24.6-.1-37.5z'/%3E%3Cpath d='M94 185.7c10 1 20.5-3.4 25.4 10.3 4.5-12.9 14.2-9.7 23.4-10-3 11.5-6.4 22.5-15.8 30.3-1.4 1.2-3.8 1.4-5.8 1.8-12.7 2.2-16.9-7.3-21.2-16-2.4-4.9-3.8-10.3-6-16.4z' fill='%23193f93'/%3E%3Cpath d='M120.4 231.8c.6-3.8 2.7-5.3 7.3-4.7 4.4.7 8.2.5 14.4.8-3 2.1-16 3.9-21.7 3.9z' fill='%231e4d9d'/%3E%3Cpath d='M116.5 231.8c-9.1.1-18.6-2.4-22.1-3.9 4 .3 11.6-.1 15.5-.8 4.8-.7 6.6.5 6.6 4.7z' fill='%23104698'/%3E%3Cpath d='M158.2 78.9h-1.3c-25.4-12.5-50.8-12-76.2.1-.3 0-.6-.1-.9-.2-.9.5-1.9 1.1-2.8 1.6.1.3.2.5.3.8l8.4-.6h67.4c2.4.2 4.7.3 7.1.5.1-.3.1-.6.2-.9-.9-.3-1.5-.8-2.2-1.3z' fill='%233a3635'/%3E%3C/svg%3E");
}

[football1club_logo="NAP"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st1%7Bfill:%23149bd8%7D%3C/style%3E%3Ccircle cx='120' cy='120' r='118' fill='%2328668e'/%3E%3Ccircle class='st1' cx='120' cy='120' r='89.6'/%3E%3Ccircle class='st1' cx='120' cy='120' r='91.4'/%3E%3Cpath d='M120.3 22.3a97.54 97.54 0 00-98 97.5 97.48 97.48 0 0097.7 97.8c53.9 0 97.5-43.4 97.7-97.3.2-54.1-43.3-97.9-97.4-98zM52.8 181.9c-32.2-32.3-32.2-91.3 0-123.9.2-.2.5-.4 2.2-1.5 4.5 4.8 9.1 9.6 13.5 14.6.7.8.6 2.5.6 3.7v93.8c0 9-3.2 13.8-10.2 15.1-2 .3-4.8-.5-6.1-1.8zm9.3 8.5h36.2v-5.1c-.3-.2-.6-.4-.9-.5-14.9-1.6-18.7-5.7-18.7-20.7V83c32.1 37.6 63.3 74.2 94.5 110.8-28.8 23.4-78.7 24.5-111.1-3.4zm88.5-139.6v5.4c.8.2 1.6.5 2.3.6 11.5 1.1 16.6 5.4 16.9 16.9.6 20.7.2 41.5.2 63.3-1.8-2-3.1-3.3-4.3-4.7C144 107 122.3 81.6 100.8 56c-3.1-3.7-6.3-5.3-11.2-5.1-9.4.4-18.9.1-28.7.1 26.4-26.4 81.2-33.2 118.7-.3-9.9.1-19.3.1-29 .1zm29.3 138c-.1-2-.3-3.2-.3-4.5V77.7c0-3.7-.1-7.7 1-11.2 1-3.2 3.4-5.9 5.3-9 33.5 32.3 36.2 95.2-6 131.3z' fill='%23f9fbfc'/%3E%3C/svg%3E");
}

[football1club_logo="BEN"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23fff%7D.st3%7Bfill:%23a8b8c0%7D.st4%7Bfill:%23fab72e%7D%3C/style%3E%3Cpath class='st0' d='M201.5 101.2l30.1-8.9-19.3-10.1c-7.5-3.9-15-7.9-22.6-11.8-1.8-.9-3.6-1.9-5.3-2.8 8.7-4.7 55.6-31.7 54-38-1.2-4.7-10.8-5.8-10.8-5.8H13.9s-11.5-.3-11.5 4.1C2.4 37.2 55 63.3 55 63.3l9.2 4.9c-7.9 4-15.4 8.5-23.2 13.2l-3.7 2.2-19.2 11.2 30.9 6.9-2.4 20.8 3.6-2c-.9 13.3 1.7 26.7 7.8 38.9a73.5 73.5 0 0043.3 37.4c3.4 1.1 6.3 3.3 9.3 5.9l13.5 13.5s20.4-18 20.8-18.1c17.3-5.1 33.7-16.3 43.5-31.4a75.56 75.56 0 0012-45.5l3.7 2.3-2.6-22.3z'/%3E%3Cpath d='M232.8 30.3c-7.5 4.1-15 8.3-22.6 12.4-13.8 7.4-27.6 14.8-41.3 22.2-1.2.6-2.3 1.3-2.7 1.5 15.1 7.9 30.7 16.1 45.9 24.1L194.3 93c.5 4.2.9 8.2 1.5 12.7-2-1.2-3.6-2.2-5.5-3.4 1.2 5.4 2.6 10.5 3.4 15.7a68.95 68.95 0 01-48.9 75.4c-2.5.7-4.8 2.3-6.9 3.9-4.3 3.3-8.3 7-12.4 10.5h-.7c-6.8-5.7-12.3-12.5-21.4-15.5-36-11.9-55.2-50.6-43.4-86.6.3-1 .7-2 1.2-3.6-2.2 1.3-3.9 2.2-6 3.4.5-4.4.9-8.2 1.4-12.6-5.8-.5-11.4-1-18.2-1.5 15.2-9.1 29.4-17.8 45.8-23.8-1.5-.9-2.5-1.5-3.6-2.1-20.7-10.9-41.4-22-62-33-1.2-.6-2.3-1.4-3.4-2.1 72.5-.1 145.1-.1 217.6-.1zM171.9 88l-18.6 5c-17.1 17.1-61.2 60.8-61.2 60.8 2.9 5.2 7.2 11.5 10.4 16.6l69.3-69.1c.2-3.8.1-9.1.1-13.3zm-46.4 114.4c3.1-2.7 6.2-5.2 9.1-7.8 29.2-26.7 46.1-58.9 44.4-99.5-.2-4.1-2-5.8-5.9-6.8 5 45.5-15.4 79.4-47.5 108.4-32.6-29-52.8-63.2-47.7-108.4-5 1.5-5.6 2.1-5.8 5.3-1.6 27 5.2 51.7 20.5 74.1 9.1 13.2 20.1 24.5 32.9 34.7zM70.3 94.2c-11.5 19.3-13.1 39.5-3.8 59.9 8.4 18.5 22.8 30.2 42.3 35.5-12.2-13-22.5-27.1-29.4-43.7-6.8-16.5-9.4-33.8-9.1-51.7zm102.5 8.5c-1.4 1.2-2.3 1.9-3 2.6-5.1 5-10.1 10.2-15.2 15.1-1.8 1.7-2.2 3.1-1.3 5.7a29.4 29.4 0 01-20.5 38.5c-2.3.6-4.8.9-7.2 1.3v29.5c27.3-25.3 46.5-53.7 47.2-92.7zm7.5-9.2c1.8 37.9-12.4 69.3-38.4 96.2 22-6.3 37.3-19.9 44.8-41.4 6.5-19.1 4.2-37.5-6.4-54.8zm-29.2 31.7c-12.1 12.3-24.3 24.5-36.4 36.7 9.2 5 22.8 2.3 31.2-6.6 7.9-8.3 10.2-22 5.2-30.1zm-52.9 19.2c11.9-12 23.9-23.6 35.6-35.5-10-2.9-19.5-1-27.3 5.9-8.8 7.9-11 17.9-8.3 29.6zm71.3-58.1c-4.2-2.2-7.9-3.6-12.1-2.7-4 .9-7.9 1.7-11.9 2.5-8.8 1.7-17.7 3.7-26.7 2.3-8.4-1.3-16.7-3-25-4.7-4.5-.9-8.3.3-12.7 2.8 29.8 9.2 58.8 9.5 88.4-.2zM125.4 106c3.5.3 6.6.5 9.7 1.9 0 0 10.9-10.1 16-15.3-9.2 1.4-16.3 2.1-25.7 2.3V106z'/%3E%3Cpath d='M214.6 35.1C202.9 41.4 164 60 155.3 63.5c-17.1 7-29.4 8.5-46.5 4.9C95.5 65.7 53.4 45.9 37 37.1c-.9-.5-1.9-1.1-3.4-1.9 60.5-.1 120.2-.1 181-.1z' fill='%23fab82e'/%3E%3Cpath d='M171.9 88c0 4.2.1 8-.1 11.7-.1 1.1-.1 1.5-.1 1.5-22.1 22.1-45.8 45.7-67.9 67.7l-1.4 1.4L92 153.7c17.1-17.1 37-36.9 54.1-54 2.7-2.6 7.1-6.8 7.1-6.8l18.7-4.9z' fill='%231996d4'/%3E%3Cpath class='st0' d='M125.5 202.4c-12.7-10.2-23.8-21.5-32.8-34.7-15.3-22.3-22.2-47-20.5-74.1.2-3.2.8-3.8 5.8-5.3-5.1 45.2 15 79.3 47.5 108.4 32.1-29 52.5-63 47.5-108.4 4 1 5.8 2.7 5.9 6.8 1.7 40.6-15.2 72.8-44.4 99.5-2.9 2.6-5.9 5.1-9 7.8z'/%3E%3Cpath class='st3' d='M70.3 94.2c-.3 17.9 2.3 35.2 9.1 51.8 6.9 16.5 17.1 30.7 29.4 43.7-19.6-5.3-34-17-42.3-35.5-9.2-20.6-7.6-40.7 3.8-60z'/%3E%3Cpath class='st0' d='M172.8 102.7c-.7 39-19.9 67.4-47.3 92.7v-29.5c2.4-.4 4.8-.7 7.2-1.3a29.4 29.4 0 0020.5-38.5c-.9-2.5-.5-3.9 1.3-5.7 5.2-4.9 10.2-10.1 15.2-15.1.8-.7 1.7-1.4 3.1-2.6z'/%3E%3Cpath class='st3' d='M180.3 93.5c10.6 17.3 12.9 35.7 6.4 54.7-7.4 21.5-22.8 35.1-44.8 41.4 26-26.7 40.2-58.2 38.4-96.1z'/%3E%3Cpath class='st4' d='M151.1 125.2c5 8.1 2.7 21.9-5.1 30.1-8.4 8.9-22.1 11.6-31.2 6.6 12-12.2 24.2-24.5 36.3-36.7zM98.2 144.4c-2.7-11.7-.5-21.7 8.4-29.5 7.8-6.9 16.9-8.8 26.9-5.9-11.7 11.7-23.3 23.4-35.3 35.4z'/%3E%3Cpath class='st0' d='M169.5 86.3c-29.6 9.7-58.6 9.4-88.4.2 4.4-2.5 8.2-3.7 12.7-2.8 8.3 1.7 16.6 3.4 25 4.7 9 1.4 17.9-.6 26.7-2.3 4-.8 8-1.6 11.9-2.5 4.2-.9 7.9.5 12.1 2.7z'/%3E%3Cpath class='st0' d='M125.4 106V94.9c8.7-.3 16.5-1 25.7-2.3l-16 15.3c-2.8-1.2-6-1.8-9.7-1.9z'/%3E%3Cpath d='M160.1 82.2c-1.4-.2-2.9-.2-4.1.1-6.7 1.5-16.9 4.4-30.9 5.6l-.3-11.9c18.4-.7 27.3-5.9 27.9-6.1 5.8-1.9 10.4.6 15.6 2.9 9.5 4.5 29.4 14.9 30.4 15.7-3.3.3-5.9.5-8.9.8.2 2.8.4 5.3.7 8.3-5-3.8-27.5-14.4-30.4-15.4z' fill='%23e83f36'/%3E%3Cpath d='M124.8 76l.2 11.8c-7.9.2-24.2-4.3-30.9-5.6-1.6-.3-2.1-1.5-33.8 15.1 0-1.7-.1-2.7 0-3.7.6-4.5.5-4.7-4.1-4.8-1.2 0-2.4-.1-3.8-.9 2.5-1.5 26.9-13 36.7-17.3.9-.4 5.1-1.3 8.1-.4 7.3 1.8 17.5 6 27.6 5.8z' fill='%230b9250'/%3E%3Cpath d='M78.9 88c13.7 4.7 36.6 7.3 46.5 6.9V106c-23.3.1-34.2 21.7-28.2 39.6l-6.9 6.6c-8.6-16.8-14.2-39.3-11.4-64.2z' fill='%23e84035'/%3E%3Cpath d='M125 165.9c0 9.9.1 29.3 0 29.5-.3-.1-20.4-20.2-21-23 0 0 9.1-9.5 9.4-9.7.1 0 5.7 2.9 11.6 3.2z' fill='%23e84037'/%3E%3C/svg%3E");
}

[football1club_logo="ZEN"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st2%7Bfill:%232f5ca6%7D%3C/style%3E%3Cpath d='M231.6 97.3s7-3.2 5.4-10.7c-1.8-8.2-9.8-8.3-9.8-8.3H200c-15-33.4-49.8-55.7-87.4-55.7-10.9 0-21.8 1.9-32.4 5.6C28.6 46.5 7.8 99.4 17.4 139.1c-3.3 2.9-6.5 6.4-9.4 10.6-9.4 13.7-7 27.8 6.4 37.7 2.4 1.7 5.5 3.9 9.3 5.4 2.1.8 4.4 1.2 6.7 1.2 2.5 0 4.8-.5 6.8-1.5 2.3-1.1 4.6-2.3 6.9-3.4 17.4 17.7 42.7 28.2 68.4 28.2 16.7 0 33.2-4.4 47.8-12.7 38.8-22.1 53.3-64.9 48.1-95.9 4.9-2.4 9.9-4.8 15-7.4l8.2-4zM111.1 59h1.3c18 0 32.7 6.4 44.6 19.4H67.9C79.5 65.8 94 59.3 111.1 59zm44.6 104.3a60.6 60.6 0 01-43.1 17.9h-.4c-12-.1-22.6-3.2-32.4-9.4 31.2-15.3 62.5-30.6 93.2-45.6-1.2 14-7.3 27-17.3 37.1z' fill='%23fff'/%3E%3Cpath d='M35.9 164.9c-1.4-2.9-2.6-5.4-4.1-8.4 29.6-14.4 92.6-44.4 92.6-44.4h-8.2c-15.6.4-31.3.9-46.9 1.2-2.4 0-3.4.8-4 3-1.2 4.7-2.7 9.4-3.7 14.1-.5 2.5-1.8 3.8-3.9 5.2-9.1 5.7-18.2 11.4-27 17.5-2.8 1.9-4.9 4.9-6.9 7.7-2.4 3.5-1.9 6.8 1 9.8 3.7 3.8 5.2 4.2 9.6 2 48.9-24 97.8-47.9 146.7-71.9 1.7-.8 3.4-1.7 4.9-3.3H53.5v-9.1h173.8c-8.5 4.2-16.3 8-24.1 11.8C146.5 128 89.8 155.8 33 183.5c-1.5.7-3.9.5-5.6-.1-2.5-.9-4.8-2.5-6.9-4.1-9-6.6-10.5-14.8-4.2-24 2.7-3.8 5.9-7.6 9.7-10.3 7.7-5.7 16-10.6 24-16 1.4-1 2.7-2.6 3.3-4.2 2-5.9 3.6-12 5.7-17.9.4-1.2 2.2-2.6 3.4-2.6 33.6-.9 67.1-1.7 100.7-2.5.4 0 .7.1 2.2.3-43.6 21.2-86.4 41.9-129.4 62.8z' fill='%23305ca7'/%3E%3Cpath class='st2' d='M27.6 138.5c-9.3-34 7.8-83.8 55.9-100.8 46.7-16.5 92.5 9.5 108.1 46.5-5.8 0-11.3.1-16.9-.1-1 0-2-1.7-2.8-2.8C157.4 59.9 137 48.6 111 49c-23.8.4-42.8 11.1-56.7 30.4-9.9 13.7-13.6 29.3-12.5 46 .2 2.9-.4 4.7-3.1 6.1-3.9 2.1-7.4 4.7-11.1 7zM49.3 179.8c4.7-2.3 9-4.6 13.5-6.4 1.1-.4 3.1.5 4.2 1.3 13.2 10.8 28.3 16.4 45.3 16.5 39.4.2 71.3-31.5 71.1-70.9 0-4.9 1.2-7.5 5.7-9.1 3.1-1.1 6-2.8 9-4.3 6.1 25.9-4.6 67.5-42.5 89.1-37.5 21.3-82 10.8-106.3-16.2z'/%3E%3C/svg%3E");
}

[football3club_logo="LIV"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 240 240' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23fff%7D.st1%7Bfill:%23fff047%7D.st2%7Bfill:%23d10a10%7D.st3%7Bfill:%23009982%7D%3C/style%3E%3Cpath class='st0' d='M203.3 211l-1.8-1.2-.4-.3-.8-.6c2.6-2.4 4-4.8 5.4-7.2l.7-1.3v-1.5l-.1-.9v-7.2l-3.3 1.1c.7-1.4 1-3 .8-4.7a7 7 0 00-1.7-3.7l.2-.2a6 6 0 001.7-4.6l.9-1 .1-.2c2.7-3.5 3.9-8 3.6-13.1v-1.2-2.2c.1-.9.2-2.2.6-3.1l.5-1.1v-1.2c0-1.6-.7-3.1-1.9-4.2l-2.1-2.1-2.4.5-1.8-4.6-1.2-2.6-.8-1.8c-.9-2-1.7-4.1-1.8-6.2v-7.8l-6.9 1.6c-.8.2-1.5.5-2.1.9l.2-1.6v-.2a338.8 338.8 0 001.6-23.5l.1-9.2-.1-2.9-.1-3.8v-.4l-.2-3-.1-1.5H195c2.4 0 4.2 0 5.9-2.1l1.3-1.6V59.7h-4V47.9l-56.1-15.7L118.9 0 95.2 32.6 41.2 48v13.5l-4.2-.1v7c-.1 11.7 0 11.8 1.7 13.5l1.6 1.7h8.4l-.4 9.4v8.1l.1 4.5.3 5.2c.2 4.9.5 9.2.9 13.3l.7 5.8c-.6-.5-1.4-.9-2.4-1.1l-6.9-1.6v7.8c0 2.1-.9 4.2-1.8 6.2l-.8 1.8-1.1 2.5-1.9 4.6-2.4-.5-2.1 2.1a5.7 5.7 0 00-1.9 4.2v1.2l.5 1.1c.4.9.5 2.1.6 3.1V164.7c-.3 5 .9 9.5 3.6 13.1l.1.2 1 1.1c-.2 1.7.4 3.4 1.7 4.6l.2.2a7.4 7.4 0 00-1.8 3.9c-.2 1.9.3 3.8 1.3 5.3a5.4 5.4 0 00-3 2.1l-2.6 2.6 2.2 3.8c1.3 2.2 3 4.7 5.4 7l-.7.6-2.8 2-.2.1-.2.2a5.8 5.8 0 00-1.6 7.3l.3 1.5 2.8 1.2c1.5.6 3.2 1.2 5 1.6h.2l3.1.4v.5l4.7-.3 1.2-.1 3.2-.3v-.1c1.9-.3 3.8-.6 5.7-1.1 2-.5 4.1-1.2 6.3-2l.8 1.2 2.8 3.9c2 2.9 4 5.7 6.4 8.3l.9 1 .2.2.2.4.4.4c1.4 1.4 3.4 3.1 6.1 3.8h.2c1.2.3 2.6.6 4.2.6h.7c1.7 0 3.2-.3 4.2-.5l.2-.1 3.3-.9 7.6-1.8.3-.1c2.4-.4 3.7-.7 6-.9 2.7-.3 4.2-.4 7-.4h1.6c3.5 0 5.9.2 10.3.8 3.7.5 5.6.9 9.5 1.9l2.4.6 2 .5c1.4.4 2.9.8 4.7 1.1h.4l1.7.1c2.8 0 5.1-.5 7.2-1.5l1.9-1.1.2-.1c.9-.7 1.7-1.2 2.5-2l.3-.2.2-.2a38 38 0 003.3-3.7l.1-.1 1.4-1.8 1.9-2.4.2-.2.2-.2 1.3-1.8 2.3-3.2.1-.1.1-.1.6-1 .1-.2a46.1 46.1 0 0013.7 3.4h.4l2.9.2h2.7c3.2 0 6.1-.4 9.6-2.2l1.3-.7 7.2-4.5-7.7-5.5zM59.1 190.7l.2-.9v-.2c.3-2.3-.4-4.5-1.9-6.2.8-.8 1.3-1.8 1.5-2.8a5 5 0 00.1-2.1v-1.1l.5-.7c.6-.9 1.2-1.9 1.6-3 1.9 4.9 3.7 9.2 5.6 13.2a59.9 59.9 0 01-7.6 3.8zm120.4-1.1v.2l.5 1.6-.4-.2-1-.4-1.7-.7-3.8-1.9-1.4-.8 2-4.3 3.8-9.2c.4 1 .9 1.9 1.5 2.7l.5.7v.1L178 180l2.6 2.5.7.8a8.3 8.3 0 00-1.8 6.3z'/%3E%3Cpath class='st0' d='M56.8 81.8L55.7 99s1.1 31.4 4.4 44.2a531.7 531.7 0 0015.3 44.2c1.5 3.5 18.2 26.9 18.2 26.9s12.9-3.1 24.9-3.1c13.7 0 25.9 3.4 25.9 3.4l13.3-17.8s14.9-23.3 19.7-47.9c4.8-24.6 4.8-64.2 4.8-64.2s-21.3 7.8-28.5 7.8c-7.2 0-34.2-12.3-34.2-12.3s-16.2 11.6-34.4 11.6c-18-.1-28.3-10-28.3-10z'/%3E%3Cpath class='st1' d='M192.4 155l.6 4.2 2.9 6.4 1.9 4c.2.5.1 4.4.1 4.4l-1.5 2.7s-3.1.2-4.5.1-3.8.1-3.8.1l-2.2-2.8-.2-5 1.2-5.4 3.2-5.2 2.3-3.5zM45.5 177s-2.3 0-3-.2c-.8-.2-1.3-5.1-1.3-5.1l2.2-7.7 3.7-8.1 2.4 4.4 3 4.2 1.1 4.7-1 4.4-1.5 3.3-2.7-.1-2.9.2z'/%3E%3Cpath class='st2' d='M47.6 135.1c3.3 3.6 3.2 7.1 3.8 11.9l.2 2a4 4 0 013.2-1.3l-.1.3a8 8 0 00-.5 6.6c.3 1.2.8 2.3 1.2 3.5l.9 2.3c.6 1.8.8 3.7.9 5.6a12.6 12.6 0 01-3.4 9.2c-.6.5-1.2 1.1-2 1.5-.3.2-.7.4-1.1.4.6-1.4 1.5-2.9 1.6-4.5.1-1.1.2-2 .1-3-.1-2.2-1-4.2-2.2-6.1-1.2-1.5-2.2-3-2.9-4.6-.5 2-1.2 4.1-2.4 5.8l-1.1 1.9c-.9 1.6-1.7 3.2-2.1 5-.3 1.9-.1 3.9.9 5.4l-.1.1h-.1v.1a7.3 7.3 0 01-4.4-2.9 13.8 13.8 0 01-2.5-9.5v-4a14 14 0 00-1.1-5l.1-.1A6 6 0 0137 157c.8.6 1.5 1.3 2.1 2.1-.1-3.9 1.4-7.7 3-11.3l2-4.3a21 21 0 002.3-8.9v-.2c.5-.1.8.3 1.2.7zM191.4 135.1c-3.3 3.6-3.2 7.1-3.8 11.9l-.2 2a4 4 0 00-3.2-1.3l.1.3a8 8 0 01.5 6.6c-.3 1.2-.8 2.3-1.2 3.5l-.9 2.3c-.6 1.8-.8 3.7-.9 5.6a12.6 12.6 0 003.4 9.2c.6.5 1.2 1.1 2 1.5.3.2.7.4 1.1.4-.6-1.4-1.5-2.9-1.6-4.5-.1-1.1-.2-2-.1-3 .1-2.2 1-4.2 2.2-6.1 1.2-1.5 2.2-3 2.9-4.6.5 2 1.2 4.1 2.4 5.8l1.1 1.9c.9 1.6 1.7 3.2 2.1 5 .3 1.9.1 3.9-.9 5.4l.1.1h.1v.1a7.3 7.3 0 004.4-2.9c2.1-2.7 2.7-6.1 2.5-9.5v-4a14 14 0 011.1-5l-.1-.1a6 6 0 00-2.5 1.3c-.8.6-1.5 1.3-2.1 2.1.1-3.9-1.4-7.7-3-11.3l-2-4.3a21 21 0 01-2.3-8.9v-.2c-.6-.1-.8.3-1.2.7z'/%3E%3Cpath class='st3' d='M42.6 61.5v16.4c.2 0 154.5.2 154.5 0V65.7v-4.3'/%3E%3Cpath class='st2' d='M57.3 79l.9.8c1.6 1.5 3.4 2.7 5.1 3.8l1.2.6a43.1 43.1 0 0023.4 5.3c8.6-.4 16.2-3.2 23.2-7.7 1.3-.8 2.7-1.9 3.9-2.8l.3-.1h8.5l.5.1 2 1.6 3.7 2.5c3.4 2 5.4 2.9 9.1 4.3 1.3.4 1.9.7 3.2 1a37.8 37.8 0 0023.3-.2c6-1.7 9.4-3.1 14.3-7.1l1.3-1.1.9-1 .1.1.1-.1c.8.1 1.7-.1 2.4.1l.5 9.1.1 6.8-.1 9c-.1 4.1-.2 7.5-.5 12.3-.3 4.1-.5 7.1-.9 10.6l-.6 4.6c-.9 6.5-2.3 12.9-4 19.2-1.6 6.1-3.5 11.9-5.5 17.8-1.5 4.1-3.2 8.1-4.9 12.1l-1.9 4.1-1.9 3.9-2.5 4.6-3.2 5.3c-1.5 2.3-2.9 4.6-4.5 6.7a145 145 0 01-6 7.7c-.5.6-1 1.3-1.7 1.8v.1l-.2.1-4.6-1c1.8-2.1 3.6-4.1 5.2-6.2a158 158 0 0011.7-17.6l1.6-3c1.3-2.5 2.5-4.8 3.6-7.3l1.4-3.2c1.7-3.7 3.1-7.6 4.5-11.4l1.8-5.5 1.3-4.1c1.5-4.9 2.7-9.7 3.7-14.7l1-5.4 1.6-10.3c.6-5.4.8-8.5 1.1-13.9l.2-4.8c.2-7.2.6-11.2 0-18.4l-.2-2.2c0-.1-.2 0-.2 0-6.3 4-12.3 6.6-20.9 7.7-2.2.3-3.4.3-5.6.3-3.1 0-5-.2-8.1-.7l-3-.6a44.1 44.1 0 01-13.1-4.9l-1.7-.9c-3.5-2-5.9-3.7-8.6-5.9l-.8.6a52.7 52.7 0 01-11.7 7.1 45 45 0 01-21.8 5 41.7 41.7 0 01-21.9-5.5l-4.8-2.7-.2 2.6-.2 6.1-.1 6.7.5 13.9.3 4.2.5 6a169.7 169.7 0 006.6 31.8l2.2 7.1L70 169c1.3 3.5 2.7 6.8 4.3 10.2h-.1c1.6 3.5 3.4 6.8 5.2 10.2 3.4 6.1 7.2 12 11.4 17.6l5.5 6.5-4.7 1-1.4-1.5a140.7 140.7 0 01-12.1-17l-.1-.1-2.4-4.1-1-1.9a198.7 198.7 0 01-15.9-43.2l-1.3-5.7c-1.2-5.9-2.1-11.8-2.7-17.7-.4-4.3-.6-8.7-.8-13l-.3-5.1-.1-4.4.1-8 .4-9.3.3-4.6.1-.1 2.9.2z'/%3E%3Cpath class='st2' d='M128.4 89.7c1.8.9 2.7 1.5 4.6 2.2l1.2.5a45 45 0 0018.1 4c3.1.1 4.9 0 8.1-.4 4.1-.5 6.5-1.1 10.4-2.5a39.4 39.4 0 008.1-3.5l.1 4.7.1 5.3-.1 5.2-.2 5.3c-.2 3-.2 4.7-.5 7.7-.7 8.5-1.5 13.3-3.1 21.6l-1.1 5.2-.7 3.1-2 7.4a157.7 157.7 0 01-18.5 41.6c-1.1 1.5-2.1 3.2-3.3 4.7l-2.5 3.4-3.4 4.2-3.8 4.2-2.1-.4.3-.3c5.1-5.3 9.5-11.2 13.4-17.3l.7-1.1a159.3 159.3 0 006.2-10.9c4.5-8.8 7.5-16.4 10.8-27.5 1.8-6 2.7-9.5 3.9-15.7l1.2-6.6 1-6.4.6-5.2-.1-.1H63.4a197.1 197.1 0 009.1 41.5l1.4 4 3.8 9.4c2.6 5.8 5.6 11.5 9 16.9l1.7 2.7c1.9 3 4.1 5.9 6.2 8.7 1.5 1.9 3 3.9 4.7 5.7.6.8 1.2 1.1 1.8 1.9l-2.2.4c0-.1-3.5-3.9-5-5.9-2.4-3.1-4.7-6.2-6.9-9.5-1-1.7-2.2-3.2-3.1-4.9l-1.9-3.3c-4.6-8.4-8.5-17.1-11.5-26.1l-1.7-5.1c-2.4-8.1-4.5-16.2-5.9-24.6l-.7-4.4-.6-4.2c-.4-3.7-.6-5.9-.8-9.6-.3-4.7-.5-7.4-.6-12.1v-5.4l.1-7.4.1-1.5 3.4 1.8c5.2 2.5 9.2 3.6 14.3 4.3l3.9.5a52.8 52.8 0 0037.7-12.2c2.7 2.4 5.1 4 8.7 6z'/%3E%3Cpath class='st3' d='M41.3 179.7a5 5 0 012.4 1.9l.7 1.2.1 1.4v2.4c-1 0-1.8-.1-2.7.1a2 2 0 00-1.3 1.5 2 2 0 00.8 1.9c.5.3 1.1.3 1.7.4h1.5v6.9c1.7 0 3.4-.1 5.1-.4.2 0 .1-3.2.2-3.4v-3h.8c.7 0 1.3 0 1.9-.2.7-.2 1.1-.8 1.3-1.5a2 2 0 00-.7-1.8c-.9-.6-2.3-.4-3.3-.4v-2.6l.2-1.2.7-1.3c.7-1 1.7-1.8 2.8-2.1l.1-.2v-.1a21 21 0 00-13.1-.1v.3c.3.1.6.1.8.3zM185.8 187c-.6.4-.8 1.1-.7 1.8.1.7.6 1.3 1.3 1.5.6.2 1.3.2 1.9.2h.8v3c.1.2 0 4 .2 4 1.7.3 3.4.4 5.1.4v-4.1-3.4h1.5c.6-.1 1.2 0 1.7-.4a2 2 0 00.8-1.9 2 2 0 00-1.3-1.5c-.9-.2-1.7-.1-2.7-.1v-2.8l.1-1 .7-1.2c.6-.8 1.5-1.6 2.4-1.9l.8-.3v-.3c-4-1.4-9.1-1.4-13.1.1 0 .1-.1.1 0 .1l.1.2c1.1.3 2.1 1.1 2.8 2.1l.7 1.3.2 1.3v2.5c-1 0-2.3-.2-3.3.4z'/%3E%3Cpath class='st3' d='M196.9 213.1a44.8 44.8 0 01-4-3.6l-.9-1-.2-.3.2-.2a21.9 21.9 0 008.9-9.2l-.1-.1c-1.4.5-2.5.9-4.1 1.2l-2.7.3c-2 .1-3.4-.1-5.1-.3l-1.8-.3c-1.7-.3-2.7-.6-4.4-1.1-2.4-.7-3.8-1.3-6.1-2.3l-1.9-.8c-1.6-.7-2.5-1.2-4.1-2.1l-3.7-2.1-1-.6-2.9 5.1-3.5 5.6-1.1 1.6v.1c-1.8 2.6-3.9 5.8-4.8 6.9a190 190 0 01-4.8 6.2l-8.1-2c-6.6-1.4-10.4-2.3-17.2-2.7a86.1 86.1 0 00-22.1 1.6l-4.2.8-7.4 1.7a301 301 0 01-12.4-17.1 135 135 0 01-4.8-8.2 87.4 87.4 0 01-20.4 8.8 29.3 29.3 0 01-12.7-.1l-1.6-.6-.1.2a23.6 23.6 0 009.2 9.4c-1.8 2-3.4 3.6-5.9 5.5-1.2.9-2.1 1.6-3.3 2.3-.3.2.2.2.3.4l4 1.3c2.5.5 5.1.6 7.6.4v-.1h.1a40.7 40.7 0 0014-3.3L67 213l.7-.4c.4.9.8 1.6 1.3 2.1l1 1.7c1.2 1.7 2.3 3.5 3.6 5.2 1.9 2.8 3.9 5.5 6.2 8l1.4 1.6a8.7 8.7 0 003.8 2.5c1 .2 2 .4 3 .4 1.3.1 2.5-.1 3.7-.3 3.7-.9 6.8-1.9 11.3-2.7l6.7-1.1a67.2 67.2 0 0120.2.3c4 .5 6.2 1.1 10.1 2l2.4.6c2.4.6 4 1.2 6.1 1.5 2.1.1 4.3 0 6.1-.9l1.3-.7 2.3-1.8 3.1-3.4c1.2-1.4 2.3-3 3.5-4.3l3.5-4.8c.6-1.1 1.4-2.1 1.9-3.3v-.2c.5-.6 1-1.3 1.4-2.1l1.5.7c3.4 1.6 5.5 2.3 9.2 3.2 2.2.5 3.5.8 5.7 1l2.9.2c3.8.1 6.3.3 9.7-1.5l.8-.5-2.6-1.8c-1.1-.4-1.4-.6-1.9-1.1z'/%3E%3Cpath class='st3' d='M129.6 222.7c.4.1.7.4.8.8.1.6.1 1.3-.4 1.7-.3.3-.7.4-1.2.3l-.6-.3c-.3-.2-.3-.5-.4-.8 0-.5.1-1.1.5-1.4.4-.3.8-.4 1.3-.3zM138.7 224.8l.2.4c.2.6 0 1.3-.3 1.8l-.3.3c-.4.3-1 .3-1.4.1a2 2 0 01-.6-.4v-.1c0-.1-.1 0-.1 0-.1-.3-.3-.7-.2-1.1 0-.5.2-1 .6-1.3.4-.3 1.1-.5 1.6-.2l.5.5z'/%3E%3Cpath class='st2' d='M156.9 130.7c-.1-.5-.1-1-.3-1.4l-1.4-3.9c-.2-.9-.7-1.7-1.3-2.5-.2-.1-.3-.3-.5-.3l-.2.3c.1.9-.2 1.7-.2 2.5l-.8 3.1a34 34 0 01-3.9 8.7c-.2-2.7-.7-5.4-1.4-6.5l-.5-.6c-.9-1.2-2.2-2.4-3.1-2.9-.5-.3-1-.8-1.7-.8l-.2.3c.8 1.2 1 2.9.6 4.2-1 3.5-3 6.5-5.3 9.3-3 3.8-7 6.7-10.6 10l-1.4 1.6-.7.8h-.1c-1 1.3-1.7 2.8-2.2 4.2-.7 2-1.1 4.1-1.6 6.1l-.5 1.4c-.2.3-.4.6-.7.7-.1 0-.2.1-.4 0h-.1c-.4-.2-.7-.7-.8-1.2-.9-4 1-7.6 3.5-10.5l.5-.6.1-.1c1.3-1.6 3.1-3.4 4.2-5.2.3-.4.5-.9.6-1.4 1.2-2.2 2.5-5.1 3.2-5.4.7-.4 1.5-.9 1.7-1.7 0-.3.2-.7-.1-.9-.2-.1-.2.2-.3.3a3 3 0 01-2.2.8c-2-.2-3.7-.8-5.6-1.4l-3.9-1.1c-1.4-.2-3.3-.5-4.3.8-.2.3-.1.7 0 1l-2.5.1-.6-1.7c-.5.1-.9.3-1.4.2.4.5.7 1.1.8 1.7-1.2.4-2.4.8-3.1 1.8-.1.4-.4.7-.4 1.1 1.1-.5 2.3-.9 3.5-.9h.1c0 .6-.2 1.3-.4 1.9-.5.2-1.1.1-1.6.1v.3c.1.6.8.6 1.1.8a7 7 0 01-1.2 1.8c-.5-.4-1.1-.8-1.8-.8-1.3-.1-3.9 1.1-4.2 1.1-.1.3 1.7 4.3 1.9 4.7.4.6 1 .9 1.7.8 0-.1 7.9-4.1 7.8-5.2-.4.4-3.7-.5-4.4-.3.6-.7 1-1.4 1.5-2.2 1-.1 2.1-.3 3.1-.6 1.3-.3 2.9-.2 3.7.9l.4.7c.6 1.6-.4 3.1-1.5 4.2-1 1-2.7 2.5-4 3.5h-.1c-2.9 2.4-5.9 4.6-8 7.8-.5.7-1 1.5-1.4 2.4a14.4 14.4 0 00-1.4 8.5 11 11 0 001.3 4.1l1.3 2.1c2.1 2.7 5.3 4.7 8.3 5.9l1.2.5c-.2 2-.6 4.7-1 6l-1 2.6c1.5 0 2.7-1 3.7-1.8-.4 1.6-1 2.9-1.7 4.7a48.9 48.9 0 01-3.6 6.9l-1.3 2.2c-.3.5-.7 1.1-1.3 1.4-1.7.5-2.9-.9-4.6-.8-.8.1-1 .3-1.3.6-.2.2-.1.5 0 .8-.9-.1-2-.1-2.7.5-.3.3-.5.8-.3 1.2.1.3.3.5.6.6 1.2.6 1.6.4 1.7.8.2.6.8.8 1.4.7 0-.1 13.1-.7 12.9-.5.2.1.4-.1.6-.2l.1-.1c.5-.4.7-1 .7-1.5 0-.6-.6-1-1-1.1l-.2-.1c-1.1-.3-2.3-.2-3.5-.2-.3 0-.8 0-.9-.4-.1-.2 0-.5.1-.6l2.3-3.3 3.8-5.3c1-1.4 1.6-3.1 1.6-4.8.7.7 1.5 1.2 2.3 1.6h.7c-.8-1.2-1.3-2.5-1.6-3.9l-.1-4.2 2.9.5.1.1a11.7 11.7 0 01.4 7.2c0 .1-.2.3-.1.4.6-.2 1.1-.6 1.6-1l.7-.8.1.1c.5 3.5 1.3 6.9 2.5 10.2h.1l.9 2.2c.2.6.8 1 .6 1.7-.1.2-.3.4-.5.3l-.8-.1-2-.7c-1-.2-2.4-.7-3.2.2-.1.2-.1.6 0 .8h-1c-.7 0-1.3.4-1.6 1-.1.3-.1.8.1 1 .1.2.3.3.6.3.1 0 1.3.3 1.6.7.2.4.5.6 1 .6.2 0 .2.1.2 0a88.7 88.7 0 0114.2-.8c.6-.4 1.1-1 .9-1.7 0-.2-.1-.3-.4-.5-.8-.7-2.1-.6-3.1-.6h-.2c-.8 0-1.7 0-2.4-.4-.9-.7-1-1.9-1.5-2.8l-.4-1.3h-.1c-.8-3.1-1.4-6.3-1.6-9.6l.1-.2c.8.6 1.7 1 2.6 1.1.5.1 1.1.1 1.4-.3l-1.5-1.2a9.4 9.4 0 01-1.6-2.3c-1-1.9-1-6.1-.6-8.7a48 48 0 012.2 2.4c.6.8 1.1 1.8 1.5 2.8.3.9.5 1.8.6 2.8v2.4c.1.1.1.2.2.1.3-.2.3-.5.4-.8l.7-2.3a31 31 0 001.9-5c1.1 1.6 1.7 2.6 2.4 4.5l.5 1.6c.8 3 .8 5.7 0 8.5 0 .2-.2.4-.1.7.4.1.5-.3.7-.5.9-1.5 1.8-3.1 2.3-4.8.4-1.2.6-2.5.7-3.8a12.7 12.7 0 00-7.7-12.4c-.9-.4-2.6-1.6-4.6-3l1.8.1c2-.3 3.7-1.3 5.2-2.7v-.2c.6-.8 1.4-2.8 1.9-3.5 0-.2.2-.3.3-.5.1 0 2.7-4.5 3.6-5.6.1-.3.4-.5.4-.8l-.1-.1c1-2.1 2.6-5.9 2.8-6.6l2.1-5.4c.4-.7.6-1.4.7-2.2l-.2-.2c1.4-2 3-6 3.8-7.9.2-.5.4-.9.3-1.4l.7-3.6c.8-.6.9-1.7.8-2.8zm-35.2 37.6c-.1 0-.1-.1 0 0z'/%3E%3Cpath class='st3' d='M193.2 52.2l-53.9-15.1L119 9.5l-20.3 28-51.9 14.7v4.6h146.4z'/%3E%3C/svg%3E");
}

[football3club_logo="LEC"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 250 250' xml:space='preserve'%3E%3Cg fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath fill='%23004996' d='M0 125a125 125 0 11250 0 125 125 0 01-250 0z'/%3E%3Cpath fill='%23FFF' d='M13.4 125a111.6 111.6 0 11223.2 0 111.6 111.6 0 01-223.2 0z'/%3E%3Cpath fill='none' stroke='%23004996' stroke-width='8.4' d='M125 211a85.5 85.5 0 0086-86 85.5 85.5 0 00-86-86 85.5 85.5 0 00-86 86 85.5 85.5 0 0086 86h0zm-85.2-86c0-22.7 8.9-44.1 25-60.2 16-16.1 37.5-25 60.2-25 22.7 0 44.1 8.9 60.2 25 16.1 16 25 37.5 25 60.2 0 22.7-8.9 44.1-25 60.2-16 16.1-37.5 25-60.2 25a84.6 84.6 0 01-60.2-25c-16.1-16-25-37.5-25-60.2h0z'/%3E%3Cpath fill='%23004996' d='M102.7 64.1c3-3.2 15-8.2 15-8.2 5.5-2.7 5.5-5.9 5-7.6-16.1.5-31 6.1-43 15.3 6.8 2.3 18 10.5 18 10.5.3-5.9 2-6.8 5-10zM132.9 54.8s12 5 15 8.2c3 3.2 4.6 4 5 10 0 0 9.7-7.2 16.6-10a74.3 74.3 0 00-41.8-14.7c-.1 1.8.8 4.3 5.2 6.5zM58.2 97.8c2.5-1.5 3.6-2.3 7.6-7.8 0 0 3.8-4.6 6.2-5.7 0 0-.6-5.7-.5-6.8 0-1 .2-4.3 1-5.6.8-1 1.4-2.3 1.1-3.1A77 77 0 0054 99.2c.6 0 2.3-.2 4.3-1.4zM178.2 76.2l-.6 6.8c2.5 1 6.3 5.7 6.3 5.7 4 5.5 5.1 6.3 7.6 7.8a8.7 8.7 0 004.1 1.4A77 77 0 00176 68.5c.2.6.6 1.4 1.1 2.1.9 1.3 1 4.6 1.1 5.6zM72.3 168.3c-5.8-9.5-1.6-15.7.6-20.2 2.2-4.6 11.1-8 11.1-8l-.8-2c-2.6.6-9.8 2.5-17.6-1.7-7.8-4.2-8.3-17.3-8.3-17.3.4-9.8-3.4-13.2-5.1-14.2a78.1 78.1 0 0027.4 81.4c1-4.3-2-9.2-7.3-18zM200.5 125a78 78 0 00-3.4-22.6c-1.3 1.4-2.9 5-2.5 13.5 0 0-.4 13.9-8.2 18-7.8 4.3-14.7 2.3-17.3 1.7l-1.6 4s8.8 3.3 11 7.8c2.2 4.5 7.1 9.8 1.3 19.4-5.2 8.6-8.3 13.5-7.3 17.8 17-14 28-35.5 28-59.6zM148.5 190.5C140 192.6 131 183 131 183c-6 2.3-10 .2-10 .2-5.2 9.6-14.7 7-24.9 5-7.3-1.5-10.2.5-11.3 1.8A74.2 74.2 0 00168 188c-4.5-3.4-11.8.5-19.4 2.4z'/%3E%3Cpath fill='%23F1B700' d='M126 181s2.9.5 5.6-2.4c0 0 3.4-1.1 5.2-2.4 1.8-1.4 4.1-3 3.8-9.4l3.5-5.2c1.2-1.6 1.1-1.2 4.6-4.5 3.4-3.2 9.4-6.6 11-8.7 1.6-2 2.8-3.3 5.3-10.7 0 0 2-3.7 4.4-5.7 2.4-2 3.1-2 2-4.3 0 0 0-1.2 1.4-3 1.5-1.8 4.3-4.2 2.2-5-2-1-2.7-1.6-3.4-2.3-.8-.8-1.3-2.2-3.7-3.5 0 0-1-1-.8-1.9.2-1 1.2-2.5 1.4-4 .2-1.7 1.8-1.8 2-3.8.1-2 .2-7.7.8-10 .5-2.5 2.6-5.6 2.8-7.7.2-2-.3-2.6 1.2-7.6 0 0 1-1.2.6-3.4-.4-2.3-3-9.4-3.8-10-.7-.5-1-1.4-3.4-.1-2.5 1.2-5 3-6 4.1-1.1 1.1-5.7 2.9-6.2 3.7-.5.8-4 3.2-5.3 4.4-1.2 1.3-3 3.2-3.7 4.2-.7 1-1.1 2-4 1.2-3-1-9.7-2.8-17.6-2.9 0 0-11.6.6-18 3 0 0-3.3 2-4.7-.3a46.3 46.3 0 00-11.3-9.2c-1.5-.4-8.5-6.3-14.2-7.2 0 0-4 9.4-2.8 14.2l2.4 9.4c0 .5 1.2 3 1.7 4.7.5 1.6.8 5.9 1.3 8.4.4 2.5.8 3.8 1.5 4.7.6.9.5 2 .9 2.6l1 1.6c.5.9 1.3 1.1-.6 3.2-2 2.2-4 5.7-7.8 6v1s1.7 1.8 2.6 3.1c.9 1.4 2.7 3.1 1.1 5.7l5.4 4.5s1.3-.1 2.6 4.6c1.3 4.7 1 6.8 5 9.7 4.2 3 5.7 3.7 7 4.8 1.3 1.1 3.6 2.7 4.3 3.5.6.9 2 1 2.7 1.6.7.5.5 2 2.4 3.4 1.8 1.5 3.2 3 3.2 4.1 0 1.1-.2 2 0 3.6a9.2 9.2 0 002.9 5.2c1.3 1 1.7 1 3.4 1.6 1.7.7 6 3.7 8 3.4z'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="MAC"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Calque_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 250 250' xml:space='preserve'%3E%3Cpath d='M243.2 125.5A118.5 118.5 0 01125 243.7 118.5 118.5 0 016.8 125.5 118.5 118.5 0 01125 7.3a118.5 118.5 0 01118.2 118.2z' fill='%23fff'/%3E%3Cdefs%3E%3Cpath id='SVGID_1_' d='M0 .5h250v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath d='M243.2 125.5a118.2 118.2 0 01-118.4 118.2A117.9 117.9 0 0141.2 41.9a118.3 118.3 0 01202 83.6h0z' clip-path='url(%23SVGID_2_)' fill='none' stroke='red' stroke-width='4'/%3E%3Cpath d='M125 5.3a120.3 120.3 0 100 240.5 120.3 120.3 0 000-240.5zm0 4a116.3 116.3 0 110 232.5 116.3 116.3 0 010-232.5z' fill='%23002e60'/%3E%3Cdefs%3E%3Cpath id='SVGID_3_' d='M0 .5h250v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_4_'%3E%3Cuse xlink:href='%23SVGID_3_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath d='M124.9 250.5c-33.4 0-64.8-13-88.5-36.6A124.3 124.3 0 01-.3 125.5c0-33.4 13-64.8 36.7-88.4C60 13.5 91.4.5 124.9.5c33.4 0 64.9 13 88.5 36.6 23.6 23.6 36.7 55 36.7 88.4 0 33.4-13 64.8-36.7 88.4a124.6 124.6 0 01-88.5 36.6zm0-236.5C95.1 14 67 25.6 46 46.7c-21.1 21-32.7 49-32.7 78.8 0 29.8 11.6 57.8 32.7 78.8 21 21.1 49.1 32.7 78.9 32.7a111.1 111.1 0 00111.6-111.4c0-29.8-11.6-57.8-32.7-78.8A110.5 110.5 0 00124.9 14z' clip-path='url(%23SVGID_4_)' fill='%23002e60'/%3E%3Cpath d='M53.7 52.3a262.4 262.4 0 00-6 66.2c-.4 73.7 54.1 96.6 77.3 103.6 23.2-7 77.7-29.9 77.3-103.6a262 262 0 00-6-66.2c-35.8-6.3-57.6-5.7-71.3-5.8-13.7.2-35.5-.4-71.3 5.8z' fill-rule='evenodd' clip-rule='evenodd' fill='%23002e60'/%3E%3Cpath d='M187.4 138.1c.2 0 0 .4-.1.6-4.1 32.7-21.1 55.6-62.4 70.3-41.3-14.7-58.3-37.6-62.4-70.3 0-.2.1-.5-.1-.6h125z' fill-rule='evenodd' clip-rule='evenodd' fill='%237bb1dd'/%3E%3Cpath d='M62.7 124.7c-.3-6.7-.2-13.9.4-21.4.7-11.7 1.4-25.3 4.9-40.9 27.1-4.9 45.4-4.8 57.1-5.1 11.6.3 30 .3 57.1 5.1 3.5 15.6 4.2 29.2 4.9 40.9.5 7.6.7 14.7.4 21.5l-124.8-.1z' fill-rule='evenodd' clip-rule='evenodd' fill='%23fff'/%3E%3Cpath fill='%23e41819' d='M125 141.5l-27 19.6 10.3 31.8h33.4l10.3-31.8z'/%3E%3Cpath d='M178.7 124.8a52 52 0 10-103.4 0h103.4z' fill-rule='evenodd' clip-rule='evenodd' fill='%23eaaa00'/%3E%3C/svg%3E");
}

[football3club_logo="CHE"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Слой_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 250 250' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23bb8a1a%7D.st1%7Bfill:%2300318a%7D.st3%7Bfill:%23f20b13%7D%3C/style%3E%3Cpath class='st0' d='M112.5 2.2a124 124 0 01135.4 110.3 123.3 123.3 0 01-181.5 121A124.2 124.2 0 012.3 138a125 125 0 015.3-50.8 123.8 123.8 0 01104.9-85m-3.9 8.2a116.2 116.2 0 00-97.2 92.4c-2.3 10.7-1.9 21.8-1.6 32.7A115.7 115.7 0 00114 240.3c5.6.3 11.1.2 16.7.2a113.9 113.9 0 0067.5-25.7c24.1-19.5 39.9-49 42.2-79.9.1-10.1.7-20.4-1.4-30.4a115.4 115.4 0 00-66.4-85.1 106.5 106.5 0 00-45.1-9.8c-6.3 0-12.7-.2-18.9.8'/%3E%3Cpath class='st1' d='M108.5 10.3c6.3-.9 12.6-.8 18.9-.8 15.5-.3 31 3.5 45.1 9.8a115.4 115.4 0 0166.5 85.1c2.1 10 1.5 20.3 1.4 30.4a115.5 115.5 0 01-109.8 105.7c-5.6 0-11.1.1-16.7-.2A115.4 115.4 0 019.7 135.5c-.3-10.9-.7-22 1.6-32.7a115.5 115.5 0 0197.2-92.5m14.2 31.9a83.4 83.4 0 00-80 92.6 82.3 82.3 0 0022.2 47.1A82.2 82.2 0 00114 207a85 85 0 0042.6-5.4 83.2 83.2 0 0013-146.6 83.6 83.6 0 00-46.9-12.8M26.8 88.7a11.8 11.8 0 00-8.2 12.2c.4 4.3 3.4 8.2 7.4 9.7 4.3 1.7 9.7.4 12.7-3.1 3.6-3.9 3.9-10.3.7-14.6-2.6-3.9-8-5.6-12.6-4.2m190 0a11.6 11.6 0 004.6 22.6c5.9-.5 10.8-6.3 10.1-12.3-.1-7.2-8-12.5-14.7-10.3M24.6 140.9c-1.5-.1-3.4-.1-4.1 1.5l-2.5 6.3c-.7 1.6.6 2.9 1.7 3.9-.2 1.1-.6 2.2-.4 3.3.4 1.2 1.6 1.7 2.5 2.5 1.3.9 2.4 2.2 3.8 3.1 1.4.7 2.8-.1 4.1-.5 1.2.8 2.7 1.8 4.1.9l5.7-3.6c1.5-.9 1.1-2.9 1-4.4 1.2-.7 2.6-1.8 2.2-3.4-.6-2.3-1.3-4.5-1.8-6.8-.4-1.6-2.3-1.8-3.6-2.1-.5-1.3-1.1-3.1-2.8-3.2-2.4 0-4.8-.3-7.2-.4-1.7-.1-2.2 1.7-2.7 2.9m191.4-2.3c-1.1.5-1.2 1.9-1.6 2.9-1.4.3-3.4.4-3.9 2.1l-1.7 6.8c-.3 1.6 1.1 2.6 2.2 3.5-.1 1.3-.5 2.9.6 3.9 1.2 1 2.6 1.5 3.8 2.4 1.3.8 2.6 2.2 4.3 1.9.8-.3 1.5-.9 2.2-1.5 1.3.8 3 1.7 4.4.6l5.1-4.2c1.4-1.1.7-3.1.4-4.6 1.2-.9 2.5-2.3 1.7-3.9l-2.5-6.3c-.7-1.6-2.6-1.5-4-1.4-.5-1.1-.9-2.6-2.3-2.9-1.6-.2-3.3.3-4.9.3-1.4.1-2.7-.2-3.8.4'/%3E%3Cpath d='M26.8 88.7c4.6-1.4 9.9.3 12.7 4.2a11.7 11.7 0 01-.7 14.6 11.6 11.6 0 11-12-18.8' fill='%23fdf7fb'/%3E%3Cpath class='st3' d='M28.1 93a7.1 7.1 0 017.4 11.6 7 7 0 01-7.8 1.9 7.2 7.2 0 01-4.6-6 7 7 0 015-7.5M39.1 150.4l-1.3-5.1c-.2-.7-1.3-1.1-1.9-.6-1 .7-2 1.6-2.5 2.8-.4-.4-.8-.8-1.3-1 1-.6 1.7-1.7 2.2-2.8.5-.6.3-1.7-.5-1.9-1.4-.4-2.9-.2-4.3-.3-.8 0-1.9-.3-2.4.6-.3 1.6.9 3 1.8 4.2l-.6.3-.6.4a6.6 6.6 0 00-3.2-3.6c-1.3 1-1.5 2.7-2.2 4.2-.3.9-1.1 1.9-.5 2.8 1.4 1 3.1.2 4.7-.2 0 .5.2 1 .4 1.4-1.8.2-4.2.6-4.2 2.6 1.1 1.3 2.7 2.2 3.9 3.4.6.7 1.9.9 2.3-.1.6-1.2.7-2.6.4-3.9a3 3 0 001.6.1c-.3 1.7-.6 3.6.7 4.8 1.2.1 2.1-1 3.1-1.5 1-.8 2.5-1.1 2.9-2.3-.5-1.6-2.4-2.4-4-2.7.3-.4.5-.9.6-1.4 1.1.6 2.3 1 3.6 1.2.8.1 1.5-.6 1.3-1.4zM218 93a7.1 7.1 0 017.4 11.6 7 7 0 01-7.8 1.9 7.2 7.2 0 01-4.6-6 7.2 7.2 0 015-7.5M229.7 150.4l-1.3-5.1c-.2-.7-1.3-1.1-1.9-.6-1 .7-2 1.6-2.5 2.8-.4-.4-.8-.8-1.3-1 1-.6 1.7-1.7 2.2-2.8.5-.6.3-1.7-.5-1.9-1.4-.4-2.9-.2-4.3-.3-.8 0-1.9-.3-2.4.6-.3 1.6.9 3 1.8 4.2l-.6.3-.6.4a6.6 6.6 0 00-3.2-3.6c-1.3 1-1.5 2.7-2.2 4.2-.3.9-1.1 1.9-.5 2.8 1.4 1 3.1.2 4.7-.2 0 .5.2 1 .4 1.4-1.8.2-4.2.6-4.2 2.6 1.1 1.3 2.7 2.2 3.9 3.4.6.7 1.9.9 2.3-.1.6-1.2.7-2.6.4-3.9a3 3 0 001.6.1c-.3 1.7-.6 3.6.7 4.8 1.2.1 2.1-1 3.1-1.5 1-.8 2.5-1.1 2.9-2.3-.5-1.6-2.4-2.4-4-2.7.3-.4.5-.9.6-1.4 1.1.6 2.3 1 3.6 1.2.8.1 1.5-.6 1.3-1.4z'/%3E%3Cpath d='M155.9 82.1c2.7.8 5-1.5 7.1-2.8-.5 2.9-2.3 5.7-5.3 6.6l-2.5-.4c-1.3-.7-2.4-1.6-3.6-2.3.2-.7.5-1.4.9-2l3.4.9z' fill='%23ea0e16'/%3E%3Cpath class='st1' d='M183.3 118.8a11.6 11.6 0 00-7.7-4.9c-4.1-.3-7.6 1.9-10.9 4.2.8-1.8 1.9-3.6 3.3-4.9 4.6-4.3 10.6-7.2 13.9-12.6 2-3.2 2-7.4.6-11-3.7-5.7-12.6-6.8-17.8-2.4l-2.1 2.7c-.4 2-.4 4.1-.4 6.1l1.4-2.1.2-.3 2.3-1.6c2.4-.8 4.6.7 5.3 2.9a6 6 0 01-1.5 4.2c-4.3 5-10.7 8.3-13.4 14.5-2.1 5.2.1 11.1 3.4 15.3 2.5 3.4 5.9 6.4 7.1 10.6.8 2.6.1 6-2.5 7.4-3.1 1.8-7.2.8-10.2-.8-1.1-.7-2.2-1.5-3.2-2.4l-.1-.1c-3.4-6-4.5-13-5.5-19.7-.4-3.9-3.4-6.9-2.8-10.9 2.8-.2 6.1-.1 8.2-2.4 1.7-1.5 1.8-3.9 1.8-6l-1.4-3.4c-1.5 1.3-3 2.5-5.1 2.6-1.9-.8-3.8-2.3-4.2-4.4-.8-2.8-.9-6.9 2.1-8.5 2.7-1.3 5.3.9 7.5 2.2l-.4-4.1.1-3.3c-1.5.1-2.9 0-4.4-.1-.5-2.4.7-5.1 2.9-6.2 1.7-.7 2.8 1 4.1 1.9 2-2.9 4.5-5.6 5.9-9.1-1.9-1.6-4-2.9-5.1-5.2-5.3-.8-11.3-1-15.4-5-1.8-1.5-2.3-3.8-3.8-5.4h-.1c-2.9 1.6-6.2 4.2-5.6 7.8-3 0-6.4.4-8.1 3.1l-.7.5v1.7c1.4.5 3.3.7 3.9 2.4 1 2.4-.2 4.8-1.4 6.9-1.4.4-2.7 1-4.2.8-1.7-.3-2.9-1.6-4.4-2.4v1a6.2 6.2 0 00-.5 3.6c.3 2.2 2.5 3.4 4 4.8a58.1 58.1 0 01-5.4 8.5c-3-.1-5.9-.6-8.9-.9l-.5-.5c-2.3-1.5-4.9-2.3-7.4-3.3l-.4-.2-2.1-2.7-3.6-2.1-.1-.6c.7-2 2.9-2.5 4.4-3.9 4.6-3.6 6-10.3 3.7-15.7-2.9-4.9-9.6-7.8-14.8-5l-.4.5a11.4 11.4 0 00-6.6 7.3c-1.3 4.6.3 10.3 4.7 12.5 0 0 1.5.7 2.2 1.3-.9.4-2 .8-2.8 1.5 1.5.4 2.7.6 4.3.7v2.1c-1.6-.1-3.6.2-4.4 1.8-.7 1-.3 2.4-.1 3.6.6 1.7-1.4 3.3-.4 5 .6 1.6 1 3.1 1.8 4.6.8 1 2.1 1.1 3.3 1.3v.5c.2 8.5.1 16.9-.1 25.3-2.8 1.7-6.5 3.1-7.2 6.7-.1.9-.8 2.4.3 2.9l.2-.7.2-.3.8-.3c1.3-.3 2.5-.4 3.9-.5l-.2.3c-1.2.1-2.5.2-3.7.5.9 1.7.9 3.6 1.6 5.4l.2-.8.1-.4 1.8-1 2.7-.7-.1.4-2.6.7c.5 2.8 2.4 5.3 2.1 8.2-.1 4.9.2 9.8-.2 14.7l-2.4.9.1 3v1.9c.6.2 1.1.6 1.9.8a3.8 3.8 0 00-1.5 4.3c.9 2 2.6 3.2 4.6 3.9 1.5-.7 3.6-1.3 4.2-3 .3-1.8-.3-3.6.1-5.3.3-1.7.5-3.3.5-5-.7-.8-2.1-1.3-2.1-2.5-.2-4.7.1-9.5-.1-14.2v-.3l1.6-.4c-.1-5 5.2-8.2 9.8-7.5 1.7.5 2.9 1.8 4.3 2.8a30.8 30.8 0 0015.8-11.5c1 1.9 2 3.7 3.1 5.4.5.7.9 1.5 1.5 2.2 2.3-.8-10.2 5.9-14.4 9.8-3.1 3.2-6.4 7.4-5.4 12.2.5 2.5 3.6 3.4 4.4 5.6-.2 3.9-1 7.9-3.3 11.1-3 3.4-8 1.6-11.9 1.7-1.7.4-3.2 1.1-4.7 2.1-2 2.5-1.4 6-1.4 9-.1 1.3.4 2.4 1.3 3.3l.2.2c1.8.3 1-2.7 2.5-3.3.3-.2 1.4-.8 1.5-.7 2.2 0 2.8 1.9 3.3 3.6l1.6 1 .7.9.5-1.4a7.5 7.5 0 013.6-4.4h.7c1 1 1.8 2.2 2.5 3.5l2.1 1.8.1-.2c.6-1.6.7-3.4 2-4.6 2.1-.8 5-.2 6.5-2.3 2.2-3.3 2.2-7.7 4.7-10.9 1.6-2 4.1-2.8 6.3-3.8l1.7-.7c-1.1-.4-2.4-.8-3.6-1.4-2.4-1-4.7-3.6-3.6-6.3 1.9-4.1 6.5-6.2 10.8-6.8l.1.1c.5 1.3.9 2.4 1.5 3.3 1.8 3.4 4.7 6.5 8.4 7.9l3.2 1 .6 2.6c.3 2 .3 4.1 0 6.1-.2.9-.4 2.3-1.7 2.4-3.9.7-8.7.2-11.5 3.6-1.6 2.9-1.5 7 .2 9.9l.2-.1.8 1.4 1.5-3.8c.9-.5 1.9-1.1 3-1.2l1.8.3 1.7 3 .8 1.4 1.4-1.4c.6-1.2 1.3-2.6 2.6-3.1l4.2 2.8.2.2.4.4.1-.2c.7-1.1 1.2-2.6 2.7-2.7 1.8-.3 4.1-.9 3.8-3.2-.5-7.8-.8-16.5 4.1-23.3.8-1.4 1.9-2.6 2.9-3.9-3.9.8-8.3 1-11.6-1.4a15.7 15.7 0 01-6.5-10.6c1.6.8 2.9 1.8 4.4 2.7l1.6.8c5.1 2.1 11.3 3.1 16.4.4 4.3-2.3 6-7.7 4.6-12.2-1.3-5.5-5.5-9.4-8.7-13.8-.1-1.8-.1-1.8 0 0 .6-1.7 1.5-3.6 3.4-4 2.5-.9 5 .8 6 3.1.2 1.8.1 3.6.1 5.3.9-.4 2-.6 2.7-1.4l.5-.5c3-2.4 4.3-7.1 2.6-11.1zm-98.6 25.6l.1-.4c1.5-.7 3-1.3 4.7-1.8v.3l-4.8 1.9zm.5-70.1l-.1-.1c-.5-1.3-1.5-2.6-.9-4.1a11 11 0 011.8-2.6c2.1.5 4.9 1.5 4.5 4.2-.3 2.7-3.3 2.5-5.3 2.6zm28.1 40c-2.9 1.9-6.1 3.4-9 5.3-3.4 2.3-6.7 4.9-10.2 6.9-1.2.6-2.5 1.1-3.8 1.4v-24.4c2.9.7 6 1.3 8.9 2.4.2.1.4.6.3.5l.7 1.9c.2.8.4 1.7.2 2.5-.7 1-1.8 1.6-2.8 2.2l-.4.1.1.1a28.5 28.5 0 003.3 2.8c2.2-.1 4.4 0 6.4-1 1.9-.9 3.3-2.5 4.7-4.1l1.8 3-.2.4zm27.2-42.4c.4-1.9 7.7-1.2 9-1.4-.7 2-1.1 3.1-1.9 4.1-2.5 1.5-5.5-.7-7.1-2.7zm39.4 58.8l.6-4.2c0 1.4-.4 2.9-.6 4.2z'/%3E%3Cpath class='st0' d='M116.5 42a83 83 0 0191.4 74.6 82.3 82.3 0 01-45.1 82.7 80.8 80.8 0 01-37.9 9A82.8 82.8 0 0142 133.8 83.5 83.5 0 01116.5 42m-2.5 6.6a77.4 77.4 0 00-64.8 61.6c-1.6 7.2-1.2 14.5-1.1 21.8a76.7 76.7 0 0069.5 69.8c3.7.2 7.4.1 11.1.1a76.2 76.2 0 0045-17 76.6 76.6 0 0028.1-53.3c.1-6.8.5-13.6-.9-20.3a77.3 77.3 0 00-44.3-56.7 70.9 70.9 0 00-30.1-6.5c-4.1 0-8.3-.1-12.5.5'/%3E%3C/svg%3E");
}

[football3club_logo="WOL"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 288 250' xml:space='preserve'%3E%3Cpath fill='%23FE8616' d='M199 29.5H89L34 125l55 95.5h110l55-95.5z'/%3E%3Cpath d='M216 0H72L0 125l72 125h144l72-125L216 0zm-13.6 226.4H85.6L27.2 125 85.6 23.6h116.8L260.8 125l-58.4 101.4z'/%3E%3Cpath fill='%23FFF' d='M202.4 23.6H85.6L27.2 125l58.4 101.4h116.8L260.8 125 202.4 23.6zM199 220.5H89L34 125l55-95.5h110l55 95.5-55 95.5z'/%3E%3Cg%3E%3Cpath d='M116.1 36.4L131.5 81h29.1l14.9-44.6 49.8 95.7-52.8 29.2-15.4 52.3h-26.7l-16.7-52.3-51-29.2z'/%3E%3Cpath fill='%23FFF' d='M177.8 117.9v23.8h-22.5zM109 117.9v23.8h22.5z'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="BUR"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 612.3 708.7' xml:space='preserve'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFED00' d='M0 0h612.3v383.4l-.2 1c-11.6 100.6-61.8 185.1-142.5 248a449.4 449.4 0 01-92.2 55.4c-17.3 7.7-42 17.6-61 20.3l-3.8.6-3.8-1C151.4 664.8 0 531.4 0 362.6V0'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%239FD8F4' d='M45.7 49.8h520.9v329.9C543 582.4 346.9 653.7 313 658.5c-140-38-267.4-155-267.4-296.6V49.8'/%3E%3Cellipse fill='%23FFED00' cx='307.6' cy='136.9' rx='36.2' ry='69'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFED00' d='M200 295.5V390s8 35.5 14.2 41.8c6.3 6.3 32.9 36.8 43 41.3 10 4.6 52.6 23 52.6 23l56-26 29.7-27.2 16.7-24.7 4.5-18 .5-35.8 1-72-218.2-.2v3.2'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%236E0438' d='M202.3 398.7L309.8 303l104.7 98.8s-.8 7.7-2.7 12.4c-2 4.6 1.4 10.8 1.4 10.8l-3.2 13-101-93.8-98.2 92s-4.4-23.7-6-28.3c-1.7-4.7-2.5-9-2.5-9'/%3E%3Cpath fill='%23001227' d='M200.7 232.8h216.4v64.7H200.7z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23001227' d='M519.1 446.9s8.3-16.1 9.2-28.1c.8-12-2.1-23.2-2.1-23.2l-.5.4c.6-4.8 1.5-14.2-.4-19-2.4-6.7-11.2-16.2-19-16.2-8 0-17.9 10.3-19.6 16.5-1.6 6.2 1.2 14.8 1.7 21.8 0 5-.4 13.4-.4 13.4h.3v.3c-7.8 1.4-15.2 2.7-17.3 3.5-4.6 1.6-15.4 7.8-16.2 14a83.2 83.2 0 003.3 28.2c1.2 1.9 2.8 3.4 4 4.3a327.7 327.7 0 00-55.6 39.2c-23.8 19.7-68.7 44.8-94.6 45.5-31.6.8-78.3-31.2-117.1-63.1-11.2-9.2-24.2-16.1-37-21.2 2-3.4 4.2-22 3.3-28.2-.8-6.2-11.6-12.4-16.2-14-2.1-.9-9.5-2.1-17.3-3.5v-.3h.3l-.4-13.4c.5-7 3.3-15.6 1.7-21.8-1.7-6.2-11.7-16.5-19.6-16.5-7.8 0-16.6 9.5-19 16.1-1.9 4.8-1 14.3-.5 19l-.4-.4s-2.9 11.2-2 23.2c.6 8.9 5.2 20 7.6 25.1l-2.6 8.7c-2.8 8.8 2.7 33.3 6.8 39.4 4 6.1 9.5 4.7 22.4 9.5 13 4.8 39.5 19 62 37.3 16.7 13.6 68 53.7 126 53.3 53.5-.4 85-20.7 102.1-36.3 17-15.6 47-37.3 62-46.2 15-8.8 32.6-6.8 36.7-10.8 4.1-4.1 8.9-15.6 10.9-28.5a32 32 0 00-4-21.7l.7-.1.8-6.2z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%236E0438' d='M379.2 149.9v-.2H238.3c-6.4 0-11.6 10.7-11.6 23.9s5.2 23.9 11.6 23.9v.2h141c6.3 0 11.5-10.7 11.5-24 0-13.1-5.2-23.8-11.6-23.8'/%3E%3Cdefs%3E%3Cpath id='SVGID_1_' d='M309.3 480.2L269 417.6l41.2-45.4 38 44.8-39 63.2'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_2_)'%3E%3Cdefs%3E%3Cpath id='SVGID_3_' d='M261.6 359.3h94v124.6h-94z'/%3E%3C/defs%3E%3CclipPath id='SVGID_4_'%3E%3Cuse xlink:href='%23SVGID_3_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_4_)'%3E%3Cimage overflow='visible' width='13' height='20' xlink:href='data:image/jpeg;base64,/9j/4AAQSkZJRgABAgEACgAKAAD/7AARRHVja3kAAQAEAAAAHgAA/+4AIUFkb2JlAGTAAAAAAQMA EAMCAwYAAAGCAAABlwAAAc//2wCEABALCwsMCxAMDBAXDw0PFxsUEBAUGx8XFxcXFx8eFxoaGhoX Hh4jJSclIx4vLzMzLy9AQEBAQEBAQEBAQEBAQEABEQ8PERMRFRISFRQRFBEUGhQWFhQaJhoaHBoa JjAjHh4eHiMwKy4nJycuKzU1MDA1NUBAP0BAQEBAQEBAQEBAQP/CABEIABEADQMBIgACEQEDEQH/ xABzAAACAwAAAAAAAAAAAAAAAAAAAwIEBgEBAAAAAAAAAAAAAAAAAAAAABAAAQUBAQAAAAAAAAAA AAAAABADBDQFARYRAAECBQUAAAAAAAAAAAAAAAECAwAQsXIEUdKTBTUSAQAAAAAAAAAAAAAAAAAA ABD/2gAMAwEAAhEDEQAAAMlCmsYsD//aAAgBAgABBQBP/9oACAEDAAEFAE//2gAIAQEAAQUAf393 j/oN4kWCRYP/2gAIAQICBj8AP//aAAgBAwIGPwA//9oACAEBAQY/AHAOyywApQAD7mt0enl87m6H b1Vk7eqsv//Z' transform='matrix(7.2338 0 0 6.2316 261.6 359.3)'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cpath id='SVGID_5_' d='M156.6 460.4l-6.8-2.5v-32.2c4.2 2.6 8.7 6.2 9.2 9.6a29 29 0 010 7.2 96.6 96.6 0 01-2.4 17.9'/%3E%3C/defs%3E%3CclipPath id='SVGID_6_'%3E%3Cuse xlink:href='%23SVGID_5_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_6_)'%3E%3Cdefs%3E%3Cpath id='SVGID_7_' d='M147.2 423.7h14.9v38.8h-14.9z'/%3E%3C/defs%3E%3CclipPath id='SVGID_8_'%3E%3Cuse xlink:href='%23SVGID_7_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_8_)'%3E%3Cdefs%3E%3Cpath id='SVGID_9_' d='M147.5 424.1h14.9v38.8h-14.9z'/%3E%3C/defs%3E%3CclipPath id='SVGID_10_'%3E%3Cuse xlink:href='%23SVGID_9_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_10_)'%3E%3Cimage overflow='visible' width='6' height='16' xlink:href='data:image/jpeg;base64,/9j/4AAQSkZJRgABAgEAHQAdAAD/7AARRHVja3kAAQAEAAAAHgAA/+4AIUFkb2JlAGTAAAAAAQMA EAMCAwYAAAF1AAABgwAAAbD/2wCEABALCwsMCxAMDBAXDw0PFxsUEBAUGx8XFxcXFx8eFxoaGhoX Hh4jJSclIx4vLzMzLy9AQEBAQEBAQEBAQEBAQEABEQ8PERMRFRISFRQRFBEUGhQWFhQaJhoaHBoa JjAjHh4eHiMwKy4nJycuKzU1MDA1NUBAP0BAQEBAQEBAQEBAQP/CABEIABAABgMBIgACEQEDEQH/ xABpAAEBAQAAAAAAAAAAAAAAAAAABAYBAQAAAAAAAAAAAAAAAAAAAAAQAAMBAAAAAAAAAAAAAAAA AAAFFUURAAICAgMAAAAAAAAAAAAAABESABMCFAPDhBIBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQAC EQMRAAAAzKUf/9oACAECAAEFAD//2gAIAQMAAQUAP//aAAgBAQABBQCq0ub3/9oACAECAgY/AH// 2gAIAQMCBj8Af//aAAgBAQEGPwCvc502lW3MCwANPX2T/9k=' transform='matrix(2.4833 0 0 2.4222 147.5 424.1)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_11_' d='M462.3 460.2c-.8-.7-1.7-1.7-2.4-2.8a71 71 0 01-3-26.8c.5-3.6 5.7-7.6 10.2-10.1a33.9 33.9 0 014.6-2.2l.8-.3v38a92.7 92.7 0 00-10.2 4.2'/%3E%3C/defs%3E%3CclipPath id='SVGID_12_'%3E%3Cuse xlink:href='%23SVGID_11_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_12_)'%3E%3Cdefs%3E%3Cpath id='SVGID_13_' d='M454.5 415.8h20.2v46.7h-20.2z'/%3E%3C/defs%3E%3CclipPath id='SVGID_14_'%3E%3Cuse xlink:href='%23SVGID_13_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_14_)'%3E%3Cdefs%3E%3Cpath id='SVGID_15_' d='M454.8 416.2H475v46.7h-20.2z'/%3E%3C/defs%3E%3CclipPath id='SVGID_16_'%3E%3Cuse xlink:href='%23SVGID_15_' overflow='visible'/%3E%3C/clipPath%3E%3Cg clip-path='url(%23SVGID_16_)'%3E%3Cimage overflow='visible' width='8' height='19' xlink:href='data:image/jpeg;base64,/9j/4AAQSkZJRgABAgEAHAAcAAD/7AARRHVja3kAAQAEAAAAHgAA/+4AIUFkb2JlAGTAAAAAAQMA EAMCAwYAAAGAAAABlgAAAdf/2wCEABALCwsMCxAMDBAXDw0PFxsUEBAUGx8XFxcXFx8eFxoaGhoX Hh4jJSclIx4vLzMzLy9AQEBAQEBAQEBAQEBAQEABEQ8PERMRFRISFRQRFBEUGhQWFhQaJhoaHBoa JjAjHh4eHiMwKy4nJycuKzU1MDA1NUBAP0BAQEBAQEBAQEBAQP/CABEIABIACQMBIgACEQEDEQH/ xABwAAEBAQEAAAAAAAAAAAAAAAAFAAQGAQEAAAAAAAAAAAAAAAAAAAAAEAACAgMAAAAAAAAAAAAA AAAABRA1AxUGEQADAAAGAwAAAAAAAAAAAAABAgMAELMEdAXRkzQSAQAAAAAAAAAAAAAAAAAAABD/ 2gAMAwEAAhEDEQAAAOZ3jIB6FH//2gAIAQIAAQUAj//aAAgBAwABBQCP/9oACAEBAAEFAHrVpjd7 JidBfHQXx//aAAgBAgIGPwA//9oACAEDAgY/AD//2gAIAQEBBj8A7Gc95dETdXVVWrgACjAAANj6 7exvOOz5d9Rsuz5d9Rsv/9k=' transform='matrix(2.5276 0 0 2.4589 454.8 416.2)'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FBBA00' d='M257.5 468.7c-34.2-21-52.6-48-54.6-79.8-.4-5.4-.5-24.8-.5-48.2v-107l212.6.1v155.6c-1.7 31.9-20.9 58.4-55.2 79.4a207.7 207.7 0 01-51.3 22.2c-4.6-1.2-27.7-7.9-51-22.3m-86-267.1c-.1 7-1.4 173.3 0 193.6 2.5 41.1 27 77 70.6 104 32.6 20 64 27.8 65.3 28.1l1 .3 1-.2c1.4-.4 33-8.1 65.7-28.2 43.8-26.8 68.2-62.7 70.3-104 1.7-31.9 2.3-191.5 2.3-193v-4.5l-276.3-.5v4.4z'/%3E%3C/svg%3E");
}

[football3club_logo="ARS"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 212 250' xml:space='preserve'%3E%3Cpath d='M106 0C80.7 0 34 6.6 10.3 20.4-21 131.5 21.5 207.1 106 250c84.5-42.9 127-118.8 95.7-229.6C177.9 6.6 131.3 0 106 0z' fill='%23cea451'/%3E%3Cpath d='M106 13.3c-23.6 0-50.1 3-84.9 17.2-25.9 92 4.1 165.7 84.9 205.9 80.7-40.2 110.7-113.9 84.8-205.9A212.4 212.4 0 00106 13.3h0z' fill='%23023474' stroke='%23023474' stroke-width='.5' stroke-miterlimit='282'/%3E%3Cpath d='M165.7 21.4a209.6 209.6 0 00-59.8-8.4h-1.8c-19.3.2-36.9 2.1-57.9 8.5-19.9 94.2-6 166.7 59.8 214.8 65.8-48.1 79.7-120.7 59.7-214.9z' fill='%23ef0107'/%3E%3C/svg%3E");
}

[football3club_logo="MAU"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 264 250' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23ffed00%7D.st1%7Bfill:%23e30512%7D.st2%7Bfill:%23ffec00%7D.st3%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23e30512%7D%3C/style%3E%3Cpath class='st0' d='M24 114.7a22.5 22.5 0 110 45 22.5 22.5 0 010-45z'/%3E%3Cpath class='st1' d='M24 120.6a16.7 16.7 0 0116.7 16.6A16.7 16.7 0 0124 153.8a16.7 16.7 0 01-16.6-16.6c0-4.6 1.9-8.7 4.9-11.7a16 16 0 0111.7-4.9z'/%3E%3Cpath class='st2' d='M24 155.3a18 18 0 110-36.2 18 18 0 110 36.2zm0-33.2a15 15 0 100 30.2 15 15 0 0015.1-15.1c0-4-1.6-7.8-4.4-10.7a14.6 14.6 0 00-10.7-4.4z'/%3E%3Cpath class='st0' d='M240 114.7a22.5 22.5 0 110 45 22.5 22.5 0 010-45z'/%3E%3Cpath class='st0' d='M62.7 162.5C51 148.9 42.2 151.6 35 157c-11.6 8.8-9.8 20.4-3.3 31.4 18.2 31.1 51.7 50.2 96.3 51.2h7.9c44.6-1 78.3-20 96.5-51.2 6.4-11 8.3-22.7-3.3-31.4-7.2-5.4-16-8.2-27.7 5.5a91.7 91.7 0 01-73.2 34.1 91.6 91.6 0 01-65.5-34.1z'/%3E%3Cpath class='st3' d='M59.4 165.4l-1-1.2-1-1.1-.9-.9-.9-.8-.9-.8-.9-.7-.8-.6-.8-.5-.8-.4-.7-.4-.7-.3-.7-.3-.7-.2-.6-.1-.6-.1-.6-.1H45.1l-.5.1-.6.1-.5.2-.6.2-.6.2-.6.2-.5.3-.6.3-.6.4-.6.3-.6.4-.6.4-.6.5-.9.7-.8.7-.7.7-.7.7-.6.7-.6.7-.4.7-.4.8-.4.7-.3.7-.3.7-.2.7-.2.8-.1.7-.1.8V173.7l.1.8.1.8.1.9.2.9.3.8.2.9.3.9.4 1 .4.9.4.9.4 1 .5.9.5 1 .6.9 1.7 2.8 1.7 2.7 1.9 2.6 1.9 2.5 2 2.5 2.1 2.4 2.1 2.3 2.3 2.3 2.3 2.1 2.4 2.1 2.5 2.1 2.6 1.9 2.7 1.9 2.7 1.8 2.8 1.7 2.9 1.6 2.9 1.5 3 1.5 3.1 1.3 3.2 1.3 3.3 1.2 3.3 1.1 3.4 1 3.5.9 3.5.9 3.7.7 3.6.6 3.8.6 3.8.4 3.9.4 4 .2 4 .1.5.1H135.8l4-.2 4-.2 3.9-.4 3.8-.4 3.8-.6 3.7-.6 3.6-.7 3.6-.8 3.5-1 3.4-1 3.3-1.1 3.3-1.2 3.2-1.2 3.1-1.4 3-1.5 3-1.5 2.9-1.6 2.8-1.7 2.7-1.8 2.6-1.9 2.6-1.9 2.5-2 2.4-2.1 2.4-2.2 2.2-2.3 2.2-2.3 2.1-2.4 2-2.5 1.9-2.5 1.9-2.6 1.7-2.7 1.7-2.8.6-.9.5-1 .4-.9.5-1 .4-.9.4-.9.3-1 .4-.9.2-.9.3-.8.2-.9.1-.9.1-.8.1-.8V171.3l-.1-.8-.1-.7-.2-.8-.2-.7-.3-.7-.3-.7-.4-.7-.4-.8-.5-.7-.5-.7-.6-.7-.7-.7-.7-.7-.8-.7-.9-.7-.6-.5-.6-.4-.6-.4-.6-.3-.6-.4-.6-.3-.5-.3-.6-.2-.6-.2-.6-.2-.5-.2-.6-.1-.5-.1h-1.7l-.6.1-.6.1-.7.1-.6.2-.7.3-.7.3-.7.4-.8.4-.8.5-.8.6-.9.7-.9.8-.9.8-.9.9-1 1.1-1 1.2-1.8 1.9-1.7 1.9-1.8 1.9-1.8 1.9-1.9 1.7-1.9 1.8-1.9 1.6-1.9 1.7-2 1.5-2 1.5-2 1.5-2.1 1.4-2.1 1.3-2.1 1.3-2.1 1.2-2.2 1.2-2.1 1.1-2.3 1-2.2 1-2.2.9-2.3.9-2.3.8-2.4.7-2.3.7-2.4.6-2.4.5-2.4.5-2.5.4-2.5.4-2.5.3-2.5.2-2.5.2h-1.9l-.5.1h-2.4l-.4-.1h-2l-.5-.1-2.4-.1-2.5-.3-2.5-.3-2.4-.3-2.5-.5-2.4-.5-2.4-.5-2.3-.6-2.4-.7-2.3-.8-2.3-.8-2.2-.8-2.3-1-2.2-.9-2.2-1.1-2.1-1.1-2.2-1.1-2.1-1.3-2.1-1.2-2-1.4-2-1.4-2.1-1.4-1.9-1.5-2-1.5-1.9-1.7-1.9-1.6-1.9-1.7-1.8-1.8-1.8-1.8-1.8-1.9-1.8-1.9-1.7-1.9z'/%3E%3Cpath class='st2' d='M131.9 238.4H128l-4.1-.1-4-.2-4-.4-3.9-.5-3.8-.5-3.8-.7-3.7-.7-3.6-.8-3.6-.9-3.5-1-3.4-1.1-3.3-1.2L80 229l-3.3-1.4-3-1.5-3.1-1.6-2.9-1.6-3-1.8-2.7-1.8-2.8-2-2.6-1.9-2.7-2.1-2.4-2.1-2.5-2.3-2.3-2.3-2.2-2.4-2.2-2.5-2.1-2.6-2-2.6-1.8-2.6-1.9-2.9-2.3-3.8-1.1-2-.9-2-.8-2-.6-2-.5-2.1-.3-2-.1-1.8.1-2 .3-1.9.5-1.8.7-1.8 1-1.7 1.2-1.7.7-.9 1.6-1.6.9-.8 2.2-1.7 2.1-1.3 2.1-1 1.4-.5 1.5-.3 1.5-.2h.7l1.6.1 1.6.3 1.7.6 1.7.8.9.5 1.8 1.3 1.9 1.6 1 .9 2.1 2.1 4.5 5 1.7 1.8 1.8 1.8 1.8 1.7 1.8 1.7 1.8 1.6 1.9 1.6 1.9 1.5 1.9 1.4 1.9 1.4 2 1.4 2 1.3 2 1.2 2 1.2 2.1 1.1 2.1 1.1 2.1 1 2.1.9 2.2.9 2.2.8 2.2.8 2.2.7 2.3.7 2.3.6 2.3.5 2.3.5 2.4.4 2.4.4 2.4.3 2.4.2 7 .3 2.7-.1 2.5-.2 2.4-.2 2.4-.3 2.4-.3 2.4-.4 2.3-.5 2.3-.5 2.3-.6 2.3-.7 2.3-.7 2.2-.8 2.2-.8 2.2-.9 2.2-.9 2.1-1 2.1-1.1 2.1-1.1 2.1-1.2 2-1.2 2-1.3 2-1.4 2-1.4 1.9-1.5 1.9-1.5 1.9-1.6 1.9-1.6 3.6-3.4 3.5-3.6 5.5-6.1 2.1-2 2-1.6 1.9-1.3 1.8-1 .9-.4 1.7-.5 1.6-.3 1.4-.1 1.6.1 1.5.3 1.4.4 1.4.6 1.4.7 1.9 1.2 1.3.9 1.1.9.9.8 1.6 1.6 1.3 1.7.6.9.9 1.7.7 1.8.5 1.8.3 1.8.1 1.8-.1 2-.3 1.9-.5 1.9-.6 2-.8 2-.9 2-1.1 2-.6 1-1.8 2.9-1.8 2.7-2 2.8-1.9 2.5-2.1 2.6-2.2 2.5-2.2 2.4-2.3 2.3-2.4 2.3-2.7 2.2-2.5 2-2.7 2.1-2.8 1.9-2.7 1.8-3 1.8-2.9 1.6-3 1.6-3.1 1.5-3.2 1.4-3.4 1.4-3.3 1.2-3.4 1.1-3.5 1-3.6.9-3.6.8-3.7.8-3.8.6-3.8.6-3.9.5-4 .4-4.1.2-8.1.2zm-1-6h4.8l4-.1 3.9-.2 3.8-.3 3.8-.4 3.7-.5 3.6-.6 3.5-.7 3.5-.8 3.4-.9 3.3-1 3.2-1.1 3.1-1.1 3.1-1.3 3-1.3 3-1.4 2.9-1.5 2.8-1.5 2.8-1.7 2.6-1.7 2.6-1.8 2.5-1.9 2.4-1.9 2.3-2 2.3-2.1 2.2-2.2 2.1-2.3 2-2.3 2-2.4 1.8-2.4 1.8-2.6 1.7-2.6 2.1-3.6 1.4-2.7.7-1.7.6-1.6.5-1.6.4-2.2.1-1.3v-1.2l-.2-1.2-.3-1.1-.4-1.1-.6-1.1-.8-1.1-.5-.6-1.2-1.2-2.1-1.7-2-1.3-1.4-.7-1.3-.4-1.1-.2h-.4l-.9-.2-.8.2-1 .3-1.2.5-1.3.8-1.5 1.1-1.6 1.5-1.8 1.8-4.5 5.1-1.9 1.9-1.9 1.9-1.9 1.8-1.9 1.8-2 1.7-2 1.7-2 1.6-2.1 1.6-2.1 1.5-2.1 1.4-2.1 1.4-2.2 1.3-2.2 1.3-2.2 1.2-2.3 1.1-2.3 1.1-2.3 1-2.3.9-2.4.9-2.4.8-2.4.8-2.4.7-2.5.6-2.5.6-2.5.5-2.5.4-2.6.4-2.6.3-2.6.2-6.6.3-4-.1-2.5-.2-2.6-.2-2.5-.3-2.5-.4-2.5-.4-2.5-.5-2.5-.6-2.4-.6-2.4-.7-2.4-.8-2.4-.8-2.3-.9-2.3-1-2.3-1-2.3-1.1-2.2-1.1-2.2-1.2-2.2-1.2-2.2-1.3-2.1-1.4-2.1-1.4-2.1-1.5-2-1.5-2-1.6-2-1.6-2-1.7-1.9-1.8-1.9-1.8-1.9-1.9-1.8-1.9-1.8-2-2.7-3.1-1.8-1.8-1.6-1.5-1.5-1.1-1.1-1-1.1-.6-1-.3-.9-.1-.8-.1-1.1.1-1.2.3-1.3.6-1.5.9-1.5 1.1-1.5 1.3-1.2 1.2-.9 1.2-.7 1.1-.5 1.1-.4 1.1-.4 1.1-.1 1.2v.6l.1 1.3.2 1.5.4 1.6.5 1.6.7 1.7.8 1.7.9 1.8.5.9 1.6 2.7 1.7 2.6 1.8 2.5 1.9 2.5 1.9 2.4 2 2.3L51 202l2.2 2.2 2.3 2.1 2.3 2 2.5 2 2.4 1.9 2.6 1.8 2.6 1.7 2.8 1.7 2.7 1.5 2.9 1.5 2.9 1.4 3.1 1.3 3.1 1.2 3.2 1.2 3.2 1.1 3.3 1 3.4.9 3.5.8 3.5.7 3.6.6 3.7.5 3.8.4 3.8.3 3.9.2 6.6.4z'/%3E%3Cpath class='st3' d='M180.3 67.5H83.7v105.7l48.3 31.4 48.3-31.4V67.5z'/%3E%3Cpath class='st0' d='M165 87.6H99v73.3l33 20.7 33-20.7v-52z'/%3E%3Cpath class='st0' d='M17.6 82.8c30-19.5 39.9-52.9 79-65.8 20.3-6.7 52.4-6.6 72.5.5 37.7 13.3 47.8 46.1 77.4 65.3 0 15.1-5.6 29.6-17.6 34.1-10.5 3.9-22.1-6.9-29.3-16.5-12.7-17-24.6-29.6-38-37a60.7 60.7 0 00-57.5-.8c-14 7.3-26.3 20.3-39.5 37.9-7.2 9.6-18.8 20.4-29.3 16.5-12.1-4.6-17.7-19.1-17.7-34.2z'/%3E%3Cpath class='st3' d='M35.7 73.7l2.3-2.2 2.2-2.4 2.2-2.3 2.1-2.4 2.1-2.3 2.1-2.4 2-2.3 2.1-2.4 2-2.3 2.1-2.3 2-2.3 2.1-2.2 2.1-2.2 2.2-2.2 2.2-2.1 2.3-2 2.3-2 2.5-1.9 2.5-1.9 2.6-1.7 2.7-1.7 2.8-1.6 3-1.5 3.1-1.4 3.2-1.4 3.4-1.2 1.8-.5 1.9-.6 2-.5 2-.4 2-.5 2.2-.4 2.2-.3 2.2-.3 2.2-.3 2.3-.3 2.3-.2 2.4-.1 2.3-.1 2.4-.1 2.3-.1h2.4l2.4.1h2.4l2.3.1 2.4.2 2.3.2 2.3.2 2.3.3 2.3.3 2.2.3 2.1.4 2.1.4 2.1.5 2 .5 1.9.5 1.9.6 1.8.6 3.3 1.2 3.1 1.4 3 1.4 2.9 1.5 2.7 1.6 2.6 1.7 2.6 1.8 2.4 1.8 2.4 1.9 2.3 2 2.2 2.1 2.2 2 2.1 2.2 2.1 2.2 2 2.2 2.1 2.2 2 2.3 2 2.3 2 2.3 2 2.4 2.1 2.3 2.1 2.3 2.1 2.4 2.1 2.3 2.2 2.3 2.3 2.2 2.4 2.2 2.4 2.2 2.6 2.1 2.6 2.1 2.7 2 .9.6v.4l-.1 1.3-.1 1.2-.2 1.3-.1 1.3-.2 1.2-.3 1.2-.2 1.3-.3 1.1-.3 1.2-.4 1.1-.4 1.1-.4 1.1-.4 1.1-.5 1-.5 1-.5.9-.5.9-.6.9-.6.8-.6.8-.7.8-.6.7-.7.6-.7.7-.8.5-.7.6-.8.5-.9.4-.8.4-.9.4-.6.2-.7.2-.7.1H223.3l-.8-.1-.7-.2-.8-.2-.8-.2-.7-.3-.9-.4-.8-.4-.8-.4-.8-.5-.9-.6-.8-.5-.9-.7-.8-.6-.8-.7-.9-.7-.8-.8-.8-.7-.8-.8-.8-.8-.7-.9-.8-.8-.7-.9-.7-.8-.7-.9-.7-.8-.7-.9-1.2-1.6-1.2-1.5-1.2-1.6-1.2-1.5-1.1-1.5-1.2-1.5-1.2-1.4-1.2-1.5-1.2-1.4L191 83l-1.2-1.4-1.2-1.3-1.2-1.3-1.2-1.3-1.2-1.2-1.2-1.2-1.2-1.2-1.2-1.2-1.3-1.1-1.2-1.1-1.2-1.1-1.2-1.1-1.3-1-1.2-1-1.3-1-1.3-.9-1.2-.9-1.3-.9-1.3-.8-1.3-.8-1.3-.8-1.4-.8-1.8-1-1.8-.9-1.8-.8-1.9-.8-1.9-.7-1.9-.7-1.9-.6-1.9-.5-2-.5-1.9-.4-2-.4-1.9-.3-2-.2-2-.2-2-.1-2-.1h-2l-1.9.1-2 .1-2 .2-2 .2-2 .3-1.9.4-2 .4-1.9.5-1.9.5-2 .7-1.9.6-1.9.8-1.8.8-1.9.8-1.8.9-1.4.8-1.4.7-1.3.9-1.4.8-1.3.9-1.4.9-1.3.9-1.3 1-1.3 1-1.3 1.1-1.3 1-1.3 1.1-1.3 1.2-1.2 1.1-1.3 1.2-1.3 1.2-1.2 1.3-1.3 1.2-1.2 1.4-1.3 1.3-1.2 1.3-1.2 1.4-1.3 1.5-1.2 1.4-1.2 1.5-1.3 1.5-1.2 1.5-1.3 1.6-1.2 1.5-1.3 1.6-1.2 1.7-1.2 1.6-.7.9-.7.8-.7.9-.7.8-.7.9-.8.8-.7.9-.8.8-.8.8-.8.7-.8.8-.9.7-.8.7-.8.6-.9.7-.8.5-.9.6-.8.5-.8.4-.9.4-.8.4-.8.3-.7.2-.8.2-.7.2-.8.1h-2l-.7-.1-.7-.2-.6-.2-.9-.4-.9-.4-.8-.4-.8-.5-.7-.6-.8-.5-.7-.7-.7-.6-.7-.7-.6-.8-.6-.8-.6-.8-.6-.9-.5-.9-.5-.9-.5-1-.5-1-.4-1.1-.5-1.1-.3-1.1-.4-1.1-.3-1.2-.3-1.1-.2-1.3-.3-1.2-.2-1.2-.1-1.3-.2-1.3-.1-1.2-.1-1.3v-.4l.9-.6 2.8-2 2.6-2.1 2.6-2.2 2.5-2.2 2.4-2.3z'/%3E%3Cpath class='st2' d='M223.9 116.4l-1.9-.2-1-.2-1.8-.5-1.9-.8-1.9-1-1.8-1.1-1.8-1.3-1.8-1.5-1.7-1.6-2.5-2.5-2.4-2.6-2.2-2.7-6.6-8.6-4.7-5.7-3.5-4-3.5-3.7-3.5-3.5-3.6-3.2-2.4-2-2.4-1.9-2.5-1.8-2.5-1.7-2.5-1.5-1.3-.7-1.7-.9-1.7-.8-1.8-.8-1.8-.8-1.7-.7-1.8-.6-1.8-.6-3.6-1-1.9-.4-1.9-.4-1.8-.3-1.9-.2-1.9-.2-1.9-.1-1.9-.1h-1.9l-1.9.1-1.9.1-1.9.2-1.9.2-1.9.3-1.9.3-1.9.4-1.9.5-1.8.5-1.9.6-1.8.6-1.8.7-1.8.8-1.8.8-3.1 1.6-2.6 1.5-2.6 1.7-2.6 1.8-2.5 2.1-2.5 2-3.7 3.3-3.7 3.6-3.7 3.8-3.7 4.1-4.9 5.9-4.8 6.3-3.3 4.3-2.3 2.6-2.5 2.6-1.7 1.6-1.8 1.6-1.7 1.3-1.8 1.2-2 1.1-1.9.9-1.9.6-1.9.4-1.7.2-1.9-.1-.9-.2-.9-.2-1.9-.7-1.9-1-.9-.6-1.8-1.3-1.6-1.5-1.5-1.7-1.4-1.8-1.2-1.9-1.2-2.2-.9-2.2-.9-2.4-.7-2.4-.6-2.6-.5-2.6-.3-2.7-.2-3.2-.1-1.7 2.2-1.5 2.7-2 2.6-2.1 2.5-2.1 2.4-2.1 2.3-2.2 2.3-2.3 2.2-2.3 4.3-4.6 14.4-16.3 2.1-2.3 2.2-2.2 2.2-2.2 2.3-2.1 2.3-2.1 2.5-2.1 2.4-1.9 2.7-2 2.7-1.8 2.8-1.7 2.9-1.7 3.1-1.6 3.2-1.5 3.4-1.4 3.5-1.2 1.8-.6 4-1.1 4.2-.9 4.4-.8 4.6-.6 2.3-.2 4.8-.4 4.8-.2 2.4-.1h2.4l4.8.1 4.8.3 2.4.2 4.7.5 4.6.7 4.4.8 2.1.5 4.1 1.1 3.9 1.2 3.4 1.3 3.3 1.4 3.1 1.5 3 1.6 2.8 1.7L187 28l2.6 1.8 2.4 1.8 2.4 2 2.4 2 2.3 2.1 2.2 2.1 2.2 2.2 4.2 4.5 6.1 6.9 8.1 9.3 4.2 4.6 2.2 2.2 2.2 2.2 2.3 2.2 2.4 2.1 2.5 2.1 2.5 2 3.4 2.5 1.4.9V87l-.3 2.6-.4 2.7-.5 2.6-.6 2.5-.8 2.5-.9 2.3-1 2.1-1.2 2.2-1.3 1.9-1.4 1.7-1.6 1.6-1.7 1.4-.9.7-1.9 1.1-1 .5-1.9.7-.9.2-.9.1h-1.9zm-184.4-6h.5l1-.1 1.1-.3 1.3-.4 1.4-.6 1.5-.9 1.5-1 1.5-1.1 2.3-2 2.3-2.2 2.1-2.4 2.6-3.3 3.7-4.9 5-6.2 3.8-4.4 3.8-4.2 3.8-3.9 3.9-3.7 2.6-2.3 4-3.2 2.7-2 2.8-1.9 2.8-1.7 2.9-1.6 1.9-.9 1.9-.9 2-.9 1.9-.7 2-.7 2.1-.7 1.9-.5 2-.5 2-.4 2.1-.4 2.1-.3 2.1-.3 2.1-.2 2.1-.1 2.1-.1h2.1l2.1.1 2.1.1 2.1.2 2.2.3 2 .3 2.1.4 2.1.5 1.9.5 2 .6 2 .6 2.1.7 1.9.7 2 .8 2 .9 1.8.9 3.3 1.8 2.7 1.7 2.7 1.8 2.6 1.9 2.6 2 2.6 2.1 3.8 3.4 3.7 3.6 3.7 3.9 3.6 4.1 4.8 5.8 9.4 11.9 2.2 2.3 2.3 2.2 1.5 1.3 1.5 1.2 1.5 1 1.5.8 1.4.6 1.3.4 1.1.3 1 .1h.9l.8-.2 1.2-.4 1.4-.7.6-.4 1.2-.9 1.2-1.1 1.1-1.2 1.1-1.4 1-1.6.9-1.7.8-1.9.7-2 .6-2.1.5-2.2.4-2.3.4-3.5-2.4-1.7-2.6-2.1-2.6-2.2-2.5-2.2-2.4-2.3-2.3-2.3-2.3-2.3-4.3-4.7-14.2-16.2-4.1-4.3-2.1-2.1-2.1-2-2.2-2-2.2-1.9-2.3-1.9-2.3-1.8-2.4-1.7-2.5-1.6-2.6-1.5-2.8-1.5-2.9-1.4-3-1.3-3.2-1.2-3.5-1.1-3.8-1-4-.8-4.2-.7-4.4-.6-2.3-.2-4.6-.3-4.6-.2h-4.7l-4.6.1-4.6.3-4.5.4-4.4.6-4.2.7-4 .9-3.7 1-1.5.4-3.3 1.2-3.1 1.3-3 1.4-2.8 1.5-2.7 1.5-2.6 1.6-2.5 1.7-2.5 1.8-2.4 1.7-2.3 1.9-2.2 2-2.2 2-2.1 2.1-2.1 2.2-4.1 4.5-14.4 16.4-2.2 2.4-2.3 2.4-2.4 2.4-2.4 2.2-2.5 2.3-2.6 2.2-2.8 2.2-2.4 1.7.2 2.4.3 2.4.5 2.3.6 2.2.7 2 .8 1.9.9 1.8 1 1.7 1 1.5 1.1 1.3 1.2 1.2 1.2 1 1.3.8 1.4.7 1.2.4.8.2h.3z'/%3E%3Cg%3E%3Cpath class='st1' d='M240 120.6a16.7 16.7 0 0116.7 16.6 16.7 16.7 0 01-16.7 16.6 16.7 16.7 0 01-16.6-16.6c0-4.6 1.9-8.7 4.9-11.7a16 16 0 0111.7-4.9z'/%3E%3Cpath class='st2' d='M240 155.3a18 18 0 110-36.2 18 18 0 110 36.2zm0-33.2a15 15 0 1010.6 25.8c2.9-2.9 4.4-6.6 4.4-10.7 0-4-1.6-7.8-4.4-10.7a14.3 14.3 0 00-10.6-4.4z'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="TOT"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 122 201.3' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill:%23112053%7D.st1%7Bfill:%23fff%7D%3C/style%3E%3Cpath class='st0' d='M36.4 157.6c-.4-.1-1.3 0-2.1.8a8 8 0 00-1.9 5.8c0 .6.1 1 .3 1.5.3.9 1 1.4 1.6 1.6.7.1 1.4-.3 2.1-1a8 8 0 001.4-7.1c-.4-1-.8-1.5-1.4-1.6m55.4 9.4c-.1-3.5-.9-6.9-2-9.9-1.5-3.8-6.4-6.5-12.8-8a47.1 47.1 0 00-37.5 10c.4 1.5.3 3.3-.3 5 7.2 3.8 17.6 8 27.5 10.9 2.3-5.3 6.7-6.3 10.2-5.4l5.2 1.1 1.3.3c1.6.4 3.1 1.5 3.9 3 .6 1 1.2 2.8.8 5 1.2-.1 1.8-.3 1.9-.4a28 28 0 001.8-11.6zm-13.3 20.7a42 42 0 01-7.9-1.6 8 8 0 01-4.2-3.9c-.4-.8-.7-1.8-.7-3 0-.7 0-1.5.3-2.4-9.9-3-20.3-7.1-27.6-11-.3.5-.5.9-.9 1.3-.6.6-1.2 1.1-1.8 1.3a40 40 0 006.1 17 28.2 28.2 0 0017 12.9c2.3.5 5.3 1.2 8.1.6 10-2.2 18.2-9.1 22.2-18.2l-1.6.1c-2.2 6.9-7 7.1-9 6.9zm-46.6-28.1c.3-.7.7-1.4 1.2-2l1.3-1.1a27.8 27.8 0 017.3-14A31.7 31.7 0 0030 158c.2.5 1 1 1.9 1.6zm-.6 1.9c-.8-.6-1.5-1.1-1.9-1.6a34.1 34.1 0 00-.9 11.6c.5-1.9 1.4-3.9 2.8-6.1a7.4 7.4 0 010-3.9zm2.5 7.2c-.7-.2-1.3-.6-1.8-1.2-2.4 3.6-3.4 6.9-2.5 9.8A31.7 31.7 0 0057 199.7c-12.4-3.8-21.6-16.6-23.2-31'/%3E%3Cpath class='st1' d='M46.2 0C33.8 0 30.8 6.3 30.8 6.3s14.4-1 14.4 13c0 6.3-3.5 10.6-7.2 15.1-4.3 5.3-9.1 11.3-9.1 21.3 0 16.6 10.8 24.4 20.3 31.3 8.3 6 16.1 11.6 16.1 22.3 0 10.7-4.8 19-6.9 21.2-3.6 3.6-6.9 4.2-9.5 4.8-2.7.5-5.3 1-5.8 4.9-10 5.9-16 16.5-16 28v1.4a32 32 0 0010.6 22.7 33.3 33.3 0 0046.6-1.9 32.5 32.5 0 00-13-52.9l-.2-.1-.3-.1c-1.6-.6-3.4-1.2-3.4-5.2s1.8-4.3 5.4-4.9c2.2-.4 4.7-.9 7.3-2.4 4.5-2.8 5.4-6.1 4.6-6.9-1.1-1.1-2.4 1.2-7 2.6-1.6.5-3.3.8-4.5.8l-2.1-.2c2.4-4.5 5.1-8.2 5.2-8.2l.6-.8-.7-.7c-.9-.9-1.5-2.8-1.5-5.4 0-3.2.8-7.4 2.7-12 2.2-5.4 11.2-22.9 31.6-22.9h1.1V70c0-7.3-.7-13.9-2-19.8L108 49l-3.6.9c-.2 0-1.7.4-1.8.1-.1-.3 1.1-.9 1.5-1.1l3.5-1.6-.3-.9c-1.5-5-2.9-7.4-3-7.5l-.5-.8-.9.3a31.3 31.3 0 00-22.8 23.2c-1.1 3.3-1.7 5.1-2.9 5.1-3.5 0-6.4-2.9-7.3-3.8-10.7-10.5-9.9-18.1-8.6-29.6.5-4.1.9-8.6.9-13.9C62.2 6.1 57.1 0 46.2 0'/%3E%3Cpath class='st1' d='M60.1 201.2a33 33 0 01-33.4-31.6v-1.4c0-11.6 6-22.1 16-28.1.6-4 3.3-4.5 6-5h.2a16 16 0 009.2-4.7 34.2 34.2 0 006.8-21c0-10.6-7.8-16.2-16-22.1l-.2-.1c-9.5-6.9-20.2-14.7-20.2-31.4 0-10.1 4.8-16.1 9.1-21.4l.1-.1c3.5-4.3 7.1-8.7 7.1-15 0-4-1.2-7.2-3.5-9.4-4.1-3.8-10.5-3.4-10.5-3.4h-.5l.2-.4c.1-.3 3.2-6.5 15.6-6.5 11.1 0 16.2 6.2 16.2 19.7 0 5.2-.5 9.7-.9 13.9-1.2 11.4-2 19 8.5 29.4 1 .9 3.8 3.8 7.1 3.8 1 0 1.7-1.9 2.7-4.9 2.1-6.7 5.7-18 23-23.4l1.1-.3.6 1s1.5 2.4 3 7.6l.4 1.2-.2.1s-2 .8-3.5 1.6l-1.2.7 1.3-.2 3.7-.9.3-.1.3 1.4a93 93 0 012 19.9v1.4h-1.4c-20.4 0-29.1 17.4-31.3 22.7-1.8 4-2.8 8.3-2.8 11.8 0 2.5.5 4.4 1.4 5.2l.9.9-.7 1c-.5.6-2.8 3.9-5 7.9l1.7.1c1.2 0 2.9-.3 4.4-.8 2.1-.6 3.5-1.5 4.5-2.1 1.2-.7 2-1.2 2.7-.4.3.3.4.8.3 1.4-.2 1.5-1.6 3.9-5 5.9-2.6 1.5-5.2 2-7.2 2.4h-.2c-3.6.6-5.2.9-5.2 4.7 0 3.7 1.5 4.4 3 4.9l.7.2a33 33 0 01-9.9 64l-1.3-.1zM31.6 6.1c1.8 0 6.7.3 10.2 3.6 2.5 2.3 3.7 5.6 3.7 9.8 0 6.5-3.7 11-7.2 15.3l-.1.1c-4.2 5.2-9 11.2-9 21 0 16.4 10.6 24.1 20 31l.2.1c8.3 6 16.2 11.7 16.2 22.5s-4.7 19-7 21.3a16.1 16.1 0 01-9.4 4.8H49c-2.6.5-5.1 1-5.6 4.7v.1l-.1.1a32 32 0 00-15.9 27.7v1.3c.3 8.6 4 16.6 10.5 22.5a33 33 0 0046.2-1.8 32.3 32.3 0 00-12.9-52.5l-.1-.1-.3-.1c-1.6-.6-3.5-1.3-3.5-5.5s2.1-4.6 5.6-5.2h.2c2.1-.4 4.6-.9 7.1-2.4 3.2-1.9 4.5-4.2 4.7-5.5.1-.4 0-.8-.2-.9-.4-.4-.9-.2-2.1.5-1 .6-2.5 1.5-4.7 2.1-1.5.5-3.2.8-4.5.8l-2.2-.2-.4-.1.2-.3c2.2-4.1 4.7-7.6 5.2-8.2l.5-.6-.5-.6c-1-1-1.6-2.9-1.6-5.6 0-3.6 1-7.9 2.8-12.1 2.2-5.4 11.1-23 31.8-23h.9V70c0-7.2-.7-13.9-2-19.8l-.2-.9-3.4.8c-1.4.3-1.8.2-2 .1l-.2-.2c-.2-.5 1.1-1.1 1.7-1.4l3.3-1.5-.2-.7c-1.5-5.1-2.9-7.4-2.9-7.5l-.4-.6-.7.2C86 44 82.5 55.1 80.4 61.7c-1.1 3.4-1.8 5.3-3.2 5.3-3.6 0-6.5-2.9-7.5-3.9-10.8-10.6-9.9-18.3-8.7-29.8.5-4.4.9-8.8.9-13.9 0-13-5-19.1-15.7-19.1-10.3 0-14 4.4-14.9 5.8h.3z'/%3E%3Cpath class='st0' d='M89.8 157.1c-1.5-3.8-6.4-6.5-12.8-8a47.1 47.1 0 00-37.5 10c.4 1.5.3 3.3-.3 5 7.2 3.8 17.6 8 27.5 10.9 2.3-5.3 6.7-6.3 10.2-5.4l5.2 1.1 1.3.3c1.6.4 3.1 1.5 3.9 3 .6 1 1.2 2.8.8 5 1.2-.1 1.8-.3 1.9-.4 1.3-3.6 1.9-7.6 1.7-11.7 0-3.4-.7-6.8-1.9-9.8zm-11.3 30.6a42 42 0 01-7.9-1.6 8 8 0 01-4.2-3.9c-.4-.8-.7-1.8-.7-3 0-.7 0-1.5.3-2.4-9.9-3-20.3-7.1-27.6-11-.3.5-.5.9-.9 1.3-.6.6-1.2 1.1-1.8 1.4a40 40 0 006.1 17 28.2 28.2 0 0017 12.9c2.3.5 5.3 1.2 8.1.6 10-2.2 18.2-9.1 22.2-18.2l-1.6.1c-2.2 6.8-7 7-9 6.8zm-46.6-28.1c.3-.7.7-1.4 1.2-2l1.3-1.1a27.8 27.8 0 017.3-14A31.7 31.7 0 0030 158c.2.5 1 1 1.9 1.6zm-.6 1.9c-.8-.6-1.5-1.1-1.9-1.6a34.1 34.1 0 00-.9 11.6c.5-1.9 1.4-3.9 2.8-6.1a7.4 7.4 0 010-3.9zm2.5 7.2c-.7-.2-1.3-.6-1.8-1.2-2.4 3.6-3.4 6.9-2.5 9.8A31.7 31.7 0 0057 199.7c-12.4-3.8-21.6-16.6-23.2-31zm32.6-59.3c0 10.7-4.6 19.3-7.2 21.9-8.2 8.2-15 2.2-15.1 10.4a27.3 27.3 0 00-7.7 14.2h.2c.8.2 1.4.6 2 1.2A49.8 49.8 0 0177.4 147c3.9.9 7.2 2.3 9.7 4.5a32 32 0 00-16.3-13.1c-1.6-.6-4.5-1.2-4.5-6.4 0-9.7 10.7-2.2 17.8-12.7.4-.5-.2-1-.6-.6-2.1 2.1-7.4 3.5-10.2 3.5-2.8 0-3.8-.6-3.8-.6 2.6-5.1 5.9-9.6 5.9-9.6-6.6-6.5 4.5-42.2 33.7-42.2a88 88 0 00-2-19.6c-.7.2-6.2 1.5-6.4.3-.2-1 4.1-3.2 5.5-3.9-1.4-5-2.9-7.3-2.9-7.3-25 7.8-20 28.3-26.1 28.3-4 0-7.1-3.1-8.2-4.2-14.9-14.5-8-24.4-8-44C61 6.1 55.8 1.2 46.2 1.2c-9.6 0-13 4.1-13 4.1s13.2.4 13.2 14.1c0 14.3-16.3 18.3-16.3 36.4 0 30.3 36.3 29.7 36.3 53.6'/%3E%3Cpath class='st1' d='M66.8 201.5l-9.9-.9a32.8 32.8 0 01-28.3-23.1l-.3-1.4-.3 1-.6-5.5-.2-2c-.1-3.3.2-6.6 1.1-9.9l.4-1.7.1-.4a32 32 0 0112.1-16l.8.9a8 8 0 011.3-1.3c.2-4.7 2.8-5.2 5.7-5.8 2.7-.5 6-1.2 9.6-4.8a33.6 33.6 0 006.9-21.2C65.2 98.7 57.4 93 49 87c-9.5-6.9-20.2-14.6-20.2-31.2 0-10 4.8-16 9.1-21.2 3.7-4.6 7.2-8.9 7.2-15.2 0-12.6-11.7-13.1-12.2-13.1l-2.1-.1 1.3-1.6C32.3 4.4 36 .1 45.9.1 57 .2 62 6.3 62 19.4c0 5.2-.5 9.8-.9 13.9C59.9 44.8 59 52.4 69.7 63c1.1 1.1 3.9 3.9 7.5 3.9 1.3 0 2-1.8 3.1-5.2 2.2-6.7 5.8-17.8 22.7-23.1l.7-.2.4.6c.1.1 1.5 2.5 3 7.5l.2.8-.8.4c-1.7.8-3.4 1.8-4.3 2.5 1.4-.1 3.8-.5 4.5-.7l1-.3.2 1.1c1.3 5.9 2 12.6 2 19.8v1h-1c-20.7 0-29.6 17.8-31.9 23.2-3.5 8.5-3.2 15.2-1.1 17.3l.6.6-.5.7s-2.8 3.8-5.3 8.4l2.4.2c2.8 0 7.7-1.5 9.5-3.2.5-.5 1.3-.6 1.9-.1.6.5.7 1.3.2 2-3.7 5.5-8.5 6.4-12 7.1-3.6.7-5.5 1-5.5 5.1 0 4.2 1.9 4.8 3.5 5.3l.3.1c7 2.5 12.9 7.3 16.9 13.6l3.5 5.6-1.2-1 .4.9a31.2 31.2 0 01.3 22.3l-.1.2-.1.2-.3.2.3-.1-.8 1.8A33 33 0 0167 200.3c-1.7.4-3.5.3-5.2.1l5 1.1zm-30-32.4c.7 5.6 2.8 11.1 5.9 15.9a27.6 27.6 0 0016.4 12.5c2.5.6 5.2 1.1 7.7.6a31 31 0 0017.1-10.5 9.2 9.2 0 01-5.4 1.1c-2.7-.3-6.4-1-8.1-1.6a9 9 0 01-4.8-4.4c-.5-1-.8-2.1-.8-3.4l.1-1.8a169 169 0 01-26.1-10.3l-.5.6c-.5.6-1 1-1.5 1.3zm-4.6 0c-1.8 3.1-2.4 5.7-1.7 7.9a31.1 31.1 0 0017.9 19.6 39.4 39.4 0 01-15.5-27c-.2-.3-.5-.4-.7-.5zm46.4 17.6c2.1.2 6.1-.3 8-6l.2-.7h.2l.2-1.1c.4-2.2-.3-3.7-.7-4.4a5.4 5.4 0 00-3.3-2.6l-1.2-.3-5.3-1.2c-1.5-.4-6.4-1.1-9.1 4.8l-.4.8-.2.8c-.2.8-.3 1.5-.2 2.1a9 9 0 00.6 2.6 6.6 6.6 0 003.6 3.4c1.5.8 5.1 1.5 7.6 1.8zm-4-18.4c.9 0 1.7.1 2.5.3 2.3.6 3.9.9 5.2 1.1l1.3.3a7.9 7.9 0 015.7 7.9c1.2-3.5 1.7-7.2 1.5-10.9-.1-3.3-.8-6.6-2-9.6-1.2-3.2-5.6-5.9-12.1-7.3a46.4 46.4 0 00-36.2 9.4c.2 1.3.1 2.7-.2 4.1 6.9 3.6 16.6 7.4 25.8 10.2 2.1-4 5.4-5.5 8.5-5.5zm-42.5-2.5l.7 1c.3.5.7.7 1.2.9l.7.2.6-.3c.5-.2.9-.6 1.4-1.1l.8-1.1.4-.8.2-.8c.5-1.5.6-3.1.2-4.5l-.1-.6.1-.1-.6-.7c-.4-.5-.8-.8-1.3-.9h-1.2v.1l-.3.2-1.1.9c-.5.6-.8 1.2-1 1.7l-.4 1.1-.1.6a8.3 8.3 0 00-.1 3.5l.1.4-.2.3zm-2.2-4c-.4 1.6-.6 3.3-.7 4.9l.9-1.5c-.2-1-.2-2.2 0-3.3l-.2-.1zm1.2-4l.5.4.8-1.1c.4-.4.7-.8 1.2-1.1a31 31 0 012.1-6.3 27 27 0 00-4.6 8.1zm6.5-2.5l1.1.7a50 50 0 0138.9-9.7c2 .5 3.9 1.1 5.5 1.8a30.7 30.7 0 00-12.7-8.5l-.3-.1c-1.7-.6-4.8-1.6-4.8-7.2 0-5.8 3.5-6.4 7.2-7.1 2.7-.5 5.6-1 8.3-3.4a21 21 0 01-7.5 1.7c-3 0-4.2-.7-4.3-.8l-.8-.5.4-.8c2.1-4.1 4.5-7.6 5.5-9.1-2.5-3.4-2-10.9 1.2-18.8 4.8-11.6 15.8-24 32.7-24.4-.1-6.3-.6-12.2-1.7-17.4-1.6.4-4.8.9-6 .2-.4-.2-.6-.5-.7-.9-.3-1.2 1.5-2.8 5.3-4.6-.8-2.8-1.7-4.6-2.1-5.5-15.3 5-18.5 14.9-20.7 21.5-1.2 3.7-2.2 6.6-5 6.6-4.4 0-7.8-3.3-8.9-4.4C57 53.1 57.9 44.7 59.1 33c.4-4 .9-8.5.9-13.7 0-12-4.1-17.1-13.8-17.1-5.3 0-8.7 1.3-10.5 2.4 5 1.1 11.6 5 11.6 14.8 0 7.1-3.7 11.6-7.6 16.5-4.3 5.2-8.6 10.7-8.6 20 0 15.5 9.8 22.6 19.4 29.5 8.7 6.3 17 12.3 17 24.1a36 36 0 01-7.5 22.7c-4.1 4.1-7.9 4.8-10.7 5.4-3 .6-4.1.8-4.2 4.3v.4l-.3.3a25.2 25.2 0 00-7.2 12.7zm46.6-35.8c0 .1 0 .1 0 0 0 .1 0 .1 0 0zm-1-.7c0 .1 0 .1 0 0 0 .1 0 .1 0 0z'/%3E%3Cg%3E%3Cpath class='st1' d='M49.1 19.4c0-1.8-.2-3.4-.6-4.8 0 0 2.9-.2 2.9-3.6 0-2.8-1.9-4.8-2.4-4.8-.4 0-.5.5-1.4.5-2.2 0-2.4-2.8-2.4-2.8h1c6.3 0 12.1 1.9 12.1 15.5 0 5-.5 9.5-.9 13.5-.4 3.9-.8 7.5-.7 11.1 0 0-10.9-1.2-10.9-9.4 0-5.3 3.3-6.6 3.3-15.2z'/%3E%3Cpath class='st0' d='M58.8 46.2l-2.3-.3c-4.4-.5-12.7-3.5-12.7-11.3 0-2.7.8-4.6 1.5-6.4a20 20 0 001.3-13.1l-.6-2.3 2.4-.1c.6-.1 1-.6 1-1.6 0-1.1-.4-1.9-.8-2.5l-1.1.1c-2.8 0-4.2-2.4-4.4-4.6L43 2.2l2-.3 1.3-.1c6.5 0 14.1 2 14.1 17.5 0 4.8-.4 9.1-.8 12.9l-.1.7c-.4 3.8-.8 7.4-.7 10.8v2.5zm-7.9-30.3c.2 1.1.3 2.3.3 3.5 0 5.2-1.2 8-2.1 10.3a11 11 0 00-1.2 4.9c0 4.3 4.2 6.1 6.9 6.9.1-2.9.4-5.8.7-8.8l.1-.7c.4-3.7.8-7.9.8-12.5 0-7-1.5-10.4-3.7-12a9 9 0 01.8 3.6c-.1 2.4-1.3 4-2.6 4.8z'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="BOU"] {
  background-image: url("data:image/svg+xml,%3Csvg id='svg2' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 190 250' xml:space='preserve'%3E%3Cdefs%3E%3Cpath id='SVGID_1_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='path14' clip-path='url(%23SVGID_2_)' fill='%23FFF' d='M95 124.6'/%3E%3Cdefs%3E%3Cpath id='SVGID_3_' d='M8.6 28.6v62.9c13.3 109.3 86.9 152 86.9 152s80.2-55 85.8-152V28.6H8.6z'/%3E%3C/defs%3E%3CclipPath id='SVGID_4_'%3E%3Cuse xlink:href='%23SVGID_3_' overflow='visible'/%3E%3C/clipPath%3E%3ClinearGradient id='polygon29_1_' gradientUnits='userSpaceOnUse' x1='-363' y1='694.3' x2='-362.2' y2='694.3' gradientTransform='scale(292.3304 -292.3304) rotate(68.9 324.8 611.3)'%3E%3Cstop offset='0' stop-color='%238b0304'/%3E%3Cstop offset='1' stop-color='%23ed1c24'/%3E%3C/linearGradient%3E%3Cpath id='polygon29' clip-path='url(%23SVGID_4_)' fill='url(%23polygon29_1_)' d='M159 301.6l-222.2-86L31-29.3l222.2 85.8z'/%3E%3Cdefs%3E%3Cpath id='SVGID_5_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_6_'%3E%3Cuse xlink:href='%23SVGID_5_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='path39' clip-path='url(%23SVGID_6_)' fill='%23FFF' d='M112.8 118'/%3E%3Cdefs%3E%3Cpath id='SVGID_7_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_8_'%3E%3Cuse xlink:href='%23SVGID_7_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='polygon41' clip-path='url(%23SVGID_8_)' fill='%23FFF' d='M110.1 117.6z'/%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_9_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_10_'%3E%3Cuse xlink:href='%23SVGID_9_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='path43' clip-path='url(%23SVGID_10_)' fill='%23FFF' d='M75.5 110.5l-19.4-.5-.3 7.8s-2.9-.2-5.9 0c-3 .1-3.2 4.3-3.2 4.3s-2.3-.1-4.8.5c-2.5.7-2.2 4.6-2.2 4.6s-6.5.1-8.7 2.6a9.6 9.6 0 00-.3 10.8c2.2 3 14.5 20.8 17.7 27.9 3.2 7 3.7 30.9 3.7 30.9l.2.5c11 13.8 25 27 42.7 38.9 6-4 11.6-8.2 16.7-12.5L79.5 189l2-1.7h4.9c2 0 4.5-.2 7.6-1.9a6.2 6.2 0 002.7-2.8c.6-1.2.8-2.6.8-4s-.3-2.7-.7-3.5c-.6-1.2-2-2.2-3.5-2.8-1.5-.6-3-.9-3.6-1h-.2l-1.9-.3-6-6.7 2.8-2.5 5.1 5.7h.4c.4.1 1.9.3 3.6.8l-7.1-8.2 2.8-2.5 42.6 49.3 1.5-1.7-42.4-49 2.9-2.6 42 48.7 1.4-1.7-41.7-48.4 1-.9s1.4.4 3.7.5l39.5 45.7 1.4-1.8-38-44c1.3 0 2.8-.3 4.3-.7l36 41.6 1.3-1.8-35-40.7a7 7 0 002.8-2.5l34.4 40 1.3-2-34.8-40.3c.7-2.2.5-4.5.4-5.4l-1.9-5.6v-5.8l41.7 48.4 1.4-2.4-49.8-57.9-1.5-.4c-2-.6-4-1.3-5.9-2.2l-1-.5a47.6 47.6 0 01-8-4.8l-1-.8a48 48 0 01-3.6-3.1l-.3-.2c-4.6.8-8.4 6-8.4 6'/%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_11_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_12_'%3E%3Cuse xlink:href='%23SVGID_11_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='path53' clip-path='url(%23SVGID_12_)' fill='%23FFF' d='M13.6 115.1a200 200 0 0010 35.3l1.3 2.9-1.2-2.9c-4.9-12.5-8-24.5-10-35.3'/%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_13_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_14_'%3E%3Cuse xlink:href='%23SVGID_13_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='path55' clip-path='url(%23SVGID_14_)' d='M0 13.6v62.7a135.5 135.5 0 000 5.5v.1a212.9 212.9 0 0014.2 72.2c12.3 31.6 35 66.4 76.1 93.8l4.7 3 4.7-3a195.7 195.7 0 0073.6-87.7v-.1l.1-.3A206 206 0 00190 79V13.6C128-4.5 62-4.5 0 13.6m155 155.6l-13.8-15.5V108c7-7.6 10.4-17.9 10.2-29.1a42.5 42.5 0 00-10.2-28.3V35.4l13.8 2.3v131.5zm-28.2-32.3l-1.3-1.4-12.7-14.8h1.6c3.9-.2 8.9-1.8 12.4-3v19.2zm-14.9-8.4c.2 1.5 0 5.8 0 5.8l1.9 5.6c.1 1 .3 3.2-.4 5.4l-1 2.3a7 7 0 01-2.8 2.5l-2.2.9c-1.5.4-3 .6-4.3.8h-3c-2.2 0-3.6-.5-3.6-.5l-1 .9-1.7 1.4-2.9 2.5-1.7 1.5-2.8 2.5 10.2-8.9-15 13 6 6.8 1.8.3H89.7c.6.1 2.1.4 3.6 1s3 1.6 3.5 2.8c.4.8.7 2.1.7 3.6 0 1.3-.2 2.7-.8 3.9a6.1 6.1 0 01-2.7 2.8c-3.1 1.7-5.6 2-7.6 2l-3.6-.2H81.5l-2 1.8 32.2 37.3A201 201 0 0195 238.8a184.7 184.7 0 01-70.2-85.5l-1.1-2.9a200 200 0 01-13.5-66V43c37.8-9.8 78-12.7 116.6-9.2V40c-4.8-1.9-11-3.7-16.2-3.8a40.4 40.4 0 00-40 42.1 42.5 42.5 0 0038 42.2m60.2 23.3h.2V40.3l10.8 2.7v41.5c-.4 13.9-2.7 35.4-11 59.3'/%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_15_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_16_'%3E%3Cuse xlink:href='%23SVGID_15_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='path65' clip-path='url(%23SVGID_16_)' fill='%23FFF' d='M80.1 97.4l14.6 4.2 8.7 13.2a36.2 36.2 0 0016 .1l8.2-12.8 14.7-4.2c2.7-4.6 4.4-10 4.8-15.6L137.6 70l.4-15.7a36 36 0 00-13.1-9.9l-14 5.3-14.6-5.6a35.2 35.2 0 00-13 9.7l1 15.4-9.4 12.3c.6 5.7 2.4 11 5.2 15.8m31-34.5l15.6 11.6-5.6 18.7-19.2-.1-6.2-18.8L111 63z'/%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_17_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_18_'%3E%3Cuse xlink:href='%23SVGID_17_' overflow='visible'/%3E%3C/clipPath%3E%3Cpath id='polygon67' clip-path='url(%23SVGID_18_)' d='M126.7 74.3L111 62.7 95.7 74 102 93h19.2z'/%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_19_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_20_'%3E%3Cuse xlink:href='%23SVGID_19_' overflow='visible'/%3E%3C/clipPath%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_21_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_22_'%3E%3Cuse xlink:href='%23SVGID_21_' overflow='visible'/%3E%3C/clipPath%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_23_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_24_'%3E%3Cuse xlink:href='%23SVGID_23_' overflow='visible'/%3E%3C/clipPath%3E%3C/g%3E%3Cg%3E%3Cdefs%3E%3Cpath id='SVGID_25_' d='M0 0h190v250H0z'/%3E%3C/defs%3E%3CclipPath id='SVGID_26_'%3E%3Cuse xlink:href='%23SVGID_25_' overflow='visible'/%3E%3C/clipPath%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="BRI"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 250 250' xml:space='preserve'%3E%3Cstyle%3E.st1%7Bfill:%23fff%7D%3C/style%3E%3Ccircle transform='rotate(-84.1 125 125)' cx='125' cy='125' fill='%23004e9e' r='125'/%3E%3Cpath class='st1' d='M231 125a106 106 0 11-212.1-.1 106 106 0 01212.1.1zm-186 .7a80 80 0 10158.7-15v-.3c-.3.3-.8-6.1-1.5-6.5l-.1-.3a80.1 80.1 0 00-156.6 12.6l-.1.5c-.2 0-.2 8.4-.4 8.5v.5z'/%3E%3Cpath class='st1' d='M243.3 110a116.4 116.4 0 00-18.2-6.9l-11.7-3.4a94 94 0 00-16.8-3.1c-5.3-.3-8.8.5-13.1 1.6-7.9 1.9-18.9 6.8-25.1 9.9-6.2 3.1-13.3 6.9-13.3 6.9a110 110 0 0014.3 8.5s-1.2.9-4.5-.9c-2.6-1.5-5.3-3.1-7.4-4.5-5.3-3.5-12.8-9.1-22.7-15.1-9.4-5.6-11.6-6.5-19.3-5.9-9 .7-26.6 6.7-42.3 11.4a216.5 216.5 0 01-56.3 10.3 60 60 0 00-3 .3c-.5.1-.5.3-.2.6.7.7 2.3 1.9 4.9 2.8a83.9 83.9 0 0025.6 1.5c13.6-.9 26.7-2.9 37.3-3.8 10.5-.9 21.5-1.8 28 1.5s8.9 5.8 8.9 5.8-1.4.7-4.5-2l-16.8 4.4a91.8 91.8 0 01-30.4.9c-10.7-1.3-16-2.5-18 0-2 2.4-.6 7.9 5.1 13.7 5.7 5.8 13 8.1 19.2 8.2 5.1.1 8.4-2.3 16.6-4.3 8.2-2 13.8-.7 24 1.2s22.4 5 32.8 5.5c10.5.4 20.2-2.8 29.1-5.3 8.5-2.4 19.6-6.6 28.7-7.9l1.3-.2c9.4-1 15.4 1 15.4 1s.3-4.1-4.8-6.7c-4.8-2.4-7.9-2.5-9.8-2.8l-.3-.1c-1.9-.4-4-2.1-7.5-4.8-3.5-2.7-9.7-7.5-16.8-7.3 0 0 2.3-1 5.3-3s9.9-6.2 17.8-9.9c5-2.3 9.9-4.3 14.1-3.5.1 0 8.1 1.6 17.5 3.7a228 228 0 0015.7 3.1c3.2.5 3.8.6 3.8.3-.1-.6-1.1-.9-2.6-1.7zm-63.2 19.6c2.3.1 3.6 2.3 3.6 2.3s-.6 2.2-3.5 2.4c-2.8.2-3.8-2.4-3.8-2.4s1.5-2.4 3.7-2.3z'/%3E%3Cpath d='M194.7 96.5h2a94 94 0 0116.8 3.1c2.5.6 7 2.1 11.7 3.4 5.2 1.5 9.8 3.2 13.3 4.7l4.9 2.2c1.5.8 2.4 1.2 2.4 1.5 0 .1-.1.2-.4.2l-3.4-.5c-3.3-.5-8.6-1.5-15.7-3.1a685 685 0 00-19.5-3.9 32 32 0 00-12.2 3.7 131 131 0 00-17.8 9.9c-3 2-5.3 3-5.3 3h.2c7 0 13.2 4.7 16.6 7.4 3.5 2.7 5.6 4.3 7.5 4.8l.3.1c1.9.4 5 .4 9.8 2.8 5.1 2.6 4.8 6.7 4.8 6.7s-3.8-1.3-10.2-1.3l-5.2.3-1.3.2c-9.1 1.2-20.2 5.4-28.7 7.9-8.3 2.4-17.4 5.4-27.1 5.4h-2c-10.5-.4-22.6-3.6-32.8-5.5-6.6-1.2-11.3-2.2-16-2.2a33 33 0 00-8 1c-8.1 2-11.3 4.3-16.3 4.3h-.3a27.8 27.8 0 01-19.2-8.2c-5.7-5.8-7.1-11.2-5.1-13.7.8-1 2.3-1.4 4.5-1.4 3 0 7.4.7 13.6 1.5 4.9.6 9.5.8 13.6.8 6.9 0 12.7-.7 16.8-1.7l16.8-4.4c2 1.8 3.3 2.1 4 2.1l.5-.1s-2.4-2.5-8.9-5.8a30.8 30.8 0 00-13.6-2.3c-4.6 0-9.5.4-14.4.8-10.5.9-23.7 2.9-37.3 3.8l-8.3.3c-7.8 0-14.4-.8-17.3-1.8-2.7-.9-4.2-2-4.9-2.8-.1-.4-.1-.7.4-.7a60 60 0 013-.3c2.5-.2 6.3-.4 11.7-1 20.4-2.3 32.1-5.5 44.6-9.3C79 103.7 96.6 97.6 105.6 97l3.5-.2c5.2 0 8 1.4 15.8 6.1 9.9 5.9 17.4 11.6 22.7 15.1 2.1 1.4 4.8 3.1 7.4 4.5 1.7.9 2.8 1.2 3.5 1.2.7 0 6.8-2.1 6.8-2.1-5.1-2.4-11.6-7.5-14.4-9.4 0 0 1.4-.9 7.6-4.1 6.2-3.1 17.1-8 25.1-9.9 3.8-1 6.9-1.7 11.1-1.7m-14.8 38.3h.4c3.4-.3 4.1-2.9 4.1-2.9s-1.5-2.6-4.3-2.7h-.2c-2.5 0-4.2 2.8-4.2 2.8s1.2 2.8 4.2 2.8m14.8-48.3c-5.3 0-9.3.9-13.5 1.9-8.6 2.1-20 7.1-27.2 10.7l-9.3 4.8c-4.1-2.9-9-6.2-14.7-9.6-8.2-4.9-12.9-7.5-21-7.5l-4.2.2c-8.3.6-21.1 4.6-34.7 8.8l-9.7 3a205.6 205.6 0 01-53.3 9.8l-.9.1H6l-3.2.3c-4 .4.3 3.5-1 7.1-1.4 3.7-.5 7.7 2.2 10.7 2.1 2.3-2.3 3.7 1.5 5a74.2 74.2 0 0020.4 2.3h1.9c.2 4.9 2.7 10.9 8.8 17.1 6.8 7 16.3 11.1 26.1 11.2h.5a31 31 0 0011.6-2.5c2.1-.7 4.2-1.5 7.1-2.2 2-.5 3.8-.7 5.7-.7 3.2 0 6.9.7 11.9 1.6l2.3.4 8.2 1.6c8.2 1.7 17.5 3.6 26 4l2.4.1c10.1 0 19.2-2.7 27.2-5l2.7-.8 8-2.5c6.4-2 13.6-4.3 19.2-5.1l1-.1 4.1-.2c4 0 6.6.7 7.1.8l12.3 4.5.8-13.2c.4-5.4-2.6-12.6-10.3-16.4-5.4-2.7-9.3-3.2-11.6-3.6h-.3a40 40 0 01-3.7-2.8l-.3-.2-.9-.7 5.2-2.6c1.8-.8 6-2.8 8-2.8h.1l17.1 3.6c6.9 1.6 12.6 2.7 16.4 3.3l.4.1c2.3.3 3.4.5 4.5.5 5.5 0 2.1-3.8 2.5-9.1.3-4.5-1.7-8.7-1.7-11.1l-.8-.4c-1.3-.7-.5-1.4-3-2.5-3.2-1.4-8.3-3.3-14.4-5.1l-5.6-1.6a98.7 98.7 0 00-25-5.2h-2.7z' fill='%23004f9e'/%3E%3Cg%3E%3Cpath d='M196.2 133.2c0 .8-.1 1.8-1 2.4-1.6 1-4.8 1.8-7.4 1.8-2.7 0-4.7 1.2-4.7 1.2s3.7-.1 6.4.5c2 .5 3.5 1.1 4.4 2.1l.2.4 1.3-.2c9.4-1 15.4 1 15.4 1s.3-4.1-4.8-6.7c-4.8-2.4-7.9-2.5-9.8-2.8v.3z' fill='%23f8ac00'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="CRP"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 200 250' xml:space='preserve'%3E%3Cg fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath fill='%23A7A9AC' d='M192.2 159.8h-.3c-2-2.1-4-5-6-7l-.1-.8v-1s-.1-.3-.3-.3h-2.7c-.2 0-.3.2-.3.3l.1 1.7h-.1c-2.1 2-4.2 5-6.3 7l-.1.1v2l1.5-.5.4-.2v29.5V170.8c-1.7 1.9-6.1 5.8-7.8 7.4l-2.6 2.4c-8.8 8-18.7 14-29.3 19v-6.7h-16.8a21.3 21.3 0 00-42.5-.8H62.6v7.9-.5c-10.6-4.9-20.6-11-29.4-19v.1l-2.5-2.4c-1.8-1.6-6.2-5.5-7.9-7.4v18.9-28.6l.4.2 1.5.6v-2-.1c-2.2-2-4.2-5-6.4-7V151s0-.3-.2-.3h-2.8c-.2 0-.2.2-.2.3v1l-.1.8c-2 2-4 4.9-6 7h-.4v2a23.7 23.7 0 012-.7h.2v43l12-2v-1 .6H26c5.4-.6 10.5-.3 15.6.7h2.7c3.5.7 7 1.7 10 3.3a1059.4 1059.4 0 018.3 4.3v.2s8.6 6.1 17.8 8.8h1.1c6 2.5 12.2 4.3 19.2 4.5 6.8.2 13.5-1.3 20-3.7a69.4 69.4 0 0017.6-8.8v-.2l1.6-1 6.6-3.3c11.3-5.6 28-4.8 31.5-4.6v.2l12 2v-43h.2a21 21 0 012 .8v-2zm-53.9 40.4v.6-.6z'/%3E%3Cpath fill='%23004990' d='M200 211.1l-1.6-1c-12.7-8.6-31.8-8-46-4a49.8 49.8 0 00-12.1 5.2c-2.9 1.8-5.6 3.5-8.6 5.1a64 64 0 01-31.3 8.7c-10.4-.3-18.7-4-28-8.3-5.5-2.6-11-5.5-16.6-8a57 57 0 00-31.7-5.3 78 78 0 00-21.8 6l-2.2.9c-.1 0-.2.2 0 .3l1.5 1.7a33 33 0 017 18l.2 1.9v.6c.7 2 4 3.2 9.2 1.9 0 1.6 0 3.2.3 4.8 2.3-2 5.5-1.7 8.4-1 2.4.7 4.8 1 5.2-2.1.1-1.6-.7-2.5-1.7-3.3a21 21 0 01-4.3-5 67.2 67.2 0 0132.6 8.8 74.6 74.6 0 0041.9 13 86.4 86.4 0 0036.3-9.8c7.2-3.6 14.7-7.3 22.4-9.8a43 43 0 0115-2.5 13 13 0 01-4.3 5.7c-1 .7-2 1.3-2 3 0 3.3 2.7 3.2 5 2.7 2.9-.7 6-.8 8.5 1.4l.3-5c5.6 2 9.4.4 9.6-1.7l.3-2.8c.7-6 3.4-13.6 7.3-18.4l1.2-1.5v-.2z'/%3E%3Cpath fill='%23FFF' d='M100.2 176.7a18 18 0 10-.5 35.8 18 18 0 00.5-35.8zm14 10c.1.1.1.3 0 .4.1-.1.1-.3 0-.4z'/%3E%3Cpath fill='%23004990' d='M183.6 31.6c-3-1-20.8-1.8-31.5 5.2-.2.2-.3 0-.2-.2a45.2 45.2 0 0123.3-17.9c.2 0-.1-.6-.4-.7a42.3 42.3 0 00-30.3 9.5c-7 5.5-10.8 4 .2-6.6 1.8-3.6 4.4-7 7.1-10.2.3-.3-.1-.6-.5-.4-13.8 6.3-25.8 16.4-40.4 27.2a59 59 0 00-4.6 14.2c-1.1 5-4 28.2-5 32.2-1.5-2.5-2.9-5-3.9-7.2a14.9 14.9 0 00-7-7.8C68.5 56.3 59 35 66.7 1.1c.3-1.3 0-1-.6-.4a57.5 57.5 0 00-14 38.1C46 27 43 14.3 44.2.3c0-.3-.1-.4-.5 0A62 62 0 0035.1 45a28 28 0 01-8-12.5c-1.8-4.3-3-10.2-5-18C19.9 20 20 48.3 36.8 65.9l-.1.2a289 289 0 00-16.9-3.3c10.6 15.7 27.8 46 59.2 51.6-11.4 7.4-22.8 5-34.9-4 1.4 3.8 5.1 6.8 8 9.9-8.2-.5-17-3-24.8-6.9 3.9 6.6 6.6 14.6 14.5 22.2a73 73 0 0017.8 4l6.5 1.6c6.5.7 15.6.6 14.5 1.4-.2 0-.2 1-.3 3.8 0 0-.2 0-.1.1 1.3 2.3 1.3 5.6 1.3 5.8a7.4 7.4 0 003.5 4.9c1 .7 2 1.5 2.3 2.6l2 5.9c.4 1.1.2 2.4-.3 3.3-.5 1-2.2 2.3-3 2.8-1.9 1-5 3-2.2 7.6 0 .2.3.2.3 0 10.4-14 26.4-5 26.5-5 0-2.4-1.4-4.6-3.5-6.6a56 56 0 00-11.5-1.6c-.6 0-1.2-.4-1.7-.8a7 7 0 01-1.4-2.8c-.1-.4.1-.5.4-.3.7.6 1.8.9 2.8 1 .2 0 .3-.2.2-.3-.3-1.7.2-4.7.8-4.6.2 0 .3-.1.2-.3-1.3-4-2.2-8 .5-11.3 0 0 .1-.1.2 0 .8.6 3.4 7.5 2.2 7.1-.2 0-.3 0-.2.2a12 12 0 003.7 4.5c.2.2.4.4.7.4 2.4.7 4.7 2 4.5 5.2 0 .2-.3.4-.5.3-2.3-1.5-4.1-1-6.9 1-.2.2-.1.3 0 .3 2.4-.2 5 .3 7 1.2 4.6 2.1 7 9.8 7 10.5 0 .2 2.7 3 2.8 2.9 2.5-2.3 3.8-4.9 2.7-8a4 4 0 00-1.3-1.8c-3.2-2.5-5-4-6-6.2l-1.4-4c0-.1 0-.3.2-.2l1.6.3c.1 0 .2 0 .2-.2-.8-2.5 5-19.8 8.5-22 .2 0 .2.2.2.3 0 .7 0 1.4.5 2h.2c.7-1.7 2.1-2.5 3.7-3 .4-.2.6 0 1 0 1.7.9 4.2 1.9 5.2 2.3.3 0 .5.4.5.7.3 1.4 1 2.2 2.1 3l4.5 3c.1 0 .1.1 0 .2-.3.8-1.4 1.5-2 1.6 1.8 1.5 6.9.7 8.3-1.8.3-.7.5-1.3.5-2 0-1.8-.6-3.8-.9-5.8a3 3 0 01.2-2l.9-2.9c.1-.7.2-1.4.1-2.2-1-6.9-7-13.6-11.8-18.6.1 1.3 0 2.5.3 3.7l-3.6-2-1.1-2.8c-.7-1-1.2-2-1.6-3-.2-.4-.2-.8 0-1.1 1.4-5.4 2.8-10.7 5.5-15.6 3.4-6.1 7-12.8 12.4-17.9 1.5-17.4 14.8-32.4 36.3-42 .3-.1.5-.6 0-.8z'/%3E%3Ccircle fill='%23C41230' cx='100' cy='194.7' r='12.3'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="NEU"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 708.7 708.7' xml:space='preserve'%3E%3Cstyle%3E.st0%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%23afafaf%7D.st1%7Bfill:%23efb600%7D.st1,.st4%7Bfill-rule:evenodd;clip-rule:evenodd%7D.st6%7Bfill:%23efb600%7D.st7%7Bfill:%23afafaf%7D%3C/style%3E%3Cpath d='M2860 224c1 0 0 0 0 0zm0 0c1 0 0 0 0 0zM356 295h-2a124 124 0 00-31 3c-6 2-10 6-24 9a46 46 0 01-25-3l-32-1h-2c0 3 13 68-3 92-6 8-14 33-16 57v32a74 74 0 0023 48c15 13 48 32 48 32 38 20 45 30 53 38l6 7c1 2 3 4 5 4l4-4 6-7c9-8 15-18 53-38 0 0 33-19 48-32a75 75 0 0023-48v-34c-2-23-10-47-16-55-16-24-3-89-3-92h-1l-33 1s-8 4-18 4l-7-1c-14-3-18-7-24-9a130 130 0 00-32-3z'/%3E%3Cpath class='st0' d='M323 294l-10-11-10-5c-2-1-2-3-5-4a20 20 0 00-13-11c-3 0-5-3-8-3l-1-1h-1l-1-1h-2l-2-2c-2 0-3-2-5-3h-3c0-1-2 0-1-1l-9-1v1c-5 1-9 7-12 12-3 7-5 15-9 21l-1-1c-4-13-12-24-22-33l-4-2c-2-1-2-3-4-3v-1c-2 0-4-2-5-3l-5-3-6-4-3-1-3-3 2-2c6-2 8 4 12 6l4 4c3 2 8 3 12 3 2-2 3 2 5 3h4v1h1v-1l1 1h1c0-2 3-2 3-4 1-2 1-5-2-6-2-2-3 2-4 2l-3-3c1-2 3 0 3-1 2 1 3-3 4 0l2-1c7-4 1-9 2-14-1-5-4-8-7-12a28 28 0 01-6-6l-12-11-1-1a33 33 0 00-10-12l4-5c3-4 3-9 1-13l-2 1-5 3v-7-4c-2-1 0-3-2-5l-5 8-2 1-2 3-3 4-3-2c-2-2-2-5-1-7 0-2 3-4 1-5-1-1-3-1-3 1-2 0-3 1-3 2-3 1-3 5-5 6l-2-2-5-1h1-3c-2 2 1 4 0 6-1-2-3-1-3-2h-1l-1-1c-2-1-3 2-3 3l1 2v4l-1-1h-6v5h-4v5h-1l-3 1c-1 2 1 4 1 6h-1c-3 0-3 3-4 5-1 0-3 1-3 3 0 1 2 2 1 3l-5 4c0 4-2 6-5 8-1 2 1 2 1 2l1 1-2 3c-1 1 0 3 1 4v-1l1 1 1-1 1 1-3 8c-1 0-2 0-2 2 1 3 5 0 7 1 0 2-3 3-4 4s-2 3-3 1v2l6 2h2l1-1h1c-2 4-1 8-3 11 0 2-2 1-2 3h-3v1a9 9 0 008 2h1l1 6c1 9 12 15 18 19s11 10 12 17a24 24 0 011 15c0 5-3 11-8 12-1 1-4 0-3 2a14 14 0 014 15c-2 4-4 9-9 10-1 0-2 0-2 2 3 3 6 7 5 12a14 14 0 01-5 5l-4 2c-2 3 2 5 2 8 1 2 2 5 0 7-1 1-1-1-2-1a75 75 0 01-17-14l-3-4-4-7-3-9c-4-9-3-20-3-31l1-8 1-19c0-2 0-5-2-5l-1 4c-1 1 0 3-2 4 0 4-4 6-6 9l-1-5-2 1c-5 5-8 12-10 18-1 1 0 3-2 3v-2l-2-2c-2 7-3 13-3 20-2 2-1-2-3-2 0 9 0 16 2 24l4 10-5 1c-1 2-4 3-7 3v2c4 3 5 9 9 13l-1 1v-1l-1 1c-9 3-10 13-15 19-1 1-3 1-3 3h3c0 2 3 0 2 3-1 5-1 10-5 14l1 3c1-1 2-2 3-1s3 3 2 5c2 3 2 6 1 10 0 2 0 6 2 7l1-3h1l1 1c4 6 11 8 15 15 3 3 2 7 3 9 7-9 2-23-1-32-1-5-3-11-1-17h1c1-2 1-5 4-6 0-2 2-3 3-5l4-2 3-1h18l1 1c1-3 2 0 4-1 1 2 4 1 5 3-2 3-6 5-9 4v2c2 3 6 5 6 9s-1 9-4 11l-5 3 1 3c4 0 6 3 7 6 1 4-1 7-4 9 0 3 4 4 5 6 3 10 3 20 8 28a77 77 0 0010 16 37 37 0 007 6c2 2 5 2 6 5 3-1 4 2 7 2l1 1c1-1 3 1 4 1h5c6 2 12 0 17 0h1l15-5c1-1 1-2 3-2l9-7v-1c1-2 3-3 3-5l4-9c1-5 4-8 3-13h1l2-10-2-2c1-6-2-12-3-18-2-4-4-9-7-12-1-4-5-7-7-11l-3-4h-1l-7-7c0-2 2-4 4-6l9-12c7-8 12-17 17-26 14-24 23-60 27-76v-13c-1-3 1-6 1-9l5-6 7 2 6 4c3 2 5 7 9 7h2l2 7-1 7c-1 1 1 2 2 3l4-1 6 2c2-2 4 1 7 0 2 1 3-2 5-2 1-2 3 0 5 0l5-3c1 0 2-2 3-1l1-2zM196 471c0 3-4 4-5 7-1 2-4 2-4 5l-1-1c-2 1-5 3-8 3 0 2-1 0-1 1h-2c0 2-2-1-3 1h-4l-4-1c0-1-2 1-2-1-4-1-7-4-9-7v-6l1-4 8-11 18-19 5 4c4 2 6 6 9 9 1 1-1 1 1 2v-1l2 2c1 5 0 11-1 17z'/%3E%3Cpath class='st1' d='M134 384l-2-2a75 75 0 01-17-14l-2-4c-3-2-2-5-5-7l-3-9c-4-9-3-20-3-31l1-8c2-6 2-12 2-19-1-1-1-5-3-5l-1 4c-1 1 0 3-2 4 0 4-4 6-6 9l-1-5-2 1c-5 5-7 12-10 19-1 0 0 2-2 2v-2c-1 0-1-2-2-1-2 6-2 12-3 19-2 2-1-2-3-1l3 23 3 10-5 2-6 2v2c3 4 4 9 8 13l-1 1h-1c-9 3-9 13-15 19-1 1-3 1-2 3h2c0 2 3 1 2 3-1 5-1 10-5 14l1 3c1-1 3-2 4-1l2 5v10c1 3 0 6 3 8v-3l2-1v1c4 6 11 9 16 15 2 3 1 7 2 9 7-9 2-23-1-32-1-5-2-11-1-16l1-1c1-2 2-5 4-6 0-2 2-3 4-5l3-2c1 1 2-1 3-1h18l1 1c1-3 3 0 4-1 1 2 4 1 5 4-2 2 12-32 10-29zm55-207c1-3 4-3 5-6 2-3 2-8 1-12l-3 1-5 2v-6-4c-1-2 0-4-2-5l-5 7-2 2-2 3-3 4-3-3c-2-1-1-5-1-7 0-1 3-3 2-5l-4 1-3 3c-2 1-2 4-4 6l-3-2-4-1-3-1v1 5c-1-1-2 0-3-2v1l-2-1c-2-1-2 2-2 3v6l-1-1h-4-1c-1 1 1 3-1 5l-4-1v5l-4 2c-1 2 1 3 1 5l-1 1c-3 0-3 3-4 4l-3 3c0 2 2 3 1 4l-5 4c1 4-2 6-5 8-1 1 1 2 2 2h1c0 2-2 3-3 4l1 4 1-1 1 1v-1l2 1-4 7-2 2c1 3 5 1 7 2 0 2-3 2-3 4-1 1-3 2-4 1v2c2 1 5 2 7 1h1l1-1 1 1c-1 3-1 8-3 11 1 2-2 0-2 3h-3v1a9 9 0 009 2v-1c2 2 1 4 1 6 1 10 20 28 19 20-1 0 4 3 7 8l17 22c6 7 11 13 13 10 46-48-43-71-42-82 2-55 43-62 52-58z'/%3E%3Cpath d='M88 509l-10 24a74 74 0 0019 5c7-6 16-4 21-4 4 1 16 10 17 10s18-1 36 2c17 3 24 14 24 18 1 3-3 12-4 15v5c103 30 161 27 161 27h8c110-6 157-25 157-25l-3-15c-1-6-1-6 4-13s17-9 29-10c13-2 28-1 28-1 6-7 20-10 26-10 6 1 13 6 13 6l15-5c0-4-5-19-8-29l-3-7c-3-7 3-9 3-9l17-8c10-4 28-7 34-7 7 0 13 8 14 12l7 19 9 27 6 22c-1 13-13 25-27 35-14 11-47 23-47 23s0-4 4 12-12 24-12 24c-45 22-132 56-269 57-144 0-228-38-264-54-25-12-24-18-25-26-1-7 4-16 4-16-45-17-61-36-68-46s-4-19-4-19l13-39 1-1c4-10 7-23 15-30s11-5 26-2a90 90 0 0133 13l5 7-5 13zM346 14c-12 0-14 1-19 2v1-1s-11 2-11 3c-2 9 2 48 2 48 3 0 19-6 24-6l33 4V20c-1 0-14-7-29-6z' fill-rule='evenodd' clip-rule='evenodd' fill='%2300b4e3'/%3E%3Cpath d='M502 35s-12 6-29 7h-28c-7-1-16-2-26-5a302 302 0 01-36-14l-8-3v45a897 897 0 0021 4c7 0 24 5 45 2 21-4 49-8 62-35l-1-1z' fill-rule='evenodd' clip-rule='evenodd' fill='%23e63711'/%3E%3Ccircle class='st4' cx='312.9' cy='15.7' r='16'/%3E%3Cpath d='M379 555V327s15 9 33 9v200s-19 8-33 19zm-78-21V336s25-3 34-9v227l-34-20z' fill='%23fff' fill-rule='evenodd' clip-rule='evenodd'/%3E%3Cpath class='st6' d='M356 328a89 89 0 0115 1h1l6 1h1c5 3 13 7 27 9a75 75 0 0028 0c-3 34 2 58 12 74 3 4 9 22 11 40v28c0 4-2 9-4 13v1c-2 5-5 9-9 13-9 7-29 21-41 27a223 223 0 00-48 31 219 219 0 00-47-31 312 312 0 01-41-27 42 42 0 01-9-13l-1-1a40 40 0 01-3-13v-26c2-19 8-38 10-42 11-16 15-40 13-74a80 80 0 0028 0c13-2 22-6 26-9h2l6-1h1l14-1h2m0-33h-2a124 124 0 00-31 3c-6 2-10 6-24 9a46 46 0 01-25-3l-33-1h-1c0 3 13 68-3 92-6 8-14 33-16 57v32a74 74 0 0023 48c15 13 48 32 48 32 38 19 44 30 53 38l6 7 4 4c2 0 4-2 5-4l6-7c8-8 15-18 53-38 0 0 33-19 48-32a75 75 0 0023-48v-34c-2-23-10-47-16-55-16-24-3-89-3-92l-1-1-33 2s-8 3-18 3h-7c-14-3-18-7-24-9a130 130 0 00-32-3z'/%3E%3Cpath class='st7' d='M320 163v-1 1zm6 93zm-5-84s4 0 5 2c1 3 5 6 7 6l3 2c-2 4 1 5 1 5l2 3-2 33-3 1v2l-2 15h-3l-1 2c0 2 0 9-2 12h9l55 1-2-14h-2l-2-11v-6c-3 0-3-2-3-3l-1-32 3-5-2-2 1-2 3-1 7-8h4c0-1 3-12 2-16l-17 1s0 4-2 4-1 2-2 4c0 2-2 2-2 2h-8l-3-1v-4c-1-3-2-1-2-1h-6c-3 0-3 0-3 2 1 3-2 4-3 4h-9c-4 0-2-2-2-2v-4l-2-5h-16a42 42 0 000 16zM398 163s-1 0 0 0c-1 0-1 0 0 0z'/%3E%3Cpath class='st6' d='M320 155c3 0 7 1 11-1l3 1-1 1s-1 5 6 5v5s-1 2 3 2h8c1-1 4-1 3-4 0-2 0-3 3-3h6s1-1 2 2v3s0 2 3 2h9s1-1 2-3c0-2-1-4 1-4h7l1-4c-3-2-1-8-1-10 0-3 2-7 6-8a10 10 0 018-1c2 2 5 5 4 8 0 3-2 0-3 2-4-1-4-5-6-7h-1v1c-1 3 0 6 1 9 2 1 3 5 7 4h-2l5 1v-1c3 1 4-3 7-4l1-3v-2-4l9-2c8-3 1-11 5-17 1-1 4-2 4-4l-2-1h-3 1l-3-1c0 2-2 1-3 2h-1c0 1-2 2-1 3-1 2-1 4-3 5v-6a16 16 0 00-5-6l-2-1c-1 0-4-1-4 1 0 1 0 2 1 1 2 1 2 3 2 4-1 2-4 2-6 3-1 1-5 0-5 2h-1l-2 1-1-1v1c-3 1-3 5-6 7h-2c-6 4-9 11-8 18v6c-3 0-1 5-3 8l-1-1a25 25 0 01-4-8c0-7-2-16 2-24 4-3 6-8 11-10a9 9 0 002-9c2-2 6-4 6-8l-3 1c-1 0-3-1-2-2l4-3c1-1 3-3 3-5-2-3 0-6 1-9 0-3-3-4-5-7v1h-1l-1-1c-1-3-4-6-8-6l-1-1c-2 3-3-2-5 0l-1-1-3 3-2 1c-3 3-7 5-8 9l-1-2h-1l-4 8-1 6c-3 1-7 3-8 6l-3 9c-1-1-1-3-3-3l-11-13c-3-4-1-10-5-13-4-4-11 5-11 5-4 5-1 10-1 10l5 6 5 13c0 2 2 1 1 2v3l4 2c1 2-1 7 2 7l6-1 1 2-3 1c-2 1-3 5-6 5-1 2-3 0-4 0 0 0-5-2-11 3-3 4-1 9-1 9 3 2 8 5 12 5z'/%3E%3Cpath class='st4' d='M307 13h10v250h-10z'/%3E%3Cpath class='st1' d='M403 279c-24-7-57-5-83 0-17 3-23-13-16-18 22-17 97-15 115 0 8 7-4 21-16 18z'/%3E%3Cpath class='st1' d='M329 269h62v37h-62z'/%3E%3Cpath class='st0' d='M395 296c1-2 2 0 3 0 1 1 3 3 5 3 1 0 3-2 5 0 1 1 3 3 5 2 2 1 5-2 7 0l5-1h5l2-3c-2-2-2-5-1-7 0-3 0-5 2-7l1 1c5-1 6-6 10-8 1-2 4-2 6-4l6-1c3 1 4 3 6 5-1 3 2 6 1 9h-1l1 13c4 16 12 52 26 76 6 9 11 18 18 26l9 12c1 2 4 4 4 6l-7 7h-1l-4 4c-1 4-5 7-6 11-3 3-5 8-7 12-1 6-4 12-3 19l-2 1 2 10h1c-1 6 2 8 2 13l4 9 4 5-1 1 10 7 3 2a56 56 0 0015 5l1 1c5 0 11 1 17-1h5c1 0 2-2 3-1l1-1h1l6-2c2-3 5-2 7-5a37 37 0 007-6h-1 1a77 77 0 0010-16c4-8 5-18 7-27 2-3 5-4 5-7-3-2-5-5-3-9 1-3 3-6 7-6l1-3c-2 0-3-2-5-3-4-2-5-7-5-11 1-3 4-6 7-8l-1-3c-3 1-6-1-8-3 1-3 4-2 5-4 1 1 3-1 4 1v-1h18c2 0 2 2 4 1a6 6 0 003 2c2 2 4 3 4 5 2 1 3 4 4 6v1c2 5 1 11 0 16-3 10-8 23-1 32 1-2 0-6 2-9l16-15v-1l2 1v3c3-2 2-5 3-8v-10l2-5 3 1c2 0 1-2 2-3-5-4-5-9-6-14 0-2 2-1 3-3h2c1-2-2-2-2-3-6-6-7-16-15-19h-1l-1-1c4-4 5-10 8-13v-2l-6-2-6-2 4-10c2-8 2-15 2-23-1-1 0 3-2 1-1-7-1-13-3-19-1-1-1 1-2 1l-1 2-1-2c-3-7-5-14-11-19l-1-1c-2 2 0 4-2 5-1-3-5-5-6-9l-1-4-1-4c-2 0-2 4-3 5l1 19c2 2 1 6 2 8 0 11 1 22-3 32l-4 8-4 7-2 4a69 69 0 01-17 14c-1 0-1 2-3 2-1-3 0-6 1-8 0-3 4-5 1-8l-4-1-5-6c-1-5 2-9 6-12l-2-2c-5 0-8-6-9-10a14 14 0 014-14c0-3-2-2-3-2-5-2-8-8-9-12a24 24 0 011-16 28 28 0 0112-16c7-5 18-10 19-20 0-2-1-5 1-6a9 9 0 009-2v-1h-3c0-2-3-1-2-3-2-3-2-7-3-10l1-1 1 1h1c2 1 5-1 6-2v-2c0 2-2 0-3 0 0-2-3-2-3-4 2-1 6 1 7-2 0-2-1-2-2-2l-4-8 2-1v1l1-1 1 1v-4l-2-3h1c1-1 3-1 2-3-3-2-6-4-5-7l-5-5c-2-1 1-2 1-3 0-2-2-3-3-3-1-2-1-5-4-5h-1l1-6-4-1v-5h-4c-2-1 0-3-1-5h-5l-1 1c-2-1 0-2 0-4v-2c0-1 0-3-2-2-1 1-2-1-2 1v-1c-1 1-3 0-3 2v-6h-3l-4 1-3 3c-2-2-2-6-4-7a4 4 0 00-3-2l-4-1c-1 2 2 3 2 5s1 5-1 7l-3 2-3-4-2-2v-1c-1 1-2-1-2-1l-5-7c-2 1-1 3-2 5v4 6l-5-3h-3c-1 4-1 9 1 12 1 2 4 3 4 5a34 34 0 00-10 12l-1 1v1a145 145 0 01-12 10l-5 6c-3 4-6 7-7 12 1 5-6 10 1 14l2 1c2-2 2 1 4 0 1 1 3-1 3 1 0 1-1 3-3 3-1 0-2-4-4-2-2 1-2 4-2 7 0 2 3 2 3 3h1c1 0 0 0 0 0h2 1-1l4-1c2-1 4-5 6-3 3 0 9 0 12-3l3-4c5-2 6-8 13-6l1 2-3 3-2 2-6 3c-2 1-3 3-5 3l-5 4c-2 0-3 2-4 3l-4 2a72 72 0 00-23 34c-5-6-7-14-10-21-2-5-6-11-12-12v-1l-8 1-1 1c-2-1-2 1-3 1l-5 2-3 3v-1l-2 1-1 1-1-1v1c-3 0-5 3-8 3a20 20 0 00-14 11l-5 4-9 5-10 11v3zm125 158l1-2 1 1v-2c3-3 5-7 9-9l5-4 19 19c2 4 6 7 7 11l2 4v6c-3 3-5 6-9 7-1 2-2 0-3 1l-3 1h-5c0-2-2 1-3-1h-3l-8-4v1c-1-3-3-3-5-5l-5-7c0-6-2-12 0-17z'/%3E%3Cpath class='st1' d='M593 413c0-3 4-2 5-4 1 1 3-1 4 1v-1c7 0 12-1 18 1h4a6 6 0 003 2l4 5c2 1 3 4 4 6v1c2 5 0 11-1 16-2 10-7 23-1 32 2-2 1-6 3-9l16-15v-1l2 1v3c3-2 2-5 3-8v-10l2-5 3 1c2 0 1-2 1-3-4-3-4-9-5-14 0-2 2-1 3-3h2c1-2-2-1-2-3-6-6-7-16-15-18l-1-1h-1v-1c4-4 5-9 8-13v-2c-2 0-5 0-6-2l-6-2 4-10c2-8 2-15 2-23-1-1-1 3-2 1-1-6-1-13-3-19l-2 1-1 2-1-2c-3-7-5-13-11-19l-1-1c-2 2 0 5-2 5-1-3-5-5-6-9l-1-4-1-4c-2 0-2 4-3 6l1 18c2 2 1 6 2 8 0 11 1 22-3 32l-4 8-4 7-2 4a69 69 0 01-18 14l-2 2c-2-3 13 31 11 29zm-13-179c0 11-89 34-43 83 3 2 8-3 14-11l17-22 7-8c-2 8 17-10 19-20v-6l1 1a9 9 0 009-2v-1h-3c0-2-3-1-3-3-2-3-1-7-2-11h2l1 1 6-2v-2c-1 2-2 0-3-1s-3-2-3-4c1-1 6 2 7-1 0-2-1-2-2-2l-4-8 1-1 1 1 1-1 1 1v-4l-2-3 1-1c1 0 2 0 2-2-3-2-6-4-6-8l-5-4h1c-2-1 0-2 1-3 0-2-2-3-3-3-2-2-1-5-4-5h-2l2-6-4-1h-1v-5h-3c-2-1 0-3-1-5h-5l-1 1c-2-1 0-3 0-4v-2c0-1 0-4-2-3l-2 1h-1c0 1-2 0-2 2-1-2 1-4-1-6h-2l-5 1-2 2c-2-1-2-5-4-6a4 4 0 00-3-2c-1-2-2-2-4-1-1 1 1 3 1 5 1 2 1 5-1 7-1 0-1 2-3 2l-2-4-3-3h1l-3-1-4-8c-3 2-1 4-2 5l-1 4 1 1c-1 2 1 4-1 6l-4-3-3-1c-2 4-2 9 1 13 1 2 4 3 4 5 9-3 50 5 53 58z'/%3E%3C/svg%3E");
}

[football3club_logo="EVE"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 256 250' xml:space='preserve'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23001F7A' d='M128 5a55 55 0 01-24.5 8c-11.4 1-25.4-.9-34.7-8.4L37 33.6A47.5 47.5 0 0152.7 59 44 44 0 0151 76.3c-1.7 6.7-4.7 13-6.7 19.6a84.8 84.8 0 00-3.1 45.7c4 15.5 13.9 29 26.3 39a97.7 97.7 0 0051 20.4l1.3.2 1 1 7.3 7.4 7.3-7.5 1-1h1.3c18.6-2 36.5-8.8 51-20.5a75.3 75.3 0 0026.3-39c4-15 1.4-31-3-45.7-2-6.6-5-12.9-6.8-19.6a43.9 43.9 0 01-1.9-17.3A47.5 47.5 0 01219 33.7L187.2 4.6a49.7 49.7 0 01-34.7 8.4A55 55 0 01128 5z'/%3E%3Cpath fill='%23FFF' d='M128 214.5l-9.9-10h-.1a101 101 0 01-52.8-21.2 79 79 0 01-27.5-40.8A87.3 87.3 0 0141 95c.9-3 2-6 3.1-8.9 1.4-3.6 2.7-7 3.6-10.5a40.8 40.8 0 001.7-16c-1-7.3-5.9-15-14.6-23.4l-2.6-2.5L68.6 0 71 1.9c7.4 6 19.4 8.8 32.2 7.6 8.6-.8 16.8-3.4 23-7.4L128 .9l1.9 1.2c6.1 4 14.3 6.6 23 7.4A45.7 45.7 0 00185 2l2.4-1.9 36.5 33.6-2.6 2.5c-8.7 8.4-13.5 16-14.6 23.4-.8 5.2.4 10.7 1.7 16 1 3.5 2.2 7 3.6 10.5 1 2.9 2.2 5.8 3.1 8.9a87.3 87.3 0 013.2 47.6 79 79 0 01-27.5 40.8 101 101 0 01-52.8 21.1h-.1l-9.9 10.1zM42.1 33.8a46.4 46.4 0 0114 24.7c1 6.4-.3 12.8-1.8 18.7-1 4-2.4 7.7-3.8 11.3l-3 8.4c-5.3 17.6-6.3 31.5-3 43.9a72 72 0 0025 37 94 94 0 0049.2 19.8l2.7.2 6.6 6.8 6.6-6.8 2.7-.2a94 94 0 0049.2-19.7 72 72 0 0025-37.1c3.3-12.4 2.3-26.3-3-44l-3-8.3c-1.4-3.6-2.8-7.4-3.8-11.3-1.5-6-2.8-12.3-1.9-18.7a46.4 46.4 0 0114-24.7L187 9a54.7 54.7 0 01-34.8 7.4A60 60 0 01128 9.1a60 60 0 01-24.2 7.3A54.7 54.7 0 0169 9L42.1 33.8z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23FFF' d='M126.9 34.2c.5-.8 1.3-1 2.2-1 1.2 0 2 .6 2.4 1.7.3 1 0 2 .5 3l22 45.7c.2.7.7 1.2 1.3 1.5 2 1.2 4.2 2.4 4.8 4.7.3 1.8-1.4 3.1-2.9 4 0 18.7-.3 37.5-.1 56.2.6.5 1.5 1.3 1.5 2.9l-.1 13.3c-.8 2.1-3.4 1.7-5.2 1.7v-3.5c-.8-.7-1.7-1-2.6-1.3-16-5.3-31-10.9-49.3-17.2-1-.3-1.7-1.1-1.7-2.2v-9c0-1 1.2-1.4 2-2l-.1-38.3c-1.1-.5-2.4-1.1-2.7-2.4-.8-2.2.7-4.3 2.4-5.6.9-.8 2.2-1.3 2.7-2.4l20.5-42.6c.6-1.3 1.3-2.6 1.8-4 .1-1-.1-2.3.6-3.2z'/%3E%3Cg%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' fill='%23001F7A' d='M240.4 142.6c-.9 1.4-1.5 2.8-2 4.3l13 5-.3.7c-20.8 50-60 80.5-115 85l-8.1 7.6-8-7.6c-55.1-4.5-94.3-35-115.1-85l-.3-.7 13-5c-.5-1.5-1.1-3-2-4.3l-8 3.6-.3-.3c-3-2-3.3-5.5-3-8.7.4-2.2 2.2-3.5 4.1-4.3 6.7-2.9 13.4-5.9 20.2-8.5 1.5-.6 3-.7 4.5 0l3 1.8c6.6 7.1 6.5 14.8 7.5 23.7v.6l-6.5 2.2a101.1 101.1 0 0090.9 55.8 101.1 101.1 0 0091-55.8l-6.7-2.2v-.6c1.1-9 1-16.6 7.5-23.6l.1-.1 3-1.8c1.5-.7 3-.6 4.5 0 6.8 2.6 13.5 5.6 20.2 8.5 2 .8 3.7 2 4 4.3.4 3.2 0 6.8-3 8.7l-.3.3-8-3.6z'/%3E%3Cpath fill='%23FFF' d='M128 250l-9.5-9c-54.7-4.9-95-35-116.8-87L0 149.8l4.5-1.7c-2.2-1.9-4.4-5.3-3.6-11.5.3-2.1 1.6-5.1 6.2-7l7-3c4.2-1.9 8.7-3.8 13.2-5.6 2.6-1 5.1-1 7.4.2l3.3 2 .3.3.4.3c6.5 7 7.2 14.4 8 22.3l.3 3.3.4 3.3-5.3 1.9A97 97 0 00128 205a97 97 0 0086-50.4l-5.4-1.9.3-3.3.4-3.3c.8-7.9 1.5-15.3 8-22.3l.2-.2.4-.3c1.2-.8 2.3-1.5 3.4-2a8.7 8.7 0 017.4-.3l13.3 5.6 7 3c4.5 1.9 5.8 4.9 6 7 .9 6.2-1.3 9.6-3.6 11.5l4.6 1.7-1.7 4c-21.7 52.1-62 82.2-116.8 87L128 250zM9.2 153.8c21 48.4 59.4 76.2 111 80.4h1.3l6.5 6.3 6.5-6.2 1.3-.1c51.6-4.2 90-32 111-80.4l-12.7-4.8 1-3.1c.6-1.8 1.4-3.5 2.3-5l1.6-2.7 8.7 3.9c.6-1 .7-2.5.5-4.5-.1-.7-1.4-1.3-2-1.6l-7-3a494 494 0 00-13-5.4c-1-.4-1.6-.2-1.7-.1-.8.4-1.6.8-2.3 1.4-4.8 5.2-5.3 10.9-6 18l-.1 1.2 7.7 2.7-1.8 3.5a104.5 104.5 0 01-94 57.7 104.5 104.5 0 01-94-57.7l-1.8-3.5 7.7-2.7v-1.3c-.8-7-1.4-12.7-6-18-.9-.5-1.6-1-2.4-1.3-.1-.1-.6-.3-1.7 0l-13 5.5-7 3c-.6.3-1.9.9-2 1.6-.2 2 0 3.5.5 4.5l8.7-3.9 1.6 2.6c1 1.6 1.7 3.3 2.3 5l1 3.2-12.7 4.8z'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="WEH"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 225 250' xml:space='preserve'%3E%3Cg id='XMLID_1_'%3E%3Cpath id='XMLID_98_' d='M225 8.1A755 755 0 00112.5 0 755 755 0 000 8.1v93.8c0 79.3 46 123.8 110.7 147.5l1.8.6 1.8-.6C179 225.7 225 181.1 225 101.9V8.1M112.5 120.7l.1.1-.1-.1z' fill='%231dafe5'/%3E%3Cpath id='XMLID_97_' d='M205.6 28a624.8 624.8 0 00-93.1-6.7c-33.3 0-64.8 2.4-93.1 6.7v79c0 65.6 38.1 102.5 91.6 122.1l1.5.5 1.5-.5c53.5-19.6 91.6-56.5 91.6-122.1V28' fill='%237a2638'/%3E%3Cpath d='M190.9 82.8l-9.5-15c-1.8-3.1-.7-6.2-.4-8.1.3-1.9-.1-2.6-1.2-3.7l-20.5-19.9c-1.1-1.1-1.8-1.3-2.8-.5 0 0-7 6.2-10.5 10.5-1.3 1.6-.5 2.8-.5 2.8l9.1 10.7 2.5 2.6-44.4 43.4L68.2 62l2.5-2.6 9.1-10.7s.9-1.1-.5-2.8c-3.5-4.3-10.5-10.5-10.5-10.5-1-.8-1.7-.6-2.8.5L45.5 55.8c-1.1 1.1-1.6 1.8-1.2 3.7.3 1.9 1.4 5.1-.4 8.1l-9.5 15c-1.2 1.8-1.5 3.5-.6 4.3.5.5 1.7 1 4.2-.7 1.2-.8 14.2-9.6 18.3-13l4.3-3.8 43.2 44.4L47 169.3c-1.8 1.8.1 4.6 3 7.5 2.9 2.9 5.7 4.8 7.5 3l55-56.6 55 56.6c1.8 1.8 4.6-.1 7.5-3 2.9-2.9 4.8-5.7 3-7.5L121.4 114l43.2-44.4s1.8 1.8 4.3 3.8c4.1 3.4 17.1 12.2 18.3 13 2.5 1.7 3.7 1.2 4.2.7 1.1-.9.7-2.5-.5-4.3z' fill='%23f5d44c'/%3E%3C/g%3E%3C/svg%3E");
}

[football3club_logo="SOU"] {
  background-image: url("data:image/svg+xml,%3Csvg id='Layer_1' xmlns='http://www.w3.org/2000/svg' x='0' y='0' viewBox='0 0 623.6 708.7' xml:space='preserve'%3E%3Cstyle%3E.st0,.st1,.st2%7Bfill-rule:evenodd;clip-rule:evenodd;fill:%232b2523%7D.st1,.st2%7Bfill:%23fff%7D.st2%7Bfill:%23d31216%7D.st3%7Bfill:%233caae1%7D.st4%7Bfill:%23fff%7D.st6%7Bfill:%232b2523%7D%3C/style%3E%3Cpath class='st0' d='M501.3 199.4V564c0 10.5-6.7 19.7-16.1 23.2l-169.9 65.6-170-65.6a25 25 0 01-16.1-23.2V199.5h372.1v-.1z'/%3E%3Cpath class='st0' d='M535.6 526.6c-4.5 5.3-9.2 10.5-14 15.4v35.2c0 12.3-7.7 23.4-19.2 27.7l-187.1 72.3L128 604.9a29.7 29.7 0 01-19.2-27.7v-33.1c-5-5-9.8-10.2-14.5-15.6l-62.9 75.3a386.5 386.5 0 00283.1 122.8 386 386 0 00284.2-124.1l-63.1-75.9z'/%3E%3Cpath class='st1' d='M152.7 476.3V270.2h325l.1 206.1H152.7z'/%3E%3Cpath class='st2' d='M477.8 457c-2.9 4.6-9.9 7.8-18 7.8-8.3 0-15.3-3.2-18.1-7.8-2.9 4.6-9.9 7.8-18.1 7.8-8.2 0-15.2-3.2-18.1-7.8-2.9 4.6-9.9 7.8-18 7.8-8.3 0-15.2-3.2-18.1-7.8h-.1c-2.8 4.6-9.8 7.8-18 7.8s-15.2-3.2-18-7.8c-2.9 4.6-10 7.8-18.1 7.8-8.2 0-15.2-3.2-18.1-7.8h.1c-2.9 4.6-9.9 7.8-18.1 7.8-8.2 0-15.3-3.2-18.1-7.8-2.9 4.6-9.9 7.8-18.1 7.8-8.2 0-15.2-3.2-18-7.8h-.1c-2.8 4.6-9.9 7.8-18 7.8-8.3 0-15.2-3.2-18.1-7.8v.1c-2.9 4.6-9.9 7.7-18 7.7-8.3 0-15.3-3.2-18.1-7.8v-.4l.1 91.1c0 9.2 5.9 17.1 14.1 20.2l148.5 57.4 148.4-57.4a21.6 21.6 0 0014.1-20.2v-91 .3z'/%3E%3Cpath class='st3' d='M459.7 423.7c-8.3 0-15.3-3.3-18.1-7.8-2.9 4.5-9.9 7.8-18.1 7.8-8.2 0-15.2-3.2-18.1-7.8-2.9 4.6-9.9 7.8-18 7.8-8.3 0-15.2-3.3-18.1-7.8h-.1c-2.8 4.5-9.8 7.8-18 7.8s-15.2-3.2-18-7.8c-2.9 4.6-10 7.8-18.1 7.8-8.2 0-15.2-3.3-18.1-7.8-2.9 4.5-9.9 7.8-18 7.8-8.2 0-15.3-3.2-18.1-7.8-2.9 4.6-9.9 7.8-18.1 7.8-8.2 0-15.2-3.3-18-7.8h-.1c-2.8 4.5-9.9 7.8-18 7.8-8.3 0-15.2-3.2-18.1-7.8-2.9 4.6-9.9 7.8-18 7.8-8.3 0-15.3-3.3-18.1-7.8v31.5c2.8 4.5 9.8 7.8 18.1 7.8 8.1 0 15.1-3.1 18-7.6v-.1c2.9 4.5 9.9 7.8 18.1 7.8 8.1 0 15.2-3.3 18-7.8h.1c2.9 4.5 9.9 7.8 18 7.8 8.2 0 15.2-3.2 18.1-7.8 2.9 4.5 9.9 7.8 18.1 7.8 8.1 0 15.1-3.3 18-7.7h.1c2.9 4.5 9.8 7.7 18.1 7.7 8.1 0 15.2-3.2 18.1-7.8 2.8 4.5 9.8 7.8 18 7.8s15.2-3.3 18-7.8h.1c2.9 4.5 9.8 7.8 18.1 7.8 8.2 0 15.2-3.2 18-7.8 2.9 4.5 9.8 7.8 18.1 7.8 8.2 0 15.2-3.3 18.1-7.8 2.8 4.5 9.9 7.8 18.1 7.8 8.1 0 15.2-3.2 18-7.8v-31.6c-2.9 4.6-9.9 7.8-18.1 7.8zM297 415.9c.1 0 .1 0 0 0 .1 0 .1 0 0 0z'/%3E%3Cpath class='st1' d='M313 554.2c.2.5.6.8 1 .8s.7-.3.9-.8c.4-.8.7-2.8.6-6.9 0 0 .2-13.9 10.6 1 29.2 41.9-12.4 42.2-12.4 42.2h.4s-41.6-.2-12.4-42.2c10.4-14.9 10.5-1 10.5-1 .1 4.1.3 6 .8 6.9zM291.6 537.4c-.4.4-.6.7-.4 1.1.1.4.5.7 1 .7 1 .1 2.9-.1 6.8-1.5 0 0 13.4-4.1 2.3 10.3-31 40.6-44 1.4-44 1.4v.3s-12.5-39.5 36.5-24.7c17.5 5.2 4.2 9.7 4.2 9.7-4 1.1-5.7 2-6.4 2.7zM300.9 511.8c-.4-.3-.9-.3-1.2 0-.3.2-.4.6-.3 1.1.2 1 1 2.8 3.6 6 0 0 8 11.3-9.2 5.4-48.3-16.8-14.9-41.3-14.9-41.3l-.2.1s33.7-24.1 34.9 27c.4 18.2-8 7-8 7a18.7 18.7 0 00-4.7-5.3zM335.8 539.1c.5 0 .9-.3 1-.7.2-.3-.1-.7-.4-1.1-.7-.7-2.4-1.7-6.4-2.8 0 0-13.2-4.5 4.2-9.7 49.1-14.7 36.5 24.7 36.5 24.7l.1-.3s-13 39.2-44-1.4c-11.1-14.4 2.3-10.3 2.3-10.3a16 16 0 006.7 1.6z'/%3E%3Cpath class='st4' d='M349 483l-.2-.1.2.1zM349 483c.1.1.1.1 0 0zM368.5 525.6c-2.4-2.4-5.7-4-9.7-4.8 4.3-1.5 8.3-3.2 11.1-5 1-.6 3-1.8 2.3-3.4-.4-.9-1.1-2.6-19.4 2 17.3-14.3-1.5-29.7-3.8-31.4-.6-.4-22.4-15.6-31.2 5.5 0-5.9-.3-11.6-1.2-15.3-.3-1.2-.8-3.4-2.5-3.3-1 .1-2.6.2-3.9 16.3a18 18 0 00-8-8.5c-10.7-5.3-23.7 3.9-24.3 4.3-1.8 1.3-13.1 10.5-11.4 21.5.5 3.4 2.2 6.6 5.1 9.6a68.3 68.3 0 00-11.9-2.7c-1.2-.1-3.5-.3-3.9 1.4-.2.9-.6 2.6 14.4 8.7-4.5.7-8.1 2.3-10.7 4.9-8.4 8.5-3.6 23.7-3.4 24.4h.1c.7 2.1 5.9 15.6 17 17.4l2.5.2c2.6 0 5.2-.6 8-1.9a67.3 67.3 0 00-6.1 10.4c-.5 1.1-1.3 3.2.1 4.1.8.5 2.3 1.4 12.8-10.9-.7 4.4-.3 8.3 1.4 11.5 5.1 9.8 19.3 10.7 21.9 10.8h.4c2.6-.1 16.8-1 21.9-10.8 1.6-3 2.1-6.5 1.6-10.5 2.8 3.6 5.6 6.9 8.2 9.1.7.6 1.8 1.5 2.9 1.5.4 0 .7-.1 1-.4.7-.6 2-1.8-6.4-15.5 3.1 1.6 6.1 2.5 9 2.5l2.5-.2c11.1-1.8 16.3-15.4 17-17.4.2-.3 4.9-15.6-3.4-24.1z'/%3E%3Cpath d='M420.8 332.1c-.8-9.7-10.7-16.3-15.8-19.1a25.9 25.9 0 00-7.8-17.7 26 26 0 00-15.9-6.2c-16.8-13.3-34.1-6.7-43.4.5-9.7-7-19.8-10-29.9-9a45.8 45.8 0 00-26.7 13.3c-4.2-2-11.3-4.4-18.4-2.3-5.6 1.6-10 5.6-13.2 11.7-5.3.5-15.1 2.5-20.7 10.3-4.6 6.3-5.2 14.8-2 25.1-3.6 4.4-10.2 14.2-8 24.4 1.7 7.7 7.7 13.8 17.9 18 2.7 4.2 10.5 14.6 22.2 15.6l1.8.1c8 0 15.8-4.5 23.2-13.3 1.3-.2 2.9-.6 4.6-1.3l9.7 7.5v5.3s-29.3 16.4 6.5 15.7c0 0 11.9 10.3 24.4-.1v-.2c35.8.6 6.4-15.8 6.4-15.8v-5.3l19.3-11.1c7.3 8.1 15.1 11.8 23 11.2 9.8-.8 16.6-8.4 19.3-12 8.9-2.5 14.5-6.9 16.5-13 1.9-5.7 0-11.3-2-15.1 6.4-5.3 9.5-11.1 9-17.2zM301.3 378l-4.4-3.8c1.2-2.4 1.9-5.2 2.2-8.4l2.8.5-.6 11.7zm31.4-.3l-.5-9.3a14.9 14.9 0 0011.3 2.1l.1.1-10.9 7.1z' fill='%230ea538'/%3E%3Cpath class='st1' d='M31.5 194.7l7.7 15.9-21.6 5.9 6.7 13.4L46 224l6.8 13.4-21.7 5.9 6.7 13.3 21.7-5.8 6.8 13.4-21.9 5.8 6.8 13.3 21.8-5.7 9.7 18.6c4.1-1.2 8.2-2.5 12-4.2L44.1 191.2a60.6 60.6 0 01-12.6 3.5zM91 200.3c-1.5-7.1 14.8-15.7 27.9-26.2l-17.3-34.6a84.7 84.7 0 00-22.1 18.1c-2 2.1-3.8 4.3-5.6 6.5L91 200.3z'/%3E%3Cpath class='st2' d='M129.9 138.8c-4.2-5.7-15-6.5-28.3.7l17.3 34.6c12-9.8 21.3-21.3 11-35.3zM44.1 191.2L94.8 292c14.2-5.9 25.9-14.2 29.9-20.3l-21.8-46.3-10.8-23a5 5 0 01-1-2.1l-17-36.2c-8.7 10.6-16.1 21.1-30 27.1zM21.7 197.8c-6.8 1.2-5-1.6-14.7-2.4l44.4 87.8h-.1l7.9 15.9c7.6.4 5.9 2.2 13.8 0L21.7 197.8z'/%3E%3Cpath class='st1' d='M118.6 174.4l9.6 19.1c6.8-5.7 14.1-12.6 21.9-19.1l-18-32.1c6.5 12.6-2.4 23.1-13.5 32.1z'/%3E%3Cpath class='st2' d='M92 202.4c.5.7 1.2 1.4 2.2 2 9.7 6.8 21.1-.1 34-10.9l-9.6-19.1c-14.3 11.5-32.5 20.5-26.6 28z'/%3E%3Cpath class='st6' d='M62 303.4l-3-.1-2.4-.1L0 190.7l7.3.6c37.2 3.1 48-10.5 60.6-26.3 2.7-3.3 5.4-6.8 8.5-10.1 14.5-16.1 30.9-25.3 43.9-24.6 5.6.3 10.1 2.5 12.9 6.2 1 1.3 1.8 2.6 2.5 4l19.7 35.1-2.6 2.2-11.5 10c-14.4 12.7-28.1 24.9-40.7 23.6l28.7 60.7-1.2 1.9c-7.7 12-39.7 29.4-66.1 29.4zm-.2-8.3h.3c10.6 0 23-3.1 35.3-8.8a69.1 69.1 0 0022.4-15.2l-31.4-66.6a9 9 0 01-1.6-6.5c.5-3.6 3.2-6.9 7.1-10.3 3.1-2.7 7-5.5 11.3-8.5 17-12.1 29.5-22.3 23.5-34.5l-2.1-3.4c-1.2-1.7-3.6-2.7-6.6-2.8-8.1-.4-22.2 5.1-37.4 21.9-2.9 3.2-5.6 6.5-8.1 9.8C62.7 184.8 50.6 200 17.3 200l-3.4-.1 47.9 95.2zm33.7-94.8l1 .7c9 6.3 20.9-3.2 39.4-19.6l9-7.9-8.1-14.4-.3.6c-4.5 10.4-16.1 18.7-26.6 26.2-3.3 2.4-7.4 5.3-10.4 7.9-2.5 2.2-4.4 4.1-4.6 5.5 0 .1 0 .3.3.7l.3.3z'/%3E%3Cpath class='st1' d='M592.1 194.7l-7.7 15.9 21.5 5.9-6.7 13.4-21.7-5.9-6.7 13.4 21.7 5.9-6.7 13.3-21.7-5.8-6.8 13.4 21.8 5.8-6.8 13.3-21.8-5.7-9.7 18.6c-4.1-1.2-8.1-2.5-12-4.2l50.7-100.8c3.7 1.5 7.8 2.7 12.6 3.5zM532.6 200.3c1.5-7.1-14.8-15.7-27.9-26.2l17.4-34.6a86.3 86.3 0 0122.1 18.1l5.5 6.5-17.1 36.2z'/%3E%3Cpath class='st2' d='M493.7 138.8c4.3-5.7 15.1-6.5 28.4.7l-17.4 34.6c-12.1-9.8-21.3-21.3-11-35.3zM579.5 191.2L528.8 292c-14.2-5.9-25.9-14.2-29.9-20.3l32.7-69.2a5 5 0 001-2.1l17.1-36.2c8.5 10.5 15.8 21 29.8 27zM601 197.2c6.8 1.2 6-1 15.7-1.8l-53.4 105.4-12.7-3.4L601 197.2z'/%3E%3Cpath class='st1' d='M505 174.4l-9.6 19.1c-6.8-5.7-14.2-12.6-21.9-19.1l18-32.1c-6.5 12.6 2.4 23.1 13.5 32.1z'/%3E%3Cpath class='st2' d='M531.6 202.4c-.5.7-1.3 1.4-2.2 2-9.8 6.8-21.1-.1-34-10.9l9.6-19.1c14.3 11.5 32.5 20.5 26.6 28z'/%3E%3Cpath class='st6' d='M561.5 303.4a97 97 0 01-38.8-9.6c-12.7-5.9-23.2-13.6-27.2-19.9l-1.2-1.9 28.7-60.7c-12.6 1.2-26.3-10.9-40.6-23.6-3.7-3.3-7.5-6.7-11.5-10l-2.6-2.2 19.2-34.3a26 26 0 012.9-4.7 17 17 0 0113-6.2c13-.6 29.4 8.6 43.9 24.6 3 3.3 5.7 6.8 8.4 10.1 12.6 15.8 23.4 29.5 60.7 26.3l7.3-.6L567 303.2l-2.4.1-3.1.1zm-57.8-32.3c8 9.3 34.9 24 57.8 24h.3l47.9-95.2c-36 1.1-48.5-14.6-60.6-29.9-2.6-3.2-5.2-6.5-8-9.7-15.2-16.8-29.3-22.3-37.4-21.9-3.1.1-5.5 1.2-6.7 2.8-.7 1-1.4 2-1.9 3-6.4 12.3 6.2 22.7 23.3 34.9 9.7 6.9 17.4 12.4 18.3 18.9a9 9 0 01-1.6 6.5l-31.4 66.6zm-25-97.6l9 7.9c18.5 16.4 30.3 25.9 39.3 19.6l1.2-1 .1-.2c.3-.4.3-.5.3-.7-.4-3-8.8-9-15-13.4-10.6-7.6-22.5-16.1-26.8-26.7l-8.1 14.5z'/%3E%3Cpath class='st1' d='M377 171c-4.7 3.7-12.8 9.2-21.8 14.6v71.8c10.2-6.2 20.5-12.8 30.3-18V165c-3.3 2.2-6.3 4.3-8.5 6zM425.6 151.5l-1.3.1-10.3 77.6 1.3-.1c8.4 0 16.3 2.8 23.6 7l23.1-70.5a63.7 63.7 0 00-36.4-14.1zM529.4 204.5c-9.6 6.7-20.9 0-33.7-10.7l-30 62.4c12.2 10.5 23 19.2 33.2 15.4l32.7-69.2c-.5.8-1.3 1.4-2.2 2.1zM94.2 204.5c-1-.7-1.7-1.3-2.2-2l32.7 69.2c10.3 3.8 21.1-4.9 33.3-15.4l-30.1-62.4c-12.8 10.6-24.1 17.3-33.7 10.6zM311.8 204.3c-3 0-7-1-11.5-2.6v72.2a35 35 0 0011.5 2.3c3.4 0 7.3-.9 11.5-2.3v-72.2a37.4 37.4 0 01-11.5 2.6zM198 151.5a64 64 0 00-36.3 14l23.1 70.5a48 48 0 0123.6-7l1.2.1-10.3-77.6H198zM246.6 171c-2.2-1.7-5-3.8-8.5-6v74.4c9.8 5.3 20.2 11.9 30.3 18v-71.8a192.2 192.2 0 01-21.8-14.6z'/%3E%3Cpath class='st2' d='M268.4 185.6v71.8a180 180 0 0031.9 16.4v-72.2c-9.5-3.3-21.4-9.6-31.9-16zM199.2 151.6l10.3 77.6c8.1.4 17.9 4.5 28.6 10.2V165a79.7 79.7 0 00-38.9-13.4zM127.9 193.8l30.1 62.4c8.2-7.1 17-14.8 26.8-20.2l-23.1-70.5c-12.3 8.7-23.6 19.8-33.8 28.3zM323.3 201.7v72.2c9.5-3.2 20.5-9.5 31.9-16.4v-71.8a198 198 0 01-31.9 16zM385.5 165v74.4a74.2 74.2 0 0128.5-10.2l10.3-77.6c-14.9.4-29 7.2-38.8 13.4zM462 165.6L439 236c9.7 5.4 18.5 13.1 26.7 20.2l30-62.4c-10.2-8.5-21.5-19.6-33.7-28.2z'/%3E%3Cpath class='st6' d='M311.8 280.3c-14 0-32.8-11.5-52.7-23.7-18.7-11.5-38.1-23.4-50.8-23.4-17.3 0-32.4 13-45.8 24.5-13.5 11.6-26.3 22.6-39.3 17.7l-1.6-.6-33.4-70.7 7.2-4c.1.1.3.4 1.1.9 9 6.3 20.8-3.2 39.3-19.6 18-16 38.4-34.1 62.2-34.1 21.6 0 41.3 12.8 51.1 20.4 14 11.1 50 32.4 62.7 32.4 12.6 0 48.7-21.3 62.6-32.4 9.9-7.6 29.6-20.4 51.2-20.4 23.8 0 44.3 18.1 62.3 34.1 18.4 16.4 30.3 25.8 39.2 19.6.2-.1 1-.7 1.3-1.1l7 4.2-33.4 70.7-1.6.6c-13 4.9-25.8-6.1-39.3-17.7-13.4-11.5-28.5-24.6-45.8-24.6-12.7 0-32.1 11.9-50.8 23.4-19.9 12.3-38.6 23.8-52.7 23.8zM208.3 225c15 0 34.5 12 55.1 24.6 18 11.1 36.7 22.5 48.4 22.5 11.7 0 30.4-11.4 48.4-22.5 20.6-12.7 40.1-24.6 55.1-24.6 20.4 0 36.7 14.1 51.2 26.6 11.4 9.8 21.3 18.4 29.5 16.7l26.9-57c-12.6 1.2-26.2-10.9-40.5-23.6-16.9-15-36.1-32-56.8-32-8.2 0-25.1 2.4-46.1 18.6-12.8 10.2-51.4 34.1-67.7 34.1-9 0-24.2-7.2-35.3-13.3a253.3 253.3 0 01-32.5-20.9c-7.2-5.6-26.2-18.6-46-18.6-20.6 0-39.8 17-56.7 32-14.3 12.7-28 24.9-40.6 23.6l26.9 56.9c8.2 1.7 18.1-6.9 29.5-16.7 14.5-12.3 30.9-26.4 51.2-26.4z'/%3E%3Cpath d='M313.1 4.5c-69 0-124.7 28.3-124.7 63.4 0 35 55.7 63.4 124.7 63.4 68.8 0 124.8-28.4 124.8-63.4-.1-35.1-56-63.4-124.8-63.4zm.1 105.3c-48.8 0-88.3-15.8-88.3-35.2 0-19.4 39.6-35.1 88.3-35.1 48.7 0 88.4 15.8 88.4 35.1-.1 19.5-39.7 35.2-88.4 35.2z' fill-rule='evenodd' clip-rule='evenodd' fill='%23fdc300'/%3E%3Cpath class='st1' d='M312.8 49.6a84.8 84.8 0 100 169.4h-1c46.9 0 85-37.9 85-84.7a85 85 0 00-85-84.7h1z'/%3E%3Cpath class='st6' d='M312.8 223h-1a89 89 0 01-88-88.8 89 89 0 0188-88.8h1a89.1 89.1 0 0188.1 88.8 89 89 0 01-88.1 88.8zm-.5-169.3a80.8 80.8 0 00-80.3 80.6c0 44.3 36 80.3 80.3 80.6a80.8 80.8 0 0080.4-80.6c0-44.3-36-80.3-80.4-80.6z'/%3E%3Cpath class='st0' d='M298.7 204.3l-17.5-29.6-32-5.2-8 10.1.9 1.5 1.4 2a85.1 85.1 0 0044.3 32.1l3.3.6 7.6-11.5zM276.8 122.5l13.8 42.3H334l13.8-42.3-35.5-25.6-35.5 25.6zM312.3 79.8l26.4-17.3V54a85 85 0 00-26.4-4.4 86 86 0 00-26.4 4.4v8.5l26.4 17.3zM263.3 109.1l.9-33.6-6.8-5.3c-3.6 3.1-7 6.4-10 10l-.4.4a84.1 84.1 0 00-18.3 42l7.6 3.3 27-16.8zM343.5 174.7L326 204.3l7.6 11.6 3.2-.6a85.7 85.7 0 0045-32.8l.7-1 1.1-1.8-8.1-10.1-32 5.1zM361.4 109.1l26.9 16.8 7.6-3.3a83.8 83.8 0 00-18.5-42.2h-.1c-3-3.7-6.5-7.1-10.1-10.2l-6.9 5.3 1.1 33.6z'/%3E%3C/svg%3E");
}

[football4club_logo="REA"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252.2 324.9'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.b%7Bfill:%23213483%7D.c%7Bfill:%23ebb10f%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M239.5 198.6a112 112 0 00-58.1-99l7.4-7.6a38.4 38.4 0 0115.6-6.5l8-1.4 3.4-.6-.1-3.6-.4-8a46.4 46.4 0 00-53.6-43.6 44 44 0 00-67.3.1A46.4 46.4 0 0040 71.9l-.4 8-.1 3.6 3.5.6 8 1.4a38.6 38.6 0 0115 5.9c.9.9 4.1 4.1 7 7.3a114.4 114.4 0 00-60.2 99.8A114.5 114.5 0 00126.5 312c61.4-.1 114.3-51.4 113-113.5z'/%3E%3Cpath class='a' d='M128.1 12.7a44 44 0 0133.6 15.6A46.3 46.3 0 01215.3 72l.4 8 .1 3.5-3.5.6-7.9 1.4a38.4 38.4 0 00-15.6 6.5l-7.4 7.6a112 112 0 0158 99c1.4 62.1-51.5 113.4-113 113.5h-.2A114.5 114.5 0 0112.7 198.5C13 157 36.4 118.2 73 98.7l-7.1-7.3a38.6 38.6 0 00-15-5.9l-8-1.3-3.5-.6.2-3.6.4-8.1a46.4 46.4 0 0154.4-43.5A44.3 44.3 0 01128 12.7m0-12.7a56.7 56.7 0 00-38.5 15h-3.3a59 59 0 00-59 56.3l-.3 8-.2 3.7-.5 11.2 11 2 3.6.5 8 1.4 1.3.2a127.5 127.5 0 00-31.8 35.4A125.8 125.8 0 00.1 198.4c-.1 33.3 13 64.9 37 89a127.8 127.8 0 0040.2 27.3 123.4 123.4 0 0049 10.2h.3c33.5-.1 66.4-14.2 90.3-38.6 23.4-24 36-55.1 35.4-87.7a121.5 121.5 0 00-17.2-63.8 126.6 126.6 0 00-31.8-36 25.7 25.7 0 013.3-.7l8-1.4 3.5-.7 11-1.9-.5-11.2-.2-3.5-.4-8A59 59 0 00169 15h-2.4a58.1 58.1 0 00-7.7-6A56.7 56.7 0 00128 0z'/%3E%3Cpath class='b' d='M239.5 198.6c1.3 62.1-51.6 113.4-113 113.5-62 .2-114-51.5-113.8-113.6A113.7 113.7 0 01126 85.5a112.6 112.6 0 01113.5 113.1z'/%3E%3Cpath class='c' d='M234.2 198.6C235.5 258 185 306.7 126.5 307c-59 0-108.7-49.1-108.5-108.4A108.4 108.4 0 01126 90.8a107.4 107.4 0 01108.2 107.8zm-107.8 95.8c52 0 95.7-43.4 95.6-95.2a95.1 95.1 0 00-103.7-95c-46.5 3-87.1 41.4-87.7 94.8a96 96 0 0095.8 95.4z'/%3E%3Cpath class='c' d='M126.1 287c-48 1.3-88.5-40.3-88.4-88s40.3-89.8 91-88.5a89.5 89.5 0 0186.2 88.8c-.1 47.5-40.7 89.2-88.8 87.7zm.1-12.4c42 0 76.1-33.7 76-75.4a75.3 75.3 0 00-76.2-76c-44 .1-75.3 34.9-75.6 75.2a75.4 75.4 0 0075.8 76.2z'/%3E%3Cpath class='c' d='M126.1 257c-32.8-1.8-57.7-24.7-58-58a57.3 57.3 0 0158.3-57.6A57.3 57.3 0 01184 199c-.1 33.1-25 56-57.9 57.9zm0-13.6c25.6 0 44.9-19.1 45-44.4 0-24.8-20.3-45.2-44.9-45.2s-44.8 20.3-45 45c-.2 28.7 25.3 46.7 45 44.6z'/%3E%3Cpath class='a' d='M165.6 205.6a43.5 43.5 0 00.5-6.5c.1-25-20.5-39.7-39.8-39.8a40.5 40.5 0 00-5.3.3zM86.7 191.7a43.1 43.1 0 00-.6 7.4c.1 23 17.4 38.8 40 40a49 49 0 007.1-.9z'/%3E%3Cpath class='a' d='M103.2 141.2a60.4 60.4 0 0123-4.5A62.3 62.3 0 01188 199a63.3 63.3 0 01-5 24.6l7 7.2a72 72 0 007.2-31.8 70.3 70.3 0 00-70.7-70.8 72.9 72.9 0 00-29.8 6.4zM150.5 255.5a65.8 65.8 0 01-24.5 4.6c-26.9 3-62-21.9-61.7-61.3a62 62 0 015.1-24.4l-7.2-7.3a70.4 70.4 0 00-7.2 32c.2 40.7 30.8 68.9 71.1 71a83.5 83.5 0 0031.3-7.7z'/%3E%3Cpath class='b' d='M180.9 81.8h-.2a124 124 0 00-26.3-9.3l-2.9-.6h-.4l-3.3-.7h-.5l-2.8-.5h-1l-2.3-.3-1.2-.2-2.2-.2h-1.3a135.8 135.8 0 00-18.8-.2h-1.5l-2.3.3h-.7c-4.1.4-8.2 1-12.2 1.8h-.2a122.5 122.5 0 00-27.1 9H73.4a51.5 51.5 0 00-20.2-8.2h-.3v-.2a33.4 33.4 0 0147-29 31.1 31.1 0 0156.2-.2 33.4 33.4 0 0146.3 29.2v.3h-.2a51.5 51.5 0 00-21.2 8.9zM140 69.7h1.2l2.3.4h1.1l2.8.5h.4l3.4.7h.4l2.8.7a125.6 125.6 0 0126.4 9.2 51.9 51.9 0 0121-9A32.9 32.9 0 00156 44h-.2l-.1-.2a30.6 30.6 0 00-55.5.3l-.1.3-.2-.1a32.9 32.9 0 00-46.5 28 52 52 0 0120 8.2 123.8 123.8 0 0127.5-9h.2c4-.8 8-1.4 12-1.8h.7l2.3-.2 1-.1h.4a124.4 124.4 0 0119 .1l1 .1h.3l2.1.2z'/%3E%3Cpath class='c' d='M68.5 88.2s4.6 4.5 8.3 8.6a114.6 114.6 0 01100.8.9c3.7-4 8.6-8.8 8.6-8.8a42.7 42.7 0 0117.5-7.4l8-1.3-.5-8A42.3 42.3 0 00160 32.8a40 40 0 00-64 .1 42.3 42.3 0 00-51.9 39.2l-.4 8 8 1.4a42.7 42.7 0 0116.8 6.7zM86.3 41a32.9 32.9 0 0113.7 3 30.9 30.9 0 0156-.3 33.1 33.1 0 0146.1 29 52.3 52.3 0 00-21.3 8.9 124.4 124.4 0 00-26.4-9.2l-2.8-.6-.4-.1-3.4-.6h-.4l-2.8-.5-1-.2-2.3-.3-1.3-.1-2.1-.2-1.3-.2c-3.4-.2-6.9-.4-10.4-.4h-.2c-2.8 0-5.6.1-8.3.3l-1.5.1-2.3.2h-.7c-4.1.5-8.2 1-12.2 2a122.9 122.9 0 00-27.4 9 52 52 0 00-20.4-8.2 33.1 33.1 0 0133-31.6z'/%3E%3Cpath class='b' d='M128.1 16.8a40 40 0 0132 16A42.3 42.3 0 01211.3 72l.4 8-8 1.4a42.7 42.7 0 00-17.5 7.4s-4.8 4.8-8.5 8.8a113.4 113.4 0 00-51.4-12.2h-.2A112.7 112.7 0 0076.8 97c-3.7-4.2-8.3-8.6-8.3-8.6a42.7 42.7 0 00-16.8-6.7l-8-1.4.4-8.1a42.3 42.3 0 0152-39.2 40.1 40.1 0 0132-16.1m-28 27.1a33.1 33.1 0 00-46.9 28.6 52 52 0 0120.4 8.2 122.9 122.9 0 0127.4-9c4-.9 8-1.5 12.2-1.9h.7l2.3-.3h1.5l8.3-.4h.2c3.5 0 7 .2 10.4.5h1.3l2.1.3 1.3.1 2.2.3 1 .2 2.9.4h.4l3.4.7h.4l2.8.7a124.4 124.4 0 0126.5 9.2 52.3 52.3 0 0121.2-9A33.1 33.1 0 00156 43.6a30.9 30.9 0 00-56 .3m28-31.2a44.3 44.3 0 00-33.7 15.7A46.4 46.4 0 0040 72l-.4 8-.1 3.6 3.5.6 8 1.4a38.6 38.6 0 0115 5.9c1 1 4.7 4.7 7.8 8.1l2 2.3 2.7-1.4A108 108 0 01126 89.6h.2a108.8 108.8 0 0149.6 11.7l2.7 1.4 2.1-2.3 8.2-8.4a38.4 38.4 0 0115.6-6.5l7.9-1.4 3.5-.6-.1-3.6-.4-8a46.4 46.4 0 00-53.6-43.6A44 44 0 00128 12.7z'/%3E%3Cpath d='M100 44a33.1 33.1 0 00-46.8 28.5 52 52 0 0120.4 8.2 122.9 122.9 0 0127.4-9c4-.9 8-1.5 12.2-1.9h.7l2.3-.3h1.5c2.7-.2 5.5-.3 8.3-.3h.2c3.5 0 7 .1 10.4.4h1.3l2.1.3 1.3.1 2.2.3 1 .2 2.9.4h.4l3.4.7h.4l2.8.7a124.4 124.4 0 0126.5 9.2 52.3 52.3 0 0121.2-9A33.1 33.1 0 00156 43.6a30.9 30.9 0 00-56 .3' fill='%23e42512'/%3E%3C/svg%3E");
}

[football4club_logo="FCB"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312.2 315.8'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.c%7Bfill:%23a50044%7D.e%7Bfill:%23db0030%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M112.1 0a12 12 0 00-7.2 2.4 65.5 65.5 0 01-38.8 11.9c-8.8 0-17.2-1.6-23.7-4.4a12 12 0 00-14.5 3.8L15.2 31a12 12 0 000 14.3 82.2 82.2 0 0114.8 30 58.8 58.8 0 01.3 26.3c-3.2 15.2-12 30.5-27.1 46.8a12 12 0 00.3 16.6L14 175.5c-.2 36 9.7 64.7 29.6 85.5 19.6 20.6 48.6 33 86.3 36.8l18.8 15.3a12 12 0 0015.2 0l18.9-15.4c17.8-1.5 47.7-7 73.2-26.5a103.3 103.3 0 0031.5-39.4 133 133 0 0011-56.5l10.2-10.3a12 12 0 00.3-16.6c-15.7-17-25-34-27.5-50.4a60.5 60.5 0 011.5-25.4c2.5-9 7.3-18.3 14-27.3a12 12 0 00.2-14.2L285 14a12 12 0 00-14-4.2 68.8 68.8 0 01-24.4 4.5 68 68 0 01-39.1-12 12 12 0 00-14 0C180.7 11.3 168.2 16 156 16s-24.3-4.5-36.9-13.7a12 12 0 00-7-2.3z'/%3E%3Cpath d='M35.7 169.2h240.4c6.3 66.5-36 102.4-100.2 106h-40.8c-61.5-4.3-107.4-36.8-99.4-106z' fill='%23004d98'/%3E%3Cpath class='c' d='M139.3 170h34v106.3h-34zM71.6 170h34v95h-34z'/%3E%3Cpath class='c' d='M83.4 260.1h22.2v9.8H83.4zM206.7 170h34v95h-34z'/%3E%3Cpath class='c' d='M206.7 260.1h22.2v9.8h-22.2z'/%3E%3Cpath class='a' d='M155.3 38.8v94.4l-114.8.8 11.8-45.4-14.7-54.4 72.6-9.4z'/%3E%3Cpath d='M157 38.8v94.4l114.7.8L260 88.6l14.7-54.4-72.6-9.3z' fill='%23ffed02'/%3E%3Cpath class='e' d='M89 27.5h32.9v105H89z'/%3E%3Cpath class='e' d='M52.9 66.7h102.4v32.9H52.9zM176.6 28h22.6v104.1h-22.6zM217.6 35.5h22.6v94.8h-22.6z'/%3E%3Cpath d='M296.9 156.7l-.7-.8c-33.8-37.5-38.3-83.8-11.5-120.8l.4-.6-8.1-11-.7.2c-24.7 8.1-55 4.4-73.7-9.1l-.6-.4-.6.4a74 74 0 01-90.2-.2l-.6-.5-.6.5a84.2 84.2 0 01-73 9.3l-.7-.3-8.6 11 .5.7C68 91.2 29 141.7 16 155.8l-.7.7 12.4 13.2c-2.2 33 5.5 60 23 79.8 18.6 21.1 48.2 33.5 85.7 35.7l19.9 16.6 19.8-16.8c13.3-.3 56.7-3.7 85.2-35.4 18-20 25.8-47 23-80zM252.7 239c-16.5 19.3-43.2 30.4-77 32.3l-39.4.1c-35-2.5-62-14.2-78.2-33.7-14-17-19.7-39.3-16.7-66.6h230c2.4 27.9-3.8 50.7-18.7 68zm10-111.2h-213c12.7-31.3 11.5-61.7-3.5-88.4 25.7 3.4 45.7.4 64.4-9.6 29.9 17.4 60.7 17.3 91.6-.2 16 9.7 34.2 12.7 63.8 10.3-15 27-16 58-3.2 88z' fill='%23deb405'/%3E%3Cpath d='M188.1 220.2a31.5 31.5 0 01-63 0 31.5 31.5 0 0163 0z' fill='%23edbb00'/%3E%3C/svg%3E");
}

[football4club_logo="EAM"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 243.8 320.6'%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill:%23fff%7D.c%7Bfill:%23c60900%7D%3C/style%3E%3C/defs%3E%3Cpath d='M217.2 237.9L121.5 311l-95-73.2a43.7 43.7 0 01-17-34.6V38.5A16.3 16.3 0 0121 23a333.6 333.6 0 0199.3-13.5A362 362 0 01222.7 23a16.3 16.3 0 0111.7 15.7v164.4a43.7 43.7 0 01-17.2 34.7z' fill='%23181866'/%3E%3Cpath class='b' d='M27.3 206.8a31.2 31.2 0 0010.4 14.4l83 64 83.6-64a31.3 31.3 0 0012.2-24.8V63.1A197651 197651 0 0027.3 206.8z'/%3E%3Cpath class='c' d='M50.3 189.3l-23 17.4a31.2 31.2 0 0010.4 14.5l12.6 9.7zM193.5 229.4l10.8-8.2a31.3 31.3 0 0012.2-24.8V63.1l-23 17.4zM107.8 145.6l-29.2 22.2v84.9l29.2 22.4zM165.3 251V102L136 124v149.3z'/%3E%3Cpath class='b' d='M120.2 9.5A362 362 0 01222.7 23a16.3 16.3 0 0111.7 15.7v164.4a43.7 43.7 0 01-17.2 34.7L121.5 311l-95-73.2a43.7 43.7 0 01-17-34.6V38.5A16.3 16.3 0 0121 23a333.6 333.6 0 0199.3-13.5m0-9.5A344 344 0 0018 14 25.7 25.7 0 000 38.4v164.8a53.1 53.1 0 0020.7 42.1l95 73.2a9.5 9.5 0 0011.6 0l95.7-73.2a53.1 53.1 0 0020.8-42.2V38.8A25.8 25.8 0 00225.5 14C208 8.8 171 0 120.2 0z'/%3E%3Cpath class='b' d='M180.4 47.7a244 244 0 00-60.5-7.2c-31.8 0-56.6 4.7-67.3 8-4.4 1.4-4.7 1.6-4.7 6.3v91.4s134.9-98 132.5-98.5z'/%3E%3C/svg%3E");
}

[football4club_logo="ACB"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 283.2 324.3'%3E%3Cdefs%3E%3CclipPath id='a' transform='translate(-25 -3.7)'%3E%3Cpath clip-rule='evenodd' fill='none' d='M111.6 122.2l-.6.4.6-.4z'/%3E%3C/clipPath%3E%3CclipPath id='b' transform='translate(-25 -3.7)'%3E%3Cpath fill='none' d='M111 122.2h.6v.4h-.6z'/%3E%3C/clipPath%3E%3Cstyle%3E.c%7Bfill:%231c1c1b%7D.c,.d,.e%7Bfill-rule:evenodd%7D.d%7Bfill:%23fff%7D.e%7Bfill:%23e42212%7D.g%7Bclip-path:url(%23b)%7D%3C/style%3E%3Cimage id='i' width='8' height='4' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAECAYAAACzzX7wAAAACXBIWXMAAA2IAAANiAGC02DBAAAAFElEQVQIW2P8//8/Az7AhFeWKgoAhx0DBWR6zhoAAAAASUVORK5CYII='/%3E%3C/defs%3E%3Cpath class='c' d='M271 30.3l-.4-18.6h-258l-.4 18.6c-1.5 53.4-5 178.3 126.1 279.7l3.3 2.5 3.3-2.5C276 208.6 272.5 83.7 271 30.3z'/%3E%3Cpath class='d' d='M265.4 17H17.8c0 45.2-17.3 179.7 123.8 288.8C282.6 196.7 265.4 62.2 265.4 17z'/%3E%3Cpath class='c' d='M228.6 52.6h-174s-13.7 120 87 205.4c100.6-85.4 87-205.4 87-205.4z'/%3E%3Cpath class='d' d='M80.4 168.7a246.8 246.8 0 0011.9 22.8v-31.8l-12 9zM152.3 114.5v126.8a269.3 269.3 0 0018.5-20.8v-120l-18.5 14zM191.6 85v105.2a246.7 246.7 0 0017.4-36.5v-82L191.6 85zM113.1 144v77.5a268 268 0 0018.4 20.6v-112l-18.4 14z'/%3E%3Cpath class='e' d='M92.3 159.7v31.8a253.4 253.4 0 0020.8 30V144l-20.8 15.7zM131.5 130.1v112a254 254 0 0010 9.7q5.7-5.2 10.9-10.5V114.5L131.6 130zM170.8 100.6v120a255 255 0 0020.8-30.4V85l-20.8 15.7zM224.7 60L209 71.7v82A232 232 0 00224.6 60z'/%3E%3Cg clip-path='url(%23a)'%3E%3Cimage width='8' height='4' transform='matrix(.82 0 0 -.82 83.8 121)' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAECAYAAACzzX7wAAAACXBIWXMAAA2IAAANiAGC02DBAAAAIUlEQVQIW2P8//8/Az7AhFcWWcGShuL/SxqKMYxjJGQFAPdcCy2lZmvWAAAAAElFTkSuQmCC'/%3E%3Cuse transform='matrix(.82 0 0 -.82 83.8 121)' xlink:href='%23i'/%3E%3Cuse transform='matrix(.82 0 0 -.82 83.8 121)' xlink:href='%23i'/%3E%3Cuse transform='matrix(.82 0 0 -.82 83.8 121)' xlink:href='%23i'/%3E%3Cuse transform='matrix(.82 0 0 -.82 83.8 121)' xlink:href='%23i'/%3E%3Cuse transform='matrix(.82 0 0 -.82 83.8 121)' xlink:href='%23i'/%3E%3Cuse transform='matrix(.82 0 0 -.82 83.8 121)' xlink:href='%23i'/%3E%3C/g%3E%3Cpath d='M270.6 11.8l.4 18.5c1.5 53.4 5 178.3-126.1 279.7l-3.3 2.5-3.3-2.5C7.2 208.6 10.7 83.7 12.2 30.3l.3-18.6h258.1m0-11.7h-258A11.8 11.8 0 00.7 11.5L.4 30.1c-.8 27.3-2 73.1 13.8 125.5a304.8 304.8 0 0039.1 82 355 355 0 0077.8 81.7l3.3 2.5a11.8 11.8 0 0014.4 0l3.3-2.5a355.4 355.4 0 0077.8-81.7 304.5 304.5 0 0039-82c15.9-52.4 14.6-98.2 13.9-125.5l-.4-18.6A11.8 11.8 0 00270.6 0z' fill='%23fff'/%3E%3Cpath d='M141.5 57.3h-83c-.6 7.7-1.8 36.3 8 72.9a246.8 246.8 0 0011.9 34L97 150.1l26.4-19.9 96.8-72.9z' fill='%2327b6bb' fill-rule='evenodd'/%3E%3C/svg%3E");
}

[football4club_logo="SEV"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 274.7 328'%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill:%23fff%7D.c%7Bfill:%23cc000f%7D%3C/style%3E%3C/defs%3E%3Cpath d='M197.3 28.7a136 136 0 01-44.5-9.3c-5.1-2-10.2-4.2-15.2-6.7v-.2a.3.3 0 00-.2 0 .7.7 0 00-.2 0v.2c-5.4 2.6-10.7 5-16 7a135.3 135.3 0 01-44.2 9c-21.8.6-43.3-4.7-64.5-16.2v47.9c3.5 83.8 26.3 148.3 64.4 197.5a275.7 275.7 0 0044.2 45.2c5.2 4.2 10.5 8.2 16 12.1v.3a.9.9 0 01.2-.1.9.9 0 00.2 0v-.2q7.8-5.6 15.2-11.5a277 277 0 0044.5-45.2c38.4-49.2 61.4-114 65-198.1V12.6a126.2 126.2 0 01-65 16z' fill='%23d66100'/%3E%3Cpath class='b' d='M20.7 63.3C40 54.3 58.6 49.6 77 49.8a108.8 108.8 0 0144.2 9.8 130 130 0 0112 6.2V102a33.5 33.5 0 00-12 3.7 34 34 0 00-17 22.5H28.5a415.7 415.7 0 01-7.9-65zM246 128.2h-76.5a33.6 33.6 0 00-16.7-22.3 33 33 0 00-11.7-3.8v-36a83.4 83.4 0 0111.7-6.8 102 102 0 0144.5-10c17.5-.1 36.6 4 56.1 13.4-1 22-3 44.4-7.4 65.6z'/%3E%3Cpath class='c' d='M254.2 56.7a127 127 0 00-57-13.1 121.6 121.6 0 00-44.5 9.2 142.1 142.1 0 00-15.4 7.6.9.9 0 00-.2 0v.2a136.2 136.2 0 00-16-7.5A121 121 0 0077 44.3c-18.8 0-37.8 4.5-56.4 13.8-.4-11-.4-21.4-.1-32.5l.2.1A138.6 138.6 0 0077 36.9a138 138 0 0044.2-8.3 155.9 155.9 0 0016.2-6.8 158.7 158.7 0 0015.4 6.5 144.7 144.7 0 0044.5 8.6 127.5 127.5 0 0057-11.3q.5 15.6 0 31.1z'/%3E%3Cpath class='b' d='M50.5 136H30.3a325.2 325.2 0 0020.2 61zM88.7 136H69.6v96.7s0 .7 7.3 11q5.6 7.9 11.8 15.4v-123zM127.4 167.5a33.7 33.7 0 01-19.6-15.4V280q6.4 6.3 13.3 12.3l6.3 5.1v-130zM166 151.6a33.5 33.5 0 01-19.5 15.8v130.7l6.2-5.2q7-5.9 13.4-12.1V151.6zM244.3 136h-21V199c-.6 1.4 14.4-30 21-62.8zM204.3 136h-19.1v124.1c-2.2 2.7 6.3-7.5 12-15.7 2.5-3.4 4.8-7 7-10.4v-98z'/%3E%3Cpath class='c' d='M69.6 136v96.7a283 283 0 01-19.1-35.6v-61zM107.8 152v128a260 260 0 01-19.1-20.9v-123h14.6a33.2 33.2 0 004.5 16zM146.5 167.4V298l-9.1 7c-3.5-2.5-6.8-5-10-7.7v-130a32.6 32.6 0 009.4 1.4 33 33 0 009.6-1.4zM185.2 136v124.1a258.7 258.7 0 01-19.1 20.7V151.6a33.2 33.2 0 004.2-15.5zM223.3 136V199a277.7 277.7 0 01-19 35.1v-98z'/%3E%3Cpath class='b' d='M262.2 12.5v47.9c-3.6 84.2-26.5 148.9-65 198.1a277 277 0 01-44.4 45.2q-7.5 6-15.2 11.5v.3a.9.9 0 01-.2-.1.9.9 0 00-.2 0v-.2c-5.6-3.9-10.9-8-16-12.1a275.7 275.7 0 01-44.3-45.2C38.8 208.7 16 144.2 12.5 60.4V12.5c20.1 11 40.6 16.2 61.2 16.2H77a135.3 135.3 0 0044.2-9c5.4-2 10.7-4.3 16-7v-.1a.7.7 0 01.2 0 .3.3 0 01.2 0v.2c5.1 2.5 10.2 4.7 15.2 6.7a136 136 0 0044.5 9.3h3.7c20.6 0 41-5.3 61.2-16.2m0-12.5a12.4 12.4 0 00-6 1.5c-18 9.8-36.6 14.7-55.3 14.7H197.4a124.2 124.2 0 01-40.2-8.5c-4-1.5-8.2-3.3-12.4-5.4a12.5 12.5 0 00-7.2-2.4h-.4a12.5 12.5 0 00-7.3 2.3A171 171 0 01116.8 8a123 123 0 01-40.2 8.3h-2.8c-18.8 0-37.4-5-55.3-14.7A12.5 12.5 0 000 12.5v48.4c1.8 42.2 8.5 80.9 19.9 115.2 11 33.3 27 63.4 47.2 89.5a289.3 289.3 0 0046.2 47.2c5 4 9.9 7.8 14.8 11.3a12.5 12.5 0 009 3.9h.5a12.4 12.4 0 006.6-2 12.7 12.7 0 002.5-2c4.8-3.3 9.4-7 14-10.5a290.3 290.3 0 0046.4-47.2 299.8 299.8 0 0047.5-89.7 420.3 420.3 0 0020-115.6V12.5A12.5 12.5 0 00262.2 0z'/%3E%3C/svg%3E");
}

[football4club_logo="CVF"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 262.1 330'%3E%3Cdefs%3E%3CclipPath id='a' transform='translate(-34)'%3E%3Cpath class='a' d='M130.3 97A32 32 0 01102.9 81a6.3 6.3 0 01-.6-3 6 6 0 013.4-5.4 141.8 141.8 0 01116.9-.5h-.2a6.2 6.2 0 013.6 5.5 7.6 7.6 0 01-1 3.5 32.4 32.4 0 01-28 16l-4 .1h-62.7'/%3E%3C/clipPath%3E%3CclipPath id='b' transform='translate(-34)'%3E%3Cpath class='a' d='M183 77l78.6 104L165 312.2 68.3 180.8l78.5-104a162.7 162.7 0 0117.9-1.3c6.8 0 18.4 1.4 18.4 1.4'/%3E%3C/clipPath%3E%3Cstyle%3E.a%7Bfill:none%7D.b%7Bfill:%23fff%7D.d%7Bfill:%23ffe667%7D.f%7Bclip-path:url(%23b)%7D.g%7Bfill:%23e70005%7D%3C/style%3E%3C/defs%3E%3Cpath class='b' d='M131 330l-13.5-18.4A131.5 131.5 0 010 181 131.5 131.5 0 0159.3 71.1a16.5 16.5 0 017.8-8.1l.2-.1a152.3 152.3 0 01125.6-.5l7 3.1-.4 2.6a15.3 15.3 0 011 1.5A131.5 131.5 0 01262 181c0 67.4-51.3 123.9-117.6 130.7zM78 80.4l-.1 3-4.6 2.8a110.6 110.6 0 00-53 94.7c0 58.3 45.4 107 103.4 110.9l4.7.3 2.6 3.6 2.7-3.6 4.7-.3c58-3.8 103.4-52.5 103.4-110.8a111.8 111.8 0 00-54.7-95.8l-4-2.4-.5-2.8a132 132 0 00-104.6.4z'/%3E%3Cpath class='b' d='M75.1 78A37.7 37.7 0 0155 72.2h-.3a17.2 17.2 0 01-17-15.5L21.5 39.8l16.2-11.2c13.6-8.6 21.3-.4 23.5 2.6a18.6 18.6 0 014.3-.1 18.9 18.9 0 012.8.4 18.3 18.3 0 014.2-8.4 18 18 0 0134.5-7.9 17.8 17.8 0 012.4 1.3l.9.6a18.8 18.8 0 013-2.7 18 18 0 0135.1 0 18.7 18.7 0 013 2.7l.9-.6a18 18 0 012.4-1.3 18 18 0 0120.5-10 18 18 0 0114 17.8 18.6 18.6 0 011.8 2.4 18 18 0 012.4 6.1 18.3 18.3 0 017.1-.3c2.2-3 10-11.2 23.5-2.6l.3.2 16 11L224 56.7a17.2 17.2 0 01-17 15.5h-.3a37.7 37.7 0 01-46.2-4.7 37.8 37.8 0 01-18.7.5 37.2 37.2 0 01-11-4.5 37.4 37.4 0 01-11 4.5 38.7 38.7 0 01-18.8-.3A36.8 36.8 0 0183.6 77a37.7 37.7 0 01-8.5 1z'/%3E%3Cpath d='M15 181.6c0-64.1 51.8-116 115.7-116s115.8 52 115.8 116-51.8 116.1-115.8 116.1S15 245.7 15 181.6' fill='%23004884'/%3E%3Cpath class='d' d='M96.3 97A32 32 0 0169 81a6.3 6.3 0 01-.7-3 6 6 0 013.4-5.4 141.8 141.8 0 01116.9-.5h-.1a6.2 6.2 0 013.5 5.5 7.6 7.6 0 01-1 3.5 32.4 32.4 0 01-28 16l-4 .1H96.3'/%3E%3Cg clip-path='url(%23a)'%3E%3Cellipse cx='130' cy='193.2' rx='118.4' ry='118.8'/%3E%3C/g%3E%3Cpath class='d' d='M130.9 10.5a7.5 7.5 0 017.4 7.6 7.6 7.6 0 01-.8 3.4h.4a7.6 7.6 0 11-4.1 13.8 15.4 15.4 0 0030.4 3.7 8.2 8.2 0 01-4 .2 7.6 7.6 0 013.4-14.7h.3a7.4 7.4 0 010-3.5 7.5 7.5 0 1114.6 3.4 7.4 7.4 0 01-1.5 3.2h.4a7.5 7.5 0 01-3.4 14.8 7.4 7.4 0 01-3.3-1.8l-.1.3A15.4 15.4 0 00182 59.4c7.2 1.6 11.9-.5 14.3-3a7.7 7.7 0 01-3.6-1.6 7.5 7.5 0 019.7-11.5l2 1.8 4.3-7.5c2.3-3.5 5.8-2.5 9.5-.1l5.8 4-10.9 11.3a5.3 5.3 0 01.4 2.2 6.7 6.7 0 01-6.6 6.7 6.4 6.4 0 01-3-.5 27.2 27.2 0 01-40.3-6.1l.3-.4a27.1 27.1 0 01-19.8 3 26.4 26.4 0 01-13.3-7.6 26.4 26.4 0 01-13.4 7.6 26.8 26.8 0 01-19.7-2.6v.2a26.3 26.3 0 01-16.6 11.5 27.1 27.1 0 01-23.5-5.6 6.3 6.3 0 01-3 .5 6.6 6.6 0 01-6.6-6.7 5.3 5.3 0 01.4-2.2L37.6 41.5l5.8-4c3.7-2.4 7.2-3.4 9.5.1 1.3 2 1.7 2.8 4.4 7.5l1.9-1.8a7.5 7.5 0 019.7 11.5 7.7 7.7 0 01-3.6 1.7c2.5 2.4 7 4.5 14.3 2.9a15.4 15.4 0 0011.6-18.5l-.1-.3a7.4 7.4 0 01-3.4 1.8 7.6 7.6 0 01-3.4-14.8h.5a7.4 7.4 0 01-1.6-3.2 7.5 7.5 0 1114.7.1h.2a7.6 7.6 0 013.4 14.7 8.2 8.2 0 01-4-.2 15.4 15.4 0 0030.4-3.7 7.5 7.5 0 11-4.1-13.8h.4a7.6 7.6 0 01-.8-3.5 7.5 7.5 0 017.5-7.5zM149.3 75.4L229 180.8l-97.9 133-97.9-133.2 79.5-105.3a164.5 164.5 0 0118.1-1.3c7 0 18.6 1.4 18.6 1.4'/%3E%3Cg class='f'%3E%3Cpath class='g' d='M76.3 134v94.4l-21.7-27.2v-39.5L76.3 134z'/%3E%3C/g%3E%3Cg class='f'%3E%3Cpath class='g' d='M77 230.4l-23-29v-40.1L77 132zM55.3 201l20.3 25.5V136l-20.3 26z'/%3E%3C/g%3E%3Cg class='f'%3E%3Cpath class='g' d='M97.3 106.6V260l21.7 27.9V77.7l-21.8 29z'/%3E%3C/g%3E%3Cg class='f'%3E%3Cpath class='g' d='M119.7 289.9l-23.1-29.7V106.4l23-30.7zm-21.8-30.1l20.4 26v-206l-20.4 27z'/%3E%3C/g%3E%3Cg class='f'%3E%3Cpath class='g' d='M185.5 134.3v93.4L207 201v-39.1l-21.4-27.6z'/%3E%3C/g%3E%3Cg class='f'%3E%3Cpath class='g' d='M184.8 229.6v-97.3l22.8 29.4v39.5l-.2.2zm1.4-93.3v89.4l20-25v-38.6z'/%3E%3C/g%3E%3Cg class='f'%3E%3Cpath class='g' d='M164.7 106.8v152.7l-21.6 28.6-.3-211 22 29.7z'/%3E%3C/g%3E%3Cg class='f'%3E%3Cpath class='g' d='M142.5 290.1L142 75l23.4 31.5v153.3l-.2.1zm1-211l.3 207 20.2-26.8V107z'/%3E%3C/g%3E%3C/svg%3E");
}

[football4club_logo="RSD"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 257.4 296.1'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23143c8b%7D.b%7Bfill:%23ffe24a%7D.c%7Bfill:%23fff%7D.d%7Bfill:%23e6a514%7D.e%7Bfill:%23ec1d24%7D%3C/style%3E%3C/defs%3E%3Cpath d='M121.2 7.6h5.7V0h5.2v7.6h5.7v5.1h-5.7v3.8a7.9 7.9 0 014.3 3.6c1-1 10.4 1.4 10.4 4.9 0 .1 48.5-1.7 43.4 47.7a5 5 0 01-4 4.3 33.2 33.2 0 01-8.4 1c.3 3.8-2 6.6-5.6 6.7 0 0 4.5 2.7 2.8 7-1.4 3.5-6.5 3-6.5 3 2 1.7 3 3.4 2 5.8a7.2 7.2 0 01-2 3 82.9 82.9 0 0142.4 88l1.8 1.2a95.8 95.8 0 0118.2 15.8l6.8 7.4a341.2 341.2 0 0019.7 19.4c-14 3.6-26.3 9.6-38.2 16.8l32.3 32.7-12 8-32.4-33-6.6 4.4a387.6 387.6 0 01-24.3 15.7 120.6 120.6 0 01-39 15.2 53.4 53.4 0 01-32-3.5 145 145 0 00-31-27.1c-9.7-1.9-18-11.6-22.7-19.4a57.7 57.7 0 00-6.4-9.9 92.8 92.8 0 00-22.2-20.7c-5.6-3.6-8.5-6.3-10.7-12.7-1.6-4.6-3.7-9-5.4-13.6a62.7 62.7 0 01-2.4-38.9 114 114 0 002-12 32.4 32.4 0 00-1.1-13c-7-22.4-1.4-47.8 4-70.3C1.3 55.6-3 45 2.7 39l4.2-4.5C14.6 26.2 26 36 20.5 44.6l60.4 65a83.2 83.2 0 019.7-6.2 7.3 7.3 0 01-2.1-2.9c-.9-2.4-.5-4.1 1.5-5.8 0 0-4 0-5-3.5-1-3.8 2.5-6.1 2.5-6.1a6.5 6.5 0 01-6.3-7c-2.8 0-8-2.6-10.8-3.2C68 74.3 62 24.6 109 24.5a6.2 6.2 0 013.3 1V25c0-3.5 9.4-5.8 10.5-4.8a7.9 7.9 0 014.3-3.6v-3.9h-5.7V7.6zM57.4 135.8a83.3 83.3 0 0112.9-17.1l-58-62.3a147.4 147.4 0 0012.4 32.3c9 17 20.4 32.5 32.7 47z'/%3E%3Cpath class='a' d='M29.6 201c-9.9-11.2-7-29.1-4.8-43.7l1-6.2a118.6 118.6 0 000-20.3 76.4 76.4 0 00-3.5-17.2 72.5 72.5 0 01-.6-10.9 97.7 97.7 0 011-12v-.4l-.2-.3c-4.7-9-9.6-18.9-12.2-28.7-4.4 20-8.7 42.2-2.8 62.3a34.8 34.8 0 011.3 14 115 115 0 01-2 12.3A53.1 53.1 0 005 169.7c1.5 8.7 7 16.5 13.2 22.4a65 65 0 0011.3 8.8z'/%3E%3Cpath class='b' d='M169.3 85.5h-.2a90.6 90.6 0 00-19-6.2 103.2 103.2 0 00-41.3 0 90.6 90.6 0 00-19 6.1l-.1.1a4 4 0 00-1 4.3 3 3 0 003.2 2.3 91.2 91.2 0 0117.9-5.9 93 93 0 0139.4 0 91.6 91.6 0 0118 5.9s2.5.7 3.8-2.4a3 3 0 00-1.7-4.2z'/%3E%3Cpath class='c' d='M44 207.3a57.5 57.5 0 01-4.7-10.8 110.6 110.6 0 01-3.3-12c-2-8.2-1.2-16.5-.5-24.8a135.2 135.2 0 00.8-15l-.8-6.4c-1.1-9-2.3-18.2 0-26.6a240.3 240.3 0 01-12.4-21 106.1 106.1 0 00-1 12 71.5 71.5 0 00.7 10.8 77.6 77.6 0 013.4 17.3 119.3 119.3 0 010 20.3l-1 6.2c-2.3 15-5.2 33.4 5.7 44.3a55.5 55.5 0 0010.5 4.8l2.7.9z'/%3E%3Cpath class='a' d='M53.3 209a83 83 0 012.6-70.4A297.8 297.8 0 0135.8 112c-2.2 8.3-1 17.4 0 26.2l.8 6.4a138.1 138.1 0 01-.8 15c-.7 8.3-1.4 16.6.5 24.7a109.6 109.6 0 003.3 12 55.7 55.7 0 005 11 51.1 51.1 0 008.7 1.5zM116.6 281.2a62.3 62.3 0 01-3.5 10.7 54.5 54.5 0 0023.6.8c12-2 25-7.3 38.3-15 8.3-4.8 16.3-10.2 24.1-15.6 16.6-11.2 32.9-22.3 53-28l-6.8-6.7c-25.9.5-46.4 14.9-66.7 29.2l-6.2 4.4a193.2 193.2 0 01-26.6 13.9 77.7 77.7 0 01-29.2 6.3z'/%3E%3Cpath class='c' d='M117.9 269a54.8 54.8 0 01-1.2 11.8 77.2 77.2 0 0029-6.2 192.3 192.3 0 0032.7-18.3c20.3-14.3 40.7-28.6 66.6-29.3l-2.1-2.1-6.5-6.7a77 77 0 00-20.7 4.5 140.5 140.5 0 00-19.2 9c-12.4 7.8-25 15.7-38 22.3s-26.4 12-40.7 15z'/%3E%3Cpath class='a' d='M114.7 251.3a51.5 51.5 0 013.1 14.7l.1 2.7c14.2-3 27.6-8.5 40.4-15 13-6.7 25.6-14.5 38-22.3a140.3 140.3 0 0119.3-9 77.5 77.5 0 0120.4-4.6l-.2-.2c-2.2-2.4-4.5-4.8-6.7-7.4l-3.6-3.7c-28.6 1-52.5 15.7-75.9 30l-.5.4-.4.2c-11 5.6-22 11.2-34 14.2z'/%3E%3Cpath class='c' d='M110.6 242.7a54.5 54.5 0 014 8.2c12-3 23-8.5 34-14.2l.4-.2.5-.3c23.3-14.3 47.2-28.9 75.7-30q-3.3-3.3-6.8-6.2a63 63 0 00-22.2.3 85.3 85.3 0 00-23.4 8.2c-9 4-17.6 9.6-26 15.2-11.6 7.6-23.2 15.2-36.2 19z'/%3E%3Cpath class='a' d='M97.2 227.1a54.5 54.5 0 0112.2 13.6l1 1.7a135 135 0 0036-19c8.6-5.7 17-11.3 26.2-15.3a85.2 85.2 0 0123.5-8.2 63.5 63.5 0 0121.6-.4 82.7 82.7 0 00-12-8.2l-6-3.6-3-2.2c-28.6-2.6-51 12.5-73 27.2l-9.1 6A108.2 108.2 0 0197 227z'/%3E%3Cpath class='c' d='M86.6 220.7l2.4 1.1a51.8 51.8 0 017.8 5c6.2-2 12-5.3 17.6-8.4l9.1-6c21.8-14.6 44.2-29.6 72.5-27.3a99.7 99.7 0 01-8.6-7 107.2 107.2 0 00-18.3 1.2A116.8 116.8 0 00150 184a97.6 97.6 0 00-30.5 16.4 187.3 187.3 0 01-16 10.5c-5.4 3.6-11.5 6.2-17 9.8z'/%3E%3Cpath class='a' d='M16.6 193.8a55.9 55.9 0 01-9.3-11.6l1.8 5.2c1.7 4.6 3.8 9 5.4 13.6 2 5.8 4.6 8.1 9.7 11.4a83.4 83.4 0 0112.4 10 67 67 0 0112.2-4.6 55.4 55.4 0 0137.4 2.7c5.4-3.7 11.6-6.3 17.1-10a189.7 189.7 0 0016-10.4c9.7-6.8 19.3-13.6 30.6-16.6A116.5 116.5 0 01169 179a108.7 108.7 0 0118-1.2l-3.3-3a122 122 0 01-10.3-11.2c-12.7-.1-25 3.2-36.4 8.8a135.7 135.7 0 00-25.3 16.1 113 113 0 01-26 17 77 77 0 01-18.5 5.5 54.9 54.9 0 01-26.6-2.1 58 58 0 01-24-15z'/%3E%3Cpath class='c' d='M106.6 289.6a40 40 0 004.1 1.6 54.5 54.5 0 004.6-25 50.4 50.4 0 00-8-24.1 51 51 0 00-19.5-18 53 53 0 00-26.3-5.8 52.1 52.1 0 00-12 1.9 64.3 64.3 0 00-10.9 4 102.2 102.2 0 018.5 9.5 60.9 60.9 0 016.5 10.2c4.5 7 12.4 16.3 21.4 18.2 12.2 7.3 22.3 17 31.6 27.5z'/%3E%3Cpath class='b' d='M216 254l29.6 30.2-5.6 3.7-29.7-30.1 5.6-3.8zM15.4 44.8l62.5 67q-2.6 2-5 4.2L11 49.4c-2 1.2-4 1.5-5.8-.2-2.2-2.2-2-5.3.2-7.6l4.2-4.5c2.1-2.2 5.3-2.9 7.5-.7s1.4 5.2-.7 7.4zM164.6 101.5a4.7 4.7 0 002.4-2.3c.3-.8.4-2.8-.6-3.3a88.2 88.2 0 00-18-6 89.2 89.2 0 00-37.8 0 88 88 0 00-18 6c-1 .5-1 2.5-.6 3.3a4.8 4.8 0 002.4 2.3 82.9 82.9 0 0170.2 0z'/%3E%3Cpath class='a' d='M72.7 223a1.8 1.8 0 01.2-.3l5.5 5.2 5.7 5.5-.2.3a35.3 35.3 0 00-8-5.3c-2.2-1-3.9-1.2-4.6-.4-1.2 1.2.2 4 2.5 6.4a15.6 15.6 0 002.3 2 13.9 13.9 0 003.2 1.5 29.6 29.6 0 004.8 1 33 33 0 014.7 1 19.6 19.6 0 013.8 1.6 41.4 41.4 0 017.5 5.8 47 47 0 018.2 10.2c2 3.5 2.8 6.6 2 8.6-.4 1.2-1.3 1.8-3.7 1.8-.6 0-1 .2-1.1.5-.3.6.3 2.1 2.1 4.6l-.2.6-9-9.2c-3-3-5.4-5.8-8.1-8.6 0-.2.2-.3.3-.5 4.8 4.3 8.8 7.2 11.9 8.6s5 1.4 5.5 0c.9-2.1-1.8-6.6-5-9.8a18 18 0 00-6.2-4.1 19.2 19.2 0 00-4.5-1 31 31 0 01-6.6-1.5 24.8 24.8 0 01-5.2-2.8 39 39 0 01-5.1-4.4 30.8 30.8 0 01-6.1-8.6c-1-2.5-1.2-4.5 0-5.6a2.3 2.3 0 011.4-.5c1-.1 3.4.4 3.7.1s.1-.7-1.7-2.8zM89.7 270.2l-5.3-4.9-5.9-5.4.6-.1a69.2 69.2 0 009.3 6.8c2.3 1.4 4 2 5.2 1.8 2.4-.2.9-2.9-1.5-5.3a18.4 18.4 0 00-4.3-3.4 35.6 35.6 0 00-4.5-2l-3.3-1.2c-1.6-.6-3-1.2-4.4-2a38 38 0 01-3.8-2 50.5 50.5 0 01-7.5-6 62.7 62.7 0 01-8.5-9.6c-2.3-3.3-3.5-6.3-2.3-7.8.6-.8 2-1 3.2-1s2.5.1 2.6 0c.4-.5-.5-1.7-2.2-3.8l.6-.9 9 9.7 8 8.4-.7.4a78.3 78.3 0 00-11-8.5c-3.4-2-5.9-2.8-6.7-1.8-1.2 1.3 1.3 5.2 5 8.7a28 28 0 005.3 4.3 60.3 60.3 0 007 2.8L78 249a22.6 22.6 0 015.2 2.4 41.8 41.8 0 019.2 7.5c2.4 2.7 4.4 5.4 5 7.5s0 3.3-2.4 3.4a12 12 0 01-4-.7l-.6-.2a3 3 0 00-.8-.1c-.5 0-.1.5.7 1.4z'/%3E%3Cpath class='d' d='M102.6 192.3l7.5-5.8a138.1 138.1 0 0125.7-16.5l1.7-.8a90.5 90.5 0 01-23.8-32.4 20.6 20.6 0 01-1.4-10.4 67 67 0 00-27.7 10.1c-8.6 6.6-8.5 16.3-4.9 26a74.9 74.9 0 0023 29.8z'/%3E%3Cpath class='d' d='M52.3 159.6a79.3 79.3 0 005.2 49.5 55.5 55.5 0 009.2-.7 74.4 74.4 0 0018-5.3 82.5 82.5 0 0014.8-8.5 79.1 79.1 0 01-22.7-30c-2.9-7-4.3-14.6-2.2-20.9a68.2 68.2 0 00-22.3 15.9zM133 97.6l-3.5-.1a79 79 0 00-75.3 55A70.9 70.9 0 0178 137.8c8.2-9.7 22.9-13.3 35-15.3a35.6 35.6 0 014.7-9 75.2 75.2 0 018.8-10.5 61.8 61.8 0 016.5-5.4zM169 108a78.4 78.4 0 00-9.7-4.7 42.7 42.7 0 00-12.9 7.9 76.8 76.8 0 00-9.6 10.2c5.2 3.2 10.3 6.8 15.3 10.5l2.6-3.7a39 39 0 00-5.5-4.2 2.1 2.1 0 112.5-3.4 24.7 24.7 0 005.3 4.3l3.5-4.9a24.8 24.8 0 00-4-2.8 1.8 1.8 0 012-3 24 24 0 004 3.1l2.7-3.8a8 8 0 00-2.5-1.5 1.8 1.8 0 012-3 11.3 11.3 0 002.3 1.9zM181.3 116.8a79.6 79.6 0 00-9-6.8l-2.3 3.3a17.3 17.3 0 002.6 2 1.8 1.8 0 01-2.5 2.6 9.2 9.2 0 00-2-2l-2.6 3.8a30 30 0 003.4 2.6 1.8 1.8 0 11-2.4 2.8 14.7 14.7 0 00-3-2.7l-3.5 5a52.1 52.1 0 005.2 4.2 2.6 2.6 0 01.1 3.3 2.3 2.3 0 01-3-.1 27.6 27.6 0 00-4.6-4.3l-2.6 3.7c4.5 3.5 9 7.2 13.4 11a50.4 50.4 0 008.2-11.6 46.7 46.7 0 004.6-16.8z'/%3E%3Cpath class='d' d='M194.3 131.2a79.2 79.2 0 00-9.7-11.3 48.5 48.5 0 01-4.5 15.3c-2.9 5.8-7 10.5-11.4 15.1-5.9-5-11.8-10.1-18-14.8a225.8 225.8 0 00-19.4-13.1 95.3 95.3 0 0112.7-14 48.4 48.4 0 0110.3-7 78.7 78.7 0 00-15.2-3.3 57.4 57.4 0 00-9.9 7.6 72.5 72.5 0 00-8.4 10A24.8 24.8 0 00116 126a18.3 18.3 0 001.2 9.5 88.7 88.7 0 0023.9 32.2A83.4 83.4 0 01172 161a84.3 84.3 0 0012.3-12.7 77.4 77.4 0 0010-17.1zM208.5 176.5a78.7 78.7 0 00-11.8-41.6 80.6 80.6 0 01-9.4 15.7 86 86 0 01-11.4 12 116.2 116.2 0 0031 26.6l.6.3a79.7 79.7 0 001-13z'/%3E%3Cpath class='b' d='M178 31.6c-7.7-6.5-17-7.9-26.4-4a3.1 3.1 0 00-1 .7 24.6 24.6 0 00-16.2-7.4 37.4 37.4 0 00-3.8-.1 39.6 39.6 0 00-4 .2 31.8 31.8 0 00-17.8 6.2 25.2 25.2 0 00-25.6 4.5A40.3 40.3 0 0071.5 71a3 3 0 001.3 2 1.6 1.6 0 00.8.4c8.3 2 17 1.2 22.5-6a22.4 22.4 0 002.7-3.8 3.2 3.2 0 001.2-.4c8.8 5.1 21.7 5.2 29.5-2.2 8 7.6 21.3 7.3 30.2 1.8a21.4 21.4 0 003.2 4.6c5.6 7.2 16.2 7.9 24.4 5.9a1 1 0 00.4-.2 3 3 0 001.7-2c3.5-15-1.1-30.8-11.4-39.5zM95.3 59.5v2.7a35.7 35.7 0 01-2 3c-2.9 3.5-5.5 4.2-10 4.3-1.4.1-6-.2-6.1-.6a33.4 33.4 0 019.9-32.6 19 19 0 0116.7-4.4 41.3 41.3 0 00-8.5 27.6zm29.4-1v1c-6.7 4.8-16.5 4-23.5.4l-.1-.3a1.8 1.8 0 000-.4c-.3-11.1 2.7-18.7 8.6-24.7a25.1 25.1 0 0115.6-7.4c-1.8 13.4-.7 30.7-.7 31.5zm31.5 1c-7 3.7-15.7 4.4-22-.5 0-.7 0 .5.1 0s3-16.2 0-32c12.2 1 19.2 9.3 23.3 31.2l-1.5 1.3zm28 7.7a2.9 2.9 0 000 1 31.3 31.3 0 01-7.3.4 14.3 14.3 0 01-11-5.7 11.6 11.6 0 01-2.6-5 70.4 70.4 0 00-9-25 18.7 18.7 0 0119.8 3.2 30.8 30.8 0 0110.2 31.1z'/%3E%3Cpath d='M130.6 20.8a37.4 37.4 0 013.8.2 24.6 24.6 0 0116.2 7.4 3.1 3.1 0 011-.7 27 27 0 0110.4-2.2 24.4 24.4 0 0116 6A40.4 40.4 0 01189.4 71a3 3 0 01-1.7 2 1 1 0 01-.4.2 34.8 34.8 0 01-8 1c-6.3 0-12.6-1.8-16.4-6.8a21.4 21.4 0 01-3.2-4.6 28 28 0 01-14.5 4 22.6 22.6 0 01-15.7-5.8 22.5 22.5 0 01-15.7 5.8A28 28 0 01100 63a1 1 0 00-.5-.3c-.2 0-.4.2-.7.8a22.4 22.4 0 01-2.7 3.7c-4 5-9.3 7-15 7a31.8 31.8 0 01-7.4-1 1.6 1.6 0 01-.8-.4 3 3 0 01-1.4-2 40.3 40.3 0 0111.7-39.2 25.2 25.2 0 0116.4-6.2 26.4 26.4 0 019.2 1.7 31.8 31.8 0 0117.8-6.3 39.6 39.6 0 014-.1m14.2 41.6a24.6 24.6 0 0011.3-3 6.7 6.7 0 001.5-1.3c-4.2-21.9-11.2-30-23.3-31.2a86.2 86.2 0 010 30.2 11 11 0 00-.2 1.9 17.3 17.3 0 0010.6 3.4m-31.4.4a19 19 0 0011.3-3.4c.2-.6.1-.1 0-.8s-1-18.1.7-31.5a25.1 25.1 0 00-15.6 7.4c-5.9 6-9 13.6-8.6 24.7a1.8 1.8 0 010 .4l.1.3a26.3 26.3 0 0012 3m-31 6.6a9.7 9.7 0 001 0c4.6 0 7.1-.8 10-4.2a35.7 35.7 0 002-3v-2.8a41.4 41.4 0 018.6-27.5 19.7 19.7 0 00-4.2-.4A19.3 19.3 0 0087 36.4a33.2 33.2 0 00-9.8 32.5c0 .4 3.2.6 5 .6m95.1-.8a35.9 35.9 0 005.9-.6 3.2 3.2 0 010-.9c2.9-12.5-.7-23.9-9.2-31a18.6 18.6 0 00-12.1-4.7 20.5 20.5 0 00-7.6 1.5c4.7 7 7.3 16.3 9 25a13.7 13.7 0 001.5 4.9 14.3 14.3 0 0011 5.7 13.4 13.4 0 001.5.1m-46.7-50.9c-1.8 0-3.2 0-4.3.2a35 35 0 00-18 5.9 29.3 29.3 0 00-8.6-1.4 28.3 28.3 0 00-18.4 7 43.3 43.3 0 00-12.8 42.2 6 6 0 002.5 3.6 4.6 4.6 0 002 1 34.7 34.7 0 008.1 1c7.2 0 13.2-2.8 17.3-8a23.6 23.6 0 002-2.6 31.3 31.3 0 0013.5 3 26.2 26.2 0 0015.6-4.8 26.2 26.2 0 0015.7 5 31.2 31.2 0 0013.4-3 25.2 25.2 0 002 2.5c4 5 10.6 7.9 18.6 7.9a37.5 37.5 0 008.9-1 4.3 4.3 0 001-.5 6 6 0 003.3-4c3.7-16-1.3-33-12.5-42.4a27.6 27.6 0 00-17.9-6.8 29.6 29.6 0 00-11 2.2 27.6 27.6 0 00-16.3-6.9 38.1 38.1 0 00-4-.1zm6.7 39.7a89.7 89.7 0 00.6-26.9c7.1 2 12.7 8.3 16.4 26.5a21.3 21.3 0 01-9.5 2.4 14.4 14.4 0 01-7.5-2zM104 58c-.1-9.2 2.3-15.8 7.7-21.3a21.3 21.3 0 0110-5.9 200.7 200.7 0 00-.2 27.1 16.7 16.7 0 01-8.4 2 23.2 23.2 0 01-9.1-1.9zm54.8-23a16.3 16.3 0 013-.4 15.5 15.5 0 0110.2 4 27.1 27.1 0 018.4 27 32.3 32.3 0 01-3.2.2H176a11.2 11.2 0 01-8.5-4.5 9.2 9.2 0 01-1-3.1l-.2-.7c-1.2-6.2-3.2-15-7.3-22.6zM79.7 66.3A30.3 30.3 0 0189 38.6a16.4 16.4 0 019.3-4 47 47 0 00-6 25v1.8L91 63.2v.1c-2 2.5-3.5 3-7.7 3.2H82.4l-2.6-.1z'/%3E%3Cpath class='b' d='M107.1 69.7A101.5 101.5 0 0087 76c-3.8 1.6-1.5 7.2 1.4 6a94.3 94.3 0 0119.8-6.5 107 107 0 0142.8 0 94.4 94.4 0 0119.7 6.4c3 1.3 5.2-4.3 1.5-6a101.3 101.3 0 00-20.3-6.3 112.8 112.8 0 00-44.7 0z'/%3E%3Cpath class='c' d='M57.4 135.8a83.3 83.3 0 0112.9-17.1l-58-62.3a147.4 147.4 0 0012.4 32.3c9 17 20.4 32.5 32.7 47'/%3E%3Cpath class='e' d='M95.3 59.5v2.7a35.7 35.7 0 01-2 3c-2.9 3.5-5.5 4.2-10 4.3-1.4.1-6-.2-6.1-.6a33.4 33.4 0 019.9-32.6 19 19 0 0116.7-4.4 41.3 41.3 0 00-8.5 27.6zM184.3 67a2.9 2.9 0 000 1 41.2 41.2 0 01-8.4.7 14.3 14.3 0 01-11-5.8 13.7 13.7 0 01-1.6-5 70.4 70.4 0 00-9-25 18.7 18.7 0 0119.8 3.2 30.4 30.4 0 0110.2 30.8zM124.6 58.6c.1.7.2.2 0 .8-6.6 4.9-16.5 4.2-23.5.5v-.3a1.8 1.8 0 000-.4c-.4-11.1 2.7-18.7 8.5-24.7a25.1 25.1 0 0115.7-7.4c-1.8 13.4-.7 30.7-.7 31.5zM156.1 59.5c-7 3.7-15.7 4.3-22-.5a11 11 0 01.2-1.9 86.2 86.2 0 000-30.2c12.1 1.1 19.1 9.3 23.3 31.3a6.7 6.7 0 01-1.5 1.3z'/%3E%3C/svg%3E");
}

[football4club_logo="VCF"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 920.7'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.b%7Bfill:%23fbde14%7D.c%7Bfill:%23e1211b%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M662.7 353zM32.5 433zM662.7 352.9zM667.7 232.5a447.2 447.2 0 00-73-113.2 450.5 450.5 0 00-79.3-72 245 245 0 00-32-19.2 60.4 60.4 0 00-24.4-7.5c-4.7 0-9.1 1.8-13.7 5.4a89 89 0 00-8.2 7.7A78 78 0 01424 45.4a28.5 28.5 0 01-16.1 5 22.7 22.7 0 01-14-5l.7-1.8a63.7 63.7 0 005.8-23.5c0-10-7-20-22.6-20a29.4 29.4 0 00-18.4 6.5L357.7 8a45.5 45.5 0 00-15.5 0l-1.6-1.4A29.4 29.4 0 00322.2.1c-15.6 0-22.6 10-22.6 20 0 8.8 3.2 17 5.8 23.5l.7 1.7a22.7 22.7 0 01-14 5 28.5 28.5 0 01-16-5c-5-3.2-9.5-7.6-13.3-11.6a87.8 87.8 0 00-8.2-7.7c-4.5-3.6-9-5.4-13.7-5.4a60 60 0 00-24.4 7.5 245 245 0 00-32 19.2 447.8 447.8 0 00-79.2 72 444.1 444.1 0 00-73 113.3A369.2 369.2 0 000 382.6C0 445 13.5 511 40.2 578.6a736 736 0 0043 90.3 801.5 801.5 0 0052.1 81 744.3 744.3 0 0056.8 68.9 552.4 552.4 0 0057 53.5c27.5 22 67.3 48.3 101 48.3 18.5 0 51-8.4 100.8-48.3a552.4 552.4 0 0057-53.5 744.3 744.3 0 0056.8-68.8 801.5 801.5 0 0052.2-81 737.5 737.5 0 0043-90.4C686.5 511 700 445 700 382.5a370 370 0 00-32.3-150z'/%3E%3Cpath class='b' d='M667.5 374.6h-66.8V638c40.5-77.3 68.6-162.5 68.6-241.3 0-18.3-4-37.8-11-57.1a198.6 198.6 0 019.2 35.1z'/%3E%3Cpath class='c' d='M530 749.2a809.6 809.6 0 0070.7-111.4V374.6h-70.8z'/%3E%3Cpath class='b' d='M459.2 829.1a657 657 0 0070.7-80V374.7h-70.7zM172.9 753c23.8 31 48.5 58.3 72.4 80.3V374.6h-72.4z'/%3E%3Cpath class='c' d='M102.1 643.2A809.8 809.8 0 00173 752.9V374.6H102z'/%3E%3Cpath class='b' d='M31.4 419.2C36.2 493.4 64 572 102 643.2V374.6H32.5a198.6 198.6 0 019-35.1 190 190 0 00-10.1 43.3zM350 437.1a102.8 102.8 0 0138.5 7.5v-70h-70.8v67.7A103 103 0 01350 437zM350 643a102.7 102.7 0 01-32.3-5.1v246.4a82.5 82.5 0 0032.3 7.9 90 90 0 0038.5-10.8V635.6a102.8 102.8 0 01-38.5 7.5z'/%3E%3Cpath class='c' d='M388.5 374.6v70a103 103 0 010 191v245.8a305.7 305.7 0 0070.7-52.3V374.6zM247 540a103 103 0 0170.7-97.7v-67.7h-72.4v458.7c25.8 23.9 50.7 41.5 72.4 51V638a103 103 0 01-70.7-97.8z'/%3E%3Ccircle cx='350' cy='540.1' r='103' fill='%23d38e0b'/%3E%3Cpath d='M15.2 409.6h669.6c-3.9-36-13.3-73.5-26-108.6H41a477 477 0 00-26 108.6z' fill='%230094d2'/%3E%3Cpath d='M459 32.8c-10.5 0-22 29.7-51.2 29.7-17 0-26.6-12.4-27.6-13.5 0-5.8 8-17.8 8-29 0-2.8-1.2-7.8-10.5-7.8s-14.4 7.5-15.2 8.8-4.3-1.6-12.5-1.6-11.7 2.8-12.5 1.6-6-8.8-15.3-8.8-10.4 5-10.4 7.8c0 11.2 8 23.2 8 29-1 1.1-10.7 13.6-27.7 13.6-29.2 0-40.6-29.8-51.1-29.8-32.4 0-228.8 135.5-228.8 349.7 0 259.6 241.8 526 337.8 526s337.8-266.4 337.8-526c0-214.3-196.4-349.7-228.8-349.7zM350 892.2c-96 0-319.3-273.4-319.3-495.6 0-82.7 83.5-191.3 130.6-191.3a57.2 57.2 0 0110.2 1.3s18.9-15.6 45.2-15.6c49.5 0 75.4 47.4 75.4 64.7 0 8.9-3 7.2-3 12.2 0 2.9 3.9 6.9 6.6 6.9 3.7 0 15.3-11.3 17.7-16.4 16.6 0 32 18.4 36.6 32.8 4.6-14.4 20-32.8 36.6-32.8 2.4 5.1 14 16.4 17.6 16.4 2.8 0 6.7-4 6.7-6.9 0-5-3-3.3-3-12.2 0-17.3 26-64.7 75.4-64.7a77.1 77.1 0 0145.1 15.6 57.2 57.2 0 0110.3-1.3c47 0 130.6 108.6 130.6 191.3 0 222.2-223.3 495.6-319.3 495.6z' fill='%231c1c1b'/%3E%3C/svg%3E");
}

[football4club_logo="CVG"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 228.6 325.6'%3E%3Cdefs%3E%3Cstyle%3E.b%7Bfill:%2389140b%7D%3C/style%3E%3C/defs%3E%3Cpath d='M116.7 172.8l-.2.1.2-.1.3-.2-.3.2M114.3 0a8 8 0 00-6.1 2.8 51.2 51.2 0 01-11.7 10l-.5.3a18.7 18.7 0 00-1.3 29.1l-1.1.8-.3.2-1 .8-.3.2-.9.8-.3.3h-.1l-.8.8-.3.3-.1.1-.7.7-.3.4h-.1l-.6.7-.4.4v.1c-.3.2-.5.4-.6.7l-.4.4-.1.1-.5.7-.4.4v.1l-.6.7-.3.6-.6.8-.3.5-.5.8-.1.3-.2.2-.2.4a2.3 2.3 0 00-.1.3 2 2 0 00-.1.2l-.2.2a6.7 6.7 0 00-.3.7 17.2 17.2 0 00-1 7.2 20.8 20.8 0 00.2 2.3.6.6 0 000 .2v.8a45.7 45.7 0 009 20.3H76.6a8.4 8.4 0 00-.7-1.7 24 24 0 00-21.2-13.3c-12.7 0-23 10.4-24.1 23.5a33.9 33.9 0 00-3.8-.2 34.5 34.5 0 00-3.8.2 32.8 32.8 0 00-15.2 5.6 22.9 22.9 0 00-6.6 6.9 8 8 0 000 8.2 22.7 22.7 0 006.6 6.8 32.7 32.7 0 0015.2 5.6 34.6 34.6 0 003.8.2 31.6 31.6 0 003.8-.2A24.9 24.9 0 0054.6 153a24 24 0 0021.2-13.4 106.2 106.2 0 0026.6 35.8v1.6L86 188.2a8 8 0 00-3.3 8l23.8 123a8 8 0 0015.6 0l23.8-123a8 8 0 00-3.3-8l-15.8-10.9v-2.5a106.6 106.6 0 0026-35.3A24 24 0 00174 153a24.9 24.9 0 0024-23.6 31.6 31.6 0 003.9.2 34.3 34.3 0 003.8-.2 32.7 32.7 0 0015.2-5.6 23 23 0 006.5-6.8 8 8 0 000-8.2 23 23 0 00-6.5-6.9 32.8 32.8 0 00-15.2-5.6 34.5 34.5 0 00-3.8-.2 33.9 33.9 0 00-3.8.2A24.8 24.8 0 00174 72.7 24 24 0 00152.7 86a8.4 8.4 0 00-.6 1.7h-13.5a46.3 46.3 0 009-21v-.2c.2-.7.2-1.4.3-2.2a17.2 17.2 0 00-1.1-7.1l-.3-.7-.2-.4v-.2l-.4-.5-.3-.6-.4-.6-.4-.7-.4-.6-.5-.7-.4-.5-.5-.7-.4-.5v-.2l-.5-.5-.5-.5v-.1h-.1l-.5-.6-.4-.5-.1-.1h-.1l-.5-.6-.4-.5h-.1l-.1-.1-.5-.5-.5-.5h-.1l-.1-.2-.5-.4-.5-.4-.1-.1-.2-.1-.4-.5-.6-.4-.2-.2-.5-.4-.6-.4h-.1l-.1-.2-.2-.1a18.7 18.7 0 00-1.4-29.1l-.5-.4a51 51 0 01-11.8-10 8 8 0 00-4.8-2.8 6.7 6.7 0 00-.8 0h-.5z' fill='%23fff'/%3E%3Cpath class='b' d='M139 59.2l.6 1a9.5 9.5 0 01.5 3.7c0 .5 0 1-.2 1.4-1.7 9.8-6 17.6-11.5 21.3a3 3 0 001.4-2.3c0-3-6.9-5.4-15.4-5.4s-15.3 2.4-15.3 5.4a3 3 0 001.4 2.3C95 83 90.9 75.4 89 65.9v-.5l-.2-1.5a9.5 9.5 0 01.5-3.7l.5-1c0 .2-.2.4-.3.5 6.5-3 15.3-4.8 25-4.8s18.4 1.9 25 4.8l-.4-.5z'/%3E%3Cpath class='b' d='M124.5 45.7a35.3 35.3 0 0114.9 14c-6.6-3-15.3-4.8-25-4.8s-18.5 1.9-25 4.8a35.3 35.3 0 0114.9-14 30.6 30.6 0 0120.2 0zM104.3 40a3.3 3.3 0 00-1.6-2 11.2 11.2 0 01-6.3-10 11 11 0 014.5-8.7A59.1 59.1 0 00114.4 8 59 59 0 00128 19.4a11 11 0 014.5 8.8 11.2 11.2 0 01-6.3 9.9 3.3 3.3 0 00-1.6 2c-.4-3.2-4.8-5.6-10-5.6s-9.8 2.4-10.2 5.6zM174.1 80.7c9 0 16.2 8 16.2 17.7a18.9 18.9 0 01-1.9 8.3h.4a10.5 10.5 0 003.6-.6l.2-.1a23 23 0 0112.3-1.8 24.8 24.8 0 0111.6 4.2 15.2 15.2 0 014.2 4.4 15 15 0 01-4.2 4.5 24.7 24.7 0 01-11.6 4.1 23 23 0 01-12.3-1.8l-.2-.1a10.7 10.7 0 00-3.6-.6h-.4a19 19 0 012 8.3c0 9.7-7.4 17.7-16.3 17.7a16.1 16.1 0 01-14.2-9 11.2 11.2 0 006.4 1.9c6 0 10.8-4.5 10.8-10.1a10.4 10.4 0 00-9.7-10.1h-106a10.4 10.4 0 00-9.6 10c0 5.7 4.9 10.2 10.8 10.2a11.2 11.2 0 006.3-2 16.1 16.1 0 01-14.1 9c-9 0-16.2-8-16.2-17.7a19 19 0 011.8-8.2h-.3a10.7 10.7 0 00-3.6.6h-.2a23 23 0 01-12.4 1.9 24.7 24.7 0 01-11.5-4.2 15 15 0 01-4.3-4.4 15.3 15.3 0 014.3-4.4 24.8 24.8 0 0111.5-4.2 23 23 0 0112.4 1.8h.2a10.5 10.5 0 003.6.7h.3a18.9 18.9 0 01-1.9-8.3c0-9.8 7.3-17.7 16.2-17.7a16 16 0 0114.2 9 11.2 11.2 0 00-6.3-2c-6 0-10.8 4.6-10.8 10.2a10.4 10.4 0 009.6 10h106a10.4 10.4 0 009.6-10c0-5.6-4.8-10.2-10.7-10.2a11.2 11.2 0 00-6.4 2 16 16 0 0114.2-9z'/%3E%3Cpath d='M114.4 174.6a101.8 101.8 0 01-40.8-78.9h81.7c-1.4 33.1-17.4 62-40.9 79z' fill='%23358dcd'/%3E%3Cpath class='b' d='M119 171.1v10.4l19.2 13.3-23.8 122.8-23.8-122.8 19.9-13.7v-9.5l4 3 4.5-3.5zM110.5 88h8.5v7.7h-8.5z'/%3E%3Cpath d='M124.5 40.7v5m0 0a35.1 35.1 0 0115 14.4 9.5 9.5 0 01.6 3.8c0 .5 0 1-.2 1.4-1.7 9.7-6 17.6-11.5 21.2m0 0h0m0 0a3 3 0 001.4-2.3c0-3-6.9-5.4-15.4-5.4s-15.3 2.4-15.3 5.4a3 3 0 001.4 2.3m0 0h0m0 0C95 83 90.9 75.3 89 66m0 0h0v-.6a13.6 13.6 0 01-.2-1.4 9.4 9.4 0 01.5-3.8 35.2 35.2 0 0115-14.4m0 0v-5.3m0 0a3 3 0 00-1.5-2.3 11.2 11.2 0 01-6.3-9.9 11 11 0 014.5-8.8A59.3 59.3 0 00114.5 8 59 59 0 00128 19.5a11 11 0 014.5 8.7 11.2 11.2 0 01-6.4 9.9 3.1 3.1 0 00-1.6 2.3m0 0v.3' fill='none' stroke='%2389140b' stroke-miterlimit='10' stroke-width='4'/%3E%3Cpath d='M114.4 90.7c-8 0-16.4-2.3-16.4-6.5s8.5-6.4 16.4-6.4 16.4 2.3 16.4 6.4-8.4 6.5-16.4 6.5z' fill='%23353886'/%3E%3Cpath class='b' d='M114.4 78.8c8.5 0 15.4 2.4 15.4 5.4s-7 5.5-15.4 5.5S99 87.2 99 84.2s7-5.4 15.4-5.4m0-2c-12 0-17.4 3.9-17.4 7.4s5.5 7.4 17.4 7.4 17.4-3.8 17.4-7.4-5.4-7.4-17.4-7.4zM124.5 40.7v5a30.6 30.6 0 00-20.2 0v-5.3a2.2 2.2 0 000-.4c.4-3 4.8-5.6 10.1-5.6s9.8 2.5 10.1 5.6v.7z'/%3E%3C/svg%3E");
}

[football4club_logo="EIB"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 216.9 328.8'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.b%7Bfill:%23000f3f%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M214.4 116.6l-29.3-36a11.4 11.4 0 00-8.3-4.2h-.6a11.4 11.4 0 00-8 3.3 46 46 0 01-17.6 9.7 54.6 54.6 0 10-84.4 0c-7.7-2.6-13.7-5.9-17.5-9.7a11.4 11.4 0 00-8-3.3H40a11.4 11.4 0 00-8.3 4.2l-29.3 36a11.4 11.4 0 00-1.3 12.3l97 193.6a11.4 11.4 0 0020.4 0l97-193.6a11.4 11.4 0 00-1.2-12.3zm-106-105.2A43.2 43.2 0 01124 95c-8.9 1-15.4 1-15.5 1S102 96 93 95a43.2 43.2 0 0115.5-83.6zm0 305.9l-97-193.5 29.3-36c11.8 11.8 33.7 16.5 49.5 18.4a55 55 0 0036.5 0c15.7-1.9 37.7-6.6 49.5-18.4l29.3 36z'/%3E%3Cpath class='a' d='M108.5 317.4l97-193.6-29.3-36c-19.7 19.7-67.8 19.7-67.8 19.7s-48 0-67.7-19.7l-29.3 36z'/%3E%3Cpath class='b' d='M108.5 320.9a3.5 3.5 0 01-3.2-2l-97-193.5a3.5 3.5 0 01.4-3.8l29.3-36a3.5 3.5 0 015.2-.3C61.6 103.8 108 104 108.5 104s46.9-.2 65.3-18.7a3.5 3.5 0 015.2.3l29.2 36a3.5 3.5 0 01.5 3.8l-97 193.5a3.5 3.5 0 01-3.2 2zm-93-196.7l93 185.3 92.9-185.3-25.5-31.4c-21.8 18-65.5 18.2-67.4 18.2s-45.7-.3-67.4-18.2z'/%3E%3Cpath d='M174.5 97.9L89.7 262.8l18.6 35.8 88.2-173.2z' fill='%23005bad'/%3E%3Ccircle class='b' cx='108.5' cy='54.6' r='43.2'/%3E%3Ccircle cx='108.5' cy='54.6' r='36.3' fill='%23b27559'/%3E%3Cpath d='M113.8 142.9l-14.6-14.6-14.9 14.9-14.8-15L54.8 143l15 14.9-15 14.9 14.7 14.6 14.8-15 15 15 14.5-14.7L99 157.8z' fill='%23c90900'/%3E%3C/svg%3E");
}

[football4club_logo="RBT"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 319.6 253.2'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.b%7Bfill:%23de9500%7D.c%7Bfill:%2300954c%7D.d%7Bfill:%23d7013e%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M201.8 94.6a8.4 8.4 0 003.4-3.1 8.7 8.7 0 001.4-3.9 12.3 12.3 0 001.3-1 12.3 12.3 0 0011.4-9.7c6.4-5.8 9.8-13 9.8-20.7a28.3 28.3 0 00-9.2-20.6 35 35 0 00-20.7-9.2 48.8 48.8 0 00-29.5-15V2H167V0h-14.5v2H150v9.4a48.9 48.9 0 00-29.5 15 35 35 0 00-20.7 9.1 28.3 28.3 0 00-9.3 20.7 28 28 0 009.9 20.6 12.3 12.3 0 0011.4 9.8 11.4 11.4 0 001.3 1 8.6 8.6 0 001.3 3.9 8.3 8.3 0 003.5 3H0l159.8 158.7L319.6 94.6z'/%3E%3Cpath class='b' d='M197.6 100.4a54.2 54.2 0 00-75.5 0H14L159.8 245l145.7-144.6z'/%3E%3Cpath class='c' d='M47 105.5v20.3l20.5 20.4v-40.7H47z'/%3E%3Cpath class='a' d='M47 125.8v-20.3H26.4L47 125.8z'/%3E%3Cpath class='c' d='M105.5 139.4a53.9 53.9 0 013-17.8v-16.1H88v61l20.5 20.5V157a54 54 0 01-3-17.7z'/%3E%3Cpath class='a' d='M88 105.5H67.5v40.7L88 166.6v-61.1z'/%3E%3Cpath class='c' d='M129 184v23.3l20.5 20.4v-35A54 54 0 01129 184z'/%3E%3Cpath class='a' d='M108.5 157.1V187l20.5 20.3V184a54.5 54.5 0 01-20.5-26.9zM117.4 105.5h-8.9v16.1a54.4 54.4 0 019-16.1z'/%3E%3Cpath class='c' d='M170 192.7v35l20.6-20.4V184a54 54 0 01-20.5 8.7z'/%3E%3Cpath class='a' d='M159.8 193.6a54.2 54.2 0 01-10.3-.9v35l10.3 10.2 10.3-10.2v-35a54.2 54.2 0 01-10.3 1z'/%3E%3Cpath class='c' d='M211.1 105.5v16.1a54.3 54.3 0 010 35.5V187l20.6-20.4v-61.1z'/%3E%3Cpath class='a' d='M190.6 184v23.3l20.5-20.3V157a54.6 54.6 0 01-20.5 27zM202.2 105.5a54.3 54.3 0 019 16.1v-16.1z'/%3E%3Cpath class='c' d='M252.2 146.2l20.5-20.4v-20.3h-20.5v40.7z'/%3E%3Cpath class='a' d='M252.2 105.5h-20.6v61l20.6-20.3v-40.7zM293.2 105.5h-20.5v20.3l20.5-20.3z'/%3E%3Cpath class='d' d='M153.3 58.8a6.4 6.4 0 013.2-5.5V38.9a63.7 63.7 0 00-30.2 8.6 18.1 18.1 0 006 9.2 6.4 6.4 0 015.4 11.6 5 5 0 009.3-.6 4.7 4.7 0 00.1-.6 2.1 2.1 0 113-1.2 2.2 2.2 0 01-.8 1 5 5 0 009.3-.8 5 5 0 00.2-1 6.4 6.4 0 01-5.5-6.3M134.9 69a6.4 6.4 0 01-6.4-6.5v-.3a26.2 26.2 0 01-8-10.6c-5.4 4.7-9 10.4-10 16.6a6.2 6.2 0 011.7-.2 6.4 6.4 0 016.4 6.4 6.3 6.3 0 01-1.6 4.3 5 5 0 003.5 1.4 5 5 0 005-5 3.7 3.7 0 000-.6 2.1 2.1 0 112-1 5 5 0 008.5-3.7 4.9 4.9 0 00-.1-1 7.2 7.2 0 01-1 0M166.3 58.8a6.4 6.4 0 00-3.1-5.5V38.9c11.6.5 22.1 3.7 30.2 8.6a18.2 18.2 0 01-6 9.2 6.4 6.4 0 00-5.4 11.6 5 5 0 01-3 2.6 5 5 0 01-6.3-3.2 3.4 3.4 0 01-.2-.6 2.1 2.1 0 00-1.5-4 2.1 2.1 0 00-.7 3.8 5 5 0 01-2.8 2.4A5 5 0 01161 66a4.5 4.5 0 01-.2-1 6.4 6.4 0 005.5-6.3M184.8 69a6.4 6.4 0 006.4-6.5v-.3a26.2 26.2 0 007.9-10.6c5.5 4.7 9 10.4 10.1 16.6a6.3 6.3 0 00-1.8-.2 6.4 6.4 0 00-4.7 10.7 5 5 0 01-3.5 1.4 5 5 0 01-5-5 5.5 5.5 0 010-.6 2.1 2.1 0 10-2-1 5 5 0 01-8.6-3.7 5.7 5.7 0 01.1-1 7.3 7.3 0 001 0'/%3E%3Cpath class='b' d='M223.3 56.2a22.5 22.5 0 00-7.4-16.4 29.5 29.5 0 00-19.7-7.7A43 43 0 00165 16.7a5.2 5.2 0 00-3.7-5v-1h2.5V7.8h-2.5v-2h-3v2h-2.5v2.9h2.6v1a5.2 5.2 0 00-3.7 5 43 43 0 00-31.2 15.4 29.6 29.6 0 00-19.7 7.7 22.5 22.5 0 00-7.5 16.4c0 6.6 3.5 12.9 9.6 17.8v.4a6.4 6.4 0 008.5 6 7 7 0 006.3 3.8l-.8.5a2.6 2.6 0 00-.6 3.7 2.5 2.5 0 002.2 1.1 3.2 3.2 0 00.8 0l3.3 4.4.7-.5a56.8 56.8 0 0167.1 0l.7.5 3.3-4.5a3.1 3.1 0 00.8.1 2.5 2.5 0 002.2-1.1 2.6 2.6 0 00-.6-3.7l-.8-.5a7 7 0 006.3-3.7 6.4 6.4 0 008.4-6.1v-.5a23 23 0 009.6-17.7zm-92.2 18.7a5 5 0 01-3.5-1.4 2 2 0 00.3-1.2 2.1 2.1 0 10-2.3 2.2 5.5 5.5 0 010 .5 5 5 0 01-5 5.1 5 5 0 01-3.6-1.4 6.4 6.4 0 00-4.7-10.7 6.2 6.2 0 00-1.8.3 6.5 6.5 0 00-.8.2c-4.4-3.5-6.8-7.9-6.8-12.3a16 16 0 015.3-11.6A22.1 22.1 0 01120 39a19.6 19.6 0 00-.8 5.4 20.2 20.2 0 001.4 7.2 26.3 26.3 0 008 10.6v.3a6.4 6.4 0 006.3 6.4 6 6 0 001 0 5 5 0 01-5 6zm27.6-8.8a5 5 0 01-9.2.8 2.2 2.2 0 00.7-1 2.1 2.1 0 10-3 1.2 4.7 4.7 0 010 .6 5 5 0 01-9.4.7v-.1a6.4 6.4 0 00-5.4-11.6 18.2 18.2 0 01-6-9.2 12.9 12.9 0 01-.4-3.1c0-10.8 13.7-20 30.6-21.1v30a6.4 6.4 0 002.3 11.8 5 5 0 01-.2 1zm23.2 2.3a5 5 0 01-9.4-.7 4.7 4.7 0 01-.1-.6 2.1 2.1 0 10-2.2-.2 5 5 0 01-6.7 2.1 5 5 0 01-2.6-2.9 4.5 4.5 0 01-.2-1 6.4 6.4 0 002.4-11.8v-30c16.9 1 30.6 10.3 30.6 21a12.9 12.9 0 01-.4 3.2 18.1 18.1 0 01-6 9.2 6.4 6.4 0 00-5.4 11.6zm28 .1a7.4 7.4 0 00-.8-.2 6.2 6.2 0 00-1.8-.3 6.4 6.4 0 00-4.7 10.7A5 5 0 01199 80a5 5 0 01-5.1-5 3.7 3.7 0 010-.6 2.1 2.1 0 10-2-1 5 5 0 01-8.5-3.7 4.9 4.9 0 010-1 7.2 7.2 0 001 0 6.4 6.4 0 006.5-6.3v-.3a26.2 26.2 0 007.9-10.6 20 20 0 001.4-7.3 19.2 19.2 0 00-.8-5.3 22.1 22.1 0 0111.8 5.6 16 16 0 015.3 11.6c.1 4.4-2.3 8.8-6.7 12.3zM288.5 107.4L159.8 235.2 31.1 107.4h257.4m17-7H14.1L159.8 245l145.7-144.6z'/%3E%3Cpath class='a' d='M159.8 92.7a46.6 46.6 0 11-46.6 46.6 46.7 46.7 0 0146.6-46.6'/%3E%3Cpath class='c' d='M159.8 113.5a25.8 25.8 0 11-25.8 25.9 25.8 25.8 0 0125.8-25.9'/%3E%3C/svg%3E");
}

[football4club_logo="LUD"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260.1 320.6'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23f2ae02%7D.b%7Bfill:%23fff%7D.c%7Bfill:%231e0e7b%7D.d%7Bfill:%23f20000%7D%3C/style%3E%3C/defs%3E%3Cpath d='M220.6 196.4a229.3 229.3 0 01-15 27.4 314.4 314.4 0 01-29.4 39q-9.8 11.4-20.8 22.2c-7.2 7.2-14.6 14-22.1 20.7l-3.3 2.9-3.2-3a493.1 493.1 0 01-43-42.8 315.4 315.4 0 01-29.3-39 230.7 230.7 0 01-15-27.4A9.8 9.8 0 1129 181C14 143.4.8 93.5 26.7 57.3c13.3-18.7 34-38.7 58-39.3.4 10.5 9.6 20.8 19.5 24a16.2 16.2 0 0014-2.1 7.2 7.2 0 00-.9-3.7c-1.1-2.2-2.6-5.2-1-8.5 1-2.2.2-2.5-1.7-3.2-5.7-2.2-5.5-7-5.7-12.4 4.2-.5 8.7 1.5 15 6.1a37.2 37.2 0 0112.3 0c6.3-4.6 10.7-6.6 15-6-.3 5.2 0 10.1-5.8 12.3-1.8.7-2.6 1-1.6 3.2 1.5 3.3 0 6.3-1 8.5a7 7 0 00-1 3.7 16.2 16.2 0 0014 2.1c10-3.2 19.1-13.5 19.5-24 24.1.6 44.7 20.6 58 39.3 26 36.2 12.7 86-2.2 123.8a9.8 9.8 0 11-10.6 15.3z'/%3E%3Cpath class='a' d='M53.4 96c2 .1 2.3-1.2 2-3a5.3 5.3 0 00-1.4-2.9c-2.2-2-5.8-2-8.3-.6-4.1 2.2-6.7 8.2-8.4 15.4a130.4 130.4 0 006 71.2 248 248 0 0049 79.5 429.5 429.5 0 0037.8 38.2 432.3 432.3 0 0037.8-38.2 249 249 0 0049-79.5 131 131 0 006-71.2c-1.7-7.2-4.4-13.2-8.4-15.4-2.5-1.4-6.2-1.4-8.4.6a5.4 5.4 0 00-1.4 2.9c-.4 1.9 0 3.1 2 3a3 3 0 11.3 6.1 8.4 8.4 0 01-4.9-1c-3.2-2-4-5.8-3.4-9.2 1.5-8.6 11.2-11.8 18.6-7.8 5.9 3.2 9.4 10.6 11.4 19.4 5.8 24.3 2.1 51.3-6.1 74.6a253.9 253.9 0 01-50.1 81.5A459.7 459.7 0 01130 302a461 461 0 01-42.4-42.3c-21-24.2-39.4-51.1-50.1-81.5a136.3 136.3 0 01-6.1-74.7c2-8.8 5.5-16.2 11.4-19.4 7.4-4 17-.7 18.6 7.8.7 3.4-.2 7.2-3.4 9.1a8.4 8.4 0 01-4.9 1.1 3 3 0 11.3-6.1z'/%3E%3Cpath class='a' d='M193.6 93.4a16.3 16.3 0 019.6-14.3 272.2 272.2 0 01-26-12c-4.8 3-6.2 6.5-6.8 12.3a120.5 120.5 0 0115.6 8.8l7.6 5.2zM57 79a16.3 16.3 0 019.5 14.4l7.6-5.2a120.3 120.3 0 0115.6-8.8c-.6-5.8-2-9.2-6.9-12.4A272.2 272.2 0 0157 79z'/%3E%3Cpath class='b' d='M41.5 149.7a150.6 150.6 0 006.4 24.8c1.4 4 3 8 4.8 12L219 147.1c.4-2.8.8-5.7 1-8.6a105.2 105.2 0 00-1.6-30.8z'/%3E%3Cpath class='a' d='M97.2 83.5a8.9 8.9 0 006.2-.5c4.2-2.1 6.6-7.3 7.8-11.6l.7-2.3H148l.7 2.3c1.2 4.3 3.6 9.5 7.8 11.6a9 9 0 006.3.6 7.8 7.8 0 002.3-1.1c2.3 1 4.6 2 6.9 3.2a12 12 0 01-2 1.4c-5 2.9-10.8 4-16.2 1.4s-8.5-8-10.3-13.3h-27.2c-1.9 5.4-5.1 10.7-10.4 13.3S95 90 90 87.1a11.5 11.5 0 01-2-1.4l6.8-3.3a7.8 7.8 0 002.4 1.1z'/%3E%3Cpath class='c' d='M195.6 209.6a197.2 197.2 0 0016.6-35.1 151.3 151.3 0 006.2-23.7l-22.9 5.4zM195.6 109.6l10.6-2.5a12.6 12.6 0 01-10.6-5.7zM217.6 104.4a30.6 30.6 0 00-2.8-7.5 6.6 6.6 0 01.2 1.7 7.3 7.3 0 01-.5 3.2 7.7 7.7 0 01-3.3 4.1zM64.5 101.4a12.6 12.6 0 01-11.7 5.6 7.8 7.8 0 01-7.3-5.2 7.7 7.7 0 01-.4-3.2 6.6 6.6 0 01.2-1.7 33 33 0 00-3.2 9.1 105.3 105.3 0 00-2 32.5l.8 7.8 23.6-5.5zM54 189.8a220.6 220.6 0 0010.5 19.8v-22.3z'/%3E%3Cpath class='d' d='M153 119.8l39.2-9.4V98.5c-3-2-6-4.2-9-6.1-2.2-1.6-4.5-3-6.7-4.2a21.7 21.7 0 01-14.4 6.7 19.9 19.9 0 01-9-1.4z'/%3E%3Cpath class='c' d='M149.6 222.4v-55.3l-39.1 9.3v46a24.6 24.6 0 0139 0zM110.5 268.2l3.4 3.5c5.1 5.2 10.5 10.3 16.1 15.5a436 436 0 0016.2-15.6l3.4-3.4v-14.6a24.6 24.6 0 01-39.1 0zM110.5 129.8l39-9.3V91.6a22.8 22.8 0 01-5.4-5.1 29.3 29.3 0 01-3.7-6.3h-20.6a32.4 32.4 0 01-3.8 6.3 23.7 23.7 0 01-5.5 5.1z'/%3E%3Cpath class='d' d='M83.6 88.1a178.6 178.6 0 00-15.7 10.4v41.4l39.2-9.3V93.5a19.4 19.4 0 01-9.2 1.4A21.5 21.5 0 0183.6 88zM153 264.6c3.9-4 7.6-8.1 11.2-12.3a305.5 305.5 0 0027.8-36.8s0-.2.2-.3V157l-39.2 9.3v62a25.4 25.4 0 010 19.4zM68 215.2l.1.3A303.4 303.4 0 0096 252.4a422 422 0 0011.2 12.2v-16.9a25.4 25.4 0 010-19.3v-51.2l-39.2 9.3z'/%3E%3Ccircle class='b' cx='130' cy='238' r='19.1'/%3E%3Cpath class='b' d='M149.8 12a9.2 9.2 0 011.4.1c-.3 5.3 0 10.2-5.8 12.3-1.8.7-2.6 1-1.6 3.3 1.5 3.3 0 6.3-1 8.4a7 7 0 00-1 3.8 16.8 16.8 0 009.3 2.8 15.6 15.6 0 004.7-.7c10-3.2 19.1-13.5 19.5-24 24.2.6 44.7 20.6 58.1 39.3 26 36.2 12.6 86-2.3 123.8a9.8 9.8 0 11-10.5 15.2 229.3 229.3 0 01-15 27.5 314.4 314.4 0 01-29.4 39q-9.8 11.4-20.8 22.2c-7.2 7.2-14.6 14-22.1 20.7l-3.3 2.9-3.2-3a493.1 493.1 0 01-43-42.8 315.4 315.4 0 01-29.3-39 230.7 230.7 0 01-15-27.4A9.8 9.8 0 1129 181C14 143.4.8 93.5 26.7 57.3c13.3-18.7 34-38.7 58-39.3.4 10.5 9.6 20.8 19.5 24a15.7 15.7 0 004.8.8 16.9 16.9 0 009.3-3 7.2 7.2 0 00-1-3.6c-1-2.2-2.6-5.2-1-8.5 1-2.2.2-2.5-1.7-3.2-5.7-2.2-5.5-7-5.7-12.4a9.2 9.2 0 011.4 0c3.8 0 8 2 13.6 6.1a34 34 0 016.1-.5 34.6 34.6 0 016.2.5c5.6-4.1 9.8-6.2 13.6-6.2m0-12c-6.3 0-11.9 2.7-16.8 5.8h-6A30.9 30.9 0 00110.3 0a23 23 0 00-3 .2 12 12 0 00-10.4 12.4v1a39.5 39.5 0 00.9 8 10.3 10.3 0 01-1.1-4A12 12 0 0084.7 6h-.3c-13.6.4-27 5.5-40 15.3-9.8 7.4-19 17.1-27.5 29C3.5 69-2 92.3.5 119.7c1.5 17 6.1 35.9 14 57.3a21.8 21.8 0 0017 35.4 20.3 20.3 0 002.4-.1c3 6 6.6 12 10.3 18a325.2 325.2 0 0030.5 40.5 511.4 511.4 0 0044 44l3.2 2.7a12 12 0 0016 0l3.2-2.8a482.7 482.7 0 0044-44 324 324 0 0030.6-40.4c3.7-6 7.2-12 10.3-18a20.4 20.4 0 002.4 0 21.8 21.8 0 0017-35.3 226.2 226.2 0 0014-57.3c2.4-27.4-3-50.8-16.4-69.4-8.5-11.9-17.8-21.7-27.5-29-13-9.8-26.5-15-40-15.3h-.3a12 12 0 00-12 11.6 10 10 0 01-1.1 4 38 38 0 00.9-8v-1A12 12 0 00152.8.2a22.7 22.7 0 00-3-.2z'/%3E%3C/svg%3E");
}

[football4club_logo="HTF"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312.3 325.3'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='81.4' y1='58.4' x2='229.9' y2='206.8' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23005aa4'/%3E%3Cstop offset='.4' stop-color='%230158a2'/%3E%3Cstop offset='.6' stop-color='%2303539a'/%3E%3Cstop offset='.8' stop-color='%2307498e'/%3E%3Cstop offset='.9' stop-color='%230d3b7b'/%3E%3Cstop offset='.9' stop-color='%230d3a7a'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='25.9' y1='223.8' x2='304.1' y2='223.8' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%230079bc'/%3E%3Cstop offset='.4' stop-color='%230077ba'/%3E%3Cstop offset='.6' stop-color='%23006fb5'/%3E%3Cstop offset='.8' stop-color='%230063ab'/%3E%3Cstop offset='.9' stop-color='%230054a0'/%3E%3C/linearGradient%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.g%7Bfill:%231d1c1b%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M156.1 0A51.8 51.8 0 00117 18a154.8 154.8 0 00-44.2 19.1A156 156 0 10195.4 18 51.8 51.8 0 00156 0z'/%3E%3Cpath d='M257.1 150.7a94.2 94.2 0 00-22.6-43V94.8H220a94.3 94.3 0 00-25.8-13l.1-.1a40.1 40.1 0 007-44.4v-.1a139.7 139.7 0 0198.5 99.8 235.1 235.1 0 00-42.6 13.6zM26 170c14.8 3.4 36.4 8 44.9 9.8q-.3-4-.3-8.3a94 94 0 0125-64V94.9H110a94.4 94.4 0 0125.8-13 40.1 40.1 0 01-7-44.5A139.2 139.2 0 0025.8 170z' transform='translate(-8.9 -2.4)' fill='url(%23a)'/%3E%3Cpath d='M257.1 150.7A94.5 94.5 0 1171 179.8c-8.6-1.9-30.1-6.5-44.9-9.9h-.1v1.5c0 76.7 62.4 139.1 139.1 139.1s139.1-62.4 139.1-139.1a138.8 138.8 0 00-4.3-34.6 235.1 235.1 0 00-42.6 13.7z' transform='translate(-8.9 -2.4)' fill='url(%23b)'/%3E%3Cpath d='M158.4 96v162.5A66.8 66.8 0 00222 191V96h-63.6z' fill='%2371af29'/%3E%3Cpath d='M153.8 96v162.5a66.8 66.8 0 01-63.6-67.4V96h63.6z' fill='%23ce3438'/%3E%3Cpath d='M90.3 137.2v23.4h20v79a65.6 65.6 0 0023.4 15v-94h20.1v-23.4h-19.7l-.3-41V96h-23.5v.1l-.3 41' fill='%23ffe700'/%3E%3Ccircle class='a' cx='165' cy='54.3' r='40.1' transform='rotate(-80.6 159.2 58.3)'/%3E%3Cpath class='g' d='M129 35.9h.4A47.5 47.5 0 01145 24.5l.2-.4a80 80 0 01.4-8.9l-.4-.2a38.8 38.8 0 00-9.9 2.5h-.1l-.1.1-1.7 1.1-.6.4-1.2 1-.6.4-1.2 1-.5.4-1.4 1.3-.2.2-1.5 1.6-.4.5-1 1.2-.5.6-.8 1.2-.5.6-.9 1.3-.2.4c3.1 2 6.2 4.2 7 4.9zM148.5 80.5c-1.4-7.6-2-15.7-2-16.7l-.3-.3c-7-2.8-14.7-6.9-16-7.6h-.5c-5.2 6.7-6.6 10-7 11.3v.4a16 16 0 001.2 2.2 94.8 94.8 0 009 11.8l.4.3a53.1 53.1 0 0014.9-.9zM181.1 76l-.4.2a54.6 54.6 0 01-14.6 9.7h-.1l-.3.3-.1 4.6h.2l.8-.2 1-.3.8-.3 1-.3.8-.3 1-.4.7-.3 1-.5.6-.3 1.1-.5.6-.3 1.5-1c.6-.2 1-.6 1.6-1l.5-.2 1-.8.6-.4.8-.7.6-.5.8-.7.6-.5.8-.8.5-.5.8-.8.5-.5.7-.9.5-.5.9-1.1.2-.3a53.8 53.8 0 01-7 0zM180.7 58.9c4.8-6 7.8-14 8.2-15l-.2-.6a94.4 94.4 0 00-10.6-15h-.4c-7 1.2-14.1 3-15.4 3.3l-.2.3a145.1 145.1 0 011 19.4l.2.5c.7.4 3.3 1.7 7.8 3.7a82 82 0 009.3 3.4h.3z'/%3E%3C/svg%3E");
}

[football4club_logo="DAL"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 321.6 243.3'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.b%7Bfill:%2327598b%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M100.4 86L99 90.8h6.4l-1.9-6a9 9 0 01-3 1.2zM103.1 75.2a14.9 14.9 0 000-1.6c0-7.4-3.4-8-5.7-8h-5V82h4.4l2.4-6.8z'/%3E%3Cpath class='a' d='M314.3 106l-53.9-17.6a10.2 10.2 0 00-.8-2.4 96 96 0 00-33.3-37 22.5 22.5 0 003.3-5.1 19.3 19.3 0 001.9-10.2 17.9 17.9 0 00-3.8-9.4 21.8 21.8 0 00-8.2-6.2 23.4 23.4 0 00-8-2.2 10.5 10.5 0 00-5.2-3.3 43.7 43.7 0 01-4.7-1.5 10.3 10.3 0 00-3-.6 10.7 10.7 0 00-2.7-1.2 73.6 73.6 0 01-6.9-2.2 10.7 10.7 0 00-3.3-.6 51.8 51.8 0 01-6.7-1.6h-.4a10.2 10.2 0 00-2.5-.7l-7.9-1-7-1.4a10.4 10.4 0 00-2.2-.2 10.7 10.7 0 00-2.6.3 20.2 20.2 0 00-5.3-1h-.2l-6.2-.3-2.9-.3a9.2 9.2 0 00-1.2-.1 10.6 10.6 0 00-4.2.9 23.1 23.1 0 00-7-1h-.7a22.8 22.8 0 00-9.4 2c-.4 0-.8-.2-1.3-.4a16 16 0 00-4.3-.5 27 27 0 00-3 .2l-2.2.3-3.1.4-1.7.2h-1.4a10.1 10.1 0 00-2.3.5c-.9 0-1.9.2-3 .4H97l-6.7 1.4-4.2.7a10.4 10.4 0 00-4.9 2h-.2a25.1 25.1 0 00-7.1 1.2h-.2l-5.8 1.8c-1.4.5-2.6.8-3.6 1a10.7 10.7 0 00-2.6 1l-3.7-6.7A10.5 10.5 0 0045 .8L39.6 3 17.9 5.7a10.5 10.5 0 00-9.1 10.6v6.5L5.8 26A10.5 10.5 0 0013 44h2.5L15 73.6a10.8 10.8 0 00-2 1.9 14.2 14.2 0 00-.8 1.2A84 84 0 000 116.4c0 12.7 5.8 29.1 11.3 39a10.5 10.5 0 003.5 3.7c4.8 8.7 18.4 19.7 25.7 25.3l-.7 1.3a10.8 10.8 0 00-1.2 3c-8 4.2-24.9 13.7-30.8 20.1a10.5 10.5 0 00-1 13.2l11.7 16.7a10.5 10.5 0 008.4 4.7h.2a10.5 10.5 0 008.4-4.2c6-8 29.3-24.6 43-33.5a11.5 11.5 0 00-.2 1.2l-.2 1.1a10.5 10.5 0 009.7 12.3l1.7.3 2.1.4a10.5 10.5 0 002.7.3h.8a10.2 10.2 0 003 .9 68.8 68.8 0 016.8 1.1 10.6 10.6 0 002.3.3h1.4l3.5.3 2 .2 4.6.4 2.6.2a10.3 10.3 0 002.4.2 9.2 9.2 0 001 0h4.8a10.8 10.8 0 002.6-.2 10.6 10.6 0 002.5.3h.6a61.8 61.8 0 016.9 0h.6a10.5 10.5 0 005.1-1.4 10.5 10.5 0 004 .8h1l1.8-.1a10.5 10.5 0 005.7-2.3 10.4 10.4 0 006.4.6 71.8 71.8 0 0110-1.8c1.1-.1 2.2-.4 3.2-.7a11.4 11.4 0 001.9-.7h.5a23 23 0 005.1-.8 18.6 18.6 0 0011-7.3 16.2 16.2 0 002.4-13.4l-.1-.4c29.7-12.2 51.8-32.3 61-55.6l.3-.8 52-14.9a10.5 10.5 0 00.3-20z'/%3E%3Cpath class='b' d='M74.8 29l-2.1-7.6 2.5-1c2.4-.6 4.2-.6 5.5.2a7.4 7.4 0 013.3 4.6 10.1 10.1 0 01.4 4.6 5.8 5.8 0 01-1.5 3.2 9.1 9.1 0 01-4 2 11.8 11.8 0 01-2 .4q-.7-1.7-2-6.5zm.8 8.3l4.7-1.3a12.4 12.4 0 004.5-2.3 9.2 9.2 0 002.8-4.4 9.7 9.7 0 000-5.8 8.5 8.5 0 00-2.2-3.8 6.5 6.5 0 00-3.4-1.8 12 12 0 00-5.2.7l-6 1.8-4.2 1.2.3 1a12 12 0 011.8-.3.4.4 0 01.2.2 10.6 10.6 0 01.8 1.9 156 156 0 013.5 12.2l-1 1.1.2.7 3.3-1.1zm16-4.4v-.6a6.4 6.4 0 001-1 81.7 81.7 0 00-1.4-8.2l-1.1-5.6a1.4 1.4 0 00-.5-.9 4.7 4.7 0 00-1.8 0l-.2-1 4.6-.8 6.8-1.4a20 20 0 012-.2h.1a29.7 29.7 0 00.4 3.8l-1 .2a11.6 11.6 0 00-.6-2 1 1 0 00-.6 0 16.6 16.6 0 00-3.2.3l-2.4.6c.3 2.6.7 4.6 1 6.1.8 0 1.7-.2 2.5-.4a10.4 10.4 0 002-.5.5.5 0 00.2-.4 11.5 11.5 0 00-.1-1.6l1-.2.5 2.8.6 2.7-1.1.2a8 8 0 00-.6-1.8.5.5 0 00-.4-.1 17.3 17.3 0 00-2.8.4 13.9 13.9 0 00-1.5.4l.2 1.3 1.1 5.4 2.5-.4a35.1 35.1 0 003.8-1v-2.7l1.1-.2a40.5 40.5 0 00.5 4.3l-2.2.5A93 93 0 0196 32l-4.3 1zm13.4-2.5v-1a6.9 6.9 0 001.6-.4.5.5 0 00.2-.3 14.8 14.8 0 00-.1-2.7 250 250 0 00-1.2-10.2 5.5 5.5 0 00-.5-1.9 2 2 0 00-1-.1h-.8l-.1-1 1.4-.1a64.9 64.9 0 005.5-.7l2-.2a9.7 9.7 0 013.3 0 3.4 3.4 0 011.8 1 3.9 3.9 0 01.8 2.2 5.2 5.2 0 01-1.2 4 5.9 5.9 0 01-4 2 4 4 0 01-.7 0 7 7 0 01-.8 0l-.6-.7.3-.4h.9a2.8 2.8 0 002-1 3.5 3.5 0 00.6-2.6 3.6 3.6 0 00-1.2-2.6 3.4 3.4 0 00-2.6-.6 7.3 7.3 0 00-1.5.4l.6 6.6.8 5.8a17.4 17.4 0 00.4 2.2.5.5 0 00.2.3 9.7 9.7 0 002.1 0l.2 1c-1.5 0-2.8.2-3.8.3l-4.5.6zm21.1-3.8a6 6 0 01-2.1-2.7 11.4 11.4 0 01-1-4.5c0-2.5.4-4.4 1.4-5.6a6 6 0 018.5-.3 9.6 9.6 0 011.8 6.2c.1 2.5-.3 4.4-1.3 5.7a4.9 4.9 0 01-4 2 5.8 5.8 0 01-3.3-.8zm8.1.8a8.4 8.4 0 003.3-3.4 10.3 10.3 0 001.1-5.1 9 9 0 00-1.2-4.5 7.7 7.7 0 00-3.2-3 11.6 11.6 0 00-5.3-.8 11.8 11.8 0 00-5.4 1.2 8 8 0 00-3.3 3.2 9.7 9.7 0 00-1 5 8.8 8.8 0 002.5 6.5q2.6 2.4 7.2 2.3a11 11 0 005.3-1.3zm5.1 1l.1-1a7 7 0 001.7-.2.4.4 0 00.2-.2 10.5 10.5 0 00.3-2 181.3 181.3 0 00.7-9.6 13.5 13.5 0 000-3 .4.4 0 00-.2-.3 6.5 6.5 0 00-1.5-.4v-1l3.4.3 6.3.4a8.3 8.3 0 013 .6 3.1 3.1 0 011.3 1.4 3.9 3.9 0 01.4 2 4.2 4.2 0 01-1 2.7 7.2 7.2 0 01-3.3 1.8l2.4 4.2 1.9 3.3a3.8 3.8 0 00.8 1 2 2 0 001 .2l-.2 1h-.7l-4-.3-3-5.3-2.3-4.1a2.9 2.9 0 00.2-.5l.7.1a3.7 3.7 0 002.4-.7 3.3 3.3 0 001.4-2.6 3 3 0 00-.7-2.4 4 4 0 00-2.7-1 13.7 13.7 0 00-1.6 0l-.3 3.7-.5 4.7-.1 4a12 12 0 000 2.2.6.6 0 00.3.3 5.8 5.8 0 001.6.3v1a106.2 106.2 0 00-8-.6zm20.6 1.8l.2-1a9 9 0 001.5 0 1 1 0 00.5 0 1 1 0 00.3-.5l.8-4a264.9 264.9 0 001.6-10l-.9-.2-3-.4a3.2 3.2 0 00-.8 0 .4.4 0 00-.2.2l-.6 2.2-1-.1q.4-2.5.5-4.2l.2-.1q3.7.8 7.5 1.4t8.3 1.2l.1.2-1 4-1-.2a12.3 12.3 0 00.1-2.3.6.6 0 00-.3-.2 27.9 27.9 0 00-3.9-.8h-.3a2.4 2.4 0 00-.2.6l-1.4 8.4-.7 4.4c0 .5 0 1 .2 1.1a10 10 0 001.9.6l-.2 1A72.8 72.8 0 00160 30zm12.3 2.2l.2-1a5.3 5.3 0 002 .1 124 124 0 002-7l1-5a18.2 18.2 0 00.5-2.4.5.5 0 00-.1-.4 7.2 7.2 0 00-1.8-.7l.2-1a114.5 114.5 0 008 1.9l-.2 1a6 6 0 00-2-.2 1.2 1.2 0 00-.4.7l-1.3 4.8-1.5 6.8a8 8 0 00-.3 2.3.5.5 0 00.3.3 10.3 10.3 0 001.6.6l-.2 1-1.5-.4-2.4-.6zM185 18l.3-1 4.1 1.4 3.7 1-.3 1a7.1 7.1 0 00-1.7-.2.4.4 0 00-.4.3 17.7 17.7 0 000 3.2l.8 9.4 4.9-5.9a20.8 20.8 0 002.9-4 .5.5 0 00-.1-.5 7.6 7.6 0 00-1.7-.8l.3-1a115.3 115.3 0 005.7 1.8l-.3 1a3.8 3.8 0 00-1.5-.1 15 15 0 00-2.3 2.3l-6.5 7.7a45.6 45.6 0 00-3 3.7l-1.7-.5-1-11.6a130 130 0 00-.5-5.4 2.6 2.6 0 00-.3-1.1 5.2 5.2 0 00-1.4-.7zm20.3 22.8a6 6 0 01-.7-3.3 11.3 11.3 0 011.2-4.5q1.5-3.4 3.6-4.4a6 6 0 017.8 3.5 9.5 9.5 0 01-1 6.3q-1.6 3.5-3.8 4.5a4.9 4.9 0 01-4.4 0 6 6 0 01-2.6-2zm7 4.4a8.4 8.4 0 004.4-1.6 10.4 10.4 0 003.3-4.2 9 9 0 001-4.6 7.7 7.7 0 00-1.7-4 11.3 11.3 0 00-4.3-3.2 11.8 11.8 0 00-5.4-1.3 8.1 8.1 0 00-4.4 1.5 9.8 9.8 0 00-3.1 4 8.8 8.8 0 00-.6 7q1.3 3.2 5.5 5.2a11 11 0 005.3 1.1zM100.4 204.8l-5.2-1L99 198zm-12 4.9a26.4 26.4 0 012.8.4l3 .6.2-1.1a8.9 8.9 0 01-1.7-.6.4.4 0 01-.2-.4 1.8 1.8 0 01.2-.4l.8-1.6.8-1.3a70.6 70.6 0 016.4 1l.5 2.3a8.7 8.7 0 01.3 1.6.4.4 0 01-.3.3 8.2 8.2 0 01-1.8-.1l-.2 1.1a78 78 0 018 1.4l.2-1.1a3.1 3.1 0 01-1.6-.6 17 17 0 01-.8-3l-3.4-14.4-1.8-.3-6.3 10-2.7 4.2a3 3 0 01-.7.8 3.9 3.9 0 01-1.5 0l-.2 1.1zm20.6 3.3v-.7a8.7 8.7 0 001.4-.7q.5-3.4.8-7l.4-5.6a8.2 8.2 0 000-2.1.4.4 0 00-.2-.3 12.8 12.8 0 00-1.9-.4l.1-1a124 124 0 008.4.7l-.1 1a6 6 0 00-2 .2.7.7 0 00-.3.4l-.5 4.1-.6 6.2-.2 4 2.4.3a18.7 18.7 0 004 0l1-2.7 1 .1a66 66 0 00-.8 4.5l-2.3-.1-4.5-.5-2-.2-4.1-.2zm25.6-5.6h-5.3l2.6-6.5 2.7 6.5zm-11 6.8a29.6 29.6 0 016 0v-1a8 8 0 01-1.9-.3.4.4 0 01-.2-.4 1.4 1.4 0 010-.5l.6-1.7.6-1.4h6.6l.8 2.2a8 8 0 01.5 1.6.4.4 0 01-.2.3 8.3 8.3 0 01-1.7.2v1a79.5 79.5 0 018 0v-1a3.3 3.3 0 01-1.6-.4 16 16 0 01-1.4-2.8l-5.7-13.6h-1.8l-4.6 11c-.6 1.5-1.2 3-2 4.5a3.3 3.3 0 01-.6 1 4.2 4.2 0 01-1.4.2v1.2zm18-16.6l-.1-1a106.3 106.3 0 008.2-.7v1a8.1 8.1 0 00-1.7.3.4.4 0 00-.2.5 16.6 16.6 0 001.3 3l4.3 8.3 2.2-7.3a21.6 21.6 0 001.2-4.8.5.5 0 00-.3-.4 7.1 7.1 0 00-1.9 0v-1l3-.3c1 0 2-.2 2.9-.3v1a4 4 0 00-1.4.4 14.7 14.7 0 00-1.2 3l-3 9.7a43.8 43.8 0 00-1.2 4.5l-1.9.2-5.3-10.3-2.6-4.8a2.5 2.5 0 00-.7-.9 4.9 4.9 0 00-1.6-.1zm22.8 14.5v-.7a7.3 7.3 0 001-.9q0-2-1.2-8.2l-1-5.6a1.4 1.4 0 00-.5-1 5.2 5.2 0 00-1.9 0l-.2-1 4.7-.7 6.8-1.3a17.8 17.8 0 012-.2l.1.1a30.4 30.4 0 00.3 3.7l-1 .2a11.1 11.1 0 00-.5-2 1.2 1.2 0 00-.6 0 17.7 17.7 0 00-3.2.3c-.7 0-1.6.3-2.5.5l.9 6.2 2.5-.4a11.5 11.5 0 002-.5.5.5 0 00.3-.4 11.7 11.7 0 000-1.6l1-.1.4 2.7.6 2.7-1.1.2a7.7 7.7 0 00-.6-1.8.5.5 0 00-.3-.1 17.8 17.8 0 00-2.8.3 14.2 14.2 0 00-1.6.4 89.2 89.2 0 001.3 6.8l2.4-.4a32.9 32.9 0 003.8-1l.1-2.6 1.1-.2a38.4 38.4 0 00.4 4.3 27.3 27.3 0 01-4.8.9c-1.2.2-2.4.3-3.5.6l-4.4.8zm14-8l1-.3a10.9 10.9 0 00.6 2.1 2.3 2.3 0 001 .6 4.9 4.9 0 001.7.5 6.8 6.8 0 002-.2 4.3 4.3 0 002.6-1.7 3 3 0 00.5-2.5 2.6 2.6 0 00-1.2-1.8 5.2 5.2 0 00-2.9-.3 15.6 15.6 0 01-4.1.2 3.7 3.7 0 01-2-1 4.7 4.7 0 01-1.2-2.3 5.4 5.4 0 01.6-4.3q1.2-2 4.8-3a14.4 14.4 0 012.5-.4 10.5 10.5 0 012.3.1l.2.3a14.2 14.2 0 00.2 1.4l.4 2.2-1 .3a10 10 0 00-.7-2 2.9 2.9 0 00-1.4-.6 5.5 5.5 0 00-2.4.1 4 4 0 00-2.4 1.5 2.8 2.8 0 00-.4 2.4 2.6 2.6 0 00.8 1.2 2.4 2.4 0 001.2.6 18 18 0 003.1-.1 14.6 14.6 0 013-.1 3.8 3.8 0 012.1 1 4.7 4.7 0 011.3 2.3 5.6 5.6 0 01-.9 4.8 8.3 8.3 0 01-5 3.1 12.7 12.7 0 01-2.9.5 12.3 12.3 0 01-2.8-.3 14.4 14.4 0 00-.2-1.6l-.5-2.7zM92.4 65.6h5c2.2 0 5.8.6 5.8 8 0 4-1.5 8.4-5.7 8.4h-5m-5.2 4.3H98c8.3 0 10.4-7.7 10.4-13 0-4.8-1.8-12-10.2-12h-11z'/%3E%3Cpath class='b' d='M102.1 80.9l3.2 9.9h-6.4zM97.5 95h9.2l1.6 5.2h5.8l-8.8-25.1h-6l-9 25h5.5z'/%3E%3Cpath d='M88.2 185.4A170.5 170.5 0 00132 191c50.6 0 93.5-21 108.6-50.3L88.2 185.4zM132 44.2a177.8 177.8 0 00-24 1.6l127.3 40.3C217 61.3 177.7 44.2 132.1 44.2zM54.1 64a56.1 56.1 0 00-5 3.3c.5 28.9-1.3 61.9-1.3 90.2l3 2.4c5-16.2 16.6-60.3 3.4-95.9zm-32.9 75.4l.1-43.5a61 61 0 00-.1 43.5z' fill='%2300acec'/%3E%3Cpath class='b' d='M69.5 189.3L46 196.8s-24.5 13-30.4 19.3L27 232.8c9.5-12.7 46.4-36.4 46.4-36.4zM57 177.1l-8.2 14L311.2 116l-245-79.8 1.6 8.4 57.8 17.5v40.7h-55c.7-19.2-1.3-41.9-8.6-67.8L48.7 10.6l-6.5 2.6-23 3 .2 11-6.3 6.3 13.4-.7-3 120.6c3.6 8 25 23.8 25 23.8l-3.8-17.8 3.6-127.6h.4c29.6 70.8 3 138.7 3 138.7l-.5 2.8s8-11.5 13.7-33H200z'/%3E%3Cpath class='b' d='M21.1 139.5a53 53 0 01-.1-46l.3-11.5a73.9 73.9 0 00-10.8 34.4c0 10.2 5 25 10 34zM133.3 33.2a159 159 0 00-82.5 21.6l1.5 5.3c22-14 50.6-21.6 81-21.6 31.8 0 61.6 8.3 84 23.4A83.7 83.7 0 01243 88.4l7 2.2C234.2 57.3 188 33.2 133.4 33.2zM73.6 188.3c5.1 1.8 12 4.9 17.6 6.2l3.5-4.5q-6.2-1.4-12-3.3zM245.7 139.3a79.8 79.8 0 01-28.5 31.5 126.5 126.5 0 01-27.5 14l2.8 4.5c29-10.8 51-29.5 59.6-51.7z'/%3E%3Cpath class='a' d='M133.6 65.2v37.6h123.2L133.6 65.2z'/%3E%3C/svg%3E");
}

[football4club_logo="CDL"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 318.3 313.1'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.a,.e%7Bfill-rule:evenodd%7D.b%7Bfill:%23ce8900%7D.e%7Bfill:%23225e0b%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M112 266.9c6-25.7-16.5-29.4-30.5-23.2-4 .4-7.6.4-10.3-1.3-15.5-10-22.8-16-33.5-22.3 7 14.8 5 23.2 12.6 38.5-8.3 5.3-9.9 9.5-24.9 16a364 364 0 0142.2 12.8c-.7 4.1-1.6 8.3-2.5 12 49.3 16.8 138.8 16.8 188.1 0-1-3.7-1.7-7.9-2.5-12a363.4 363.4 0 0142.2-12.8c-15-6.5-16.6-10.7-24.8-16 7.5-15.3 5.5-23.7 12.5-38.5-10.7 6.3-18 12.4-33.4 22.3-2.8 1.7-6.4 1.6-10.4 1.3-14-6.2-36.5-2.5-30.5 23.2a298.1 298.1 0 01-47.1 4 298 298 0 01-47.1-4'/%3E%3Cpath class='b' d='M293.4 273.5c-9.9-4.2-13.8-7.5-17.8-10.7-1.8-1.5-3.7-3-6-4.6a83.5 83.5 0 006.2-19.3 80.5 80.5 0 016-18.3l1.6-3.5-3.4 2c-5.7 3.4-10.4 6.7-16 10.5-4.8 3.4-10.3 7.2-17.5 11.8-2.3 1.5-5.7 1.5-9.4 1.1a32.4 32.4 0 00-8.5-2.3 29 29 0 00-9.9.3 19.3 19.3 0 00-8.6 4c-4.8 4.1-7.3 11-5.2 21.5a295.7 295.7 0 01-45.7 3.8 295.6 295.6 0 01-45.7-3.8c2.1-10.5-.5-17.4-5.3-21.4a19.3 19.3 0 00-8.6-4.1 29.1 29.1 0 00-9.8-.3 32.3 32.3 0 00-8.5 2.3c-3.7.4-7 .4-9.5-1-7.1-4.7-12.6-8.5-17.5-11.9-5.5-3.8-10.2-7-16-10.5l-3.3-2 1.6 3.5a80.5 80.5 0 016 18.3 83.5 83.5 0 006.2 19.3c-2.4 1.6-4.2 3-6 4.6-4 3.2-8 6.5-17.8 10.7l-3.3 1.4 3.5.8a358.4 358.4 0 0141 12.4c-.6 3.8-1.4 7.6-2.2 11l-.3 1 1 .4c24.8 8.5 59.6 12.7 94.4 12.7s69.7-4.2 94.5-12.7l1-.3-.3-1-2.3-11a385.4 385.4 0 0141.1-12.5l3.5-.8zm-226.6-22v.4a228.6 228.6 0 01-3 30.2c-7.5-2.8-11-3.7-17.5-5.6l-8.4-3c7.9-3.6 7.3-3.6 11-6.6a67.7 67.7 0 016.6-5l1-.6-.5-1c-3.8-7.7-5.2-13.7-6.5-19.6-1.1-4.8-.3-4.6-2.6-10.4l5.9 4.6c4.8 3.4 6.5 4.4 13.8 9.1a21.4 21.4 0 013.2 2.5c-2.3 1-3 5-3 5zm40.2 13.3l-3.3-.6c-16-3.2-26.4-6.6-29.2-10.3 1.3-3.5 4.7-6.4 9-8.3.7 0-.2-.9.5-1l1.6.8c.6-.1-.4-.9 0-1v-1a30.3 30.3 0 014.5-1 26.7 26.7 0 019 .3c3 .6 1.4 1 3.5 2.8 4.2 3.6 6.4 9.8 4.4 19.3zm107.7-.6c-2.4.4-.1.2-2.7.6-2-9.5.3-15.7 4.5-19.2 2-1.8-.1-2.2 2.7-2.8s1.9 1.5 5 2c7.8 1 15.1 5 17.2 10.6-2.8 3.7-10.8 5.6-26.7 8.8zm57 11.2c-6.7 2-8 2.3-15.6 5a248.5 248.5 0 01-3.1-28.9v-.2a15 15 0 00-3.6-5.6 11 11 0 005.7-2.1c7.4-4.8 13.5-10.7 17.8-13.4-2.4 5.8-3.4 5-4.5 9.9a80.5 80.5 0 01-6.5 19.7l-.5 1 1 .5a55.9 55.9 0 016 4.6c3.6 3 2.7 3.7 10.6 7.3a73.5 73.5 0 00-7.4 2.2z'/%3E%3Cpath class='a' d='M4.2 2.4l155 258.9 155-259H4.2z'/%3E%3Cpath class='b' d='M157.1 262.5L2.1 3.5 0 0h318.3l-2.1 3.6-155 258.9-2 3.4zM8.4 4.7l150.8 252L310 4.6z'/%3E%3Cpath d='M169.4 101.7v100a50.6 50.6 0 0020.3-9.2V111a50.6 50.6 0 00-20.3-9.2m-40.8 9.2v81.6a50.7 50.7 0 0020.4 9.2v-100a50.6 50.6 0 00-20.4 9.2z' fill='%2300419a' fill-rule='evenodd'/%3E%3Cpath class='b' d='M124.8 186.1a48.7 48.7 0 10-14.2-34.4 48.4 48.4 0 0014.2 34.4m34.4 19a53.4 53.4 0 1137.7-15.6 53.1 53.1 0 01-37.7 15.6zM4.2 2.4h310l-25.9 45.5H30L4.2 2.4z'/%3E%3Cpath d='M131.4 103.8a55.3 55.3 0 0155.6 0l17.8-34.2c-7.9-3.7-4.7 1.4-7.2 1.4-5.5-2.1-3.2 2.6-4.6 10.8-2.5 1.5-5.4 2.4-7.4.8-3.6-3-3-8.9-3.9-10.5-4 1.8-7.3 5.2-13 5.6-3.4.2-7-.9-7-3.2.4-6 8.6-3.9 10-8.5.6-2.1-10.8-7-11-9 0-.7 1.9-1 2-2s-2.4-2.3-3.5-3.4c-1.2 1.1-3.6 2.4-3.5 3.4s1.9 1.2 1.8 2c0 2-11.4 6.9-10.8 9 1.3 4.6 9.5 2.5 9.8 8.5.2 2.3-3.5 3.4-6.9 3.2-5.6-.4-9-3.8-13-5.6-1 1.6-.3 7.5-3.9 10.5-2 1.6-5 .7-7.4-.8-1.4-8.2 1-13-4.6-10.8-2.5 0 .7-5.1-7.1-1.4z' fill='%23ce8900' fill-rule='evenodd'/%3E%3Cpath class='b' d='M216.6 91.2v14h2a7.9 7.9 0 003.4-.6 3.7 3.7 0 001.6-1.9 12 12 0 00.6-4.4q0-4.1-1.3-5.6c-.9-1-2.3-1.5-4.3-1.5zm-7.8-5.8h11.6a13.6 13.6 0 015.5 1 9.1 9.1 0 013.5 2.7 11.5 11.5 0 012 4 19.4 19.4 0 01.6 5 17.6 17.6 0 01-.9 6.4 10.5 10.5 0 01-2.6 3.8 8.3 8.3 0 01-3.5 2 18.1 18.1 0 01-4.6.7h-11.6zM103.2 100.5l7 2a12 12 0 01-2.2 4.7 9.4 9.4 0 01-3.8 2.8 14.5 14.5 0 01-5.7 1 17.2 17.2 0 01-6.8-1.2 10.7 10.7 0 01-4.6-4 13.6 13.6 0 01-2-7.7q0-6.1 3.4-9.4t9.6-3.3a13.4 13.4 0 017.7 1.9 11 11 0 014.1 5.8l-7 1.5a5.8 5.8 0 00-.8-1.7 4.6 4.6 0 00-1.6-1.3 4.8 4.8 0 00-2.1-.5 4.8 4.8 0 00-4.2 2.1 8.7 8.7 0 00-1.1 4.9q0 4 1.3 5.6a5.3 5.3 0 007.1.3 7.4 7.4 0 001.7-3.6M149.6 209.3h8.2v19.4h12.8v6.3h-21v-25.7z'/%3E%3Cpath class='e' d='M130.5 225.4c.2-9-3-14.4-13.8-22.8l-2 6c-.1-6-2.2-12.6-8.7-22a64 64 0 00-6.3 12.5c1-9 0-17-6.7-26.2-7.5 20.6-11.8 26.7 2.4 49.4l2.7-13.7c.3 7.5 4.4 14.8 11.8 25.3 1.1-6 2.5-10.7 3.5-15 .3 7.5 4.1 14.3 12 24.3-12-3.5-21.7-7-30.7-6.2a70.7 70.7 0 0010.5-6.6 60.9 60.9 0 00-11.4-4l4-1.2c-21.7-12.5-25-15.1-47.6-9.6a66.7 66.7 0 0020.5 12.5 73.7 73.7 0 00-13.8 7.6c11.4 3.1 19 5.5 26.7 4.7a40 40 0 00-9.5 7.6c13 6.3 24 8.8 33.1 7.8 13 3.5 15.8 5 29.7-4.6-5.4 0-9.4-1.3-13.1-2.2a34.7 34.7 0 003.5-3.5l.3.3v-.7l.8-.8a20 20 0 008.5 7c1.4-18.7-3-21.4-6.4-26zm-2.6 18.5v-.3l.4.4z'/%3E%3Cpath class='e' d='M88.5 209c-14.8-7.9-18.8-14.2-27-16.4 3.5.4 7.5.6 12.2.8-6.4-7-10.6-12.4-14.5-16.3a39.9 39.9 0 004.9-.3c-6-11.8-8.4-18.4-13-23.2a47.2 47.2 0 006 2.2c2 4.6 4.3 9.4 7 14.7l1.8-7a44.6 44.6 0 0016.3 39c4.4-24.4 6.5-33.6.1-45-2.2-4-7.3-8.9-10.7-13.5a43 43 0 001.7-11.5c0-7.1-4-12.8-7.3-19.8 5-9.4 7.6-18.6 3.4-34.1-25.4 23.2-23.5 28-17 54l-.1 1.5A35.3 35.3 0 0033 119c-.3 12.8 2.1 21.9 8.2 28.2a118 118 0 00-10.8-4.3 49 49 0 009.6 25.9 71.8 71.8 0 00-8.6.3c8.5 15 13.9 20.6 25.4 23-4-.3-9.2.2-16.5 1.6 9.8 14.1 19.4 18.5 48.2 15.5zM181.6 251.2a20 20 0 008.5-7l.8 1v.6l.3-.3a33.8 33.8 0 003.6 3.4c-3.8 1-7.8 2.2-13.2 2.3 14 9.6 16.7 8 29.7 4.6 9.2 1 20.2-1.6 33.2-7.8a39.6 39.6 0 00-9.6-7.6c7.7.8 15.4-1.6 26.8-4.7a74 74 0 00-13.8-7.5c6.2-1.8 12-6 20.5-12.6-22.6-5.5-26-2.8-47.7 9.7l4 1.2a61.2 61.2 0 00-11.3 4 70.7 70.7 0 0010.5 6.5c-9-.8-18.8 2.6-30.8 6.2 8-10 11.7-16.8 12.1-24.3 1 4.3 2.3 9.1 3.4 15 7.4-10.5 11.6-17.8 11.8-25.4.9 4.2 1.9 8.7 2.7 13.8 14.2-22.7 10-28.8 2.4-49.4a33.8 33.8 0 00-6.7 26.2 64.1 64.1 0 00-6.3-12.4c-6.4 9.3-8.5 15.8-8.6 22-.5-1.9-1.2-3.9-2-6-10.9 8.3-14 13.8-13.8 22.7-3.4 4.5-7.8 7.2-6.5 25.8zm8.7-7.2l.3-.4v.3z'/%3E%3Cpath class='e' d='M230.1 209c14.8-7.9 18.8-14.2 27-16.4-3.5.4-7.5.6-12.3.8 6.5-7 10.7-12.4 14.6-16.3a39.8 39.8 0 01-4.9-.3c6-11.8 8.4-18.4 13-23.2a47.8 47.8 0 01-6 2.2 263 263 0 01-7 14.7l-1.9-7a44.5 44.5 0 01-16.3 39c-4.3-24.4-6.4-33.6 0-45 2.2-4 7.2-8.9 10.6-13.5a42.6 42.6 0 01-1.7-11.5c.1-7.1 4.1-12.8 7.4-19.8-5-9.4-7.7-18.6-3.4-34.1 25.4 23.2 23.4 28 17 54l.1 1.5a35.3 35.3 0 0119.2-15.2c.4 12.8-2 21.9-8.2 28.2 3-1.4 6.5-2.8 10.9-4.3a49 49 0 01-9.6 25.9 71.8 71.8 0 018.6.3c-8.5 15-14 20.6-25.5 23 4.1-.3 9.3.2 16.6 1.6-9.8 14.1-19.4 18.5-48.2 15.5z'/%3E%3Cpath d='M265 136.4l-1.4-.2a125.1 125.1 0 01-2 13 141 141 0 01-6 20.8q-1.3 3.6-2.8 7.1l-1.6 3.6q-1.7 3.6-3.6 7.1l-2 3.6a144.8 144.8 0 01-38.6 43.8 208.7 208.7 0 01-31.4 19.6q-7.8 4-16.6 7.6-8.8-3.6-16.5-7.6a208.2 208.2 0 01-31.4-19.6 145 145 0 01-38.5-43.8 140.3 140.3 0 01-17.9-55.2l-1.4.2h-1.4a142.9 142.9 0 0018.3 56.3 148 148 0 0039.3 44.8 212.6 212.6 0 0031.8 19.8q6.7 3.4 14.2 6.6l-10.5 4a67 67 0 01-9.7 3 1 1 0 00-.8 1.1 2.1 2.1 0 001.4 2 1 1 0 00.6 0c3.6-1.2 5.7-2.1 9-3.3 4.8-1.7 9.3-3.4 13.7-5.2q6.5 2.7 13.6 5.2l9 3.3a1 1 0 00.7 0 2.1 2.1 0 001.4-2 1 1 0 00-.8-1.2 67.8 67.8 0 01-9.7-3c-3.6-1.2-7.1-2.5-10.5-3.9q7.5-3.2 14.2-6.6a212.5 212.5 0 0031.8-19.8 147.8 147.8 0 0039.3-44.8 142.9 142.9 0 0018.3-56.2z' fill='%23350c00' fill-rule='evenodd'/%3E%3C/svg%3E");
}

[football4club_logo="GFC"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 249.6 325.1'%3E%3Cdefs%3E%3Cstyle%3E.a%7Bfill:%23fff%7D.b%7Bfill:%23ec0007%7D.c%7Bfill:%23fadc01%7D%3C/style%3E%3C/defs%3E%3Cpath class='a' d='M239.8 151.8a125.7 125.7 0 00-66.5-66.5q-3-1.3-6.2-2.4l3.8-2.2a11.4 11.4 0 003.2-2.9L200 43.2l.4-.5a21 21 0 004.7-10A14.3 14.3 0 00202 21a14.5 14.5 0 00-11-5 16.8 16.8 0 00-4.7.7 38 38 0 00-4.5 1.6c-1.2.6-1.2.6-1.5.6a20.4 20.4 0 00-3.4.3 13.7 13.7 0 00-.7-2.5 14.6 14.6 0 00-8.7-8.7l-.3-.1-1.1-.5a35.3 35.3 0 00-3.8-1.5h-.2a16.8 16.8 0 00-4.8-.8 14 14 0 00-13 8.8 14.8 14.8 0 00-1.3.7 15.2 15.2 0 00-1.5-1.9 13.6 13.6 0 00-2.4-7c-2.5-3.5-6.5-5.4-11.7-5.6l-2.6-.1h-2.6c-5.2.3-9.2 2.2-11.7 5.7a13.6 13.6 0 00-2.4 7 13.7 13.7 0 00-1.5 2 14.8 14.8 0 00-1.3-.8 14 14 0 00-13-8.8 16.8 16.8 0 00-4.8.7l-.3.1a35 35 0 00-3.6 1.4l-1.2.5-.3.2a14.6 14.6 0 00-8.7 8.7 13.7 13.7 0 00-.6 2.5 20.4 20.4 0 00-3.4-.3c-.4 0-.4 0-1.6-.5a37.8 37.8 0 00-4.4-1.6 16.9 16.9 0 00-4.7-.7 14 14 0 00-14.2 16.6 21 21 0 004.7 10l.4.5 26 34.6a11.6 11.6 0 003 2.9l3.9 2.1-6.2 2.5a124.8 124.8 0 10163.5 66.4zM84.6 71L58.9 36.4c-1.3-1.6-2.7-3.2-3-5.4-.4-2.5 1-3.5 2.9-3.5a6 6 0 011.6.2c3.3 1 4.8 2.5 8.7 2.6 2.2 0 3.5.5 5 2.2a19.4 19.4 0 013 5.3 4.3 4.3 0 01-1.3 4.7c0 2 1.6 6.5 4 6.5a2.2 2.2 0 00.9-.2c3.8-1.6 7.5-3 11.4-4.3 1.6-.5 1.6-1.3 1.3-3a14.4 14.4 0 00-1-3.2 7.8 7.8 0 01-2.8.8c-1.2 0-2-.9-3.1-2.8L84.6 33c-1-2-1.2-3.6 1.1-4.8.8-.4 1-.5.7-1-.6-1.5-1.5-3-2-4.4-.7-1.8-.7-3.3 2-4.5l4.2-1.7a5.7 5.7 0 011.6-.3c1.7 0 2.5 1.2 3.1 3.3l.7 2c.7 1.4.5 2.3 1.3 2.3a2 2 0 00.5-.1 5.8 5.8 0 011-.1c2 0 2.5 1.5 3 3.4l.9 3.2c1 3.4 0 4.6-3.3 5.3.5 2.4 1.4 5.8 4.3 5.8a4.5 4.5 0 00.8 0 105.2 105.2 0 0112.3-1.7c3.6-.8 4.1-4.5 4.2-7.6h-.8c-3 0-3.6-1.2-4-4.1l-.2-3.4c-.3-2.3-.8-4.7 2.5-5.2.6-.1 1 0 1-.5l-.2-3.6c0-3 0-3.8 3.3-4h4.2c3.4.2 3.4 1 3.4 4 0 1.2-.2 2.4-.1 3.6 0 .5.3.4.9.5 3.3.5 2.8 2.9 2.5 5.2l-.2 3.4c-.3 2.9-1 4.1-3.9 4.1h-.7c0 3.1.5 6.8 4.1 7.6a105 105 0 0112.3 1.6 4.5 4.5 0 00.8.1c3 0 3.8-3.4 4.3-5.8-3.2-.7-4.2-1.9-3.3-5.2l.9-3.3c.5-1.8 1-3.4 3-3.4a5.7 5.7 0 011 0 2 2 0 00.5.2c.8 0 .7-1 1.3-2.3l.7-2c.6-2 1.4-3.2 3.1-3.2a5.7 5.7 0 011.6.2c1.5.5 2.8 1.2 4.2 1.8 2.8 1 2.8 2.7 2.1 4.4-.6 1.5-1.5 3-2.1 4.4-.2.5 0 .6.7 1 2.3 1.2 2.2 2.8 1.1 4.9l-1.8 3.1c-1 2-1.9 2.8-3.1 2.8a7.8 7.8 0 01-2.8-.8 15 15 0 00-1 3.2c-.3 1.7-.3 2.5 1.3 3 3.9 1.3 7.7 2.7 11.4 4.3a2.3 2.3 0 001 .2c2.4 0 3.9-4.6 4-6.5a4.3 4.3 0 01-1.5-4.6 19.7 19.7 0 013.2-5.3c1.4-1.8 2.7-2.2 5-2.3 3.8-.1 5.3-1.6 8.7-2.6a6.2 6.2 0 011.5-.2c1.9 0 3.4 1 3 3.5-.3 2.2-1.8 3.8-3 5.4l-26 34.6a66.1 66.1 0 01-15.6 6.8 125.6 125.6 0 00-49 0A66.2 66.2 0 0184.7 71zm40.2 242.7c-62.5 0-113.5-51-113.5-113.4 0-54 38-99.3 88.7-110.7a98.7 98.7 0 0024.8 3.1 99 99 0 0024.8-3.1 113.7 113.7 0 0188.6 110.7c0 62.4-50.9 113.4-113.4 113.4z'/%3E%3Cpath d='M124.8 313.7c62.5 0 113.5-51 113.5-113.4s-51-113.5-113.5-113.5-113.5 51-113.5 113.5 51 113.4 113.5 113.4z'/%3E%3Ccircle class='b' cx='160.5' cy='202.3' r='109.6' transform='rotate(-20 137 302.4)'/%3E%3Cpath d='M165 71l25.9-34.6c1.2-1.6 2.6-3.3 3-5.4.4-3.2-2-4-4.5-3.3-3.4 1-5 2.4-8.8 2.6-2.2 0-3.5.5-5 2.2a19.7 19.7 0 00-3 5.3 4.3 4.3 0 001.3 4.7c0 2.1-1.9 7.6-5 6.3-3.7-1.6-7.5-3-11.4-4.3-1.6-.5-1.6-1.3-1.3-3a15 15 0 011-3.2c3.2 1.3 4.2 1 6-2l1.7-3.2c1.1-2 1.2-3.6-1-4.8-.8-.5-1-.6-.8-1l2.1-4.5c.7-1.7.7-3.3-2-4.4-1.5-.5-2.8-1.3-4.3-1.7-2.9-.9-4 .4-4.7 3l-.7 2c-.7 1.6-.4 2.6-1.8 2.2-3-.6-3.4 1.2-4 3.3l-.9 3.2c-1 3.4 0 4.6 3.3 5.3-.6 2.6-1.5 6.4-5 5.7a105 105 0 00-12.4-1.6c-3.6-.8-4.1-4.5-4.1-7.6 3.5.2 4.3-1 4.6-4l.4-3.5c.2-2.3.7-4.7-2.6-5.2-.6 0-1 0-1-.5l.2-3.6c0-2.9 0-3.8-3.3-3.9H122.6c-3.3.1-3.3 1-3.3 3.9l.2 3.6c0 .6-.4.4-1 .5-3.3.5-2.8 3-2.5 5.2l.3 3.4c.3 3.2 1.1 4.3 4.7 4.1 0 3.1-.6 6.8-4.2 7.6a105.2 105.2 0 00-12.3 1.6c-3.6.7-4.5-3-5.1-5.7 3.2-.7 4.2-1.9 3.3-5.3l-.9-3.2c-.5-2.1-1-3.9-4-3.3-1.3.4-1-.5-1.8-2.2l-.7-2c-.8-2.6-1.8-3.8-4.7-3l-4.2 1.7c-2.7 1.1-2.7 2.7-2 4.4.5 1.6 1.4 3 2 4.5.2.5 0 .5-.7 1-2.3 1.2-2.2 2.8-1.1 4.8l1.8 3.2c1.8 3 2.8 3.3 6 2a14.4 14.4 0 011 3.2c.2 1.7.2 2.5-1.4 3-3.9 1.3-7.6 2.7-11.4 4.3-3 1.3-4.8-4.2-5-6.3a4.3 4.3 0 001.4-4.7 19.4 19.4 0 00-3.2-5.3c-1.3-1.7-2.7-2.2-4.9-2.2-3.9-.2-5.4-1.7-8.7-2.6-2.5-.7-5 .1-4.5 3.3.3 2.1 1.7 3.8 3 5.4l26 34.6a83.4 83.4 0 0080.3 0z'/%3E%3Cpath d='M124.8 84.3c-15 0-30-3.6-41.7-10.7l-.5-.3-26.3-35-.5-.8a13 13 0 01-3-6 5.8 5.8 0 011.7-5.5 7 7 0 016.6-1.1 27.4 27.4 0 013.4 1.2 11.3 11.3 0 004.6 1.2 8.6 8.6 0 017.2 3.4A22 22 0 0180 37a7 7 0 01-1.1 6.4 8.3 8.3 0 001 2.5c3.4-1.5 6.7-2.7 10-3.8-2.6.2-4.3-1.2-6-4.3l-2-3.2a7.1 7.1 0 01-.8-5.4 5.4 5.4 0 011.7-2.5 27 27 0 01-1.2-2.7c-1.4-3.7 0-6.7 3.7-8.3l1.7-.6a26.8 26.8 0 012.8-1.2c4.2-1.2 7 .4 8.4 4.9l.3.6.4 1.2a2.1 2.1 0 010 .2c4.4 0 5.4 3.9 5.9 5.7l.8 3.2c.5 1.5 1 3.9-.3 5.9a5.8 5.8 0 01-2.2 2 1.8 1.8 0 00.6.9 1 1 0 00.3 0 102.8 102.8 0 0112.4-1.6c.4-.2 1-.5 1.3-2-3.3-1-4-3.8-4.4-6.4l-.3-4c-.2-1.7-.7-6 3.5-7.5v-.2V15.4c0-3.6.4-6.7 6.1-6.9a39.6 39.6 0 014.5 0c5.7.2 6.1 3.3 6.1 6.8v1.5a1.4 1.4 0 000 .2c4.1 1.5 3.6 5.8 3.5 7.5v.5l-.4 3.4c-.3 2.7-1.1 5.6-4.4 6.5.3 1.5 1 1.8 1.3 2a102.5 102.5 0 0112.5 1.6 1 1 0 00.3 0c.1 0 .3-.3.5-1a5.7 5.7 0 01-2.1-2c-1.3-2-.8-4.3-.4-5.9l.9-3.1c.4-1.8 1.5-5.7 5.8-5.7v-.2l.5-1.2.2-.6c1.4-4.5 4.2-6.1 8.4-4.9a25.5 25.5 0 012.8 1.1l1.6.7c3.9 1.5 5.2 4.6 3.8 8.3a27 27 0 01-1.2 2.7 5.4 5.4 0 011.7 2.5 7 7 0 01-.9 5.4l-1.8 3.2c-1.8 3.1-3.6 4.4-6 4.3 3.2 1 6.5 2.3 10 3.7a8.3 8.3 0 001-2.4 7 7 0 01-1.1-6.5 21.3 21.3 0 013.6-6.2 8.6 8.6 0 017.2-3.4 11.3 11.3 0 004.7-1.2 27.6 27.6 0 013.4-1.3A7 7 0 01195 26a5.8 5.8 0 011.7 5.5 13 13 0 01-3 6l-.5.8-26.3 35-.5.3a81.3 81.3 0 01-41.7 10.7zM79.5 46zm90.6 0zm-53.6-27.1zm16.6-.1z'/%3E%3Cpath class='c' d='M189.5 33.4c.2-.2.5-.6 0 0zM189.5 33.4c-.2.2-.1.1 0 0zM60.1 33.4c-.1-.2-.5-.6 0 0zM60.1 33.4c.2.2.1.1 0 0z'/%3E%3Cpath class='c' d='M124.8 14.3c2.8 0 2.6-.1 2.5 2.3v2.5a3 3 0 002.2 3c1 .3 1.5-.2 1.4 1.2v.5l-.4 3.8c-.1 1.5-.3 1.8-2.2 1.6h-2.5v1.4c-.1 4.9 1 11.7 7.2 12.1a103.3 103.3 0 0111.9 1.6c5.8 1.1 7.6-5 8.5-9.4l.3-1.3c-.8-.3-2-.4-2.9-.8s-1.3-.8-1-1.8l1-3.5c.3-1.1.2-.9 1.3-.6 1.5.3 2.6.3 3.5-2l.8-2.3.7-1.8c.4-1.3.3-1.6 1.8-1l3.4 1.4c.7.3.2 1 0 1.5a10.7 10.7 0 01-.6 1.5l-1.3 3c-.7 2.4.3 2.8 1.8 3.4 1 .4 1 .2.5 1.2l-2 3.2c-.7 1.2-1.6 1-2.6.6l-2.3-1-.6 1.2a19.5 19.5 0 00-1.8 5.3c-.5 3.1 0 5.2 2.9 6a115.8 115.8 0 0112.8 4.9l.7.1c4.2-.4 6.4-5.3 7-9 .3-2.3-2-2.9-1.5-4.5a15.2 15.2 0 012.4-4 3 3 0 013-1.5c4.1-.2 6-1.7 9.4-2.7 2.3-.7.2 1.8-.5 2.7a1.6 1.6 0 010 .2l-26.4 35.2a89.3 89.3 0 00-76.8 0L60.1 33.4a.9.9 0 01-.1-.2c-.7-.9-2.8-3.4-.5-2.7 3.5 1 5.3 2.5 9.4 2.7a3 3 0 013 1.5 15.7 15.7 0 012.4 4c.5 1.6-1.8 2.2-1.4 4.5.5 3.7 2.8 8.6 7 9l.7-.1a115.8 115.8 0 0112.7-5c2.9-.8 3.4-2.9 3-6a19.5 19.5 0 00-1.9-5.2l-.6-1.2-2.3 1c-1 .4-1.8.6-2.5-.7L87.2 32c-.5-1-.5-.8.5-1.2 1.5-.6 2.5-1 1.8-3.5l-1.3-3a10.7 10.7 0 01-.7-1.4c-.2-.4-.7-1.2 0-1.5l3.5-1.5c1.5-.5 1.3-.2 1.8 1l.6 1.9.9 2.4c.8 2.2 2 2.1 3.5 1.8 1-.2 1-.5 1.2.7l1 3.5c.3 1-.3 1.4-1 1.8s-2 .5-2.8.8l.3 1.2c.8 4.5 2.7 10.6 8.5 9.5a103 103 0 0111.9-1.6c6.2-.4 7.3-7.2 7.2-12.1v-1.5l-2.5.1c-1.9.2-2.1-.2-2.2-1.6l-.4-3.8v-.5c-.2-1.5.3-.9 1.3-1.2a3 3 0 002.3-3v-2.5c-.4-2.6-.6-2.4 2.2-2.4z'/%3E%3Ccircle class='a' cx='160.5' cy='202.3' r='89.5' transform='rotate(-45 140.2 244.3)'/%3E%3Cpath class='b' d='M34 236.4a86.6 86.6 0 01-2-18.5l41.2-97.6A87.6 87.6 0 0188 108.9zM215.7 162.4a85.8 85.8 0 012.4 17.9l-42.8 100.3a87.6 87.6 0 01-14.6 10.8zM189.8 129.2a82 82 0 016.8 7.6l-68.6 160c-2.7.2-5.4.4-8.3.4H118zM157.5 110.8a81 81 0 018.5 3.6L91 291.6a80.8 80.8 0 01-8.5-3.7zM128.9 105h1L58 272.8a85 85 0 01-6.8-7.7l68.4-159.6a89.5 89.5 0 019.2-.5z'/%3E%3Cpath d='M43 200.3l81.8-80.7 81.9 80.7-81.9 80.6L43 200.3z'/%3E%3Cpath class='c' d='M182.7 186.1l14.3 14.2-14.3 14.1v-28.3zM149.6 153.6l16.5 16.2v60.9L149.6 247v-21.7h.1c3.8-3 6.3-5.8 6.3-10.8v-43.1h-6.4zM133 234.3v29l-8.2 8.2-8.2-8.2v-29c2.7 1.2 5.5 2.1 8.2 3.3 2.7-1.2 5.5-2.2 8.3-3.3zM116.6 137.3l8.2-8.1 8.3 8.1v34h-16.5v-34zM83.5 169.8l16.5-16.2v17.8h-6.4v43c0 5 2.5 8 6.3 10.8l.1.2V247l-16.5-16.3zM52.7 200.3L67 186v28.3l-14.3-14.1z'/%3E%3Cpath class='b' d='M166.1 169.8l16.6 16.3v28.3L166 230.7v-60.9zM149.6 225.3V247L133 263.3v-29c1.6-.6 3.3-1.4 4.9-2.2a82.3 82.3 0 0011.6-6.8zM133 137.3l16.6 16.3v17.8H133v-34.1zM116.6 234.3v29L100 247v-21.7a83.5 83.5 0 0011.6 6.8c1.7.9 3.3 1.6 5 2.2zM100 153.6l16.6-16.3v34H100v-17.7zM67 186.1l16.5-16.3v60.9L67 214.4v-28.3z'/%3E%3C/svg%3E");
}

.table__cell {
  counter-reset: poker_item;
}

.poker-item {
  --poker-item-color: #b5012e;
  counter-reset: poker_card_prefix 11;
  font-weight: bold;
}

.poker-item__top {
  display: grid;
  grid-auto-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.poker-item__top:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: .75rem;
  border-radius: 10px;
  counter-increment: poker_item;
  content: counter(poker_item);
  background-color: var(--poker-item-color);
  width: 14px;
  height: 14px;
  color: #fff;
}

.poker-item__top i {
  display: inline-block;
  line-height: 1;
  font-style: normal;
}

.poker-item__color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.poker-item__header {
  display: grid;
  grid-auto-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  margin-bottom: 8px;
}

.poker-item__header .card-wrap:nth-child(6)::before {
  content: "11:";
  color: var(--poker-item-color);
  padding-left: 15px;
  width: 40px;
  font-size: 14px;
}

.poker-item__body {
  display: inline-grid;
  grid-template-columns: repeat(6, auto);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  border: 1px solid #aaa;
  width: auto;
  padding-left: 2px;
  padding-right: 2px;
  opacity: .5;
}

.poker-item__body .card-wrap:nth-child(odd)::before {
  color: var(--poker-item-color);
  counter-increment: poker_card_prefix;
  content: counter(poker_card_prefix) ":";
  width: 32px;
  font-size: 12px;
}

.poker-item__body .card {
  width: 16px;
  font-size: 8px;
  grid-template-rows: 8px 14px;
}

.poker-item:nth-of-type(2) {
  --poker-item-color: #078205;
  --blue-color: #05319a;
  counter-reset: poker_card_prefix 21;
}

.poker-item:nth-of-type(2) .poker-item__header .card-wrap:nth-child(6)::before {
  content: "21:";
}

.poker-item:nth-of-type(3) {
  --poker-item-color: #05319a;
  padding-bottom: 20px;
  counter-reset: poker_card_prefix 31;
}

.poker-item:nth-of-type(3) .poker-item__header .card-wrap:nth-child(6)::before {
  content: "31:";
}

.card {
  width: 20px;
  display: grid;
  grid-template-rows: 10px 16px;
  padding: 0px 2px 0 2px;
  font-size: 10px;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 3px;
}

.card-wrap {
  display: inline-grid;
  grid-auto-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-wrap::before {
  line-height: 1;
  width: 40px;
  text-align: center;
}

.card__suit {
  font-size: 1.5em;
}

.card__name {
  text-align: right;
}

.sicbo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .25rem;
  --dice-1: url("data:image/svg+xml,%3Csvg id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23820504;%7D .st1%7Bfill:%23830504;%7D .st2%7Bfill:%23840605;%7D .st3%7Bfill:%23850605;%7D .st4%7Bfill:%23860605;%7D .st5%7Bfill:%23870605;%7D .st6%7Bfill:%23880706;%7D .st7%7Bfill:%23890706;%7D .st8%7Bfill:%238A0706;%7D .st9%7Bfill:%238B0807;%7D .st10%7Bfill:%238C0807;%7D .st11%7Bfill:%238D0807;%7D .st12%7Bfill:%238E0808;%7D .st13%7Bfill:%238F0908;%7D .st14%7Bfill:%23900908;%7D .st15%7Bfill:%23910908;%7D .st16%7Bfill:%23920A09;%7D .st17%7Bfill:%23930A09;%7D .st18%7Bfill:%23940A09;%7D .st19%7Bfill:%23950A0A;%7D .st20%7Bfill:%23960B0A;%7D .st21%7Bfill:%23970B0A;%7D .st22%7Bfill:%23980B0B;%7D .st23%7Bfill:%23990C0B;%7D .st24%7Bfill:%239A0C0B;%7D .st25%7Bfill:%239B0C0B;%7D .st26%7Bfill:%239C0C0C;%7D .st27%7Bfill:%239D0D0C;%7D .st28%7Bfill:%239E0D0C;%7D .st29%7Bfill:%239F0D0D;%7D .st30%7Bfill:%23A00E0D;%7D .st31%7Bfill:%23A10E0D;%7D .st32%7Bfill:%23A20E0E;%7D .st33%7Bfill:%23A30E0E;%7D .st34%7Bfill:%23A30F0E;%7D .st35%7Bfill:%23A40F0E;%7D .st36%7Bfill:%23A50F0F;%7D .st37%7Bfill:%23A60F0F;%7D .st38%7Bfill:%23A7100F;%7D .st39%7Bfill:%23A81010;%7D .st40%7Bfill:%23A91010;%7D .st41%7Bfill:%23AA1110;%7D .st42%7Bfill:%23AB1111;%7D .st43%7Bfill:%23AC1111;%7D .st44%7Bfill:%23AD1111;%7D .st45%7Bfill:%23AE1211;%7D .st46%7Bfill:%23AF1212;%7D .st47%7Bfill:%23B01212;%7D .st48%7Bfill:%23B11312;%7D .st49%7Bfill:%23B21313;%7D .st50%7Bfill:%23B31313;%7D .st51%7Bfill:%23B41313;%7D .st52%7Bfill:%23B51414;%7D .st53%7Bfill:%23B61414;%7D .st54%7Bfill:%23B71414;%7D .st55%7Bfill:%23B81514;%7D .st56%7Bfill:%23B91515;%7D .st57%7Bfill:%23BA1515;%7D .st58%7Bfill:%23BB1515;%7D .st59%7Bfill:%23BC1616;%7D .st60%7Bfill:%23BD1616;%7D .st61%7Bfill:%23BE1616;%7D .st62%7Bfill:%23BF1717;%7D .st63%7Bfill:%23C01717;%7D .st64%7Bfill:%23C11717;%7D .st65%7Bfill:%23C21717;%7D .st66%7Bfill:%23C31818;%7D .st67%7Bfill:%23C41818;%7D .st68%7Bfill:url(%23SVGID_1_);%7D .st69%7Bfill:url(%23SVGID_2_);%7D .st70%7Bopacity:0.51;fill:url(%23SVGID_3_);%7D .st71%7Bopacity:0.4;%7D .st72%7Bfill:%23EFEFEF;%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st1' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st2' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st3' d='M16,19.9H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C19.9,18.2,18.2,19.9,16,19.9z'/%3E%3Cpath class='st4' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st5' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st6' d='M15.9,19.9H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st7' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st8' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st9' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.8,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st10' d='M15.9,19.8H4.1c-2.2,0-3.9-1.7-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st11' d='M15.8,19.7H4.2c-2.2,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st12' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.1,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st13' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st14' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,17.9,17.9,19.7,15.8,19.7z'/%3E%3Cpath class='st15' d='M15.8,19.6H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st16' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st17' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st18' d='M15.7,19.6H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.7,19.6z'/%3E%3Cpath class='st19' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st20' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st21' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st22' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st23' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st24' d='M15.7,19.4H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.7,19.4z'/%3E%3Cpath class='st25' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st26' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st27' d='M15.6,19.4H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st28' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.7,17.7,19.3,15.6,19.3z'/%3E%3Cpath class='st29' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st30' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.1c2.1,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st31' d='M15.6,19.3H4.4c-2,0-3.7-1.7-3.7-3.7V4.4c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st32' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st33' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st34' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st35' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st36' d='M15.5,19.1h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st37' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st38' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st39' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.5,19.1,15.4,19.1z'/%3E%3Cpath class='st40' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.4,19.1,15.4,19.1z'/%3E%3Cpath class='st41' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st42' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st43' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st44' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st45' d='M15.4,18.9H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.4,18.9z'/%3E%3Cpath class='st46' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st47' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st48' d='M15.3,18.9H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st49' d='M15.3,18.8H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.3,17.3,18.8,15.3,18.8z'/%3E%3Cpath class='st50' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.6c1.9,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st51' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st52' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st53' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st54' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st55' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st56' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st57' d='M15.2,18.6H4.8c-1.9,0-3.5-1.5-3.5-3.5V4.8c0-1.9,1.5-3.5,3.5-3.5h10.4c1.9,0,3.5,1.5,3.5,3.5v10.4 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st58' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.5V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st59' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.4V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st60' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st61' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st62' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st63' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st64' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st65' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.2c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.5,16.9,16.9,18.5,15.1,18.5z'/%3E%3Cpath class='st66' d='M15.1,18.4H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.1c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.4,16.9,16.9,18.4,15.1,18.4z'/%3E%3Cpath class='st67' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3C/g%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='-42.0575' y1='53.5165' x2='-25.074' y2='53.5165' gradientTransform='matrix(1 0 0 1 43.5166 -43.5166)'%3E%3Cstop offset='1.241987e-03' style='stop-color:%23C90504'/%3E%3Cstop offset='1' style='stop-color:%238B0000'/%3E%3C/linearGradient%3E%3Cpath class='st68' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_2_' cx='-225.2383' cy='94.3411' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st69' d='M12,9.9c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C11.1,7.9,12,8.8,12,9.9z'/%3E%3C/g%3E%3C/g%3E%3ClinearGradient id='SVGID_3_' gradientUnits='userSpaceOnUse' x1='17.8333' y1='10' x2='18.8333' y2='10'%3E%3Cstop offset='0.305' style='stop-color:%23A30504'/%3E%3Cstop offset='0.4403' style='stop-color:%23B90504'/%3E%3Cstop offset='0.6015' style='stop-color:%23CB0504'/%3E%3Cstop offset='0.7694' style='stop-color:%23D60504'/%3E%3Cstop offset='0.9533' style='stop-color:%23DA0504'/%3E%3C/linearGradient%3E%3Cellipse class='st70' cx='18.3' cy='10' rx='0.5' ry='6'/%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -4.3051 7.7565)' class='st72' cx='10.7' cy='11' rx='1' ry='0.4'/%3E%3C/g%3E%3C/svg%3E%0A");
  --dice-2: url("data:image/svg+xml,%3Csvg id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23820504;%7D .st1%7Bfill:%23830504;%7D .st2%7Bfill:%23840605;%7D .st3%7Bfill:%23850605;%7D .st4%7Bfill:%23860605;%7D .st5%7Bfill:%23870605;%7D .st6%7Bfill:%23880706;%7D .st7%7Bfill:%23890706;%7D .st8%7Bfill:%238A0706;%7D .st9%7Bfill:%238B0807;%7D .st10%7Bfill:%238C0807;%7D .st11%7Bfill:%238D0807;%7D .st12%7Bfill:%238E0808;%7D .st13%7Bfill:%238F0908;%7D .st14%7Bfill:%23900908;%7D .st15%7Bfill:%23910908;%7D .st16%7Bfill:%23920A09;%7D .st17%7Bfill:%23930A09;%7D .st18%7Bfill:%23940A09;%7D .st19%7Bfill:%23950A0A;%7D .st20%7Bfill:%23960B0A;%7D .st21%7Bfill:%23970B0A;%7D .st22%7Bfill:%23980B0B;%7D .st23%7Bfill:%23990C0B;%7D .st24%7Bfill:%239A0C0B;%7D .st25%7Bfill:%239B0C0B;%7D .st26%7Bfill:%239C0C0C;%7D .st27%7Bfill:%239D0D0C;%7D .st28%7Bfill:%239E0D0C;%7D .st29%7Bfill:%239F0D0D;%7D .st30%7Bfill:%23A00E0D;%7D .st31%7Bfill:%23A10E0D;%7D .st32%7Bfill:%23A20E0E;%7D .st33%7Bfill:%23A30E0E;%7D .st34%7Bfill:%23A30F0E;%7D .st35%7Bfill:%23A40F0E;%7D .st36%7Bfill:%23A50F0F;%7D .st37%7Bfill:%23A60F0F;%7D .st38%7Bfill:%23A7100F;%7D .st39%7Bfill:%23A81010;%7D .st40%7Bfill:%23A91010;%7D .st41%7Bfill:%23AA1110;%7D .st42%7Bfill:%23AB1111;%7D .st43%7Bfill:%23AC1111;%7D .st44%7Bfill:%23AD1111;%7D .st45%7Bfill:%23AE1211;%7D .st46%7Bfill:%23AF1212;%7D .st47%7Bfill:%23B01212;%7D .st48%7Bfill:%23B11312;%7D .st49%7Bfill:%23B21313;%7D .st50%7Bfill:%23B31313;%7D .st51%7Bfill:%23B41313;%7D .st52%7Bfill:%23B51414;%7D .st53%7Bfill:%23B61414;%7D .st54%7Bfill:%23B71414;%7D .st55%7Bfill:%23B81514;%7D .st56%7Bfill:%23B91515;%7D .st57%7Bfill:%23BA1515;%7D .st58%7Bfill:%23BB1515;%7D .st59%7Bfill:%23BC1616;%7D .st60%7Bfill:%23BD1616;%7D .st61%7Bfill:%23BE1616;%7D .st62%7Bfill:%23BF1717;%7D .st63%7Bfill:%23C01717;%7D .st64%7Bfill:%23C11717;%7D .st65%7Bfill:%23C21717;%7D .st66%7Bfill:%23C31818;%7D .st67%7Bfill:%23C41818;%7D .st68%7Bfill:url(%23SVGID_1_);%7D .st69%7Bopacity:0.51;fill:url(%23SVGID_2_);%7D .st70%7Bfill:url(%23SVGID_3_);%7D .st71%7Bopacity:0.4;%7D .st72%7Bfill:%23EFEFEF;%7D .st73%7Bfill:url(%23SVGID_4_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st1' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st2' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st3' d='M16,19.9H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C19.9,18.2,18.2,19.9,16,19.9z'/%3E%3Cpath class='st4' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st5' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st6' d='M15.9,19.9H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st7' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st8' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st9' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.8,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st10' d='M15.9,19.8H4.1c-2.2,0-3.9-1.7-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st11' d='M15.8,19.7H4.2c-2.2,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st12' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.1,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st13' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st14' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,17.9,17.9,19.7,15.8,19.7z'/%3E%3Cpath class='st15' d='M15.8,19.6H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st16' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st17' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st18' d='M15.7,19.6H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.7,19.6z'/%3E%3Cpath class='st19' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st20' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st21' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st22' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st23' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st24' d='M15.7,19.4H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.7,19.4z'/%3E%3Cpath class='st25' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st26' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st27' d='M15.6,19.4H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st28' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.7,17.7,19.3,15.6,19.3z'/%3E%3Cpath class='st29' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st30' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.1c2.1,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st31' d='M15.6,19.3H4.4c-2,0-3.7-1.7-3.7-3.7V4.4c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st32' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st33' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st34' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st35' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st36' d='M15.5,19.1h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st37' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st38' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st39' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.5,19.1,15.4,19.1z'/%3E%3Cpath class='st40' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.4,19.1,15.4,19.1z'/%3E%3Cpath class='st41' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st42' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st43' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st44' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st45' d='M15.4,18.9H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.4,18.9z'/%3E%3Cpath class='st46' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st47' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st48' d='M15.3,18.9H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st49' d='M15.3,18.8H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.3,17.3,18.8,15.3,18.8z'/%3E%3Cpath class='st50' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.6c1.9,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st51' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st52' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st53' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st54' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st55' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st56' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st57' d='M15.2,18.6H4.8c-1.9,0-3.5-1.5-3.5-3.5V4.8c0-1.9,1.5-3.5,3.5-3.5h10.4c1.9,0,3.5,1.5,3.5,3.5v10.4 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st58' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.5V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st59' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.4V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st60' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st61' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st62' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st63' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st64' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st65' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.2c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.5,16.9,16.9,18.5,15.1,18.5z'/%3E%3Cpath class='st66' d='M15.1,18.4H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.1c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.4,16.9,16.9,18.4,15.1,18.4z'/%3E%3Cpath class='st67' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3C/g%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='-42.0575' y1='53.5165' x2='-25.074' y2='53.5165' gradientTransform='matrix(1 0 0 1 43.5166 -43.5166)'%3E%3Cstop offset='1.241987e-03' style='stop-color:%23C90504'/%3E%3Cstop offset='1' style='stop-color:%238B0000'/%3E%3C/linearGradient%3E%3Cpath class='st68' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='17.8333' y1='10' x2='18.8333' y2='10'%3E%3Cstop offset='0.305' style='stop-color:%23A30504'/%3E%3Cstop offset='0.4403' style='stop-color:%23B90504'/%3E%3Cstop offset='0.6015' style='stop-color:%23CB0504'/%3E%3Cstop offset='0.7694' style='stop-color:%23D60504'/%3E%3Cstop offset='0.9533' style='stop-color:%23DA0504'/%3E%3C/linearGradient%3E%3Cellipse class='st69' cx='18.3' cy='10' rx='0.5' ry='6'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_3_' cx='-219.5943' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st70' d='M16.7,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,3.2,16.7,4.1,16.7,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -0.9456 9.5562)' class='st72' cx='15.3' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_4_' cx='-230.9202' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st73' d='M7.3,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,12.5,7.3,13.4,7.3,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -7.6698 5.9395)' class='st72' cx='6' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  --dice-3: url("data:image/svg+xml,%3Csvg id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23820504;%7D .st1%7Bfill:%23830504;%7D .st2%7Bfill:%23840605;%7D .st3%7Bfill:%23850605;%7D .st4%7Bfill:%23860605;%7D .st5%7Bfill:%23870605;%7D .st6%7Bfill:%23880706;%7D .st7%7Bfill:%23890706;%7D .st8%7Bfill:%238A0706;%7D .st9%7Bfill:%238B0807;%7D .st10%7Bfill:%238C0807;%7D .st11%7Bfill:%238D0807;%7D .st12%7Bfill:%238E0808;%7D .st13%7Bfill:%238F0908;%7D .st14%7Bfill:%23900908;%7D .st15%7Bfill:%23910908;%7D .st16%7Bfill:%23920A09;%7D .st17%7Bfill:%23930A09;%7D .st18%7Bfill:%23940A09;%7D .st19%7Bfill:%23950A0A;%7D .st20%7Bfill:%23960B0A;%7D .st21%7Bfill:%23970B0A;%7D .st22%7Bfill:%23980B0B;%7D .st23%7Bfill:%23990C0B;%7D .st24%7Bfill:%239A0C0B;%7D .st25%7Bfill:%239B0C0B;%7D .st26%7Bfill:%239C0C0C;%7D .st27%7Bfill:%239D0D0C;%7D .st28%7Bfill:%239E0D0C;%7D .st29%7Bfill:%239F0D0D;%7D .st30%7Bfill:%23A00E0D;%7D .st31%7Bfill:%23A10E0D;%7D .st32%7Bfill:%23A20E0E;%7D .st33%7Bfill:%23A30E0E;%7D .st34%7Bfill:%23A30F0E;%7D .st35%7Bfill:%23A40F0E;%7D .st36%7Bfill:%23A50F0F;%7D .st37%7Bfill:%23A60F0F;%7D .st38%7Bfill:%23A7100F;%7D .st39%7Bfill:%23A81010;%7D .st40%7Bfill:%23A91010;%7D .st41%7Bfill:%23AA1110;%7D .st42%7Bfill:%23AB1111;%7D .st43%7Bfill:%23AC1111;%7D .st44%7Bfill:%23AD1111;%7D .st45%7Bfill:%23AE1211;%7D .st46%7Bfill:%23AF1212;%7D .st47%7Bfill:%23B01212;%7D .st48%7Bfill:%23B11312;%7D .st49%7Bfill:%23B21313;%7D .st50%7Bfill:%23B31313;%7D .st51%7Bfill:%23B41313;%7D .st52%7Bfill:%23B51414;%7D .st53%7Bfill:%23B61414;%7D .st54%7Bfill:%23B71414;%7D .st55%7Bfill:%23B81514;%7D .st56%7Bfill:%23B91515;%7D .st57%7Bfill:%23BA1515;%7D .st58%7Bfill:%23BB1515;%7D .st59%7Bfill:%23BC1616;%7D .st60%7Bfill:%23BD1616;%7D .st61%7Bfill:%23BE1616;%7D .st62%7Bfill:%23BF1717;%7D .st63%7Bfill:%23C01717;%7D .st64%7Bfill:%23C11717;%7D .st65%7Bfill:%23C21717;%7D .st66%7Bfill:%23C31818;%7D .st67%7Bfill:%23C41818;%7D .st68%7Bfill:url(%23SVGID_1_);%7D .st69%7Bopacity:0.51;fill:url(%23SVGID_2_);%7D .st70%7Bfill:url(%23SVGID_3_);%7D .st71%7Bopacity:0.4;%7D .st72%7Bfill:%23EFEFEF;%7D .st73%7Bfill:url(%23SVGID_4_);%7D .st74%7Bfill:url(%23SVGID_5_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st1' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st2' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st3' d='M16,19.9H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C19.9,18.2,18.2,19.9,16,19.9z'/%3E%3Cpath class='st4' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st5' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st6' d='M15.9,19.9H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st7' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st8' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st9' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.8,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st10' d='M15.9,19.8H4.1c-2.2,0-3.9-1.7-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st11' d='M15.8,19.7H4.2c-2.2,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st12' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.1,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st13' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st14' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,17.9,17.9,19.7,15.8,19.7z'/%3E%3Cpath class='st15' d='M15.8,19.6H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st16' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st17' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st18' d='M15.7,19.6H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.7,19.6z'/%3E%3Cpath class='st19' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st20' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st21' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st22' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st23' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st24' d='M15.7,19.4H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.7,19.4z'/%3E%3Cpath class='st25' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st26' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st27' d='M15.6,19.4H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st28' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.7,17.7,19.3,15.6,19.3z'/%3E%3Cpath class='st29' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st30' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.1c2.1,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st31' d='M15.6,19.3H4.4c-2,0-3.7-1.7-3.7-3.7V4.4c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st32' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st33' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st34' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st35' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st36' d='M15.5,19.1h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st37' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st38' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st39' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.5,19.1,15.4,19.1z'/%3E%3Cpath class='st40' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.4,19.1,15.4,19.1z'/%3E%3Cpath class='st41' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st42' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st43' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st44' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st45' d='M15.4,18.9H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.4,18.9z'/%3E%3Cpath class='st46' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st47' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st48' d='M15.3,18.9H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st49' d='M15.3,18.8H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.3,17.3,18.8,15.3,18.8z'/%3E%3Cpath class='st50' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.6c1.9,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st51' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st52' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st53' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st54' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st55' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st56' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st57' d='M15.2,18.6H4.8c-1.9,0-3.5-1.5-3.5-3.5V4.8c0-1.9,1.5-3.5,3.5-3.5h10.4c1.9,0,3.5,1.5,3.5,3.5v10.4 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st58' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.5V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st59' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.4V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st60' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st61' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st62' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st63' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st64' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st65' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.2c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.5,16.9,16.9,18.5,15.1,18.5z'/%3E%3Cpath class='st66' d='M15.1,18.4H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.1c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.4,16.9,16.9,18.4,15.1,18.4z'/%3E%3Cpath class='st67' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3C/g%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='-42.0575' y1='53.5165' x2='-25.074' y2='53.5165' gradientTransform='matrix(1 0 0 1 43.5166 -43.5166)'%3E%3Cstop offset='1.241987e-03' style='stop-color:%23C90504'/%3E%3Cstop offset='1' style='stop-color:%238B0000'/%3E%3C/linearGradient%3E%3Cpath class='st68' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='17.8333' y1='10' x2='18.8333' y2='10'%3E%3Cstop offset='0.305' style='stop-color:%23A30504'/%3E%3Cstop offset='0.4403' style='stop-color:%23B90504'/%3E%3Cstop offset='0.6015' style='stop-color:%23CB0504'/%3E%3Cstop offset='0.7694' style='stop-color:%23D60504'/%3E%3Cstop offset='0.9533' style='stop-color:%23DA0504'/%3E%3C/linearGradient%3E%3Cellipse class='st69' cx='18.3' cy='10' rx='0.5' ry='6'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_3_' cx='-225.2383' cy='94.3411' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st70' d='M12,9.9c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C11.1,7.9,12,8.8,12,9.9z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -4.3051 7.7565)' class='st72' cx='10.7' cy='11' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_4_' cx='-219.5943' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st73' d='M16.7,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,3.2,16.7,4.1,16.7,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -0.9456 9.5562)' class='st72' cx='15.3' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_5_' cx='-230.9202' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st74' d='M7.3,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,12.5,7.3,13.4,7.3,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -7.6698 5.9395)' class='st72' cx='6' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  --dice-4: url("data:image/svg+xml,%3Csvg id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23820504;%7D .st1%7Bfill:%23830504;%7D .st2%7Bfill:%23840605;%7D .st3%7Bfill:%23850605;%7D .st4%7Bfill:%23860605;%7D .st5%7Bfill:%23870605;%7D .st6%7Bfill:%23880706;%7D .st7%7Bfill:%23890706;%7D .st8%7Bfill:%238A0706;%7D .st9%7Bfill:%238B0807;%7D .st10%7Bfill:%238C0807;%7D .st11%7Bfill:%238D0807;%7D .st12%7Bfill:%238E0808;%7D .st13%7Bfill:%238F0908;%7D .st14%7Bfill:%23900908;%7D .st15%7Bfill:%23910908;%7D .st16%7Bfill:%23920A09;%7D .st17%7Bfill:%23930A09;%7D .st18%7Bfill:%23940A09;%7D .st19%7Bfill:%23950A0A;%7D .st20%7Bfill:%23960B0A;%7D .st21%7Bfill:%23970B0A;%7D .st22%7Bfill:%23980B0B;%7D .st23%7Bfill:%23990C0B;%7D .st24%7Bfill:%239A0C0B;%7D .st25%7Bfill:%239B0C0B;%7D .st26%7Bfill:%239C0C0C;%7D .st27%7Bfill:%239D0D0C;%7D .st28%7Bfill:%239E0D0C;%7D .st29%7Bfill:%239F0D0D;%7D .st30%7Bfill:%23A00E0D;%7D .st31%7Bfill:%23A10E0D;%7D .st32%7Bfill:%23A20E0E;%7D .st33%7Bfill:%23A30E0E;%7D .st34%7Bfill:%23A30F0E;%7D .st35%7Bfill:%23A40F0E;%7D .st36%7Bfill:%23A50F0F;%7D .st37%7Bfill:%23A60F0F;%7D .st38%7Bfill:%23A7100F;%7D .st39%7Bfill:%23A81010;%7D .st40%7Bfill:%23A91010;%7D .st41%7Bfill:%23AA1110;%7D .st42%7Bfill:%23AB1111;%7D .st43%7Bfill:%23AC1111;%7D .st44%7Bfill:%23AD1111;%7D .st45%7Bfill:%23AE1211;%7D .st46%7Bfill:%23AF1212;%7D .st47%7Bfill:%23B01212;%7D .st48%7Bfill:%23B11312;%7D .st49%7Bfill:%23B21313;%7D .st50%7Bfill:%23B31313;%7D .st51%7Bfill:%23B41313;%7D .st52%7Bfill:%23B51414;%7D .st53%7Bfill:%23B61414;%7D .st54%7Bfill:%23B71414;%7D .st55%7Bfill:%23B81514;%7D .st56%7Bfill:%23B91515;%7D .st57%7Bfill:%23BA1515;%7D .st58%7Bfill:%23BB1515;%7D .st59%7Bfill:%23BC1616;%7D .st60%7Bfill:%23BD1616;%7D .st61%7Bfill:%23BE1616;%7D .st62%7Bfill:%23BF1717;%7D .st63%7Bfill:%23C01717;%7D .st64%7Bfill:%23C11717;%7D .st65%7Bfill:%23C21717;%7D .st66%7Bfill:%23C31818;%7D .st67%7Bfill:%23C41818;%7D .st68%7Bfill:url(%23SVGID_1_);%7D .st69%7Bopacity:0.51;fill:url(%23SVGID_2_);%7D .st70%7Bfill:url(%23SVGID_3_);%7D .st71%7Bopacity:0.4;%7D .st72%7Bfill:%23EFEFEF;%7D .st73%7Bfill:url(%23SVGID_4_);%7D .st74%7Bfill:url(%23SVGID_5_);%7D .st75%7Bfill:url(%23SVGID_6_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st1' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st2' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st3' d='M16,19.9H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C19.9,18.2,18.2,19.9,16,19.9z'/%3E%3Cpath class='st4' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st5' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st6' d='M15.9,19.9H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st7' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st8' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st9' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.8,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st10' d='M15.9,19.8H4.1c-2.2,0-3.9-1.7-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st11' d='M15.8,19.7H4.2c-2.2,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st12' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.1,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st13' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st14' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,17.9,17.9,19.7,15.8,19.7z'/%3E%3Cpath class='st15' d='M15.8,19.6H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st16' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st17' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st18' d='M15.7,19.6H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.7,19.6z'/%3E%3Cpath class='st19' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st20' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st21' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st22' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st23' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st24' d='M15.7,19.4H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.7,19.4z'/%3E%3Cpath class='st25' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st26' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st27' d='M15.6,19.4H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st28' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.7,17.7,19.3,15.6,19.3z'/%3E%3Cpath class='st29' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st30' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.1c2.1,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st31' d='M15.6,19.3H4.4c-2,0-3.7-1.7-3.7-3.7V4.4c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st32' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st33' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st34' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st35' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st36' d='M15.5,19.1h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st37' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st38' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st39' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.5,19.1,15.4,19.1z'/%3E%3Cpath class='st40' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.4,19.1,15.4,19.1z'/%3E%3Cpath class='st41' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st42' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st43' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st44' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st45' d='M15.4,18.9H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.4,18.9z'/%3E%3Cpath class='st46' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st47' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st48' d='M15.3,18.9H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st49' d='M15.3,18.8H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.3,17.3,18.8,15.3,18.8z'/%3E%3Cpath class='st50' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.6c1.9,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st51' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st52' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st53' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st54' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st55' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st56' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st57' d='M15.2,18.6H4.8c-1.9,0-3.5-1.5-3.5-3.5V4.8c0-1.9,1.5-3.5,3.5-3.5h10.4c1.9,0,3.5,1.5,3.5,3.5v10.4 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st58' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.5V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st59' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.4V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st60' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st61' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st62' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st63' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st64' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st65' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.2c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.5,16.9,16.9,18.5,15.1,18.5z'/%3E%3Cpath class='st66' d='M15.1,18.4H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.1c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.4,16.9,16.9,18.4,15.1,18.4z'/%3E%3Cpath class='st67' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3C/g%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='-42.0575' y1='53.5165' x2='-25.074' y2='53.5165' gradientTransform='matrix(1 0 0 1 43.5166 -43.5166)'%3E%3Cstop offset='1.241987e-03' style='stop-color:%23C90504'/%3E%3Cstop offset='1' style='stop-color:%238B0000'/%3E%3C/linearGradient%3E%3Cpath class='st68' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='17.8333' y1='10' x2='18.8333' y2='10'%3E%3Cstop offset='0.305' style='stop-color:%23A30504'/%3E%3Cstop offset='0.4403' style='stop-color:%23B90504'/%3E%3Cstop offset='0.6015' style='stop-color:%23CB0504'/%3E%3Cstop offset='0.7694' style='stop-color:%23D60504'/%3E%3Cstop offset='0.9533' style='stop-color:%23DA0504'/%3E%3C/linearGradient%3E%3Cellipse class='st69' cx='18.3' cy='10' rx='0.5' ry='6'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_3_' cx='-219.5943' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st70' d='M16.7,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,3.2,16.7,4.1,16.7,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -0.9456 9.5562)' class='st72' cx='15.3' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_4_' cx='-230.9202' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st73' d='M7.3,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,3.2,7.3,4.1,7.3,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -2.5106 4.3798)' class='st72' cx='6' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_5_' cx='-219.5943' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st74' d='M16.7,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,12.5,16.7,13.4,16.7,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -6.1048 11.116)' class='st72' cx='15.3' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_6_' cx='-230.9202' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st75' d='M7.3,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,12.5,7.3,13.4,7.3,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -7.6698 5.9395)' class='st72' cx='6' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  --dice-5: url("data:image/svg+xml,%3Csvg id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23820504;%7D .st1%7Bfill:%23830504;%7D .st2%7Bfill:%23840605;%7D .st3%7Bfill:%23850605;%7D .st4%7Bfill:%23860605;%7D .st5%7Bfill:%23870605;%7D .st6%7Bfill:%23880706;%7D .st7%7Bfill:%23890706;%7D .st8%7Bfill:%238A0706;%7D .st9%7Bfill:%238B0807;%7D .st10%7Bfill:%238C0807;%7D .st11%7Bfill:%238D0807;%7D .st12%7Bfill:%238E0808;%7D .st13%7Bfill:%238F0908;%7D .st14%7Bfill:%23900908;%7D .st15%7Bfill:%23910908;%7D .st16%7Bfill:%23920A09;%7D .st17%7Bfill:%23930A09;%7D .st18%7Bfill:%23940A09;%7D .st19%7Bfill:%23950A0A;%7D .st20%7Bfill:%23960B0A;%7D .st21%7Bfill:%23970B0A;%7D .st22%7Bfill:%23980B0B;%7D .st23%7Bfill:%23990C0B;%7D .st24%7Bfill:%239A0C0B;%7D .st25%7Bfill:%239B0C0B;%7D .st26%7Bfill:%239C0C0C;%7D .st27%7Bfill:%239D0D0C;%7D .st28%7Bfill:%239E0D0C;%7D .st29%7Bfill:%239F0D0D;%7D .st30%7Bfill:%23A00E0D;%7D .st31%7Bfill:%23A10E0D;%7D .st32%7Bfill:%23A20E0E;%7D .st33%7Bfill:%23A30E0E;%7D .st34%7Bfill:%23A30F0E;%7D .st35%7Bfill:%23A40F0E;%7D .st36%7Bfill:%23A50F0F;%7D .st37%7Bfill:%23A60F0F;%7D .st38%7Bfill:%23A7100F;%7D .st39%7Bfill:%23A81010;%7D .st40%7Bfill:%23A91010;%7D .st41%7Bfill:%23AA1110;%7D .st42%7Bfill:%23AB1111;%7D .st43%7Bfill:%23AC1111;%7D .st44%7Bfill:%23AD1111;%7D .st45%7Bfill:%23AE1211;%7D .st46%7Bfill:%23AF1212;%7D .st47%7Bfill:%23B01212;%7D .st48%7Bfill:%23B11312;%7D .st49%7Bfill:%23B21313;%7D .st50%7Bfill:%23B31313;%7D .st51%7Bfill:%23B41313;%7D .st52%7Bfill:%23B51414;%7D .st53%7Bfill:%23B61414;%7D .st54%7Bfill:%23B71414;%7D .st55%7Bfill:%23B81514;%7D .st56%7Bfill:%23B91515;%7D .st57%7Bfill:%23BA1515;%7D .st58%7Bfill:%23BB1515;%7D .st59%7Bfill:%23BC1616;%7D .st60%7Bfill:%23BD1616;%7D .st61%7Bfill:%23BE1616;%7D .st62%7Bfill:%23BF1717;%7D .st63%7Bfill:%23C01717;%7D .st64%7Bfill:%23C11717;%7D .st65%7Bfill:%23C21717;%7D .st66%7Bfill:%23C31818;%7D .st67%7Bfill:%23C41818;%7D .st68%7Bfill:url(%23SVGID_1_);%7D .st69%7Bopacity:0.51;fill:url(%23SVGID_2_);%7D .st70%7Bfill:url(%23SVGID_3_);%7D .st71%7Bopacity:0.4;%7D .st72%7Bfill:%23EFEFEF;%7D .st73%7Bfill:url(%23SVGID_4_);%7D .st74%7Bfill:url(%23SVGID_5_);%7D .st75%7Bfill:url(%23SVGID_6_);%7D .st76%7Bfill:url(%23SVGID_7_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st1' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st2' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st3' d='M16,19.9H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C19.9,18.2,18.2,19.9,16,19.9z'/%3E%3Cpath class='st4' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st5' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st6' d='M15.9,19.9H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st7' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st8' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st9' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.8,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st10' d='M15.9,19.8H4.1c-2.2,0-3.9-1.7-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st11' d='M15.8,19.7H4.2c-2.2,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st12' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.1,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st13' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st14' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,17.9,17.9,19.7,15.8,19.7z'/%3E%3Cpath class='st15' d='M15.8,19.6H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st16' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st17' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st18' d='M15.7,19.6H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.7,19.6z'/%3E%3Cpath class='st19' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st20' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st21' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st22' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st23' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st24' d='M15.7,19.4H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.7,19.4z'/%3E%3Cpath class='st25' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st26' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st27' d='M15.6,19.4H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st28' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.7,17.7,19.3,15.6,19.3z'/%3E%3Cpath class='st29' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st30' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.1c2.1,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st31' d='M15.6,19.3H4.4c-2,0-3.7-1.7-3.7-3.7V4.4c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st32' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st33' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st34' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st35' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st36' d='M15.5,19.1h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st37' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st38' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st39' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.5,19.1,15.4,19.1z'/%3E%3Cpath class='st40' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.4,19.1,15.4,19.1z'/%3E%3Cpath class='st41' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st42' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st43' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st44' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st45' d='M15.4,18.9H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.4,18.9z'/%3E%3Cpath class='st46' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st47' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st48' d='M15.3,18.9H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st49' d='M15.3,18.8H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.3,17.3,18.8,15.3,18.8z'/%3E%3Cpath class='st50' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.6c1.9,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st51' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st52' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st53' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st54' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st55' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st56' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st57' d='M15.2,18.6H4.8c-1.9,0-3.5-1.5-3.5-3.5V4.8c0-1.9,1.5-3.5,3.5-3.5h10.4c1.9,0,3.5,1.5,3.5,3.5v10.4 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st58' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.5V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st59' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.4V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st60' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st61' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st62' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st63' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st64' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st65' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.2c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.5,16.9,16.9,18.5,15.1,18.5z'/%3E%3Cpath class='st66' d='M15.1,18.4H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.1c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.4,16.9,16.9,18.4,15.1,18.4z'/%3E%3Cpath class='st67' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3C/g%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='-42.0575' y1='53.5165' x2='-25.074' y2='53.5165' gradientTransform='matrix(1 0 0 1 43.5166 -43.5166)'%3E%3Cstop offset='1.241987e-03' style='stop-color:%23C90504'/%3E%3Cstop offset='1' style='stop-color:%238B0000'/%3E%3C/linearGradient%3E%3Cpath class='st68' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='17.8333' y1='10' x2='18.8333' y2='10'%3E%3Cstop offset='0.305' style='stop-color:%23A30504'/%3E%3Cstop offset='0.4403' style='stop-color:%23B90504'/%3E%3Cstop offset='0.6015' style='stop-color:%23CB0504'/%3E%3Cstop offset='0.7694' style='stop-color:%23D60504'/%3E%3Cstop offset='0.9533' style='stop-color:%23DA0504'/%3E%3C/linearGradient%3E%3Cellipse class='st69' cx='18.3' cy='10' rx='0.5' ry='6'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_3_' cx='-225.2383' cy='94.3411' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st70' d='M12,9.9c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C11.1,7.9,12,8.8,12,9.9z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -4.3051 7.7565)' class='st72' cx='10.7' cy='11' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_4_' cx='-219.5943' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st73' d='M16.7,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,3.2,16.7,4.1,16.7,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -0.9456 9.5562)' class='st72' cx='15.3' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_5_' cx='-230.9202' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st74' d='M7.3,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,3.2,7.3,4.1,7.3,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -2.5106 4.3798)' class='st72' cx='6' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_6_' cx='-219.5943' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st75' d='M16.7,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,12.5,16.7,13.4,16.7,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -6.1048 11.116)' class='st72' cx='15.3' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_7_' cx='-230.9202' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st76' d='M7.3,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,12.5,7.3,13.4,7.3,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -7.6698 5.9395)' class='st72' cx='6' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  --dice-6: url("data:image/svg+xml,%3Csvg id='Слой_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 20 20' style='enable-background:new 0 0 20 20;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23820504;%7D .st1%7Bfill:%23830504;%7D .st2%7Bfill:%23840605;%7D .st3%7Bfill:%23850605;%7D .st4%7Bfill:%23860605;%7D .st5%7Bfill:%23870605;%7D .st6%7Bfill:%23880706;%7D .st7%7Bfill:%23890706;%7D .st8%7Bfill:%238A0706;%7D .st9%7Bfill:%238B0807;%7D .st10%7Bfill:%238C0807;%7D .st11%7Bfill:%238D0807;%7D .st12%7Bfill:%238E0808;%7D .st13%7Bfill:%238F0908;%7D .st14%7Bfill:%23900908;%7D .st15%7Bfill:%23910908;%7D .st16%7Bfill:%23920A09;%7D .st17%7Bfill:%23930A09;%7D .st18%7Bfill:%23940A09;%7D .st19%7Bfill:%23950A0A;%7D .st20%7Bfill:%23960B0A;%7D .st21%7Bfill:%23970B0A;%7D .st22%7Bfill:%23980B0B;%7D .st23%7Bfill:%23990C0B;%7D .st24%7Bfill:%239A0C0B;%7D .st25%7Bfill:%239B0C0B;%7D .st26%7Bfill:%239C0C0C;%7D .st27%7Bfill:%239D0D0C;%7D .st28%7Bfill:%239E0D0C;%7D .st29%7Bfill:%239F0D0D;%7D .st30%7Bfill:%23A00E0D;%7D .st31%7Bfill:%23A10E0D;%7D .st32%7Bfill:%23A20E0E;%7D .st33%7Bfill:%23A30E0E;%7D .st34%7Bfill:%23A30F0E;%7D .st35%7Bfill:%23A40F0E;%7D .st36%7Bfill:%23A50F0F;%7D .st37%7Bfill:%23A60F0F;%7D .st38%7Bfill:%23A7100F;%7D .st39%7Bfill:%23A81010;%7D .st40%7Bfill:%23A91010;%7D .st41%7Bfill:%23AA1110;%7D .st42%7Bfill:%23AB1111;%7D .st43%7Bfill:%23AC1111;%7D .st44%7Bfill:%23AD1111;%7D .st45%7Bfill:%23AE1211;%7D .st46%7Bfill:%23AF1212;%7D .st47%7Bfill:%23B01212;%7D .st48%7Bfill:%23B11312;%7D .st49%7Bfill:%23B21313;%7D .st50%7Bfill:%23B31313;%7D .st51%7Bfill:%23B41313;%7D .st52%7Bfill:%23B51414;%7D .st53%7Bfill:%23B61414;%7D .st54%7Bfill:%23B71414;%7D .st55%7Bfill:%23B81514;%7D .st56%7Bfill:%23B91515;%7D .st57%7Bfill:%23BA1515;%7D .st58%7Bfill:%23BB1515;%7D .st59%7Bfill:%23BC1616;%7D .st60%7Bfill:%23BD1616;%7D .st61%7Bfill:%23BE1616;%7D .st62%7Bfill:%23BF1717;%7D .st63%7Bfill:%23C01717;%7D .st64%7Bfill:%23C11717;%7D .st65%7Bfill:%23C21717;%7D .st66%7Bfill:%23C31818;%7D .st67%7Bfill:%23C41818;%7D .st68%7Bfill:url(%23SVGID_1_);%7D .st69%7Bopacity:0.51;fill:url(%23SVGID_2_);%7D .st70%7Bfill:url(%23SVGID_3_);%7D .st71%7Bopacity:0.4;%7D .st72%7Bfill:%23EFEFEF;%7D .st73%7Bfill:url(%23SVGID_4_);%7D .st74%7Bfill:url(%23SVGID_5_);%7D .st75%7Bfill:url(%23SVGID_6_);%7D .st76%7Bfill:url(%23SVGID_7_);%7D .st77%7Bfill:url(%23SVGID_8_);%7D%0A%3C/style%3E%3Cg%3E%3Cg%3E%3Cpath class='st0' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st1' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4h12c2.2,0,4,1.8,4,4v12C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st2' d='M16,20H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C20,18.2,18.2,20,16,20z'/%3E%3Cpath class='st3' d='M16,19.9H4c-2.2,0-4-1.8-4-4V4c0-2.2,1.8-4,4-4H16c2.2,0,4,1.8,4,4V16C19.9,18.2,18.2,19.9,16,19.9z'/%3E%3Cpath class='st4' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st5' d='M15.9,19.9H4.1c-2.2,0-4-1.8-4-4V4.1c0-2.2,1.8-4,4-4h11.9c2.2,0,4,1.8,4,4v11.9 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st6' d='M15.9,19.9H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.9,18.1,18.1,19.9,15.9,19.9z'/%3E%3Cpath class='st7' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st8' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1c0-2.2,1.8-3.9,3.9-3.9h11.8c2.2,0,3.9,1.8,3.9,3.9v11.8 C19.8,18.1,18.1,19.8,15.9,19.8z'/%3E%3Cpath class='st9' d='M15.9,19.8H4.1c-2.2,0-3.9-1.8-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.8,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st10' d='M15.9,19.8H4.1c-2.2,0-3.9-1.7-3.9-3.9V4.1C0.2,2,2,0.2,4.1,0.2h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.8,18,18,19.8,15.9,19.8z'/%3E%3Cpath class='st11' d='M15.8,19.7H4.2c-2.2,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.2,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st12' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.7c2.1,0,3.9,1.7,3.9,3.9v11.7 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st13' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2C0.3,2,2,0.3,4.2,0.3h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,18,18,19.7,15.8,19.7z'/%3E%3Cpath class='st14' d='M15.8,19.7H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.7,17.9,17.9,19.7,15.8,19.7z'/%3E%3Cpath class='st15' d='M15.8,19.6H4.2c-2.1,0-3.9-1.7-3.9-3.9V4.2c0-2.1,1.7-3.9,3.9-3.9h11.6c2.1,0,3.9,1.7,3.9,3.9v11.6 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st16' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st17' d='M15.8,19.6H4.2c-2.1,0-3.8-1.7-3.8-3.8V4.2c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.8,19.6z'/%3E%3Cpath class='st18' d='M15.7,19.6H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.6,17.9,17.9,19.6,15.7,19.6z'/%3E%3Cpath class='st19' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.5c2.1,0,3.8,1.7,3.8,3.8v11.5 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st20' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st21' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st22' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.4c2.1,0,3.8,1.7,3.8,3.8v11.4 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st23' d='M15.7,19.5H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.5,17.8,17.8,19.5,15.7,19.5z'/%3E%3Cpath class='st24' d='M15.7,19.4H4.3c-2.1,0-3.8-1.7-3.8-3.8V4.3c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.7,19.4z'/%3E%3Cpath class='st25' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st26' d='M15.6,19.4H4.4c-2.1,0-3.8-1.7-3.8-3.8V4.4c0-2.1,1.7-3.8,3.8-3.8h11.3c2.1,0,3.8,1.7,3.8,3.8v11.3 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st27' d='M15.6,19.4H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.4,17.7,17.7,19.4,15.6,19.4z'/%3E%3Cpath class='st28' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.7,17.7,19.3,15.6,19.3z'/%3E%3Cpath class='st29' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.2c2.1,0,3.7,1.7,3.7,3.7v11.2 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st30' d='M15.6,19.3H4.4c-2.1,0-3.7-1.7-3.7-3.7V4.4c0-2.1,1.7-3.7,3.7-3.7h11.1c2.1,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st31' d='M15.6,19.3H4.4c-2,0-3.7-1.7-3.7-3.7V4.4c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.3,17.6,17.6,19.3,15.6,19.3z'/%3E%3Cpath class='st32' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st33' d='M15.5,19.2H4.5c-2,0-3.7-1.7-3.7-3.7V4.5c0-2,1.7-3.7,3.7-3.7h11.1c2,0,3.7,1.7,3.7,3.7v11.1 C19.2,17.6,17.6,19.2,15.5,19.2z'/%3E%3Cpath class='st34' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st35' d='M15.5,19.2h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.2,17.5,17.5,19.2,15.5,19.2z'/%3E%3Cpath class='st36' d='M15.5,19.1h-11c-2,0-3.7-1.6-3.7-3.7v-11c0-2,1.6-3.7,3.7-3.7h11c2,0,3.7,1.6,3.7,3.7v11 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st37' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st38' d='M15.5,19.1H4.5c-2,0-3.6-1.6-3.6-3.6V4.5c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.5,17.5,19.1,15.5,19.1z'/%3E%3Cpath class='st39' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.5,19.1,15.4,19.1z'/%3E%3Cpath class='st40' d='M15.4,19.1H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.9c2,0,3.6,1.6,3.6,3.6v10.9 C19.1,17.4,17.4,19.1,15.4,19.1z'/%3E%3Cpath class='st41' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st42' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st43' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.8c2,0,3.6,1.6,3.6,3.6v10.8 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st44' d='M15.4,19H4.6c-2,0-3.6-1.6-3.6-3.6V4.6C1,2.6,2.6,1,4.6,1h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C19,17.4,17.4,19,15.4,19z'/%3E%3Cpath class='st45' d='M15.4,18.9H4.6c-2,0-3.6-1.6-3.6-3.6V4.6c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.4,18.9z'/%3E%3Cpath class='st46' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st47' d='M15.3,18.9H4.7c-2,0-3.6-1.6-3.6-3.6V4.7c0-2,1.6-3.6,3.6-3.6h10.7c2,0,3.6,1.6,3.6,3.6v10.7 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st48' d='M15.3,18.9H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.9,17.3,17.3,18.9,15.3,18.9z'/%3E%3Cpath class='st49' d='M15.3,18.8H4.7c-2,0-3.5-1.6-3.5-3.5V4.7c0-2,1.6-3.5,3.5-3.5h10.6c2,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.3,17.3,18.8,15.3,18.8z'/%3E%3Cpath class='st50' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.6c1.9,0,3.5,1.6,3.5,3.5v10.6 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st51' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st52' d='M15.3,18.8H4.7c-1.9,0-3.5-1.6-3.5-3.5V4.7c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.8,17.2,17.2,18.8,15.3,18.8z'/%3E%3Cpath class='st53' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st54' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.5c1.9,0,3.5,1.6,3.5,3.5v10.5 C18.7,17.2,17.2,18.7,15.2,18.7z'/%3E%3Cpath class='st55' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st56' d='M15.2,18.7H4.8c-1.9,0-3.5-1.6-3.5-3.5V4.8c0-1.9,1.6-3.5,3.5-3.5h10.4c1.9,0,3.5,1.6,3.5,3.5v10.4 C18.7,17.1,17.1,18.7,15.2,18.7z'/%3E%3Cpath class='st57' d='M15.2,18.6H4.8c-1.9,0-3.5-1.5-3.5-3.5V4.8c0-1.9,1.5-3.5,3.5-3.5h10.4c1.9,0,3.5,1.5,3.5,3.5v10.4 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st58' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.5V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st59' d='M15.2,18.6H4.8c-1.9,0-3.4-1.5-3.4-3.4V4.8c0-1.9,1.5-3.4,3.4-3.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17.1,17.1,18.6,15.2,18.6z'/%3E%3Cpath class='st60' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st61' d='M15.1,18.6H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.4,3,3,1.4,4.9,1.4h10.3c1.9,0,3.4,1.5,3.4,3.4v10.3 C18.6,17,17,18.6,15.1,18.6z'/%3E%3Cpath class='st62' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st63' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st64' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9C1.5,3,3,1.5,4.9,1.5h10.2c1.9,0,3.4,1.5,3.4,3.4v10.2 C18.5,17,17,18.5,15.1,18.5z'/%3E%3Cpath class='st65' d='M15.1,18.5H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.2c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.5,16.9,16.9,18.5,15.1,18.5z'/%3E%3Cpath class='st66' d='M15.1,18.4H4.9c-1.9,0-3.4-1.5-3.4-3.4V4.9c0-1.9,1.5-3.4,3.4-3.4h10.1c1.9,0,3.4,1.5,3.4,3.4v10.1 C18.4,16.9,16.9,18.4,15.1,18.4z'/%3E%3Cpath class='st67' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3C/g%3E%3ClinearGradient id='SVGID_1_' gradientUnits='userSpaceOnUse' x1='-42.0575' y1='53.5165' x2='-25.074' y2='53.5165' gradientTransform='matrix(1 0 0 1 43.5166 -43.5166)'%3E%3Cstop offset='1.241987e-03' style='stop-color:%23C90504'/%3E%3Cstop offset='1' style='stop-color:%238B0000'/%3E%3C/linearGradient%3E%3Cpath class='st68' d='M15,18.4H5c-1.9,0-3.4-1.5-3.4-3.4V5c0-1.9,1.5-3.4,3.4-3.4H15c1.9,0,3.4,1.5,3.4,3.4V15 C18.4,16.9,16.9,18.4,15,18.4z'/%3E%3ClinearGradient id='SVGID_2_' gradientUnits='userSpaceOnUse' x1='17.8333' y1='10' x2='18.8333' y2='10'%3E%3Cstop offset='0.305' style='stop-color:%23A30504'/%3E%3Cstop offset='0.4403' style='stop-color:%23B90504'/%3E%3Cstop offset='0.6015' style='stop-color:%23CB0504'/%3E%3Cstop offset='0.7694' style='stop-color:%23D60504'/%3E%3Cstop offset='0.9533' style='stop-color:%23DA0504'/%3E%3C/linearGradient%3E%3Cellipse class='st69' cx='18.3' cy='10' rx='0.5' ry='6'/%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_3_' cx='-219.5943' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st70' d='M16.7,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,3.2,16.7,4.1,16.7,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -0.9456 9.5562)' class='st72' cx='15.3' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_4_' cx='-230.9202' cy='88.6972' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st73' d='M7.3,5.2c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,3.2,7.3,4.1,7.3,5.2z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -2.5106 4.3798)' class='st72' cx='6' cy='6.3' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_5_' cx='-219.5943' cy='94.3411' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st74' d='M16.7,9.9c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,7.9,16.7,8.8,16.7,9.9z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -3.5252 10.3361)' class='st72' cx='15.3' cy='11' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_6_' cx='-230.9202' cy='94.3411' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st75' d='M7.3,9.9c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,7.9,7.3,8.8,7.3,9.9z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -5.0902 5.1596)' class='st72' cx='6' cy='11' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_7_' cx='-219.5943' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st76' d='M16.7,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C15.8,12.5,16.7,13.4,16.7,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -6.1048 11.116)' class='st72' cx='15.3' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cg%3E%3CradialGradient id='SVGID_8_' cx='-230.9202' cy='99.9851' r='2.4242' gradientTransform='matrix(0.825 0 0 0.825 195.8204 -67.9733)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' style='stop-color:%23C2C2C2'/%3E%3Cstop offset='1' style='stop-color:%23D9D9D9'/%3E%3C/radialGradient%3E%3Cpath class='st77' d='M7.3,14.5c0,1.1-0.9,2-2,2c-1.1,0-2-0.9-2-2c0-1.1,0.9-2,2-2C6.4,12.5,7.3,13.4,7.3,14.5z'/%3E%3C/g%3E%3C/g%3E%3Cg class='st71'%3E%3Cellipse transform='matrix(0.8325 -0.554 0.554 0.8325 -7.6698 5.9395)' class='st72' cx='6' cy='15.7' rx='1' ry='0.4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
}

.dice {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.dice--1 {
  background-image: var(--dice-1);
}

.dice--2 {
  background-image: var(--dice-2);
}

.dice--3 {
  background-image: var(--dice-3);
}

.dice--4 {
  background-image: var(--dice-4);
}

.dice--5 {
  background-image: var(--dice-5);
}

.dice--6 {
  background-image: var(--dice-6);
}

.game-rules {
  position: absolute;
  top: 146px;
  max-width: 800px;
  width: 100%;
  height: calc(100vh - 146px);
  padding: 15px;
  background-color: #fff;
  overflow: auto;
}

.game-rules--big {
  top: 146px;
}

.game-rules li {
  margin-left: 15px;
}

.game-rules .h3--accent,
.game-rules .h3 {
  text-transform: uppercase;
  color: var(--bar-green);
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 0;
}

.game-rules .h5 {
  font-size: 14px;
  margin-bottom: 5px;
  background-color: #fff;
}

.game-rules .h5--v {
  position: absolute;
  top: 50%;
  left: -55px;
  width: 140px;
}

.game-rules .dice {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  -webkit-filter: grayscale(1) invert(1);
          filter: grayscale(1) invert(1);
}

.rules-keno-table {
  position: relative;
  padding: 0 15px 0 30px;
}

.rules-keno-table .h5 {
  color: var(--bar-green);
  text-align: center;
}

[active_bg="32"] .rules-keno-table h5 {
  color: #d0a74b;
}

.rules-penalty-table {
  border: 1px solid #aaa;
  border-collapse: collapse;
  width: 100%;
}

.rules-penalty-table td {
  padding: 10px 20px;
  border: 1px solid #aaa;
}

.rules-penalty-table td:last-child {
  text-align: right;
}

.rules-penalty-table-img {
  width: 80%;
  margin: auto;
  color: #aaa;
  background-image: var(--penalty2);
  background-size: contain;
  background-position: center 0;
  text-align: center;
}

.rules-penalty-table-img tr:first-child td {
  padding-top: 0;
  padding-right: 20px;
}

.rules-penalty-table-img td {
  padding: 3vw;
}

.rules-sicbo-table {
  border: 1px solid #aaa;
  border-collapse: collapse;
  width: 100%;
  counter-reset: row-num;
  background-color: #fff;
}

.rules-sicbo-table tr {
  counter-increment: row-num;
}

.rules-sicbo-table td {
  vertical-align: top;
  padding: 5px;
  border: 1px solid #aaa;
}

.rules-sicbo-table td:first-child::before {
  content: counter(row-num);
}

.rules-sicbo-table td:last-child::before {
  content: "1:";
}

.rules-sicbo-table td.no-before::before {
  display: none;
}

.rules-fortune-table,
.rules-spin-table {
  border: 1px solid #aaa;
  border-collapse: collapse;
  width: 100%;
}

.rules-fortune-table td,
.rules-spin-table td {
  padding: 10px 20px;
  border: 1px solid #aaa;
}

.rules-fortune-table td:nth-child(2),
.rules-spin-table td:nth-child(2) {
  text-align: right;
  white-space: nowrap;
}

.rules-poker-table td {
  padding: 10px;
  padding-bottom: 10px;
}

.rules-poker-table td:first-child {
  padding-left: 0;
}

.rules-poker-card {
  width: 104px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}

.rules-poker-card--1 {
  background-image: url(../img/rules/poker/1.svg);
}

.rules-poker-card--2 {
  background-image: url(../img/rules/poker/2.svg);
}

.rules-poker-card--3 {
  background-image: url(../img/rules/poker/3.svg);
}

.rules-poker-card--4 {
  background-image: url(../img/rules/poker/4.svg);
}

.rules-poker-card--5 {
  background-image: url(../img/rules/poker/5.svg);
}

.rules-poker-card--6 {
  background-image: url(../img/rules/poker/6.svg);
}

.rules-poker-card--7 {
  background-image: url(../img/rules/poker/7.svg);
}

.rules-poker-card--8 {
  background-image: url(../img/rules/poker/8.svg);
}

.rules-poker-card--9 {
  background-image: url(../img/rules/poker/9.svg);
}

.rules-poker-card--10 {
  background-image: url(../img/rules/poker/10.svg);
}

.rules-lotto-table {
  border: 1px solid #aaa;
  border-collapse: collapse;
  width: 150px;
}

.rules-lotto-table td {
  padding: 5px 10px;
  border: 1px solid #aaa;
}

.rules-lotto-table td:first-child {
  text-align: center;
}

.wrapper[show_game_rules="1"] .game-rules {
  display: block;
}

.wrapper[show_game_rules="1"] #btn_rules_text {
  display: none;
}

.wrapper[show_game_rules="0"] .game-rules {
  display: none;
}

.wrapper[show_game_rules="0"] #btn_history_text {
  display: none;
}

.wrapper[show_game_rules="0"] .header__rules:before {
  background-image: var(--icon-btn-game-rules);
  -webkit-filter: invert(0);
          filter: invert(0);
}

.header__rules {
  display: none;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 9px;
  line-height: 1.5;
}

.header__rules:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: var(--icon-btn-coupons-history);
  background-position: center;
  -webkit-filter: invert(1);
          filter: invert(1);
}

:root {
  --coeff: 1;
  --container-width: 800px;
}

html {
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  min-height: 100vh;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  scrollbar-width: none;
  background-color: #f7f7f7;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
}

input:focus::-moz-placeholder {
  opacity: 0;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
}

input:focus::-ms-input-placeholder {
  opacity: 0;
}

input:focus::placeholder {
  opacity: 0;
}

.wrapper {
  /* 	border: 1px solid #000;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto; */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.wrapper[active_section="home"] .header__top {
  grid-template-columns: 30px 1fr;
}

.wrapper[active_section="home"] .header__subtitle, .wrapper[active_section="home"] .header__close, .wrapper[active_section="home"] .header__back {
  display: none;
}

.wrapper[active_section="home"] .header__menu, .wrapper[active_section="home"] .header__langs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrapper[active_section="home"] section.s-home {
  display: block;
  padding-bottom: 10px;
}

.wrapper[active_section="home"] .check-coupon {
  display: block;
}

.wrapper[active_section="category"] section.s-category {
  display: block;
}

.wrapper[active_section="category"][show_game_rules='1'] #headerSubtitleRules {
  display: block;
}

.wrapper[active_section="category"][show_game_rules='1'] #headerSubtitle {
  display: none;
}

.wrapper[active_section="game"] .header__favorite {
  visibility: visible;
  pointer-events: all;
  cursor: pointer;
}

.wrapper[active_section="game"] .header__body {
  grid-template-columns: 1fr auto auto;
  grid-gap: 10px;
}

.wrapper[active_section="game"] .header__rules, .wrapper[active_section="game"] .header__video {
  display: block;
}

.wrapper[active_section="game"] section.s-game {
  padding: 0;
  display: block;
}

.wrapper[active_section="game"][show_game_rules='1'] #headerSubtitleRules {
  display: block;
}

.wrapper[active_section="game"][show_game_rules='1'] #headerSubtitle {
  display: none;
}

.wrapper[active_section="games"] section.s-games {
  display: block;
}

.wrapper[active_section="games"][show_game_rules='1'] #headerSubtitleRules {
  display: block;
}

.wrapper[active_section="games"][show_game_rules='1'] #headerSubtitle {
  display: none;
}

.wrapper[active_section="favorite"] .favorite-tabs {
  display: grid;
}

.wrapper[active_section="favorite"] .page-title,
.wrapper[active_section="favorite"] .header__video {
  display: none;
}

.wrapper[active_section="favorite"] section.s-favorite {
  display: block;
}

.wrapper[active_section="coupons-history"] .page-title,
.wrapper[active_section="coupons-history"] .header__video {
  display: none;
}

.wrapper[active_section="coupons-history"] section.s-coupons-history {
  display: block;
}

.wrapper:before {
  content: "";
  height: 50vh;
  position: fixed;
  width: 100vw;
  background-size: 100vw;
  background-position: bottom;
  background-repeat: no-repeat;
  top: -5vh;
  z-index: -1;
}

.wrapper[active_bg]:before,
.wrapper[active_bg] .header:before {
  background-image: var(--bg-home);
}

.wrapper[active_bg="home"]:before,
.wrapper[active_bg="home"] .header:before {
  background-image: var(--bg-home);
}

.wrapper[active_bg="yellow"]:before,
.wrapper[active_bg="yellow"] .header:before {
  background-image: var(--bg-yellow);
}

.wrapper[active_bg="green"]:before,
.wrapper[active_bg="green"] .header:before {
  background-image: var(--bg-green);
}

.wrapper[active_bg="blue"]:before,
.wrapper[active_bg="blue"] .header:before {
  background-image: var(--bg-blue);
}

.wrapper[active_bg="14"]:before,
.wrapper[active_bg="14"] .header:before, .wrapper[active_bg="15"]:before,
.wrapper[active_bg="15"] .header:before, .wrapper[active_bg="59"]:before,
.wrapper[active_bg="59"] .header:before {
  background-image: var(--bg-red);
}

.wrapper[active_bg="32"]:before,
.wrapper[active_bg="32"] .header:before, .wrapper[active_bg="48"]:before,
.wrapper[active_bg="48"] .header:before, .wrapper[active_bg="11"]:before,
.wrapper[active_bg="11"] .header:before, .wrapper[active_bg="10"]:before,
.wrapper[active_bg="10"] .header:before, .wrapper[active_bg="31"]:before,
.wrapper[active_bg="31"] .header:before, .wrapper[active_bg="19"]:before,
.wrapper[active_bg="19"] .header:before, .wrapper[active_bg="9"]:before,
.wrapper[active_bg="9"] .header:before {
  background-image: var(--bg-green-light);
}

.wrapper[active_bg="34"]:before,
.wrapper[active_bg="34"] .header:before, .wrapper[active_bg="69"]:before,
.wrapper[active_bg="69"] .header:before, .wrapper[active_bg="62"]:before,
.wrapper[active_bg="62"] .header:before, .wrapper[active_bg="8"]:before,
.wrapper[active_bg="8"] .header:before, .wrapper[active_bg="13"]:before,
.wrapper[active_bg="13"] .header:before, .wrapper[active_bg="6"]:before,
.wrapper[active_bg="6"] .header:before {
  background-image: var(--bg-purple);
}

.wrapper[active_bg="18"]:before,
.wrapper[active_bg="18"] .header:before {
  background-image: var(--bg-blue-light);
}

.wrapper[active_bg="25"]:before,
.wrapper[active_bg="25"] .header:before {
  background-image: var(--bg-green-light);
}

.wrapper[active_bg="70"]:before,
.wrapper[active_bg="70"] .header:before {
  background-image: var(--bg-orange);
}

.wrapper[active_bg="65"]:before,
.wrapper[active_bg="65"] .header:before {
  background-image: var(--bg-violet);
}

.container {
  max-width: var(--container-width);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.version {
  position: fixed;
  top: 10px;
  left: 10px;
  color: #ccc;
  font-size: 30px;
  font-weight: bold;
}

.main {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  bottom: 0;
  scrollbar-width: none;
  overflow: auto;
}

.check-coupon {
  background-color: #fff;
  padding: 20px 20px 30px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  max-width: var(--container-width);
}

.h2 {
  font-size: 20px;
  color: #333;
  font-weight: normal;
  text-align: center;
}

.check-coupon__input {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--orange);
  padding: 10px;
  font-size: 1.5rem;
  font-weight: 600;
  height: 40px;
}

.check-coupon__input::-webkit-input-placeholder {
  font-weight: normal;
}

.check-coupon__input::-moz-placeholder {
  font-weight: normal;
}

.check-coupon__input:-ms-input-placeholder {
  font-weight: normal;
}

.check-coupon__input::-ms-input-placeholder {
  font-weight: normal;
}

.check-coupon__input::placeholder {
  font-weight: normal;
}

.check-coupon__controls {
  position: relative;
  padding-left: calc(85px);
}

.games-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  margin: 0 -10px;
  overflow-y: auto;
}

#gamesCategory {
  max-height: 100%;
}

.game-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: all;
}

.game-item * {
  pointer-events: none;
}

.game-item-wrap {
  position: relative;
  padding-top: 100%;
  background-color: #f2f2f2;
  overflow: hidden;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  margin: 10px;
  max-width: 45vw;
  opacity: 1;
  cursor: pointer;
  pointer-events: all;
}

.game-item-wrap:hover {
  -webkit-box-shadow: var(--shadow-hover);
          box-shadow: var(--shadow-hover);
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
}

.game-item__favorite {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-size: 30px;
  background-position: center;
  pointer-events: all;
  cursor: pointer;
}

.game-item__favorite:hover {
  opacity: .7;
}

.game-item__logo {
  background-position: center;
  height: 50%;
}

.game-item__body {
  height: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  padding: 1rem 10px;
}

.game-item__body > {
  display: none;
}

.game-item__subtitle {
  color: #333;
  font-size: .875rem;
  min-height: 1rem;
}

.game-item__bar {
  height: 5px;
  width: 100%;
  margin-top: 10px;
  border-radius: 10px;
}

/* ==========================================================================
	Games Icons
	========================================================================== */
[game_logo] {
  background-size: 30vw;
}

[game_logo="keno"] {
  background-image: var(--icon-game-keno);
}

[game_logo="lotto"] {
  background-image: var(--icon-game-lotto);
}

[game_logo="football"] {
  background-image: var(--icon-game-football);
  background-size: 25vw;
}

[game_logo="horsedog"] {
  background-image: var(--icon-game-horsedog);
}

[game_logo="roulette"] {
  background-image: var(--icon-game-roulette);
  background-size: 25vw;
}

[game_logo="other"] {
  background-image: var(--icon-game-other);
}

[check_star="1"],
[star="1"] {
  background-image: var(--icon-star1);
}

.header__favorite[star="0"] {
  background-image: var(--icon-star);
}

[check_star="0"],
[star="0"] {
  background-image: var(--icon-star0);
}

[star="hidden"] {
  display: none;
}

[bar_color="green"] {
  background-color: var(--bar-green);
}

[bar_color="red"] {
  background-color: var(--bar-red);
}

[bar_color="blue"] {
  background-color: var(--bar-blue);
}

[bar_color="yellow"] {
  background-color: var(--bar-yellow);
}

[bar_color="dark"] {
  background-color: var(--bar-dark-green);
}

[bar_color="violet"] {
  background-color: var(--bar-violet);
}

.table-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  padding: 5px 15px;
  background-color: #000;
  font-size: .875rem;
  font-weight: bold;
  color: #fff;
}

.table-header__search {
  width: 15px;
  height: 15px;
  display: inline-block;
  background-color: var(--bar-yellow);
  -webkit-mask-image: var(--icon-loupe);
  -webkit-mask-repeat: no-repeat;
  mask-image: var(--icon-loupe);
  mask-repeat: no-repeat;
  cursor: pointer;
}

.table-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.table-body {
  padding-top: 25px;
  background-color: #fff;
  height: calc(100vh - 146px);
  overflow: auto;
}

/* ==========================================================================
	Search
========================================================================== */
.table-search {
  position: fixed;
  top: 146px;
  max-width: 800px;
  width: 100%;
  height: 100%;
  background-color: #2d2c31;
  z-index: 1;
}

.table-search--big {
  top: 146px;
}

.table-search .container {
  max-width: 400px;
  width: 70%;
}

.table-search input {
  width: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 10px;
  color: #fff;
  border-radius: 15px;
  font-size: 1rem;
}

.table-search input::-webkit-input-placeholder {
  /* Chrome */
  color: #eee;
}

.table-search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #eee;
}

.table-search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #eee;
  opacity: 1;
}

.table-search input:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #eee;
  opacity: 1;
}

.table-search__result {
  margin-top: 2rem;
  background-color: #fff;
  height: 100%;
}

.table-search__result .h3 {
  padding: .75rem;
  font-size: 1.5rem;
  color: #494949;
}

section {
  display: none;
  padding: 10px 15px 0;
  overflow: hidden;
}

ol.nums-list, .rebet-request ol.border-y {
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-left: 20px;
}

ol.nums-list li, .rebet-request ol.border-y li {
  margin-bottom: 0.5rem;
}

.no-bullet {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.no-bullet li {
  margin-left: 0;
}

/* .s-favorite {
	// width: calc(100% - 20px);
	// margin-right: -10px;
	// margin-left: -10px;
	// padding-right: 0;
} */
.text-accent,
.win-num {
  color: var(--bar-blue);
}

.text-danger {
  color: var(--bar-red);
}

.qr-modal,
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1000;
}

.qr-modal__body,
.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.qr-modal-content,
.modal-content {
  position: relative;
  border-radius: 5px;
  background-color: #fff;
  width: 95%;
  min-height: 10vh;
  max-height: 90vh;
  padding: 30px 10px;
  max-width: 360px;
  overflow: hidden;
}

.qr-modal .input,
.modal .input {
  width: 100%;
  border-radius: 15px;
  padding: 5px 10px;
  border: 1px solid #aaa;
}

.qr-modal .btn,
.modal .btn {
  padding: 7px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.qr-modal canvas {
  max-width: 100%;
}

.h3 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 15px;
}

/* ==========================================================================
	 Check
	 ========================================================================== */
.check {
  position: relative;
  top: -10px;
  padding: 25px 0 0;
  font-family: Pompadur;
  font-size: 13pt;
  line-height: 1;
  margin: auto;
  max-height: 95%;
  max-width: 350px;
  overflow: auto;
}

.check__logo {
  display: block;
  max-width: 85%;
  height: auto;
  margin: 0 auto 15px;
}

.check__coupon-info {
  position: relative;
  font-size: 12pt;
  margin-bottom: 10px;
  padding-left: 110px;
}

.check__coupon {
  white-space: nowrap;
}

.check__date {
  white-space: nowrap;
}

.check__result {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  font-size: 1.125rem;
}

.check__result:before, .check__result:after {
  content: "*";
  padding: 0 5px;
  height: 12px;
}

.check__favorite {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
}

.check__rules {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  color: var(--bar-blue);
  text-decoration: underline;
  cursor: pointer;
}

.btn--update {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  margin-bottom: 1rem;
  background-color: var(--orange);
  background-image: var(--icon-update);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px;
  border-radius: 50%;
}

.btn--update.disabled {
  opacity: .5;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  pointer-events: none;
  -webkit-animation: update-spinner 1s linear infinite;
          animation: update-spinner 1s linear infinite;
}

@-webkit-keyframes update-spinner {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes update-spinner {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

.check__qr {
  position: absolute;
  left: 0;
  max-width: 94px;
}

.check__body {
  margin-top: 5px;
  border-top: 1px solid #000;
}

.check__row {
  position: relative;
  padding: 5px 0;
  font-size: 1.125rem;
  border-bottom: 1px solid #000;
}

.check__row .check__subtotal {
  display: block;
  margin-top: 5px;
  text-transform: none;
}

.check__row:last-child {
  margin-bottom: 10px;
}

.check__total {
  margin-top: 10px;
  font-size: 1.25rem;
}

.check__bar-code {
  position: relative;
  left: -10px;
  width: 100%;
  height: auto;
  margin: 15px 0 0;
  text-align: center;
}

.disabled {
  pointer-events: none;
  opacity: .5;
  cursor: default;
}

.bet-result {
  position: absolute;
  right: 0;
  bottom: 6px;
}

.ticket {
  width: 360px;
  height: 500px;
  margin: auto;
  position: relative;
  zoom: .93;
}

.ticket[show_back="1"] .ticket__back {
  opacity: 1;
}

.ticket__front {
  height: 100%;
}

.ticket__back {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
  z-index: 1;
  opacity: 0;
}

.ticket .active {
  background-repeat: no-repeat;
  background-size: contain;
}

.ticket[ticket_game='44'] .active {
  background-image: var(--ticket536-x);
}

.ticket[ticket_game='44'] .ticket__front {
  background-image: var(--ticket536);
}

.ticket[ticket_game='44'] .ticket__back {
  background-image: var(--ticket536-back);
}

.ticket[ticket_game='44'] .ticket-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, 26px);
  gap: 5px 5px;
  padding: 247px 16px 0 28px;
}

.ticket[ticket_game='44'] .ticket-board__item {
  padding-top: 26px;
}

.ticket[ticket_game='45'] .active {
  background-image: var(--ticket642-x);
}

.ticket[ticket_game='45'] .ticket__front {
  background-image: var(--ticket642);
}

.ticket[ticket_game='45'] .ticket__back {
  background-image: var(--ticket642-back);
}

.ticket[ticket_game='46'] .active {
  background-image: var(--ticket749-x);
}

.ticket[ticket_game='46'] .ticket__front {
  background-image: var(--ticket749);
}

.ticket[ticket_game='46'] .ticket__back {
  background-image: var(--ticket749-back);
}

.ticket-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, 26px);
  gap: 5px 5px;
  padding: 219px 16px 0 25px;
}

.ticket-board__item {
  padding-top: 26px;
}

.ticket__footer {
  position: absolute;
  bottom: 4px;
  width: 100%;
  display: grid;
  grid-template-columns: 85px 1fr;
}

.ticket__barcode {
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.table__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 5px;
  padding: 5px 15px;
  background-color: #f0eff4;
}

.table__row:nth-child(even) {
  background-color: #fff;
}

[table_cell="tir"] {
  font-size: .875rem;
  color: #494949;
}

[table_cell="date"] {
  text-align: right;
  color: #494949;
}

[table_cell="data"] {
  grid-column: span 2;
}

.video-history {
  width: 100%;
}

[tab_content="coupons"] {
  padding-right: 0;
  width: calc(100% + 30px);
  margin-right: -15px;
  margin-left: -15px;
}

.coupons-list {
  overflow: auto;
  height: 100%;
}

.coupon-item {
  display: grid;
  grid-template-columns: 100% 120px;
  overflow: auto;
  scrollbar-width: none;
}

.coupon-item__body {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 10px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 5px #777;
          box-shadow: 2px 2px 5px #777;
  margin: 1px 10px 5px;
  cursor: pointer;
}

.coupon-item__remove {
  border-radius: 10px;
  background-color: var(--bar-red);
  background-image: var(--icon-x);
  background-size: 50%;
  background-position: center;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  margin: 1px 10px 5px;
  cursor: pointer;
}

.coupon-item__remove:hover {
  opacity: .9;
}

.coupon-item__desc {
  margin-top: 10px;
}

.coupon-item__price {
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--bar-red);
}

.rebet-request .h3 {
  font-weight: bold;
}

.rebet-request .nums-list, .rebet-request .border-y {
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

[tab_content="coupons-history"] {
  padding-right: 0;
  width: calc(100% + 30px);
  margin-right: -15px;
  margin-left: -15px;
}

.coupons-history {
  overflow: auto;
  height: 100%;
}

.coupons-history .coupon-item {
  display: grid;
  grid-template-columns: 100%;
  overflow: auto;
  scrollbar-width: none;
}

.coupons-history .coupon-item__body[search-type="scanner"]:after {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: var(--icon-scan);
}

.coupons-history .coupon-item__date {
  font-weight: normal;
  color: #333;
}

.coupons-history .coupon-item__hall {
  display: inline-block;
  margin-left: 5px;
}

.coupons-history .coupon-item__title {
  margin-top: 10px;
}

.coupons-history .coupon-item__price {
  top: initial;
  bottom: 10px;
}

.favorite-content {
  display: none;
  height: auto;
}

[tab_content="games"] {
  display: grid;
}

@media only screen and (min-width: 1200px), (orientation: landscape) {
  .wrapper[active_bg="home"]:before {
    background-image: none;
  }
  .wrapper[active_bg="home"] .header {
    background-image: var(--bg-home);
  }
  .wrapper[active_bg="yellow"]:before {
    background-image: none;
  }
  .wrapper[active_bg="yellow"] .header {
    background-image: var(--bg-yellow);
  }
  .wrapper[active_bg="green"]:before {
    background-image: none;
  }
  .wrapper[active_bg="green"] .header {
    background-image: var(--bg-green);
  }
  .wrapper[active_bg="blue"]:before {
    background-image: none;
  }
  .wrapper[active_bg="blue"] .header {
    background-image: var(--bg-blue);
  }
  .header:before {
    display: none;
  }
  [game_logo] {
    background-size: contain;
  }
  .check-coupon {
    position: static;
    max-width: calc(var(--container-width) - 30px);
    width: 100%;
    margin: 25px auto 15px;
  }
  .qr-modal-content,
  .modal-content {
    max-width: 800px;
  }
}

@media (orientation: landscape) {
  .header {
    position: static !important;
  }
  .header:before {
    display: none;
  }
  .table-header {
    position: static;
  }
  .table-body {
    padding-top: 0;
  }
}

/*# sourceMappingURL=maps/main.css.map */
