.title-category-color {
	color: white;
}

.specific-box-middle a:hover {
	color: var(--bs-gray-700);
}

.body-categories-recommended {
	background-color: #eeeeee;
}

.specific-box-3a ul {
	list-style-type: none;
}

.specific-box-3 {
	background-color: #eeeeee;
}

.specific-box-3-top p {
	margin-bottom: 0px;
}

.specific-box-3-top a {
	position: absolute;
	right: 0;
	bottom: 0;
}

.collapseItemsMenu {
	position: inherit !important;
}

.background-collapse {
	background-color: #efefef
}

.specific-box-3-top a:hover {
	color: rgba(0, 0, 0, 0.7);
}

.specific-box-3-top p {
	font-weight: 600;
	color: rgba(0, 0, 0, 0.9);
}

.specific-filter {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid rgba(0, 0, 0, 0.2);
	padding: 5px 0px;
	padding-right: 5px;
  }

  .specific-filter p {
	color: rgba(0, 0, 0, 0.6);
	font-weight: 600;
  }

.specific-filters .specific-filter:nth-child(1) {
	border: none;
}

.specific-filters {
	padding-right: 20px;
	border: none;
	transition: all 0.3s linear;
}

.specific-filters::-webkit-scrollbar {
	width: 3px;
}

.specific-filters::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.2);
	border-radius: 10px;
}

.specific-filters::-webkit-scrollbar-thumb {
	background: #888;
}

.specific-filters::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.hide-action {
	display: none;
}

.show-action {
	display: block;
}

.separation-list-items {
	padding: 0.25rem 0;
	border-bottom: solid 1px #adb5bd;
}

.menu-lat-left-box-infotips {
	padding: 30px;
	background-color: #ffbf0a;
	border-radius: 12px;
}

.infotip-cat-title {
	font-weight: 600;
}

.txt-view-more-infotip {
	display: flex;
	justify-content: flex-end;
}

.list-modal .content-icon-related-cat {
	display: none;
}

.specific-view {
	display: flex;
	justify-content: end;
	margin-top: 1rem;
}

.specific-view input {
	border: none;
	padding: 0;
	background-color: transparent;
	font-weight: 700;
	text-decoration: underline;
}

.specific-view input:hover {
	color: rgba(0, 0, 0, 0.6);
}

.more-categories {
	display: flex;
	justify-content: space-between;
}

.more-categories input {
	border: none;
	padding: 0;
	background-color: transparent;
	font-weight: 700;
}

.collapse-item {
	display: block;
	width: 100%;
}

/* Contenedor del buscador interno en modal para filtros */
#containerSearchFilters {
	width: 0px;
	opacity: 0;
	animation-name: expanded-search-filters;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	border: solid 2px var(--swiper-theme-color);
}

#containerSearchFilters input {
	border: none;
	outline: none;
}

.height-white-element-fix {
	height: var(--height-container-searched-filters-mobile);
}

.container-list-modal {
	height: calc(100% - var(--height-container-searched-filters-mobile));
	overflow-y: scroll;
	box-sizing: border-box;
}

.container-list-modal::-webkit-scrollbar {
	width: 12px;
}
  
.container-list-modal::-webkit-scrollbar-track {
	background: rgba(0,0,0,0.1);
}

.container-list-modal::-webkit-scrollbar-thumb {
	background: rgba(0,0,0,0.5);
	border-radius: 20px;
	background: rgba(0,0,0,0.35);
}
/* Fin buscador interno */


@media screen and (max-width: 765px) {
	.more-categories input {
		color: #000000;
	}

	.specific-box-middle a:hover {
		color: rgba(0, 0, 0, 0.6);
	}

	.separation-collapse-items {
		/* padding: 0.75rem 0; */
		padding-bottom: 0.5rem;
		border-bottom: solid 5px #ffbf0b;
	}
}

@media screen and (width >= 992px) {
	/* Contenedor del buscador interno en modal para filtros */
	.height-white-element-fix {
		height: var(--height-container-searched-filters-desktop);
	}
	
	.container-list-modal {
		height: calc(100% - var(--height-container-searched-filters-desktop));
		overflow-y: scroll;
		box-sizing: border-box;
	}
	/* Fin buscador interno */
}

/* ANIMACIONES */

@keyframes expanded-search-filters {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 100%;
		opacity: 1;
	}
}