/** live page style **/
.loader-wrapper {
    position: fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:#fff;
    z-index:999;
}

.loader-inner {
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

.loader-wrapper .spinner-border { border-width: .1em !important; }

.match-card {
    border-radius: 14px;
    transition: .3s;
}

.match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.match-card img.flag {
    max-width: 20px;
    max-height: 15px;
}

.match-card .player-row {
    width: calc(100% - 150px);
    display: flex;
    align-items: center;
}
.match-card .player-name {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: calc(100% - 40px);
}

.match-card img.ball {
    display: none;
    height: 18px;
    border-radius: 10px;
}

.match-tabs {
    align-items: center;
    border-bottom: .05rem solid #dadee4;
    display: flex;
    display: -ms-flexbox;
    -ms-flex-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: .2rem 0 .15rem 0;
}

.match-tabs .nav-item {
    flex: 1 0 0;
    text-align: center;
}

.match-tabs .nav-item .nav-link {
    width: 100%;
    border: 0;
    text-transform: uppercase;
    color: #000;
}
.match-tabs .nav-item .nav-link.active {
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #1e88e4;
    color: #1e88e4;
}

.winner {
    color: #0d6efd;
    font-weight: 600;
}

.match-card .score-card-box {
    display: flex;
    align-items: center;
    gap: 4px;
}

.score-card-box span {
    display: inline-block;
    width: 30px;
    text-align: center;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    margin: 0 .1rem;
}

.score-card-box span.pts {
    width: 35px;
    background: #393186;
    color: white;
    display: none;
}

.score-card-box .score {
    font-size: 16px;
    font-weight: 600;
}

.match-card .text-success.live::before {
    content: "";
    display: block;
	position: absolute;
	top: 7px;
	left: -12px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #198754;
	cursor: pointer;
	box-shadow: 0 0 0 rgba(20, 108, 67, .9);
    animation: pulse 2s infinite;
	animation-duration: .9s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-out;
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(20, 108, 67, .9);
		box-shadow: 0 0 0 0 rgba(20, 108, 67, .7)
	}
	70% {
		-moz-box-shadow: 0 0 0 10px transparent;
		box-shadow: 0 0 0 10px transparent
	}
	100% {
		-moz-box-shadow: 0 0 0 0 transparent;
		box-shadow: 0 0 0 0 transparent
	}
}

.section-title {
    font-weight: 600;
    margin: 1rem 0;
}
