:root {
    --primary-color: #42005A;
    --secondary-color: #FF0055;
    --tertiary-color: #0046F6;
    --quaternary-color: #B3D9FF;
    --quinary-color: #A9009C;

    --background-primary-color: #ffffff;
    --background-secondary-color: #42005A;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--background-primary-color);
    color: var(--primary-color);
    font-family: "Work Sans";
    font-size: 16px;
    
    min-height: 100vh;
    margin: 0;
    
    display: flex;
    flex-direction: column;
}

header {
    padding: 0 20px;
    height: 76px;
}

footer {
    background-color: var(--background-secondary-color);
    color: #fff;

    height: 40px;
    padding: 0 20px;

    font-size: .8em;
    font-weight: 400;
    line-height: 1em;
}

main {
    width: 1200px;
    margin: 40px auto;

    padding: 0 50px;
    
    flex: 1;
}

main.contentForm {
    width: 100%;
    padding: 0 10px 0 50px;
    margin: 40px 0 10px 0;

}

p {
    font-size: 1em;
    line-height: 22px;
    font-weight: 400;
    word-spacing: -2%;
    color: #000000;
}

ul {
    margin-top: 30px;
}

ul {
    list-style: none;
}

ul > li {
    font-size: 1em;
    line-height: 28px;
    font-weight: 400;
    word-spacing: -3%;
    height: 28px;

    margin-bottom: 10px;
}

ul > li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("../img/icons/precision-point.svg");
    background-size: contain;
    margin-right: 10px;
    margin-left: -40px;

    vertical-align: middle;
}

strong {
    font-weight: 600;
}

a, a:visited, a:link {
	text-decoration: none;
}

#leftContentForm input[type=text] {
  background-image: url('../img/search.png');
  background-position: 99.5% 50%;
  background-repeat: no-repeat;
  background-color: #f2f2f2;
  font-size: 12px;
  line-height: 46px;
  padding: 14px 20px 12px 16px;

  width: 100%;
  height: 46px;

  border: 1px solid #ddd;
  border-radius: 99px;
  outline: none;
}

#leftContentForm input::placeholder {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    color: var(--primary-color);
}

#leftContentForm input[type=text]:focus {
    background-image: url('../img/icons/icon-search.svg');
    background-position: 2% 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;

    font-size: 14px;
    line-height: 46px;
    font-weight: 500;
    padding: 14px 20px 12px 50px;

    background-color: #fff;
    color: #000;

    border: 1px solid var(--quinary-color) !important;
}

#wrapper {
    padding-left: 40px;
}

#rightContent, #leftContent, #leftContentForm, #righContentForm {
    width: 48%;
    min-height: 80vh;
}

#leftContentDatosInmueble {
    width: 32%;
    min-height: 90vh;
    max-height: 120vh;

    background-image: url("../img/datos-inmueble-mapa.png");
    background-position: center center;
    background-size: cover;

    position: relative;

    text-align: center;

    

}

#leftContentDatosInmueble .detailImage {
    position: absolute;
    bottom: 2%;
    left: 2%;

    padding: 8px 8px 10px 8px;

    background-color: #ffffff;
    border-radius: 10px;
}

#leftContentDatosInmueble .detailImage .previewImage {
   min-width: 120px;
   height: 120px;

   display: block; 
   background-size: cover;
   background-position: center center;

   border-radius: 10px;
}

#coordenadas {
    font-size: 10px;
    font-weight: 400;
    line-height: 150%;

    text-align: left;
    color: #747D93;
}

#iframeMapContainer {
    width: 100%;
    height: 100%;
}

#iframeMapContainer iframe {
    width: 100%;
    height: 100%;
}

#rightContentDatosInmueble {
    width: 65%;
    min-height: 80vh;

    padding: 0 50px 0 20px;
}

#rightContentDatosInmueble h1 {
    font-size: 28px;
    line-height: 100%;
    font-weight: 300;
}

