:root {
  --font-family: "open sans", sans-serif;
  --font-family--heading: var(--font-family);
  --font-weight--thin: 100;
  --font-weight--extra-light: 200;
  --font-weight--light: 300;
  --font-weight--normal: 400;
  --font-weight--medium: 500;
  --font-weight--semi-bold: 600;
  --font-weight--bold: 700;
  --font-weight--extra-bold: 800;
  --font-weight--black: 900;
  --line-height: 1.5;
  --line-height--heading: 1.2;
  --border-radius: 0.1875rem;
  --spacing: 1.5rem;
  --spacing--small: 0.75rem;
  --border-width: 0.0625rem;
  --border: var(--border-width) solid currentColor;
  --focus-outline-width: 0.1875rem;
  --focus-outline-offset: 0.125rem;
  --focus-outline: var(--focus-outline-width) solid #1565c0;
  --duration: 150ms;
  --timing: ease;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #1565c0;
  border: 0;
  border-radius: var(--border-radius);
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family-base);
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  line-height: 1;
  padding: var(--spacing--small) var(--spacing);
  text-align: center;
  text-decoration: none;
  transition: background-color var(--duration) var(--timing);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}
button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover {
  background-color: #3b83d5;
}
button:focus,
[type=button]:focus,
[type=reset]:focus,
[type=submit]:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}
button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

:root {
  --form-box-shadow: inset 0 --border-width 0.1875rem rgba(#000, 0.06);
  --form-box-shadow-focus: var(--form-box-shadow), 0 0 0.3125rem #1565c0;
}

fieldset {
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  font-weight: 600;
  margin-bottom: var(--spacing--small);
  padding: 0;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing--small);
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-family);
  font-size: 1rem;
}

[type=color],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=search],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
input:not([type]),
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: var(--border);
  border-radius: var(--border-radius);
  box-shadow: var(--form-box-shadow);
  box-sizing: border-box;
  margin-bottom: var(--spacing--small);
  padding: calc(var(--spacing) / 3);
  transition: border-color var(--duration) var(--timing);
  width: 100%;
}
[type=color]:focus,
[type=date]:focus,
[type=datetime]:focus,
[type=datetime-local]:focus,
[type=email]:focus,
[type=month]:focus,
[type=number]:focus,
[type=password]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=text]:focus,
[type=time]:focus,
[type=url]:focus,
[type=week]:focus,
input:not([type]):focus,
textarea:focus {
  box-shadow: var(--form-box-shadow-focus);
}
[type=color]:disabled,
[type=date]:disabled,
[type=datetime]:disabled,
[type=datetime-local]:disabled,
[type=email]:disabled,
[type=month]:disabled,
[type=number]:disabled,
[type=password]:disabled,
[type=search]:disabled,
[type=tel]:disabled,
[type=text]:disabled,
[type=time]:disabled,
[type=url]:disabled,
[type=week]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
}
[type=color]:disabled:hover,
[type=date]:disabled:hover,
[type=datetime]:disabled:hover,
[type=datetime-local]:disabled:hover,
[type=email]:disabled:hover,
[type=month]:disabled:hover,
[type=number]:disabled:hover,
[type=password]:disabled:hover,
[type=search]:disabled:hover,
[type=tel]:disabled:hover,
[type=text]:disabled:hover,
[type=time]:disabled:hover,
[type=url]:disabled:hover,
[type=week]:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
  border: var(--border);
}
[type=color]::-webkit-input-placeholder, [type=date]::-webkit-input-placeholder, [type=datetime]::-webkit-input-placeholder, [type=datetime-local]::-webkit-input-placeholder, [type=email]::-webkit-input-placeholder, [type=month]::-webkit-input-placeholder, [type=number]::-webkit-input-placeholder, [type=password]::-webkit-input-placeholder, [type=search]::-webkit-input-placeholder, [type=tel]::-webkit-input-placeholder, [type=text]::-webkit-input-placeholder, [type=time]::-webkit-input-placeholder, [type=url]::-webkit-input-placeholder, [type=week]::-webkit-input-placeholder, input:not([type])::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #333;
  opacity: 0.25;
}
[type=color]::-moz-placeholder, [type=date]::-moz-placeholder, [type=datetime]::-moz-placeholder, [type=datetime-local]::-moz-placeholder, [type=email]::-moz-placeholder, [type=month]::-moz-placeholder, [type=number]::-moz-placeholder, [type=password]::-moz-placeholder, [type=search]::-moz-placeholder, [type=tel]::-moz-placeholder, [type=text]::-moz-placeholder, [type=time]::-moz-placeholder, [type=url]::-moz-placeholder, [type=week]::-moz-placeholder, input:not([type])::-moz-placeholder, textarea::-moz-placeholder {
  color: #333;
  opacity: 0.25;
}
[type=color]::placeholder,
[type=date]::placeholder,
[type=datetime]::placeholder,
[type=datetime-local]::placeholder,
[type=email]::placeholder,
[type=month]::placeholder,
[type=number]::placeholder,
[type=password]::placeholder,
[type=search]::placeholder,
[type=tel]::placeholder,
[type=text]::placeholder,
[type=time]::placeholder,
[type=url]::placeholder,
[type=week]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: #333;
  opacity: 0.25;
}

