* {
  box-sizing: border-box;
}

.match .match-header {
  width: 100%;
  position: relative;
  background-color: #ffffff;
}

.match .match-header-data {
  width: 100%;
  min-height: 310px;
  padding: 35px 25px 30px;
  background-blend-mode: hard-light;
  position: relative;
  z-index: 1;
}

.match .match-header-data::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color:  rgba(255, 130, 7, 0.3);
  z-index: -1;
}

.match  .tournament-title {
  display: block;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  margin:  0 0 5px 0;
}

.match  .tournament-title:hover {
  text-decoration: underline;
}

.tournament-stage {
  font-size: 16px;
  color: #ffffff;
  text-align: center;
}

.match .match-header-data-info {
  display: flex;
  margin-bottom: 35px;
}

.match-header-data-middle {
  width: 60%;
  flex-shrink: 0;
}

.match-header-data-left,
.match-header-data-right {
  width: 20%;
  flex-shrink: 0;
}

.match-header-data-left {
  text-align: left;
}

.match-header-data-right {
  text-align: right;
}

.match .match-date {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 15px 0;
}

.match .match-stadium {
  font-size: 16px;
  color: #ffffff;
}

.match-stadium-address {
  color: #ffffff;
}

.match .team {
  width: calc((100% - 184px) / 2);
  height: 76px;
}

.match .team.team1 {
  text-align: left;
}

.match .team.team2 {
  text-align: right;
}

.match .team .team-tr {
  display: table;
}

.match .team .team-logo {
  width: 120px;
  height: 120px;
  margin: auto;
  display: table-cell;
  vertical-align: middle;
}

.match .team .team-logo img {
  width: 100%;
  height: 100%;
}

.match .team .team-title-cont {
  display: table-cell;
  vertical-align: middle;
  width: 272px;
  height: 66px;
  box-sizing: border-box;
  font-weight: 700;
}

.match .team.team1 .team-title-cont {
  padding: 0 10px 0 15px;
}

.match .team.team2 .team-title-cont {
  padding: 0 15px 0 10px;
}

.match .team .team-title {
  color: #ffffff;
  font-size: 22px;
  display: block;
}

.match .team .team-best {
  position: relative;
  margin-top: 16px;
}

.match .team .team-best-player {
  color: #ffffff;
  font-size: 15px;
  display: inline-block;
}

.match .team .team-best-player:hover {
  text-shadow: 0 0 0 #ffffff;
}

.match .team.team1 .team-best-player {
  text-align: left;
  padding-left: 30px;
}

.match .team.team2 .team-best-player {
  text-align: right;
  padding-right: 30px;
}

.match .team .team-best:before {
  content: '';
  position: absolute;
  top: 7px;
  width: 22px;
  height: 22px;
  background-image: url(../img/symbols-spray.png);
  background-position: 0 -49px;
}

.match .team.team1 .team-best:before {
  left: 0;
}

.match .team.team2 .team-best:before {
  right: 0;
}

.match .team .team-title-best-player {
  display: inline-block;
  font-size: 12px;
  color: #9ca1a5
}

.match .team.team1 .team-title-best-player {
  padding-left: 30px;
}

.match .team.team2 .team-title-best-player {
  padding-right: 30px;
}

.match .team .last-matches {
  list-style-type: none;
  margin-top: 8px;
  position: relative;
}

.match .team .last-matches > li {
  float: left;
  width: 16px;
  height: 16px;
  border-radius: 100%;
}

.match .team .last-matches > li > a {
  display: block;
  width: 100%;
  height: 100%;
}

.match .team.team1 .last-matches > li:not(:last-child) {
  margin-right: 6px;
}

.match .team.team2 .last-matches > li:not(:first-child) {
  margin-left: 6px;
}

.match .team .last-matches > li.win {
  background-color: #7cc576;
}

.match .team .last-matches > li.lose {
  background-color: #e57d7e;
}

.match .team .last-matches > li.draw {
  background-color: #dfd8d3;
}

