.layout__afterheader {
  max-height: 60px;
}

.layout__afterheader .wrapper {
  padding: 0;
}

.layout__afterheader .wrapper h1 {
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.budget__footer {
  background: #fff;
  border-top: #eaeaea solid 1px;
  width: 100%;
  font-size: 10px;
}

.budget__footer .wrapper {
  padding: 0;
}

.budget__footer ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-around;
  padding: 6px;
  margin: 0;
  font-weight: 700;
}

.budget__footer ul li  {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
}

.budget__footer ul li svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.budget__secure {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  border-top: #ddd solid 1px;
}

.budget__secure ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.budget__secure img {
  max-width: 100px;
  max-height: 30px;
  margin-left: 10px;
}


.budget {
  background: #f8f8f8;
}

.budget__progress {
  height: 5px;
  background: #ebebeb;
}

.budget__progress-percent {
  width: 10%;
  height: 100%;
  background: #000;

  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.budget__admin-steps {
  display: flex;
  list-style: none;
  padding: 0;
  margin: -20px 0 0 0;
  justify-content: center;
}

.budget__admin-steps a {
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  margin: 0 2px;
  cursor: pointer;
}

.budget__title {
  font-size: 20px;
  text-align: center;
  margin: 20px auto;
  padding: 20px 0;
  line-height: 1.3;
}

.budget__company-sent {
  background: #673ab7;
  color: #fff;
  margin: 10px -23px -15px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 0 3px;
  border-left: #441990 solid 3px;
  border-right: #441990 solid 3px;
}

.budget__company-list {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  max-width: 1000px;
}

.budget__company-list li {
  cursor: pointer;
  box-sizing: border-box;
  width: calc(20% - 20px);
  padding: 20px;
  border-radius: 25px;
  box-shadow: #eaeaea 1px 1px 20px;
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: #fff solid 3px;
}

.budget__company-list li h4 {
  margin: 10px 0 0 0;
  padding: 0;
}

.budget__company-list li h3 {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
}

.budget__company-prices {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 5px;
}

.budget__company-finalprice {
  font-weight: 700;
}

.budget__company-discount {
  color: #777;
  text-decoration: line-through;
  margin-right: 7px;
}

.budget__company-list li.selected {
  border: #00cf80 solid 3px;
}

.budget__company-list li.selected .budget__select-company {
  color: #00cf80;
}

.budget__company-list li img {
  max-width: 100px;
  height: 50px;
  object-fit: contain;
  object-position: center center;
  margin: 0 auto auto;
}

.budget__company-list li .budget__select-company {
  margin-top: 25px;
  font-weight: 700;
}

.budget__max-companies {
  text-align: center;
}

.budget__default-selectors {
  padding: 0;
  margin: 0 auto;
  list-style: none;
  max-width: 400px;
}

.budget__default-selector {
  background: #fff;
  padding: 20px;
  border-radius: 25px;
  box-shadow: #eaeaea 1px 1px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: #fff solid 5px;
}

.budget__default-selector.selected {
  border: #00ffb0 solid 5px;
  background: #00ffb0;
  color: #000;
}

.budget__default-selector--graph {
  opacity: 0.8;
  padding: 20px 0;
  margin-bottom: 20px;
}

.budget__default-selector--graph .budget__monthly-consumption-card-bars span {
  background: #999;
}

.budget__default-selector--graph.selected {
  opacity: 1;
  background: #fff;
}

.budget__default-selector--graph.selected .budget__monthly-consumption-card-bars span {
  background: #00ffb0;
}


.budget__wrapper {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  height: calc(100vh - 154px);
  min-height: 500px;
  overflow-x: hidden;
}

.budget__step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 0 20px;
  box-sizing: border-box;
  height: calc(100vh - 154px);
  overflow-x: hidden;

  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(100vw);
  opacity: 0;
}

.budget__step.js-active {
  transform: translateX(0);
  opacity: 1;
}

.budget__step.js-past {
  transform: translateX(-100vw);
  opacity: 0;
}

.budget__step p {
  text-align: center;
  margin: -30px auto 30px;
  max-width: 650px;
  font-weight: 700;
  color: #999;
}

.pager__buttons {
  margin-top: 20px;
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 20%, rgba(255,255,255,1) 80%, rgba(255,255,255,0) 100%);
  position: sticky;
  z-index: 999999;
  bottom: -15px;
  left: 0;
  transform: translateX(-20px);
  width: 100vw;
  display: flex;
  justify-content: center;
}

