@charset "UTF-8";
.flow-menu {
  position: sticky;
  top: 50px;
  left: 0;
  height: calc(100vh - 50px);
  width: 4%;
  background-color: #F3FAFE;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  border-right: 2px solid #D6EBFD;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
}
@media only screen and (max-width: 1300px) {
  .flow-menu {
    width: 6%;
  }
}
@media only screen and (max-width: 700px) {
  .flow-menu {
    position: fixed;
    width: 20%;
    z-index: 26;
    top: 52px;
    left: -65%;
    transition: 0.3s ease-in;
  }
  .flow-menu.mb-show {
    left: 0;
    transition: 0.3s ease-in;
  }
}
.flow-menu-categories {
  height: 100%;
}
.flow-menu-categories h2 {
  margin-top: 0;
  text-align: center;
  font-size: 22px;
}
@media only screen and (max-width: 1600px) {
  .flow-menu-categories h2 {
    font-size: 18px;
  }
}
.flow-menu-category {
  width: 100%;
  height: 20%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #D6EBFD;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-menu-category:hover {
  background-color: rgba(225, 231, 235, 0.4);
}
.flow-menu-category.category-active {
  background-color: rgba(225, 231, 235, 0.7);
}
.flow-menu-category button {
  background-color: transparent;
  border: 0;
  outline: 0;
  border-radius: 70%;
  height: 35px;
  width: 35px;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
}
.flow-menu-category button span {
  width: 20px;
  height: 2px;
  background-color: #C9CFD3;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  transform-origin: center;
}
.flow-menu-category button.active-btn span:first-child {
  transform: rotate(45deg);
}
.flow-menu-category button.active-btn span:last-child {
  transform: rotate(-45deg);
}
.flow-menu-category button.inactive-btn span:first-child {
  transform: rotate(90deg);
}
.flow-menu-category button:hover {
  background-color: rgba(225, 231, 235, 0.5);
}
.flow-menu-category-content {
  display: flex;
  justify-content: center;
}
.flow-menu-category-content-text {
  display: flex;
  align-items: center;
}
.flow-menu-category-content-text img {
  width: 35px;
  max-height: 40px;
}
.flow-menu-category-content-text b {
  font-size: 19px;
}
@media only screen and (max-width: 1600px) {
  .flow-menu-category-content-text b {
    font-size: 15px;
  }
}

