button.filter-no-result-show-all-btn {
  font-family: Open Sans, Open Sans-fallback, sans-serif;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
  border-radius: 10px;
  padding: 8px 16px;
  opacity: 1;
  letter-spacing: 0;
  color: var(--blue500);
  background-color: transparent;
  border: 1px solid var(--blue500);
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.reviews-filter-reset-button {
  display: none;
  width: max-content;
  border-radius: 18px;
  font-size: 14px;
  line-height: 0;
  position: absolute;
  box-shadow: none;
  cursor: pointer;
  background: none;
  padding: 0;
  border: none;
  font-weight: 400;
  color: var(--blue500);
  right: 0;
  z-index: 1;
}
.products-container-no-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0 48px;
}
.products-container-no-result h4 {
  margin-top: 0;
  font-size: 16px;
}

.family-subscriptions-table .table-column-price-action {
  flex: 0 1 250px;
}

.filter-no-result-show-all-btn {
  font-family: Open Sans, Open Sans-fallback, sans-serif;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
  border-radius: 10px;
  padding: 8px 16px;
  opacity: 1;
  letter-spacing: 0;
  color: var(--blue500);
  background-color: transparent;
  border: 1px solid var(--blue500);
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wrapper#container:has(.table-row-container--telecom),
.wrapper:has(.table-row-container--broadband),
.wrapper#container:has(.table-row-container--economy) {
  margin-top: 32px;
}

.table-grid-compressed {
  display: grid;
  gap: 10px 16px;
  grid-template-columns: 244px auto;
  grid-template-areas:
    "table-info table-info table-info table-info"
    "table-filter table-container table-container table-container";
}

.table-grid-full-width {
  display: grid;
  gap: 10px 0;
  grid-auto-flow: row;
  grid-template-areas:
        "table-filter table-filter table-filter table-filter"
        "table-info table-info table-info table-info"
        "table-container table-container table-container table-container";
}

.table-filter {
  display: block;
  grid-area: table-filter;
  background: var(--white);
  height: max-content;
  border-radius: 10px;
  border: 1px solid var(--grey100);
  filter: drop-shadow(var(--table-box-shadow));
  margin-bottom: 22px;
}

.table-info {
  grid-area: table-info;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 10px;
  flex-wrap: wrap;
}

.table-info:has(.family-container) {
  justify-content: space-between;
  align-items: end;
}

.kontantkort-filter:has(.demography-buttons) .table-info {
  justify-content: space-between;
}

.table-info .table-info__headline {
  font-weight: 600;
  font-size: 16px;
}

.table-info__subheadline {
  font-size: 14px;
  display: inline-block;
  align-items: baseline;
  position: relative;
  z-index: 4;
}

.table-info__subheadline::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  color: var(--green500);
  font-weight: 600;
}

.table-container {
  height: 100%;
  grid-area: table-container;
}

.table-container--cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 10px;
}

.table-grid-full-width .filter__container {
  display: grid;
  grid-template-columns: 310px auto auto auto;
  gap: 0 20px;
}

.table-info__buttons__filter {
  background: transparent;
  width: 113px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
  height: 38px;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-content: space-between;
  padding: 8px;
  align-items: center;
  border: 1px solid var(--blue500);
  display: none;
}

.table-info__buttons__filter:hover {
  background: var(--bg-border-button-hover);
}

.table-info__buttons__filter:before {
  font-family: 'Font Awesome 6 Pro';
  font-weight: 500;
  content: "\f1de";
  color: var(--blue500);
}

.table-info__buttons__filter span {
  font-weight: 600;
  color: var(--blue500);
  pointer-events: none;
}


.table-info .table-info__information {
  color: var(--black);
  font-weight: 400;
  align-self: end;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.4;
}

.table-info.insurance .table-info__information {
  padding-bottom: 0;
}