#leftContent {
    padding-right: 40px;
}

#rightContent {
    background-image: url("../img/background-calculadora-mejoras-cee-opt.jpg");
    background-position: center center;
    background-size: cover;

    position: relative;
}

#rightContent img {
    position: absolute;
    bottom: -20px;
    right: -10px;
}

#rightContentForm {
    background-image: url("../img/mapa-fondo-form.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;

    width: 46%;
    height: 100vh;
    padding: 0;
    margin: 0;
}

#rightContentForm.busquedaCEE {
    display: none;
    text-align: center;
    background-image: none;

    padding-top: 50px;

    background-color: #f2f2f2;
}

#contentDatosEnergeticos {
    text-align: center;
}

#contentDatosEnergeticos h1 {
    font-size: 28px !important;
    line-height: 100% !important;
    font-weight: 300 !important;
}

#logo {
    width: 118px;
    height: 44px;
}

#languageSwitcher {
    display: block;
    border-radius: 100px;
    border-color: var(--primary-color);
    border-width: 1px;
    border-style: solid;
    padding: 5px 10px;
}

#formDatosInmueble label {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    color: #000;
}

#formDatosInmueble select {
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    color: #000;

    width: 180px;

    padding: 14px 16px;
    border: 1px solid #f2f2f2;
}

#formDatosInmueble input[type=text], #login input[type=text], input[type=password] {
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    text-align: right;
    color: var(--primary-color);
    background-color: #f2f2f2;

    width: 130px;

    padding: 14px 16px;
    border: none;
    outline: none;
}

.step0_h1 {
    font-size: 12px;
    line-height: 1em;
    font-weight: 500;
    text-transform: uppercase;
}

.step0_h2 {
    font-size: 40px;
    line-height: 42px;
    font-weight: 300;
}

.step1_h1 {
    font-size: 12px;
    line-height: 1em;
    font-weight: 500;
    text-transform: uppercase;

    margin: 20px 0 50px 0;
}

.step3_h2 {
    font-size: 12px;
    line-height: 1em;
    font-weight: 500;
    text-transform: uppercase;
}

.step3_h3 {
    font-size: 24px;
    line-height: 1em;
    font-weight: 400;

    text-transform: capitalize !important;
}

.step1_h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 400;
    word-spacing: -3%;
}

.textRefCatastral {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;

    color: var(--primary-color);
}

.referenciaCatastral {
    color: var(--quinary-color);
}

.buttonCTA {
    display: inline-block;
    border-radius: 100px;
    background-color: var(--primary-color);
    min-width: 120px;
    
    color: #fff !important;

    padding: 14px 60px;
    margin-top: 20px;
}

a.buttonCTA:link, a.buttonCTA:visited, a.buttonCTA:hover {
    
    font-size: 1em;
    line-height: 22px;
    font-weight: 400;
    word-spacing: -2%;

}

a.buttonCTA:hover {
    background-color: var(--quinary-color);
    text-decoration: none;
}

.buttonFilter {
    display: inline-block;

    border-radius: 100px;
    border-color: #f0f0f0;
    border-width: 2px;
    border-style: solid;

    background-color: #fff;
    color: var(--primary-color) !important;

    padding: 10px 20px;

    vertical-align: middle;
}

.buttonFilter.active {
    background-color: var(--primary-color);
    color: #fff !important;
    border-width: 0;
}

a.buttonFilter, a.buttonFilter:link, a.buttonFilter:visited, a.buttonFilter:hover {
    font-size: 12px;
    line-height: 150%;
    font-weight: 500;

    text-decoration: none;
}

#buttonSearchAddress::before {
    content:"";
}

.tituloStepper {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4px;
}

.step {
    display: block;
    height: 4px;
    width: 41.4px;
    background-color: #f0f0f0;
    margin: 0 2px;
}

.step.completed:hover {
    cursor: pointer;
}

