html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

* {
	-webkit-tap-highlight-color: transparent;
}

.job-listings-container {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
	background-color: #f9f9f9;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.job-listing {
	-webkit-flex: 1 1 calc(33.333% - 20px);
	flex: 1 1 calc(33.333% - 20px);
	background-color: #fff;
	padding: 15px;
	border: 1px solid #e0e0e0;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	/*-webkit-justify-content: space-between;
	justify-content: space-between;*/
	/*overflow: hidden;*/
	-webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
	transition: transform 0.2s, box-shadow 0.2s;
	line-height: 1.3;
	position: relative;
	/*max-width:50%;*/
	padding-bottom: 50px;
}

.job-listing:hover {
	/*-webkit-transform: translateY(-5px);
	transform: translateY(-5px);*/
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.job-listing__title {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin: 18px 0 10px 0 !important;
	line-height: 1.3;
}

.job-listing__description {
	font-size: 15px;
	color: rgb(33, 37, 41);
	margin-bottom: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
	flex-grow: 1;
	/*height: -webkit-fill-available;*/
}

.job-listing__date {
	font-size: 13px;
	color: #64666c;
	text-align: right;
	margin-top: auto;
	font-weight: 400;
	line-height: 1;
}

.no-jobs-message {
	font-size: 16px;
	text-align: center;
	color: #666;
	padding: 20px;
	background-color: #f2f2f2;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	border: 1px solid #ddd;
}

.job-listing__button {
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 0 10px;
	line-height: 35px;
	font-size: 13px;
	font-weight: 400;
	color: #fff;
	background-color: #d33;
	border: none;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	text-transform: uppercase;
	-webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
	position: absolute;
	bottom: 0;
	right: 15px;

}

.job-listing__button:hover {
	background-color: #cc2e2e;
	/*-webkit-transform: translateY(-2px);
	transform: translateY(-2px);*/
}

.job-listing__button:active {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	background-color: #bb2929;
}

.job-listing__button-text {
	margin-right: 10px;
}

.job-listing__button-icon {
	font-size: 16px;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	overflow: hidden;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.modal.show {
	display: block;
	opacity: 1;
}

.modal__content {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 30px;
	width: 67%;
	max-height: 80vh;
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
	-webkit-clip-path: inset(0 round 12px);
	clip-path: inset(0 round 12px);
	line-height: 1;
}

.modal__close-btn {
	position: sticky;
	top: 0;
	font-size: 20px;
	font-weight: 700;
	color: #555;
	background: 0;
	border: none;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	float: right;
	line-height: 0;
}

.modal__close-btn:hover {
	color: #000;
}

.modal__content .modal__title {
	margin: 0 15px 20px !important;
	font-size: 27px;
	font-weight: 700;
	color: #333;
	text-align: center;
	line-height: 1.3;
}

.modal__description {
	font-size: 17px;
	line-height: 1.6;
	color: #666;
	margin: 20px 0 20px;
	display: flex;
	justify-content: center;
}

#modal__job-content {
	width: 90%;
	display: inline-block;
}

#modal__job-content ol,
#modal__job-content ul {
	margin: 16px 0;
	padding-left: 40px;
	list-style: auto;
}

#modal__job-content li {
	padding: 0;
	margin: 0;
	font-size: 17px;
	color: #666;
}

#modal__job-content p {
	font-size: 17px;
	line-height: 1.3;
	margin: 0;
	color: #666;
}

.the-content .category-container {
	text-align: center;
	font-size: 29px;
	line-height: 1.3;
}

.the-content .category-container:before,
.the-content .category-container span:before {
	content: none;
}

.category-name {
	color: #dd3333;
	text-transform: lowercase;
}

.cityc-name {
	color: #dd3333;
}

.category-description {
	font-size: 23px;
	text-align: center;
	line-height: 1.3;
}

.search-container {
	margin-bottom: 20px;
	text-align: center;
}

#search-input {
	width: 50%;
	max-width: 500px;
	min-width: 200px;
	padding: 12px 15px;
	font-size: 16px;
	border: 1px solid #ccc;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	outline: 0;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#search-input:hover {
	border-color: #d33;
}