[type=search] {
  -webkit-appearance: textfield;
}

textarea {
  resize: vertical;
}

[type=checkbox],
[type=radio] {
  display: inline;
  margin-right: var(--spacing--small);
}

[type=file] {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

select {
  margin-bottom: var(--spacing--small);
  width: 100%;
}

[type=checkbox]:focus,
[type=radio]:focus,
[type=file]:focus,
select:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

html {
  background-color: #fff;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

dl {
  margin: 0;
}

dt {
  font-weight: 600;
  margin: 0;
}

dd {
  margin: 0;
}

figure {
  margin: 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  margin: var(--spacing) 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  line-height: var(--line-height--heading);
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: var(--border);
}

th {
  font-weight: 600;
}

th,
td {
  padding: var(--spacing--small) var(--spacing--small) var(--spacing--small) 0;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?8ioqwi");
  src: url("../fonts/icomoon.eot?8ioqwi#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?8ioqwi") format("truetype"), url("../fonts/icomoon.woff?8ioqwi") format("woff"), url("../fonts/icomoon.svg?8ioqwi#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-sort:before {
  content: "\e902";
}

.icon-sort-asc:before {
  content: "\e900";
}

.icon-sort-desc:before {
  content: "\e901";
}

html {
  color: #333;
  font-family: var(--font-family);
  font-size: 15px;
  line-height: var(--line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family--heading);
  font-size: 1.25em;
  line-height: var(--line-height--heading);
  margin: 0 0 var(--spacing--small);
  color: #543851;
}

h3 {
  font-size: 1.1em;
}

p {
  margin: 0 0 var(--spacing--small);
}

a {
  color: #1565c0;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  transition: color var(--duration) var(--timing);
}
a:hover {
  color: #3b83d5;
}
a:focus {
  outline: var(--focus-outline);
  outline-offset: var(--focus-outline-offset);
}

hr {
  border-bottom: var(--border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: var(--spacing) 0;
}

.wrapper .inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.wrapper p a {
  color: inherit;
  font-weight: bold;
}
.wrapper header {
  background-color: #EE1D3A;
  background-image: url(../img/header-bg.svg);
  background-position: top 10px left 10px;
  background-size: 75px;
  color: #fff;
}
.wrapper header h1 {
  font-size: 10vw;
  color: #fff;
}
.wrapper header .img {
  height: 0;
  padding-bottom: 59.6116504854%;
  background-image: url(../img/header-img.svg);
  background-size: contain;
}
@media screen and (min-width: 850px) {
  .wrapper header .inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  }
  .wrapper header .inner .title {
    display: flex;
    align-items: center;
  }
  .wrapper header .inner .title h1 {
    font-size: 3.5em;
  }
}
.wrapper section {
  padding: 3em 0;
}
.wrapper section:nth-of-type(2n+1) {
  background-image: url(../img/section-bg.svg);
  background-position: top 10px left 10px;
  background-size: 75px;
}
.wrapper section:nth-of-type(2n) {
  box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, 0.4);
}
.wrapper section .inner > p, .wrapper section .inner > h2, .wrapper section .inner > h3 {
  text-align: center;
}
.wrapper section .inner > h2 {
  font-size: 1.5em;
}
.wrapper section .inner > h3 {
  font-size: 1.25em;
}
.wrapper section .inner > h2, .wrapper section .inner > h3 {
  margin: 4em 0 2em;
}
.wrapper section .inner > h2:nth-child(1) {
  margin-top: 1em;
}
.wrapper section .small {
  font-size: 10px;
  text-align: center;
}
.wrapper section .ranking_factors {
  border: 1px solid #EE1D3A;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 20px;
  margin: 2em 0;
  max-width: 700px;
  margin: 3em auto;
}
.wrapper section .ranking_factors h3 {
  text-align: center;
}
.wrapper section .ranking_factors li {
  display: flex;
  justify-content: space-between;
}
.wrapper section .ranking_factors li span:nth-child(2) {
  color: #EE1D3A;
}
@media screen and (min-width: 700px) {
  .wrapper section .ranking_factors ul {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 2em;
       -moz-column-gap: 2em;
            column-gap: 2em;
  }
}
.wrapper section .stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 3em 0 2em;
}
.wrapper section .stats > div {
  flex: 1;
}
.wrapper section .stats > div .heart {
  background-image: url(../img/stat-heart.svg);
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background-repeat: no-repeat;
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  margin: auto;
}
.wrapper section .stats > div .heart span {
  margin: 0.5em 0.5em 0 0;
}
.wrapper section .stats > div p {
  text-align: center;
}
.wrapper section .table_wrap {
  margin: 2em 0;
  padding: 1px 0;
}
.wrapper section .table_wrap .row {
  display: grid;
  grid-template-columns: minmax(100px, 1fr) repeat(7, minmax(10px, 1fr));
  text-align: center;
}
.wrapper section .table_wrap .row > div {
  padding: 0.5em;
  display: flex;
  align-items: flex-end;
}
.wrapper section .table_wrap .row > div:nth-child(1) {
  text-align: left;
}
.wrapper section .table_wrap .thead {
  border-bottom: 2px solid #EE1D3A;
  margin-top: 220px;
}
.wrapper section .table_wrap .thead .row > div {
  position: relative;
  cursor: pointer;
}
.wrapper section .table_wrap .thead .row > div:nth-child(1) {
  font-size: 1.3em;
  justify-self: flex-start;
  cursor: default;
}
.wrapper section .table_wrap .thead .row > div > span {
  position: absolute;
  left: 50%;
  white-space: nowrap;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: translate(10px, 0) rotate(-90deg);
          transform: translate(10px, 0) rotate(-90deg);
}
.wrapper section .table_wrap .thead .row > div .icon-sort {
  color: #EE1D3A;
}
.wrapper section .table_wrap .tbody .row:nth-child(2n+1) {
  background-color: rgba(238, 29, 58, 0.05);
}
.wrapper section .table_wrap .tbody .row div {
  align-self: center;
  justify-content: center;
  position: relative;
}
.wrapper section .table_wrap .tbody .row div:nth-child(1) {
  justify-self: flex-start;
}
.wrapper section .table_wrap .tbody .row div.active {
  color: #EE1D3A;
  font-weight: 700;
}
@media screen and (min-width: 800px) {
  .wrapper section .table_wrap .row {
    grid-template-columns: repeat(8, minmax(100px, 1fr));
  }
  .wrapper section .table_wrap .thead {
    margin-top: 0;
  }
  .wrapper section .table_wrap .thead .row > div {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    justify-self: center;
  }
  .wrapper section .table_wrap .thead .row > div > span {
    position: relative;
    left: auto;
    white-space: unset;
    -webkit-transform: none;
            transform: none;
  }
}
.wrapper section .graph_container {
  margin: 2em 0;
}
.wrapper section .graph_container ul {
  display: flex;
  justify-content: center;
  gap: 1em;
}
.wrapper section .graph_container ul li {
  display: block;
  background-color: #FFB4B4;
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: 0.5em;
  max-width: 200px;
  text-align: center;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.wrapper section .graph_container ul li:hover {
  background-color: #f2abab;
}
.wrapper section .graph_container ul li.active {
  background-color: #EE1D3A;
}
.wrapper section .graph_container .graph_box {
  border: 1px solid #EE1D3A;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 3em 2em 1em;
}
.wrapper section .graph_container .graph_box .graph {
  display: flex;
  justify-self: space-between;
}
.wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar {
  background-color: #EE1D3A;
  position: relative;
  background-repeat: no-repeat;
}
.wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar.couples {
  background-color: #FFB4B4 !important;
  background-image: url(../img/bar_heart2.png);
}
.wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar:after {
  content: attr(data-num);
  position: absolute;
  font-size: 12px;
  font-weight: 700;
  color: #EE1D3A;
}
@media screen and (max-width: 701px) {
  .wrapper section .graph_container .graph_box .graph {
    flex-direction: column;
  }
  .wrapper section .graph_container .graph_box .graph .row_wrap {
    display: flex;
    justify-content: center;
    gap: 1em;
  }
  .wrapper section .graph_container .graph_box .graph .row {
    display: flex;
    width: 50px;
    flex-direction: column-reverse;
  }
  .wrapper section .graph_container .graph_box .graph .row .show {
    height: 200px;
    position: relative;
  }
  .wrapper section .graph_container .graph_box .graph .row .show:before {
    content: attr(data-show);
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    text-align: right;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: translate(calc(-100% - 10px), 0) rotate(-90deg);
            transform: translate(calc(-100% - 10px), 0) rotate(-90deg);
    white-space: nowrap;
    width: 200px;
    padding: 0 10px 0 0;
  }
  .wrapper section .graph_container .graph_box .graph .row .show img {
    display: none;
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap {
    height: 200px;
    display: flex;
    align-items: flex-end;
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar {
    width: 100% !important;
    background-position: top center;
    background-size: calc(100% + 2px) auto;
    border-radius: 5px 0 0 0;
    background-image: url(../img/bar_heart1.png), linear-gradient(to bottom, #fff 0, #fff 20px, #EE1D3A 20px, #EE1D3A);
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar:after {
    top: 0;
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
    width: 100%;
    text-align: center;
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar.relationship {
    background-image: url(../img/bar_heart1.png), linear-gradient(to bottom, #EE1D3A 0, #EE1D3A 20px, #EE1D3A 20px, #EE1D3A);
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar.couples {
    background-image: url(../img/bar_heart2.png), linear-gradient(to bottom, #EE1D3A 0, #EE1D3A 20px, #FFB4B4 20px, #FFB4B4);
  }
  .wrapper section .graph_container .graph_box .graph.reality .row .show {
    height: 270px;
  }
  .wrapper section .graph_container .graph_box .graph.reality .row .show:before {
    width: 270px;
  }
}
@media screen and (min-width: 700px) {
  .wrapper section .graph_container .graph_box .graph {
    flex-direction: column;
  }
  .wrapper section .graph_container .graph_box .graph .row {
    display: flex;
    gap: 1em;
    margin-bottom: 1em;
  }
  .wrapper section .graph_container .graph_box .graph .row .show {
    background-color: #292559;
    border-radius: 5px;
    width: 150px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2em;
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap {
    flex: 1;
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar {
    height: 100% !important;
    display: flex;
    align-items: center;
    background-position: right -1px bottom;
    background-size: auto 100%;
    background-image: url(../img/bar_heart1.png), linear-gradient(to left, #fff 0, #fff 30px, #EE1D3A 30px, #EE1D3A);
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar:after {
    left: calc(100% + 5px);
    white-space: nowrap;
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar.relationship, .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar.couples {
    height: 50% !important;
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar.relationship {
    background-image: url(../img/bar_heart1.png), linear-gradient(to left, #fff 0, #fff 20px, #EE1D3A 20px, #EE1D3A);
  }
  .wrapper section .graph_container .graph_box .graph .row .bar_wrap .bar.couples {
    background-image: url(../img/bar_heart2.png), linear-gradient(to left, #fff 0, #fff 20px, #FFB4B4 20px, #FFB4B4);
  }
}
.wrapper section .graph_container .graph_box .key {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 1em;
  margin: 2em 0 0;
  font-size: 12px;
}
.wrapper section .graph_container .graph_box .key p {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.wrapper section .graph_container .graph_box .key p .heart {
  height: 30px;
  width: 30px;
  display: block;
  background-image: url(../img/bar_heart1.png);
  background-size: contain;
}
.wrapper section .graph_container .graph_box .key p .heart.couples {
  background-image: url(../img/bar_heart2.png);
}
.wrapper section .kardashian_graph .key {
  display: flex;
  font-weight: lighter;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em 3em;
  margin: 3em 0;
}
.wrapper section .kardashian_graph .key div {
  display: flex;
  align-items: center;
  gap: 0.5em;
  max-width: 200px;
}
.wrapper section .kardashian_graph .key div img {
  max-width: 50px;
}
.wrapper section .kardashian_graph .graph_wrap {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin: 1em 0 2em;
}
.wrapper section .kardashian_graph .graph_wrap div {
  width: 150px;
}
.wrapper section .grid_50 {
  max-width: 1400px;
  margin: 4em auto 2em;
  padding: 0 1em;
}
.wrapper section .grid_50 h3 {
  text-align: center;
}
@media screen and (min-width: 1100px) {
  .wrapper section .grid_50 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1em;
  }
}
.wrapper section .card_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin: 2em 0;
}
.wrapper section .card_wrap .card {
  border: 1px solid #EE1D3A;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.16);
  border-radius: 30px;
  overflow: hidden;
  width: 300px;
  background-color: #fff;
}
.wrapper section .card_wrap .card div {
  padding: 0 1em;
}
.wrapper section .card_wrap .card div .source {
  text-align: right;
  font-size: 10px;
}
.wrapper section .card_wrap .card div p span {
  display: block;
}
.wrapper section .card_wrap .card div p span:nth-child(2) {
  font-size: 0.9em;
}
.wrapper .cta {
  background-color: #ee1d3a;
}
.wrapper .cta .inner {
  padding: 20px 0;
}
.wrapper .cta .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 0;
}
.wrapper .cta .inner ul li {
  margin: 0 0 5px 0;
}
.wrapper .cta .inner ul li a, .wrapper .cta .inner ul li::after {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #fff;
}
.wrapper .cta .inner ul li::after {
  content: "|";
  margin: 0 5px;
}
.wrapper .cta .inner ul li:nth-last-child(1):after {
  display: none;
}
@media only screen and (min-width: 1100px) {
  .wrapper .cta .inner {
    padding: 40px 0;
  }
  .wrapper .cta .inner ul li a, .wrapper .cta .inner ul li::after {
    font-size: 20px;
  }
}

.site-footer {
  background-color: transparent;
  color: #000;
  font-family: open-sans, sans-serif;
  font-size: 10px;
  padding-top: 30px;
}

.site-footer.lp {
  color: #000;
}

.site-footer.lp a {
  color: #000;
}

.site-footer a {
  color: #000;
}

.site-footer nav {
  margin-top: 16px;
}

.id-homepage_footer {
  margin: 0;
  padding: 0;
  list-style: none;
}

.id-homepage_footer li {
  margin: 0;
  padding: 4px 16px;
  text-align: center;
}

.id-homepage_footer li a {
  text-decoration: none;
  font-size: 10px;
}

.id-homepage_footer li.id-homepage_footer_info p {
  margin: 0;
}

.id-homepage_footer li.id-homepage_footer_logos {
  margin: 16px 0 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
}

.id-homepage_footer li.id-homepage_footer_logos a {
  margin: 0 8px 8px 8px;
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-block;
}

.id-homepage_footer li.id-homepage_footer_logos a.over18-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/18plus-inverted-1c5eb6a73a127bcaf0dd159924a86c9ae3ddf380304d61a9bb325ad0900464e6.png);
  height: 25px;
  width: 25px;
}

.id-homepage_footer li.id-homepage_footer_logos a.gra-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/gibraltar-coat-of-arms-mobile-inverted-476161432a6e5614a71b0c97cd059abeffb51ff905ee40dab71ca4e2f0487984.png);
  height: 30px;
  width: 27px;
}

.id-homepage_footer li.id-homepage_footer_logos a.ibas-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/ibas-mobile-inverted-93790210149b8cb0fc27241566d842daf9f2f16ee8bbd653ab558e23c9cb97af.png);
  height: 20px;
  width: 47px;
}

.id-homepage_footer li.id-homepage_footer_logos a.gamstop {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/gamstop_inverted-ec9985fac78b29c2aac9b038d6b42470bdce96c3124248e84f79cb64268e200b.png);
  height: 12px;
  width: 62px;
}

.id-homepage_footer li.id-homepage_footer_logos a.gamecare-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/gamcare-mobile-inverted-8060be4ea3323405d7f2c923b1edb639676b534b175b9a8ac99bf49775377016.png);
  height: 25px;
  width: 75px;
}

.id-homepage_footer li.id-homepage_footer_logos a.gambleaware-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/gamblecare-mobile-inverted-712c2eeb4562fe70560a552acb84f5ebc4e1c6c31a62070ac3d26af1deaaf18b.png);
  height: 12px;
  width: 97px;
}

.id-homepage_footer li.id-homepage_footer_logos a.commission-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/gambling_commission_inverted-918538bae9edd1b1640ed90088ad1338ab8507d25dd1ba37936fb874344144ef.png);
  height: 17px;
  width: 70px;
}

.id-homepage_footer li.id-homepage_footer_logos a.essa-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/essa-mobile_inverted-897fa8836fdca905f713cbad2a9c4d5d9dfd1e9be66b935c0a9fcc31a6f16f99.png);
  height: 23px;
  width: 106px;
}

.id-homepage_footer li.id-homepage_footer_logos a.gbga-white {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/gbga-inverted-6f9dffef3d29ec62b23e08d684f1176057dbabe9c72c2c0200d111b6ed9fa5cc.png);
  height: 20px;
  width: 49px;
}

