.sm-only {
	display: none;
}

.container {
	max-width: 1120px;
	width: 100%;
	margin: 0 auto;
}

.app-page-comparative {
	text-align: center;
	width: 100%;
	padding: 2% 15px;
	margin: 0 0 20px 0;
}

.app-page-comparative h1 {
	font-weight: 600;
}

.app-comparative-form {
	display: flex;
	max-width: 800px;
	width: 100%;
	margin: 10px auto 40px auto;
	align-items: center;
	justify-content: space-between;
  flex-direction: column;
}

.app-comparative-form .app-comparative-fields {
	width: 100%;
  text-align: center;
}

.app-comparative-form .app-comparative-field {
  display: flex;
  position: relative;
  padding: 20px 0;
}

.app-comparative-form .app-comparative-field .remove-comparative {
  padding: 20px;
  color: #ff7b7b;
  cursor: pointer;
}

.app-comparative-form .app-comparative-field::before {
  content: 'Comparar';
  display: inline-block;
  font-weight: bold;
  position: absolute;
  width: 100px;
  margin-left: calc(50% - 50px);
  margin-top: -31px;
}

.app-comparative-form .app-comparative-field:not(:first-child)::before {
  content: 'com';
}

.app-comparative-form .app-comparative-field ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.app-comparative-form input[type=text] {
	width: 100%;
	padding: 2%;
	border: 2px solid #00000021;
	box-shadow: #00000021 1px 1px 15px;
	border-radius: 5px;
	outline: none;
	transition: all 0.2s cubic-bezier(0.12, 0, 0.39, 0);
	font-size: 1em;
	height: initial;
}

.app-comparative-actions {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  padding: 15px 0;
  gap: 10px;
}

.app-comparative-actions button {
	background: var(--lt-color-secondary);
	color: #fff;
	border-radius: 5px;
	font-size: 15px;
	font-weight: bold;
	padding: 15px;
	margin: 0 0 0 15px;
	display: flex;
	align-items: center;
	border: none;
  gap: 10px;
  width: max-content;
  text-transform: uppercase;
  transition: background .2s;
  cursor: pointer;
}

.app-comparative-actions button:hover {
	background: var(--lt-color-primary);
}

.app-comparative-actions button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.app-comparative-actions button svg {
	fill: #fff;
	width: 20px;
	height: 20px;
	margin: 0 0 0 4px
}

.app-comparative-form input[type=text]:focus {
	border-color: #00000071;
	box-shadow: #00000021 1px 1px 45px;
}

.app-compare-table {
	max-width: 1000px;
	overflow: auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 2% auto 15% auto;
	justify-content: space-between;
}

.app-compare-table .compare-item {
	background: #fff;
	box-shadow: 1px 1px 10px #00000005;
	margin: 0 0 4px 0;
}

.app-compare-table h2 {
	font-size: 14px;
	margin: 0 0 10px 0;
	font-weight: 600;
	position: sticky; left: 0;
	display: inline-block;
	padding-left: 10px;
}

.app-compare-table .compare-item:nth-child(2n+3) {
	background-color: #efefef;
	border-top: 1px solid #e1e1e1;
}
.app-compare-table img {
	object-fit: contain;
}

.app-compare-table .compare-item article {
	padding: 15px;
}

.app-compare-table .item--thumb {
	display: block;
	background-position: center;
	background-size: cover;
	margin: 0 0 5px 0;
	box-shadow: 1px 1px 10px #00000014;
	width: 100%;
}

.app-compare-table article ul {
	display: block;
	padding: 0px;
	list-style-type: none;
	line-height: 1.2rem;
	text-align: left;
	align-items: center
}

.app-compare-table figcaption {
	font-weight: bold;
}

.app-compare-table article ul li {
	display: block;
	font-size: 13px;
	border-left: 2px solid var(--lt-color-primary);
}

.app-compare-table article ul li,
.table-index li {
	width:200px;
	min-width: 200px;
	padding: 0 10px;
}

.app-compare-table article ul li.thumb {
	padding-right: 10px;
	position: sticky;
	left: 0;
	padding-left: 10px;
	background: #fff;
	width: 200px;
	min-width: 200px;
	border-left: none;
}
.table-index li.thumb {
	width: 200px;
	min-width: 200px;
}
.app-compare-table .compare-item:nth-child(3) li.thumb {
	background: #efefef;
}
.app-compare-table .table-index {
	display: flex;
}

.app-compare-table .table-index ul {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 5px 10px;
	background: var(--lt-color-primary);
	color: #fff;
	 align-items: flex-end;
	list-style: none;
	box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
	margin: 0px;
	border-radius: 5px 5px 0 0;
}

.app-compare-table .table-index ul li {
	font-size: 13px;
	line-height: 1;
  padding: 10px 0;
}

.app-compare-table .item ul {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: stretch;
}

/*
.item {
	position: relative;
}

.item:after {
	position: absolute;
	width:100px;
	height: 100%;
	display: block;
	content: ' ';
	background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	right: 100%;
	top: 0;
	z-index: 5;
	border: 1px solid #000
}
*/

