body.eficiencia {
	background: var(--turquesa);
}

h3.subtitle {
	background: var(--blue);
}

h3.subtitle.base {
  background: var(--base-color);
}


h3#kilowatt-title {
	display: table;
	text-align: center;
	margin: auto;
	color: white;
	border: 1px solid black;
	text-transform: uppercase;
	background: var(--rojo);
	border-radius: 36px;
	padding: .5rem 1rem;
	margin-bottom: 2.5rem;
}

.electrodomesticos {
	margin-bottom: 2.5rem;
}

ul#eficiencia-saber-mas li:before {
	content: '';
	background: url('../../imgs/icon-eficiencia-grow.png') no-repeat;
	background-size: 20px 20px;
	display: inline-block;
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin-top: -4px;
	margin-right: 5px;
}

ul.sugerencias-puntos li:before {
	content: '';
	background: var(--turquesa);
	border: 2px solid black;
	border-radius: 50%;
	background-size: 11px 11px;
	display: inline-block;
	vertical-align: middle;
	width: 11px;
	height: 11px;
	margin-top: -4px;
	margin-right: 12px;
}

ul.sugerencias-puntos {
	margin: -1.2rem 0 3rem;
}

ul.sugerencias-puntos li {
	margin-bottom: 1rem;
}

img.sugerencias-img {
	display: block;
	margin: 5rem auto;
	width: 450px;
}

.tabla-energia {
  padding: 2rem 0 0 2rem;
}

.content .left {
  padding: 1rem;
}

#producto-1:hover, #producto-2:hover {
  cursor: pointer;
}

/* ====================
	Opciones switch
	====================*/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 60px;
  height: 0;
}

.slider:hover {
	cursor:  
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid black;
  background-color: #aaa;
  transition: .4s;
}

.slider:before {
	cursor: pointer;
  position: absolute;
  content: "";
  height: 34px;
  width: 34px;
  top: -2px;
  left: -2px;
  bottom: 0px;
  background: url('../../imgs/icon-eficiencia-grow.png');
  background-size: cover;  
  transition: .4s;
}

input:checked + .slider {
  background-color: #7DCDF2;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.eficiencia-significa {
	width: 100%;
	display: inline-block;
	border: 2px solid black;
	padding: .3rem 1rem;
	margin-left: 1.5rem;
	background: var(--base-color);
	transition: all .2s ease-in-out;
}

.eficiencia-significa.active {
	background: #fff;
}

.option {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;	
}

.option p {
	margin-bottom: 0;
}

.eficiente-opciones {
	width: 55%;
	padding: 0 0 0 1rem;
	
}

div.electrodomesticos {
	display: flex;
	justify-content: center;
	background: white;
	border-radius: 8px;

}

div.consumo {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	text-align: center;
	padding: 1rem;
  margin: .12rem;
}

div.consumo-value-receptor {
	margin: 1.5rem 0;
	border: 2px dotted #666;
	border-radius: 6px;
	/*padding: 12px 18px;*/
	width: 100%;
  height: 48px;
}

div#kilowatt {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 3rem;
}

div#kilowatt div {
  background: #dcdddd;
  border-radius: 6px;
  font-size: 1.2rem;
  padding: 12px 18px;
  width: 122px;
  text-align: center;
}

div#kilowatt div:hover {
  cursor: move;
}



/* =======================
	Modal
	========================*/

.modal-content {
	background: var(--turquesa);
}

.tablas img {
  max-width: 360px;
  margin-bottom: 3rem;
}


@media screen and (max-width: 800px) {
	.indicaciones {
		margin-bottom: 2.5rem;
	}

	.eficiente-opciones {
		width: 100%; 	
		padding-left: 0;
		margin-bottom: 2rem;
	}

	div.electrodomesticos {
		/*flex-direction: column;*/
		flex-wrap: wrap;
		flex-direction: row;
		align-content: center;
		margin-bottom: .8rem;
	}

	div.electrodomesticos img {
		width: 60px;
		margin-bottom: 0;
	}

	div.consumo {
		/*flex-direction: row;
		align-items: flex-end;*/
		padding: 1rem 0 0;
		margin: 0 10px;
	}

	/*div.consumo-value {
		width: 120px;
		margin-left: 40px;
	}*/

	h3#kilowatt-title {
		margin-bottom: 2rem;
		font-size: 16px;
	}

	div#kilowatt {
	  display: flex;
	  justify-content: center;
	  flex-wrap: wrap;
	  margin: .5rem;
	}

	div#kilowatt div {
	  background: #dcdddd;
	  border-radius: 6px;
	  font-size: 1rem;
	  padding: 11px 0;
	  width: 57px;
	  margin:0 3px 12px;
	}

	div.resultados {
		margin: .5rem 0 1rem;
	}
}