.match .match-header .score {
  width: 184px;
  height: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.match .score .score-periods,
.match .score .score-digits {
  display: table-row;
}

.match .score .score-periods > span,
.match .score .score-digits > span {
  display: table-cell;
  font-size: 55px;
  letter-spacing: 1px;
}

.match .score .score-digits-main {
  color: #ffffff;
  font-size: 30px;
  position: relative;
  display: table-cell;
  vertical-align: middle;
  letter-spacing: 4px;
}

.match .score.live .score-digits-main,
.match .score.end .score-digits-main {
  font-size: 55px;
  letter-spacing: 1px;
}

.match .score.live .score-digits {
  position: relative;
}

.match .score.live .score-digits:after {
  content: 'LIVE';
  color: #ffffff;
  background-color: #ea0000;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  position: absolute;
  left: calc(50% - 24px);
  top: 256px;
  border-radius: 2px;
}

.live_score {
  color: #ffffff;
  background-color: #ea0000;
  padding: 3px 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 2px;
  margin: 15px 0 0 0;
}

.match .score.live .score-digits.with-periods-score:after {
  top: 280px;
}

.match .score .score-digits-additional {
  font-size: 35px;
  vertical-align: middle;
}

.match .score .score-periods span {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 1px;
}

.match .match-header-data-subinfo {
  width: 100%;
  text-align: center;
  margin-top: auto;
  position: relative;
  color: #ffffff;
  font-size: 15px;
}

.match .match-header-data-subinfo.with-match-best {
  margin-top: 30px;
}

.match-best .match-best-title {
  color: #252223;
  opacity: 0.7;
}

.match-best-container {
  display: inline-block;
  position: relative;
}

.match-best .match-best-player {
  color: #252223;
  font-size: 16px;
}

.match-best-container:after {
  content: '\f005';
  position: absolute;
  font-family: 'FontAwesome';
  top: 10px;
  left: -32px;
  font-size: 27px;
  color: #fec63d;
}

.match-best .match-best-player:hover {
  text-decoration: underline;
}

.match .match-header-data-subinfo > a,
.match .match-header-data-subinfo > span {
  color: #ffffff;
  font-size: 15px;
  position: relative;
}

.match .match-header-data-subinfo > a:hover {
  text-shadow: 0 0 0 #ffffff;
}

/*Блоки матча*/
.match-block {
  background-color: #ffffff;
}

.match-block.match-media {
  background-color: transparent;
}

.match-blocks .match-block-teams {
  position: relative;
}

.match-block .match-block-teams.margin-top {
  margin-top: 60px;
}

.match-blocks .match-block-teams .match-block-teams-text {
  height: 80px;
  color: #606060;
  text-transform: uppercase;
  font-size: 16px;
  text-align: center;
  line-height: 80px;
  width: initial;
}

.match-block .match-block-teams > div {
  width: 50%;
}

.match-block .match-block-teams .team1 {
  float: left;
}

.match-block .match-block-teams .team2 {
  float: right;
}

.match-block .match-block-team-cont {
  height: 80px;
  padding: 16px 24px;
  box-sizing: border-box;
  position: relative;
}

.match-block .team2 .match-block-team-cont {
  text-align: right;
}

.match-block .match-block-team-cont:before {
  content: '';
  width: 457px;
  height: 1px;
  background-color: #cbcbcb;
  position: absolute;
  bottom: 0;
}

.match-block .team1 .match-block-team-cont:before {
  left: 0;
}

.match-block .team2 .match-block-team-cont:before {
  right: 0;
}

.match-block .match-block-team-logo {
  width: 46px;
  height: 46px;
  display: inline-block;
  border: 1px solid #e1e1de;
}

.match-block .match-block-team-logo img {
  width: 100%;
  height: 100%;
}

.match-block .match-block-team-title {
  display: inline-block;
  font-size: 18px;
  color: #222222;
  position: relative;
  top: 14px;
  margin-left: 10px;
}

.match-block .team1 .match-block-team-title {
  margin-left: 10px;
}

.match-block .team2 .match-block-team-title {
  margin-left: 0;
  margin-right: 10px;
}

.match-block .match-block-team-title:hover {
  text-shadow: 0 0 0 #000000;
}

/*События матча*/
.match-events {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 5px;
}

.match-events .match-events-cont .match-events-block.shootout {
  padding-top: 20px;
}

.match-events .match-events-cont .match-events-block {
  position: relative;
}

.match .block-title {
  font-size: 16px;
  color: #252223;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255, 130, 7, 0.3);
}

.match-events .event-row {
  height: auto;
  padding: 8px 0;
  position: relative;
}

.match-events .event-row.shootout {
  padding: 5px 0;
}

.match-events .shootout .event-row:nth-of-type(2) {
  padding: 20px 0 5px 0;
}

.match-events .shootout .event-row:last-child {
  padding: 5px 0 20px 0;
}

.match-events .player {
  width: calc((100% - 120px) / 2);
}

.match-events .shootout .player {
  width: calc((100% - 247px) / 2);
}

.match-events .player .author {
  width: calc(100% - 130px);
  display: table;
  height: 40px;
}

.match-events .player .author > span {
  display: table-cell;
  vertical-align: middle;
}

.match-events .event-row.team1 .player .author > span {
  text-align: right;
}

.match-events .event-row.team2 .player .author > span {
  text-align: left;
}

.match-events .player .player-name {
  display: block;
}

.match-events .player .player-name > a {
  font-size: 16px;
  color: #000000;
}

.match-events .player .author .author-note,
.match-events .player .player-name.assist > a {
  font-size: 14px;
  color: #7a7a7a;
  font-style: italic;
}

.match-events .player .player-name.assist > a:hover {
  font-weight: 400;
}

.match-events .event-row.team1 .player .author .author-note,
.match-events .event-row.team1 .player .player-name {
  text-align: right;
}

.match-events .event-row.team2 .player .author .author-note,
.match-events .event-row.team2 .player .player-name {
  text-align: left;
}

.match-events .player .author .author-note {
  font-style: italic;
}

.match-events .event-row .event-row-icon {
  position: relative;
  width: 70px;
  margin: 0 25px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  height: 40px;;
}

.match-events .shootout .event-row .event-row-icon {
  margin: 0;
}

.match-events .event-score,
.match-events .event-time {
  position: relative;
  width: 85px;
  margin: 0 25px;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  background-color: #ff8207;
  transform: skewX(-30deg);
}

.match-events .shootout .event-score {
  margin: 0 10px;
}

.match-events .event-score span,
.match-events .event-time span {
  transform: skewX(30deg);
  display: block;
  font-size: 20px;
}

.match-events  .shootout .event-score {
  position: relative;
  top: 3px;
}

.match-events .event-time {
  position: absolute;
  top: 13px;
  left: 0;
}

.match-events .event-row-icon:not(.last):before {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 34px;
  width: 1px;
  height: 18px;
  background-color: #fdcb7e;
}

.match-events .event-row:last-of-type .event-row-icon:before,
.match-events .shootout .event-row-icon:before {
  display: none;
}

.match-events .event-score {
  letter-spacing: 3px;
  font-weight: 700;
}

.match-events .event-score.goal {
  position: absolute;
  top: 13px;
  right: 0;
}

/*Протокол матча*/
.match-protocol {
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 5px;
}

.match-protocol .match-protocol-team .match-protocol-team-members {
  position: relative;
}

.match-protocol .match-protocol-team.team1 .odd:before,
.match-protocol .match-block-teams-staff .team1 .member:not(:last-child):before {
  content: '';
  height: 2px;
  width: 97%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffd9b4;
}

.match-protocol .match-protocol-team.team2 .odd:before,
.match-protocol .match-block-teams-staff .team2 .member:not(:last-child):before {
  content: '';
  height: 2px;
  width: 97%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #ffd9b4;
}

.match-protocol .match-block-teams-staff .team1 .member:not(:last-child):before,
.match-protocol .match-block-teams-staff .team2 .member:not(:last-child):before {
  top: auto;
  bottom: 0;
}

.match-protocol .match-protocol-team .match-protocol-team-members:not(.referees):after {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #ffd9b4;
}

.match-protocol .match-protocol-team.team1 .match-protocol-team-members:not(.referees):after {
  right: 0;
}

.match-protocol .match-protocol-team.team2 .match-protocol-team-members:not(.referees):after {
  left: -2px;
}

.match-protocol .member {
  padding: 10px 0;
  position: relative;
  min-height: 50px;
}

.match-protocol .match-protocol-team-members.staffs .member {
  padding: 7px 24px 6px 0
}

.match-protocol .match-protocol-team.team1 .member {
  padding-left: 10px;
}

.match-protocol .match-protocol-team.team2 .member {
  padding-right: 10px;
}

.match-protocol .match-block-teams-referee .member:not(:last-child):before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #ffd9b4;
  position: absolute;
  bottom: 0;
  left: 0;
}

