.yellow-btn {
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 7px 15px;
    font-weight: 500;
    transition: all.2s ease-in;
}
@media screen and (max-width: 375px) {
    .yellow-btn,
    .black-btn {
        padding: 7px 5px !important;
    }
}


/*Componente Modal de Bootstrap**/

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.375rem;
    opacity: 0.5;
}
.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75;
}
.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    opacity: 1;
}
.btn-close.disabled,
.btn-close:disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: 0.25;
}
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}
.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 500px;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: var(--bs-modal-margin);
    pointer-events: none;
}
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.show .modal-dialog {
    transform: none;
}
.modal.modal-static .modal-dialog {
    transform: scale(1.02);
}
.modal-dialog-scrollable {
    height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
}
.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-backdrop-zindex);
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
}
.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: var(--bs-modal-header-padding);
    border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: var(--bs-modal-inner-border-radius);
    border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
}
.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * 0.5);
}
@media (min-width: 576px) {
    .modal {
        --bs-modal-margin: 1.75rem;
        --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
    }
    .modal-sm {
        --bs-modal-width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg,
    .modal-xl {
        --bs-modal-width: 800px;
    }
}
@media (min-width: 1200px) {
    .modal-xl {
        --bs-modal-width: 1140px;
    }
}
.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}
.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}
.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
    border-radius: 0;
}
.modal-fullscreen .modal-body {
    overflow-y: auto;
}
@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-sm-down .modal-footer,
    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-md-down .modal-footer,
    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-lg-down .modal-footer,
    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-xl-down .modal-footer,
    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }
}
@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
    .modal-fullscreen-xxl-down .modal-footer,
    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }
    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }
}

/*** Era Headerandfooter.css critico***/

.dropdown-item {
    padding: 1.25rem 2.5rem !important;
}


/*************** SIDEBAR QUE ERA CSS CRITICO *******************/

.container-sidebar {
    background-color: #fff;
    max-width: 515px;
    width: 100%;
    overflow-y: auto;
}
.container-sidebar ul.ul-sidebar {
    list-style-type: none;
}
.container-sidebar ul.ul-sidebar li {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.container-sidebar ul.ul-sidebar li a {
    color: #000;
    text-decoration: none;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.container-sidebar ul.ul-sidebar li a.link-sidebar,
.container-sidebar ul.ul-sidebar li span.span-sidebar {
    padding: 10px 0;
}
.container-sidebar ul.ul-sidebar li a:hover {
    color: var(--color-yellow-hover);
}
.dropdown-menu-in-sidebar,
.dropdown-item-inside-sidebar,
.dropdown-item-inside-sidebar:hover {
    background-color: transparent;
}
li.sidebar-item a.dropdown-item {
    padding: 10px 16px !important;
}
.ul-sidebar {
    max-width: 80%;
}


/************** OVERLAY SIDEBAR QUE ERA CSS CRITICO *******************/


.overlay {
    position: fixed;
    top: var(--height-navbar);
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-black-infoguia);
    opacity: 0;
/*    visibility: hidden;*/
}



/*********************** BOTON SIDEBAR QUE ERA CSS CRITICO *********************/

#buttonSideBar,
#buttonSideBar > span {
    transition: all 0.4s ease-in-out;
}



/*Common css original*/

.navbar-nav .nav-link {
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px;
	color: #000000;
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none;
	min-width: 56px;
}

.navform .btn-dark:hover svg {
	color: black;
}

.searchform {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 4px 20px 4px;
	background-color: white;
	z-index: 999;
}

.searchform .form-control {
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	color: #000;
	background-color: #fff;
	border: 1px solid #ced4da;
}

.searchform .form-select {
	width: 50% !important;
}

.searchform .form-control, .searchform .form-select, .btn-search {
	height: 100% !important;
}