#search-input:focus {
	border-color: #bb2929;
	-webkit-box-shadow: 0 3px 6px rgba(0, 91, 187, 0.3);
	box-shadow: 0 3px 6px rgba(0, 91, 187, 0.3);
}

.modal__address-container,
.modal__website-container {
	margin-top: 5px;
	font-size: 17px;
	color: #333;
	padding-left: 5%;
	display: none;
	line-height: 1.3;
}

.modal__category-value {
	text-transform: lowercase;
	font-weight: 400;
	color: #dd3333;
}

.job-listing__region-container {
	margin-bottom: 5px;
}

.job-listing__region-container {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	color: #64666c;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.job-listing__region-container svg {
	fill: #64666c;
}

.job-listing__date-container {
	margin-bottom: 10px;
}

.job-listing__date-container {
	font-size: 13px;
	line-height: 1.3;
	font-weight: 400;
	color: #64666c;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

.job-listing__date-container svg {
	fill: #64666c;
}

.job-listing__category {
	color: #d33;
	background: rgba(255, 87, 87, 0.08);
	font-size: 14px;
	padding: 2px 12px;
	border-radius: 3px;
	font-weight: 400;
	width: fit-content;
	text-transform: lowercase;
	border: none;
	outline: 0;
	cursor: pointer;
	line-height: 20px;
	margin-top: 7px;
	max-width: 75%;
	/*display: -webkit-box;*/
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	text-align: left;
	text-wrap: nowrap;
	overflow: hidden;
}

.class {
	/*max-width: 65%;*/
}

.job-listing__category:hover {
	text-decoration: none;
	outline: none;
}

/*.job-listing__category-value,
.job-listing__region-value {
	color: #d33;
}*/

.pagination {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	gap: 8px;
	margin: 20px 0;
	overflow: hidden;
	flex-wrap: wrap;
}

.page-btn {
	padding: 10px 15px;
	font-size: 16px;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #f9f9f9;
	color: #d33;
	cursor: pointer;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.page-btn:hover {
	background-color: #d33;
	color: #fff;
}

.page-btn:disabled {
	background-color: #ccc;
	color: #777;
	cursor: not-allowed;
}

.page-btn.active {
	background-color: #bb2929;
	color: #fff;
	border-color: #bb2929;
}

.page-numbers {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	gap: 5px;
	flex-wrap: nowrap;
}

.modal__address-label,
.modal__category-label,
.modal__date-label,
.modal__website-label {
	font-weight: 700;
	margin-right: 5px;
}

.modal__address-value,
.modal__button {
	font-weight: 400;
}

.modal__website-link {
	color: #d33;
	text-decoration: none;
	font-weight: 400;
}

.modal__website-link:hover {
	text-decoration: underline;
}

.modal__button-item {
	display: none;
}

.modal__button-container .modal__button-list {
	margin-bottom: 0;
	list-style: none;
	flex-wrap: wrap;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	gap: 8px;
}

.modal__button {
	font-size: 14px;
	color: #d33;
	line-height: 39px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 0 15px;
	background: #dd33331f;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.modal__button:hover {
	background: #d33;
	color: #fff;
	text-decoration: none;
	outline: 0;
}

.modal__button:active {
	background: #dd33331f;
	color: #d33;
	text-decoration: none;
	outline: 0;
}

.modal__button svg {
	margin-right: 7px;
	height: 15px;
	fill: #dd3333;
}

.modal__button:hover svg {
	fill: #fff;
}

.modal__button:active svg {
	fill: #dd3333;
}

.modal__button-list .modal__button-item {
	margin-left: 0;
	margin-bottom: 0;
}

.modal__button-container {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 10px;
}

.modal__apply-title {
	font-size: 20px;
	font-weight: 700;
	color: #444;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 15px;
	border-bottom: 2px solid #ddd;
	padding-bottom: 5px;
}

.modal__category-container,
.modal__publication-date {
	text-align: center;
	font-size: 14px;
	color: #333;
	display: -webkit-flex;
	display: flex;
}

.modal__category-container {
	margin: 40px auto 5px;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
	line-height: 1.3;
}

.modal__publication-date {
	margin-bottom: 40px;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
}

.modal__date-value {
	color: #666;
	font-weight: 400;
}

@media (max-width: 768px) {
	#search-input,
	.job-listing__button-icon,
	.page-btn {
		font-size: 14px;
	}

	.job-listing {
		-webkit-flex: 1 1 calc(50% - 20px);
		flex: 1 1 calc(50% - 20px);
	}

	.job-listing__button-text {
		margin-right: 8px;
	}

	.modal__content {
		padding: 20px;
		width: 67%;
	}

	.modal__content .modal__title {
		font-size: 25px;
	}

	#search-input {
		width: 70%;
	}

	.pagination {
		gap: 6px;
	}

	.page-btn {
		padding: 8px 12px;
	}

	.modal__button-container .modal__button-list {
		gap: 8px;
		-webkit-justify-content: center;
		justify-content: center;
	}
}

@media (max-width: 540px) {
	.job-listing__category,
	.job-listing__button,
	.modal__button,
	.modal__category-container,
	.modal__publication-date {
		font-size: 13px;
	}

	#search-input,
	.modal__description {
		font-size: 14px;
	}

	.job-listing {
		-webkit-flex: 1 1 100%;
		flex: 1 1 100%;
	}

	.job-listing__button-text {
		margin-right: 6px;
	}

	.modal__content {
		padding: 20px;
		width: 90%;
		max-width: 350px;
	}

	.modal__content .modal__title {
		font-size: 21px;
	}

	.modal__address-container,
	#modal__job-content li,
	#modal__job-content p,
	.modal__website-container {
		font-size: 15px;
	}

	.modal__close-btn {
		font-size: 18px;
		top: 0;
		right: 0;
	}

	.the-content .category-container {
		font-size: 20px;
	}

	.category-description {
		font-size: 18px;
	}

	.search-container {
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		align-items: center;
		gap: 10px;
	}

	#search-input {
		width: 90%;
		padding: 10px 12px;
	}

	.pagination {
		-webkit-justify-content: center;
		justify-content: center;
		gap: 5px;
	}

	.page-btn {
		padding: 6px 10px;
		font-size: 12px;
		flex-shrink: 1;
	}

	.modal__apply-title {
		font-size: 17px;
		border-bottom: 2px solid #ddd;
		padding-bottom: 5px;
	}

	.modal__button {
		min-width: 190px;
		padding: 0 13px;
		line-height: 37px;
	}
}

