<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
.main {
	width: min(950px,100%);
	margin: 160px auto 20px;
	background: var(--block-fone);
}

.competition-info {
    padding: 7px;
    font-size: .9em;
    text-align: center;
}

.match-info-wrapper {
	background: #8a8a8a;
}

.match-info {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    padding: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.match-info &gt; span {
    border: 1px solid #ff8c00;
    padding: 7px 10px;
    border-radius: 18px;
    height: 20px;
    background: #FFF;
    box-sizing: content-box;
    display: inline-flex;
    align-items: center;
}

.match-info &gt; span::before {
    margin-right: 7px;
    color: #ff8c00;
}

.game-referees {
    text-align: center;
    padding-bottom: 15px;
    color: #FFF;
}

.game-referees a {
    color: inherit;
}

.game-referees &gt; div:not(first-child) {
    margin-top: 7px;
}

.match-item-teamsresult {
	background: #FFF;
}

.mc-match-status:not(.finished)::before {
	margin-right: 7px;
}

.match-item-team-name {
    max-width: 100%;
    font-size: 1.3em;
}

.match-item-team-name &gt; a {
	text-decoration:none;
}

.match-item-result-digit &gt; a {
    font-size: 40px;
    cursor: default;
    color: var(--base-font-color);
}

.online + .match-item-result-digit &gt; a {color: #cbcbcb;}

.compare-items {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin: 20px 0 10px;
}

.compare-items.teams &gt; span {
    font-weight: bold;
    font-size: 1.1em;
}

.compare-items &gt; .value {
    font-weight: bold;
    font-family: 'Exo_2';
}

.compare-items &gt; .description {
    font-size: .9em;
    text-align: center;
}

.compare-line {
    position: relative;
    height: 6px;
    background: #FFF;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    border: 1px solid #d1d1d1;
}

.compare-line::before {
    position: absolute;
    content: '';
    display: block;
    width: 3px;
    height: 160%;
    top: -30%;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
}

.compare-line div {height: 100%;}

.compare-line-half {
    flex: 1 1 50%;
    display: flex;
    justify-content: flex-end;
}

.compare-line-half:last-child {
    justify-content: flex-start;
}

.compare-line-home {background: #868aff;}
.compare-line-away {background: #b3b3b3;}

.protocol-compare-players {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 10px;
}

.main &gt; .protocol-compare-players {
    padding: 0 20px;
    margin: 30px 0;
}

.protocol-compare-player {
    flex-basis: 45%;
    flex-shrink: 1;
}

.protocol-compare-player &gt; .leader {
    background-color: #FFF;
    border-radius: 15px;
    box-shadow: 0 0 6px -3px #000;
    margin: 0;
}

.protocol-compare-player &gt; .leader &gt; span {
	order: 1;
}

.protocol-compare-player:last-child &gt; .leader &gt; span.player-points {flex-grow: 0;order: 0;}


img.protocol-compare-team {
    width: 50px;
    margin: 0 10px 0 0;
}

.history-fieldvalue {
    margin: 20px;
}

.match-all {
    margin-top: 30px;
}

.history-fieldvalue .field {
    font-style: italic;
    font-size: .9em;
}

.history-fieldvalue .value {
    font-family: 'Exo_2';
    font-weight: bold;
}



.player-cap {width: 30px;height: 30px;display: flex;justify-content: center;align-items: center;background: #d8d8d8;border-radius: 15px;color: #FF0000;font-weight: bold;}

.player-cap.assistant {
    color: #008000;
}

.pka {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* border: 2px solid #b9b9b9; */
    margin: 10px 0;
    border-radius: 30px;
    padding: 10px;
    gap: 15px;
    background-image: radial-gradient(ellipse at center, transparent, 75%, #000), url(/sport/images/ice-arena.jpg);
    background-color: #000;
    background-size: cover;
}

.floorball .pka {
    background-image: none;
    background-color: #cccccc;
}

.pka-order {
    position: relative;
    width: 30px;
    height: 40px;
    background: #FFF;
    border: 1px solid #aaa;
    border-radius: 10px;
    padding: 0 5px;
}

.pka-order-wrapper {
    flex-basis: 28%;
    display: flex;
    justify-content: center;
}

.pka-info {
    position: absolute;
    padding: 20% 20% 20% calc(20% + 44px);
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    min-height: 120%;
    background: #FFF;
    border: 1px solid #aaa;
    border-radius: 10px;
    z-index: -1;
    display: none;
}

.pka-order-wrapper:nth-child(3) &gt; .pka-order:hover &gt; .pka-info, .pka-order-wrapper:nth-child(5) &gt; .pka-order:hover &gt; .pka-info {
    padding: 20% calc(20% + 44px) 20% 20%;
    left: unset;
    right: -20%;
}

.pka-order:hover &gt; .pka-info {
   display: flex;
   z-index: 1;
}

.pka-number {
    position: relative;
    display: block;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--base-font-color);
}

.pka-order:hover &gt; .pka-number {
    z-index: 2;
}

span.pka-pos {
    display: none;
}

#filter-all:checked ~ .events-filter &gt; label[for="filter-all"] &gt; span,
#filter-goal:checked ~ .events-filter &gt; label[for="filter-goal"] &gt; span,
#filter-penalty:checked ~ .events-filter &gt; label[for="filter-penalty"] &gt; span,
#filter-shift:checked ~ .events-filter &gt; label[for="filter-shift"] &gt; span,
#filter-timeout:checked ~ .events-filter &gt; label[for="filter-timeout"] &gt; span,
#filter-nrshb:checked ~ .events-filter &gt; label[for="filter-nrshb"] &gt; span,
#filter-bullits:checked ~ .events-filter &gt; label[for="filter-bullits"] &gt; span {
    background: #008000;
}

#filter-all:checked ~ .events-filter &gt; label[for="filter-all"] &gt; span::before,
#filter-goal:checked ~ .events-filter &gt; label[for="filter-goal"] &gt; span::before,
#filter-penalty:checked ~ .events-filter &gt; label[for="filter-penalty"] &gt; span::before,
#filter-shift:checked ~ .events-filter &gt; label[for="filter-shift"] &gt; span::before,
#filter-timeout:checked ~ .events-filter &gt; label[for="filter-timeout"] &gt; span::before,
#filter-nrshb:checked ~ .events-filter &gt; label[for="filter-nrshb"] &gt; span::before,
#filter-bullits:checked ~ .events-filter &gt; label[for="filter-bullits"] &gt; span::before {
	visibility:visible;
}

.events-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.events-filter &gt; label {display: flex;align-items: center;gap: 4px;padding: 5px;background: var(--section-even-fone);border-radius: 7px;}

.events-filter &gt; label:hover {background: #000000;color: #FFF;}

.event-wrapper {
	display:none;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
}
#filter-all:checked ~ .events &gt; .event-wrapper,
#filter-goal:checked ~ .events &gt; .goal,
#filter-penalty:checked ~ .events &gt; .penalty,
#filter-shift:checked ~ .events &gt; .shift,
#filter-timeout:checked ~ .events &gt; .timeout,
#filter-nrshb:checked ~ .events &gt; .nrshb,
#filter-bullits:checked ~ .events &gt; .bullits {
	display: flex;
}

.events {
    position: relative;
    margin-top: 17px;
    display: flex;
    flex-direction: column-reverse;
}

.event-separator {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    margin-left: -2px;
    background: #aaa;
    border-radius: 2px;
    z-index: 0;
}

.event-item {
    flex: 1 1 50%;
    display: flex;
}

.event-item.home {
    order: 1;
    justify-content: flex-end;
}

.event-item.away {
    order: 3;
}

.event-time {
    order: 2;
    position: relative;
    z-index: 1;
    background: #FFF;
    min-width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 5px solid var(--block-fone);
    gap: 5px;
    box-sizing: content-box;
}

.goal &gt; .event-time {
    box-shadow: inset 0 0 4px 1px #f00;
}

.event-item-wrapper {
    padding: 3px;
    border: 1px solid #aaa;
    border-radius: 15px;
    background: #fff;
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
}

.event-item-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.event-item-border::before {
    content: '';
    width: 5px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FF0000;
    z-index: 1;
}

.away .event-item-border::before {
    left: unset;
    right: 0;
}

.penalty .event-item-border::before {
    background: #000;
}

.shift .event-item-border::before {
    background: #008000;
}

.nrshb .event-item-border::before {
    background: #aaa;
}

.timeout .event-item-border::before {
    background: #0046c5;
}

.bullits .event-item-border::before {
    background: #d39e27;
}

.home &gt; .event-item-wrapper {
   margin-right: 15px;
   border-left: none;
}

.away &gt; .event-item-wrapper {
    margin-left: 15px;
    border-right: none;
}

.event-content {
    flex: 1 1 100%;
    position: relative;
    padding: 2px;
}

.event-content &gt; .player {
    padding: 0;
    margin: 0px 7px;
}

.event-content &gt; .player &gt; .event-team {
    width: 50px;
}

.event-content .player-name {
    font-size: 1.2rem;
}

.shift .player::before {
	content: '';
	border-bottom: 10px solid #008000;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.dop-player {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #666;
	margin-left: 100px;
}

.shift .dop-player {
    justify-content: flex-start;
    margin-left: 7px;
}

.shift .dop-player::before {
	content: '';
	border-top: 10px solid #FF0000;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
}

.event-name {
    font-size: 14px;
    text-transform: uppercase;
}

.event-name.result {
    font-size: 26px;
    /* font-weight: bold; */
    font-family: 'Exo_2';
}

.result-goal {
    color: #FF0000;
    font-weight: bold;
}

.event-name.bullit {
    color: #888;
}

.event-time &gt; .time {
    border-top: 1px solid #aaa;
}

.time.bullit {
    font-size: .9rem;
}

.event-time &gt; .time:not(.bullit)::before {
    content: '\f017';
    color: #aaa;
    margin-right: 5px;
}

abbr {
    text-decoration: none;
}

.event-info {
    margin: 7px 0;
    font-size: .8em;
    text-transform: uppercase;
    color: #298529;
    margin-left: 74px;
}

.event-count {
    font-size: 20px;
    padding: 0px 7px;
    font-weight: bold;
    border-left: 1px solid #c3c3c3;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    order: 3;
}

.event-pm &gt; details &gt; summary {
    text-align: center;
    margin: 7px;
    cursor: pointer;
    font-size: .9rem;
    background: var(--section-even-fone);
    border-radius: 7px;
}

.event-pm &gt; details &gt; .rosters-lists {
    font-size: .9rem;
    padding: 0 5px;
}

.event-pm &gt; details .roster-team-name {
    text-align: center;
}

.away .roster-team:first-child {
    order:2;
}

.event-series {
    text-align: right;
    margin: 0 7px 10px 0;
}

.event-series-count {
    font-family: 'Exo_2';
    font-size: 1.2em;
    font-weight: bold;
}

.event-series-description {
    font-size: .9em;
}

@media (max-width:1000px) {
   .main {
    margin-top: 60px;
	}
	.match-item-teamsresult {
	flex-wrap: wrap;
	}
	.match-item-teamsresult &gt; div {
	flex-basis: 100%;
	}
}

@media (min-width:801px) {
	.protocol-compare-player:last-child img.protocol-compare-team {
    order: 10;
    margin: 0 0 0 auto;
 }
}



@media (max-width:800px) {
	.match-tabs {
		padding:0;
	}
	.event-separator {
		display: none;
	}
	.event-wrapper {
    flex-wrap: wrap;
    margin: 10px 0;
 }
	.event-time {
			order: 1;
	}
	.event-item {
			flex: 1 0 100%;
	}
	.event-item-wrapper {
			flex-grow: 1;
			margin: 10px 0 !important;
	}
	.protocol-compare-players {
		flex-wrap: wrap;
	}
	.protocol-compare-player {
		flex-grow: 1;
	}
}</pre></body></html>