.login {
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.log_reg .login {
	box-shadow: none;
}

.dropdown-menu {
	margin-top: 20px !important;
	padding: 0 !important;
	border: none !important;
}

.dropdown-item:hover {
	background-color: #ffbf0a;
}

.container-dropdown-user-img {
	width: 20%;
}
.container-dropdown-user-description {
	width: 80%;
}

.item-navbar-login {
	max-width: 240px;
}

.modal-header {
	border-bottom: none;
	border-top-left-radius: none;
	border-top-right-radius: none;
}

.modal-header h6 {
	font-family: 'Nunito Sans';
	font-style: normal;
	font-weight: 400;
	font-size: 29px;
	line-height: 30px;
	letter-spacing: -0.5px;
	color: #000000;
}

.div-modal-header-separator {
	border-bottom: none;
}

.icon-modal {
	width: 28px;
}

footer {
	background-color: black;
	padding: 30px 0px;
}

.footer-logo img {
	padding-bottom: 20px;
}

.sec-2-footer {
	padding: 20px 0px;
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-bottom: 10px;
}

.sec-2-footer::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(to right, #ffbf0a 16.67%, #ff4f12 16.67% 33.34%, #172675 33.34% 50.01%, #7800ff 50.01% 66.68%, #389491 66.68% 83.35%, #45c4de 83.35% 100%);
}

.footer-nav a {
	color: rgba(255, 255, 255, 0.596);
	margin-right: 30px;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.596);
	margin-right: 14px;
}

.sec-3-footer {
	padding: 20px 0px;
	padding-bottom: 60px;
	display: flex;
	justify-content: space-between;
}

.sec-4-footer {
	justify-content: space-between;
}

.branded-footer {
	color: rgba(255, 255, 255, 0.596);
	display: flex;
}

.branded-footer .link-privacy-policies {
	color: rgba(255, 255, 255, 0.596);
}

.branded-footer p {
	margin-right: 20px;
}

.content-sales-rep-modal {
	border: solid 1px rgba(0, 0, 0, 0.5);
	border-radius: 16px;
	box-sizing: border-box;
}

.modal-sales-rep-title {
	background-color: #000;
	border-radius: 15px 15px 0 0;
	color: #ffbf0a;
}

a.blue-link {
	color: var(--color-blue-infoguia)
}

a.blue-link:hover {
	color: var(--color-blue-infoguia) !important
}

.z-index-1000 {
	z-index: 1000;
}

.anim-icon-cot-float {
	animation-name: animationIconCotFloat;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
}

/* Para girar texto 90grados vertical hacia arriba */
.writing-mode-vertical-lr {
	writing-mode: sideways-lr;
}

.border-left-button-filters {
	position: relative;
  }

.border-left-button-filters::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 50%;
	border-left: 2px solid #000;
}

@media only screen and (max-width: 600px) {
	.footer-nav {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}

	.footer-nav a,
	.footer-contact a {
		margin-right: 0px;
	}

	.sec-2-footer .footer-nav {
		display: block;
	}

	.sec-3-footer .footer-nav {
		display: block;
	}

	.sec-3-footer {
		padding-bottom: 30px;
	}

	.footer-nav a {
		margin-bottom: 10px;
	}

	.branded-footer {
		display: block;
		text-align: center;
	}

	.branded-footer p:nth-child(1) {
		margin-bottom: 20px;
	}

	.sec-4-footer {
		flex-direction: column;
	}

	.footer-contact {
		text-align: center;
		margin-top: 10px;
	}

	.footer-contact a {
		color: white;
		margin: 0px 8px;
	}

	.footer-contact a:hover {
		color: rgba(255, 255, 255, 0.6);
	}

	.sec-2-footer,
	.sec-3-footer {
		padding: 5px 0px !important;
	}
}