.id-homepage_footer li.id-homepage_footer_logos a.isle-of-man {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/isle-of-man-asia_inverted-e2f81425bec2123d69b36426c6b5fa5e524994395c1b6e040c54a447cd9682b3.png);
  height: 42px;
  width: 51px;
}

.id-homepage_footer li.id-homepage_footer_logos a.ibia {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/ibia-c31c234953dc22f1b5d76867fd8f7249cd280f83bf168315862e9bf1b58401b9.png);
  height: 25px;
  width: 116px;
}

.id-homepage_footer li.id-homepage_footer_logos a.mga {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/mga-4ae65a93e8e758d15b7d43766c1df9d550e5f3af452a6c546ce3b158abd5dc78.png);
  height: 25px;
  width: 128px;
}

.id-homepage_footer li.id-homepage_footer_logos a.gambling-therapy {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/logos/gambling-therapy-a23e220ca59ff4384ebbfd551894b6a1235dcc257dad2d904df6477f6187508a.png);
  height: 26px;
  width: 66px;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

.id-homepage_footer li.id-homepage_footer_info,
.id-homepage_footer li.id-homepage_footer_ts_and_cs {
  line-height: 16px;
  font-size: 10px;
}

.id-homepage_footer li.id-homepage_footer_info a,
.id-homepage_footer li.id-homepage_footer_ts_and_cs a {
  text-decoration: underline;
  margin-right: 0.4em;
  font-size: 11px;
}