.step.completed {
    background-color: var(--primary-color);
}

input[type=text].calendar {
    background-image: url('../img/icons/icon-calendar.svg');
    background-position: 10% 50%;
    background-repeat: no-repeat;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;

    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    text-align: right;
    color: var(--primary-color);
    background-color: #f2f2f2;

    width: 48px;

    padding: 14px 16px;
    border: none;
    outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.iconLabel img {
    vertical-align: middle;
    margin-right: 8px;
}

#formDatosInmueble .iconLabel label {
    font-weight: 400;
}

#formDatosInmueble input[type=checkbox] {
    width: 16px;
    height: 16px;

    border: 1px solid #f2f2f2;

    vertical-align: middle;
    margin: 0 6px 0 0;
}

.checkBoxText {
    line-height: 20px;
}

button, button:hover, button:focus {
    border: none;
    outline: none;
    background-color: transparent;

    margin: 0;
    cursor: pointer;
}

.numberContainer button img {
    width: 24px;
}

.buttonContainer {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    display: inline-block;
    vertical-align: middle;
    min-width: 230px;
    text-align: center;

    padding: 14px 20px;
    border-radius: 100px;
}

.buttonContainer.notFocused {
    color: var(--quinary-color);
    border: 1px solid var(--quinary-color);

    background-color: #fff;
}

.buttonContainer.notFocused a, .buttonContainer.notFocused a:link, .buttonContainer.focused a:visited {
    color: var(--quinary-color);

    background-color: #fff;
}

.buttonContainer.focused {
    color: #fff;
    border: 1px solid #fff;

    background-color: var(--quinary-color);
}

.buttonContainer.focused a:hover, .buttonContainer.focused a:link, .buttonContainer.focused a:visited {
    color: #fff;

    background-color: var(--quinary-color);
    text-decoration: none;
}

.buttonContainer:hover {
    cursor: pointer;
}

.buttonContainerSmall {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    display: inline-block;
    vertical-align: middle;
    min-width: 130px;
    text-align: center;

    padding: 7px 10px;
    border-radius: 100px;
}

.buttonContainerSmall.notFocused {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);

    background-color: #fff;
}

.buttonContainerSmall.focused, .buttonContainerSmall:hover {
    color: #fff;
    border: 1px solid #fff;

    background-color: var(--primary-color);

    cursor: pointer;
}

#formCEESearch input[type=text] {
  background-image: url('../img/search.png');
  background-position: 99% 50%;
  background-repeat: no-repeat;
  background-color: #f2f2f2;
  font-size: 12px;
  line-height: 46px;
  padding: 0;

  width: 100%;
  height: 46px;

  border: 1px solid #ddd;
  border-radius: 99px;
  outline: none;
}

#formCEESearch input::placeholder {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    color: var(--primary-color);

    padding-left: 20px;

}

#formCEESearch input[type=text]:focus {
    background-image: url('../img/icons/icon-search.svg');
    background-position: 2% 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;

    font-size: 14px;
    line-height: 46px;
    font-weight: 500;
    padding: 14px 20px 12px 40px;

    background-color: #fff;
    color: #000;

    border: 1px solid var(--quinary-color) !important;
}

#formCEESearch input[type=text]:focus::placeholder {
    padding-left: 0;
}

.ceeContainer {
    background-color: #f2f2f2;
}

.optionCEE {
    position: relative;
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background-color: #f2f2f2;
	
}

.optionCEE.focused {
    background-color: var(--primary-color);
}

.optionCEE.completed {
    background-color: var(--quinary-color);
}

.optionCEE img {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 20px;

    transform: translate(-50%,-50%);
}

.energyConfigurationContainer {
    width: 768px;
    border: 1px solid #bfbfbf;
    border-radius: 4px;

    padding: 16px;

    margin: auto;
}

#energyConfigurationFeature {
    width: 100%;
}