@media only screen and (min-width: 601px) and (max-width: 767.2px) {
	.navform {
		display: none;
	}

	.footer-contact {
		text-align: center;
		margin-top: 10px;
	}

	.sec-2-footer,
	.sec-3-footer {
		padding: 3px 0px !important;
	}

	.sec-4-footer {
		margin-top: 20px !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.log_reg {
		margin-left: 25px;
		margin-top: 20px;
	}

	.sec-2-footer,
	.sec-3-footer {
		padding: 10px 0px !important;
	}

	.sec-4-footer {
		margin-top: 20px !important;
	}
}

@media only screen and (min-width: 992px) {
	.container-form-search-404 {
		max-width: 75%;
	}

	.dropdown-menu {
		background: #eeecec;
	}
}

@media only screen and (max-width: 992px) {
	.footer-nav a {
		display: block;
	}

	.footer-contact a {
		margin-right: 4px !important;
	}

	footer {
		margin-top: 10px;
	}
}

@media screen and (min-width: 601px) and (max-width: 991px) {
	.tab-hid {
		display: none !important;
	}

	.gallerytitle img {
		width: 40% !important;
	}
}

@media screen and (max-width: 600px) {
	.dropdown-item.item-country {
		padding-top: 0.5rem !important;
		padding-bottom: 0.5rem !important;
	}
}

.no-decoration-hover:hover {
	text-decoration: none;
}

.yellow-btn {
	background-color: #ffbf0b;
}

.yellow-btn:hover {
	background-color: #000 !important;
	color: white;
}

.black-btn {
	background-color: black;
}

.black-btn:hover {
	background-color: #ffbf0b;
	color: black;
}

header {
	background: white;
}

.header {
	background-color: var(--black);
	box-shadow: 1px 1px 5px 0px var(--gray);
	position: sticky;
	top: 0;
	width: 100%;
}

.form-select:focus, .form-control:focus {
	outline: 0;
	box-shadow: none;
}

.hero-text h1 {
	font-weight: bold;
	color: black;
}

.hero-text h1 span {
	color: #ffbf0b;
}

.supra-cat-name-search {
	font-weight: 500;
	line-height: 22px;
	color: #ffffff;
	flex: 1;
}

.img-check {
	max-width: 40px;
	max-height: 40px;
}


@media only screen and (max-width: 600px) {
	.img-check {
		max-width: 28px;
		max-height: 28px;
	}

	.white-background {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.hero-text h1 {
		line-height: 40px;
		color: white;
	}

	.form-select:focus {
		outline: 0;
		box-shadow: none;
	}

	.back {
		background-color: #f4f5fb;
	}

	.footer-contact a:hover {
		color: rgba(255, 255, 255, 0.6);
	}

	.back {
		background-color: #f4f5fb;
	}

	.sub-title-card-supra {
		line-height: 1rem !important;
	}
}

@media only screen and (min-width: 601px) and (max-width: 767.2px) {
	.img-check {
		max-width: 30px;
		max-height: 30px;
	}

	.sub-title-card-supra {
		line-height: 1rem !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.img-check {
		max-width: 32px;
		max-height: 32px;
	}

	.breadcrumb,
	.breadcrumbs li a,
	.breadcrumb a {
		font-size: 12px !important;
	}
}

@media (min-width: 1161px) {

	.container-form-search-404 {
		max-width: 75%;
	}
}

@media only screen and (max-width: 992px) {
	header {
		background-color: transparent;
		box-shadow: none;
	}

	.white-background {
		background-color: transparent;
	}

	.footer-nav a {
		display: block;
	}

	.header-search {
		display: none;
	}

	.margin-80 {
		padding-left: 20px;
		padding-right: 20px;
	}

}

.adsense {
	border-top: 1px solid #888888;
	border-bottom: 1px solid #888888;
	margin-top: 5%;
	margin-bottom: 5%;
}

.adsense img {
	width: 100%;
	height: auto;
	margin: 4% 0%;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 5%;
	margin-bottom: 5%;
}

.pagination a {
	color: black;
	float: left;
	padding: 8px 12px;
	text-decoration: none;
}

.form-control {
	background-color: #f4f5fb;
	background-clip: padding-box;
}

.search-back-color {
	background-color: #f4f5fb;
	background-clip: padding-box;
	appearance: none;
    border-radius: 0.375rem;
	padding: 0.50rem 0.25rem;
	font-weight: 500;
}

.search-button {
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0.68rem 0.68rem;
    font-weight: 600;
    color: white;
}

.form-check-input:focus {
	border-color: none;
	outline: 0;
	box-shadow: none;
}

.border-input-header-unscroll-desk:focus {
	border: solid 2px #5f5d5d !important;
}

.border-input-header-withscroll-desk:focus {
	border: solid 2px #5f5d5d !important;
}

.btn-group-lg>.btn,
.btn-lg {
	padding: 0.8rem 1rem;
}

.btn-secondary {
	background-color: #f4f5fb;
	border-color: #f4f5fb;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	line-height: 22px;
	text-align: center;
	color: #000000;
	width: 100%;
	border-radius: 9px;
}

.btn-dark {
	background-color: #000;
	border-color: #000;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: #fff;
	border-radius: 9px;
}

.btn-width-100 {
	width: 100%;
}

.btn-dark:hover {
	color: #000;
	background-color: #ffbf0a;
	border-color: #ffbf0a;
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
	color: #fff;
	background-color: #000;
	border-color: #000;
	box-shadow: none;
}

.btn-check:focus+.btn,
.btn:focus {
	outline: 0;
	box-shadow: none;
}

.back-btn {
	padding: 20px 20px;
}

.back-btn a {
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
}

.perfil-sec-7c-btns {
	display: inline-grid;
}

.perfil-sec-7c-btns button {
	margin-bottom: 20px;
}

.perfil-sec-7b,
.perfil-sec-7c {
	padding-top: 40px;
}

.todos-sec-1 h1 {
	font-style: normal;
	font-weight: 400;
	font-size: 36px;
	line-height: 48px;
	color: #000000;
}

.todos-sec-1 p {
	font-style: normal;
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
}

.todos-sec-1 .map button {
	border: none;
	outline: none;
	padding: 8px 15px;
	background-color: #f5f5f5;
}

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

/*.carousel-indicators [data-bs-target] {
	width: 11px;
	height: 10px;
	border-radius: 100%;
}

.carousel-indicators {
	margin-bottom: 0.4rem;
}*/

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 0px) !important;
}

.swiper-pagination-bullet {
	width: 15% !important;
	max-width: 150px;
	height: var(--swiper-pagination-bullet-height,
			var(--swiper-pagination-bullet-size, 3px)) !important;
	display: inline-block;
	border-radius: 0% !important;
	background: var(--swiper-pagination-bullet-inactive-color, #000);
}

.swiper-pagination {
	position: relative !important;
	padding-top: 1rem !important;
}

:root {
	--swiper-theme-color: #ffbf0a !important;
	--color-yellow-hover: #f8cb4f;
	--color-black-infoguia: #191919;
    --color-black-hover: #424649;
    --color-black-hover-border: #373b3e;
    --color-white-infoguia: #f0f0f0;
    --color-white-border: #dfdfdf;
	--color-blue-infoguia: #2255e1;
	--color-blue-hover: #4c74e3;
    --color-2-infoguia: #389491;
	--height-container-searched-filters-mobile: 72px;
	--height-container-searched-filters-desktop: 84px;
	--width-buttons-secondaries-profile-desktop: 250px;
	--color-white-gray: #f4f5fb;
}

.page-active {
	background-color: #ffbf0a;
}

/************************************************ COLORES SUPRACATEGORIAS ***************************************************/

.background-industria {
	background-color: #ffbf0a;
	color: #fff;
}

.background-industria-gradient {
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(255,79,18,1) 0%, rgba(255,191,10,1) 100%);
	color: #fff;
}

.border-hover-industria:hover {
	border: 1px solid #ffbf0a;
}

.border-industria {
	border-width: 1px;
	border-style: solid;
	border-color: #ffbf0a;
}

.color-industria {
	color: #ffbf0a;
}

.color-industria:hover {
	color: #ffbf0a !important;
}

.outline-industria {
	color: #ffbf0a;
	border-color: #ffbf0a;
	background-image: none;
}

.outline-industria:hover {
	color: #fff;
	background-color: #ffbf0a;
	border-color: #ffbf0a;
}

.outline-industria:focus {
	box-shadow: 0 0 0 0.25rem #ffbe0af8;
}

.outline-industria:active {
	color: #fff;
	background-color: #ffbf0a;
	border-color: #ffbf0a;
	box-shadow: inset 0 3px 5px #00000020;
}

.outline-industria:disabled {
	color: #ffbf0a;
	background-color: transparent;
	border-color: #ffbf0a;
}

.border-bottom-search-industria {
	border-bottom: 4px solid #ffbf0a;
}

.background-automoviles {
	background-color: #ff4f12;
	color: #fff;
}

.background-automoviles-gradient {
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(255,79,18,1) 0%, rgba(255,191,10,1) 100%);
	color: #fff;
}

