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

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.ttf");
  font-weight: bold;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0;
}

body {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #1c1a1a;
  font-family: IBM Plex Sans, sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

.container {
  height: 100vh;
  margin: auto;
  max-width: 1500px;
  background-color: var(--app-bg);
  display: flex;
  flex-flow: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 99;
  flex: 0 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background-color: #1c1a1a;
  width: 100%;
}

.logo__container img {
  margin-left: 10px;
  margin-top: 17px;
  height: 40px;
}

.language .country {
  display: flex;
  align-items: center;
}

.language .country .language-logo__container {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.language .country .language-logo__container img {
  width: 24px;
  height: 24px;
}

.language .country p {
  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  overflow: visible;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 36px;
}

.header .date {
  display: flex;
  justify-content: flex-end;
  padding-right: 8px;
  margin: 0;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  color: #87888a;
}

.main {
  flex: 1;
  position: relative;
  display: flex;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100vh - 70px);
  height: 100%;
  color: #000000de;
}

scrollbar,
::-webkit-scrollbar {
  width: 8px;
  border-radius: 3px;
}

scrollbar-thumb,
::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 3px;
}

scrollbar-track,
::-webkit-scrollbar-track {
  background: gray;
  border-radius: 3px;
}

.side-nav {
  color: white;
  z-index: 2;
  border-right: solid 1px rgba(0, 0, 0, 0.12);
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  outline: 0;
  box-sizing: border-box;
  overflow-y: auto;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.side-nav .inner-container {
  border: 0 !important;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.side-nav .inner-container .next-inner {
  display: block;
  height: 100%;
  width: 300px;
  padding-right: 6px;
  background-color: var(--lsb-bg);
  color: var(--lsb-fc);
  overflow-y: scroll;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  overflow-x: hidden;
}

.side-nav .inner-container .next-inner .nav {
  position: sticky;
  z-index: 90;
  top: 0;
  padding: 12px 0;
  width: 100%;
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #1c1a1a;
}

.side-nav .inner-container .next-inner .nav p {
  margin: 0 5px;
  box-shadow: 0 0 #0003, 0 0 #00000024, 0 0 #0000001f;
  border-color: #0000001f;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 0px 15px;
}

.side-nav .inner-container .next-inner .nav img {
  width: 40px;
  height: 40px;
}

.nav__left {
  margin: 0 5px;
  flex: 0 0 40px !important;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-nav .inner-container .form {
  width: 100%;
  background-color: var(--lsb-search-panel);
  height: 50px;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.side-nav .inner-container .form input {
  display: flex;
  margin: 0 5px;
  flex: 1;
  padding-left: 8px;
  height: 40px;
  border: 0;
  border-radius: 4px;
  color: #444444;
  background-color: white;
  outline: none !important;
  width: calc(100% - 10px);
  margin-right: 10px;
}

.main__side {
  display: inline-flex;
  width: 100%;
  padding: 10px 0;
  color: white;
  background-color: #1c1a1a;
  border-top: 1px solid white;
  align-items: center;
  justify-content: center;
}

.main__side span {
  flex: 1 1 50px;
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 5px;
  padding: 3px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1c1a1a;
  color: white;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.main__side span.active {
  border-color: #1b8b62;
  background-color: #1b8b62;
  color: white;
}

.add__header {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  background-color: #1c1a1a;
  color: white;
}

.add__header .match {
  font-size: 18px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  padding-left: 8px;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.tree {
  overflow: hidden;
  max-width: 280px;
  white-space: nowrap;
  font-size: 13px;
}

.tree .branch {
  position: relative;
  min-height: 0 !important;
  font-size: 13px;
  line-height: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  word-wrap: break-word;
  font-weight: 400;
}

.tree .branch .number {
  color: #87888a;
}
.tree .branch .number span {
  color: #1b8b62;
  line-height: 20px;
  white-space: break-spaces;
  font-size: 13px !important;
  font-weight: 400;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.tree .branch img {
  display: flex;
  width: 15px;
  height: 15px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  object-fit: contain;
}

.first-image__container {
  display: flex;
  width: 28px;
  height: 28px;
  padding: 7px 6px 6px 7px;
  justify-content: center;
  align-items: center;
}

.special__name {
  margin-left: 0px !important;
}

.sport__name {
  margin-left: 5px;
  font: 300 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.first-image__container img {
  display: flex;
  width: 7px;
  height: 7px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

.branch__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.branch__left img {
  margin-right: 5px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 14px;
  color: white;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox .checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid gray;
  border-radius: 2px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkmark {
  background-color: #1b8b62;
  border-color: #1b8b62;
}

.custom-checkbox input:checked + .checkmark::after {
  content: "";
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 4.39823L4.02469 7L11 1' stroke='white' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.buttons__container {
  width: calc(100% - 18px);
  gap: 8px;
  display: flex;
  flex-direction: row;
}

.buttons__container button {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  overflow: visible;
  transform: translate3d(0, 0, 0);
  transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.second__button {
  opacity: 0.5;
}

.main__container {
  margin-left: 301px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100vh - 70px);
  height: 100%;
  overflow: auto;
  width: 100%;
}

.football__container {
  background-color: #2d2c2f;
  padding: 4px 8px;
  border-radius: 8px !important;
  border: 1px solid transparent;
  margin: 4px 4px 0px 4px;
}

@media only screen and (min-width: 1024px) {
  .football__container {
    padding: 4px !important;
  }
  .bet-type-quick-select {
    float: right;
  }
}

.football__container_header {
  height: 68px;
  z-index: 99999;
  border-bottom: solid 1px #383838;
  position: sticky;
  top: 0;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #2d2c2f;
}

.football__container_header .sport img {
  height: 20px;
  margin: 0 8px;
}

.bet-type-quick-select {
  display: flex;
  flex-direction: row;
  margin-right: 43px;
}

.sport {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  float: left;
}

.sport-text {
  font: 300 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.bet-type-quick-select .element .target {
  width: 170px !important;
  height: 35px;
  margin-right: 1px;
  border-radius: 4px;
  flex-direction: column-reverse;
  position: relative;
  background-color: #1c1a1a;
  width: 33.3%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font: 300 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.bet-type-quick-select .element .first__container {
  width: 170px;
  padding-left: 33px;
  margin-right: 1px;
  display: flex;
  justify-content: center;
}

.bet-type-quick-select .element .first__container span {
  float: left;
  width: 40px;
  text-align: center;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.bet-type-quick-select .element .second__container {
  width: 170px;
  padding-left: 33px;
  margin-right: 1px;
  display: flex;
  justify-content: center;
}

.bet-type-quick-select .element .second__container span {
  float: left;
  width: 40px;
  text-align: center;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.bet-type-quick-select .element .last__container {
  width: 170px;
  padding-left: 33px;
  margin-right: 1px;
  display: flex;
  justify-content: center;
}

.bet-type-quick-select .element .last__container span {
  float: left;
  width: 40px;
  text-align: center;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.football-content__container {
  display: flex;
  height: 80px;
  align-items: center;
  border-bottom: solid 1px #383838;
  margin: 5px;
}

.live__conent {
  line-height: 1em;
  padding: 5px;
  border-bottom: solid 1px var(--cc-ml-sep);
  display: flex;
  flex-wrap: wrap;
  height: 40px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .live__conent {
    height: 65px !important;
  }
}

.status {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  min-width: 60px;
}

.minute {
  color: #1b8b62;
}

.status__text {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b8b62;
  color: white;
  margin-top: 2px;
  padding: 1px 0;
  font-size: 9px;
  width: calc(100% - 10px);
}

.star img {
  width: 20px;
  height: 20px;
}

ul {
  list-style: none;
  position: relative;
  min-width: 0;
  display: flex;
  flex-flow: column;
  justify-content: space-evenly;

  max-width: 160px;
}

ul li {
  padding-left: 3px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  color: white;
  padding-left: 3px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  color: white;
}

ul li img {
  width: 16px;
  height: 16px;
}

ul li span {
  font-size: 15px;
}

ul li span.special__number {
  display: inline-flex;
  color: white;
  background: #d0a808;
  padding-left: 1px;
  padding-right: 1px;
  border-radius: 1px;
  position: relative;
  top: -1px;
  font-size: 10px;
  margin: 0 1px;
}

ul li span.last__text {
  margin-top: 4px;
  font-size: 0.8em;
  color: #87888a;
}

.total-list {
  width: 513px;
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-right: 0px;
  margin-left: auto;
}
.bet-list {
  align-items: center;
  display: flex;
  margin-top: 3px;
  width: 170px;
  margin-right: 1px;
  display: flex;
  justify-content: center;
}

.bet-list__first {
  display: flex;
  flex-wrap: nowrap;
  font-size: 14px;
}

.bet-list__last {
  display: flex;
  flex-wrap: nowrap;
  font-size: 14px;
}

@media only screen and (min-width: 1024px) {
  .bet-list__first {
    margin-right: 1px;
    justify-content: center;
    align-items: center;
  }
  .bet-list__last {
    width: 80px;
    margin-right: 1px;
    justify-content: center;
    align-items: center;
  }
}

.bet-list__first .item {
  border-radius: 4px;
  border: 1px solid #87888a;
  margin: 0 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 35px;
  cursor: pointer;
  color: white;
}

.bet-list__last .item {
  border-radius: 4px;
  border: 1px solid #87888a;
  margin: 0 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 35px;
  cursor: pointer;
  color: white;
}

.bet-list__first .item span {
  font-size: 13px;
}

.bet-list__last .item span {
  font-size: 13px;
}

.sc__text {
  display: flex;
  color: #1b8b62;
  align-self: center;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 12px;
  margin-right: 3px;
  font-weight: 700;
  justify-content: flex-end;
  padding-left: 0px;
  left: 0px;
  min-width: 18px;
}

.sc__text_second,
.sc__text_last {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b8b62;
  font-size: 12px;
  min-width: 18px;
}

.bet-list-last {
  padding-right: 7px;
}

.p-8 {
  padding: 0 8px;
}

.p-4 {
  padding-top: 4px;
}

.last__info {
  cursor: pointer;
  flex: 0 0 39px;
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #87888a;
  background-color: #2d2c2f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  height: 35px;
  margin: auto 0;
}

.bet_extra-container {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.right-bar {
  background-color: #2d2c2f;
  color: white;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  min-width: 300px;
  padding: 8px;
  position: relative;
}

.bar__content {
}

.bar__content h1 {
  font: 400 24px / 32px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
  color: white;
  margin-top: 3px;
  text-align: center;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-top: 35px;
}

.right-bar .content__header img {
  transform: rotate(180deg);
  position: absolute;
  left: 15px;
  top: 25px;
  width: 10px;
  height: 10px;
}
.navigation img {
  width: 4.5px;
  height: 4.5px;
}
.footer {
  min-height: 100px;
  background-color: #1c1a1a;
  color: white;
  padding: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__button {
  width: 100%;
  padding-top: 5px;
  height: 50px;
  display: flex;
}
.footer__button button {
  background-color: #1b8b62;
  color: white;
  border-radius: 4px;
  flex: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  border: none;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  font-size: 21px;
}

.footer__button button a {
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  font-size: 21px;
}
a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer ul {
  max-width: 1500px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

.slider__container img {
  width: 284px;
  height: 421px;
  margin-top: 10px;
}
.mobile__header {
  display: none;
}

.live__header {
  display: none;
}

.mobile__main_container {
  display: none;
}
@media screen and (max-width: 1023px) {
  body {
    background-color: white;
  }
  .side-nav {
    display: none;
  }
  .main__container {
    display: none;
  }

  .right-bar {
    display: none;
  }

  .header {
    display: none;
  }

  .footer {
    display: none;
  }

  .mobile__header {
    background-color: black;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 50px;
    display: flex;
    align-items: center;
    z-index: 100;
  }

  .mobile-ne {
    background-color: white;
  }
  .mobile__header .first {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .mobile__header .first img {
    position: relative;
    float: left;
    padding: 11px;
    width: 63px;
    right: 11px;
    bottom: 2px;
  }

  .anmelden {
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    font-family: IBM Plex Sans, sans-serif;
    font-weight: 400;
  }

  .live__header {
    z-index: 3;
    position: fixed;
    right: auto;
    left: 0;
    bottom: auto;
    width: 100vw;
    font-size: 16px;
    height: 33px;
    border-bottom: 1px solid black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1px;
    background-color: #87898b;
    top: 50px;
    padding-left: 4px;
  }

  .live__header ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    max-width: 273px;
    width: 100%;
  }

  .live__header ul li img {
    max-width: initial;
    object-fit: contain;
  }
  .mobile_football__header {
    width: 100vw;
    position: sticky;
    top: 80px;
    z-index: 999;
  }

  .mobile_football__header header {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 25px;
    padding: 1px 4px;
  }
  .mobile_football__header header .header-icon {
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile_football__header header span {
    font-family: IBM Plex Sans, sans-serif;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  .mobile_football__header header img {
    width: 19px;
    height: 19px;
  }

  .fixed {
    position: fixed;
  }
  header {
    background-color: #000000;
    color: white;
    font-size: 20px;
  }

  .header-icon {
    margin-right: 10px;
  }

  .navigation {
    display: flex;
    background-color: #dcdcdc;
    margin-top: 0px;
    gap: 0px;
  }

  .nav-tab {
    flex: 1;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-family: IBM Plex Sans, sans-serif;
    font-weight: 400;
    position: relative;
    background-color: #b1b3b4;
    color: white;
  }

  .nav-tab .pointer {
    position: absolute;
    bottom: 0;
    left: calc(50% - 10px);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid black;
  }

  .tab-active {
    background-color: #1b8b62;
    color: white;
  }

  .match-table {
    width: calc(100% - 10px);
    border-collapse: collapse;
    background-color: white;
    margin-left: 5px;
  }

  .match-table2 {
    margin-top: 150px;
  }

  .match-row {
    border-bottom: 1px solid black;
    margin-left: 5px;
    margin-right: 5px;
    height: 40px;
  }

  .match-row-first {
    border-bottom: 1px solid #ddd;
    height: 20px;
    position: sticky;
    z-index: 999;
    top: 148px;
  }

  .match-time {
    text-align: center;
    padding: 8px;
    font-weight: bold;
    width: 41px;
  }

  .live-time {
    color: green;
  }

  .match-info {
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
    color: black;
  }

  .yellow-cd {
    background-color: yellow;
    color: black;
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: bold;
  }

  .match-odds {
    width: 35%;
  }

  .odds-container {
    display: flex;
    justify-content: flex-end;
  }

  .header-odds-container {
    display: flex;
    justify-content: flex-end;
  }

  .header-odds-container div {
    color: white;
  }

  .odds {
    border: 1px solid #87898b;
    border-right: 0px;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    font-family: IBM Plex Sans, sans-serif;
    font-weight: 400;
  }

  .header-odds {
    border-right: 0px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .locked {
    background-color: #eee;
    color: #999;
  }

  .mini-right-bar {
    display: none !important;
  }

  .mobile__main_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: white;
  }

  .container {
    flex-flow: row;
  }

  .match-row-first {
    background-color: black;
  }

  .extra-odd {
    max-width: 45px;
    overflow: hidden;
  }

  .odds-extra {
    margin-right: 5px;
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 0 0 39px;
    padding: 5px;
    background-color: black;
    color: white;
    font-size: 13px;
    font-family: IBM Plex Sans, sans-serif;
    font-weight: 400;
    font-size: 10px;
    height: 35px;
  }

  .header-extra {
    margin-right: 5px;
  }

  .extra-odd div {
    max-width: 45px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .live__header ul li img {
    width: 19px;
    height: 19px;
  }

  .second-image__container {
    width: 41px;
    height: 31px;
    background-color: #4c4c4c;
    border-radius: 5px;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 60px;
  }

  .second-image__container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
}

.moto-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.moto-text span {
  width: 150px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #87888a;
  border-radius: 4px;
  height: 35px;
  color: white;
  font: 400 13px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}

.moto-last {
  margin: auto 0px auto auto;
}

.moto__footer {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin: auto 0 auto auto;
  gap: 2px;
}

::-webkit-scrollbar-thumb {
  background-color: #1b8b62;
}

.mini-right-bar {
  display: none;
  min-width: 75px;
  align-items: center;
  flex-direction: column;
}

.mini-right-bar .icon {
  height: 77px;
}

.mini-right-bar img {
  width: 40px;
  height: 40px;
}

.mini-right-bar .info {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.mini-right-bar .info .first-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  height: 70px;
}

.mini-right-bar .info .first-text .special {
  opacity: 0.7;
  color: white;
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
}
.mini-right-bar .info .first-text span {
  font: 400 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  color: white;
}

@media screen and (max-width: 1400px) {
  .right-bar {
    display: none;
  }

  .mini-right-bar {
    display: flex;
  }
}

tbody {
  width: calc(100% - 10px);
}

.valjraljr {
  cursor: pointer;
}

.footer li a {
  font: 300 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  font-size: 14px;
}

.footer ul li {
  font: 300 14px / 20px IBM Plex Sans, sans-serif;
  letter-spacing: normal;
  font-size: 14px;
  padding-left: 0px;
  width: 200px;
}

.cookie {
  font-family: "Helvetica";
  font-weight: 400;
  background-image: url(../images/blur-lsw-desktop-gwbet.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #2d2c2f;
  background-attachment: fixed;
  z-index: 999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0px;
  left: 0px;
}

.popup__container {
  background-color: #2d2c2f;
  max-width: 960px;
  padding: 32px 0px;
  height: fit-content;
}

.popup__container .inner__text {
  font-weight: normal;
  color: white;
  font-size: 16px;
  line-height: 24px;
  padding-left: 20px;
}

.inner__text .privacy__link {
  display: inline;
  font-weight: normal;
  color: #1b8b62;
  font-size: 16px;
  line-height: 24px;
  text-decoration: underline;
}

.banner__actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}

.banner__actions .accept__cookie {
  box-sizing: border-box;
  display: inline-block;
  min-width: 164px;
  padding: 11px 13px;
  border-radius: 2px;
  background-color: #1b8b62;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.banner__actions .accept__cookie:hover {
  filter: brightness(85%);
}
.banner__actions .reject__cookie {
  padding: 9px 13px;
  border: 2px solid #3a4649;
  background-color: transparent;
  color: white;
}

.banner__actions .reject__cookie:hover {
  border-color: #1b8b62;
  color: #1b8b62;
}
.privacy-consent-banner__description {
  margin-bottom: 16px;
}

.privacy-consent-banner__description p {
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .cookie{
    background-image: url(../images/blur-lsw-mobile.jpeg);
    height: fit-content;
  }
}

.reject__container {
  background-color: #2d2c2f;
  width: 100vw;
  height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.reject__container p {
  margin-bottom: 16px;
  font-weight: normal;
  color: white;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}

.reject__container button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 164px;
  padding: 11px 13px;
  border-radius: 2px;
  background-color: #1b8b62;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
}

.reject__container button:hover {
  filter: brightness(85%);
}