.budget__button {
  margin: 30px 0 30px 0;
  border: 0;
  max-width: 150px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  padding: 11px 35px;
  white-space: nowrap;
  background: linear-gradient(to right, #000, #000, #000, #000);
  background-size: 300% 300%;
  background-position: 0 50%;
  color: #fff;
  box-shadow: rgb(0 0 0 / 16%) 1px 1px 5px;
  display: block;
  border-radius: 34px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.15s ease;
  cursor: pointer;
}

.budget__monthly-consumption-card h3 {
  margin: 10px 0 4px;
  padding: 0;
  font-size: 16px;
}

.budget__monthly-consumption-card h4 {
  margin: 0;
  padding: 0;
  color: #888;
  font-size: 14px;
}

.budget__monthly-consumption-card-bars {
  padding: 0 20px;
  border-bottom: #ccc solid 1px;
  height: 80px;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-end;
}


.budget__monthly-consumption-card-months {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #ccc;
  margin-top: -8px;
  padding: 0 20px;
}

.budget__monthly-consumption-card-seasons {
  display: flex;
  padding: 0 20px;
  justify-content: space-evenly;
  font-size: 12px;
  color: #ccc;
  margin-top: -8px;
}

.budget__monthly-consumption-card-seasons span {
  width: 25%;
  text-align: center;
}

.budget__monthly-consumption-card-hours {
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    font-size: 12px;
    color: #ccc;
}

.budget__range-slider {
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #00ffb0 0%, #00ffb0 0%, #f1f1f1 0%, #f1f1f1 100%);
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  transform: rotate(-90deg) translateX(28px);
  width: 75px;
  height: 13px;
  margin-left: -40px;
  margin-right: -40px;
}

.budget__range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  background: #00ffb0;
  cursor: pointer;
}

.budget__range-slider::-moz-range-thumb,
.budget__range-slider::-ms-thumb {

}

.budget__monthly-consumption-card-bars span {
  display: block;
  background: #00B86B;
  width: 10pt;
  border-top-left-radius: 3.5pt;
  border-top-right-radius: 3.5pt;
}

.budget__default-selector--graph .budget__monthly-consumption-card-bars span.budget__bar-separator {
  width: 1px;
  height: calc(100% + 33px);
  background: #e9e9e9;
}

.budget__default-selector--graph .budget__monthly-consumption-card-bars span.budget__hour-separator {
  width: 1px;
}

.budget__autocomplete,
.budget__text {
  max-width: 400px;
  margin: 0 auto 30px;
  padding: 0;
  border-radius: 25px;
  box-shadow: #eaeaea 1px 1px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}

.budget__text {
  max-width: 600px;
}

.budget__autocomplete input,
.budget__text textarea {
  border: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  font-family: 'Quicksand',sans-serif;
  font-weight: 700;
  font-size: 16px;

}

.budget__text textarea {
  display: block;
  resize: none;
  height: 200px;
}

.budget__autocomplete input:focus,
.budget__text textarea:focus {
  outline: none;
}


.budget__map {
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
  border-radius: 25px;
  box-shadow: #eaeaea 1px 1px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.budget__map .vue-map-container {
  width: 100%;
  height: 250px;
}

.budget__map-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    color: #fff;
}

.budget__upload-file {
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
  border-radius: 25px;
  box-shadow: #eaeaea 1px 1px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}
.budget__upload-file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.budget__upload-file input + label {
  background: #fff;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.budget__files {
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  max-width: 400px;
  margin: 20px auto;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
}

.budget__files li {
  box-shadow: #eaeaea 1px 1px 20px;
  background: #fff;
  padding: 20px;
  border-radius: 25px;
  margin: 5px 0;
}

.budget__consumption-months {
  max-width: 400px;
  margin: 40px auto 40px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: #eaeaea 1px 1px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
}

.budget__consumption-months label {
  text-align: left;
  font-size: 10px;
  display: flex;
  flex-direction: column;
  width: calc(50% - 20px);
  margin: 3px;
}

.budget__consumption-months input {
  padding: 5px;
}

.budget__consumption-months select {
  width: (100% - 40px);
  padding: 5px;
  margin-top: 20px;
}

.budget__finished {
  max-width: 400px;
  margin: 40px auto 40px;
  padding: 50px 30px 30px;
  box-sizing: border-box;
  border-radius: 25px;
  box-shadow: #eaeaea 1px 1px 20px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  overflow: hidden;
  background: #fff;
}

.budget__finished h2 {
  margin: 0;
  font-size: 33px;
}

.budget__finished p {
  margin: 30px 0;
  line-height: 1.6;
}

@media (max-width: 768px){

  .layout__afterheader .wrapper h1 {
    font-size: 17px;
  }

  .budget__company-list li {
    width: 100%;
  }

  .budget__finished h2 {
    font-size: 22px;
    line-height: 1.6;
  }

  .budget__wrapper {
    height: calc(100vh - 122px);
  }

  .budget__step {
    height: calc(100vh - 122px);
  }

  .budget__footer {
    display: none;
  }
}