.border-hover-automoviles:hover {
	border: 1px solid #ff4f12;
}

.border-automoviles {
	border-width: 1px;
	border-style: solid;
	border-color: #ff4f12;
}

.color-automoviles {
	color: #ff4f12;
}

.color-automoviles:hover {
	color: #ff4f12 !important;
}

.outline-automoviles {
	color: #ff4f12;
	border-color: #ff4f12;
	background-image: none;
}

.outline-automoviles:hover {
	color: #fff;
	background-color: #ff4f12;
	border-color: #ff4f12;
}

.outline-automoviles:focus {
	box-shadow: 0 0 0 0.25rem #ff4d12f8;
}

.outline-automoviles:active {
	color: #fff;
	background-color: #ff4f12;
	border-color: #ff4f12;
	box-shadow: inset 0 3px 5px #00000020;
}

.outline-automoviles:disabled {
	color: #ff4f12;
	background-color: transparent;
	border-color: #ff4f12;
}

.border-bottom-search-automoviles {
	border-bottom: 4px solid #ff4f12;
}

.background-finanzas {
	background-color: #389491;
	color: #fff;
}

.background-finanzas-gradient {
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(56,148,145,1) 0%, rgba(69,196,222,1) 100%);
	color: #fff;
}

.border-hover-finanzas:hover {
	border: 1px solid #389491;
}