.id-homepage_footer li.id-homepage_footer_ts_and_cs {
  padding-bottom: 12px;
}

.id-homepage_footer li.id-homepage_footer_ts_and_cs a {
  border-right: 1px solid #000;
  padding-right: 5px;
  line-height: 10px;
  display: inline-block;
  text-decoration: none;
  font-size: 10px;
}

.id-homepage_footer li.id-homepage_footer_ts_and_cs a:last-child {
  border: none;
  padding: 0;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.partner-logos::after {
  content: "";
  width: 100%;
}

.partner-logos__logo {
  flex: 0 0 auto;
  margin: 4px;
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {
  .partner-logos__logo--order-1 {
    order: 1;
  }
}
.site-footer-seal {
  text-align: center;
  padding-bottom: 8px;
}

.bvs-site-logo {
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  width: 119px;
  height: 26px;
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-2375ba929ccd3257baad1f79f349aec63863f88406e805c59520e0dd44e40c1e.svg);
}

.bvs-site-logo_footer {
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-alt-9d2fb5b8a6218bb9f9c8a750d0b011ea97b6b3661b9acb8d35b30e00de16974c.svg);
  width: 118px;
  height: 26px;
  margin: 0 auto;
  padding-top: 16px;
  background-position: bottom center;
}

.bvs-site-logo_footer.lp {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-2375ba929ccd3257baad1f79f349aec63863f88406e805c59520e0dd44e40c1e.svg);
}