.number {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;

    color: #000000;
    border: 1px solid #bfbfbf;
    border-radius: 50%;

    width: 34px;
    height: 34px;

    text-align: center;

}

.featureTitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;

    color: #000000;
}

.featureOptionsTitle {
    width: 100%;
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;

    text-align: center;

    color: #000000;
}

.buttonOptionContainer {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);

    border-radius: 99px;
    padding: 8px 14px;
}

.buttonOptionContainer:hover {
    cursor: pointer;
    background-color: var(--primary-color);

    color: #ffffff;
}

.buttonSave.inactive {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    border: 1px solid #BFBFBF;
    color: #BFBFBF;

    border-radius: 99px;
    padding: 14px 60px;;
}

.falseButtonInfo {
    color: #fff;

    background-color: var(--primary-color);
    border-radius: 99px;

    padding: 10px 14px;
}

.separator {
    display: block;
    height: 2px;
    background-color: #bfbfbf;
}

/* HIDE RADIO */
.featureOptionsRadio [type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
.featureOptionsRadio [type=radio] + img {
  cursor: pointer;
}

/* CHECKED STYLES */
.featureOptionsRadio [type=radio]:checked + img {
  outline: 2px solid #f00;
}

.graphicFeatureOption {
    width: 100%;
    padding: 20px 0;
    background-color: #f2f2f2;

    gap: 10;
}

.graphicFeatureOption:hover  {
    cursor: pointer;

    
    background-color: var(--quaternary-color);
}

.graphicFeatureOption:hover label {
    cursor: pointer;
}

.optionText:not(:last-child) {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    text-align: center;

    color: var(--primary-color);


}

.radioDunnoContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radioDunnoContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: #ffffff;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radioDunnoContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radioDunnoContainer input:checked ~ .checkmark {
  background-color: var(--primary-color);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radioDunnoContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radioDunnoContainer .checkmark:after {
 	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;

    transform: translate(-50%,-50%);
}

.iconContainer {
    position: relative;

    width: 54px;
    height: 54px;

    margin: 0 auto;

    display: block;
    text-align: center;

    background-color: var(--primary-color);
    border-radius: 50%;
}

.iconContainer img {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);
}

.featureEnergyContainer {
    border: 1px solid #D0BFD6;
    padding: 10px;

    width: 24%;
}

.featureEnergyContainer h3 {
    text-align: center;

    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

.featureEnergyContainer h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;

    color: #404040;
    margin-bottom: 0;
}

.featureEnergyContainer .separator {
    display: block;
    height: 1px;
    background-color: #D0BFD6;
}

.featureEnergyContainer .featureValue {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;

    color: var(--primary-color);
}

.featureEnergyDetailContainer {
    width: 33%;
}

.resumenClasificacion {
    border: 1px solid #D0BFD6;
    padding: 50px 10px 14px 10px;
}

.energyClasification {
    position: relative;
}

.energyClasificationData {
    font-size: 30px;
    font-weight: 400;
    line-height: 100%;
}

.energyClasificationDataUnits {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
}

.summaryFeatureContainer {
    background-color: #f2f2f2;
    padding: 4px 14px;
}

.featureEnergyAguaCaliente {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;

    color: #404040;
}

.featureEnergy {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;

    color: var(--primary-color);
}

#leftContentResultados {
    width: 66%;
}

#rightContentResultados {
    width: 32%;
}

.leftContentResultadosItem {
    width: 46%;
}

.rightContentResultadosItem {
    width: 46%;
}

#resultsContainer {
    width: 100%;
    background-color: var(--primary-color);
    color: #ffffff;

    padding: 40px;
}

.detailsAction:hover {
    cursor: pointer;
}

.imageResultContainer {
    width: 38%;
    height: 200px;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: left;
}

.textEnergySaverQty {
    font-size: 54px;
    font-weight: 300;
    line-height: 100%;

    text-align: center;
}

.textEnergySaverRightTitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;

    text-align: center;
}

.textEnergySaverRightSubtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;

    border-bottom: 1px solid #A080AC;

    text-align: center;
}

.textEnergySaverHeaderTable {
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    color: #A080AC;
    text-transform: uppercase;
}

.energySaverItem {
    background-color: #714083;
    padding: 10px;
}

.textEnergySaverItem {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;

    align-self: center;

}

.textEnergySaverItemCost {
    width: 100%;
    text-align: right;
    align-self: center;
}

.energySaverTotalCostContainer {
    border: 1px solid #ffffff;
    padding: 16px;
}

.textEnergySaverTotalCostTitle {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
}

.textEnergySaverTotalCost {
    font-size: 40px;
    font-weight: 300;
    line-height: 100%;
}

.energySaverContainer {
    padding: 16px 16px 8px 16px;
    border: 1px solid #ffffff;
}

.textEnergySaverTitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;

    color: var(--primary-color);
}

.textEnergySaverTableTitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

.textEnergySaverTableSubtitle {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;

    color: #A080AC;
}

.energySaverTableItem {

    padding: 6px 0;

    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}

.textEnergySaverActualSituationValue {
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
}

.textEnergySaverActualSituationUnits {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.boxMejora {
    width: 100%;
    padding: 10px;

    box-shadow: 0px 16px 32px 0px #363C4B1A;
    background-color: #ffffff;
}

.textEnergySaverActualNewHome {
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;

    color: #714083;
    text-transform: uppercase;
}

.textEnergySaverActualNewHomeSubtitle {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;

    color: #808080;
}

.textEnergySaverActualNewHomePercentage {
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;

    color: #299B9A;
}

.textEnergySaverMejoraText {
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;

    color: var(--primary-color);
}

.textEnergySaverMejoraUnits {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;

    color: var(--primary-color);
}

#prefooter {
    background-color: var(--primary-color);
    color: #ffffff;
    padding-top: 40px;
    padding-right: 72px;
    padding-bottom: 48px;
    padding-left: 72px;

}

.preFooterBlockOne {
    border: 1px solid #B3D9FF;
    padding: 16px;
}

.preFooterBlockTwo {
    border: 1px solid #FFD9C0;
    padding: 16px;
}

.preFooterBlockThree {
    border: 1px solid #F08BB1;
    padding: 16px;
}

.textPrefooterBoxTitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.textPrefooterValue {
    font-size: 32px;
    font-weight: 400;
    line-height: 100%;
}

.textPrefooterUnits {
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
}

.textPrefooterSummary {
    font-size: 12px;
    font-weight: 400;
    line-height: 130%;
}

.faldon {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100%;

    background-color: #ffffff;
    color: var(--primary-color);

    padding: 24px 20px;

    box-shadow: -4px 0 20px 0px rgba(0, 0, 0, 0.5);
}

.faldon .botonCerrar {
    text-align: right;

    max-height: 20px;
}

.faldon .botonCerrar:hover {
    cursor: pointer;
}

.faldon .textFaldonSubtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;

    text-transform: uppercase;
    color: var(--primary-color);
}

.faldon .textFaldonTitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
}

.faldon .textFaldonDescription {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
}

.faldon .textFaldonPriceTitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}

.faldon .textFaldonPrice {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
}

.datalistContainer {
    width: 100%;
    padding: 0 15px 4px 15px;
    box-shadow: 0px 16px 32px 0 rgba(54,60,75,.5);

    border-radius: 5px;
}

.datalist {
  background-color: white;

  width: 100%;
  margin-top: 10px;
  max-height: 12rem;
  overflow-y: auto;
  /*box-shadow: 0px 16px 32px 0 rgba(54,60,75,.5);*/
}

.option::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 15px;
    height: 15px;

    background-image: url("../img/icons/icon-poi-map.svg");

    margin-right: 10px;
}