.border-finanzas {
	border-width: 1px;
	border-style: solid;
	border-color: #389491;
}

.color-finanzas {
	color: #389491;
}

.color-finanzas:hover {
	color: #389491 !important;
}

.outline-finanzas {
	color: #389491;
	border-color: #389491;
	background-image: none;
}

.outline-finanzas:hover {
	color: #fff;
	background-color: #389491;
	border-color: #389491;
}

.outline-finanzas:focus {
	box-shadow: 0 0 0 0.25rem #389491f8;
}

.outline-finanzas:active {
	color: #fff;
	background-color: #389491;
	border-color: #389491;
	box-shadow: inset 0 3px 5px #00000020;
}

.outline-finanzas:disabled {
	color: #389491;
	background-color: transparent;
	border-color: #389491;
}

.border-bottom-search-finanzas {
	border-bottom: 4px solid #389491;
}

.background-turismo {
	background-color: #7800ff;
	color: #fff;
}

.background-turismo-gradient {
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(23,38,117,1) 0%, rgba(120,0,255,1) 100%);
	color: #fff;
}

.border-hover-turismo:hover {
	border: 1px solid #7800ff;
}

.border-turismo {
	border-width: 1px;
	border-style: solid;
	border-color: #7800ff;
}

.color-turismo {
	color: #7800ff;
}

.color-turismo:hover {
	color: #7800ff !important;
}

.outline-turismo {
	color: #7800ff;
	border-color: #7800ff;
	background-image: none;
}

.outline-turismo:hover {
	color: #fff;
	background-color: #7800ff;
	border-color: #7800ff;
}

.outline-turismo:focus {
	box-shadow: 0 0 0 0.25rem #7800fff8;
}

.outline-turismo:active {
	color: #fff;
	background-color: #7800ff;
	border-color: #7800ff;
	box-shadow: inset 0 3px 5px #00000020;
}

.outline-turismo:disabled {
	color: #7800ff;
	background-color: transparent;
	border-color: #7800ff;
}


.border-bottom-search-turismo {
	border-bottom: 4px solid #7800ff;
}

.background-tecnologia {
	background-color: #172675;
	color: #fff;
}

.border-hover-tecnologia:hover {
	border: 1px solid #172675;
}

.border-tecnologia {
	border-width: 1px;
	border-style: solid;
	border-color: #172675;
}

.background-tecnologia-gradient {
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(23,38,117,1) 0%, rgba(120,0,255,1) 100%);
	color: #fff;
}

.color-tecnologia {
	color: #172675;
}

.color-tecnologia:hover {
	color: #172675 !important;
}

.outline-tecnologia {
	color: #172675;
	border-color: #172675;
	background-image: none;
}

.outline-tecnologia:hover {
	color: #fff;
	background-color: #172675;
	border-color: #172675;
}

.outline-tecnologia:focus {
	box-shadow: 0 0 0 0.25rem #172675f8;
}

.outline-tecnologia:active {
	color: #fff;
	background-color: #172675;
	border-color: #172675;
	box-shadow: inset 0 3px 5px #00000020;
}

.outline-tecnologia:disabled {
	color: #172675;
	background-color: transparent;
	border-color: #172675;
}

.border-bottom-search-tecnologia {
	border-bottom: 4px solid #172675;
}