.qba__job-categories.work-listings {
	margin-top: 20px;
	padding: 20px;
	background-color: #f9f9f9;
	border-top: 3px solid #d33;
	border-radius: 8px;
	line-height: 1.3;
}

.work-listings .qba__flex-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.work-listings .qba__job-category-title {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
}

.work-listings .qba__job-category-title:before {
	content: none;
}

.work-listings .qba__dropdown-container {
	position: relative;
	margin-bottom: 20px;
}

.work-listings .qba__dropdown-container:hover .qba__explore-button {
	background-color: #bf0008;
}

.work-listings .qba__dropdown-container:hover .qba__dropdown-menu {
	display: block;
}

.work-listings .qba__explore-button {
	background-color: #9b2c2c;
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 9px;
	cursor: pointer;
	-webkit-transition: background-color 0.3s ease;
	-moz-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}

.work-listings .qba__dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	width: -webkit-fill-available;
	max-height: 300px;
	overflow-y: auto;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.work-listings .qba__scroll-container {
	padding: 10px 0;
	-ms-overflow-style: scrollbar;
	scrollbar-width: thin;
}

.work-listings .qba__scroll-container::-webkit-scrollbar {
	width: 8px;
}

.work-listings .qba__scroll-container::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 4px;
}

.work-listings .qba__scroll-container::-webkit-scrollbar-thumb {
	background: linear-gradient(to bottom, rgb(33, 37, 41), rgb(33, 37, 41));
	border-radius: 4px;
	border: 2px solid #f0f0f0;
}

.work-listings .qba__scroll-container::-webkit-scrollbar-thumb:hover {
	background-color: rgb(33, 37, 41);
}

