.live-match{
	background-color: #1c3054;
	display: flex;
	justify-content: center;
	padding: 38px 0;
}
.match-teams{
	padding: 28px 140px;
    border-radius: 16px;
    background-color: #fff;
}
.match-title{
	font-size: 32px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: #21355a;
}
.teams{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.home-team-wrapper ,.away-team-wrapper{
	margin: 0 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.score-wrapper{
	display: flex;
	align-items: center;
}
.score-wrapper p{
    margin-bottom:0;
}
.score-wrapper .vs-word{
    max-width:22px;
}
.score{
	margin: 0 28px;
	font-family: Helvetica;
	font-size: 30px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: #21355a;
}
#away-penalty-score {
    margin-left:28px;
    margin-right:2px;
    font-size: 16px;
    margin-top: 15px;
} 
#home-penalty-score{
    margin-right:28px;
    margin-left:2px;
    font-size: 16px;
    margin-top: 15px;
}
.away-score {
    margin-left:0;
}
.home-score{
    margin-right:0;
}
.team-name{
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: center;
	color: #21355a;
}
.team-name {
	margin: 0;
	margin-top: 10px !important;
}
.home-match-event-wrapper p , .away-match-event-wrapper p {
	margin: 0;
}
.home-match-event-wrapper{
	display: flex;
    flex-direction: row-reverse;
    width: 100%;
	align-items: center;
	margin-top: 20px;
	
}
.away-match-event-wrapper{
	display: flex;
    flex-direction: row;
    width: 100%;
	align-items: center;
	margin-top: 20px;
	/*margin-left:55px;*/
	padding-right:110px;
}
.home-match-event-wrapper .dataWrapper{
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	border-left: 2px solid #3d4e6e;
	padding: 0 20px;
	width: 50%;
}
.away-match-event-wrapper .dataWrapper{
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	border-right: 2px solid #3d4e6e;
	padding: 0 20px;
	width: 50%;
}
.home-match-event-wrapper .dataWrapper .event-row{
	width: 100%;
	display: flex;
	justify-content: start;
}
.away-match-event-wrapper .dataWrapper .event-row{
	width: 100%;
	display: flex;
	justify-content: end;
}
.iconWrapper{
	padding: 0 20px;
}
.iconWrapper img{
    max-width:20px;
}
.match-time{
	font-size: 16px;
  	font-weight: normal;
  	font-stretch: normal;
  	font-style: normal;
  	line-height: normal;
  	letter-spacing: normal;
  	text-align: right;
  	color: #21355a;
	margin-bottom: 10px !important;
}
.match-player-name{
	font-size: 18px;
  	font-weight: normal;
  	font-stretch: normal;
  	font-style: normal;
  	line-height: normal;
  	letter-spacing: normal;
  	text-align: left;
  	color: #21355a;
}
.match-player-nameB{
    color: rgba(33, 53, 90, 0.5);
}
.match-event_name{
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: rgba(33, 53, 90, 0.5);
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

.spinner_wrapper{
     position:relative;
    display:flex;
   justify-content:center;
  
    padding-bottom:20px;
    
}
#spinner {

	border: 8px solid #f3f3f3;
	border-radius: 50%;
	border-top: 8px solid #1a365d;
	width: 45px;
	height: 45px;
	
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}



@media screen and (max-width:768px){
    .match-teams{
    	padding: 28px 50px;
        border-radius: 16px;
        background-color: #fff;
    }
    .match-title{
        font-size:25px;
    }
    .team-name{
        font-size:13px;
    }
    .score{
        font-size:20px;
    }
    #away-penalty-score , #home-penalty-score{
        font-size: 14px;
    }
    .match-player-name{
	    font-size: 14px;
    }
    .match-event_name{
	    font-size: 12px;
    }
    .match-time{
        font-size:14px;
    }
    .match-events{
        display:block;
        margin:0 20px;
    }
    .away-match-event-wrapper{
        padding-right:45px;
    }
    .home-match-event-wrapper{
        padding-left:70px;
    }
}
@media screen and (max-width:576px){
    .match-teams{
        width:100%;
        padding:20px 0;
    }
    .live-match{
        padding:38px 30px;
    }
    .home-team-wrapper, .away-team-wrapper{
        margin:0 10px;
    }
    .score{
        margin:0 15px;
    }
    #away-penalty-score {
        margin-left:15px;
    }
    #home-penalty-score{
        margin-right:15px;
    }
    .away-score {
        margin-left:0;
    }
    .home-score{
        margin-right:0;
    }
    
}