.background-salud {
	background-color: #45c4de;
	color: #fff;
}

.background-salud-gradient {
	background: linear-gradient(45deg, rgba(2,0,36,1) 0%, rgba(56,148,145,1) 0%, rgba(69,196,222,1) 100%);
	color: #fff;
}

.border-hover-salud:hover {
	border: 1px solid #45c4de;
}

.border-salud {
	border-width: 1px;
	border-style: solid;
	border-color: #45c4de;
}

.color-salud {
	color: #45c4de;
}

.color-salud:hover {
	color: #45c4de;
}

.outline-salud {
	color: #45c4de;
	border-color: #45c4de;
	background-image: none;
}

.outline-salud:hover {
	color: #fff;
	background-color: #45c4de;
	border-color: #45c4de;
}

.outline-salud:focus {
	box-shadow: 0 0 0 0.25rem #45c4def8;
}

.outline-salud:active {
	color: #fff;
	background-color: #45c4de;
	border-color: #45c4de;
	box-shadow: inset 0 3px 5px #00000020;
}

.outline-salud:disabled {
	color: #45c4de;
	background-color: transparent;
	border-color: #45c4de;
}

.border-bottom-search-salud {
	border-bottom: 4px solid #45c4de;
}

/************************************************ FIN COLORES SUPRACATEGORIAS ***************************************************/

.picture-sponsored {
	display: flex;
	justify-content: flex-end !important;
}

.sub-title-card-supra {
	font-style: normal;
	font-weight: 400;
	line-height: 30px;
	color: #ffffff;
}

.min-width-img {
	min-width: 100%;
}

.font-black-IOS {
	color: #000000;
}

.perfil-desc {
	display: flex;
}

.text-decorate-white:hover{
	text-decoration-color: #fff !important;
}

.text-decorate-pagination:hover{
	background-color: #ffd764;
}

.max-width-map-banner-plus-sponsored{
	max-width: 1268px !important;
}

.text-blue{
	color: rgb(33, 148, 255);
}

a.item-country:not(.d-none), a.item-country-ind:not(.d-none), a.item-country-normal:not(.d-none) {
	border-left: solid 1px rgba(150, 150, 150, 0.5);
	border-right: solid 1px rgba(150, 150, 150, 0.5);
	border-bottom: solid 1px rgba(150, 150, 150, 0.5);
	box-sizing: border-box;
}

.li-country-previous .item-country, .li-country-previous .item-country-ind, .li-country-previous .item-country-normal {
	border-top-left-radius: 6px;
	border: solid 1px #000 !important;
	box-sizing: border-box;
}

.link-go-home {
	text-decoration: underline;
}

.desc-truncate {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
	text-overflow: ellipsis;
	line-clamp: 2;
    -webkit-line-clamp: 2;
}

a.desc-show-more{
	position: relative;
	bottom: 0;
	right: 0;
	margin-left: auto;
}

/************************************************ CUADROS DE ANUNCIOS ***************************************************/

.animation-scale-ads { /*Animacion al pasar el mouse por encima*/
	transition: all 0.3s ease;
}

.animation-scale-ads:hover { /*Animacion al pasar el mouse por encima*/
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-o-transform: scale(1.03);
	transform: scale(1.03);
}

@media (hover: none) { /*Quitar animacion en dispositivos tactiles*/
	.animation-scale-ads:hover {
		transform: none;
	}
}

.round-logo-announce { /*Logo de cada bloque de anuncio*/
	width: clamp(40px, 2.5vw, 56px);
	height: clamp(40px, 2.5vw, 56px);
	object-fit: cover;
	border-radius: 50%;
	border: 1px solid #000;
}


.box-announce {
	margin-top: 0.5rem;
	background-color: #eeeeee;
	border-radius: 1rem;
}

.box-announce:hover {
	background-color: #d7d7d7;
	border-radius: 1rem;
}

@media (hover: none) { /*Dejar mismo color en dispositivos tactiles*/
  .box-announce:hover {
    background-color: #eeeeee;
  }
}


/************************* BOTONES CUADROS DE ANUNCIOS ***************************/

.button-announce {
	width: 100%;
    margin: auto;
    padding: 4px 12px;
    border-radius: 5px;
    text-align: center;
    color: white;
    transition: all 0.2s ease-in;
}