.work-listings .qba__dropdown-item {
	display: block;
	padding: 8px 10px;
	color: rgb(33, 37, 41);
	font-size: 16px;
	-webkit-transition: background-color 0.3s ease, color 0.3s ease;
	-moz-transition: background-color 0.3s ease, color 0.3s ease;
	-o-transition: background-color 0.3s ease, color 0.3s ease;
	transition: background-color 0.3s ease, color 0.3s ease;
	font-weight: 400;
	border-radius: 10px;
	line-height: 1.3;
	margin: 8px 10px 0;
	text-transform: lowercase;
	background-color: #fff;
	border: none;
	width: -moz-available;
	width: -webkit-fill-available;
	text-align: left;
	cursor: pointer;
}

.work-listings .qba__dropdown-item:hover {
	background-color: #f0f0f0;
	color: rgb(33, 37, 41);
	text-decoration: none;
}

.work-listings .qba__category-list {
	list-style: none;
}

.work-listings .qba__category-list-item {
	display: flex;
	align-items: baseline;
	gap: 20px;
	padding: 15px 0;
	border-bottom: 1px solid #ccc;
	line-height: 1.3;
	margin-left: 0;
}

.work-listings .qba__category-list-item:last-child {
	border-bottom: none;
}

.work-listings .qba__bullet {
	width: 10px;
	height: 10px;
	background-color: #d33;
	border-radius: 50%;
	display: inline-block;
}

.work-listings .qba__category-description {
	flex-grow: 1;
	width: min-content;
}

.work-listings .qba__category-title {
	text-transform: lowercase;
	color: #d33;
	font-weight: 700;
}

.work-listings .qba__category-text {
	color: #555;
	margin: 5px 0 0;
	line-height: 1.3;
}

.work-listings .qba__open-job-btn {
	line-height: 31px;
	font-size: 15px;
	color: #9b2c2c;
	border-width: 1px;
	border-style: solid;
	border-color: #9b2c2c;
	background: #F9E9E9;
	border-radius: 12px;
	text-align: center;
	align-self: center;
	font-weight: 400;
	padding: 0 10px;
	min-width: 180px;
	cursor: pointer;
}

.work-listings .qba__open-job-btn:hover {
	background-color: #9b2c2c;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 540px) {

	.work-listings .qba__flex-header {
		justify-content: center;
	}

	.work-listings .qba__explore-button {
		font-size: 15px;
	}

	.work-listings .qba__dropdown-item {
		font-size: 15px;
	}

	.work-listings .qba__scroll-container::-webkit-scrollbar {
		width: 5px;
	}

	.work-listings .qba__category-list-item {
		flex-direction: column;
		gap: 10px;
		margin: 0;
	}

	.work-listings .qba__category-description {
		width: auto;
		margin-bottom: 10px
	}

	.work-listings .qba__job-category-title {
		text-align: center;
	}

	.work-listings .qba__category-text {
		font-size: 15px;
	}

	.work-listings .qba__open-job-btn {
		align-self: flex-start;
	}

}























.city-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	padding: 20px;
	max-width: 1200px;
	margin: auto;
}

@media (max-width: 768px) {
	/*.city-grid {
		grid-template-columns: repeat(2, 1fr);
	}*/
}

