ul.competitions-list {
    list-style-type: none;
    padding-left: 0;
}
.competitions-list li.item {
    padding-top: 10px;
    padding-right: 20px;
    position: relative;
    margin-bottom: 5px;
    background-color: #fff;
}

.competitions-list li.item a {
    text-decoration: none;
    color: #000;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.competitions-list li.item a:hover .league-name {
	color: #E32C23;
}
.league-logo {
    height: 60px;
    width: 60px;
}
.league-logo svg {
    width: 40px;
    height: 40px;
    stroke-width: 1px;
    fill: #ccc;
}
.league-name {
    padding-left: 10px;
}
.league-name>h3 {
	font-size: 22px
}
.league-name .shortname{
	display:none;
}
@media only screen and (max-width: 768px){
	.league-name .shortname{
		display:block;
		font-size: 20px
	}
	.league-name .fullname{
		display:none;
	}
}
.league-category {
    color: #ACABAB;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
}

.justify-content-between {
    justify-content: space-between!important;
}
.justify-content-start {
    justify-content: flex-start!important;
}
.justify-content-end {
    justify-content: flex-end!important;
}
.align-items-center {
    align-items: center!important;
}
.d-flex {
    display: flex;
}