﻿html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
  /*font-weight:300;*/
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ol,
ul {
  margin: 0;
  padding: 0;
}

main,
li {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
}

strong {
  font-weight: bold;
}

a,
button {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

input, textarea, select, button {
  font-size: 1rem;
}

.nowrap {
  word-break: normal;
}

.no-display {
  display: none;
}

@font-face {
  font-family: "Digital Numbers Regular";
  font-style: normal;
  font-weight: normal;
  src: url("/fonts/DigitalNumbers-Regular.woff") format("woff");
}
body {
  width: 100%;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  font-family: "Roboto";
  font-weight: 300;
  color: #202020;
}
body .table-match-done {
  display: none;
}
body .container {
  z-index: 1;
  position: relative;
  transform-origin: top center;
}
body main {
  max-width: 1280px;
  margin: 0 auto;
}
body .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
}
body.is-tablet {
  padding-top: 24px;
}
body.is-tablet main {
  max-width: 520px;
  /*max-width: 100%;*/
}
body.is-tablet .header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}
body.is-tablet .header .teaminfo {
  order: 0;
  width: auto;
  width: 100%;
}
body.is-tablet .header .score-board {
  grid-column: 1/span 2;
  justify-content: center;
}
body.is-tablet .field-and-players {
  justify-content: center;
}
body.is-tablet .controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
body.is-tablet .controls > div {
  width: auto;
}
body.is-tablet .controls .team-controls {
  justify-self: flex-start;
}
body.is-tablet .controls .team-controls.first-child {
  justify-self: flex-end;
}

body.is-tablet.match-done .container {
  display: none;
}
body.is-tablet.match-done .table-match-done {
  top: 300px;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 2;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
body.is-tablet.match-done .table-match-done img {
  width: 60px;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 1280px;
  padding-top: 1rem;
  padding-bottom: 2rem;
  margin-top: 2rem;
  border-top: 2px solid #EAEAEA;
  align-items: flex-end;
}
.footer .logo-and-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  align-items: flex-end;
}
.footer .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: #808080;
  font-size: 10px;
}
.footer .logo img {
  width: 120px;
}
.footer .footer-btn-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.page-grid {
  display: grid;
  grid-row-gap: 1rem;
}
.page-grid .row {
  display: grid;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: repeat(12, 1fr);
}
@media only screen and (max-width: 1024px) {
  .page-grid .row {
    grid-template-columns: 1fr;
  }
}
.page-grid .row [class^=col-] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 1024px) {
  .page-grid .row [class^=col-] {
    grid-column: auto !important;
  }
}
.page-grid .row .col-12 {
  grid-column: span 12;
}
.page-grid .row .col-9 {
  grid-column: span 9;
}
.page-grid .row .col-8 {
  grid-column: span 8;
}
.page-grid .row .col-6 {
  grid-column: span 6;
}
.page-grid .row .col-4 {
  grid-column: span 4;
}
.page-grid .row .col-3 {
  grid-column: span 3;
}

.btn-wrap {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}
.btn-wrap.-right {
  justify-content: flex-end;
}
.btn-wrap.-margin-top {
  margin-top: 1rem;
}
.btn-wrap.space-between {
  justify-content: space-between;
}
.btn-wrap .btn-wrap-inner {
  display: flex;
  gap: 1rem;
}