.bvs-site-logo_large {
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-2375ba929ccd3257baad1f79f349aec63863f88406e805c59520e0dd44e40c1e.svg);
  width: 199px;
  height: 42px;
}

.bvs-site-logo_login {
  background-repeat: no-repeat;
  background-size: 100%;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-2375ba929ccd3257baad1f79f349aec63863f88406e805c59520e0dd44e40c1e.svg);
  width: 105px;
  height: 24px;
}

@media (min-width: 1024px) {
  .bvs-site-logo {
    width: 199px;
    height: 42px;
  }
  .bvs-site-logo_scrolling {
    width: 128px;
    height: 28px;
  }
  .bvs-site-logo_footer.lp:not(.modal_footer) {
    background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-2375ba929ccd3257baad1f79f349aec63863f88406e805c59520e0dd44e40c1e.svg);
  }
}
.bvs-site-logo_login {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-brand-2d820631b634a65d1939a87c99c85e63c0bf7e0035fc9f7aa8f266573d688398.svg);
  width: 119px;
  height: 26px;
}

.bvs-site-logo_footer.lp {
  background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-alt-9d2fb5b8a6218bb9f9c8a750d0b011ea97b6b3661b9acb8d35b30e00de16974c.svg);
}

@media (min-width: 1024px) {
  .bvs-site-logo_footer.lp:not(.modal_footer) {
    background-image: url(https://www.heartbingo.co.uk/mobile/assets/bv_styles/heartbingo/logo/site-logo-alt-9d2fb5b8a6218bb9f9c8a750d0b011ea97b6b3661b9acb8d35b30e00de16974c.svg);
  }
}