.button-announce:hover {
	opacity: 0.75;
}

.btn-message-announce {
    background-color: #000;
}

.btn-whatsapp-announce {
    background-color: #25D366;
}

.perfil-sec-10-bottom-a {
	display: flex;
	align-items: center;
}

.img-fluid-vert-70 {
	height: 70% !important;
	aspect-ratio: 1/1;
}

.icon-color-invert {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

/*  ANIMATION BUTTON SIDEBAR
========================================== */
#buttonSideBar.active {
	transition-delay: .8s;
	transform: rotate(45deg);
}

#buttonSideBar.active>span:nth-child(2) {
	width: 0;
}

#buttonSideBar.active>span:nth-child(1),
#buttonSideBar.active>span:nth-child(3) {
	transition-delay: .4s;
}

#buttonSideBar.active>span:nth-child(1) {
	transform: translateY(9px);
}

#buttonSideBar.active>span:nth-child(3) {
	transform: translateY(-9px) rotate(90deg);
}

/*  OVERLAY
========================================== */
.overlay.show {
	opacity: 0.8;
	visibility: visible;
}

/*  SIDEBAR
========================================== */
.container-sidebar.show {
	-webkit-transform: translateX(10vw);
	-moz-transform: translateX(10vw);
	-ms-transform: translateX(10vw);
	-o-transform: translateX(10vw);
	transform: translateX(10vw);
}

.container-sidebar.show ul.ul-sidebar li {
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	-ms-transform: translateX(0px);
	-o-transform: translateX(0px);
	transform: translateX(0px);
	opacity: 1;
}

.container-sidebarav.show ul.ul-sidebar li:nth-child(1) {
	transition-delay: 0.15s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(2) {
	transition-delay: 0.3s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(3) {
	transition-delay: 0.45s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(4) {
	transition-delay: 0.6s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(5) {
	transition-delay: 0.75s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(6) {
	transition-delay: 0.9s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(7) {
	transition-delay: 1.05s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(8) {
	transition-delay: 1.2s;
}

.container-sidebar.show ul.ul-sidebar li:nth-child(9) {
	transition-delay: 1.35s;
}

@keyframes animationIconCotFloat {
	0% {
		color: #bababa;
	}
	30% {
		color: #000;
	}
	70% {
		color: #000;
	}
	100% {
		color: #bababa;
	}

}

/*Clases de unificación de header mobile y desktop*/

.search-overlay.show {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

.search-content {
	width: 100%;
	max-width: 500px;
	text-align: center;
	transform: translateY(20px);
}

.close-btn {
	position: fixed;
	top: 20px;
	right: 20px;
	font-size: 2rem;
	background: 0 0;
	border: none;
	z-index: 10000;
}

.search-form {
	max-width: 100%;
	padding: 1rem;
}

.search-form input,
.search-form select {
	height: 2.5rem;
	font-size: 1rem;
}

.search-form .btn {
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
}

.menu-sso-block.show {
	display: flex;
}

#menu-with-login-sso {
	position: relative;
	z-index: 200;
}

.navform.opacity-100 {
	pointer-events: auto;
}


/**************************  ESTILOS DEL MENU DE LOGIN ********************************/

.header-nav .profile span {
    font-size: 14px;
    font-weight: 600;
}

.header-nav .profile {
    min-width: 240px;
    max-width: 340px;
    padding-bottom: 0;
    top: -20px !important;
    transform: translate(8px, 42px) !important;
    background-color: #191919;
}

.header-nav .profile .dropdown-header {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}

.header-nav .profile .dropdown-header img {
    margin: 0 20px 0 10px;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 16px;
}

.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #f0f0f0;
}

.header-nav .profile .dropdown-header span {
    font-size: 14px;
    color: #f0f0f0;
    margin: 0 0 0 0;
}

.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
    color: #f0f0f0;
}

.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
    background-color: #424649;
}

.dropdown-menu .dropdown-dividers {
    border-top: 1px solid #ffbf0a;
    border-bottom: 1px solid #ffbf0a;
    margin: 0;
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background-color: #191919;
        position: absolute;
        top: -7px;
        right: 85px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
    .dropdown-menu-arrow.notifications::before {
        background-color: #f0f0f0;
    }
}