.match-protocol .member .member-number {
  width: 25px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.member-flag-container {
  position: relative;
}

.match-protocol .member .member-flag {
  margin: 0 10px;
  display: block;
  position: relative;
  top: 3px;
}

.match-protocol .member .member-flag-container::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 9px;
  width: 32px;
  height: 20px;
  border: 1px solid rgba(176, 176, 176, 0.3);
}

.match-protocol .member .member-name {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.match-protocol .member .member-position {
  font-size: 14px;
  color: #7a7a7a;
}

.match-protocol .match-protocol-team.team1 .member .member-position {
  text-align: left;
}

.match-protocol .match-protocol-team.team2 .member .member-position {
  text-align: right;
}

.match-protocol .match-protocol-team.team1 .member .member-name.referee {
  text-align: right;
  margin-right: 5px;
}

.match-protocol .match-protocol-team.team2 .member .member-name.referee {
  text-align: left;
  margin-left: 5px;
}

.match-protocol .match-protocol-team .member .member-name.referee.position {
  color: #7a7a7a;
}

.match-protocol .match-protocol-team.team1 .member .member-name.staff {
  margin-left: 5px;
}

.match-protocol .match-protocol-team.team2 .member .member-name.staff {
  margin-right: 5px;
}

.match-protocol .member .member-amplua {
  font-size: 14px;
  color: #7a7a7a;
}

.match-protocol .member .member-event {
  float: left;
  position: relative;
}

.match-protocol .match-protocol-team.team1 .member .member-event {
  margin-right: 8px;
}

.match-protocol .match-protocol-team.team2 .member .member-event {
  margin-left: 8px;
}

.match-protocol .match-protocol-team.team1 .member .member-event:last-child {
  margin-right: 10px;
}

.match-protocol .match-protocol-team.team2 .member .member-event:first-child {
  margin-left: 10px;
}

/*Статистика матча*/
.match .match-stats {
  padding: 16px 24px;
}

.match-stats .match-stats-lines {
  margin-top: 24px;
  width: 100%;
}

.match-stats .match-stats-lines-row {
  position: relative;
  padding-bottom: 16px;
}

.match-stats .match-stats-lines-row-name {
  color: #222222;
  font-size: 16px;
  text-align: center;
  padding-top: 22px;
}

.match-stats .match-stats-lines-row-stat {
  position: absolute;
  overflow: hidden;
}

.match-stats .match-stats-lines-row-stat.team1 {
  left: 0;
  margin-right: 2px;
  text-align: right;
  background: linear-gradient(to left, rgb(255, 180, 0), rgba(255, 180, 0, 0.7));
}

.match-stats .match-stats-lines-row-stat.team2 {
  right: 0;
  margin-left: 2px;
  text-align: left;
  background: linear-gradient(to right, rgb(49, 94, 126), rgba(49, 94, 126, 0.7));
}

.match-stats .match-stats-lines-row-stat.empty {
  width: 100%;
  background-color: #c9cccf;
}

.match-stats .match-stats-lines-row-stat > span {
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
}

.match-stats .match-stats-lines-row-stat.team1 > span {
  color: rgb(49, 94, 126);
  margin-right: 10px;
}

.match-stats .match-stats-lines-row-stat.team2 > span {
  color: rgb(255, 180, 0);
  margin-left: 10px;
}

.match-stats .match-stats-lines-row-stat.empty > span {
  color: #243f53;
}

.match-stats .match-stats-lines-row-stat.empty > span.left {
  margin-left: 10px;
}

.match-stats .match-stats-lines-row-stat.empty > span.right {
  margin-right: 10px;
}

.match-empty-block {
  text-align: center;
  width: 100%;
  color: #243f53;
  font-size: 15px;
  display: block;
  line-height: 50px;
}

/*История личных встреч*/

.match-history {
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 5px;
}

.match-history  .calendar-item:not(:last-child) {
  border-bottom: 2px solid rgba(255, 130, 7, 0.3);
}

.match-calendar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.match-calendar-item {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  min-height: 130px;
}

.match-calendar-item:not(:last-child) {
  border-bottom: 2px solid #ffd9b4;
}

.match-calendar-info,
.match-calendar-tournament {
  width: 27%;
  flex-shrink: 0;
}

.match-calendar-info {
  text-align: left;
  padding: 0 10px 0 0;
}

.match-calendar-tournament {
  text-align: right;
  padding: 0 0 0 10px;
}

.match-calendar-middle {
  width: 46%;
  flex-shrink: 0;
  display: flex;
}

.match-calendar-date,
.match-calendar-tournament-name {
  text-transform: uppercase;
  margin: 0 0 15px 0;
  display: block;
  color: #000000;
}

.match-calendar-tournament-name[href]:hover {
  color: #ff8207;
  transition: 0.2s;
}

.match-calendar-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130px;
  flex-shrink: 0;
}

.match-calendar-team-name {
  font-size: 16px;
  margin: 10px 0 0 0;
  text-align: center;
  color: #000000;
}

a.match-calendar-team-name[href]:hover {
  color: #ff8207;
  transition: 0.2s;
}

.match-calendar-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
  padding: 0 10px;
}

.match-calendar-score-main {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.match-calendar-score-additional {
  font-size: 16px;
  font-weight: normal;
}

.match-calendar-periods {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
}

/*Новости*/
.match .match-news {
  padding: 16px 24px;
}

.match .match-news .news {
  padding: 0;
  margin: 0;
}

/*Медиа*/
.match .match-media-photos-block,
.match .match-media-video-block,
.match .match-media-news-block {
  padding: 16px 25px;
}

.match .match-media-photos-block .section-title,
.match .match-media-video-block .section-title {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
}

.match-media-tabs {
  margin-top: 24px;
}
