/**
 * CORDEMO SportsPress Tools
 * Player Lists selector.
 */

.cst-player-lists {
	margin: 1.5em 0;
}

.cst-player-lists__selector {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px 15px;
	margin-bottom: 1.25em;
	background: #2b353e;
	text-align: center;
}

.cst-player-lists__text {
	color: #ffffff;
	font-weight: 600;
	line-height: 1.4;
}

.cst-player-lists__select {
	min-width: 110px;
	max-width: 100%;
	padding: 7px 10px;
	background: #ffffff;
	color: #000000;
	border: 1px solid #cccccc;
	border-radius: 2px;
	font: inherit;
	line-height: 1.4;
}

.cst-player-lists__content {
	width: 100%;
}

.cst-player-lists__featured-image-wrap {
	margin: 0 0 1.25em;
	text-align: center;
}

.cst-player-lists__featured-image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

.cst-message {
	padding: 10px 0;
}

@media (max-width: 600px) {
	.cst-player-lists__selector {
		flex-wrap: wrap;
	}
}

.cst-player-lists--loading .cst-player-lists__content {
	opacity: 0.55;
	transition: opacity 0.2s ease;
}
.cst-player-lists__select:disabled {
	cursor: wait;
}

.cst-player-lists__select:focus {
	outline: 2px solid #ffffff;
	outline-offset: 2px;
}

.cst-player-lists--loading .cst-player-lists__content {
	min-height: 40px;
}

.cst-message--error {
	padding: 10px 15px;
	margin: 0 0 1em;
}