.option {
  background-color: white;
  color: #404040;
  margin-bottom: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
  padding: 12px 6px;

  
}

.option:not(:last-child) {
    border-bottom: 1px solid #DCDFE6;
}

.option:hover,  .active{
  background-color: var(--quinary-color);
  color: #ffffff;
}

#portalSelectionTitle, .inmuebleSelectionTitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;

    color: var(--quinary-color);

    margin-top: 12px;
    margin-left: 5px;
}

.buttonContainerOption {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    display: inline-block;
    vertical-align: middle;
    min-width: 32px;
    text-align: center;

    padding: 4px 20px;
    border-radius: 100px;

    margin: 6px 4px;

    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.buttonContainerOption:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: var(--primary-color);
}

.fullWidthContainerOption {
    background-color: #F2F2F2;
    color: var(--primary-color);

    font-size: 14px;
    font-weight: 500;
    line-height: 150%;

    width: 90%;
    padding: 10px 0;

    border-radius: 16px;
}

.fullWidthContainerOption:hover {
    cursor: pointer;
    color: #ffffff;
    background-color: var(--primary-color);
}

.resultados {
    background-color: #f2f2f2;
}

.detailImage {
    position: absolute
}

#cover {
    position: fixed;
    left: 0;
    top: 0;

    width: 100vw;
    height: 100vh;

    background-color: rgba(255,255,255,.975);

    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

}

#cover .imageContainerSpinner {
    width: 100%;
    text-align: center;
}

#energyWarning {
    max-width: 776px;
}

p.energyWarningTitle {
    color: var(--primary-color);

    font-size: 20px;
    line-height: 100%;
    font-weight: 400;

    text-align: left;

    max-width: 1140px;
}

p.energyWarningParagraph {
    color: #000000;

    font-size: 14px;
    line-height: 150%;
    font-weight: 400;

    text-align: left;

    max-width: 1140px;
}

.textCEEData {
    color: var(--quinary-color);

    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
}

.textCEETitle {
    color: #404040;

    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
}

.CEEreal {
    background-color: var(--primary-color);

    color: #ffffff;

    border-radius: 99px;
    text-align: center;
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    text-transform: capitalize;

    padding: 4px 8px;
}

.CEEestimado {
    background-color: #F2BF12;

    color: #000000;

    border-radius: 99px;
    text-align: center;
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;

    text-transform: capitalize;

    padding: 4px 8px;
}

#mapContainerResults {
    width: 60%;
}

a.fontColorWhite:active, a.fontColorWhite:hover, a.fontColorWhite:link {
    text-decoration: none;

    color: #ffffff;
}

.error {
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
    
    color: red;
}

/* HELPERS */

.anchoCompleto {
    width: 100%;
}

.textoCentrado {
    text-align: center;
}

.borderBottomGris {
    border-bottom: 1px solid #ffffff;
}

.fontColorWhite {
    color: #ffffff;
}

.iconColorNegativo {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(61deg) brightness(104%) contrast(102%);
}

.iconColorPrimary {
	fill: var(--primary-color);
}

.iconColorQuinary {
	fill: var(--quinary-color);	
}

.buttonColorPrimary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.colorPrimary {
    color: #42005A;
}

.colorBerry {
    color: #A9009C;
}

.colorBlack_05 {
    color: #F2F2F2;
}

.colorBlack_50 {
    color: #808080;
}

.colorBlack_75 {
    color: #404040;
}

.colorSky {
    color: #B3D9FF;
}

.fontSizeXS {
    font-size: 8px;
}

.fontSizeS {
    font-size: 10px;
}

.fontSizeM {
    font-size: 14px;
}

.fontSizeL {
    font-size: 18px;
}

.fontSizeXL {
    font-size: 24px;
}

.fontWeight400 {
    font-weight: 400;
}

.fontWeight500 {
    font-weight: 500;
}

.textTransformCapitalize {
    text-transform: capitalize;
}