.btn {
  border: 3px solid #2E435C;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #2E435C;
  font-size: 12px;
  min-width: 148px;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  line-height: 16px;
  letter-spacing: 1px;
  background-color: #EBEDEF;
  cursor: pointer;
  transition: ease-in-out 100ms all;
  font-family: "Roboto";
}
.btn .counter {
  border-left: 3px solid;
  display: flex;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  vertical-align: middle;
  padding: 0 3px;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  width: 20px;
}
.btn.red {
  border-color: #D32735;
  color: #D32735;
  padding-left: 4px;
}
.btn.red:before {
  content: "";
  background-image: url("/img/excl.svg");
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.btn.blue {
  border-color: #2E435C;
  background-color: #2E435C;
  color: #ffffff;
}
.btn.with-key {
  justify-content: space-between;
  padding: 0 4px 0 8px;
}
.btn.with-key .key {
  border: 2px solid #2E435C;
  height: 22px;
  min-width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  box-shadow: 2px 3px 0px 0px #2E435C;
  transform: translateY(-1px);
}
.btn.big {
  height: 50px;
  font-size: 18px;
  padding: 0 2rem;
  letter-spacing: 3px;
}
.btn.point {
  height: 50px;
  font-size: 18px;
  padding: 0 10px;
  letter-spacing: 3px;
}
.btn:hover:not(.disabled) {
  color: #ffffff;
  background-color: #2E435C;
}
.btn:hover:not(.disabled).red {
  color: #ffffff;
  background-color: #D32735;
}
.btn:hover:not(.disabled).blue {
  background-color: #1d2a3a;
  border-color: #1d2a3a;
}
.btn.disabled {
  cursor: default;
  opacity: 0.1;
  pointer-events: none;
}
.btn.btn-check, .btn.penalty-btn {
  border-width: 1px;
}
.btn.btn-check.checked, .btn.penalty-btn.checked {
  border-color: #2E435C;
  background-color: #2E435C;
  color: #ffffff;
}
.btn.btn-check.checked:after, .btn.penalty-btn.checked:after {
  position: absolute;
  right: 0;
  bottom: -3px;
  content: "";
  height: 18px;
  width: 18px;
  background-image: url(/img/check.svg);
  background-size: contain;
}
.btn.btn-check.serve:after, .btn.penalty-btn.serve:after {
  position: absolute;
  right: 6px;
  bottom: 7px;
  content: "";
  height: 18px;
  width: 18px;
  background-image: url(/img/ball_blue.svg);
  background-size: contain;
}
.btn.btn-counter {
  padding-right: 8px;
}
.btn.btn-counter.plus {
  padding-right: 32px;
}
.btn.btn-counter.plus .counter {
  width: 40px;
}

.btn-wrap-center {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 10px;
}

.btn-wrap-space {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.icon-btn {
  height: 34px;
  width: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 2px solid #2E435C;
  cursor: pointer;
}
.icon-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-btn:hover {
  color: #ffffff;
  background-color: #EBEDEF;
}

.score-board {
  font-family: "Digital Numbers Regular";
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  order: 2;
}
.score-board .score {
  border: 5px solid #2E435C;
  display: inline-flex;
  border-radius: 10px;
}
.score-board .score .score-inner {
  border-radius: 8px;
  background-color: #2E435C;
  height: 68px;
  min-width: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px solid #ffffff;
  color: #ffffff;
  font-size: 26px;
}
.score-board .score .score-inner .score-int {
  text-align: center;
  /*margin-left: -9px;*/
  margin-top: -2px;
}
.score-board .set-info {
  border: 5px solid #2E435C;
  display: inline-flex;
  border-radius: 10px;
  /*  .time {
       font-size: 20px;
  }*/
}
.score-board .set-info .set-info-inner {
  background-color: #2E435C;
  border-radius: 8px;
  background-color: #2E435C;
  height: 68px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 5px solid #ffffff;
  color: #ffffff;
}
.score-board .set-info .info {
  font-size: 20px;
}

.teaminfo {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  width: 380px;
  order: 1;
}
.teaminfo.-away {
  justify-content: flex-end;
  order: 3;
}
.teaminfo .point .point-inner {
  border: 4px solid #2E435C;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  height: 44px;
  width: 44px;
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 0 1px #2E435C;
  background-color: #D32735;
}
.teaminfo .team-name {
  font-size: 18px;
  color: #202020;
  font-weight: bold;
}

.player-list-wrap, .team-lineup-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  /*    order: 1;*/
}
.player-list-wrap .on-court .headline, .player-list-wrap .on-bench .headline, .player-list-wrap .on-outofplay .headline, .player-list-wrap .team-wrap .headline, .team-lineup-wrap .on-court .headline, .team-lineup-wrap .on-bench .headline, .team-lineup-wrap .on-outofplay .headline, .team-lineup-wrap .team-wrap .headline {
  font-size: 14px;
  font-weight: bold;
  color: #2E435C;
}
.player-list-wrap .on-court .player-list, .player-list-wrap .on-bench .player-list, .player-list-wrap .on-outofplay .player-list, .player-list-wrap .team-wrap .player-list, .team-lineup-wrap .on-court .player-list, .team-lineup-wrap .on-bench .player-list, .team-lineup-wrap .on-outofplay .player-list, .team-lineup-wrap .team-wrap .player-list {
  max-width: 380px;
  margin: auto;
}
.player-list-wrap .on-court .player-list .player, .player-list-wrap .on-bench .player-list .player, .player-list-wrap .on-outofplay .player-list .player, .player-list-wrap .team-wrap .player-list .player, .team-lineup-wrap .on-court .player-list .player, .team-lineup-wrap .on-bench .player-list .player, .team-lineup-wrap .on-outofplay .player-list .player, .team-lineup-wrap .team-wrap .player-list .player {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 24px;
  border-bottom: 1px solid #808080;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding-right: 0.5rem;
}
.player-list-wrap .on-court .player-list .player .pos-indicator, .player-list-wrap .on-bench .player-list .player .pos-indicator, .player-list-wrap .on-outofplay .player-list .player .pos-indicator, .player-list-wrap .team-wrap .player-list .player .pos-indicator, .team-lineup-wrap .on-court .player-list .player .pos-indicator, .team-lineup-wrap .on-bench .player-list .player .pos-indicator, .team-lineup-wrap .on-outofplay .player-list .player .pos-indicator, .team-lineup-wrap .team-wrap .player-list .player .pos-indicator {
  display: none;
}
.player-list-wrap .on-court .player-list .player.active, .player-list-wrap .on-bench .player-list .player.active, .player-list-wrap .on-outofplay .player-list .player.active, .player-list-wrap .team-wrap .player-list .player.active, .team-lineup-wrap .on-court .player-list .player.active, .team-lineup-wrap .on-bench .player-list .player.active, .team-lineup-wrap .on-outofplay .player-list .player.active, .team-lineup-wrap .team-wrap .player-list .player.active {
  background-color: #2E435C;
  color: #ffffff;
}
.player-list-wrap .on-court .player-list .player:last-child, .player-list-wrap .on-bench .player-list .player:last-child, .player-list-wrap .on-outofplay .player-list .player:last-child, .player-list-wrap .team-wrap .player-list .player:last-child, .team-lineup-wrap .on-court .player-list .player:last-child, .team-lineup-wrap .on-bench .player-list .player:last-child, .team-lineup-wrap .on-outofplay .player-list .player:last-child, .team-lineup-wrap .team-wrap .player-list .player:last-child {
  border-bottom: none;
}
.player-list-wrap .on-court .player-list .player .number-and-name, .player-list-wrap .on-bench .player-list .player .number-and-name, .player-list-wrap .on-outofplay .player-list .player .number-and-name, .player-list-wrap .team-wrap .player-list .player .number-and-name, .team-lineup-wrap .on-court .player-list .player .number-and-name, .team-lineup-wrap .on-bench .player-list .player .number-and-name, .team-lineup-wrap .on-outofplay .player-list .player .number-and-name, .team-lineup-wrap .team-wrap .player-list .player .number-and-name {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.player-list-wrap .on-court .player-list .player .number, .player-list-wrap .on-bench .player-list .player .number, .player-list-wrap .on-outofplay .player-list .player .number, .player-list-wrap .team-wrap .player-list .player .number, .team-lineup-wrap .on-court .player-list .player .number, .team-lineup-wrap .on-bench .player-list .player .number, .team-lineup-wrap .on-outofplay .player-list .player .number, .team-lineup-wrap .team-wrap .player-list .player .number {
  width: 24px;
  height: 24px;
  background-color: #202020;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 24px;
  justify-content: center;
  border-bottom: 1px solid #ffffff;
}
.player-list-wrap .on-court .player-list .player .name, .player-list-wrap .on-bench .player-list .player .name, .player-list-wrap .on-outofplay .player-list .player .name, .player-list-wrap .team-wrap .player-list .player .name, .team-lineup-wrap .on-court .player-list .player .name, .team-lineup-wrap .on-bench .player-list .player .name, .team-lineup-wrap .on-outofplay .player-list .player .name, .team-lineup-wrap .team-wrap .player-list .player .name {
  display: flex;
  flex-direction: row;
  gap: 6px;
  line-height: 24px;
}
.player-list-wrap .on-court .player-list .player .name > div, .player-list-wrap .on-bench .player-list .player .name > div, .player-list-wrap .on-outofplay .player-list .player .name > div, .player-list-wrap .team-wrap .player-list .player .name > div, .team-lineup-wrap .on-court .player-list .player .name > div, .team-lineup-wrap .on-bench .player-list .player .name > div, .team-lineup-wrap .on-outofplay .player-list .player .name > div, .team-lineup-wrap .team-wrap .player-list .player .name > div {
  max-width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.player-list-wrap .on-court .player-list .player .name .lastname, .player-list-wrap .on-bench .player-list .player .name .lastname, .player-list-wrap .on-outofplay .player-list .player .name .lastname, .player-list-wrap .team-wrap .player-list .player .name .lastname, .team-lineup-wrap .on-court .player-list .player .name .lastname, .team-lineup-wrap .on-bench .player-list .player .name .lastname, .team-lineup-wrap .on-outofplay .player-list .player .name .lastname, .team-lineup-wrap .team-wrap .player-list .player .name .lastname {
  font-weight: bold;
}
.player-list-wrap .on-court .player-list .player .indicators, .player-list-wrap .on-bench .player-list .player .indicators, .player-list-wrap .on-outofplay .player-list .player .indicators, .player-list-wrap .team-wrap .player-list .player .indicators, .team-lineup-wrap .on-court .player-list .player .indicators, .team-lineup-wrap .on-bench .player-list .player .indicators, .team-lineup-wrap .on-outofplay .player-list .player .indicators, .team-lineup-wrap .team-wrap .player-list .player .indicators {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  gap: 2px;
}
.player-list-wrap .on-court .player-list .player .indicators .c, .player-list-wrap .on-bench .player-list .player .indicators .c, .player-list-wrap .on-outofplay .player-list .player .indicators .c, .player-list-wrap .team-wrap .player-list .player .indicators .c, .team-lineup-wrap .on-court .player-list .player .indicators .c, .team-lineup-wrap .on-bench .player-list .player .indicators .c, .team-lineup-wrap .on-outofplay .player-list .player .indicators .c, .team-lineup-wrap .team-wrap .player-list .player .indicators .c {
  width: 14px;
  height: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
  background-color: #44CD38;
  color: #ffffff;
}
.player-list-wrap .on-court .player-list .player .indicators .l, .player-list-wrap .on-bench .player-list .player .indicators .l, .player-list-wrap .on-outofplay .player-list .player .indicators .l, .player-list-wrap .team-wrap .player-list .player .indicators .l, .team-lineup-wrap .on-court .player-list .player .indicators .l, .team-lineup-wrap .on-bench .player-list .player .indicators .l, .team-lineup-wrap .on-outofplay .player-list .player .indicators .l, .team-lineup-wrap .team-wrap .player-list .player .indicators .l {
  width: 14px;
  height: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
  background-color: #1a62b7;
  color: #ffffff;
}
.player-list-wrap .on-court .player-list .player .indicators .warning, .player-list-wrap .on-bench .player-list .player .indicators .warning, .player-list-wrap .on-outofplay .player-list .player .indicators .warning, .player-list-wrap .team-wrap .player-list .player .indicators .warning, .team-lineup-wrap .on-court .player-list .player .indicators .warning, .team-lineup-wrap .on-bench .player-list .player .indicators .warning, .team-lineup-wrap .on-outofplay .player-list .player .indicators .warning, .team-lineup-wrap .team-wrap .player-list .player .indicators .warning {
  height: 14px;
  width: 10px;
  border-radius: 2px;
  border: 1px solid #2E435C;
  background-color: #F5DF1A;
}
.player-list-wrap .on-court .player-list .player .indicators .penalty, .player-list-wrap .on-bench .player-list .player .indicators .penalty, .player-list-wrap .on-outofplay .player-list .player .indicators .penalty, .player-list-wrap .team-wrap .player-list .player .indicators .penalty, .team-lineup-wrap .on-court .player-list .player .indicators .penalty, .team-lineup-wrap .on-bench .player-list .player .indicators .penalty, .team-lineup-wrap .on-outofplay .player-list .player .indicators .penalty, .team-lineup-wrap .team-wrap .player-list .player .indicators .penalty {
  height: 14px;
  width: 10px;
  border-radius: 2px;
  border: 1px solid #2E435C;
  background-color: #F32929;
}
.player-list-wrap .on-court .player-list .player .indicators .expel, .player-list-wrap .on-bench .player-list .player .indicators .expel, .player-list-wrap .on-outofplay .player-list .player .indicators .expel, .player-list-wrap .team-wrap .player-list .player .indicators .expel, .team-lineup-wrap .on-court .player-list .player .indicators .expel, .team-lineup-wrap .on-bench .player-list .player .indicators .expel, .team-lineup-wrap .on-outofplay .player-list .player .indicators .expel, .team-lineup-wrap .team-wrap .player-list .player .indicators .expel {
  height: 16px;
  width: 17px;
  background-image: url("/img/yellowred.svg");
  background-repeat: no-repeat;
}
.player-list-wrap .on-court .player-list .player .indicators .disqualify, .player-list-wrap .on-bench .player-list .player .indicators .disqualify, .player-list-wrap .on-outofplay .player-list .player .indicators .disqualify, .player-list-wrap .team-wrap .player-list .player .indicators .disqualify, .team-lineup-wrap .on-court .player-list .player .indicators .disqualify, .team-lineup-wrap .on-bench .player-list .player .indicators .disqualify, .team-lineup-wrap .on-outofplay .player-list .player .indicators .disqualify, .team-lineup-wrap .team-wrap .player-list .player .indicators .disqualify {
  height: 16px;
  width: 30px;
  background-image: url("/img/yellowred2.svg");
  background-repeat: no-repeat;
}
.player-list-wrap .on-court .player-list .player .indicators .injury, .player-list-wrap .on-bench .player-list .player .indicators .injury, .player-list-wrap .on-outofplay .player-list .player .indicators .injury, .player-list-wrap .team-wrap .player-list .player .indicators .injury, .team-lineup-wrap .on-court .player-list .player .indicators .injury, .team-lineup-wrap .on-bench .player-list .player .indicators .injury, .team-lineup-wrap .on-outofplay .player-list .player .indicators .injury, .team-lineup-wrap .team-wrap .player-list .player .indicators .injury {
  height: 16px;
  width: 14px;
  background-image: url("/img/injury.svg");
  background-repeat: no-repeat;
}
.player-list-wrap .on-court .staff-list.active, .player-list-wrap .on-bench .staff-list.active, .player-list-wrap .on-outofplay .staff-list.active, .player-list-wrap .team-wrap .staff-list.active, .team-lineup-wrap .on-court .staff-list.active, .team-lineup-wrap .on-bench .staff-list.active, .team-lineup-wrap .on-outofplay .staff-list.active, .team-lineup-wrap .team-wrap .staff-list.active {
  background-color: #2E435C;
  color: #ffffff;
}
.player-list-wrap.-away, .team-lineup-wrap.-away {
  order: 3;
}
.player-list-wrap.-away .headline, .team-lineup-wrap.-away .headline {
  text-align: right;
}
.player-list-wrap.-away .player-list .player, .team-lineup-wrap.-away .player-list .player {
  padding-right: 0rem;
  padding-left: 0.5rem;
}
.player-list-wrap.-away .player-list .player .number-and-name, .team-lineup-wrap.-away .player-list .player .number-and-name {
  order: 2;
}
.player-list-wrap.-away .player-list .player .number-and-name .number, .team-lineup-wrap.-away .player-list .player .number-and-name .number {
  order: 2;
}

.team-lineup .team-lineup-wrap {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.team-lineup .lineup-field {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 158px;
  border: 4px solid #2E435C;
  border-top: 4px dashed #D32735;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.team-lineup .lineup-field .line-up-pos {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border: 1px solid #EBEDEF;
  font-size: 18px;
  font-weight: bold;
  color: #2E435C;
  cursor: pointer;
  transition: 100ms ease all;
  position: relative;
}
.team-lineup .lineup-field .line-up-pos:hover {
  color: #ffffff;
  background-color: #2E435C;
  border-color: #2E435C;
}
.team-lineup .lineup-field .line-up-pos.selected {
  animation: blinkingBackground 2s infinite;
  color: #ffffff;
  border-color: #2E435C;
}
.team-lineup .lineup-field .line-up-pos.filled {
  background-color: #D32735;
  color: #ffffff;
}
.team-lineup .lineup-field .line-up-pos::after {
  content: attr(data-pos);
  position: absolute;
  bottom: 0px;
  right: 4px;
  font-size: 13px;
  opacity: 0.6;
}
.team-lineup .team-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.team-lineup .team-wrap .team-field-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-content: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.team-lineup .team-wrap .headline {
  font-size: 14px;
  font-weight: bold;
  color: #2E435C;
}
.team-lineup .team-wrap.pos-selected .staff-list .staff:hover {
  background-color: #2E435C;
  color: #ffffff;
  cursor: pointer;
}
.team-lineup .staff-list {
  width: 380px;
}
.team-lineup .staff-list .staff {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 24px;
  border-bottom: 1px solid #808080;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding-right: 0.5rem;
}
.team-lineup .staff-list .staff .pos-indicator {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-color: #D32735;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 24px;
  justify-content: center;
  border-bottom: 1px solid #ffffff;
  border-radius: 4px;
}
.team-lineup .staff-list .staff.on-field {
  background-color: #EBEDEF;
}
.team-lineup .staff-list .staff.active {
  background-color: #2E435C;
  color: #ffffff;
}
.team-lineup .staff-list .staff.selected {
  background-color: #2E435C;
  color: #ffffff;
}
.team-lineup .staff-list .staff:last-child {
  border-bottom: none;
}
.team-lineup .staff-list .staff .number-and-name {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.team-lineup .staff-list .staff .number {
  width: 32px;
  height: 24px;
  background-color: #202020;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 24px;
  justify-content: center;
  border-bottom: 1px solid #ffffff;
}
.team-lineup .staff-list .staff .name {
  display: flex;
  flex-direction: row;
  gap: 6px;
  line-height: 24px;
}
.team-lineup .staff-list .staff .name > div {
  max-width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.team-lineup .staff-list .staff .name .lastname {
  font-weight: bold;
}
.team-lineup .staff-list .staff .indicators {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  gap: 2px;
}
.team-lineup .staff-list .staff .indicators .c {
  width: 14px;
  height: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
  background-color: #44CD38;
  color: #ffffff;
}
.team-lineup .staff-list .staff .indicators .l {
  width: 14px;
  height: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
  background-color: #D32735;
  color: #ffffff;
}

.center-message {
  font-size: 12px;
  text-align: center;
  color: #403F3F;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

@keyframes blinkingBackground {
  0% {
    background-color: #A1B7D0;
  }
  25% {
    background-color: #2E435C;
  }
  50% {
    background-color: #A1B7D0;
  }
  75% {
    background-color: #2E435C;
  }
  100% {
    background-color: #A1B7D0;
  }
}
.field-and-players {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.field-and-players .field {
  width: 520px;
  height: 42px;
  border-radius: 10px;
  border: 4px solid #2E435C;
  display: flex;
  flex-direction: column;
  position: relative;
}
.field-and-players .field .latest-event-wrap {
  background-color: #2E435C;
  color: #ffffff;
  font-size: 10px;
  font-weight: bold;
  height: 34px;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: flex-end;
}
.field-and-players .field .latest-event-wrap .label {
  padding: 0 14px;
  text-transform: uppercase;
  height: 100%;
  line-height: 38px;
}
.field-and-players .field .latest-event-wrap .text {
  background-color: #F6EFAA;
  color: #5D6672;
  height: 30px;
  border-radius: 8px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 415px;
  padding-left: 10px;
  padding-right: 2px;
}
.field-and-players .field .latest-event-wrap .button-undo {
  border-radius: 8px;
  border: 3px solid #2E435C;
  color: #2E435C;
  background-color: #ffffff;
  padding: 0 16px;
  height: 26px;
  line-height: 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}
.field-and-players .field .latest-event-wrap .button-undo:hover {
  background-color: #EBEDEF;
}
.field-and-players .field .overlay-running {
  position: absolute;
  width: 100%;
  height: calc(100% - 34px);
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4392156863);
  display: block;
}
.field-and-players .field .overlay-running .text {
  background-color: #D32735;
  color: #ffffff;
  border-radius: 16px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  padding: 0 2rem;
  text-transform: uppercase;
}
.field-and-players .field.paused .overlay-running {
  display: none;
}

.is-tablet {
  /* .field-and-players {
      .field {
          width: 680px;
          height: 472px;

          .positions {
              height: 432px;
              width: 334px;

              .position {
                  width: 152px;
                  height: 144px;

                  &.-wide {
                      width: 184px;
                  }
              }
          }
          .splitter{
              height:432px;
          }
          .splitter-vertical01{
              top:144px;
          }
          .splitter-vertical02{
              top:288px;
          }
          .latest-event-wrap .text{
              width:574px;
          }
      }
  }*/
}
.is-tablet .field .positions .position .position-inner .number {
  font-size: 52px;
  line-height: 52px;
}
.is-tablet .field .positions .position .position-inner .name-and-indicator {
  font-size: 13px;
}

.controls {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 2rem;
}
.controls .team-controls {
  width: 380px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.controls .team-controls.-away {
  justify-content: flex-end;
}
.controls .team-controls > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.controls .match-controls {
  width: 520px;
}
.controls .match-controls.tablet {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.controls .timer-wrap {
  border: 3px solid #D32735;
  padding: 0;
  border-radius: 8px;
  background-color: #F4F4F4;
  padding-top: 10px;
  width: 135px;
}
.controls .timer-wrap > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.controls .timer-wrap .count-down {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  padding-bottom: 10px;
}
.controls .timer-wrap .btn {
  min-width: 90px !important;
  margin: 0px 20px 10px 20px;
  height: 34px !important;
  font-size: 12px !important;
}
.controls .timer-wrap .time-out {
  background-color: #D32735;
  color: #ffffff;
  padding: 5px 1rem;
  text-align: center;
  font-weight: bold;
}
.controls .btn-wrap-space {
  display: flex;
}
.controls .btn-wrap-center {
  /*display:none;*/
  display: flex;
}
.controls.paused .btn-wrap-space {
  /*display:none;*/
}
.controls.paused .btn-wrap-center {
  /*display:flex;*/
}

.is-tablet .controls {
  gap: 8px;
  margin-top: 1.5rem;
}
.is-tablet .controls .btn {
  height: 54px;
  min-width: 166px;
  line-height: 16px;
  font-size: 20px;
}
.is-tablet .controls .btn.btn-counter {
  padding-right: 32px;
}
.is-tablet .controls .btn .counter {
  font-size: 20px;
}

.Zebra_Tooltip .Zebra_Tooltip_Arrow div.Zebra_Tooltip_Arrow_Border {
  box-shadow: none !important;
}

.popup-container {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  display: none;
  z-index: 100;
}
.popup-container.show {
  display: flex;
}
.popup-container .popup {
  display: flex;
}
.popup-container h3 {
  padding: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #EBEDEF;
  padding-left: 1rem;
  color: #F4F4F4;
  background-color: #2E435C;
  font-weight: bold;
  font-size: 16px;
}
.popup-container .info-message {
  padding: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #EBEDEF;
  padding-left: 1rem;
  color: #F4F4F4;
  background-color: #2E435C;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  margin-bottom: 1rem;
}

.popup-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.popup {
  background-color: #ffffff;
  overflow: hidden;
  border: 2px solid #2E435C;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 1rem;
  font-size: 14px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.popup form {
  padding: 0 2rem 1rem 2rem;
}
.popup .popup-content {
  padding: 0 2rem 2rem 2rem;
}
.popup .popup-content form {
  padding: 0;
  margin-bottom: 0;
}
.popup .popup-content .popup-content-inner {
  margin-bottom: 1rem;
}
.popup .popup-message {
  display: none;
  padding: 0.3rem;
  border-radius: 6px;
  border: 1px solid #D32735;
  color: #D32735;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 12px;
}
.popup .headline {
  font-size: 14px;
  font-weight: bold;
  color: #2E435C;
  margin-bottom: 5px;
}
.popup .headline.pad-tb {
  padding: 5px 0px 10px 0px;
}
.popup .headline .tab {
  cursor: pointer;
  background-color: #EBEDEF;
  border: 1px solid #2E435C;
  border-radius: 8px;
  height: 24px;
  display: inline-flex;
  min-width: 100px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.popup .headline .tab:hover {
  background-color: #2E435C;
  color: #ffffff;
}
.popup .headline .tab.selected {
  background-color: #2E435C;
  color: #ffffff;
}
.popup .popup-close {
  position: absolute;
  right: 7px;
  top: 7px;
  cursor: pointer;
}

.popup form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.popup form .btn-wrap {
  margin-top: 2rem;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

input, textarea, select {
  height: 40px;
  border: 1px solid #A1B7D0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 300;
  padding-left: 8px;
  color: #202020;
  width: 300px;
}

textarea {
  padding: 0.8rem;
  font-size: 13px;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.input-field label {
  color: #2E435C;
  font-size: 13px;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
}
.input-field.half .color-and-name {
  display: inline-flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
.input-field.half .color-and-name span.display {
  width: 212px;
}
.input-field.small input, .input-field.small span.display, .input-field.small textarea {
  width: 260px;
}
.input-field.large input, .input-field.large span.display, .input-field.large textarea {
  width: 260px;
}
.input-field span.display {
  font-size: 16px;
}

.colorpicker {
  height: 38px;
  width: 38px;
  border-radius: 8px;
  border: 1px solid #2E435C;
  cursor: pointer;
}

.color-picker-popup {
  position: absolute;
  display: flex;
  flex-direction: row;
  background-color: #2E435C;
  padding: 8px;
  border-radius: 4px;
  gap: 0.2rem;
  display: none;
}
.color-picker-popup.show {
  display: flex;
}
.color-picker-popup .color {
  height: 28px;
  width: 28px;
  border: 1px solid #F4F4F4;
  cursor: pointer;
}
.color-picker-popup .color:hover {
  transform: scale(1.1);
}

.team-lineup .team-lineup-wrap {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.team-lineup .lineup-field {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 158px;
  border: 4px solid #2E435C;
  border-top: 4px dashed #D32735;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.team-lineup .lineup-field .line-up-pos {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  border: 1px solid #EBEDEF;
  font-size: 18px;
  font-weight: bold;
  color: #2E435C;
  cursor: pointer;
  transition: 100ms ease all;
  position: relative;
}
.team-lineup .lineup-field .line-up-pos:hover {
  color: #ffffff;
  background-color: #2E435C;
  border-color: #2E435C;
}
.team-lineup .lineup-field .line-up-pos.selected {
  animation: blinkingBackground 2s infinite;
  color: #ffffff;
  border-color: #2E435C;
}
.team-lineup .lineup-field .line-up-pos.filled {
  background-color: #D32735;
  color: #ffffff;
}
.team-lineup .lineup-field .line-up-pos::after {
  content: attr(data-pos);
  position: absolute;
  bottom: 0px;
  right: 4px;
  font-size: 13px;
  opacity: 0.6;
}
.team-lineup .team-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.team-lineup .team-wrap .team-field-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-content: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.team-lineup .team-wrap .headline {
  font-size: 14px;
  font-weight: bold;
  color: #2E435C;
}
.team-lineup .team-wrap.pos-selected .player-list .player:hover {
  background-color: #2E435C;
  color: #ffffff;
  cursor: pointer;
}
.team-lineup .player-list {
  width: 380px;
}
.team-lineup .player-list .player {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 24px;
  border-bottom: 1px solid #808080;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  padding-right: 0.5rem;
}
.team-lineup .player-list .player .pos-indicator {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background-color: #D32735;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 24px;
  justify-content: center;
  border-bottom: 1px solid #ffffff;
  border-radius: 4px;
}
.team-lineup .player-list .player.on-field {
  background-color: #EBEDEF;
}
.team-lineup .player-list .player.active {
  background-color: #2E435C;
  color: #ffffff;
}
.team-lineup .player-list .player.selected {
  background-color: #2E435C;
  color: #ffffff;
}
.team-lineup .player-list .player:last-child {
  border-bottom: none;
}
.team-lineup .player-list .player .number-and-name {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.team-lineup .player-list .player .number {
  width: 24px;
  height: 24px;
  background-color: #202020;
  color: #ffffff;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 24px;
  justify-content: center;
  border-bottom: 1px solid #ffffff;
}
.team-lineup .player-list .player .name {
  display: flex;
  flex-direction: row;
  gap: 6px;
  line-height: 24px;
}
.team-lineup .player-list .player .name > div {
  max-width: 150px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.team-lineup .player-list .player .name .lastname {
  font-weight: bold;
}
.team-lineup .player-list .player .indicators {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: flex-end;
  gap: 2px;
}
.team-lineup .player-list .player .indicators .c {
  width: 14px;
  height: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
  background-color: #44CD38;
  color: #ffffff;
}
.team-lineup .player-list .player .indicators .l {
  width: 14px;
  height: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 8px;
  background-color: #1a62b7;
  color: #ffffff;
}

.roster-popup .player-list, .roster-popup .staff-list {
  width: 230px;
}
.roster-popup .player-staff-list {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.roster-popup .name > div {
  max-width: 100px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.center-message {
  font-size: 12px;
  text-align: center;
  color: #403F3F;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

@keyframes blinkingBackground {
  0% {
    background-color: #A1B7D0;
  }
  25% {
    background-color: #2E435C;
  }
  50% {
    background-color: #A1B7D0;
  }
  75% {
    background-color: #2E435C;
  }
  100% {
    background-color: #A1B7D0;
  }
}
.substitution.team-lineup .player-list .player {
  cursor: pointer;
}
.substitution.team-lineup .team-wrap .on-bench {
  display: none;
}
.substitution.team-lineup .team-wrap .on-bench .player {
  display: none;
  border-bottom: 0;
}
.substitution.team-lineup .team-wrap .on-bench .player.show {
  display: flex;
}
.substitution.team-lineup .team-wrap .on-bench .player.show + .show {
  border-top: 1px solid #808080;
}

.cards.team-lineup .player-list .player, .cards.team-lineup .player-list .staff, .cards.team-lineup .staff-list .player, .cards.team-lineup .staff-list .staff, .cards-sub.team-lineup .player-list .player, .cards-sub.team-lineup .player-list .staff, .cards-sub.team-lineup .staff-list .player, .cards-sub.team-lineup .staff-list .staff {
  cursor: pointer;
}
.cards.team-lineup .team-lineup-wrap .btn-wrap, .cards-sub.team-lineup .team-lineup-wrap .btn-wrap {
  flex-direction: column;
}
.cards.team-lineup .team-lineup-wrap .btn-wrap .btn, .cards-sub.team-lineup .team-lineup-wrap .btn-wrap .btn {
  justify-content: flex-start;
  padding-left: 12px;
}
.cards.team-lineup .team-lineup-wrap .btn-wrap img, .cards-sub.team-lineup .team-lineup-wrap .btn-wrap img {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.libero-in.team-lineup .player-list .player, .new-libero.team-lineup .player-list .player {
  cursor: pointer;
}

/*.team-wrap {
    .on-field {
        display: none;

        .player {
            display: none;
            border-bottom: 0;

            &.show {
                display: flex;
            }

            &.show + .show {
                border-top: 1px solid $color-medgray;
            }
        }
    }
}*/
.injury.team-lineup .player-list .player, .injury-sub.team-lineup .player-list .player {
  cursor: pointer;
}

.result-approval .approval-wrap {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.result-approval .popup-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.result-approval .form-row {
  width: 300px;
}

.referee-streaming .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 0 2rem 1rem 2rem;
}
.referee-streaming .info-text {
  margin-top: 1rem;
  font-weight: bold;
  max-width: 600px;
}

.event-history {
  max-height: 80vh;
}
.event-history .select-wrap {
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-history .table-wrap {
  max-height: 100%;
  overflow-y: auto;
}
.event-history table {
  border-collapse: collapse;
  /*border-radius:10px;*/
  overflow: hidden;
}
.event-history table thead th {
  background-color: #EFEFEF;
  color: #2E435C;
  font-weight: bold;
  font-size: 13px;
  text-align: left;
  padding: 5px 1rem;
}
.event-history table tbody td {
  font-weight: 300;
  font-size: 14px;
  text-align: left;
  padding: 5px 1rem;
}
.event-history table tbody tr {
  cursor: pointer;
}
.event-history table tbody tr:hover {
  background-color: #2E435C;
  color: #ffffff;
}
.event-history table tbody tr img {
  opacity: 0;
  padding-top: 6px;
}
.event-history table tbody tr.selected {
  background-color: #2E435C;
  color: #ffffff;
}
.event-history table tbody tr.selected img {
  opacity: 1;
}
.event-history table tbody tr.injury > td.text {
  font-weight: bold;
}
.event-history table tbody tr.injury > td.text > div:before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #D32735;
  display: flex;
}
.event-history table tbody tr.card {
  /*background-color: #ffd800;*/
}
.event-history table tbody tr.card > td.text {
  font-weight: bold;
}
.event-history table tbody tr.card > td.text > div:before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #f1d242;
  display: flex;
}
.event-history .time {
  /*font-weight:bold;*/
}
.event-history .score {
  font-weight: bold;
}
.event-history .text {
  font-size: 12px;
}
.event-history .text > div {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}

body .ui-dialog .ui-dialog-titlebar {
  padding: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #EBEDEF;
  padding-left: 1rem;
  color: #F4F4F4;
  background-color: #2E435C;
  font-weight: bold;
  font-size: 16px;
}

body .ui-dialog .ui-dialog-content h6 {
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

body .ui-widget.ui-widget-content {
  border: 0;
  border-radius: 10px;
  overflow: hidden;
}

body .ui-widget-content {
  border: 0;
}

body .ui-dialog {
  padding: 0;
  border: 0;
  border-radius: 8px;
}

body .ui-dialog .ui-dialog-buttonpane button {
  border: 3px solid #2E435C;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #2E435C;
  font-size: 12px;
  min-width: 148px;
  font-weight: 900;
  position: relative;
  text-transform: uppercase;
  line-height: 16px;
  letter-spacing: 1px;
  background-color: #EBEDEF;
  cursor: pointer;
  transition: ease-in-out 100ms all;
  margin: 0.5rem;
}
body .ui-dialog .ui-dialog-buttonpane button:hover:not(.disabled) {
  color: #ffffff;
  background-color: #2E435C;
}

body .ui-dialog .ui-dialog-buttonpane button:nth-child(2) {
  border-color: #2E435C;
  background-color: #2E435C;
  color: #ffffff;
}
body .ui-dialog .ui-dialog-buttonpane button:nth-child(2):hover:not(.disabled) {
  background-color: #1d2a3a;
  border-color: #1d2a3a;
}

body .ui-dialog .ui-dialog-buttonpane {
  padding: 1rem;
  display: flex;
}

.manual-change .team-lineup {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: space-between;
}
.manual-change .team-lineup .team-field-wrap {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin: auto;
}
.manual-change .team-lineup .line-up-pos {
  cursor: default !important;
  border: 1px solid #EBEDEF;
}
.manual-change .team-lineup .line-up-pos:hover {
  pointer-events: none !important;
  border: 1px solid #EBEDEF;
}
.manual-change .team-lineup .line-up-pos.selected {
  animation: unset !important;
  color: #fff !important;
  border: none;
  border: 1px solid #EBEDEF;
}
.manual-change .score-board-wrap {
  display: grid;
  grid-template-columns: 2fr 4fr 2fr;
  justify-items: center;
  align-items: flex-start;
}
.manual-change .score-board-wrap .serving {
  order: 3;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
.manual-change .score-board-wrap .serving:first-child {
  order: 1;
}
.manual-change .score-board-wrap .score-board {
  margin-top: 0;
}
.manual-change .score-board-wrap .score-board .score-int > input {
  width: 60px;
  text-align: center;
  background-color: #2E435C;
  color: white;
  font-family: "Digital Numbers Regular";
  font-size: 20px;
  border-color: #2E435C;
}
.manual-change .splitter {
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
}
.manual-change .input-field {
  width: 100%;
}
.manual-change .input-field textarea {
  width: 100%;
}
.manual-change .has-serve > span {
  text-transform: uppercase;
  font-weight: bold;
  color: #2E435C;
}

.login-page .header {
  flex-direction: column;
  align-items: center;
  width: 360px;
  text-align: center;
  margin: 0 auto;
  margin-top: 4rem;
}
.login-page form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 8rem;
}

.match-list-page .header {
  flex-direction: column;
  align-items: center;
  width: 360px;
  text-align: center;
  margin: 0 auto;
  margin-top: 4rem;
}
.match-list-page form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
  margin-bottom: 8rem;
}
.match-list-page form table {
  border-collapse: collapse;
  /*border-radius:10px;*/
  overflow: hidden;
}
.match-list-page form table thead th {
  background-color: #EFEFEF;
  color: #2E435C;
  font-weight: bold;
  font-size: 13px;
  text-align: left;
  padding: 5px 1rem;
}
.match-list-page form table tbody td {
  font-weight: 300;
  font-size: 14px;
  text-align: left;
  padding: 5px 1rem;
}
.match-list-page form table tbody tr {
  cursor: pointer;
}
.match-list-page form table tbody tr:hover {
  background-color: #2E435C;
  color: #ffffff;
}
.match-list-page form table tbody tr img {
  opacity: 0;
  padding-top: 6px;
}
.match-list-page form table tbody tr.selected {
  background-color: #2E435C;
  color: #ffffff;
}
.match-list-page form table tbody tr.selected img {
  opacity: 1;
}
.match-list-page .match-list-submit:disabled {
  opacity: 0.2;
}
