/* CSS Document */

.buttonSet.entryBtn{
	&>div{
		display: grid;
		grid-gap: 8px;
	}
	& p{
		display: grid;
		grid-template-columns: auto auto auto;
		grid-gap: 16px;
		font-weight: 700;
		color: var(--color-entry);
		text-align: center;
		position: relative;
		&:before,
		&:after{
			content: "";
			width: 2px;
			height: auto;
			background: var(--color-entry);
			transform: rotate(30deg);
		}
		&:before{
			justify-self: end;
			content: "";
			width: 2px;
			height: auto;
			background: var(--color-entry);
			transform: rotate(-30deg);
		}
	}
	a{
		background: var(--color-entry);
		&:after {
			background: var(--color-entry);
		}
	}
}

li.entrySelectedTeam{
	display: grid;
	grid-gap: 8px;
}