/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.Select input::-ms-clear {
  display: none !important;
}
.Select input::-ms-reveal {
  display: none !important;
}
.Select,
.Select div,
.Select input,
.Select span {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  box-shadow: none;
}
.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}
.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.Select.is-focused > .Select-control {
  background: #fff;
}
.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  background: #fff;
}
.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}
.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}
.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  -o-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  -o-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.Select-control > *:last-child {
  padding-right: 5px;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}
.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}
ul{padding:0;list-style:none}body{padding:0}@keyframes showMatch{0%{opacity:0;transform:translateY(-20px)}25%{opacity:0.2;transform:translateY(-15px)}50%{opacity:0.5;transform:translateY(-10px)}75%{opacity:0.75;transform:translateY(-5px)}100%{opacity:1;transform:translateY(0px)}}#scoreboard-app ul{margin:0;padding:0}#scoreboard-app *{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#scoreboard-app .liveScore{display:flex;justify-content:flex-start;align-items:center;margin-bottom:40px;opacity:0;transition:all 0.3s ease-in-out;width:100%;max-width:1270px;margin:0 auto;background-color:#fff}#scoreboard-app .liveScore.is-visible{opacity:1}#scoreboard-app .scoreboard__aside{position:relative;right:0;padding:10px;padding-left:0;margin-bottom:0;flex-shrink:0;min-width:145px;padding:0 10px;flex-shrink:0;min-width:145px;align-items:center;justify-content:center;height:73px;display:flex;padding:0 8 0 25px;padding-left:0 8 0 14px}#scoreboard-app .scoreboard__aside .Select{width:124px !important;float:right;position:relative}#scoreboard-app .scoreboard__aside .Select.is-focused:not(.is-open)>.Select-control{border:1px solid #ebebeb !important;box-shadow:none}#scoreboard-app .scoreboard__container{display:flex;width:100%;max-width:1350px;overflow:hidden;position:relative;left:0px}#scoreboard-app .scoreboard__container .match{width:auto !important;color:black;font-family:'PFBeauSansPro', sans-serif !important;padding:7px 7px 3px 7px !important}#scoreboard-app .scoreboard__container>.scoreboard__container__list{width:1000px;max-width:980px;overflow:visible;padding:0 15px 0 0;padding:0 8px 0 0}#scoreboard-app .scoreboard__container>.scoreboard__container__list .owl-item:first-child{display:none}#scoreboard-app .scoreboard__container>.scoreboard__container__list .owl-item:first-child{display:none}#scoreboard-app .Select.is-open{background-color:#fff;border-color:#ebebeb}#scoreboard-app .Select.is-open .Select-arrow:after{top:-6px;transform:rotate(270deg)}#scoreboard-app .Select-option{border-color:#ebebeb}#scoreboard-app .Select-option.is-open{background-color:#fff;border-color:#ebebeb}#scoreboard-app .Select-option.is-selected{display:none}#scoreboard-app .Select-option.is-focused{background-color:transparent}#scoreboard-app .Select-control{height:30px !important;overflow:hidden !important;border:1px solid #ebebeb;background-color:#fff}#scoreboard-app .Select-value-label,#scoreboard-app .Select-option{color:#0b1b2b !important;font-weight:400;text-transform:uppercase;letter-spacing:0.075em;font-size:12px;font-family:'PFBeauSansPro', sans-serif}#scoreboard-app .Select-menu-outer .Select-value-label,#scoreboard-app .Select-menu-outer .Select-option{border-bottom:1px solid #dfdfdf;margin:0px;padding:10px}#scoreboard-app .Select-menu-outer .Select-value-label:last-of-type,#scoreboard-app .Select-menu-outer .Select-option:last-of-type{border:none}#scoreboard-app .Select-option{font-weight:400}#scoreboard-app .Select-menu-outer{border-top-color:transparent}#scoreboard-app .Select-arrow{border:none}#scoreboard-app .Select-arrow:after{content:'';position:absolute;background:url("//www.sport24.gr/incoming/article5113700.ece/binary/original/arrow.png") no-repeat;display:block;width:7px;height:12px;top:-10px;transform:rotate(90deg);left:-6px;background-size:contain;transition:all 0.3s ease}#scoreboard-app .Select-menu{border-top:1px solid #dfdfdf;padding:0;margin:0 2px}#scoreboard-app .Select-menu-outer .Select-option,#scoreboard-app .Select-menu-outer .Select-value-label{letter-spacing:0.07rem;line-height:100%;color:#818181 !important}#scoreboard-app .Select-value-label{color:#818181 !important}#scoreboard-app .Select--single>.Select-control .Select-value,#scoreboard-app .Select-placeholder{line-height:30px}#scoreboard-app .league{display:inline-flex;flex-wrap:nowrap;justify-content:flex-start;width:max-content;font-size:14px}#scoreboard-app .league__description{background-color:#193D5E;border:1px solid #193D5E;position:relative;display:flex;flex-grow:0;flex-shrink:0;width:75px;padding:7px;justify-content:center;align-items:center;color:#fff;font-weight:600;flex-direction:column;text-decoration:none}#scoreboard-app .league__description:hover .league__description-note{opacity:1}#scoreboard-app .league__description .league__description-note{opacity:0;text-align:center;font-size:10px;transition:0.3s ease-in-out}#scoreboard-app .league__description .league_description-heading{margin-bottom:10px}#scoreboard-app .league__placeholder--ad{position:relative;display:flex;flex-grow:0;flex-shrink:0;width:150px;padding:6px;justify-content:center;align-items:center;border:1px solid blue;text-decoration:none;font-weight:600}#scoreboard-app .league__placeholder--ad a{height:100%;width:100%;text-decoration:none;align-self:center;color:#0b1b2b;text-align:center;vertical-align:baseline}#scoreboard-app .owl-item:nth-child(1) .match.is-shown{animation-delay:0.15s}#scoreboard-app .owl-item:nth-child(2) .match.is-shown{animation-delay:0.3s}#scoreboard-app .owl-item:nth-child(3) .match.is-shown{animation-delay:0.45s}#scoreboard-app .owl-item:nth-child(4) .match.is-shown{animation-delay:0.6s}#scoreboard-app .owl-item:nth-child(5) .match.is-shown{animation-delay:0.75s}#scoreboard-app .owl-item:nth-child(6) .match.is-shown{animation-delay:0.9s}#scoreboard-app .owl-item:nth-child(7) .match.is-shown{animation-delay:1.05s}#scoreboard-app .owl-item:nth-child(8) .match.is-shown{animation-delay:1.3s}#scoreboard-app .match{position:relative;display:flex;flex-grow:0;flex-shrink:0;padding:7px;border:1px solid #ebebeb;border-left:transparent;border-top:none;border-bottom:none;min-height:60px;opacity:0}#scoreboard-app .match.is-shown[data-sport]{height:100%;box-sizing:border-box}@media (max-width: 767px){#scoreboard-app .match{border:none;max-height:auto;min-width:185px}}#scoreboard-app .match:after{content:'';position:absolute;top:20px;left:1px;width:calc(100% - 2px);height:1px;background-color:#ebebeb}#scoreboard-app .match.is-shown{animation:showMatch 0.2s ease;animation-fill-mode:both}#scoreboard-app .match:hover .match__overlay{opacity:1}#scoreboard-app .match .match__overlay{position:absolute;left:0;top:0;display:flex;flex-direction:column;align-items:stretch;justify-content:center;width:100%;height:100%;background-color:#193D5E;border:1px solid #193D5E;opacity:0;transition:0.2s ease;z-index:100}#scoreboard-app .match .match__overlay--multilink .match__overlay__link:hover{background-color:rgba(255,255,255,0.1)}#scoreboard-app .match .match__overlay__link{display:flex;flex:1;align-items:center;justify-content:center;color:#fff;text-decoration:none;font-weight:600;font-size:12px}#scoreboard-app .match .match__header{position:relative;top:-3px;display:flex;align-content:center;justify-content:flex-start;font-weight:600;font-size:11px}#scoreboard-app .match .match__header .match__header__text{order:2;display:flex;width:100%;font-weight:400;transform:translateY(-0.5px);line-height:11px}#scoreboard-app .match .match__header .match__header__text .match__header__time{margin-left:auto}#scoreboard-app .match .match__header .match__header__live{order:1;margin-right:4px;font:bold 11px/11px 'PFBeauSansPro', sans-serif;color:#e20528}#scoreboard-app .match .match__body{display:flex;flex-direction:column;margin-top:6px;font-weight:600}#scoreboard-app .match .match__content{width:100%}#scoreboard-app .team{position:relative;display:flex;justify-content:flex-start;align-items:center;margin:3px 0;padding:0;font-family:'Play', sans-serif;width:100%;min-height:16px;max-width:115px}#scoreboard-app .team.has-loss .team__name,#scoreboard-app .team.has-loss .team__score{color:#a8a8a8;font:normal 11px/11px 'PFBeauSansPro', sans-serif;letter-spacing:0.05rem}body:not(.mac) #scoreboard-app .team{flex-flow:row wrap}#scoreboard-app .team .team__name,#scoreboard-app .team .team__score{font-size:11px;letter-spacing:0.05em;font-weight:400}#scoreboard-app .team .team__logo{padding:0;margin-right:5px;max-width:16px;max-height:16px;font-size:0;color:transparent}#scoreboard-app .team .team__name{margin-right:auto;margin-top:0;margin-bottom:0;flex:1;overflow:hidden;white-space:nowrap}#scoreboard-app .team .team__score{justify-self:flex-end;margin:0 0 0 15px}#scoreboard-app .owl-stage-outer .owl-item{-webkit-backface-visibility:hidden;-webkit-transform:translateZ(0) scale(1, 1);backface-visibility:hidden;transform:translateZ(0) scale(1, 1)}#scoreboard-app .owl-stage-outer .owl-item:first-child{display:none}#scoreboard-app .owl-stage-outer .owl-item:nth-child(2) .match{border-left:1px solid #ebebeb}#scoreboard-app .owl-carousel{position:relative}#scoreboard-app .owl-stage-outer{z-index:100}#scoreboard-app .owl-stage-outer .owl-stage{display:flex;padding-left:0 !important}#scoreboard-app .owl-stage-outer .owl-stage .owl-item{width:130px !important}#scoreboard-app .owl-nav{position:absolute;top:0;width:100%;height:100%}#scoreboard-app .owl-next,#scoreboard-app .owl-prev{display:block;height:100%;width:26px;position:absolute;background-color:transparent;transition:all 0.3s ease;z-index:200;font-size:0;background-color:#fff}#scoreboard-app .owl-next:hover,#scoreboard-app .owl-prev:hover{background-color:#f7f7f7}#scoreboard-app .owl-next.disabled,#scoreboard-app .owl-prev.disabled{box-shadow:none;opacity:0;cursor:default}#scoreboard-app .owl-next:after,#scoreboard-app .owl-prev:after{content:'';position:absolute;background:url("//www.sport24.gr/incoming/article5113700.ece/binary/original/arrow.png") no-repeat;display:block;top:31px;width:10px;height:13px;background-size:contain}#scoreboard-app .owl-next{right:-12px;box-shadow:-6px 0 7px 0px rgba(136,136,136,0.478431);border-right:1px solid #efefef}#scoreboard-app .owl-next:after{left:8px;transform:rotate(0deg)}#scoreboard-app .owl-prev{left:0px;box-shadow:6px 0 7px 0px rgba(136,136,136,0.478431);border-left:1px solid #efefef}#scoreboard-app .owl-prev:after{right:10px;transform:rotate(180deg)}#scoreboard-app .scoreboard__container__sponsored{width:96px;text-align:center;left:10px;padding:9px 0}#scoreboard-app .scoreboard__container__sponsored .scoreboard__container__sponsored__anchor{display:block;margin-top:-4px}#scoreboard-app .scoreboard__container__sponsored .scoreboard__container__sponsored__text{position:relative;top:-4px;margin:0;font-size:9px;letter-spacing:0.06em}#scoreboard-app .scoreboard__container__sponsored .scoreboard__container__sponsored__image{width:75px;height:34px}#scoreboard-app .advertisementTitle{display:block;width:300px !important;margin:10px auto 10px auto;border-bottom:1px solid #d9d9d9}#scoreboard-app .advertisementTitle .ad_label{width:126px;margin:0 auto;font-family:'Roboto Condensed', sans-serif;font-size:11px;height:11px;line-height:11px;color:#ccc;position:relative;background:#fff;top:5px;text-align:center;letter-spacing:1.5px}body{margin:0}
#scoreboard-app .liveScore.sport24{max-width:1270px;min-width:980px;height:72px;align-items:stretch;font-family:PFBeauSansPro,sans-serif !important}#scoreboard-app .liveScore.sport24 .scoreboard__aside,#scoreboard-app .liveScore.sport24 .scoreboard__container__sponsored{box-sizing:border-box;width:145px;flex:1 0 auto}#scoreboard-app .liveScore.sport24 .scoreboard__aside{margin:0 !important;min-width:unset !important;height:unset;padding:0 16px;border-left:1px solid #ebebeb;flex-direction:column}#scoreboard-app .liveScore.sport24 .scoreboard__aside .scoreboard__matchcenter-logo{margin-bottom:6px}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select{width:100% !important}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-input,#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-control{height:unset !important}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select.Select--single>.Select-control .Select-value{line-height:1}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-placeholder{line-height:1.1 !important;height:unset !important;padding:6px 10px 4px;position:relative}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-value:hover{cursor:pointer}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-value-label,#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-option{font-family:'PFBeauSansPro', sans-serif;font-size:11px}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-value-label{color:#818181 !important;position:relative;line-height:1}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-arrow:after{top:-6px !important;width:6px;height:11px;left:unset;right:-5px}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select.is-open .Select-arrow::after{top:-4px !important}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-menu-outer .Select-value-label{letter-spacing:0.07rem;line-height:100%;color:#818181 !important}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-menu-outer .Select-option{padding:4px 9px}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-menu-outer .Select-option:hover{background-color:#fafafa}#scoreboard-app .liveScore.sport24 .scoreboard__aside .Select .Select-menu-outer .Select-option:nth-child(2){border-top:none}#scoreboard-app .liveScore.sport24 .scoreboard__container{max-width:1125px}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list{width:100% !important;max-width:1125px !important;min-width:690px;padding:0 !important}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match{width:auto !important;color:black;font-family:'PFBeauSansPro', sans-serif !important;padding:7px 7px 3px 7px !important;border-top:none;border-bottom:none;min-height:unset;text-align:left}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match .match__overlay{color:#ffffff !important}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match .match__header .match__header__live{font:bold 11px/11px 'PFBeauSansPro', sans-serif}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match .match__header .match__header__text{transform:translateY(-0.5px);line-height:11px}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match .match__body{margin-top:6px !important}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match .match__body .team{padding:0 !important;font-family:'PFBeauSansPro', sans-serif;min-height:16px}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match .match__body .team .team__score,#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .match .match__body .team .team__name{font:normal 11px/11px 'PFBeauSansPro', sans-serif !important;letter-spacing:0.05rem}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .owl-carousel,#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .owl-stage-outer{height:100%}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .owl-next{right:0}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .owl-next::after,#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .owl-prev::after{top:31px !important}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .owl-next.disabled,#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__list .owl-prev.disabled{cursor:default}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__sponsored{padding-top:14px !important;border:solid #ebebeb;border-width:0 1px;position:relative;left:-1px}#scoreboard-app .liveScore.sport24 .scoreboard__container .scoreboard__container__sponsored .scoreboard__container__sponsored__text{color:black;font-weight:400;margin:0 !important}