.autocomplete-suggestions {
	text-align: left;
	cursor: default;
	border: 1px solid #ccc;
	border-top: 0;
	background: #fff;
	box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
	position: absolute;
	display: none;
	padding: 20px;
	z-index: 9999;
	border-radius: 10px;
	max-height: 254px;
	overflow: hidden;
	overflow-y: auto;
	box-sizing: border-box;
}

.autocomplete-suggestion {
	position: relative;
	padding: 0 .6em;
	line-height: 23px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 1.02em;
	color: #333;
}

.autocomplete-suggestions li {
	font-size: 16px;
	display: block;
}

.autocomplete-suggestion b {
	font-weight: normal;
	color: #1f8dd6;
}

.full-list-compare {
	width: max-content;
}

.autocomplete-suggestion.selected {
	background: #f0f0f0;
}

@media (max-width:960px) {
	.app-compare-table .compare-item article {
		padding: 5px
	}
	.app-page-comparative {
		margin: 0;
	}
	.app-compare-table .table-index ul {
		padding: 5px
	}
	.sm-only {
		display: block;
	}
	.app-comparative-form {
		flex-direction: column;
		width: 98%;
	}
	.app-comparative-form p {
		text-align: center;
		margin: 5px 0;
	}
	.app-comparative-form .app-comparative-field {
		flex-basis: 98%;
		width: 98%
	}
	.app-compare-table {
		overflow: auto;
		width: 100%;
	}
	.app-compare-table .compare-item {}
	.app-comparative-actions button {
		margin: 10px auto;
		padding: 13px 15px 10px 15px;
		line-height: 1.2
	}
	.app-compare-table article ul li,
	.table-index li {
		min-width: calc(90vw - 130px);
		width: calc(90vw - 130px);
	}
	.app-compare-table article ul li.thumb {
		width: 130px;
		min-width: 130px;
	}
	.table-index li.thumb {
		width: 130px;
		min-width: 130px;
	}
}

i.gg-search {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 100%;
  margin-left: -4px;
  margin-top: -4px
}

i.gg-search::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-radius: 3px;
  width: 2px;
  height: 8px;
  background: currentColor;
  transform: rotate(-45deg);
  top: 10px;
  left: 12px
}

i.gg-math-plus,
i.gg-math-plus::after {
  display: block;
  box-sizing: border-box;
  background: currentColor;
  border-radius: 10px
}
i.gg-math-plus {
  margin-top: -2px;
  position: relative;
  transform: scale(var(--ggs,1));
  width: 16px;
  height: 2px
}
i.gg-math-plus::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  top: -7px;
  left: 7px
}

i.gg-trash {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs,1));
  width: 10px;
  height: 12px;
  border: 2px solid transparent;
  box-shadow:
      0 0 0 2px,
      inset -2px 0 0,
      inset 2px 0 0;
  border-bottom-left-radius: 1px;
  border-bottom-right-radius: 1px;
  margin-top: 4px
}
i.gg-trash::after,
i.gg-trash::before {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute
}
i.gg-trash::after {
  background: currentColor;
  border-radius: 3px;
  width: 16px;
  height: 2px;
  top: -4px;
  left: -5px
}
i.gg-trash::before {
  width: 10px;
  height: 4px;
  border: 2px solid;
  border-bottom: transparent;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  top: -7px;
  left: -2px
}

.comparador-app .content figure {
  display: none;
}

/* .container.comparador-app .crp-list {
  display: grid;
  list-style: none;
  gap: 40px;
  padding-left: 0px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  margin-bottom: 0px;
  overflow: hidden;  
}

.container.comparador-app .crp-list .crp-list-item-image {
  width: 100%;
  height: 80%;
  overflow: hidden;
  border-radius: 5px;
}

.container.comparador-app .crp-list .crp-list-item-image img {
  width: 100%;
  height: 80%;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover;
  transition: .2s;
}

.container.comparador-app .crp-list .crp-list-item {
  margin-bottom: -30%;
}

.container.comparador-app .crp-list .crp-list-item:hover img {
  transform: scale(1.2);
}

.container.comparador-app .crp-list .crp-list-item-title {
  width: 100%;
  height: 80%;
}

.container.comparador-app .crp-list .crp-list-item-title a {
  color: white;
  font-size: 22px;
  box-sizing: border-box;
  transform: translateY(-100%);
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  position: relative;
  padding: 20px;
  padding-bottom: 50px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  font-weight: bold;
}

@media (max-width: 700px) {
  .container.comparador-app .crp-list {
    gap: 5px;
  }

  .container.comparador-app .crp-list .crp-list-item-title a {
    font-size: 15px;
    padding-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .container.comparador-app .crp-list .crp-list-item-title a {
    font-size: 15px;
  }
}

.content ul.crp-list .crp-list-item .crp-list-item-title {
  padding: 0 !important;
  position: relative !important;
}

.content ul.crp-list:after {
  display: none !important;;
} */