
/*
** CHOSEN
*/

/* BLOG */

.post-type-archive-jogador .chosen-container,
.category .chosen-container,
.blog .chosen-container {
	width: fit-content !important;
	position: relative;
}
.post-type-archive-jogador .chosen-select~.chosen-container .chosen-drop,
.category .chosen-select~.chosen-container .chosen-drop,
.blog .chosen-select~.chosen-container .chosen-drop {
	top: 40px;
}

.post-type-archive-jogador .chosen-single,
.category .chosen-single,
.blog .chosen-single {
	border-radius: 10px;
	padding: 10px 14px 9px 14px;
	background-color: #323232;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
}

.post-type-archive-jogador .chosen-single>span,
.category .chosen-single>span,
.blog .chosen-single>span {
	color: #FFF;
	font-family: 'Inter';
	font-size: 14px;
	font-weight: 500;
	line-height: 22px; /* 157.143% */
}

.post-type-archive-jogador .chosen-single>div>b,
.category .chosen-single>div>b,
.blog .chosen-single>div>b {
    height: 6px;
    width: 12px;
	background-image: url(../images/icons/icon-filter-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
}

.post-type-archive-jogador .chosen-drop,
.category .chosen-drop,
.blog .chosen-drop {
	display: none;
	position: absolute;
	border-radius: 10px;
	background-color: #fff;
	width: 100%;
	z-index: 1;
	padding: 10px 0;
	top: 45px;
}

.post-type-archive-jogador .active-result,
.category .active-result,
.blog .active-result {
    cursor: pointer;
    padding: 8px 12px;
    font-weight: 400;
    font-size: 12px;
}


.post-type-archive-jogador .active-result:hover,
.post-type-archive-jogador .active-result.result-selected,
.category .active-result:hover,
.category .active-result.result-selected,
.blog .active-result:hover,
.blog .active-result.result-selected {
	background-color: #f4f4f4;
	font-weight: 600;
}

.post-type-archive-jogador .chosen-with-drop .chosen-drop,
.category .chosen-with-drop .chosen-drop,
.blog .chosen-with-drop .chosen-drop {
	display: flex;
	flex-direction: column;
	max-height: 380px;
	overflow-y: auto;
}

.chosen-search{
	display: none;
}

/* FORM */

.select-form .chosen-container {
	width: 100% !important;
	position: relative;
}

.select-form .chosen-select~.chosen-container .chosen-drop {
	top: 50px;
}

.select-form .chosen-default {
	border-radius: 10px;
	padding: 0 20px;
	background-color: #202020;
	border: 1px solid #424242;
	height: 57px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

.select-form .chosen-single:not(.chosen-default) {
	border-radius: 10px;
	padding: 0 20px;
	background-color: #424242;
	border: 1px solid #424242;
	height: 57px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
	position: relative;
}

.select-form .chosen-single:not(.chosen-default)::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	border-radius: 28px;
	background-color: #FCE400;
}

.select-form .chosen-default>span {
	color: #686868;
	font-family: 'Inter', sans-serif;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	line-height: 22px; /* 157.143% */
}

.select-form .chosen-single:not(.chosen-default)>span{
	color: #FFF;
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 26px; /* 173.333% */
}

.select-form .chosen-single>div>b {
    height: 18px;
    width: 12px;
	background-image: url(../images/icons/icon-plan-select.svg);
	background-size: contain;
	background-repeat: no-repeat;
	display: block;
	opacity: .3;
}

.select-form .chosen-single:not(.chosen-default)>div>b {
	opacity: 1;
}

.select-form .chosen-drop {
	display: none;
	position: absolute;
	border-radius: 10px;
	background-color: #353535;
	width: 100%;
	z-index: 1;
	top: 45px;
}

.select-form .active-result {
    cursor: pointer;
    padding: 12px 20px;
    font-weight: 400;
    font-size: 12px;
	color: #fff;
	text-transform: uppercase;
}

.select-form .active-result:hover,
.select-form .active-result.result-selected {
	background-color: #464646;
}

.select-form .chosen-with-drop .chosen-drop {
	display: flex;
	flex-direction: column;
	max-height: 380px;
	overflow-y: auto;
}

/* AJAX */
.chosen-select.error ~ .chosen-container .chosen-default>span{
	color: red;
}

@media screen and (max-width: 1500px) {
	.blog .chosen-single > span {
		font-size: 12px;
	}
}

@media screen and (max-width: 880px){
	.select-form .chosen-default{
		height: 45px;
	}
}