.flow-form {
  margin: auto;
  width: 50%;
  padding-bottom: 30px;
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.flow-form .has-float-label {
  display: block;
  position: relative;
}
.flow-form .has-float-label label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.flow-form .has-float-label label, .flow-form .has-float-label > span {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 11px;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  top: -0.5em;
  left: 25px;
  z-index: 3;
  line-height: 1;
  padding: 0 1px;
}
.flow-form .has-float-label label::after, .flow-form .has-float-label > span::after {
  content: " ";
  display: block;
  position: absolute;
  background: white;
  height: 2px;
  top: 50%;
  left: -0.2em;
  right: -0.2em;
  z-index: -1;
}
.flow-form .has-float-label .form-input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.flow-form .has-float-label .form-input::-moz-placeholder {
  opacity: 1;
  transition: all 0.2s;
}
.flow-form .has-float-label .form-input:-ms-input-placeholder {
  opacity: 1;
  transition: all 0.2s;
}
.flow-form .has-float-label .form-input::placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.flow-form .has-float-label .form-input:placeholder-shown:not(:focus)::-webkit-input-placeholder {
  opacity: 0;
}
.flow-form .has-float-label .form-input:placeholder-shown:not(:focus)::-moz-placeholder {
  opacity: 0;
}
.flow-form .has-float-label .form-input:placeholder-shown:not(:focus):-ms-input-placeholder {
  opacity: 0;
}
.flow-form .has-float-label .form-input:placeholder-shown:not(:focus)::placeholder {
  opacity: 0;
}
.flow-form .has-float-label .form-input:placeholder-shown:not(:focus) + * {
  font-size: 12px;
  opacity: 0.7;
  top: 1.1em;
  font-weight: normal;
}
@media only screen and (max-width: 1600px) {
  .flow-form {
    width: 80%;
  }
}
@media only screen and (max-width: 700px) {
  .flow-form {
    width: 90%;
  }
}
.flow-form .sign-check {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 60%;
  margin-left: 15%;
}
@media only screen and (max-width: 700px) {
  .flow-form .sign-check {
    width: 80%;
    margin-left: 0;
  }
}
.flow-form .sign-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.flow-form .sign-check span {
  position: absolute;
  border-radius: 2px;
  top: 2px;
  left: 5px;
  height: 20px;
  width: 20px;
}
.flow-form .sign-check input:checked ~ .checkmark {
  background-color: #5AAA8E;
  border: 2px solid #5AAA8E;
  border-radius: 2px;
}
.flow-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: -2px !important;
  margin-left: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-top: auto;
  width: 15px;
  height: auto;
}
.flow-form .sign-check input:checked ~ .checkmark:after {
  display: block;
}
.flow-form .sign-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.flow-form .sign-label {
  font-size: 11px;
  color: #848484;
  margin-bottom: 5px;
  padding: 0;
  left: 0;
  width: 82%;
  opacity: 0.7;
  line-height: 1.2;
  cursor: default;
}
@media only screen and (max-width: 700px) {
  .flow-form .sign-label {
    width: 82%;
    margin-left: 14%;
    font-size: 12px;
    top: -30px;
    position: relative;
  }
  .flow-form .sign-label p {
    margin: 0px;
  }
}
.flow-form .checkmark {
  border: 2px solid #5AAA8E;
  background-color: transparent;
}
.flow-form .errorborder {
  border: 2px solid #FF1600 !important;
}
.flow-form .error-input {
  border: 2px solid #FF1600 !important;
}
.flow-form .errorlabel {
  color: #FF1600 !important;
  opacity: 1 !important;
}
.flow-form-btn {
  margin: auto;
  background: transparent linear-gradient(180deg, #89C7AE 0%, #25C082 100%) 0% 0% no-repeat padding-box;
  border: none;
  outline: none;
  border-radius: 17px;
  padding: 20px 0;
  width: 60%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  max-width: 30%;
  margin-top: 4vh;
  font-size: 14px;
  padding: 18px 0;
}
.flow-form-btn svg {
  margin-left: 15px;
}
.flow-form-btn:hover {
  background: transparent linear-gradient(180deg, #51a684 0%, #18a86e 100%) 0% 0% no-repeat padding-box;
}
@media only screen and (max-width: 700px) {
  .flow-form-btn {
    max-width: 100%;
    width: 90%;
    margin-top: 0vh;
  }
}
.flow-form p {
  text-align: center;
}
.flow-form p b {
  text-align: center;
  font-size: 14px;
  margin-top: 5vh;
  width: 70%;
}
.flow-form .has-float-label {
  margin: 20px auto;
  width: 70%;
}
.flow-form .has-float-label.form-input-error input {
  border: 1px solid #FF1600;
}
.flow-form .has-float-label.form-input-valid input {
  border: 1px solid #5AAA8E;
}
.flow-form .has-float-label .form-error {
  position: absolute;
  left: -175px;
  padding: 5px 8px;
  background-color: white;
  width: 140px;
  height: 50px;
  top: -25px;
  font-size: 12px;
  border: 2px solid #FF3A27;
  border-radius: 4px;
}
.flow-form .has-float-label .form-error::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #FF3A27;
  bottom: 5px;
}
.flow-form .has-float-label input {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #D6EBFD;
  padding: 10px 25px;
  border-radius: 17px;
  width: 90%;
}
.flow-form .has-float-label input:focus-visible {
  border: 1px solid #D6EBFD;
  outline: none;
}
.flow-form .has-float-label .go-down {
  font-size: 12px;
  opacity: 0.7;
  top: 1.1em;
  font-weight: normal;
}
.flow-form .has-float-label .go-up {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 85%;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  top: -0.5em;
  left: 20px;
  z-index: 3;
  line-height: 1;
  padding: 0 1px;
}

.cards {
  width: 94%;
  margin-left: 3%;
  padding: 2vh 0;
}
@media only screen and (max-width: 700px) {
  .cards {
    width: 100%;
    margin: 0;
    padding-bottom: 8vh;
  }
}
.cards .splide__pagination__page.is-active {
  background-color: #001A45;
}
.cards .splide__list .splide__slide {
  margin-left: -15px;
  padding: 15px 0;
  padding-top: 40px;
}
@media only screen and (max-width: 700px) {
  .cards .splide__list .splide__slide {
    margin: 0;
  }
}
.cards .splide__pagination {
  bottom: -2em;
}
.cards .splide__arrow {
  height: 3em;
  width: 3em;
  background: #A6D1FD;
  opacity: 1;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
}
.cards .splide__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.cards .splide__arrow:disabled:hover {
  opacity: 0.3;
}
.cards .splide__arrow:hover {
  opacity: 1;
}
.cards .splide__arrow svg {
  fill: #001A45;
  width: 1.5em;
  height: 1.5em;
}
.cards .splide__arrow--prev {
  left: -3em;
}
@media only screen and (max-width: 1600px) {
  .cards .splide__arrow--prev {
    left: -2em;
  }
}
@media only screen and (max-width: 700px) {
  .cards .splide__arrow--prev {
    left: 0.2em;
  }
}
.cards .splide__arrow--next {
  right: -3.3em;
}
@media only screen and (max-width: 700px) {
  .cards .splide__arrow--next {
    right: 0.2em;
  }
}

.category-card {
  border: 3px solid #D6EBFD;
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1607843137);
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  border-radius: 14px;
  position: relative;
  height: 90%;
}
.category-card.highlight-border {
  border: 3px solid #00B96F;
}
@media only screen and (max-width: 1300px) {
  .category-card {
    width: 80%;
  }
}
@media only screen and (max-width: 700px) {
  .category-card {
    width: 75%;
  }
}
.category-card .skele-top {
  height: 70px;
  background-color: #F4F4F4;
  width: 80%;
  border-radius: 5px;
  margin-bottom: 25px;
}
.category-card .skele-mid {
  height: 100px;
  background-color: #F4F4F4;
  width: 90%;
  border-radius: 5px;
  margin-bottom: 25px;
}
.category-card .skele-mid-bot {
  height: 100px;
  background-color: #F4F4F4;
  width: 100%;
  border-radius: 5px;
  margin-bottom: 25px;
}
.category-card .skele-bot {
  height: 60px;
  background-color: #F4F4F4;
  width: 85%;
  border-radius: 5px;
  margin-bottom: 25px;
}
.category-card-offerbox {
  position: absolute;
  height: 50px;
  width: 90%;
  left: 5%;
  top: -40px;
  background: rgb(226, 246, 237);
  background: linear-gradient(90deg, rgb(226, 246, 237) 0%, rgb(198, 221, 250) 100%);
  color: #001A45;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  font-size: 14px;
}
.category-card-offerbox .offer-sub {
  font-size: 12px;
  line-height: 1.2;
}
.category-card-badges {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  min-height: 35px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
.category-card-badges span {
  margin-right: 10px;
}
.category-card-badge {
  border-radius: 4px;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  margin: 2px 3px !important;
  object-fit: contain !important;
}
.category-card .stars {
  transform: scale(0.8);
  transform-origin: center;
}
.category-card .choose-banner {
  max-height: 35px;
}
.category-card-highlight {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.category-card-highlight-extra {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 0;
}
.category-card-price {
  color: #001A45;
  display: flex;
  flex-direction: column;
  padding: 0px;
  position: relative;
  width: 50%;
  text-align: center;
  border-right: 2px solid #D6EBFD;
  padding: 8px 0;
}
.category-card-price:nth-child(2) {
  border-right: none;
}
.category-card-price span {
  font-weight: 600;
  font-size: 14px;
}
.category-card-price b {
  font-size: 1.3em;
}
.category-card-price-info {
  position: absolute;
  left: 81%;
  top: 6px;
  display: flex;
  align-items: center;
  z-index: 25;
}
.category-card-price-info-icon {
  border-radius: 70%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #AED1FB;
  color: white;
}
.category-card-price-info-icon:hover + .category-card-price-info-text-con {
  visibility: visible;
}
.category-card-price-info-text {
  font-weight: 500 !important;
  font-size: 12px;
  width: 150px;
  border: 1px solid #AED1FB;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  flex-direction: column;
}
.category-card-price-info-text-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #AED1FB;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  left: -10px;
}
.category-card-price-info-text-con {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  visibility: hidden;
  margin-left: 15px;
}
.category-card.unemployment-card .category-card-box {
  font-size: 13px;
}
.category-card-box {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  background: #D2E5FC;
  width: 100%;
  text-align: center;
  font-weight: 700;
  color: #001A45;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  margin-top: 10px;
}
.category-card-box img {
  height: 20px !important;
  margin: 0 !important;
  margin-right: 5% !important;
}
.category-card img {
  max-width: 70%;
  height: 70px;
  margin: auto;
  object-fit: contain;
}
.category-card-usp-list {
  background-color: #EEF3FA;
  width: 100%;
  padding: 5px 0;
  margin-bottom: 15px;
}
.category-card-usp-list div {
  padding: 5px 20px;
  font-size: 0.9em;
  font-weight: 600;
  color: #001A45;
  display: flex;
  align-items: center;
}
.category-card-usp-list div img {
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: 10px;
}
.category-card-btn {
  margin: auto;
  background: transparent linear-gradient(180deg, #89C7AE 0%, #25C082 100%) 0% 0% no-repeat padding-box;
  border: none;
  outline: none;
  border-radius: 17px;
  padding: 20px 0;
  width: 60%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 13px 0;
  width: 80%;
  text-decoration: none;
  font-size: 18px;
  background: transparent linear-gradient(180deg, #89C7AE 0%, #25C082 100%) 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
}
.category-card-btn svg {
  margin-left: 15px;
}
.category-card-btn:hover {
  background: transparent linear-gradient(180deg, #51a684 0%, #18a86e 100%) 0% 0% no-repeat padding-box;
}

.tm-card {
  border: 3px solid;
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1607843137);
  width: 85%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
  border-radius: 14px;
  position: relative;
  height: 90%;
}
.tm-card-offer {
  position: absolute;
  height: 50px;
  width: 90%;
  left: 5%;
  top: -40px;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  font-size: 14px;
}
.tm-card-content {
  padding: 10px 15px;
}
.tm-card-button {
  margin: auto;
  background: transparent linear-gradient(180deg, #89C7AE 0%, #25C082 100%) 0% 0% no-repeat padding-box;
  border: none;
  outline: none;
  border-radius: 17px;
  padding: 20px 0;
  width: 60%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 25px;
  padding: 13px 0;
  width: 80%;
  text-decoration: none;
}
.tm-card-button svg {
  margin-left: 15px;
}
.tm-card-button:hover {
  background: transparent linear-gradient(180deg, #51a684 0%, #18a86e 100%) 0% 0% no-repeat padding-box;
}
.tm-card-graphics {
  display: flex;
  width: 80%;
  margin: auto;
  justify-content: space-between;
}

.fiber-usp {
  background-color: #2E6BC6;
  color: white;
  padding: 2px 4px;
  border-radius: 4px;
}
.fiber-highlight {
  background-color: #2E6BC6 !important;
  color: white;
  border-color: #2E6BC6 !important;
}

.broadband-usp {
  background-color: #629ED5;
  color: white;
  padding: 2px 4px;
  border-radius: 4px;
}
.broadband-highlight {
  background-color: #629ED5 !important;
  color: white;
  border-color: #629ED5 !important;
}

.mobileBroadband-usp {
  background-color: #5AACED;
  color: white;
  padding: 2px 4px;
  border-radius: 4px;
}
.mobileBroadband-highlight {
  background-color: #5AACED !important;
  color: white;
  border-color: #5AACED !important;
}

.xdsl-usp {
  background-color: #A6D1FF;
  padding: 2px 4px;
  border-radius: 4px;
}
.xdsl-highlight {
  background-color: #A6D1FF !important;
  border-color: #A6D1FF !important;
}

.profile-form {
  margin: auto;
  width: 100%;
  padding-top: 1px;
  padding-bottom: 25px;
  background-color: #F0FCF7;
  border-radius: 0 0 0 14px;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  border: 1px solid #5AAA8E;
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.profile-form .has-float-label {
  display: block;
  position: relative;
}
.profile-form .has-float-label label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.profile-form .has-float-label label, .profile-form .has-float-label > span {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 11px;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  top: -0.5em;
  left: 25px;
  z-index: 3;
  line-height: 1;
  padding: 0 1px;
}
.profile-form .has-float-label label::after, .profile-form .has-float-label > span::after {
  content: " ";
  display: block;
  position: absolute;
  background: white;
  height: 2px;
  top: 50%;
  left: -0.2em;
  right: -0.2em;
  z-index: -1;
}
.profile-form .has-float-label .form-input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.profile-form .has-float-label .form-input::-moz-placeholder {
  opacity: 1;
  transition: all 0.2s;
}
.profile-form .has-float-label .form-input:-ms-input-placeholder {
  opacity: 1;
  transition: all 0.2s;
}
.profile-form .has-float-label .form-input::placeholder {
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.profile-form .has-float-label .form-input:placeholder-shown:not(:focus)::-webkit-input-placeholder {
  opacity: 0;
}
.profile-form .has-float-label .form-input:placeholder-shown:not(:focus)::-moz-placeholder {
  opacity: 0;
}
.profile-form .has-float-label .form-input:placeholder-shown:not(:focus):-ms-input-placeholder {
  opacity: 0;
}
.profile-form .has-float-label .form-input:placeholder-shown:not(:focus)::placeholder {
  opacity: 0;
}
.profile-form .has-float-label .form-input:placeholder-shown:not(:focus) + * {
  font-size: 12px;
  opacity: 0.7;
  top: 1.1em;
  font-weight: normal;
}
@media only screen and (max-width: 700px) {
  .profile-form {
    width: 100%;
    margin-top: 52px;
  }
}
.profile-form-pop {
  background-color: #E2F7EE;
  height: 50px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px 0 0 14px;
  cursor: pointer;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
}
.profile-form-pop b {
  font-size: 17px;
  color: #001A45;
  margin-left: 20px;
}
.profile-form-pop img {
  width: 30px;
  height: auto;
}
@media only screen and (max-width: 700px) {
  .profile-form-pop {
    width: 50px;
    right: 0;
    position: fixed;
  }
  .profile-form-pop b {
    display: none;
  }
}
.profile-form-con {
  position: fixed;
  top: 0;
  right: 0;
  width: 350px;
  z-index: 25;
  border-radius: 0 0 0 14px;
}
@media only screen and (max-width: 700px) {
  .profile-form-con {
    width: 100%;
  }
}
.profile-form .sign-check {
  display: block;
  position: relative;
  padding-left: 45px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 80%;
  margin-left: 5%;
}
.profile-form .sign-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.profile-form .sign-check span {
  position: absolute;
  border-radius: 2px;
  top: 2px;
  left: 5px;
  height: 25px;
  width: 25px;
}
.profile-form .sign-check input:checked ~ .checkmark {
  background-color: #5AAA8E;
  border: 2px solid #5AAA8E;
  border-radius: 2px;
}
.profile-form .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: -2px !important;
  margin-left: auto;
  margin-bottom: auto;
  margin-right: auto;
  margin-top: auto;
  width: 15px;
  height: auto;
}
.profile-form .sign-check input:checked ~ .checkmark:after {
  display: block;
}
.profile-form .sign-check .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.profile-form .sign-label {
  font-size: 11px;
  color: #848484;
  margin-bottom: 5px;
  padding: 0;
  left: 0;
  width: 82%;
  opacity: 0.7;
  line-height: 1.2;
  cursor: default;
}
@media only screen and (max-width: 700px) {
  .profile-form .sign-label {
    width: 82%;
    margin-left: 14%;
    font-size: 12px;
    top: -30px;
    position: relative;
  }
  .profile-form .sign-label p {
    margin: 0px;
  }
}
.profile-form .checkmark {
  border: 2px solid #5AAA8E;
  background-color: transparent;
}
.profile-form .errorborder {
  border: 2px solid #FF1600 !important;
}
.profile-form .error-input {
  border: 2px solid #FF1600 !important;
}
.profile-form .errorlabel {
  color: #FF1600 !important;
  opacity: 1 !important;
}
.profile-form-btn {
  margin: auto;
  background: transparent linear-gradient(180deg, #89C7AE 0%, #25C082 100%) 0% 0% no-repeat padding-box;
  border: none;
  outline: none;
  border-radius: 17px;
  padding: 20px 0;
  width: 60%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  max-width: 50%;
  margin-top: 1vh;
  font-size: 14px;
  padding: 10px 0;
}
.profile-form-btn svg {
  margin-left: 15px;
}
.profile-form-btn:hover {
  background: transparent linear-gradient(180deg, #51a684 0%, #18a86e 100%) 0% 0% no-repeat padding-box;
}
@media only screen and (max-width: 700px) {
  .profile-form-btn {
    max-width: 100%;
    width: 70%;
    margin-top: 0vh;
    padding: 0;
    height: 55px !important;
  }
}
.profile-form b {
  text-align: center;
  font-size: 20px;
  margin-top: 5vh;
}
.profile-form .has-float-label {
  margin: 20px auto;
  width: 80%;
}
.profile-form .has-float-label.form-input-error input {
  border: 1px solid #FF1600;
}
.profile-form .has-float-label.form-input-valid input {
  border: 1px solid #5AAA8E;
}
.profile-form .has-float-label .form-error {
  position: absolute;
  left: -175px;
  padding: 5px 8px;
  background-color: white;
  width: 140px;
  height: 50px;
  top: -25px;
  font-size: 12px;
  border: 2px solid #FF3A27;
  border-radius: 4px;
}
.profile-form .has-float-label .form-error::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -10px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #FF3A27;
  bottom: 5px;
}
.profile-form .has-float-label input {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border: 1px solid #D6EBFD;
  padding: 10px 25px;
  border-radius: 17px;
  width: 90%;
  background-color: #F0FCF7;
  font-weight: 500;
  font-size: 12px;
}
@media only screen and (max-width: 700px) {
  .profile-form .has-float-label input {
    font-size: 14px;
  }
}
.profile-form .has-float-label input:focus-visible {
  border: 1px solid #D6EBFD;
  outline: none;
}
.profile-form .has-float-label .go-down {
  font-size: 14px;
  opacity: 0.7;
  top: 1.25em;
  font-weight: normal;
}
.profile-form .has-float-label .go-up {
  position: absolute;
  left: 0;
  top: 0;
  cursor: text;
  font-size: 85%;
  opacity: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  top: -0.5em;
  left: 20px;
  z-index: 3;
  line-height: 1;
  padding: 0 1px;
}

.filter {
  margin: 3px 0;
  margin-right: 15px;
  padding-bottom: 6px;
}
.filter-address {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.filter-address-error {
  font-size: 12px !important;
  padding-left: 10px;
  color: #FF1600;
  position: absolute;
  bottom: -10px;
  display: none;
}
.filter-address input {
  background-color: white;
  outline: none;
  border: 1px solid #A6D1FD;
  min-height: auto !important;
  font-size: 13px !important;
  border-radius: 4px;
  padding: 8px 10px;
  width: 300px;
}
.filter-address-btn {
  position: absolute;
  right: 1px;
  top: 22px;
  height: 33px;
  outline: none;
  border: none;
  padding: 0 15px;
  color: white;
  background-color: #5AAA8E;
  border-radius: 0 4px 4px 0;
  font-weight: bold;
  cursor: pointer;
}
.filter-address-btn:hover {
  background-color: #50917a;
}
.filter-address-info {
  padding-left: 25px;
}
.filter-address-info b {
  font-size: 13px !important;
}
.filter.multiple-choice {
  margin-right: 8px !important;
}
.filter .basic-single {
  min-width: 150px;
}
@media only screen and (max-width: 700px) {
  .filter {
    margin-right: 6px;
  }
}
.filter b {
  font-size: 14px;
  position: relative;
}
.filter b img {
  height: 11px;
  width: auto;
}
.filter p {
  margin: 0;
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 500;
}
.filter.multi-filter {
  width: 300px;
}
.filter-button {
  position: absolute;
  top: 0px;
  left: 0px;
  border: none;
  background-color: #A6D1FD;
  color: white;
  font-size: 17px;
  font-weight: bold;
  padding: 6px 0;
  padding-left: 15px;
  padding-right: 25px;
  border-radius: 14px;
  cursor: pointer;
}
.filter-button-icon {
  width: 10px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter-button-icon span {
  width: 100%;
  height: 2px;
  background-color: white;
  display: block;
  position: absolute;
}
.filter-button-icon span:first-child {
  transform-origin: center;
  transform: rotate(90deg);
}
.filter-button-icon.transparent-btn-icon span {
  background-color: #001A45;
}
.filter-button-icon.transparent-btn-icon span:first-child {
  transform: rotate(0deg);
}
.filter-button.transparent-btn {
  background-color: transparent;
  color: #001A45;
  padding-left: 10px;
}
.filter-container {
  margin-left: 3%;
  width: auto;
  display: flex;
  position: relative;
  width: 90%;
  margin-top: 25px;
  flex-wrap: wrap;
  min-height: 30px;
}
.filter-content {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  background-color: #F2F8FD;
  padding: 10px;
  padding-top: 35px;
  border-radius: 14px;
}
.filter .select__multi-value {
  background: transparent;
  border: 1px solid #A6D1FD;
}
.filter .select__indicator {
  padding: 3px !important;
  cursor: pointer;
}
.filter .select__multi-value__remove {
  cursor: pointer;
}
.filter .select__control {
  background-color: #E6F1FD;
  border: 1px solid #A6D1FD;
  min-height: auto !important;
  font-size: 13px !important;
}
.filter .select__control:hover {
  border-color: #77b6f7;
}
.filter .select__control .select__indicator-separator {
  background-color: #A6D1FD;
}
.filter .select__value-container--is-multi {
  cursor: text;
}
.filter .select__menu {
  z-index: 2;
  background-color: #E6F1FD;
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.filter .select__menu ::-webkit-scrollbar {
  width: 7px;
}
.filter .select__menu ::-webkit-scrollbar-track {
  background-color: #F2F8FD;
  border-radius: 10px;
}
.filter .select__menu ::-webkit-scrollbar-thumb {
  background: #72B4F7;
  border-radius: 10px;
}
.filter .select__menu ::-webkit-scrollbar-thumb:hover {
  background: #72B4F7;
}
.filter .select__menu .select__option {
  font-size: 13px !important;
}
.filter .multiple-choice-buttons {
  display: flex;
  align-items: center;
}
.filter .multiple-choice-button {
  background-color: #E6F1FD;
  border: 1px solid #A6D1FD;
  font-size: 13px !important;
  border-radius: 4px;
  padding: 8px;
  margin-right: 7px;
  cursor: pointer;
  min-width: 45px;
}
.filter .multiple-choice-button.highlight {
  background-color: #A6D1FD;
}
.filter-input {
  position: relative;
}
.filter-input::after {
  position: absolute;
  content: "kWh";
  right: 45px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.filter-input input {
  background-color: white;
  border: 1px solid #A6D1FD;
  font-size: 13px;
  padding: 8px 6px;
  border-radius: 4px;
  width: 100px;
}
.filter-input input:focus {
  outline: none;
}
.filter-input button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background: transparent linear-gradient(180deg, #89C7AE 0%, #25C082 100%) 0% 0% no-repeat padding-box;
  border: none;
  outline: none;
  color: white;
  border-radius: 0px 4px 4px 0;
  cursor: pointer;
}
.filter-input button:hover {
  background: transparent linear-gradient(180deg, #72c2a2 0%, #15bd7a 100%) 0% 0% no-repeat padding-box;
}
.filter-info {
  position: absolute;
  left: 105%;
  top: -140%;
  display: flex;
  align-items: center;
  z-index: 25;
  pointer-events: none;
}
.filter-info-icon {
  border-radius: 70%;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #AED1FB;
  color: white;
  cursor: default;
  font-size: 11px;
  pointer-events: all;
}
.filter-info-icon:hover + .filter-info-text-con {
  visibility: visible;
}
.filter-info-text {
  font-weight: 500 !important;
  font-size: 12px;
  width: 300px;
  border: 1px solid #AED1FB;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  flex-direction: column;
  pointer-events: none;
}
.filter-info-text ul {
  margin: 5px 0;
}
.filter-info-text-triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #AED1FB;
  position: absolute;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  left: -10px;
}
.filter-info-text-con {
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  visibility: hidden;
  margin-left: 15px;
}

.flow-commerciel {
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
  padding: 5px;
}
.flow-commerciel a {
  color: black;
}

.bb-loader {
  position: absolute;
  height: calc(100% + 25px);
  width: 100%;
  background-color: white;
  top: -25px;
  left: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pre-load {
  position: fixed;
  top: 50px;
  right: 0;
  width: 100%;
  height: calc(100vh - 50px);
  background-color: white;
  z-index: 40;
}
.pre-load img {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
}
@media only screen and (max-width: 700px) {
  .pre-load img {
    width: 100%;
  }
}

.long-span {
  font-size: 12px !important;
}

.flow-content {
  width: 96%;
  padding-bottom: 5vh;
  overflow-x: hidden;
  position: relative;
}
@media only screen and (max-width: 700px) {
  .flow-content {
    width: 100%;
  }
}

.flow-loading {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
  width: 950px;
  max-width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.flow-loading b {
  font-size: 22px;
}
.flow-loading img {
  max-width: 450px;
  height: auto;
}
@media only screen and (max-width: 700px) {
  .flow-loading {
    position: relative;
    width: 100%;
    height: 450px;
  }
}

.flow-category {
  padding-top: 0px;
  position: relative;
}
.flow-category .no-address-box {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 30%;
  width: 45%;
  height: 300px;
  background-color: #D6EBFD;
  z-index: 3;
  border-radius: 14px;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 45px;
}
.flow-category .no-address-box b {
  color: #001A45;
  font-size: 25px;
  text-align: center;
}
.flow-category .no-address-box button {
  margin: auto;
  background: transparent linear-gradient(180deg, #89C7AE 0%, #25C082 100%) 0% 0% no-repeat padding-box;
  border: none;
  outline: none;
  border-radius: 17px;
  padding: 20px 0;
  width: 60%;
  color: white;
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
  margin-top: 45px;
}
.flow-category .no-address-box button svg {
  margin-left: 15px;
}
.flow-category .no-address-box button:hover {
  background: transparent linear-gradient(180deg, #51a684 0%, #18a86e 100%) 0% 0% no-repeat padding-box;
}
@media only screen and (max-width: 700px) {
  .flow-category .no-address-box {
    width: 66%;
    top: 25%;
  }
  .flow-category .no-address-box button {
    width: 100%;
  }
}

.flow-header {
  background-color: #E2F7EE;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0px 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  padding: 5px 0;
  align-items: center;
}
.flow-header h2 {
  font-size: 26px;
  margin: 0;
}
@media only screen and (max-width: 1600px) {
  .flow-header h2 {
    font-size: 26px;
  }
}
.flow-header img {
  height: 30px;
  width: auto;
  margin-right: 15px;
}

.flow {
  display: flex;
}

.blur {
  filter: blur(0.3rem);
}

footer {
  margin-top: 0 !important;
}

header {
  padding: 11px 0 !important;
}
@media only screen and (max-width: 700px) {
  header {
    height: 36px;
    padding: 8px 0 !important;
  }
}

.navbar.container {
  max-width: 100% !important;
}
.navbar-right {
  display: none !important;
}
.navbar-left {
  padding-left: 55px !important;
}
@media only screen and (max-width: 700px) {
  .navbar-left {
    padding: 0 !important;
    position: absolute;
    top: 10px;
    display: flex;
    justify-content: center;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }
  .navbar-left img {
    max-width: 100%;
  }
}
.navbar .navbar-mobile-bm {
  display: none;
}
@media only screen and (max-width: 700px) {
  .navbar .flow-burger {
    width: 30px;
    margin-left: 10px;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .navbar .flow-burger span {
    width: 100%;
    background-color: #001A45;
    height: 3px;
    display: block;
    transition: 0.2s ease-in;
  }
  .navbar .flow-burger span:nth-child(2) {
    margin: 5px 0;
  }
  .navbar .flow-burger.mb-show span {
    transition: 0.2s linear;
  }
  .navbar .flow-burger.mb-show span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
    transition: 0.3s ease-in;
  }
  .navbar .flow-burger.mb-show span:nth-child(2) {
    opacity: 0;
  }
  .navbar .flow-burger.mb-show span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -7px);
    transition: 0.3s ease-in;
  }
}

.dawa-autocomplete-container {
  /* relative position for at de absolut positionerede forslag får korrekt placering.*/
  position: relative;
  width: 100%;
  max-width: 30em;
}

.dawa-autocomplete-container input {
  /* Både input og forslag får samme bredde som omkringliggende DIV */
  width: 100%;
  box-sizing: border-box;
  font-size: inherit;
  font-family: inherit;
}

.dawa-autocomplete-suggestions {
  margin: 0.3em 0 0 0;
  padding: 0;
  text-align: left;
  border-radius: 0.3125em;
  background: #fcfcfc;
  box-shadow: 0 0.0625em 0.15625em rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
  overflow-y: auto;
  box-sizing: border-box;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion {
  margin: 0;
  list-style: none;
  cursor: pointer;
  padding: 0.4em 0.6em;
  color: #333;
  border: 0.0625em solid #ddd;
  border-bottom-width: 0;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-width: 0.0625em;
}

.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion.dawa-selected,
.dawa-autocomplete-suggestions .dawa-autocomplete-suggestion:hover {
  background: #f0f0f0;
}