.city {
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-in-out;
	background: linear-gradient(45deg, #F9E9E9, transparent);
	position: relative;
}

.city:hover {
	transform: scale(1.05);
}

.luna {
	/*width: 100%;
	height: auto;*/
	/*width:200px;
	height:200px;
	display: block;
	border-radius: 50%;
	object-fit: cover;
	padding: 20px;
	margin: auto;*/

	/*width: 100%;
	height: 100%;
	object-fit: cover;
	mask-image: url('/wp-content/plugins/work-listings/versions/v1.1/assets/img/florida.png'); /* Archivo de máscara */
	/*mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: center;*/

	object-fit: cover;
	height: 100%;


}

.city-image {
	/*width: 200px;
	height: 200px;
	margin:auto;
	padding:20px;*/

	position: relative;
	width: 180px;
	height: 180px;
	z-index: 0;
	margin: auto;


}

.city-name {
	background-color: #d33;
	color: white;
	padding: 10px;
	margin: 0;
	font-size: 14px;
	font-weight: bold;
	text-wrap: nowrap;
}


.image-container {
	position: relative;
	width: 300px;
	height: 300px;
}

.city-image .tes {
	width: 160px;
	height: 160px;
	object-fit: cover;
	mask-image: url('/wp-content/plugins/work-listings/assets/img/fram1.png');
	mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url(/wp-content/plugins/work-listings/assets/img/fram1.png');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: contain;
	position: absolute;
	top: 10px;
	z-index: -1;
	left: 10px;
	/* margin: auto; */
}
.image-container .tes {
	width: 298px;
	height: 298px;
	object-fit: cover;
	mask-image: url('/wp-content/plugins/work-listings/assets/img/frame3.png');
	mask-size: cover;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: url('/wp-content/plugins/work-listings/assets/img/frame3.png');
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: contain;
	position: absolute;
	top: 1px;
	z-index: -2;
	left: 1px;
	/* margin: auto; */
}



.intro p {
	margin: 0;
}























/* ************************************************* */

.uiy__introduction .work-listings {
	margin-top: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.uiy__introduction .work-listings * {
	all: unset;
	box-sizing: border-box;
}

.work-listings .uiy__btn {
	cursor: pointer;
	border-radius: 37px;
	border: 1px solid #070026;
	background: transparent;
	color: #070026;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 41px;
	padding: 8px 11px;
	width: 30%;
	transition: color 0.15s ease-in-out, background 0.15s ease-in-out;
	-webkit-appearance: button;
	text-rendering: optimizeLegibility;
	user-select: none;
}

.work-listings .uiy__btn.active,
.work-listings .uiy__btn:hover {
	background: #070026;
	color: #fff;
}

.work-listings .uiy__icon {
	margin-right: 8px;
}

.work-listings .uiy__text {
	font-size: 14px;
	line-height: 1.3;
	font-weight: bolder;
	white-space: nowrap;
}

.work-listings #uiy__btn-eq2 {
	display: none;
}

.uiy__content p {
	margin: 0;
}

.uiy__introduction .uiy__content a {
	color: #181818;
	transition: color 0.25s ease-in-out, background 0.25s ease-in-out;
}

.uiy__introduction .uiy__content a:hover {
	background: #d33;
	color: white;
}

/* ************************************************* */


/* ************************************************* */

.utw__options {
  margin: 43px 0 32px;
}

.utw__options .work-listings * {
	all: unset;
	box-sizing: border-box;
}

.work-listings .utw__subtitle {
	font-size: 32px;
  	text-align: center;
  	display: block;
	margin-top: 40px !important;
	margin-bottom: 56px !important;
	position: relative;
	line-height: 1.3;
}

.work-listings .utw__subtitle:before {
	content: none;
}

.work-listings .utw__subtitle strong {
	font-weight: bold;
}

.work-listings .utw__subtitle:after {
	content: '⇆ Deslize para explorar';
	position: absolute;
	bottom: -48px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 18px;
	color: #d33;
	animation: blink 1s infinite;
	width: max-content;
}

.work-listings .utw__list {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 7px;
}

.work-listings .utw__list.eq1 {
	overflow-x: auto;
	scrollbar-width: none;
	margin-bottom: 7px;
}

.work-listings .utw__list.eq1.active,
.work-listings .utw__list.eq1.left.right {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), black 10%, black 90%, rgba(0, 0, 0, 0.1));
}

.work-listings .utw__list.eq1.left {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), black 10%);
}

.work-listings .utw__list.eq1.right {
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.1), black 0, black 90%, rgba(0, 0, 0, 0.1));
}

.work-listings .utw__btn-eq1 {
  cursor: pointer;
  border-radius: 37px;
  border: 1px solid #070026;
  display: flex;
  align-items: center;
  height: 41px;
  padding: 8px 11px;
  background: transparent;
  color: #070026;
  transition: color 0.15s ease-in-out, background 0.15s ease-in-out;
  user-select: none;
}

.work-listings .utw__btn-eq1:hover,
.work-listings .utw__btn-eq1:active {
  background: #070026;
  color: #fff;
}