.noResult {
  padding-bottom: 80px;
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.noResult i.fa-regular.fa-party-horn {
  font-size: 48px;
  color: #b7b8c3;
  margin-top: 48px;
  margin-bottom: 16px;
}

.table-container--cards .noResult {
  grid-column: 1/-1;
}

.no-result-img {
  width: 67px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.no-result-string-first {
  color: var(--black);
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

.no-result-string-second {
  color: var(--black);
  font-size: 16px;
  margin-bottom: 24px;
}

.noResult .no-result-string-second .filter__container__button {
  border: none;
  display: inline-block !important;
  margin: 0 !important;
  height: auto;
  padding: 0;
  color: #3b65ce;
  font-family: var(--font-family-custom);
  font-weight: 400;
  font-size: 16px;
  position: relative;
  top: 0;
  right: 0;
}

.demography-buttons {
  text-decoration: none;
  color: inherit;
  margin-top: 16px;
  margin-right: auto;
}

.demography-buttons-headline {
  align-self: flex-start;
  font-size: 12px;
  margin-bottom: 5px;
  color: var(--black);
}

.demography-buttons-outer {
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  width: 100%;
}

.demography-buttons-inner {
  overflow-y: scroll;
  width: 100%;
  scrollbar-width: none; /* hide scrollbar in firefox */
}

.demography-buttons-inner::-webkit-scrollbar {
  display: none;
}

.demography-buttons-group {
  white-space: nowrap;
}

.demography-buttons-single {
  appearance: none;
  font-family: inherit;
  cursor: pointer;
  margin-right: 8px;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  user-select: none;
  border-radius: 17px;
  padding: 8px 16px;
  font-weight: 600;
  opacity: 1;
  letter-spacing: 0;
  color: var(--border-button-color);
  background-color: transparent;
  border: 1px solid var(--border-button-color);
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.demography-buttons-single:hover,
.demography-buttons-single:active,
.demography-buttons-single:focus,
.demography-buttons-single.active {
  background: var(--blue100);
  text-decoration: none;
  color: var(--blue500);
}

.extra-scroll-space {
  width: 50px;
  display: -webkit-inline-box;
}

.table-dropdowns-container {
  display: flex;
  gap: 0 10px;
  position: relative;
}

.no-partner-modal-container,
.partner-modal-container {
  position: fixed;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  z-index: 10;
  max-width: 488px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: 10px;
  font-family: Open Sans, Open Sans-fallback, sans-serif;
}

.partner-modal-container {
  width: 694px;
  max-width: none;
  padding: 0 0 84px 0;
}

.partner-modal-container .product-modal-header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.partner-modal-container .product-modal-header .product-modal-header-columns {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100%;
  padding: 24px 24px 0;
}

.partner-modal-container.modal-landline .product-modal-header .product-modal-header-columns {
  flex-direction: row;
}

.partner-modal-container .product-modal-header .product-modal-header-columns .table-column-logo {
  padding-right: 0;
  border-right: none;
  border-radius: 0;
  margin-right: 0;
}

.partner-modal-container .product-modal-header .product-modal-header-columns .table-column-simple-value,
.partner-modal-container .product-modal-header .product-modal-header-columns .table-column-simple-suffix {
  font-size: 20px;
  font-weight: 600;
}

.partner-modal-container .product-modal-header .product-modal-header-columns .price-tooltip-column-container__tooltip i {
  display: none;
}

.partner-modal-container .product-modal-header .product-modal-header-name {
  display: flex;
  flex-basis: 100%;
  padding: 24px 24px 0 24px;
  font-size: 16px;
  font-weight: 600;
}

.partner-modal-container .product-modal-header .product-modal-header-name .data-column-container__unit {
  font-size: 16px;
}

.partner-modal-container .product-modal-header .product-modal-header-columns .data-column-container__text {
  font-size: 12px;
}

.partner-modal-container .product-modal-header .product-modal-header-columns .data-column-container__value-container {
  font-size: 20px;
}

.partner-modal-container .product-modal-header .product-modal-header-close {
  display: none;
}

.partner-modal-container .product-modal-header > span {
  font-size: 20px;
  font-weight: 700;
}

.partner-modal-container .product-modal-header img {
  max-height: 28px;
  width: auto;
}

.partner-modal-container .column-container__item.company-logo-column-container {
  margin-right: 41%;
}

.partner-modal-container .product-modal-body::-webkit-scrollbar {
  display: none;
}

.partner-modal-container .product-modal-body {
  scrollbar-width: none;
}

.partner-modal-container .product-modal-body {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 0 24px 32px 24px;
}

.partner-modal-container .product-modal-body .product-modal-section-title {
  font-size: 14px;
  font-weight: 700;
  margin-top: 24px;
}

.partner-modal-container .product-modal-body .product-modal-section-data {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 12px;
  line-height: 1;
}

.partner-modal-container .product-modal-body .product-modal-section-data-separator {
  flex: 1 1 0;
  margin: 0 3px 3px;
  border-width: 0 0 1px;
  border-bottom-style: dashed;
  border-bottom-color: var(--grey400);
}

.partner-modal-container .product-modal-body .product-modal-section-data-value {
  font-weight: 600;
}

.partner-modal-container .product-modal-body .product-modal-section-data-value.campaign-color {
  color: var(--red500);
}

.partner-modal-container .product-modal-body .product-modal-section-line {
  border-bottom: 1px solid var(--grey400);
  margin: 12px 2px;
}

.partner-modal-container .product-modal-body .product-modal-section-data-comparison-wrapper {
  display: flex;
  justify-content: space-between;
  background: var(--blue100);
  border-radius: 4px;
  line-height: 1.4;
  padding: 8px;
  margin-top: 16px;
}

.partner-modal-container .product-modal-body .product-modal-section-data-comparison-disclaimer {
  display: flex;
  justify-content: end;
  font-size: 12px;
  line-height: 1;
  margin-top: 8px;
}

.partner-modal-container .product-modal-body .product-modal-offer {
  border-radius: 5px;
  background: var(--red50);
  padding: 8px;
  margin-top: 24px;
}

.partner-modal-container .product-modal-body .product-modal-body-left,
.partner-modal-container .product-modal-body .product-modal-body-right {
  flex: 0 1 50%;
}

.partner-modal-container .product-modal-footer {
  position: absolute;
  left: 0;
  right: 0;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -3px 3px var(--box-shadow-color);
}

.partner-modal-container .product-modal-footer-click-count {
  display: flex;
  align-items: center;
  gap: 4px;
}

.partner-modal-container .product-modal-footer-click-count i {
  color: var(--green500);
  font-size: 18px;
  margin-right: 4px;
}

.partner-modal-container .product-modal-footer .table-column-price-action {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 0;
  border: 0;
  padding: 0;
}

.partner-modal-container .product-modal-footer .table-column-price-action .table-column-price-container {
  margin-bottom: 0;
  flex-direction: column;
}

.partner-modal-container .product-modal-footer .table-column-price-action .table-column-price-campaign .table-column-price-value {
  font-size: 20px;
}

.partner-modal-container .product-modal-footer .table-column-price-action del.table-column-price-monthly > i {
  display: none;
}

.partner-modal-container .product-modal-footer .table-column-price-action .table-column-action-container .btn-primary__link {
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-modal-container .product-modal-footer .table-column-price-action .table-column-action-container .btn-primary__link:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 10px;
  content: "\f054";
}

.product-modal-footer-price__ordinary {
  background: var(--blue50);
  border-radius: 5px;
  padding: 4px 8px;
}

.product-modal-footer-price__yearly {
  background: var(--blue50);
  border-radius: 5px;
  padding: 4px 8px;
}

.no-partner-modal-container .generic-width-max-content,
.partner-modal-container .generic-width-max-content {
  max-width: max-content;
  margin: 0 auto;
}

.partner-modal-container i.modal-close-icon.fa-regular.fa-xmark {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 20px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -40px;
  right: -40px;
  color: var(--white);
  background: var(--grey500);
  padding: 14px;
  border-radius: 50%;
  border: 1px solid var(--grey500);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.partner-modal-container i.modal-close-icon.fa-regular.fa-xmark:hover {
  background: #b7b8c3;
}

/* Economy sector */
.partner-modal-container.economy-sector .product-modal-header i {
  display: none !important;
}

.partner-modal-container.economy-sector .product-modal-header {
  flex-direction: row;
  align-items: center;
  padding: 24px 24px 0;
}

.table-info.insurance .table-filter {
  display: flex;
  background: none;
  height: auto;
  border-radius: 0;
  filter: none;
  margin-bottom: 0;
  z-index: 5;
}
.table-info.insurance .filter__container {
  grid-template-columns: 100%;
}
.table-info.insurance .group__checkboxes {
  display: flex;
  column-gap: 22px;
}
.table-info.insurance .filter__container__outer {
  padding: 0;
}
.table-info.insurance .default-radiobutton span:first-child {
  border: 1px solid #4d72b1;
}
.table-info.insurance .default-radiobutton__input:checked + .default-radiobutton span:first-child {
  background: #4d72b1;
  border-color: #4d72b1;
}
.table-info.insurance .filter__container__group .filter__container__title {
  font-family: Open Sans, Open Sans-fallback, sans-serif;
  pointer-events: none;
}
.table-info.insurance .default-radiobutton span:last-child {
  padding-left: 4px;
}

.table-row-error-report {
  background: var(--grey50);
  border: 1px solid var(--grey300);
  border-radius: 10px;
  padding: 8px;
  margin-top: -8px;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  color: var(--grey500);
  position: relative;
  overflow: hidden;
}
.table-row-error-report i {
  font-size: 10px;
}
.table-row-error-report span {
  line-height: 1.4;
}
.table-row-error-report .table-row-error-report-close {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 16px;
  line-height: 1;
  cursor: pointer;
}
.table-row-error-report-modal-container {
  transform: translateX(-1000%);
  position: fixed;
  top: 10%;
  left: 0;
  right: 0;
  z-index: 7;
  max-width: 660px;
  margin: 0 auto;
  padding: 0 45px;
  border-radius: 10px;
}
.table-row-error-report-modal-container-close {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 20px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -40px;
  right: 5px;
  color: var(--white);
  background: var(--grey500);
  padding: 14px;
  border-radius: 50%;
  border: 1px solid var(--grey500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-row-error-report-modal-container-close:hover {
  background: #4a4e69;
  border-color: #4a4e69;
}
.table-row-error-report-modal {
  background: var(--white);
  padding: 32px;
  border-radius: 10px;
}
.table-row-error-report-modal-headline {
  font-family: var(--font-family-custom);
  font-size: 20px;
  font-weight: 600;
  color: #4a4e69;
  line-height: 1;
}
.table-row-error-report-modal-product {
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--grey300);
  border-radius: 10px;
  margin: 24px 0;
}
.table-row-error-report-modal-product img {
  width: auto;
  height: 20px;
}
.table-row-error-report-modal-product > div {
  display: flex;
  flex-direction: column;
  margin-left: 24px;
  font-weight: 600;
}
.table-row-error-report-modal-product-price {
  color: var(--red500);
  font-weight: 400;
}
.table-row-error-report-modal-product-price.no-campaign {
  color: var(--black);
}
.table-row-error-report-modal-product-price del {
  color: var(--black);
}
.table-row-error-report-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.table-row-error-report-modal-list li {
  margin-bottom: 24px;
  position: relative;
  cursor: pointer;
  display: block;
}
.table-row-error-report-modal-list li input {
  margin: 0;
  cursor: pointer;
}
.table-row-error-report-modal-list li input[type='radio']:after {
  width: 16px;
  height: 16px;
  border-radius: 15px;
  top: -1px;
  left: 0;
  position: relative;
  background-color: var(--white);
  content: '';
  display: inline-block;
  visibility: visible;
  border: 1px solid var(--blue500);
}
.table-row-error-report-modal-list li input[type='radio']:checked:after {
  width: 16px;
  height: 16px;
  border-radius: 15px;
  top: -2px;
  left: 0;
  position: relative;
  background-color: var(--white);
  font-family: "Font Awesome 6 Pro";
  font-size: 17px;
  content: "\f192";
  color: var(--blue500);
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-row-error-report-modal-list li label {
  display: inline-block;
  width: calc(100% - 20px);
  font-size: 14px;
  font-weight: 700;
  padding-left: 21px;
  cursor: pointer;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 15px;
}
.table-row-error-report-modal-list li .error-option>span {
  display: block;
  padding-left: 21px;
  color: var(--black);
}
.table-row-error-report-modal-list li .error-option.textarea-focused:after {
  content: 'Beskriv gärna felet mer ingående (valfritt)';
  position: absolute;
  bottom: 140px;
  left: 35px;
  font-size: 12px;
  font-weight: 600;
  color: #4a4e69;
}
.table-row-error-report-modal-list li .error-option.textarea-focused:has(#other-issue):after {
  content: 'Beskriv vad som är fel';
}
.table-row-error-report-modal-list li input#first-option + label.textarea-focused + span + textarea + .textarea-character-counter:after,
.table-row-error-report-modal-list li input#second-option + label.textarea-focused + span + textarea + .textarea-character-counter:after,
.table-row-error-report-modal-list li input#third-option + label.textarea-focused + span + textarea + .textarea-character-counter:after,
.table-row-error-report-modal-list li input#fourth-option + label.textarea-focused + span + textarea + .textarea-character-counter:after,
.table-row-error-report-modal-list li input#fifth-option + label.textarea-focused + span + textarea + .textarea-character-counter:after {
  content: 'Beskriv gärna felet mer ingående (valfritt)';
  position: absolute;
  bottom: 140px;
  left: 35px;
  font-size: 12px;
  font-weight: 600;
  color: #4A4E69;
}
.table-row-error-report-modal-list textarea.issue-textarea {
  display: none;
  width: calc(100% - 22px);
  height: 140px;
  margin-top: 12px;
  margin-left: 22px;
  padding: 12px;
  border: 1px solid #a5c3f1;
  border-radius: 5px;
  font-size: 14px !important;
  color: var(--black);
  outline: none;
  resize: none;
}
.table-row-error-report-modal-list .textarea-character-counter {
  display: none;
  justify-content: end;
  margin-bottom: 8px;
  position: relative;
}
.table-row-error-report-modal-list .textarea-character-counter span {
  margin: 0;
}
.table-row-error-report-modal-send {
  display: inline-block;
  border-radius: 10px;
  padding: 12px 24px;
  background: var(--blue500);
  color: var(--white);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}
.table-row-error-report-modal-send:hover {
  text-decoration: none;
  background: var(--blue600);
  color: var(--white);
}
.table-row-error-report-modal-send.disabled {
  opacity: 0.6;
}
.table-row-error-report-modal-send.disabled:hover {
  text-decoration: none;
  background: var(--blue500);
  color: var(--white);
}
.table-row-error-report-feedback-modal {
  transform: translateX(-1000%);
  position: fixed;
  top: 30%;
  left: 0;
  right: 0;
  z-index: 7;
  max-width: 660px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.table-row-error-report-feedback-modal-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
}
.table-row-error-report-feedback-modal-headline:before {
  font-family: "Font Awesome 6 Pro";
  font-size: 42px;
  font-weight: 600;
  content: "\f058";
  color: var(--green500);
  margin-bottom: 16px;
  line-height: 1;
}
.table-row-error-report-feedback-modal-body {
  font-size: 18px;
  margin-top: 16px;
  line-height: 1;
  text-align: center;
}
.table-row-error-report-feedback-modal-close {
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 24px;
  background: var(--blue500);
  color: var(--white);
  font-family: var(--font-family-custom);
  cursor: pointer;
  line-height: 1.4;
  margin-top: 24px;
  text-transform: uppercase;
}
.table-row-error-report-feedback-modal-close:hover {
  text-decoration: none;
  background: var(--blue600);
  color: var(--white);
}

@media screen and (max-width: 1024px) {
  .table-grid-full-width .filter__container {
    grid-template-columns: 250px auto auto auto;
  }
  .table-container--cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
  }
  .table-row-error-report-modal-container-close:hover {
    background: none;
    border-color: transparent;
  }
}

@media screen and (max-width: 800px) {
  .partner-modal-container .product-modal-header .product-modal-header-columns .table-column-simple-value,
  .partner-modal-container .product-modal-header .product-modal-header-columns .table-column-simple-suffix {
    font-size: 16px;
  }
  .reviews-filter-reset-button {
    top: -26px;
    right: 16px;
    z-index: 2;
  }
  .reviews-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .mobile-container-reviews {
    padding: 16px;
    border: 1px solid var(--grey100);
    border-radius: 10px;
    box-shadow: var(--default-box-shadow);
    margin-top: 16px;
    min-height: 150px;
  }
  .review-filter {
    margin-bottom: 0;
    display: none;
    position: fixed;
    z-index: 7;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    border-radius: 0;
    filter: none;
    border: 1px solid var(--grey100);
    height: 100%;
    padding-top: 52px;
  }
  .review-filter-mobile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 0;
    background: var(--white);
    border: 1px solid var(--grey100);
    border-radius: 10px;
    box-shadow: var(--default-box-shadow);
  }
  .mobile-show-review-filter {
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px;
    color: var(--blue500);
    border: 1px solid var(--blue500);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .mobile-show-review-filter i {
    pointer-events: none;
  }
  .mobile-review-filter-modal-header {
    position: absolute;
    top: 0;
  }
  .mobile-review-filter-modal-header {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    box-shadow: 0 1px 3px var(--box-shadow-color);
    background: var(--white);
  }
  .mobile-review-filter-modal-footer {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -3px 3px var(--box-shadow-color);
  }
  .mobile-review-filter-modal-footer a {
    width: 100%;
    display: inline-block;
    min-width: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 10px;
    padding: 12px;
    background: var(--blue500);
    color: var(--white);
    cursor: pointer;
    line-height: 1.4;
  }
  .mobile-review-filter-modal-header i {
    color: var(--blue500);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    padding: 16px;
  }
  .mobile-review-filter-modal-header h2 {
    margin: 0;
    font-size: 16px;
    line-height: 1;
  }
  .review-filter .filter__container {
    padding-top: 16px;
    padding-bottom: 16px;
    overflow: visible;
  }
  .review-filter-mobile.review-filter {
    display: flex;
    padding: 16px 0;
  }
  .review-filter-mobile.review-filter .filter__container__group {
    width: 100%;
  }
}


@media screen and (max-height: 800px) {
  .table-row-error-report-modal-container-close:hover {
    background: none;
    border-color: transparent;
  }
  .table-row-error-report-modal-container {
    top: 10%;
    bottom: 10%;
  }
  .table-row-error-report-modal {
    max-height: 80dvh;
    padding: 0;
  }
  .table-row-error-report-modal-headline {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 16px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--grey300);
    font-size: 18px;
    z-index: 1;
  }
  .table-row-error-report-modal-container-close {
    top: 7px;
    right: 50px;
    z-index: 2;
    color: #4a4e69;
    background: none;
    padding: 14px;
    border: none;
  }
  .table-row-error-report-modal-product {
    margin: 24px 16px;
  }
  .table-row-error-report-modal-list {
    margin: 0 16px;
  }
  .table-row-error-report-modal-send-wrapper {
    position: sticky;
    bottom: 0;
    padding: 16px;
    background: var(--white);
    width: 100%;
    text-align: center;
    box-shadow: 0 -3px 3px var(--box-shadow-color);
  }
  .table-row-error-report-scrollable-content {
    position: relative;
    overflow-y: scroll;
    max-height: calc(100dvh - 130px);
  }
}

@media screen and (max-height: 800px) and (min-width: 800px) {
  .table-row-error-report-scrollable-content {
    max-height: calc(100dvh - 33dvh);
  }
}

@media screen and (max-width: 799px) {
  .table-info__buttons__filter:hover {
    background: transparent;
  }
  .table-dropdowns-container {
    flex: 0 1 calc(50% - 8px);
    max-width: calc(50% - 8px);
    margin-top: 4px;
  }
  .table-row-error-report-modal-list textarea.issue-textarea {
    height: 200px;
    font-size: 16px !important;
  }

  .table-grid-full-width {
    grid-template-areas:
        "table-info table-info table-info table-info"
        "table-container table-container table-container table-container";
  }

  .table-grid-compressed {
    grid-template-columns: 100%;
    grid-template-areas:
        "table-info"
        "table-container";
    gap: 10px;
  }

  .table-grid-full-width .filter__container {
    display: grid;
    grid-template-columns: 100%;
    grid-auto-rows: max-content;
    gap: 8px 0;
  }

  .table-bolan.table-grid-full-width .filter__container {
    grid-template-columns: 100% !important;
  }

  .table-info {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px 16px;
  }

  .table-info .table-info__information {
    grid-column: 1 / -1;
    grid-row: 3;
    display: flex;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
  }

  .table-info.table-info--no-widget .table-info__information {
    grid-column: 1 / -1;
  }

  .table-info.table-info--no-widget .filter__container__widget {
    grid-column: none;
    display: none;
  }

  .table-filter {
    position: fixed;
    z-index: 7;
    width: 100%;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    border-radius: 0;
    margin-bottom: 0;
    filter: none;
    border: 1px solid var(--grey100);
    height: 100%;
  }

  .table-info.insurance .table-filter {
    border: none;
  }

  .table-info .control-group {
    max-width: none;
  }

  .table-info.insurance {
    display: flex;
    justify-content: start;
    flex-direction: column;
  }
  .table-info.insurance .table-info__buttons__sorting {
    margin-left: 16px;
  }
  .table-info.insurance .group__checkboxes {
    display: block;
  }
  .table-info.insurance .filter-header,
  .table-info.insurance .filter__container__result-button {
    display: none;
  }
  .table-info.insurance .marked-overlay-option .overlay__option {
    background: var(--bg-border-button-hover);
  }
  .table-info.insurance .table-filter {
    transform: translateX(0);
    position: static;
  }
  .table-info.insurance .table-info__buttons__filter {
    display: none;
  }
  .table-info.insurance .table-info__information {
    width: 100%;
  }
  .table-info.insurance .filter__container {
    padding-bottom: 15px;
  }
  .table-info.insurance .filter__container__group .filter__container__title::after {
    display: none;
  }
  .table-info.insurance .filter__container__group {
    padding: 0;
  }

  .table-row-error-report-modal-container {
    top: auto;
    bottom: 0;
    padding: 0;
  }
  .table-row-error-report-modal {
    padding: 16px;
    border-radius: 10px 10px 0 0;
  }
  .table-row-error-report-modal {
    padding: 0;
    position: relative;
    max-height: 100dvh;
  }
  .table-row-error-report-modal-list li .error-option.textarea-focused:after {
    bottom: 200px;
  }
  .table-row-error-report-modal-headline {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 16px;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--grey300);
    font-size: 18px;
    z-index: 1;
  }
  .table-row-error-report-modal-product {
    margin: 24px 16px;
  }
  .table-row-error-report-modal-list {
    margin: 0 16px;
  }
  .table-row-error-report-modal-send-wrapper {
    position: sticky;
    bottom: 0;
    padding: 16px;
    background: var(--white);
    width: 100%;
    text-align: center;
    box-shadow: 0 -3px 3px var(--box-shadow-color);
  }
  .table-row-error-report-modal-send {
    width: 100%;
  }
  .table-row-error-report-feedback-modal {
    left: 5%;
    right: 5%;
  }
  .table-row-error-report-modal-container-close {
    top: 7px;
    right: 1px;
    z-index: 2;
    color: #4a4e69;
    background: none;
    padding: 14px;
    border: none;
  }
  .table-row-error-report-modal-send.disabled {
    pointer-events: none;
  }

  .table-info.insurance .table-info__buttons__sorting {
    margin: 0;
    align-self: start;
  }
  .table-info.insurance .table-info__buttons__sorting__overlay .overlay__default li {
    margin-top: 0;
  }
  .table-info {
    grid-template-columns: repeat(1, 1fr);
  }
  .table-info__buttons__filter {
    font-size: 14px;
    display: flex;
    flex: 0 1 calc(50% - 8px);
    justify-content: center;
    gap: 8px;
  }

  .kontantkort-filter .table-info,
  .mobiltbredbandkontant-filter .table-info {
    flex-wrap: wrap;
  }

  .mobilabonnemang-filter .table-info,
  .mobiltbredband-filter .table-info,
  .page-template-sokresultat .table-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }

  .mobilabonnemang-filter .table-info__buttons__price,
  .mobiltbredband-filter .table-info__buttons__price,
  .page-template-sokresultat .table-info__buttons__price {
    flex: 0 0 auto;
    height: 40px;
    order: 1;
    width: auto;
    max-width: none;
  }

  .mobilabonnemang-filter .table-info__buttons__sorting,
  .mobiltbredband-filter .table-info__buttons__sorting,
  .page-template-sokresultat .table-info__buttons__sorting,
  .kontantkort-filter .table-info__buttons__sorting,
  .mobiltbredbandkontant-filter .table-info__buttons__sorting {
    flex: 0 1 100%;
  }

  .table-economy .table-info__buttons__sorting,
  .table-bolan .table-info__buttons__sorting,
  .table-company-loans .table-info__buttons__sorting {
    flex: 0 0 auto;
  }

  .mobilabonnemang-filter .overlay__default .overlay__option,
  .mobiltbredband-filter .overlay__default .overlay__option,
  .mobiltbredbandkontant-filter .overlay__default .overlay__option,
  .kontantkort-filter .overlay__default .overlay__option,
  .page-template-sokresultat .overlay__default .overlay__option {
    justify-content: flex-start !important;
  }

  .table-info__buttons__price__overlay .overlay__default li,
  .table-info__buttons__sorting__overlay .overlay__default li {
    margin-left: 0 !important;
  }

  .overlay__default .overlay__option {
    margin: 0 !important;
  }

  .table-info__buttons__price__overlay .overlay__default,
  .table-info__buttons__sorting__overlay .overlay__default {
    justify-content: flex-start !important;
  }

  .kontantkort-filter .table-info,
  .mobiltbredbandkontant-filter .table-info {
    justify-content: flex-start;
  }

  .table-economy .table-info,
  .table-bolan .table-info,
  .table-company-loans .table-info {
    justify-content: space-between;
  }

  .table-economy .overlay__default .overlay__option {
    justify-content: space-between !important;
  }

  .table-economy .filter-sorting-fixed,
  .table-bolan .filter-sorting-fixed,
  .table-company-loans .filter-sorting-fixed {
    padding-top: 10px;
    justify-content: space-between;
  }

  .table-economy .filter-sorting-fixed .table-info__buttons__sorting,
  .table-bolan .filter-sorting-fixed .table-info__buttons__sorting,
  .table-company-loans .filter-sorting-fixed .table-info__buttons__sorting {
    margin-bottom: 0;
    display: none !important;
  }

  .table-info.insurance .overlay__default .overlay__option {
    width: auto;
    justify-content: space-between;
  }

  .table-counter-and-filter-button-container {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    gap: 8px;
  }

  .table-info .table-info__headline {
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 700;
  }

  .table-info__subheadline {
    font-size: 12px;
  }

  .partner-modal-container {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    max-height: none !important;
  }

  .partner-modal-container .product-modal-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    box-shadow: 0 1px 3px var(--box-shadow-color);
    background: var(--white);
  }

  .partner-modal-container .product-modal-header .product-modal-header-close {
    display: flex;
    font-size: 16px;
  }

  .partner-modal-container .product-modal-header .product-modal-header-close > div {
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    pointer-events: none;
  }

  .partner-modal-container .product-modal-header .product-modal-header-columns .table-column-logo {
    padding: 0;
    margin: 0 10px 0 0;
    border: none;
    align-self: center;
  }

  .table-company-loans + .partner-modal-container .product-modal-header,
  .partner-modal-container.economy-sector .product-modal-header {
    justify-content: center;
  }

  .partner-modal-container .product-modal-header i {
    color: var(--blue500);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
  }

  .partner-modal-container .product-modal-header > span {
    margin-left: 28px;
    font-size: 16px;
    line-height: 1;
  }

  .partner-modal-container .product-modal-header .product-modal-header-name {
    font-size: 20px;
  }

  .partner-modal-container .product-modal-header .column-container__item {
    margin-left: 0;
    flex: 1 1 auto;
  }

  .partner-modal-container .product-modal-header .product-modal-header-columns .data-column-container__value-container {
    font-size: 16px;
  }

  .partner-modal-container.kontantkort-modal .product-modal-header > span {
    font-size: 14px;
  }

  .partner-modal-container .product-modal-header .product-modal-header-columns {
    width: 100%;
    padding: 0;
    order: 2;
    gap: 10px;
    text-align: center;
  }

  .partner-modal-container .product-modal-body {
    gap: 0;
    flex-direction: column;
    height: auto !important;
    max-height: 100%;
    padding: 50px 0 80px 0;
  }

  .partner-modal-container .product-modal-body .product-modal-section-title {
    margin-top: 0;
    padding: 16px;
  }

  .partner-modal-container .product-modal-body .product-modal-section-data:first-child {
    margin-top: 0;
  }

  .partner-modal-container .product-modal-body .product-modal-offer {
    position: absolute;
    bottom: 130px;
    left: 16px;
    right: 16px;
  }

  .product-modal-section-data-wrapper {
    padding: 0 16px;
    margin-bottom: 16px;
  }

  .partner-modal-container .product-modal-footer {
    bottom: 0;
  }

  .partner-modal-container .product-modal-footer {
    padding: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    background: var(--white);
  }

  .partner-modal-container .product-modal-footer .product-modal-footer-click-count {
    justify-content: center;
    margin: 0 auto 16px;
    line-height: 1;
    width: 100%;
    max-width: none;
  }

  .partner-modal-container .product-modal-footer .product-modal-footer-click-count span {
    max-width: none;
  }

  .partner-modal-container .product-modal-footer .product-modal-footer-price,
  .product-modal-footer-cta {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 425px) {
  .no-result-string-first {
    font-size: 16px;
    max-width: 280px;
  }
  .no-result-string-second,
  .noResult .no-result-string-second .filter__container__button {
    font-size: 14px;
  }

  .demography-buttons-inner {
    -webkit-mask-image: linear-gradient(to left, transparent 0%, black 10%);
  }

  .table-container--cards {
    grid-template-columns: 100%;
  }

  .table-grid-full-width {
    grid-template-columns: 100%;
    grid-template-areas:
        "table-info"
        "table-container";
  }

  .table-info .table-info__headline {
    margin-bottom: 0;
  }

  .no-partner-modal-container {
    transform: translate(0px, 0px);
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 24px 16px 55px 16px;
    border-radius: 30px 30px 0 0;
  }

  .no-partner-modal-container .generic-width-max-content,
  .partner-modal-container .generic-width-max-content {
    max-width: none;
  }

  .table-row-error-report {
    gap: 4px;
  }

  .table-row-error-report .table-row-error-report-close {
    font-size: 13px;
  }

}

/* FILTER COMPONENT */
.filter__container__group .filter__container__title {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary-color);
}
.filter__container__group ~ .filter__container__group .filter__container__title {
  padding-top: 15px;
}
.filter__container__group.active .filter__container__title::after {
  transform: rotateX(180deg);
}
.filter__container__group .filter__container__title::after {
  content: " \f078";
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  float: right;
  font-size: 16px;
  position: relative;
  transition: .2s linear;
}
.filter__container__group .filter__container__title::after {
  display: none;
}
.filter__container__group .filter__container__title {
  pointer-events: none;
}

.filter__container__group:not(.active) .group__checkboxes {
  display: none;
}
.noResult .filter__container__button {
  display: block !important;
}
.filter__container__button {
  display: none;
  width: max-content;
  border-radius: 18px;
  height: 35px;
  font-size: 14px;
  line-height: 0;
  position: absolute;
  box-shadow: none;
  cursor: pointer;
  background: none;
  margin: 0 !important;
  padding: 0;
  border: none;
  font-weight: 400;
  color: var(--blue500);
  top: 8px;
  right: 16px;
  z-index: 1;
}

.table-grid-compressed .filter__container__button {
  margin-top: 10px;
}

.ischecked .filter__container__button {
  display: block;
  border: none;
  background: #eee;
  border-radius: 4px;
  padding: 5px;
  margin-top: 5px;
}
.ischecked .filter__container__button:hover {
  cursor: pointer;
  background: var(--grey300);
}

.filter__container__outer .fa-xmark {
  display: none;
}

.table-grid-compressed .group__checkboxes {
  display: block;
}

.group__checkboxes {
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  column-gap: 10px;
  display: block;
}

.filter__container__outer {
  position: relative;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.filter__container__result-button {
  display: none;
}

.default-checkbox__symbol {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

.filter-header span {
  display: none;
}

@media screen and (min-width: 800px) {
  .filter__container__widget {
    grid-row: 1 / 10;
  }
  .table-grid-full-width .filter__container__group .filter__container__title {
    pointer-events: none;
    padding-top: 0;
  }
  .table-grid-full-width .filter__container__group.active .filter__container__title::after {
    content: none;
  }
  .table-grid-full-width .filter__container__button {
    position: absolute;
  }
  .filter__container__button {
    grid-column: 4;
    justify-self: end;
  }
  .default-checkbox__container--hidden {
    display: none;
  }
}

@media screen and (max-width: 799px) {
  .filter__container__group.active .filter__container__title::after {
    display: none;
  }
  .filter__container__group .filter__container__title {
    pointer-events: none;
  }
  .filter__container__outer {
    max-height: 100dvh;
    min-height: -webkit-fill-available;
    padding: 0;
  }
  .table-info.insurance .filter__container__outer {
    max-height: none;
    min-height: 0;
  }

  .filter__container {
    padding-top: 16px;
    padding-bottom: 100px;
    overflow: auto;
  }

  .filter__container__group {
    padding: 0 16px;
  }

  .filter__container__outer .fa-xmark {
    display: flex;
    z-index: 1;
    color: var(--blue500);
    font-weight: 600;
  }

  .group__checkboxes {
    display: block;
  }

  .filter__container__result-button {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px;
    border-top: 1px solid #e9e9e9;
    width: 100%;
    background: var(--white);
    z-index: 1;
  }

  .filter-header {
    display: flex;
    border-bottom: 1px solid #e9e9e9;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
    padding: 14px 16px;
    font-size: 18px;
    gap: 12px;
    height: 52px;
  }

  .filter-header span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }
  .filter__container__widget {
    grid-column: 1 / -1;
    background: var(--white);
    border-radius: 10px;
    padding: 16px 16px 0 16px;
    z-index: 4;
  }
  .filter__container__button:hover {
    background: none;
  }
  .table-filter .filter__container button.filter__container__button.showFilterResetButton {
    display: block !important;
  }
}

/* TABLE ROW COMPONENT */
.table-row-container {
  background: var(--white);
  margin-bottom: 16px;
  padding: 16px;
  position: relative;
  width: 100%;
  min-height: 82px;
  border-radius: 10px;
  box-shadow: var(--table-box-shadow);
  border: 1px solid var(--grey100);
}
.prepaid-template .table-row-container {
  padding: 32px 16px 16px 16px;
}

.table-row-container--filter-exclude {
  display: none;
}
.table-row-container__full-size-button {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}
.table-row-container.partner-above .table-row-container__full-size-button {
  z-index: 2;
}

.table-row-container--recommended {
  padding-top: 0 !important;
}

.table-row-container--recommended:before {
  content: "Rekommenderas";
  background-color: var(--green500);
  display: inline-block;
  position: relative;
  border-radius: 10px 0;
  padding: 4px 16px;
  color: var(--white);
  font-family: var(--font-family-custom);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.table-row-container__column-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 0 0 3px 3px;
  align-items: center;
}
.table-row-container__review-button-container {
  width: 100%;
  border-radius: 0 0 4px 4px;
  padding: 0 10px 0 15px;
  min-height: 25px;
  text-align: right;
}
#table-row-container__review-text {
  font-size: 12px;
  color: var(--black);
  font-weight: 500;
}
.table-row-container__total-cost {
  font-size: 12px;
  float: right;
  color: #444;
}
.table-row-container__produkt-info-row {
  padding: 0 16px 16px 16px;
  margin: 0;
  font-size: 12px;
  color: var(--grey500);
  font-family: Open Sans, Open Sans-fallback, sans-serif;
}

.table-row-container__break {
  display: none;
}
.column-container__item {
  height: 50px;
  position: relative;
  margin-left: 10px;
  flex: 1 0 50px;
  font-weight: 600;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.family-price.price-col.ordinary-price .price-tooltip-column-container__monthly-price i.fa-solid.fa-circle-info {
  display: none;
}
.price-col.ordinary-price.family-price {
  pointer-events: none;
}
.table-row-container--telecom .data-column-container,
.table-row-container--broadband .data-column-container {
  font-weight: 400 !important;
}
.table-row-container--telecom .column-container__item.data-column-container.surf-col,
.table-row-container--broadband .column-container__item.data-column-container.surf-col,
.table-row-container--broadband .column-container__item.data-column-container.speed-col {
  font-weight: 900 !important;
}
.table-row-container--broadband .column-container__item.data-column-container.surf-col {
  flex: 1 0 0;
}
.table-row-container--broadband.mobile-broadband .column-container__item.data-column-container.bind-col {
  flex: 1 0 0;
}
.table-row-container--broadband.mobile-broadband .column-container__item.data-column-container.surf-col .data-column-container__value-container {
  font-weight: 400 !important;
}
.table-container--kontantkort .table-row-container--telecom .column-container__item.data-column-container.surf-col {
  font-weight: 400 !important;
}
.produkt-lista.operator-lista .column-container__item {
  font-size: 18px;
}
.table-row-container--telecom .column-container__item.price-col,
.table-row-container--broadband .column-container__item.price-col {
  font-weight: 900 !important;
}

@media only screen and (max-width: 1023px) {
  .table-column-logo {
    display: flex;
    flex: 1 1 100%;
    flex-direction: row;
    padding: 0 0 8px 0;
    border: 0;
    margin: 0 0 12px 0;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--grey100);
  }
  .table-column-logo img {
    height: 100%;
    margin-top: 0;
    pointer-events: none;
  }
  .table-column-logo .table-column-logo-rating {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
  }
  .table-column-logo .table-column-logo-rating .stars > div:last-child {
    margin-right: 0;
  }
  .table-column-simple,
  .table-column-simple.table-column-wide,
  .prepaid-template .table-column-simple {
    flex: 1 1 25%;
    margin: 0;
    font-size: 16px;
  }
  .broadband-template .table-column-simple {
    margin-left: 0;
  }
  .table-column-simple:has(+ .table-column-price-action) {
    padding-left: 8px;
  }
  ul.table-column-list {
    flex: 1 1 50%;
  }
  ul.table-column-list:first-of-type {
    flex: 1 1 calc(48% - 8px);
    margin-right: 8px;
  }
  ul.table-column-list:last-of-type {
    flex: 1 1 calc(48% - 8px);
    margin-left: 8px;
  }
  .table-column-price-action {
    flex: 1 1 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 0 0;
    padding: 16px 0 0 0;
    border-left: none;
    border-top: 1px solid var(--grey100);
  }
  .family-subscriptions-table .table-column-price-action {
    flex: 1 1 100%;
  }
  .prepaid-template .table-column-price-action,
  .mobile-broadband-template .table-column-price-action,
  .broadband-template .table-column-price-action {
    flex: 1 1 100%;
  }
  .table-column-price-action .table-column-price-container,
  .prepaid-template .table-column-price-action .table-column-price-container,
  .mobile-broadband-prepaid-template .table-column-price-action .table-column-price-container {
    align-items: flex-start;
    margin-left: 0;
    padding-left: 0;
  }
  .table-column-price-action .table-column-action-container {
    display: flex;
    flex: 0 0 48%;
  }
  .table-column-price-action .table-column-action-container .btn-primary--table {
    flex: 0 0 100%;
  }
  .product-modal-footer .table-column-price-action .table-column-action-container {
    flex: 0 0 auto;
  }
  .product-modal-footer .table-column-price-action {
    flex: 1 1 auto;
  }
  .product-modal-header-columns .table-column-logo {
    border: 0;
    margin: 0;
    padding: 0;
  }
  .product-modal-header-columns .table-column-simple {
    align-items: flex-start;
  }
}