.work-listings .utw__list.eq1.active,
.work-listings .utw__list.eq1.active .utw__btn-eq1 {
	cursor: e-resize;
}

.work-listings .utw__list.eq1.active .utw__btn-eq1:hover {
	background-color: inherit;
	color: inherit;
	/*pointer-events: none;*/
}

.work-listings .utw__icon {
	margin-right: 8px;
}

.work-listings .utw__icon.eq1 {
	pointer-events: none;
	width: 28px;
	background-color: #f3f2f2;
}

.work-listings .utw__text {
	font-size: 14px;
	line-height: 1.3;
	font-weight: bolder;
	white-space: nowrap;
}

.work-listings .utw__container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 21px;
}

.work-listings .utw__btn-eq2 {
	cursor: pointer;
	border-radius: 37px;
	border: 1px solid #070026;
	display: flex;
	align-items: center;
	height: 41px;
	background: linear-gradient(135deg, #070026 0%, #d33 100%);
	color: #fff;
	transition: background-position .15s ease-in-out;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
	padding: 8px 11px;
}

.work-listings .utw__btn-eq2:hover,
.work-listings .utw__btn-eq2:active {
	background: #d33;
}

@keyframes blink {
  0%, 50% {
	opacity: 0.5;
  }
  100% {
	opacity: 1;
  }
}

@media (max-width: 540px) {
	.work-listings .uiy__btn {
		width: fit-content;
	}

	.work-listings #uiy__btn-eq2 {
		display: flex;
	}

	.work-listings .utw__child {
		flex: 100%;
	}

	.work-listings .utw__list.eq2 {
		flex-wrap: wrap;
	}

	.work-listings .utw__item {
		flex: 100%
	}

	.work-listings .utw__btn-small {
		width: 80%;
		margin: auto;
		justify-content: center;
  	}
}

@media (max-width: 334px) {
	.work-listings .uiy__text
	.work-listings .utw__text {
		font-size: 13px;
	}

	.work-listings .utw__btn-small {
		width: 100%;
	}
}

/* ************************************************* */


.adm__container {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 38px;
	height: 38px;
	border: 1px solid #070026;
	border-radius: 50%;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.adm__container:focus {
	outline: none;
}

.adm__container .work-listings {
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
	justify-content: center;
	height: 100%;
}

.adm__container:hover .adm__container_eq2,
.adm__container:focus .adm__container_eq2,
.adm__container.active .adm__container_eq2 {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	top: calc(100% + 1px);
}



.adm__container .work-listings > * {
	all: unset;
	box-sizing: border-box;
}

.work-listings .adm__container_eq2 {
	width: unset;
	/*left: -50%;
	transform: translateX(-50%);*/
	background: #fff;
	border: 1px solid #DBDBDB;
	border-radius: 10px;
	box-shadow: 0 0 20px 5px #8894ad1f;
	/*min-width: 130px;*/
	opacity: 0;
	position: absolute;
	top: calc(100% - 1px);
	transition: 100ms;
	visibility: hidden;
	z-index: 99;
	pointer-events: none;
}

.work-listings .adm__container_eq3 {
	padding: 5px;
	align-items: center;
	justify-content: center;
	display: flex;
}

.work-listings .adm__link {
	text-decoration: none;
	margin-right: 3px;
	margin-left: 3px;
	display: inherit;
	-webkit-tap-highlight-color: transparent;
	outline: none;
}

.work-listings .adm__link svg, .work-listings .adm__button svg {
	padding: 5px;
}


.work-listings .adm__link:hover svg, .work-listings .adm__link:focus svg, .work-listings .adm__button:hover svg, .work-listings .adm__button:focus svg {
	background: #f3f2f2;
	border-radius: 6px;
}

.work-listings .test {
	fill: #070026;
}

.work-listings .adm__button {
	margin-right: 3px;
	margin-left: 3px;
	display: inherit;
	-webkit-tap-highlight-color: transparent;
	border: none;
	cursor: pointer;
	background: transparent;
	position: relative;
}

.work-listings .tooltip {
  position: absolute;
  top: -35px;
  left: auto;
  transform: translateX(-50%);
  background-color: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.work-listings .tooltip.mostrar {
  opacity: 1;
}